From 97c33abad362a73ced7b3a72a4135d0940f04ab9 Mon Sep 17 00:00:00 2001 From: Rukh-Khan Date: Sat, 11 Jan 2025 14:12:37 +0530 Subject: [PATCH 01/42] your message --- .github/workflows/pull-request.yml | 88 ++++++++++ docs/docs/auto-docs/.gitignore | 0 docs/docs/developer-guide/.gitignore | 0 docs/docs/intro.md | 4 +- docs/docs/tutorial-basics/_category_.json | 8 - docs/docs/tutorial-basics/congratulations.md | 23 --- .../tutorial-basics/create-a-blog-post.md | 34 ---- .../docs/tutorial-basics/create-a-document.md | 57 ------- docs/docs/tutorial-basics/create-a-page.md | 43 ----- docs/docs/tutorial-basics/deploy-your-site.md | 31 ---- .../tutorial-basics/markdown-features.mdx | 152 ------------------ docs/docs/tutorial-extras/_category_.json | 7 - .../img/docsVersionDropdown.png | Bin 25427 -> 0 bytes .../tutorial-extras/img/localeDropdown.png | Bin 27841 -> 0 bytes .../tutorial-extras/manage-docs-versions.md | 55 ------- .../tutorial-extras/translate-your-site.md | 88 ---------- docs/docs/user-guide/.gitignore | 0 src/components/CheckIn/TableRow.tsx | 9 +- .../OrganizationVenues.spec.tsx | 69 +++++++- 19 files changed, 156 insertions(+), 512 deletions(-) create mode 100644 docs/docs/auto-docs/.gitignore create mode 100644 docs/docs/developer-guide/.gitignore delete mode 100644 docs/docs/tutorial-basics/_category_.json delete mode 100644 docs/docs/tutorial-basics/congratulations.md delete mode 100644 docs/docs/tutorial-basics/create-a-blog-post.md delete mode 100644 docs/docs/tutorial-basics/create-a-document.md delete mode 100644 docs/docs/tutorial-basics/create-a-page.md delete mode 100644 docs/docs/tutorial-basics/deploy-your-site.md delete mode 100644 docs/docs/tutorial-basics/markdown-features.mdx delete mode 100644 docs/docs/tutorial-extras/_category_.json delete mode 100644 docs/docs/tutorial-extras/img/docsVersionDropdown.png delete mode 100644 docs/docs/tutorial-extras/img/localeDropdown.png delete mode 100644 docs/docs/tutorial-extras/manage-docs-versions.md delete mode 100644 docs/docs/tutorial-extras/translate-your-site.md create mode 100644 docs/docs/user-guide/.gitignore diff --git a/.github/workflows/pull-request.yml b/.github/workflows/pull-request.yml index f387698bce..991fccbdf0 100644 --- a/.github/workflows/pull-request.yml +++ b/.github/workflows/pull-request.yml @@ -449,3 +449,91 @@ jobs: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} PR_NUMBER: ${{ github.event.pull_request.number }} GITHUB_REPOSITORY: ${{ github.repository }} + + generate-docs: + name: Generate Auto Documentation + permissions: + contents: write + + runs-on: ubuntu-latest + needs: [Code-Quality-Checks, Test-Application, Start-App-Without-Docker, Docker-Start-Check] + + steps: + # Step 1: Checkout the code + - name: Checkout Code + uses: actions/checkout@v4 + with: + repository: ${{ github.event.pull_request.head.repo.full_name }} + ref: ${{ github.event.pull_request.head.ref }} + fetch-depth: 0 + token: ${{ secrets.GITHUB_TOKEN }} + + # Step 2: Setup Node.js environment + - name: Setup Node.js + uses: actions/setup-node@v4 + with: + node-version: '22.x' + cache: 'npm' + + # Step 3: Install dependencies + - name: Install Dependencies + run: | + npm ci + npm install -g typedoc typedoc-plugin-markdown + + # Step 4: Generate Documentation + - name: Generate Documentation + run: | + typedoc \ + --out docs/docs/auto-docs \ + --plugin typedoc-plugin-markdown \ + --theme markdown \ + --tsconfig tsconfig.json \ + --excludePrivate \ + --excludeProtected \ + --excludeExternals \ + --hideGenerator \ + --categorizeByGroup true \ + --entryPointStrategy expand \ + --entryPoints "src/**/*.ts" "src/**/*.tsx" \ + --exclude "**/*.{test,spec,stories}.{ts,tsx}" \ + --exclude "**/__tests__/**" \ + --exclude "**/__mocks__/**" \ + --exclude "**/node_modules/**" \ + --cleanOutputDir true + + # Step 5: Create placeholder documentation (only if not present) + - name: Create Placeholder Documentation + run: | + mkdir -p docs/docs/user-guide + mkdir -p docs/docs/developer-guide/reference + if [ ! -f docs/docs/user-guide/intro.md ]; then + echo "# User Guide\n\nThis section contains the user guide for Talawa Admin." > docs/docs/user-guide/intro.md + fi + if [ ! -f docs/docs/developer-guide/intro.md ]; then + echo "# Developer Guide\n\nThis section contains the developer guide for Talawa Admin." > docs/docs/developer-guide/intro.md + fi + if [ ! -f docs/docs/developer-guide/reference/README.md ]; then + echo "# API Reference\n\nThis section contains the auto-generated API documentation for Talawa Admin." > docs/docs/developer-guide/reference/README.md + fi + + # Step 6: Commit Documentation Changes + - name: Commit Documentation Changes + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + run: | + git config user.name "github-actions[bot]" + git config user.email "41898282+github-actions[bot]@users.noreply.github.com" + git remote set-url origin "https://${{ github.actor }}:${GITHUB_TOKEN}@github.com/${{ github.event.pull_request.head.repo.full_name }}.git" + git fetch origin ${{ github.event.pull_request.head.ref }} + git checkout ${{ github.event.pull_request.head.ref }} + git add docs/docs/auto-docs/ + git add docs/docs/developer-guide/ + git add docs/docs/user-guide/ + if [ -n "$(git status --porcelain)" ]; then + git commit -m "docs: update auto-generated documentation [skip ci]" + git push origin HEAD:${{ github.event.pull_request.head.ref }} + else + echo "No changes to commit." + fi + diff --git a/docs/docs/auto-docs/.gitignore b/docs/docs/auto-docs/.gitignore new file mode 100644 index 0000000000..e69de29bb2 diff --git a/docs/docs/developer-guide/.gitignore b/docs/docs/developer-guide/.gitignore new file mode 100644 index 0000000000..e69de29bb2 diff --git a/docs/docs/intro.md b/docs/docs/intro.md index 45e8604c8b..7534844312 100644 --- a/docs/docs/intro.md +++ b/docs/docs/intro.md @@ -10,11 +10,11 @@ Let's discover **Docusaurus in less than 5 minutes**. Get started by **creating a new site**. -Or **try Docusaurus immediately** with **[docusaurus.new](https://docusaurus.new)**. +Or **try Docusaurus immediately** with **[docusaurus.new]**. ### What you'll need -- [Node.js](https://nodejs.org/en/download/) version 18.0 or above: +- version 18.0 or above: - When installing Node.js, you are recommended to check all checkboxes related to dependencies. ## Generate a new site diff --git a/docs/docs/tutorial-basics/_category_.json b/docs/docs/tutorial-basics/_category_.json deleted file mode 100644 index 2e6db55b1e..0000000000 --- a/docs/docs/tutorial-basics/_category_.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "label": "Tutorial - Basics", - "position": 2, - "link": { - "type": "generated-index", - "description": "5 minutes to learn the most important Docusaurus concepts." - } -} diff --git a/docs/docs/tutorial-basics/congratulations.md b/docs/docs/tutorial-basics/congratulations.md deleted file mode 100644 index 04771a00b7..0000000000 --- a/docs/docs/tutorial-basics/congratulations.md +++ /dev/null @@ -1,23 +0,0 @@ ---- -sidebar_position: 6 ---- - -# Congratulations! - -You have just learned the **basics of Docusaurus** and made some changes to the **initial template**. - -Docusaurus has **much more to offer**! - -Have **5 more minutes**? Take a look at **[versioning](../tutorial-extras/manage-docs-versions.md)** and **[i18n](../tutorial-extras/translate-your-site.md)**. - -Anything **unclear** or **buggy** in this tutorial? [Please report it!](https://github.com/facebook/docusaurus/discussions/4610) - -## What's next? - -- Read the [official documentation](https://docusaurus.io/) -- Modify your site configuration with [`docusaurus.config.js`](https://docusaurus.io/docs/api/docusaurus-config) -- Add navbar and footer items with [`themeConfig`](https://docusaurus.io/docs/api/themes/configuration) -- Add a custom [Design and Layout](https://docusaurus.io/docs/styling-layout) -- Add a [search bar](https://docusaurus.io/docs/search) -- Find inspirations in the [Docusaurus showcase](https://docusaurus.io/showcase) -- Get involved in the [Docusaurus Community](https://docusaurus.io/community/support) diff --git a/docs/docs/tutorial-basics/create-a-blog-post.md b/docs/docs/tutorial-basics/create-a-blog-post.md deleted file mode 100644 index 550ae17ee1..0000000000 --- a/docs/docs/tutorial-basics/create-a-blog-post.md +++ /dev/null @@ -1,34 +0,0 @@ ---- -sidebar_position: 3 ---- - -# Create a Blog Post - -Docusaurus creates a **page for each blog post**, but also a **blog index page**, a **tag system**, an **RSS** feed... - -## Create your first Post - -Create a file at `blog/2021-02-28-greetings.md`: - -```md title="blog/2021-02-28-greetings.md" ---- -slug: greetings -title: Greetings! -authors: - - name: Joel Marcey - title: Co-creator of Docusaurus 1 - url: https://github.com/JoelMarcey - image_url: https://github.com/JoelMarcey.png - - name: Sébastien Lorber - title: Docusaurus maintainer - url: https://sebastienlorber.com - image_url: https://github.com/slorber.png -tags: [greetings] ---- - -Congratulations, you have made your first post! - -Feel free to play around and edit this post as much as you like. -``` - -A new blog post is now available at [http://localhost:3000/blog/greetings](http://localhost:3000/blog/greetings). diff --git a/docs/docs/tutorial-basics/create-a-document.md b/docs/docs/tutorial-basics/create-a-document.md deleted file mode 100644 index c22fe29446..0000000000 --- a/docs/docs/tutorial-basics/create-a-document.md +++ /dev/null @@ -1,57 +0,0 @@ ---- -sidebar_position: 2 ---- - -# Create a Document - -Documents are **groups of pages** connected through: - -- a **sidebar** -- **previous/next navigation** -- **versioning** - -## Create your first Doc - -Create a Markdown file at `docs/hello.md`: - -```md title="docs/hello.md" -# Hello - -This is my **first Docusaurus document**! -``` - -A new document is now available at [http://localhost:3000/docs/hello](http://localhost:3000/docs/hello). - -## Configure the Sidebar - -Docusaurus automatically **creates a sidebar** from the `docs` folder. - -Add metadata to customize the sidebar label and position: - -```md title="docs/hello.md" {1-4} ---- -sidebar_label: 'Hi!' -sidebar_position: 3 ---- - -# Hello - -This is my **first Docusaurus document**! -``` - -It is also possible to create your sidebar explicitly in `sidebars.js`: - -```js title="sidebars.js" -export default { - tutorialSidebar: [ - 'intro', - // highlight-next-line - 'hello', - { - type: 'category', - label: 'Tutorial', - items: ['tutorial-basics/create-a-document'], - }, - ], -}; -``` diff --git a/docs/docs/tutorial-basics/create-a-page.md b/docs/docs/tutorial-basics/create-a-page.md deleted file mode 100644 index 20e2ac3005..0000000000 --- a/docs/docs/tutorial-basics/create-a-page.md +++ /dev/null @@ -1,43 +0,0 @@ ---- -sidebar_position: 1 ---- - -# Create a Page - -Add **Markdown or React** files to `src/pages` to create a **standalone page**: - -- `src/pages/index.js` → `localhost:3000/` -- `src/pages/foo.md` → `localhost:3000/foo` -- `src/pages/foo/bar.js` → `localhost:3000/foo/bar` - -## Create your first React Page - -Create a file at `src/pages/my-react-page.js`: - -```jsx title="src/pages/my-react-page.js" -import React from 'react'; -import Layout from '@theme/Layout'; - -export default function MyReactPage() { - return ( - -

My React page

-

This is a React page

-
- ); -} -``` - -A new page is now available at [http://localhost:3000/my-react-page](http://localhost:3000/my-react-page). - -## Create your first Markdown Page - -Create a file at `src/pages/my-markdown-page.md`: - -```mdx title="src/pages/my-markdown-page.md" -# My Markdown page - -This is a Markdown page -``` - -A new page is now available at [http://localhost:3000/my-markdown-page](http://localhost:3000/my-markdown-page). diff --git a/docs/docs/tutorial-basics/deploy-your-site.md b/docs/docs/tutorial-basics/deploy-your-site.md deleted file mode 100644 index 1c50ee063e..0000000000 --- a/docs/docs/tutorial-basics/deploy-your-site.md +++ /dev/null @@ -1,31 +0,0 @@ ---- -sidebar_position: 5 ---- - -# Deploy your site - -Docusaurus is a **static-site-generator** (also called **[Jamstack](https://jamstack.org/)**). - -It builds your site as simple **static HTML, JavaScript and CSS files**. - -## Build your site - -Build your site **for production**: - -```bash -npm run build -``` - -The static files are generated in the `build` folder. - -## Deploy your site - -Test your production build locally: - -```bash -npm run serve -``` - -The `build` folder is now served at [http://localhost:3000/](http://localhost:3000/). - -You can now deploy the `build` folder **almost anywhere** easily, **for free** or very small cost (read the **[Deployment Guide](https://docusaurus.io/docs/deployment)**). diff --git a/docs/docs/tutorial-basics/markdown-features.mdx b/docs/docs/tutorial-basics/markdown-features.mdx deleted file mode 100644 index 35e00825ed..0000000000 --- a/docs/docs/tutorial-basics/markdown-features.mdx +++ /dev/null @@ -1,152 +0,0 @@ ---- -sidebar_position: 4 ---- - -# Markdown Features - -Docusaurus supports **[Markdown](https://daringfireball.net/projects/markdown/syntax)** and a few **additional features**. - -## Front Matter - -Markdown documents have metadata at the top called [Front Matter](https://jekyllrb.com/docs/front-matter/): - -```text title="my-doc.md" -// highlight-start ---- -id: my-doc-id -title: My document title -description: My document description -slug: /my-custom-url ---- -// highlight-end - -## Markdown heading - -Markdown text with [links](./hello.md) -``` - -## Links - -Regular Markdown links are supported, using url paths or relative file paths. - -```md -Let's see how to [Create a page](/create-a-page). -``` - -```md -Let's see how to [Create a page](./create-a-page.md). -``` - -**Result:** Let's see how to [Create a page](./create-a-page.md). - -## Images - -Regular Markdown images are supported. - -You can use absolute paths to reference images in the static directory (`static/img/docusaurus.png`): - -```md -![Docusaurus logo](/img/docusaurus.png) -``` - -![Docusaurus logo](/img/docusaurus.png) - -You can reference images relative to the current file as well. This is particularly useful to colocate images close to the Markdown files using them: - -```md -![Docusaurus logo](./img/docusaurus.png) -``` - -## Code Blocks - -Markdown code blocks are supported with Syntax highlighting. - -````md -```jsx title="src/components/HelloDocusaurus.js" -function HelloDocusaurus() { - return

Hello, Docusaurus!

; -} -``` -```` - -```jsx title="src/components/HelloDocusaurus.js" -function HelloDocusaurus() { - return

Hello, Docusaurus!

; -} -``` - -## Admonitions - -Docusaurus has a special syntax to create admonitions and callouts: - -```md -:::tip My tip - -Use this awesome feature option - -::: - -:::danger Take care - -This action is dangerous - -::: -``` - -:::tip My tip - -Use this awesome feature option - -::: - -:::danger Take care - -This action is dangerous - -::: - -## MDX and React Components - -[MDX](https://mdxjs.com/) can make your documentation more **interactive** and allows using any **React components inside Markdown**: - -```jsx -export const Highlight = ({children, color}) => ( - { - alert(`You clicked the color ${color} with label ${children}`) - }}> - {children} - -); - -This is Docusaurus green ! - -This is Facebook blue ! -``` - -export const Highlight = ({children, color}) => ( - { - alert(`You clicked the color ${color} with label ${children}`); - }}> - {children} - -); - -This is Docusaurus green ! - -This is Facebook blue ! diff --git a/docs/docs/tutorial-extras/_category_.json b/docs/docs/tutorial-extras/_category_.json deleted file mode 100644 index a8ffcc1930..0000000000 --- a/docs/docs/tutorial-extras/_category_.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "label": "Tutorial - Extras", - "position": 3, - "link": { - "type": "generated-index" - } -} diff --git a/docs/docs/tutorial-extras/img/docsVersionDropdown.png b/docs/docs/tutorial-extras/img/docsVersionDropdown.png deleted file mode 100644 index 97e4164618b5f8beda34cfa699720aba0ad2e342..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 25427 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 diff --git a/docs/docs/tutorial-extras/img/localeDropdown.png b/docs/docs/tutorial-extras/img/localeDropdown.png deleted file mode 100644 index e257edc1f932985396bf59584c7ccfaddf955779..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 27841 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 JrC|B>e*nH7H{}2T diff --git a/docs/docs/tutorial-extras/manage-docs-versions.md b/docs/docs/tutorial-extras/manage-docs-versions.md deleted file mode 100644 index ccda0b9076..0000000000 --- a/docs/docs/tutorial-extras/manage-docs-versions.md +++ /dev/null @@ -1,55 +0,0 @@ ---- -sidebar_position: 1 ---- - -# Manage Docs Versions - -Docusaurus can manage multiple versions of your docs. - -## Create a docs version - -Release a version 1.0 of your project: - -```bash -npm run docusaurus docs:version 1.0 -``` - -The `docs` folder is copied into `versioned_docs/version-1.0` and `versions.json` is created. - -Your docs now have 2 versions: - -- `1.0` at `http://localhost:3000/docs/` for the version 1.0 docs -- `current` at `http://localhost:3000/docs/next/` for the **upcoming, unreleased docs** - -## Add a Version Dropdown - -To navigate seamlessly across versions, add a version dropdown. - -Modify the `docusaurus.config.js` file: - -```js title="docusaurus.config.js" -export default { - themeConfig: { - navbar: { - items: [ - // highlight-start - { - type: 'docsVersionDropdown', - }, - // highlight-end - ], - }, - }, -}; -``` - -The docs version dropdown appears in your navbar: - -![Docs Version Dropdown](./img/docsVersionDropdown.png) - -## Update an existing version - -It is possible to edit versioned docs in their respective folder: - -- `versioned_docs/version-1.0/hello.md` updates `http://localhost:3000/docs/hello` -- `docs/hello.md` updates `http://localhost:3000/docs/next/hello` diff --git a/docs/docs/tutorial-extras/translate-your-site.md b/docs/docs/tutorial-extras/translate-your-site.md deleted file mode 100644 index b5a644abdf..0000000000 --- a/docs/docs/tutorial-extras/translate-your-site.md +++ /dev/null @@ -1,88 +0,0 @@ ---- -sidebar_position: 2 ---- - -# Translate your site - -Let's translate `docs/intro.md` to French. - -## Configure i18n - -Modify `docusaurus.config.js` to add support for the `fr` locale: - -```js title="docusaurus.config.js" -export default { - i18n: { - defaultLocale: 'en', - locales: ['en', 'fr'], - }, -}; -``` - -## Translate a doc - -Copy the `docs/intro.md` file to the `i18n/fr` folder: - -```bash -mkdir -p i18n/fr/docusaurus-plugin-content-docs/current/ - -cp docs/intro.md i18n/fr/docusaurus-plugin-content-docs/current/intro.md -``` - -Translate `i18n/fr/docusaurus-plugin-content-docs/current/intro.md` in French. - -## Start your localized site - -Start your site on the French locale: - -```bash -npm run start -- --locale fr -``` - -Your localized site is accessible at [http://localhost:3000/fr/](http://localhost:3000/fr/) and the `Getting Started` page is translated. - -:::caution - -In development, you can only use one locale at a time. - -::: - -## Add a Locale Dropdown - -To navigate seamlessly across languages, add a locale dropdown. - -Modify the `docusaurus.config.js` file: - -```js title="docusaurus.config.js" -export default { - themeConfig: { - navbar: { - items: [ - // highlight-start - { - type: 'localeDropdown', - }, - // highlight-end - ], - }, - }, -}; -``` - -The locale dropdown now appears in your navbar: - -![Locale Dropdown](./img/localeDropdown.png) - -## Build your localized site - -Build your site for a specific locale: - -```bash -npm run build -- --locale fr -``` - -Or build your site to include all the locales at once: - -```bash -npm run build -``` diff --git a/docs/docs/user-guide/.gitignore b/docs/docs/user-guide/.gitignore new file mode 100644 index 0000000000..e69de29bb2 diff --git a/src/components/CheckIn/TableRow.tsx b/src/components/CheckIn/TableRow.tsx index b2bd6e11cb..6c0e6a4ff3 100644 --- a/src/components/CheckIn/TableRow.tsx +++ b/src/components/CheckIn/TableRow.tsx @@ -72,13 +72,12 @@ export const TableRow = ({ } inputs.push({ name: data.name.trim() }); const pdf = await generate({ template: tagTemplate, inputs }); - // istanbul ignore next - const blob = new Blob([pdf.buffer], { type: 'application/pdf' }); - // istanbul ignore next + + // Convert ArrayBuffer to Uint8Array before creating Blob + const uint8Array = new Uint8Array(pdf.buffer); + const blob = new Blob([uint8Array], { type: 'application/pdf' }); const url = URL.createObjectURL(blob); - // istanbul ignore next window.open(url); - // istanbul ignore next toast.success('PDF generated successfully!'); } catch (error: unknown) { const errorMessage = diff --git a/src/screens/OrganizationVenues/OrganizationVenues.spec.tsx b/src/screens/OrganizationVenues/OrganizationVenues.spec.tsx index 0f257b3710..0365c50e03 100644 --- a/src/screens/OrganizationVenues/OrganizationVenues.spec.tsx +++ b/src/screens/OrganizationVenues/OrganizationVenues.spec.tsx @@ -33,6 +33,44 @@ import { DELETE_VENUE_MUTATION } from 'GraphQl/Mutations/VenueMutations'; import { vi } from 'vitest'; import { errorHandler } from 'utils/errorHandler'; +type MutationCallback = ( + mutations: MutationRecord[], + observer: MutationObserver, +) => void; + +type MutationRecord = { + type: string; + target: Node; + addedNodes: NodeList; + removedNodes: NodeList; + previousSibling: Node | null; + nextSibling: Node | null; + attributeName: string | null; + attributeNamespace: string | null; + oldValue: string | null; +}; +// Mock MutationObserver +class MockMutationObserver { + private _callback: MutationCallback; + + constructor(callback: MutationCallback) { + this._callback = callback; + } + + observe(target: Node, options?: MutationObserverInit): void { + // Store parameters for future use + console.debug('Observing:', { target, options }); + } + + disconnect(): void { + // Mock implementation + } + + takeRecords(): MutationRecord[] { + return []; + } +} + const MOCKS = [ { request: { @@ -245,8 +283,8 @@ const MOCKS = [ const link = new StaticMockLink(MOCKS, true); async function wait(ms = 100): Promise { - await act(() => { - return new Promise((resolve) => { + await act(async () => { + await new Promise((resolve) => { setTimeout(resolve, ms); }); }); @@ -260,6 +298,15 @@ vi.mock('react-toastify', () => ({ }, })); +beforeAll(() => { + global.MutationObserver = + MockMutationObserver as unknown as typeof MutationObserver; +}); + +afterAll(() => { + vi.restoreAllMocks(); +}); + const renderOrganizationVenue = (link: ApolloLink): RenderResult => { return render( @@ -494,16 +541,24 @@ describe('Organisation Venues', () => { test('renders without crashing', async () => { renderOrganizationVenue(link); - waitFor(() => { - expect(screen.findByTestId('orgvenueslist')).toBeInTheDocument(); + await waitFor(async () => { + const element = await screen.findByTestId('orgvenueslist'); + expect(element).toBeInTheDocument(); }); }); test('renders the venue list correctly', async () => { renderOrganizationVenue(link); - waitFor(() => { - expect(screen.getByTestId('venueRow2')).toBeInTheDocument(); - expect(screen.getByTestId('venueRow1')).toBeInTheDocument(); + + // First wait for the list container to be present + await waitFor(() => { + expect(screen.getByTestId('orgvenueslist')).toBeInTheDocument(); + }); + + // Then check for individual venue items + await waitFor(() => { + expect(screen.getByTestId('venue-item2')).toBeInTheDocument(); + expect(screen.getByTestId('venue-item1')).toBeInTheDocument(); }); }); }); From e05e1a03180dbbfc7ba850102958ea6b6cd4b01e Mon Sep 17 00:00:00 2001 From: Rukh-Khan Date: Sat, 11 Jan 2025 15:20:45 +0530 Subject: [PATCH 02/42] doc: talawa-admin-autoGen-doc --- .github/workflows/pull-request.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pull-request.yml b/.github/workflows/pull-request.yml index 991fccbdf0..3f0aaab286 100644 --- a/.github/workflows/pull-request.yml +++ b/.github/workflows/pull-request.yml @@ -524,7 +524,7 @@ jobs: run: | git config user.name "github-actions[bot]" git config user.email "41898282+github-actions[bot]@users.noreply.github.com" - git remote set-url origin "https://${{ github.actor }}:${GITHUB_TOKEN}@github.com/${{ github.event.pull_request.head.repo.full_name }}.git" + git remote set-url origin "https://x-access-token:${GITHUB_TOKEN}@github.com/${{ github.event.pull_request.head.repo.full_name }}.git" git fetch origin ${{ github.event.pull_request.head.ref }} git checkout ${{ github.event.pull_request.head.ref }} git add docs/docs/auto-docs/ From 3b1a335892b613c75faef64f86f9ee3af9e2813b Mon Sep 17 00:00:00 2001 From: Rukh-Khan Date: Sun, 12 Jan 2025 11:24:47 +0530 Subject: [PATCH 03/42] doc: talawa-admin-autoGen-doc --- .github/workflows/pull-request.yml | 90 +- .husky/pre-commit | 1 + docs/docs/auto-docs/.gitignore | 0 docs/docs/auto-docs/App/README.md | 11 + docs/docs/auto-docs/App/functions/default.md | 30 + .../auto-docs/Constant/constant/README.md | 16 + .../Constant/constant/variables/AUTH_TOKEN.md | 11 + .../constant/variables/BACKEND_URL.md | 11 + .../REACT_APP_BACKEND_WEBSOCKET_URL.md | 11 + .../variables/REACT_APP_CUSTOM_PORT.md | 11 + .../variables/REACT_APP_USE_RECAPTCHA.md | 11 + .../constant/variables/RECAPTCHA_SITE_KEY.md | 11 + .../ActionItemCategoryMutations/README.md | 12 + .../CREATE_ACTION_ITEM_CATEGORY_MUTATION.md | 25 + .../UPDATE_ACTION_ITEM_CATEGORY_MUTATION.md | 25 + .../Mutations/ActionItemMutations/README.md | 13 + .../variables/CREATE_ACTION_ITEM_MUTATION.md | 37 + .../variables/DELETE_ACTION_ITEM_MUTATION.md | 17 + .../variables/UPDATE_ACTION_ITEM_MUTATION.md | 41 + .../AgendaCategoryMutations/README.md | 13 + .../CREATE_AGENDA_ITEM_CATEGORY_MUTATION.md | 17 + .../DELETE_AGENDA_ITEM_CATEGORY_MUTATION.md | 17 + .../UPDATE_AGENDA_ITEM_CATEGORY_MUTATION.md | 21 + .../Mutations/AgendaItemMutations/README.md | 13 + .../variables/CREATE_AGENDA_ITEM_MUTATION.md | 11 + .../variables/DELETE_AGENDA_ITEM_MUTATION.md | 11 + .../variables/UPDATE_AGENDA_ITEM_MUTATION.md | 11 + .../Mutations/CampaignMutation/README.md | 12 + .../variables/CREATE_CAMPAIGN_MUTATION.md | 41 + .../variables/UPDATE_CAMPAIGN_MUTATION.md | 41 + .../Mutations/CommentMutations/README.md | 13 + .../variables/CREATE_COMMENT_POST.md | 25 + .../variables/LIKE_COMMENT.md | 21 + .../variables/UNLIKE_COMMENT.md | 21 + .../EventAttendeeMutations/README.md | 13 + .../variables/ADD_EVENT_ATTENDEE.md | 25 + .../variables/MARK_CHECKIN.md | 25 + .../variables/REMOVE_EVENT_ATTENDEE.md | 25 + .../EventVolunteerMutation/README.md | 17 + .../variables/ADD_VOLUNTEER.md | 21 + .../variables/CREATE_VOLUNTEER_GROUP.md | 28 + .../variables/CREATE_VOLUNTEER_MEMBERSHIP.md | 11 + .../variables/DELETE_VOLUNTEER.md | 21 + .../variables/DELETE_VOLUNTEER_GROUP.md | 21 + .../variables/UPDATE_VOLUNTEER_GROUP.md | 25 + .../variables/UPDATE_VOLUNTEER_MEMBERSHIP.md | 25 + .../GraphQl/Mutations/FundMutation/README.md | 12 + .../variables/CREATE_FUND_MUTATION.md | 41 + .../variables/UPDATE_FUND_MUTATION.md | 41 + .../Mutations/OrganizationMutations/README.md | 27 + .../variables/ADD_CUSTOM_FIELD.md | 29 + .../variables/ADD_USER_TO_GROUP_CHAT.md | 11 + .../variables/CANCEL_MEMBERSHIP_REQUEST.md | 11 + .../variables/CREATE_CHAT.md | 25 + .../CREATE_SAMPLE_ORGANIZATION_MUTATION.md | 17 + .../variables/EDIT_CHAT_MESSAGE.md | 11 + .../variables/JOIN_PUBLIC_ORGANIZATION.md | 11 + .../variables/MARK_CHAT_MESSAGES_AS_READ.md | 11 + .../variables/MESSAGE_SENT_TO_CHAT.md | 11 + .../variables/PLUGIN_SUBSCRIPTION.md | 17 + .../variables/REMOVE_CUSTOM_FIELD.md | 25 + .../REMOVE_SAMPLE_ORGANIZATION_MUTATION.md | 17 + .../variables/SEND_MEMBERSHIP_REQUEST.md | 11 + .../variables/SEND_MESSAGE_TO_CHAT.md | 11 + .../variables/TOGGLE_PINNED_POST.md | 21 + .../variables/UPDATE_CHAT.md | 11 + .../UPDATE_USER_ROLE_IN_ORG_MUTATION.md | 29 + .../Mutations/PledgeMutation/README.md | 13 + .../PledgeMutation/variables/CREATE_PlEDGE.md | 41 + .../PledgeMutation/variables/DELETE_PLEDGE.md | 21 + .../PledgeMutation/variables/UPDATE_PLEDGE.md | 37 + .../GraphQl/Mutations/TagMutations/README.md | 17 + .../variables/ADD_PEOPLE_TO_TAG.md | 21 + .../TagMutations/variables/ASSIGN_TO_TAGS.md | 21 + .../TagMutations/variables/CREATE_USER_TAG.md | 29 + .../variables/REMOVE_FROM_TAGS.md | 21 + .../TagMutations/variables/REMOVE_USER_TAG.md | 17 + .../variables/UNASSIGN_USER_TAG.md | 21 + .../TagMutations/variables/UPDATE_USER_TAG.md | 21 + .../Mutations/VenueMutations/README.md | 13 + .../variables/CREATE_VENUE_MUTATION.md | 33 + .../variables/DELETE_VENUE_MUTATION.md | 17 + .../variables/UPDATE_VENUE_MUTATION.md | 33 + .../GraphQl/Mutations/mutations/README.md | 224 ++ .../ACCEPT_ORGANIZATION_REQUEST_MUTATION.md | 11 + .../variables/ADDRESS_DETAILS_FRAGMENT.md | 11 + .../mutations/variables/ADD_ADMIN_MUTATION.md | 11 + .../variables/ADD_ADVERTISEMENT_MUTATION.md | 11 + .../variables/ADD_MEMBER_MUTATION.md | 11 + .../variables/ADD_PLUGIN_MUTATION.md | 15 + .../variables/BLOCK_USER_MUTATION.md | 11 + .../variables/CREATE_EVENT_MUTATION.md | 11 + .../variables/CREATE_ORGANIZATION_MUTATION.md | 11 + .../variables/CREATE_POST_MUTATION.md | 11 + .../variables/DELETE_ADVERTISEMENT_BY_ID.md | 11 + .../variables/DELETE_EVENT_MUTATION.md | 11 + .../variables/DELETE_ORGANIZATION_MUTATION.md | 11 + .../variables/DELETE_POST_MUTATION.md | 11 + .../variables/DONATE_TO_ORGANIZATION.md | 11 + .../variables/FORGOT_PASSWORD_MUTATION.md | 11 + .../variables/GENERATE_OTP_MUTATION.md | 11 + .../mutations/variables/LIKE_POST.md | 11 + .../mutations/variables/LOGIN_MUTATION.md | 11 + .../mutations/variables/RECAPTCHA_MUTATION.md | 11 + .../variables/REFRESH_TOKEN_MUTATION.md | 11 + .../mutations/variables/REGISTER_EVENT.md | 11 + .../REJECT_ORGANIZATION_REQUEST_MUTATION.md | 11 + .../variables/REMOVE_ADMIN_MUTATION.md | 11 + .../variables/REMOVE_MEMBER_MUTATION.md | 11 + .../mutations/variables/RESET_COMMUNITY.md | 11 + .../variables/REVOKE_REFRESH_TOKEN.md | 11 + .../mutations/variables/SIGNUP_MUTATION.md | 11 + .../variables/UNBLOCK_USER_MUTATION.md | 11 + .../mutations/variables/UNLIKE_POST.md | 11 + .../UPDATE_ADVERTISEMENT_MUTATION.md | 11 + .../mutations/variables/UPDATE_COMMUNITY.md | 11 + .../variables/UPDATE_EVENT_MUTATION.md | 11 + .../UPDATE_INSTALL_STATUS_PLUGIN_MUTATION.md | 15 + .../variables/UPDATE_ORGANIZATION_MUTATION.md | 11 + .../UPDATE_ORG_STATUS_PLUGIN_MUTATION.md | 15 + .../variables/UPDATE_POST_MUTATION.md | 11 + .../variables/UPDATE_SESSION_TIMEOUT.md | 11 + .../variables/UPDATE_USER_MUTATION.md | 11 + .../UPDATE_USER_PASSWORD_MUTATION.md | 11 + .../ActionItemCategoryQueries/README.md | 11 + .../variables/ACTION_ITEM_CATEGORY_LIST.md | 21 + .../Queries/ActionItemQueries/README.md | 12 + .../variables/ACTION_ITEMS_BY_USER.md | 11 + .../variables/ACTION_ITEM_LIST.md | 37 + .../Queries/AgendaCategoryQueries/README.md | 11 + .../variables/AGENDA_ITEM_CATEGORY_LIST.md | 21 + .../Queries/AgendaItemQueries/README.md | 12 + .../variables/AgendaItemByEvent.md | 11 + .../variables/AgendaItemByOrganization.md | 11 + .../Queries/EventVolunteerQueries/README.md | 14 + .../variables/EVENT_VOLUNTEER_GROUP_LIST.md | 11 + .../variables/EVENT_VOLUNTEER_LIST.md | 25 + .../variables/USER_VOLUNTEER_MEMBERSHIP.md | 11 + .../variables/VOLUNTEER_RANKING.md | 11 + .../Queries/OrganizationQueries/README.md | 19 + .../variables/ORGANIZATION_ADMINS_LIST.md | 21 + .../ORGANIZATION_ADVERTISEMENT_LIST.md | 11 + .../variables/ORGANIZATION_FUNDS.md | 21 + .../variables/ORGANIZATION_POST_LIST.md | 33 + .../variables/ORGANIZATION_USER_TAGS_LIST.md | 37 + .../variables/USER_CREATED_ORGANIZATIONS.md | 21 + .../variables/USER_JOINED_ORGANIZATIONS.md | 21 + .../variables/USER_ORGANIZATION_CONNECTION.md | 33 + .../variables/VENUE_LIST.md | 21 + .../GraphQl/Queries/PlugInQueries/README.md | 20 + .../variables/ADVERTISEMENTS_GET.md | 17 + .../PlugInQueries/variables/CHATS_LIST.md | 11 + .../PlugInQueries/variables/CHAT_BY_ID.md | 21 + .../variables/GROUP_CHAT_LIST.md | 11 + .../variables/IS_SAMPLE_ORGANIZATION_QUERY.md | 21 + .../variables/ORGANIZATION_CUSTOM_FIELDS.md | 21 + .../ORGANIZATION_EVENTS_CONNECTION.md | 41 + .../PlugInQueries/variables/PLUGIN_GET.md | 17 + .../variables/UNREAD_CHAT_LIST.md | 11 + .../variables/USER_EVENTS_VOLUNTEER.md | 11 + .../GraphQl/Queries/Queries/README.md | 132 ++ .../Queries/Queries/variables/ADMIN_LIST.md | 11 + .../variables/BLOCK_PAGE_MEMBER_LIST.md | 11 + .../Queries/Queries/variables/CHECK_AUTH.md | 11 + .../Queries/variables/EVENT_ATTENDEES.md | 11 + .../Queries/variables/EVENT_CHECKINS.md | 11 + .../Queries/variables/EVENT_DETAILS.md | 11 + .../Queries/variables/EVENT_FEEDBACKS.md | 11 + .../Queries/variables/EVENT_REGISTRANTS.md | 11 + .../Queries/variables/GET_COMMUNITY_DATA.md | 11 + .../GET_COMMUNITY_SESSION_TIMEOUT_DATA.md | 11 + .../Queries/variables/MEMBERSHIP_REQUEST.md | 11 + .../Queries/Queries/variables/MEMBERS_LIST.md | 11 + .../Queries/variables/ORGANIZATIONS_LIST.md | 11 + .../ORGANIZATIONS_MEMBER_CONNECTION_LIST.md | 11 + .../variables/ORGANIZATION_CONNECTION_LIST.md | 11 + .../ORGANIZATION_DONATION_CONNECTION_LIST.md | 11 + .../ORGANIZATION_EVENT_CONNECTION_LIST.md | 11 + .../variables/ORGANIZATION_EVENT_LIST.md | 11 + .../Queries/variables/ORGANIZATION_LIST.md | 11 + .../Queries/variables/RECURRING_EVENTS.md | 11 + .../variables/USERS_CONNECTION_LIST.md | 11 + .../Queries/Queries/variables/USER_DETAILS.md | 11 + .../Queries/Queries/variables/USER_LIST.md | 11 + .../Queries/variables/USER_LIST_FOR_TABLE.md | 11 + .../Queries/variables/USER_LIST_REQUEST.md | 11 + .../variables/USER_ORGANIZATION_LIST.md | 11 + .../GraphQl/Queries/fundQueries/README.md | 15 + .../fundQueries/variables/FUND_CAMPAIGN.md | 11 + .../variables/FUND_CAMPAIGN_PLEDGE.md | 11 + .../fundQueries/variables/FUND_LIST.md | 25 + .../variables/USER_FUND_CAMPAIGNS.md | 11 + .../fundQueries/variables/USER_PLEDGES.md | 11 + .../GraphQl/Queries/userTagQueries/README.md | 13 + .../variables/USER_TAGS_ASSIGNED_MEMBERS.md | 21 + .../USER_TAGS_MEMBERS_TO_ASSIGN_TO.md | 21 + .../variables/USER_TAG_SUB_TAGS.md | 21 + docs/docs/auto-docs/README.md | 60 + docs/docs/auto-docs/_media/CODE_OF_CONDUCT.md | 150 ++ docs/docs/auto-docs/_media/CONTRIBUTING.md | 179 ++ docs/docs/auto-docs/_media/INSTALLATION.md | 382 ++++ .../docs/auto-docs/_media/ISSUE_GUIDELINES.md | 59 + docs/docs/auto-docs/_media/PR_GUIDELINES.md | 69 + .../assets/svgs/social-icons/README.md | 7 + .../components/AddOn/AddOn/README.md | 11 + .../AddOn/AddOn/functions/default.md | 27 + .../core/AddOnEntry/AddOnEntry/README.md | 11 + .../AddOnEntry/functions/default.md | 43 + .../core/AddOnEntry/AddOnEntryMocks/README.md | 11 + .../variables/ADD_ON_ENTRY_MOCK.md | 65 + .../AddOnRegister/AddOnRegister/README.md | 11 + .../AddOnRegister/functions/default.md | 32 + .../core/AddOnStore/AddOnStore/README.md | 11 + .../AddOnStore/functions/default.md | 25 + .../components/Action/Action/README.md | 11 + .../Action/Action/functions/default.md | 35 + .../MainContent/MainContent/README.md | 11 + .../MainContent/functions/default.md | 35 + .../components/SidePanel/SidePanel/README.md | 11 + .../SidePanel/SidePanel/functions/default.md | 35 + .../support/services/Plugin.helper/README.md | 11 + .../services/Plugin.helper/classes/default.md | 77 + .../support/services/Render.helper/README.md | 11 + .../services/Render.helper/classes/default.md | 19 + .../AddPeopleToTag/AddPeopleToTag/README.md | 15 + .../AddPeopleToTag/functions/default.md | 31 + .../InterfaceAddPeopleToTagProps.md | 59 + .../AddPeopleToTagsMocks/README.md | 12 + .../AddPeopleToTagsMocks/variables/MOCKS.md | 11 + .../variables/MOCKS_ERROR.md | 57 + .../Advertisements/Advertisements/README.md | 11 + .../Advertisements/functions/default.md | 15 + .../AdvertisementEntry/README.md | 11 + .../AdvertisementEntry/functions/default.md | 28 + .../AdvertisementRegister/README.md | 11 + .../functions/default.md | 36 + .../AgendaCategoryContainer/README.md | 11 + .../functions/default.md | 47 + .../AgendaCategoryContainerMocks/README.md | 12 + .../variables/MOCKS.md | 11 + .../variables/MOCKS_ERROR_MUTATIONS.md | 11 + .../AgendaCategoryContainerProps/README.md | 12 + .../variables/props.md | 25 + .../variables/props2.md | 25 + .../AgendaItemsContainer/README.md | 11 + .../AgendaItemsContainer/functions/default.md | 43 + .../AgendaItemsContainerMocks/README.md | 12 + .../variables/MOCKS.md | 11 + .../variables/MOCKS_ERROR.md | 11 + .../AgendaItemsContainerProps/README.md | 12 + .../variables/props.md | 29 + .../variables/props2.md | 29 + .../AgendaItemsCreateModal/README.md | 11 + .../functions/default.md | 34 + .../AgendaItemsDeleteModal/README.md | 11 + .../functions/default.md | 34 + .../AgendaItemsPreviewModal/README.md | 11 + .../functions/default.md | 35 + .../AgendaItemsUpdateModal/README.md | 11 + .../functions/default.md | 35 + .../components/Avatar/Avatar/README.md | 11 + .../Avatar/Avatar/functions/default.md | 26 + .../ChangeLanguageDropDown/README.md | 11 + .../functions/default.md | 28 + .../components/CheckIn/CheckInModal/README.md | 11 + .../CheckInModal/functions/CheckInModal.md | 26 + .../CheckIn/CheckInWrapper/README.md | 11 + .../functions/CheckInWrapper.md | 27 + .../components/CheckIn/TableRow/README.md | 11 + .../CheckIn/TableRow/functions/TableRow.md | 32 + .../components/CheckIn/mocks/README.md | 13 + .../mocks/variables/checkInMutationSuccess.md | 49 + .../variables/checkInMutationUnsuccess.md | 37 + .../mocks/variables/checkInQueryMock.md | 37 + .../components/CheckIn/tagTemplate/README.md | 11 + .../tagTemplate/variables/tagTemplate.md | 11 + .../components/CheckIn/types/README.md | 16 + .../interfaces/InterfaceAttendeeCheckIn.md | 41 + .../InterfaceAttendeeQueryResponse.md | 25 + .../types/interfaces/InterfaceModalProp.md | 37 + .../types/interfaces/InterfaceTableCheckIn.md | 57 + .../types/interfaces/InterfaceTableData.md | 33 + .../CheckIn/types/interfaces/InterfaceUser.md | 33 + .../CollapsibleDropdown/README.md | 15 + .../CollapsibleDropdown/functions/default.md | 25 + .../InterfaceCollapsibleDropdown.md | 33 + .../ContriStats/ContriStats/README.md | 11 + .../ContriStats/functions/default.md | 25 + .../CurrentHourIndicator/README.md | 11 + .../CurrentHourIndicator/functions/default.md | 19 + .../DynamicDropDown/DynamicDropDown/README.md | 11 + .../DynamicDropDown/functions/default.md | 32 + .../EditCustomFieldDropDown/README.md | 11 + .../functions/default.md | 29 + .../EventCalendar/EventCalendar/README.md | 11 + .../EventCalendar/functions/default.md | 31 + .../EventCalendar/EventHeader/README.md | 11 + .../EventHeader/functions/default.md | 26 + .../YearlyEventCalender/README.md | 11 + .../YearlyEventCalender/functions/default.md | 38 + .../EventDashboardScreen/README.md | 11 + .../EventDashboardScreen/functions/default.md | 20 + .../EventListCard/EventListCard/README.md | 15 + .../EventListCard/functions/default.md | 27 + .../interfaces/InterfaceEventListCardProps.md | 183 ++ .../EventListCardMocks/README.md | 12 + .../variables/ERROR_MOCKS.md | 33 + .../EventListCardMocks/variables/MOCKS.md | 11 + .../EventListCardModals/README.md | 11 + .../EventListCardModals/functions/default.md | 28 + .../EventListCardProps/README.md | 11 + .../EventListCardProps/variables/props.md | 11 + .../Dashboard/EventDashboard.mocks/README.md | 12 + .../variables/MOCKS_WITHOUT_TIME.md | 101 + .../variables/MOCKS_WITH_TIME.md | 101 + .../Dashboard/EventDashboard/README.md | 11 + .../EventDashboard/functions/default.md | 29 + .../EventAgendaItems/README.md | 11 + .../EventAgendaItems/functions/default.md | 29 + .../EventAgendaItemsMocks/README.md | 13 + .../EventAgendaItemsMocks/variables/MOCKS.md | 11 + .../variables/MOCKS_ERROR_MUTATION.md | 11 + .../variables/MOCKS_ERROR_QUERY.md | 11 + .../Attendance.mocks/README.md | 12 + .../Attendance.mocks/variables/MOCKS.md | 41 + .../Attendance.mocks/variables/MOCKS_ERROR.md | 29 + .../AttendedEventList/README.md | 11 + .../AttendedEventList/functions/default.md | 35 + .../EventAttendance/EventAttendance/README.md | 11 + .../EventAttendance/functions/default.md | 20 + .../EventAttendance/EventStatistics/README.md | 11 + .../functions/AttendanceStatisticsModal.md | 36 + .../EventAttendance/InterfaceEvents/README.md | 14 + ...InterfaceAttendanceStatisticsModalProps.md | 75 + .../interfaces/InterfaceEvent.md | 189 ++ .../interfaces/InterfaceMember.md | 97 + .../interfaces/InterfaceRecurringEvent.md | 89 + .../EventRegistrants/README.md | 11 + .../EventRegistrants/functions/default.md | 20 + .../Registrations.mocks/README.md | 12 + .../variables/REGISTRANTS_MOCKS.md | 11 + .../variables/REGISTRANTS_MOCKS_ERROR.md | 33 + .../AddOnSpotAttendee/README.md | 11 + .../AddOnSpotAttendee/functions/default.md | 35 + .../EventRegistrantsModal/README.md | 11 + .../functions/EventRegistrantsModal.md | 26 + .../EventRegistrantsWrapper/README.md | 11 + .../functions/EventRegistrantsWrapper.md | 25 + .../EventStats/EventStats/README.md | 11 + .../EventStats/functions/EventStats.md | 26 + .../EventStats/EventStatsWrapper/README.md | 11 + .../functions/EventStatsWrapper.md | 27 + .../Statistics/AverageRating/README.md | 11 + .../AverageRating/functions/AverageRating.md | 28 + .../EventStats/Statistics/Feedback/README.md | 11 + .../Feedback/functions/FeedbackStats.md | 28 + .../EventStats/Statistics/Review/README.md | 11 + .../Review/functions/ReviewStats.md | 28 + .../GroupChatDetails/README.md | 11 + .../GroupChatDetails/functions/default.md | 25 + .../HolidayCards/HolidayCard/README.md | 11 + .../HolidayCard/functions/default.md | 27 + .../IconComponent/IconComponent/README.md | 15 + .../IconComponent/functions/default.md | 27 + .../interfaces/InterfaceIconComponent.md | 41 + .../InfiniteScrollLoader/README.md | 11 + .../InfiniteScrollLoader/functions/default.md | 17 + .../LeftDrawer/LeftDrawer/README.md | 15 + .../LeftDrawer/functions/default.md | 25 + .../interfaces/InterfaceLeftDrawerProps.md | 25 + .../LeftDrawerOrg/LeftDrawerOrg/README.md | 15 + .../LeftDrawerOrg/functions/default.md | 25 + .../interfaces/InterfaceLeftDrawerProps.md | 41 + .../components/Loader/Loader/README.md | 11 + .../Loader/Loader/functions/default.md | 25 + .../LoginPortalToggle/README.md | 11 + .../LoginPortalToggle/functions/default.md | 27 + .../EventsAttendedByMember/README.md | 11 + .../functions/default.md | 21 + .../EventsAttendedCardItem/README.md | 15 + .../functions/default.md | 21 + .../interfaces/InterfaceCardItem.md | 88 + .../EventsAttendedMemberModal/README.md | 11 + .../functions/default.md | 31 + .../MemberDetail/customTableCell/README.md | 11 + .../functions/CustomTableCell.md | 37 + .../MemberRequestCard/README.md | 11 + .../MemberRequestCard/functions/default.md | 27 + .../components/NotFound/NotFound/README.md | 11 + .../NotFound/NotFound/functions/default.md | 25 + .../OrgAdminListCard/README.md | 11 + .../OrgAdminListCard/functions/default.md | 25 + .../OrgContriCards/OrgContriCards/README.md | 11 + .../OrgContriCards/functions/default.md | 30 + .../components/OrgDelete/OrgDelete/README.md | 11 + .../OrgDelete/OrgDelete/functions/default.md | 21 + .../OrgListCard/OrgListCard/README.md | 15 + .../OrgListCard/functions/default.md | 31 + .../interfaces/InterfaceOrgListCardProps.md | 19 + .../OrgListCard/TruncatedText/README.md | 11 + .../TruncatedText/functions/default.md | 47 + .../OrgListCard/useDebounce/README.md | 11 + .../useDebounce/functions/default.md | 61 + .../OrgPeopleListCard/README.md | 11 + .../OrgPeopleListCard/functions/default.md | 30 + .../OrgPostCard/DeletePostModal/README.md | 11 + .../DeletePostModal/functions/default.md | 31 + .../OrgPostCard/OrgPostCard/README.md | 11 + .../OrgPostCard/functions/default.md | 21 + .../CategoryModal/README.md | 15 + .../CategoryModal/functions/default.md | 37 + .../InterfaceActionItemCategoryModal.md | 74 + .../OrgActionItemCategories/README.md | 11 + .../functions/default.md | 34 + .../OrgActionItemCategoryMocks/README.md | 13 + .../variables/MOCKS.md | 11 + .../variables/MOCKS_EMPTY.md | 53 + .../variables/MOCKS_ERROR.md | 11 + .../AgendaCategoryCreateModal/README.md | 11 + .../functions/default.md | 35 + .../AgendaCategoryDeleteModal/README.md | 11 + .../functions/default.md | 35 + .../AgendaCategoryPreviewModal/README.md | 11 + .../functions/default.md | 35 + .../AgendaCategoryUpdateModal/README.md | 11 + .../functions/default.md | 35 + .../OrganizationAgendaCategory/README.md | 11 + .../functions/default.md | 37 + .../README.md | 12 + ...S_ERROR_AGENDA_ITEM_CATEGORY_LIST_QUERY.md | 41 + .../variables/MOCKS_ERROR_MUTATION.md | 11 + .../OrganizationAgendaCategoryMocks/README.md | 11 + .../variables/MOCKS.md | 11 + .../General/DeleteOrg/DeleteOrg/README.md | 11 + .../DeleteOrg/DeleteOrg/functions/default.md | 24 + .../General/GeneralSettings/README.md | 11 + .../GeneralSettings/functions/default.md | 37 + .../OrgProfileFieldSettings/README.md | 11 + .../functions/default.md | 22 + .../General/OrgUpdate/OrgUpdate/README.md | 11 + .../OrgUpdate/OrgUpdate/functions/default.md | 31 + .../OrgUpdate/OrgUpdateMocks/README.md | 13 + .../OrgUpdateMocks/variables/MOCKS.md | 11 + .../variables/MOCKS_ERROR_ORGLIST.md | 33 + .../variables/MOCKS_ERROR_UPDATE_ORGLIST.md | 11 + .../OrganizationCard/README.md | 11 + .../OrganizationCard/functions/default.md | 27 + .../OrganizationCardStart/README.md | 11 + .../functions/default.md | 25 + .../OrganizationDashCards/CardItem/README.md | 15 + .../CardItem/functions/default.md | 27 + .../CardItem/interfaces/InterfaceCardItem.md | 83 + .../CardItemLoading/README.md | 11 + .../CardItemLoading/functions/default.md | 19 + .../DashboardCard/README.md | 11 + .../DashboardCard/functions/default.md | 35 + .../DashboardCardLoading/README.md | 11 + .../DashboardCardLoading/functions/default.md | 19 + .../OrganizationScreen/README.md | 11 + .../OrganizationScreen/functions/default.md | 24 + .../Pagination/Pagination/README.md | 11 + .../Pagination/functions/default.md | 31 + .../PaginationList/PaginationList/README.md | 11 + .../PaginationList/functions/default.md | 24 + .../ProfileDropdown/ProfileDropdown/README.md | 11 + .../ProfileDropdown/functions/default.md | 26 + .../CustomRecurrenceModal/README.md | 11 + .../functions/default.md | 41 + .../RecurrenceOptions/README.md | 11 + .../RecurrenceOptions/functions/default.md | 49 + .../RequestsTableItem/README.md | 15 + .../RequestsTableItem/functions/default.md | 31 + .../interfaces/InterfaceRequestsListItem.md | 39 + .../RequestsTableItemMocks/README.md | 11 + .../RequestsTableItemMocks/variables/MOCKS.md | 11 + .../SecuredRoute/SecuredRoute/README.md | 11 + .../SecuredRoute/functions/default.md | 22 + .../SuperAdminScreen/README.md | 11 + .../SuperAdminScreen/functions/default.md | 20 + .../TableLoader/TableLoader/README.md | 15 + .../TableLoader/functions/default.md | 29 + .../interfaces/InterfaceTableLoader.md | 33 + .../TagActions/TagActions/README.md | 15 + .../TagActions/functions/default.md | 31 + .../interfaces/InterfaceTagActionsProps.md | 55 + .../TagActions/TagActionsMocks/README.md | 13 + .../TagActionsMocks/variables/MOCKS.md | 11 + .../MOCKS_ERROR_ORGANIZATION_TAGS_QUERY.md | 49 + .../variables/MOCKS_ERROR_SUBTAGS_QUERY.md | 11 + .../components/TagActions/TagNode/README.md | 11 + .../TagActions/TagNode/functions/default.md | 33 + .../TagActions/TagNodeMocks/README.md | 12 + .../TagNodeMocks/variables/MOCKS1.md | 11 + .../variables/MOCKS_ERROR_SUBTAGS_QUERY1.md | 37 + .../UpdateSession/UpdateSession/README.md | 11 + .../UpdateSession/functions/default.md | 31 + .../UserListCard/UserListCard/README.md | 11 + .../UserListCard/functions/default.md | 28 + .../UserPasswordUpdate/README.md | 11 + .../UserPasswordUpdate/functions/default.md | 38 + .../UserPasswordUpdateMocks/README.md | 11 + .../variables/MOCKS.md | 11 + .../UserPortal/ChatRoom/ChatRoom/README.md | 11 + .../ChatRoom/ChatRoom/functions/default.md | 21 + .../CommentCard/CommentCard/README.md | 11 + .../CommentCard/functions/default.md | 30 + .../ContactCard/ContactCard/README.md | 11 + .../ContactCard/functions/default.md | 31 + .../CreateDirectChat/README.md | 11 + .../CreateDirectChat/functions/default.md | 21 + .../CreateGroupChat/CreateGroupChat/README.md | 11 + .../CreateGroupChat/functions/default.md | 21 + .../DonationCard/DonationCard/README.md | 11 + .../DonationCard/functions/default.md | 30 + .../UserPortal/EventCard/EventCard/README.md | 11 + .../EventCard/EventCard/functions/default.md | 31 + .../OrganizationCard/README.md | 11 + .../OrganizationCard/functions/default.md | 21 + .../OrganizationNavbar/README.md | 11 + .../OrganizationNavbar/functions/default.md | 33 + .../OrganizationSidebar/README.md | 11 + .../OrganizationSidebar/functions/default.md | 29 + .../PeopleCard/PeopleCard/README.md | 11 + .../PeopleCard/functions/default.md | 34 + .../UserPortal/PostCard/PostCard/README.md | 11 + .../PostCard/PostCard/functions/default.md | 34 + .../PromotedPost/PromotedPost/README.md | 11 + .../PromotedPost/functions/default.md | 32 + .../UserPortal/Register/Register/README.md | 11 + .../Register/Register/functions/default.md | 21 + .../SecuredRouteForUser/README.md | 11 + .../SecuredRouteForUser/functions/default.md | 22 + .../StartPostModal/StartPostModal/README.md | 11 + .../StartPostModal/functions/default.md | 30 + .../UserNavbar/UserNavbar/README.md | 11 + .../UserNavbar/functions/default.md | 24 + .../EventsAttendedByUser/README.md | 17 + .../functions/EventsAttendedByUser.md | 31 + .../UserProfile/UserAddressFields/README.md | 17 + .../functions/UserAddressFields.md | 38 + .../UserSidebar/UserSidebar/README.md | 15 + .../UserSidebar/functions/default.md | 30 + .../interfaces/InterfaceUserSidebarProps.md | 25 + .../UserSidebarOrg/UserSidebarOrg/README.md | 15 + .../UserSidebarOrg/functions/default.md | 30 + .../InterfaceUserSidebarOrgProps.md | 41 + .../UserProfileSettings/DeleteUser/README.md | 11 + .../DeleteUser/functions/default.md | 34 + .../OtherSettings/README.md | 11 + .../OtherSettings/functions/default.md | 34 + .../UserProfileSettings/UserProfile/README.md | 11 + .../UserProfile/functions/default.md | 38 + .../UserTableItemMocks/README.md | 13 + .../UserTableItemMocks/variables/MOCKS.md | 11 + .../UserTableItemMocks/variables/MOCKS2.md | 37 + .../variables/MOCKS_UPDATE.md | 11 + .../UsersTableItem/UsersTableItem/README.md | 11 + .../UsersTableItem/functions/default.md | 21 + .../components/Venues/VenueCard/README.md | 11 + .../Venues/VenueCard/functions/default.md | 39 + .../components/Venues/VenueModal/README.md | 15 + .../Venues/VenueModal/functions/default.md | 28 + .../interfaces/InterfaceVenueModalProps.md | 65 + .../plugins/DummyPlugin/DummyPlugin/README.md | 11 + .../DummyPlugin/functions/default.md | 22 + .../DummyPlugin2/DummyPlugin2/README.md | 11 + .../DummyPlugin2/functions/default.md | 21 + .../auto-docs/components/plugins/README.md | 19 + docs/docs/auto-docs/constants/README.md | 11 + .../constants/variables/socialMediaLinks.md | 25 + docs/docs/auto-docs/index/README.md | 7 + docs/docs/auto-docs/modules.md | 337 +++ docs/docs/auto-docs/reportWebVitals/README.md | 11 + .../reportWebVitals/functions/default.md | 21 + .../screens/BlockUser/BlockUser/README.md | 11 + .../BlockUser/BlockUser/functions/default.md | 28 + .../CommunityProfile/README.md | 11 + .../CommunityProfile/functions/default.md | 30 + .../EventManagement/EventManagement/README.md | 11 + .../EventManagement/functions/default.md | 34 + .../Requests/Requests.mocks/README.md | 14 + .../Requests.mocks/variables/EMPTY_MOCKS.md | 49 + .../Requests.mocks/variables/ERROR_MOCKS.md | 11 + .../Requests.mocks/variables/MOCKS.md | 11 + .../variables/UPDATE_ERROR_MOCKS.md | 11 + .../Requests/Requests/README.md | 11 + .../Requests/Requests/functions/default.md | 21 + .../VolunteerContainer/README.md | 11 + .../VolunteerContainer/functions/default.md | 21 + .../VolunteerGroupDeleteModal/README.md | 15 + .../functions/default.md | 48 + .../InterfaceDeleteVolunteerGroupModal.md | 49 + .../VolunteerGroupModal/README.md | 15 + .../VolunteerGroupModal/functions/default.md | 54 + .../InterfaceVolunteerGroupModal.md | 73 + .../VolunteerGroupViewModal/README.md | 15 + .../functions/default.md | 41 + .../InterfaceVolunteerGroupViewModal.md | 37 + .../VolunteerGroups.mocks/README.md | 13 + .../VolunteerGroups.mocks/variables/MOCKS.md | 11 + .../variables/MOCKS_EMPTY.md | 57 + .../variables/MOCKS_ERROR.md | 11 + .../VolunteerGroups/VolunteerGroups/README.md | 11 + .../VolunteerGroups/functions/default.md | 20 + .../Volunteers/VolunteerCreateModal/README.md | 15 + .../VolunteerCreateModal/functions/default.md | 49 + .../InterfaceVolunteerCreateModal.md | 57 + .../Volunteers/VolunteerDeleteModal/README.md | 15 + .../VolunteerDeleteModal/functions/default.md | 48 + .../InterfaceDeleteVolunteerModal.md | 49 + .../Volunteers/VolunteerViewModal/README.md | 15 + .../VolunteerViewModal/functions/default.md | 41 + .../interfaces/InterfaceVolunteerViewModal.md | 37 + .../Volunteers/Volunteers.mocks/README.md | 13 + .../Volunteers.mocks/variables/MOCKS.md | 11 + .../Volunteers.mocks/variables/MOCKS_EMPTY.md | 53 + .../Volunteers.mocks/variables/MOCKS_ERROR.md | 11 + .../Volunteers/Volunteers/README.md | 11 + .../Volunteers/functions/default.md | 21 + .../ForgotPassword/ForgotPassword/README.md | 11 + .../ForgotPassword/functions/default.md | 29 + .../FundCampaignPledge/README.md | 11 + .../FundCampaignPledge/functions/default.md | 15 + .../PledgeDeleteModal/README.md | 15 + .../PledgeDeleteModal/functions/default.md | 48 + .../interfaces/InterfaceDeletePledgeModal.md | 49 + .../FundCampaignPledge/PledgeModal/README.md | 15 + .../PledgeModal/functions/default.md | 53 + .../interfaces/InterfacePledgeModal.md | 81 + .../FundCampaignPledge/PledgesMocks/README.md | 15 + .../PledgesMocks/variables/EMPTY_MOCKS.md | 11 + .../PledgesMocks/variables/MOCKS.md | 11 + .../variables/MOCKS_DELETE_PLEDGE_ERROR.md | 11 + .../MOCKS_FUND_CAMPAIGN_PLEDGE_ERROR.md | 11 + .../variables/PLEDGE_MODAL_MOCKS.md | 11 + .../Leaderboard/Leaderboard.mocks/README.md | 13 + .../variables/EMPTY_MOCKS.md | 57 + .../variables/ERROR_MOCKS.md | 49 + .../Leaderboard.mocks/variables/MOCKS.md | 57 + .../screens/Leaderboard/Leaderboard/README.md | 11 + .../Leaderboard/functions/default.md | 23 + .../screens/LoginPage/LoginPage/README.md | 11 + .../LoginPage/LoginPage/functions/default.md | 19 + .../ManageTag/EditUserTagModal/README.md | 15 + .../EditUserTagModal/functions/default.md | 31 + .../InterfaceEditUserTagModalProps.md | 91 + .../screens/ManageTag/ManageTag/README.md | 11 + .../ManageTag/ManageTag/functions/default.md | 17 + .../MockAddPeopleToTag/README.md | 11 + .../MockAddPeopleToTag/functions/default.md | 31 + .../MockTagActions/README.md | 11 + .../MockTagActions/functions/default.md | 33 + .../ManageTag/ManageTagMocks/README.md | 12 + .../ManageTagMocks/variables/MOCKS.md | 11 + .../variables/MOCKS_ERROR_ASSIGNED_MEMBERS.md | 65 + .../ManageTag/RemoveUserTagModal/README.md | 15 + .../RemoveUserTagModal/functions/default.md | 31 + .../InterfaceRemoveUserTagModalProps.md | 59 + .../ManageTag/UnassignUserTagModal/README.md | 15 + .../UnassignUserTagModal/functions/default.md | 31 + .../InterfaceUnassignUserTagModalProps.md | 59 + .../MemberDetail/MemberDetail/README.md | 13 + .../MemberDetail/functions/default.md | 38 + .../MemberDetail/functions/getLanguageName.md | 21 + .../MemberDetail/functions/prettyDate.md | 21 + .../MemberDetail/MemberDetailMocks/README.md | 13 + .../MemberDetailMocks/variables/MOCKS1.md | 11 + .../MemberDetailMocks/variables/MOCKS2.md | 221 ++ .../MemberDetailMocks/variables/MOCKS3.md | 221 ++ .../OrgContribution/OrgContribution/README.md | 11 + .../OrgContribution/functions/default.md | 19 + .../screens/OrgList/OrgList/README.md | 11 + .../OrgList/OrgList/functions/default.md | 15 + .../screens/OrgList/OrgListMocks/README.md | 14 + .../OrgList/OrgListMocks/variables/MOCKS.md | 11 + .../OrgListMocks/variables/MOCKS_ADMIN.md | 11 + .../OrgListMocks/variables/MOCKS_EMPTY.md | 11 + .../variables/MOCKS_WITH_ERROR.md | 11 + .../OrgList/OrganizationModal/README.md | 11 + .../OrganizationModal/functions/default.md | 33 + .../screens/OrgPost/OrgPost/README.md | 11 + .../OrgPost/OrgPost/functions/default.md | 21 + .../OrgSettings/OrgSettings.mocks/README.md | 11 + .../OrgSettings.mocks/variables/MOCKS.md | 11 + .../screens/OrgSettings/OrgSettings/README.md | 11 + .../OrgSettings/functions/default.md | 23 + .../ItemDeleteModal/README.md | 15 + .../ItemDeleteModal/functions/default.md | 37 + .../InterfaceItemDeleteModalProps.md | 51 + .../ItemModal/README.md | 15 + .../ItemModal/functions/default.md | 37 + .../interfaces/InterfaceItemModalProps.md | 75 + .../ItemUpdateStatusModal/README.md | 15 + .../functions/default.md | 31 + .../InterfaceItemUpdateStatusModalProps.md | 49 + .../ItemViewModal/README.md | 15 + .../ItemViewModal/functions/default.md | 38 + .../interfaces/InterfaceViewModalProps.md | 37 + .../OrganizationActionItem.mocks/README.md | 13 + .../variables/MOCKS.md | 11 + .../variables/MOCKS_EMPTY.md | 11 + .../variables/MOCKS_ERROR.md | 11 + .../OrganizationActionItems/README.md | 11 + .../functions/default.md | 21 + .../testObject.mocks/README.md | 22 + .../variables/actionItemCategory1.md | 21 + .../variables/actionItemCategory2.md | 21 + .../variables/actionItemCategoryListQuery.md | 49 + .../variables/baseActionItem.md | 57 + .../variables/groupListQuery.md | 45 + .../variables/itemWithGroup.md | 11 + .../variables/itemWithUser.md | 11 + .../variables/itemWithUserImage.md | 11 + .../variables/itemWithVolunteer.md | 11 + .../variables/itemWithVolunteerImage.md | 11 + .../variables/memberListQuery.md | 41 + .../variables/volunteerListQuery.md | 11 + .../OrganizationDashboard/README.md | 11 + .../functions/default.md | 21 + .../OrganizationDashboardMocks/README.md | 13 + .../variables/EMPTY_MOCKS.md | 11 + .../variables/ERROR_MOCKS.md | 11 + .../variables/MOCKS.md | 11 + .../OrganizationEvents/README.md | 15 + .../enumerations/ViewType.md | 33 + .../OrganizationEvents/functions/default.md | 27 + .../OrganizationEventsMocks/README.md | 11 + .../variables/MOCKS.md | 11 + .../CampaignModal/README.md | 15 + .../CampaignModal/functions/default.md | 37 + .../interfaces/InterfaceCampaignModal.md | 75 + .../OrganizationFundCampagins/README.md | 11 + .../functions/default.md | 45 + .../OrganizationFundCampaignMocks/README.md | 13 + .../variables/EMPTY_MOCKS.md | 65 + .../variables/MOCKS.md | 11 + .../variables/MOCK_ERROR.md | 11 + .../OrganizationFunds/FundModal/README.md | 15 + .../FundModal/functions/default.md | 59 + .../interfaces/InterfaceFundModal.md | 65 + .../OrganizationFunds/README.md | 11 + .../OrganizationFunds/functions/default.md | 48 + .../OrganizationFundsMocks/README.md | 13 + .../OrganizationFundsMocks/variables/MOCKS.md | 11 + .../variables/MOCKS_ERROR.md | 11 + .../variables/NO_FUNDS.md | 49 + .../OrganizationPeople/AddMember/README.md | 11 + .../AddMember/functions/default.md | 23 + .../MockDataTypes/README.md | 11 + .../MockDataTypes/type-aliases/TestMock.md | 153 ++ .../OrganizationPeople/README.md | 11 + .../OrganizationPeople/functions/default.md | 21 + .../OrganizationTags/README.md | 11 + .../OrganizationTags/functions/default.md | 20 + .../OrganizationTagsMocks/README.md | 12 + .../OrganizationTagsMocks/variables/MOCKS.md | 11 + .../variables/MOCKS_ERROR.md | 57 + .../OrganizationVenues/README.md | 11 + .../OrganizationVenues/functions/default.md | 18 + .../PageNotFound/PageNotFound/README.md | 11 + .../PageNotFound/functions/default.md | 19 + .../screens/Requests/Requests/README.md | 11 + .../Requests/Requests/functions/default.md | 18 + .../screens/Requests/RequestsMocks/README.md | 17 + .../RequestsMocks/variables/EMPTY_MOCKS.md | 11 + .../variables/EMPTY_REQUEST_MOCKS.md | 11 + .../Requests/RequestsMocks/variables/MOCKS.md | 11 + .../RequestsMocks/variables/MOCKS2.md | 11 + .../RequestsMocks/variables/MOCKS3.md | 11 + .../RequestsMocks/variables/MOCKS4.md | 11 + .../variables/MOCKS_WITH_ERROR.md | 11 + .../screens/SubTags/SubTags/README.md | 11 + .../SubTags/SubTags/functions/default.md | 20 + .../screens/SubTags/SubTagsMocks/README.md | 12 + .../SubTags/SubTagsMocks/variables/MOCKS.md | 11 + .../variables/MOCKS_ERROR_SUB_TAGS.md | 57 + .../UserPortal/Campaigns/Campaigns/README.md | 11 + .../Campaigns/Campaigns/functions/default.md | 20 + .../Campaigns/CampaignsMocks/README.md | 13 + .../CampaignsMocks/variables/EMPTY_MOCKS.md | 11 + .../CampaignsMocks/variables/MOCKS.md | 11 + .../variables/USER_FUND_CAMPAIGNS_ERROR.md | 11 + .../Campaigns/PledgeModal/README.md | 15 + .../PledgeModal/functions/default.md | 34 + .../interfaces/InterfacePledgeModal.md | 83 + .../screens/UserPortal/Chat/Chat/README.md | 11 + .../UserPortal/Chat/Chat/functions/default.md | 15 + .../UserPortal/Donate/Donate/README.md | 15 + .../Donate/Donate/functions/default.md | 38 + .../interfaces/InterfaceDonationCardProps.md | 57 + .../UserPortal/Events/Events/README.md | 11 + .../Events/Events/functions/default.md | 22 + .../LeaveOrganization/README.md | 16 + .../LeaveOrganization/functions/default.md | 15 + .../LeaveOrganization/variables/userEmail.md | 11 + .../LeaveOrganization/variables/userId.md | 11 + .../Organizations/Organizations/README.md | 11 + .../Organizations/functions/default.md | 17 + .../UserPortal/People/People/README.md | 11 + .../People/People/functions/default.md | 19 + .../UserPortal/Pledges/Pledges/README.md | 11 + .../Pledges/Pledges/functions/default.md | 32 + .../UserPortal/Pledges/PledgesMocks/README.md | 13 + .../PledgesMocks/variables/EMPTY_MOCKS.md | 11 + .../Pledges/PledgesMocks/variables/MOCKS.md | 11 + .../variables/USER_PLEDGES_ERROR.md | 11 + .../screens/UserPortal/Posts/Posts/README.md | 11 + .../Posts/Posts/functions/default.md | 21 + .../UserPortal/Settings/Settings/README.md | 11 + .../Settings/Settings/functions/default.md | 20 + .../UserScreen/UserScreen/README.md | 11 + .../UserScreen/functions/default.md | 21 + .../Volunteer/Actions/Actions.mocks/README.md | 13 + .../Actions.mocks/variables/EMPTY_MOCKS.md | 57 + .../Actions.mocks/variables/ERROR_MOCKS.md | 49 + .../Actions/Actions.mocks/variables/MOCKS.md | 11 + .../Volunteer/Actions/Actions/README.md | 11 + .../Actions/Actions/functions/default.md | 21 + .../Volunteer/Groups/GroupModal/README.md | 15 + .../Groups/GroupModal/functions/default.md | 51 + .../interfaces/InterfaceGroupModal.md | 57 + .../Volunteer/Groups/Groups.mocks/README.md | 14 + .../Groups.mocks/variables/EMPTY_MOCKS.md | 11 + .../Groups.mocks/variables/ERROR_MOCKS.md | 53 + .../Groups/Groups.mocks/variables/MOCKS.md | 11 + .../variables/UPDATE_ERROR_MOCKS.md | 11 + .../Volunteer/Groups/Groups/README.md | 11 + .../Groups/Groups/functions/default.md | 20 + .../Invitations/Invitations.mocks/README.md | 14 + .../variables/EMPTY_MOCKS.md | 53 + .../variables/ERROR_MOCKS.md | 11 + .../Invitations.mocks/variables/MOCKS.md | 11 + .../variables/UPDATE_ERROR_MOCKS.md | 11 + .../Invitations/Invitations/README.md | 11 + .../Invitations/functions/default.md | 20 + .../UpcomingEvents.mocks/README.md | 14 + .../variables/CREATE_ERROR_MOCKS.md | 11 + .../variables/EMPTY_MOCKS.md | 61 + .../variables/ERROR_MOCKS.md | 53 + .../UpcomingEvents.mocks/variables/MOCKS.md | 11 + .../UpcomingEvents/UpcomingEvents/README.md | 11 + .../UpcomingEvents/functions/default.md | 20 + .../Volunteer/VolunteerManagement/README.md | 11 + .../VolunteerManagement/functions/default.md | 25 + .../auto-docs/screens/Users/Users/README.md | 11 + .../screens/Users/Users/functions/default.md | 55 + .../screens/Users/UsersMocks/README.md | 13 + .../Users/UsersMocks/variables/EMPTY_MOCKS.md | 11 + .../Users/UsersMocks/variables/MOCKS.md | 11 + .../Users/UsersMocks/variables/MOCKS2.md | 11 + .../askAndSetDockerOption/README.md | 11 + .../functions/default.md | 15 + .../askAndUpdatePort/README.md | 11 + .../askAndUpdatePort/functions/default.md | 15 + .../askForCustomPort/README.md | 13 + .../functions/askForCustomPort.md | 15 + .../functions/reservedPortWarning.md | 21 + .../functions/validatePort.md | 21 + .../setup/askForDocker/askForDocker/README.md | 12 + .../functions/askAndUpdateTalawaApiUrl.md | 15 + .../askForDocker/functions/askForDocker.md | 15 + .../askForTalawaApiUrl/README.md | 11 + .../functions/askForTalawaApiUrl.md | 15 + .../checkConnection/checkConnection/README.md | 11 + .../functions/checkConnection.md | 21 + .../setup/checkEnvFile/checkEnvFile/README.md | 11 + .../checkEnvFile/functions/checkEnvFile.md | 15 + .../updateEnvFile/updateEnvFile/README.md | 11 + .../updateEnvFile/functions/default.md | 25 + .../validateRecaptcha/README.md | 11 + .../functions/validateRecaptcha.md | 21 + docs/docs/auto-docs/setupTests/README.md | 7 + docs/docs/auto-docs/state/README.md | 13 + .../auto-docs/state/action-creators/README.md | 15 + .../functions/installPlugin.md | 31 + .../action-creators/functions/removePlugin.md | 31 + .../functions/updateInstalled.md | 31 + .../functions/updatePluginLinks.md | 31 + .../functions/updateTargets.md | 31 + .../auto-docs/state/helpers/Action/README.md | 11 + .../Action/interfaces/InterfaceAction.md | 25 + docs/docs/auto-docs/state/hooks/README.md | 11 + .../state/hooks/functions/useAppDispatch.md | 25 + docs/docs/auto-docs/state/reducers/README.md | 15 + .../state/reducers/functions/reducers.md | 53 + .../state/reducers/pluginReducer/README.md | 11 + .../pluginReducer/functions/default.md | 25 + .../state/reducers/routesReducer/README.md | 17 + .../routesReducer/functions/default.md | 39 + .../type-aliases/ComponentType.md | 29 + .../type-aliases/SubTargetType.md | 29 + .../routesReducer/type-aliases/TargetsType.md | 25 + .../state/reducers/type-aliases/RootState.md | 11 + .../reducers/userRoutesReducer/README.md | 17 + .../userRoutesReducer/functions/default.md | 39 + .../type-aliases/ComponentType.md | 29 + .../type-aliases/SubTargetType.md | 29 + .../type-aliases/TargetsType.md | 25 + docs/docs/auto-docs/state/store/README.md | 15 + .../state/store/type-aliases/AppDispatch.md | 11 + .../auto-docs/state/store/variables/store.md | 11 + .../subComponents/SortingButton/README.md | 11 + .../SortingButton/functions/default.md | 38 + .../auto-docs/utils/StaticMockLink/README.md | 19 + .../StaticMockLink/classes/StaticMockLink.md | 94 + .../functions/mockSingleLink.md | 21 + .../interfaces/InterfaceMockApolloLink.md | 21 + .../docs/auto-docs/utils/chartToPdf/README.md | 13 + .../functions/exportDemographicsToCSV.md | 29 + .../utils/chartToPdf/functions/exportToCSV.md | 25 + .../chartToPdf/functions/exportTrendsToCSV.md | 37 + .../auto-docs/utils/convertToBase64/README.md | 11 + .../convertToBase64/functions/default.md | 21 + docs/docs/auto-docs/utils/currency/README.md | 12 + .../currency/variables/currencyOptions.md | 21 + .../currency/variables/currencySymbols.md | 15 + .../auto-docs/utils/dateFormatter/README.md | 11 + .../dateFormatter/functions/formatDate.md | 21 + .../auto-docs/utils/errorHandler/README.md | 11 + .../errorHandler/functions/errorHandler.md | 29 + .../docs/auto-docs/utils/fieldTypes/README.md | 11 + .../utils/fieldTypes/variables/default.md | 11 + .../auto-docs/utils/formEnumFields/README.md | 16 + .../variables/countryOptions.md | 21 + .../variables/educationGradeEnum.md | 21 + .../variables/employmentStatusEnum.md | 21 + .../formEnumFields/variables/genderEnum.md | 21 + .../variables/maritalStatusEnum.md | 21 + .../formEnumFields/variables/userRoleEnum.md | 21 + .../utils/getOrganizationId/README.md | 11 + .../getOrganizationId/functions/default.md | 21 + .../auto-docs/utils/getRefreshToken/README.md | 11 + .../getRefreshToken/functions/refreshToken.md | 15 + docs/docs/auto-docs/utils/i18n/README.md | 7 + .../auto-docs/utils/i18nForTest/README.md | 7 + .../docs/auto-docs/utils/interfaces/README.md | 60 + .../InterfaceActionItemCategoryInfo.md | 61 + .../InterfaceActionItemCategoryList.md | 17 + .../interfaces/InterfaceActionItemInfo.md | 153 ++ .../interfaces/InterfaceActionItemList.md | 17 + .../InterfaceAddOnSpotAttendeeProps.md | 41 + .../interfaces/interfaces/InterfaceAddress.md | 73 + .../InterfaceAgendaItemCategoryInfo.md | 53 + .../InterfaceAgendaItemCategoryList.md | 17 + .../interfaces/InterfaceAgendaItemInfo.md | 153 ++ .../interfaces/InterfaceAgendaItemList.md | 17 + .../interfaces/InterfaceBaseEvent.md | 94 + .../interfaces/InterfaceCampaignInfo.md | 65 + .../interfaces/InterfaceCreateFund.md | 49 + .../interfaces/InterfaceCreatePledge.md | 49 + .../InterfaceCreateVolunteerGroup.md | 49 + .../interfaces/InterfaceCustomFieldData.md | 25 + .../interfaces/InterfaceEventVolunteerInfo.md | 73 + .../interfaces/InterfaceFormData.md | 49 + .../interfaces/InterfaceFundInfo.md | 93 + .../interfaces/interfaces/InterfaceMapType.md | 13 + .../interfaces/InterfaceMemberInfo.md | 69 + .../interfaces/InterfaceMembersList.md | 25 + .../InterfaceOrgConnectionInfoType.md | 93 + .../interfaces/InterfaceOrgConnectionType.md | 17 + .../interfaces/InterfacePledgeInfo.md | 77 + .../interfaces/InterfacePostCard.md | 173 ++ .../interfaces/InterfacePostForm.md | 49 + .../InterfaceQueryBlockPageMemberListItem.md | 53 + .../InterfaceQueryFundCampaignsPledges.md | 69 + ...nterfaceQueryMembershipRequestsListItem.md | 25 + ...eQueryOrganizationAdvertisementListItem.md | 45 + ...InterfaceQueryOrganizationEventListItem.md | 149 ++ ...InterfaceQueryOrganizationFundCampaigns.md | 61 + .../InterfaceQueryOrganizationListObject.md | 89 + .../InterfaceQueryOrganizationPostListItem.md | 45 + .../InterfaceQueryOrganizationUserTags.md | 17 + .../InterfaceQueryOrganizationsListObject.md | 189 ++ .../interfaces/InterfaceQueryUserListItem.md | 89 + .../InterfaceQueryUserTagChildTags.md | 41 + .../InterfaceQueryUserTagsAssignedMembers.md | 41 + ...InterfaceQueryUserTagsMembersToAssignTo.md | 25 + .../interfaces/InterfaceQueryVenueListItem.md | 49 + .../interfaces/interfaces/InterfaceTagData.md | 77 + .../interfaces/InterfaceUserCampaign.md | 57 + .../interfaces/InterfaceUserEvents.md | 181 ++ .../interfaces/InterfaceUserInfo.md | 41 + .../interfaces/InterfaceUserType.md | 33 + .../interfaces/InterfaceVolunteerGroupInfo.md | 125 + .../InterfaceVolunteerMembership.md | 85 + .../interfaces/InterfaceVolunteerRank.md | 53 + docs/docs/auto-docs/utils/languages/README.md | 12 + .../languages/variables/languageArray.md | 11 + .../utils/languages/variables/languages.md | 25 + .../auto-docs/utils/linkValidator/README.md | 11 + .../linkValidator/functions/isValidLink.md | 21 + .../utils/organizationTagsUtils/README.md | 24 + .../InterfaceOrganizationSubTagsQuery.md | 83 + .../InterfaceOrganizationTagsQuery.md | 83 + .../InterfaceTagAssignedMembersQuery.md | 83 + .../InterfaceTagUsersToAssignToQuery.md | 83 + .../type-aliases/SortedByType.md | 11 + .../type-aliases/TagActionType.md | 11 + .../variables/TAGS_QUERY_DATA_CHUNK_SIZE.md | 11 + .../variables/dataGridStyle.md | 85 + .../auto-docs/utils/recurrenceUtils/README.md | 163 ++ .../recurrenceConstants/README.md | 25 + .../recurrenceConstants/variables/Days.md | 11 + .../variables/allInstances.md | 11 + .../recurrenceConstants/variables/dayNames.md | 41 + .../variables/daysOptions.md | 11 + .../variables/endsAfter.md | 11 + .../variables/endsNever.md | 11 + .../recurrenceConstants/variables/endsOn.md | 11 + .../variables/frequencies.md | 29 + .../variables/mondayToFriday.md | 11 + .../variables/monthNames.md | 11 + .../variables/recurrenceEndOptions.md | 11 + .../recurringEventMutationOptions.md | 11 + .../variables/thisAndFollowingInstances.md | 11 + .../variables/thisInstance.md | 11 + .../variables/weekDayOccurences.md | 11 + .../recurrenceUtils/recurrenceTypes/README.md | 19 + .../recurrenceTypes/enumerations/Frequency.md | 41 + .../enumerations/RecurrenceEndOption.md | 33 + .../RecurringEventMutationType.md | 33 + .../recurrenceTypes/enumerations/WeekDays.md | 65 + .../interfaces/InterfaceRecurrenceRule.md | 65 + .../InterfaceRecurrenceRuleState.md | 65 + .../recurrenceUtilityFunctions/README.md | 15 + .../functions/getRecurrenceRuleText.md | 21 + .../functions/getWeekDayOccurenceInMonth.md | 21 + .../functions/hasRecurrenceRuleChanged.md | 25 + .../functions/haveInstanceDatesChanged.md | 33 + .../functions/isLastOccurenceOfWeekDay.md | 21 + .../auto-docs/utils/timezoneUtils/README.md | 25 + .../timezoneUtils/dateTimeConfig/README.md | 11 + .../variables/dateTimeFields.md | 21 + .../dateTimeMiddleware/README.md | 12 + .../variables/requestMiddleware.md | 11 + .../variables/responseMiddleware.md | 11 + .../auto-docs/utils/useLocalstorage/README.md | 21 + .../useLocalstorage/functions/getItem.md | 33 + .../functions/getStorageKey.md | 33 + .../useLocalstorage/functions/removeItem.md | 31 + .../useLocalstorage/functions/setItem.md | 37 + .../functions/useLocalStorage.md | 27 + .../docs/auto-docs/utils/useSession/README.md | 11 + .../utils/useSession/functions/default.md | 26 + docs/docs/auto-docs/vite-env/README.md | 7 + package-lock.json | 2035 +++-------------- package.json | 10 +- tsconfig.docs.json | 23 + 1048 files changed, 27571 insertions(+), 1787 deletions(-) delete mode 100644 docs/docs/auto-docs/.gitignore create mode 100644 docs/docs/auto-docs/App/README.md create mode 100644 docs/docs/auto-docs/App/functions/default.md create mode 100644 docs/docs/auto-docs/Constant/constant/README.md create mode 100644 docs/docs/auto-docs/Constant/constant/variables/AUTH_TOKEN.md create mode 100644 docs/docs/auto-docs/Constant/constant/variables/BACKEND_URL.md create mode 100644 docs/docs/auto-docs/Constant/constant/variables/REACT_APP_BACKEND_WEBSOCKET_URL.md create mode 100644 docs/docs/auto-docs/Constant/constant/variables/REACT_APP_CUSTOM_PORT.md create mode 100644 docs/docs/auto-docs/Constant/constant/variables/REACT_APP_USE_RECAPTCHA.md create mode 100644 docs/docs/auto-docs/Constant/constant/variables/RECAPTCHA_SITE_KEY.md create mode 100644 docs/docs/auto-docs/GraphQl/Mutations/ActionItemCategoryMutations/README.md create mode 100644 docs/docs/auto-docs/GraphQl/Mutations/ActionItemCategoryMutations/variables/CREATE_ACTION_ITEM_CATEGORY_MUTATION.md create mode 100644 docs/docs/auto-docs/GraphQl/Mutations/ActionItemCategoryMutations/variables/UPDATE_ACTION_ITEM_CATEGORY_MUTATION.md create mode 100644 docs/docs/auto-docs/GraphQl/Mutations/ActionItemMutations/README.md create mode 100644 docs/docs/auto-docs/GraphQl/Mutations/ActionItemMutations/variables/CREATE_ACTION_ITEM_MUTATION.md create mode 100644 docs/docs/auto-docs/GraphQl/Mutations/ActionItemMutations/variables/DELETE_ACTION_ITEM_MUTATION.md create mode 100644 docs/docs/auto-docs/GraphQl/Mutations/ActionItemMutations/variables/UPDATE_ACTION_ITEM_MUTATION.md create mode 100644 docs/docs/auto-docs/GraphQl/Mutations/AgendaCategoryMutations/README.md create mode 100644 docs/docs/auto-docs/GraphQl/Mutations/AgendaCategoryMutations/variables/CREATE_AGENDA_ITEM_CATEGORY_MUTATION.md create mode 100644 docs/docs/auto-docs/GraphQl/Mutations/AgendaCategoryMutations/variables/DELETE_AGENDA_ITEM_CATEGORY_MUTATION.md create mode 100644 docs/docs/auto-docs/GraphQl/Mutations/AgendaCategoryMutations/variables/UPDATE_AGENDA_ITEM_CATEGORY_MUTATION.md create mode 100644 docs/docs/auto-docs/GraphQl/Mutations/AgendaItemMutations/README.md create mode 100644 docs/docs/auto-docs/GraphQl/Mutations/AgendaItemMutations/variables/CREATE_AGENDA_ITEM_MUTATION.md create mode 100644 docs/docs/auto-docs/GraphQl/Mutations/AgendaItemMutations/variables/DELETE_AGENDA_ITEM_MUTATION.md create mode 100644 docs/docs/auto-docs/GraphQl/Mutations/AgendaItemMutations/variables/UPDATE_AGENDA_ITEM_MUTATION.md create mode 100644 docs/docs/auto-docs/GraphQl/Mutations/CampaignMutation/README.md create mode 100644 docs/docs/auto-docs/GraphQl/Mutations/CampaignMutation/variables/CREATE_CAMPAIGN_MUTATION.md create mode 100644 docs/docs/auto-docs/GraphQl/Mutations/CampaignMutation/variables/UPDATE_CAMPAIGN_MUTATION.md create mode 100644 docs/docs/auto-docs/GraphQl/Mutations/CommentMutations/README.md create mode 100644 docs/docs/auto-docs/GraphQl/Mutations/CommentMutations/variables/CREATE_COMMENT_POST.md create mode 100644 docs/docs/auto-docs/GraphQl/Mutations/CommentMutations/variables/LIKE_COMMENT.md create mode 100644 docs/docs/auto-docs/GraphQl/Mutations/CommentMutations/variables/UNLIKE_COMMENT.md create mode 100644 docs/docs/auto-docs/GraphQl/Mutations/EventAttendeeMutations/README.md create mode 100644 docs/docs/auto-docs/GraphQl/Mutations/EventAttendeeMutations/variables/ADD_EVENT_ATTENDEE.md create mode 100644 docs/docs/auto-docs/GraphQl/Mutations/EventAttendeeMutations/variables/MARK_CHECKIN.md create mode 100644 docs/docs/auto-docs/GraphQl/Mutations/EventAttendeeMutations/variables/REMOVE_EVENT_ATTENDEE.md create mode 100644 docs/docs/auto-docs/GraphQl/Mutations/EventVolunteerMutation/README.md create mode 100644 docs/docs/auto-docs/GraphQl/Mutations/EventVolunteerMutation/variables/ADD_VOLUNTEER.md create mode 100644 docs/docs/auto-docs/GraphQl/Mutations/EventVolunteerMutation/variables/CREATE_VOLUNTEER_GROUP.md create mode 100644 docs/docs/auto-docs/GraphQl/Mutations/EventVolunteerMutation/variables/CREATE_VOLUNTEER_MEMBERSHIP.md create mode 100644 docs/docs/auto-docs/GraphQl/Mutations/EventVolunteerMutation/variables/DELETE_VOLUNTEER.md create mode 100644 docs/docs/auto-docs/GraphQl/Mutations/EventVolunteerMutation/variables/DELETE_VOLUNTEER_GROUP.md create mode 100644 docs/docs/auto-docs/GraphQl/Mutations/EventVolunteerMutation/variables/UPDATE_VOLUNTEER_GROUP.md create mode 100644 docs/docs/auto-docs/GraphQl/Mutations/EventVolunteerMutation/variables/UPDATE_VOLUNTEER_MEMBERSHIP.md create mode 100644 docs/docs/auto-docs/GraphQl/Mutations/FundMutation/README.md create mode 100644 docs/docs/auto-docs/GraphQl/Mutations/FundMutation/variables/CREATE_FUND_MUTATION.md create mode 100644 docs/docs/auto-docs/GraphQl/Mutations/FundMutation/variables/UPDATE_FUND_MUTATION.md create mode 100644 docs/docs/auto-docs/GraphQl/Mutations/OrganizationMutations/README.md create mode 100644 docs/docs/auto-docs/GraphQl/Mutations/OrganizationMutations/variables/ADD_CUSTOM_FIELD.md create mode 100644 docs/docs/auto-docs/GraphQl/Mutations/OrganizationMutations/variables/ADD_USER_TO_GROUP_CHAT.md create mode 100644 docs/docs/auto-docs/GraphQl/Mutations/OrganizationMutations/variables/CANCEL_MEMBERSHIP_REQUEST.md create mode 100644 docs/docs/auto-docs/GraphQl/Mutations/OrganizationMutations/variables/CREATE_CHAT.md create mode 100644 docs/docs/auto-docs/GraphQl/Mutations/OrganizationMutations/variables/CREATE_SAMPLE_ORGANIZATION_MUTATION.md create mode 100644 docs/docs/auto-docs/GraphQl/Mutations/OrganizationMutations/variables/EDIT_CHAT_MESSAGE.md create mode 100644 docs/docs/auto-docs/GraphQl/Mutations/OrganizationMutations/variables/JOIN_PUBLIC_ORGANIZATION.md create mode 100644 docs/docs/auto-docs/GraphQl/Mutations/OrganizationMutations/variables/MARK_CHAT_MESSAGES_AS_READ.md create mode 100644 docs/docs/auto-docs/GraphQl/Mutations/OrganizationMutations/variables/MESSAGE_SENT_TO_CHAT.md create mode 100644 docs/docs/auto-docs/GraphQl/Mutations/OrganizationMutations/variables/PLUGIN_SUBSCRIPTION.md create mode 100644 docs/docs/auto-docs/GraphQl/Mutations/OrganizationMutations/variables/REMOVE_CUSTOM_FIELD.md create mode 100644 docs/docs/auto-docs/GraphQl/Mutations/OrganizationMutations/variables/REMOVE_SAMPLE_ORGANIZATION_MUTATION.md create mode 100644 docs/docs/auto-docs/GraphQl/Mutations/OrganizationMutations/variables/SEND_MEMBERSHIP_REQUEST.md create mode 100644 docs/docs/auto-docs/GraphQl/Mutations/OrganizationMutations/variables/SEND_MESSAGE_TO_CHAT.md create mode 100644 docs/docs/auto-docs/GraphQl/Mutations/OrganizationMutations/variables/TOGGLE_PINNED_POST.md create mode 100644 docs/docs/auto-docs/GraphQl/Mutations/OrganizationMutations/variables/UPDATE_CHAT.md create mode 100644 docs/docs/auto-docs/GraphQl/Mutations/OrganizationMutations/variables/UPDATE_USER_ROLE_IN_ORG_MUTATION.md create mode 100644 docs/docs/auto-docs/GraphQl/Mutations/PledgeMutation/README.md create mode 100644 docs/docs/auto-docs/GraphQl/Mutations/PledgeMutation/variables/CREATE_PlEDGE.md create mode 100644 docs/docs/auto-docs/GraphQl/Mutations/PledgeMutation/variables/DELETE_PLEDGE.md create mode 100644 docs/docs/auto-docs/GraphQl/Mutations/PledgeMutation/variables/UPDATE_PLEDGE.md create mode 100644 docs/docs/auto-docs/GraphQl/Mutations/TagMutations/README.md create mode 100644 docs/docs/auto-docs/GraphQl/Mutations/TagMutations/variables/ADD_PEOPLE_TO_TAG.md create mode 100644 docs/docs/auto-docs/GraphQl/Mutations/TagMutations/variables/ASSIGN_TO_TAGS.md create mode 100644 docs/docs/auto-docs/GraphQl/Mutations/TagMutations/variables/CREATE_USER_TAG.md create mode 100644 docs/docs/auto-docs/GraphQl/Mutations/TagMutations/variables/REMOVE_FROM_TAGS.md create mode 100644 docs/docs/auto-docs/GraphQl/Mutations/TagMutations/variables/REMOVE_USER_TAG.md create mode 100644 docs/docs/auto-docs/GraphQl/Mutations/TagMutations/variables/UNASSIGN_USER_TAG.md create mode 100644 docs/docs/auto-docs/GraphQl/Mutations/TagMutations/variables/UPDATE_USER_TAG.md create mode 100644 docs/docs/auto-docs/GraphQl/Mutations/VenueMutations/README.md create mode 100644 docs/docs/auto-docs/GraphQl/Mutations/VenueMutations/variables/CREATE_VENUE_MUTATION.md create mode 100644 docs/docs/auto-docs/GraphQl/Mutations/VenueMutations/variables/DELETE_VENUE_MUTATION.md create mode 100644 docs/docs/auto-docs/GraphQl/Mutations/VenueMutations/variables/UPDATE_VENUE_MUTATION.md create mode 100644 docs/docs/auto-docs/GraphQl/Mutations/mutations/README.md create mode 100644 docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/ACCEPT_ORGANIZATION_REQUEST_MUTATION.md create mode 100644 docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/ADDRESS_DETAILS_FRAGMENT.md create mode 100644 docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/ADD_ADMIN_MUTATION.md create mode 100644 docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/ADD_ADVERTISEMENT_MUTATION.md create mode 100644 docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/ADD_MEMBER_MUTATION.md create mode 100644 docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/ADD_PLUGIN_MUTATION.md create mode 100644 docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/BLOCK_USER_MUTATION.md create mode 100644 docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/CREATE_EVENT_MUTATION.md create mode 100644 docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/CREATE_ORGANIZATION_MUTATION.md create mode 100644 docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/CREATE_POST_MUTATION.md create mode 100644 docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/DELETE_ADVERTISEMENT_BY_ID.md create mode 100644 docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/DELETE_EVENT_MUTATION.md create mode 100644 docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/DELETE_ORGANIZATION_MUTATION.md create mode 100644 docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/DELETE_POST_MUTATION.md create mode 100644 docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/DONATE_TO_ORGANIZATION.md create mode 100644 docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/FORGOT_PASSWORD_MUTATION.md create mode 100644 docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/GENERATE_OTP_MUTATION.md create mode 100644 docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/LIKE_POST.md create mode 100644 docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/LOGIN_MUTATION.md create mode 100644 docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/RECAPTCHA_MUTATION.md create mode 100644 docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/REFRESH_TOKEN_MUTATION.md create mode 100644 docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/REGISTER_EVENT.md create mode 100644 docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/REJECT_ORGANIZATION_REQUEST_MUTATION.md create mode 100644 docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/REMOVE_ADMIN_MUTATION.md create mode 100644 docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/REMOVE_MEMBER_MUTATION.md create mode 100644 docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/RESET_COMMUNITY.md create mode 100644 docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/REVOKE_REFRESH_TOKEN.md create mode 100644 docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/SIGNUP_MUTATION.md create mode 100644 docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/UNBLOCK_USER_MUTATION.md create mode 100644 docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/UNLIKE_POST.md create mode 100644 docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/UPDATE_ADVERTISEMENT_MUTATION.md create mode 100644 docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/UPDATE_COMMUNITY.md create mode 100644 docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/UPDATE_EVENT_MUTATION.md create mode 100644 docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/UPDATE_INSTALL_STATUS_PLUGIN_MUTATION.md create mode 100644 docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/UPDATE_ORGANIZATION_MUTATION.md create mode 100644 docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/UPDATE_ORG_STATUS_PLUGIN_MUTATION.md create mode 100644 docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/UPDATE_POST_MUTATION.md create mode 100644 docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/UPDATE_SESSION_TIMEOUT.md create mode 100644 docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/UPDATE_USER_MUTATION.md create mode 100644 docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/UPDATE_USER_PASSWORD_MUTATION.md create mode 100644 docs/docs/auto-docs/GraphQl/Queries/ActionItemCategoryQueries/README.md create mode 100644 docs/docs/auto-docs/GraphQl/Queries/ActionItemCategoryQueries/variables/ACTION_ITEM_CATEGORY_LIST.md create mode 100644 docs/docs/auto-docs/GraphQl/Queries/ActionItemQueries/README.md create mode 100644 docs/docs/auto-docs/GraphQl/Queries/ActionItemQueries/variables/ACTION_ITEMS_BY_USER.md create mode 100644 docs/docs/auto-docs/GraphQl/Queries/ActionItemQueries/variables/ACTION_ITEM_LIST.md create mode 100644 docs/docs/auto-docs/GraphQl/Queries/AgendaCategoryQueries/README.md create mode 100644 docs/docs/auto-docs/GraphQl/Queries/AgendaCategoryQueries/variables/AGENDA_ITEM_CATEGORY_LIST.md create mode 100644 docs/docs/auto-docs/GraphQl/Queries/AgendaItemQueries/README.md create mode 100644 docs/docs/auto-docs/GraphQl/Queries/AgendaItemQueries/variables/AgendaItemByEvent.md create mode 100644 docs/docs/auto-docs/GraphQl/Queries/AgendaItemQueries/variables/AgendaItemByOrganization.md create mode 100644 docs/docs/auto-docs/GraphQl/Queries/EventVolunteerQueries/README.md create mode 100644 docs/docs/auto-docs/GraphQl/Queries/EventVolunteerQueries/variables/EVENT_VOLUNTEER_GROUP_LIST.md create mode 100644 docs/docs/auto-docs/GraphQl/Queries/EventVolunteerQueries/variables/EVENT_VOLUNTEER_LIST.md create mode 100644 docs/docs/auto-docs/GraphQl/Queries/EventVolunteerQueries/variables/USER_VOLUNTEER_MEMBERSHIP.md create mode 100644 docs/docs/auto-docs/GraphQl/Queries/EventVolunteerQueries/variables/VOLUNTEER_RANKING.md create mode 100644 docs/docs/auto-docs/GraphQl/Queries/OrganizationQueries/README.md create mode 100644 docs/docs/auto-docs/GraphQl/Queries/OrganizationQueries/variables/ORGANIZATION_ADMINS_LIST.md create mode 100644 docs/docs/auto-docs/GraphQl/Queries/OrganizationQueries/variables/ORGANIZATION_ADVERTISEMENT_LIST.md create mode 100644 docs/docs/auto-docs/GraphQl/Queries/OrganizationQueries/variables/ORGANIZATION_FUNDS.md create mode 100644 docs/docs/auto-docs/GraphQl/Queries/OrganizationQueries/variables/ORGANIZATION_POST_LIST.md create mode 100644 docs/docs/auto-docs/GraphQl/Queries/OrganizationQueries/variables/ORGANIZATION_USER_TAGS_LIST.md create mode 100644 docs/docs/auto-docs/GraphQl/Queries/OrganizationQueries/variables/USER_CREATED_ORGANIZATIONS.md create mode 100644 docs/docs/auto-docs/GraphQl/Queries/OrganizationQueries/variables/USER_JOINED_ORGANIZATIONS.md create mode 100644 docs/docs/auto-docs/GraphQl/Queries/OrganizationQueries/variables/USER_ORGANIZATION_CONNECTION.md create mode 100644 docs/docs/auto-docs/GraphQl/Queries/OrganizationQueries/variables/VENUE_LIST.md create mode 100644 docs/docs/auto-docs/GraphQl/Queries/PlugInQueries/README.md create mode 100644 docs/docs/auto-docs/GraphQl/Queries/PlugInQueries/variables/ADVERTISEMENTS_GET.md create mode 100644 docs/docs/auto-docs/GraphQl/Queries/PlugInQueries/variables/CHATS_LIST.md create mode 100644 docs/docs/auto-docs/GraphQl/Queries/PlugInQueries/variables/CHAT_BY_ID.md create mode 100644 docs/docs/auto-docs/GraphQl/Queries/PlugInQueries/variables/GROUP_CHAT_LIST.md create mode 100644 docs/docs/auto-docs/GraphQl/Queries/PlugInQueries/variables/IS_SAMPLE_ORGANIZATION_QUERY.md create mode 100644 docs/docs/auto-docs/GraphQl/Queries/PlugInQueries/variables/ORGANIZATION_CUSTOM_FIELDS.md create mode 100644 docs/docs/auto-docs/GraphQl/Queries/PlugInQueries/variables/ORGANIZATION_EVENTS_CONNECTION.md create mode 100644 docs/docs/auto-docs/GraphQl/Queries/PlugInQueries/variables/PLUGIN_GET.md create mode 100644 docs/docs/auto-docs/GraphQl/Queries/PlugInQueries/variables/UNREAD_CHAT_LIST.md create mode 100644 docs/docs/auto-docs/GraphQl/Queries/PlugInQueries/variables/USER_EVENTS_VOLUNTEER.md create mode 100644 docs/docs/auto-docs/GraphQl/Queries/Queries/README.md create mode 100644 docs/docs/auto-docs/GraphQl/Queries/Queries/variables/ADMIN_LIST.md create mode 100644 docs/docs/auto-docs/GraphQl/Queries/Queries/variables/BLOCK_PAGE_MEMBER_LIST.md create mode 100644 docs/docs/auto-docs/GraphQl/Queries/Queries/variables/CHECK_AUTH.md create mode 100644 docs/docs/auto-docs/GraphQl/Queries/Queries/variables/EVENT_ATTENDEES.md create mode 100644 docs/docs/auto-docs/GraphQl/Queries/Queries/variables/EVENT_CHECKINS.md create mode 100644 docs/docs/auto-docs/GraphQl/Queries/Queries/variables/EVENT_DETAILS.md create mode 100644 docs/docs/auto-docs/GraphQl/Queries/Queries/variables/EVENT_FEEDBACKS.md create mode 100644 docs/docs/auto-docs/GraphQl/Queries/Queries/variables/EVENT_REGISTRANTS.md create mode 100644 docs/docs/auto-docs/GraphQl/Queries/Queries/variables/GET_COMMUNITY_DATA.md create mode 100644 docs/docs/auto-docs/GraphQl/Queries/Queries/variables/GET_COMMUNITY_SESSION_TIMEOUT_DATA.md create mode 100644 docs/docs/auto-docs/GraphQl/Queries/Queries/variables/MEMBERSHIP_REQUEST.md create mode 100644 docs/docs/auto-docs/GraphQl/Queries/Queries/variables/MEMBERS_LIST.md create mode 100644 docs/docs/auto-docs/GraphQl/Queries/Queries/variables/ORGANIZATIONS_LIST.md create mode 100644 docs/docs/auto-docs/GraphQl/Queries/Queries/variables/ORGANIZATIONS_MEMBER_CONNECTION_LIST.md create mode 100644 docs/docs/auto-docs/GraphQl/Queries/Queries/variables/ORGANIZATION_CONNECTION_LIST.md create mode 100644 docs/docs/auto-docs/GraphQl/Queries/Queries/variables/ORGANIZATION_DONATION_CONNECTION_LIST.md create mode 100644 docs/docs/auto-docs/GraphQl/Queries/Queries/variables/ORGANIZATION_EVENT_CONNECTION_LIST.md create mode 100644 docs/docs/auto-docs/GraphQl/Queries/Queries/variables/ORGANIZATION_EVENT_LIST.md create mode 100644 docs/docs/auto-docs/GraphQl/Queries/Queries/variables/ORGANIZATION_LIST.md create mode 100644 docs/docs/auto-docs/GraphQl/Queries/Queries/variables/RECURRING_EVENTS.md create mode 100644 docs/docs/auto-docs/GraphQl/Queries/Queries/variables/USERS_CONNECTION_LIST.md create mode 100644 docs/docs/auto-docs/GraphQl/Queries/Queries/variables/USER_DETAILS.md create mode 100644 docs/docs/auto-docs/GraphQl/Queries/Queries/variables/USER_LIST.md create mode 100644 docs/docs/auto-docs/GraphQl/Queries/Queries/variables/USER_LIST_FOR_TABLE.md create mode 100644 docs/docs/auto-docs/GraphQl/Queries/Queries/variables/USER_LIST_REQUEST.md create mode 100644 docs/docs/auto-docs/GraphQl/Queries/Queries/variables/USER_ORGANIZATION_LIST.md create mode 100644 docs/docs/auto-docs/GraphQl/Queries/fundQueries/README.md create mode 100644 docs/docs/auto-docs/GraphQl/Queries/fundQueries/variables/FUND_CAMPAIGN.md create mode 100644 docs/docs/auto-docs/GraphQl/Queries/fundQueries/variables/FUND_CAMPAIGN_PLEDGE.md create mode 100644 docs/docs/auto-docs/GraphQl/Queries/fundQueries/variables/FUND_LIST.md create mode 100644 docs/docs/auto-docs/GraphQl/Queries/fundQueries/variables/USER_FUND_CAMPAIGNS.md create mode 100644 docs/docs/auto-docs/GraphQl/Queries/fundQueries/variables/USER_PLEDGES.md create mode 100644 docs/docs/auto-docs/GraphQl/Queries/userTagQueries/README.md create mode 100644 docs/docs/auto-docs/GraphQl/Queries/userTagQueries/variables/USER_TAGS_ASSIGNED_MEMBERS.md create mode 100644 docs/docs/auto-docs/GraphQl/Queries/userTagQueries/variables/USER_TAGS_MEMBERS_TO_ASSIGN_TO.md create mode 100644 docs/docs/auto-docs/GraphQl/Queries/userTagQueries/variables/USER_TAG_SUB_TAGS.md create mode 100644 docs/docs/auto-docs/README.md create mode 100644 docs/docs/auto-docs/_media/CODE_OF_CONDUCT.md create mode 100644 docs/docs/auto-docs/_media/CONTRIBUTING.md create mode 100644 docs/docs/auto-docs/_media/INSTALLATION.md create mode 100644 docs/docs/auto-docs/_media/ISSUE_GUIDELINES.md create mode 100644 docs/docs/auto-docs/_media/PR_GUIDELINES.md create mode 100644 docs/docs/auto-docs/assets/svgs/social-icons/README.md create mode 100644 docs/docs/auto-docs/components/AddOn/AddOn/README.md create mode 100644 docs/docs/auto-docs/components/AddOn/AddOn/functions/default.md create mode 100644 docs/docs/auto-docs/components/AddOn/core/AddOnEntry/AddOnEntry/README.md create mode 100644 docs/docs/auto-docs/components/AddOn/core/AddOnEntry/AddOnEntry/functions/default.md create mode 100644 docs/docs/auto-docs/components/AddOn/core/AddOnEntry/AddOnEntryMocks/README.md create mode 100644 docs/docs/auto-docs/components/AddOn/core/AddOnEntry/AddOnEntryMocks/variables/ADD_ON_ENTRY_MOCK.md create mode 100644 docs/docs/auto-docs/components/AddOn/core/AddOnRegister/AddOnRegister/README.md create mode 100644 docs/docs/auto-docs/components/AddOn/core/AddOnRegister/AddOnRegister/functions/default.md create mode 100644 docs/docs/auto-docs/components/AddOn/core/AddOnStore/AddOnStore/README.md create mode 100644 docs/docs/auto-docs/components/AddOn/core/AddOnStore/AddOnStore/functions/default.md create mode 100644 docs/docs/auto-docs/components/AddOn/support/components/Action/Action/README.md create mode 100644 docs/docs/auto-docs/components/AddOn/support/components/Action/Action/functions/default.md create mode 100644 docs/docs/auto-docs/components/AddOn/support/components/MainContent/MainContent/README.md create mode 100644 docs/docs/auto-docs/components/AddOn/support/components/MainContent/MainContent/functions/default.md create mode 100644 docs/docs/auto-docs/components/AddOn/support/components/SidePanel/SidePanel/README.md create mode 100644 docs/docs/auto-docs/components/AddOn/support/components/SidePanel/SidePanel/functions/default.md create mode 100644 docs/docs/auto-docs/components/AddOn/support/services/Plugin.helper/README.md create mode 100644 docs/docs/auto-docs/components/AddOn/support/services/Plugin.helper/classes/default.md create mode 100644 docs/docs/auto-docs/components/AddOn/support/services/Render.helper/README.md create mode 100644 docs/docs/auto-docs/components/AddOn/support/services/Render.helper/classes/default.md create mode 100644 docs/docs/auto-docs/components/AddPeopleToTag/AddPeopleToTag/README.md create mode 100644 docs/docs/auto-docs/components/AddPeopleToTag/AddPeopleToTag/functions/default.md create mode 100644 docs/docs/auto-docs/components/AddPeopleToTag/AddPeopleToTag/interfaces/InterfaceAddPeopleToTagProps.md create mode 100644 docs/docs/auto-docs/components/AddPeopleToTag/AddPeopleToTagsMocks/README.md create mode 100644 docs/docs/auto-docs/components/AddPeopleToTag/AddPeopleToTagsMocks/variables/MOCKS.md create mode 100644 docs/docs/auto-docs/components/AddPeopleToTag/AddPeopleToTagsMocks/variables/MOCKS_ERROR.md create mode 100644 docs/docs/auto-docs/components/Advertisements/Advertisements/README.md create mode 100644 docs/docs/auto-docs/components/Advertisements/Advertisements/functions/default.md create mode 100644 docs/docs/auto-docs/components/Advertisements/core/AdvertisementEntry/AdvertisementEntry/README.md create mode 100644 docs/docs/auto-docs/components/Advertisements/core/AdvertisementEntry/AdvertisementEntry/functions/default.md create mode 100644 docs/docs/auto-docs/components/Advertisements/core/AdvertisementRegister/AdvertisementRegister/README.md create mode 100644 docs/docs/auto-docs/components/Advertisements/core/AdvertisementRegister/AdvertisementRegister/functions/default.md create mode 100644 docs/docs/auto-docs/components/AgendaCategory/AgendaCategoryContainer/README.md create mode 100644 docs/docs/auto-docs/components/AgendaCategory/AgendaCategoryContainer/functions/default.md create mode 100644 docs/docs/auto-docs/components/AgendaCategory/AgendaCategoryContainerMocks/README.md create mode 100644 docs/docs/auto-docs/components/AgendaCategory/AgendaCategoryContainerMocks/variables/MOCKS.md create mode 100644 docs/docs/auto-docs/components/AgendaCategory/AgendaCategoryContainerMocks/variables/MOCKS_ERROR_MUTATIONS.md create mode 100644 docs/docs/auto-docs/components/AgendaCategory/AgendaCategoryContainerProps/README.md create mode 100644 docs/docs/auto-docs/components/AgendaCategory/AgendaCategoryContainerProps/variables/props.md create mode 100644 docs/docs/auto-docs/components/AgendaCategory/AgendaCategoryContainerProps/variables/props2.md create mode 100644 docs/docs/auto-docs/components/AgendaItems/AgendaItemsContainer/README.md create mode 100644 docs/docs/auto-docs/components/AgendaItems/AgendaItemsContainer/functions/default.md create mode 100644 docs/docs/auto-docs/components/AgendaItems/AgendaItemsContainerMocks/README.md create mode 100644 docs/docs/auto-docs/components/AgendaItems/AgendaItemsContainerMocks/variables/MOCKS.md create mode 100644 docs/docs/auto-docs/components/AgendaItems/AgendaItemsContainerMocks/variables/MOCKS_ERROR.md create mode 100644 docs/docs/auto-docs/components/AgendaItems/AgendaItemsContainerProps/README.md create mode 100644 docs/docs/auto-docs/components/AgendaItems/AgendaItemsContainerProps/variables/props.md create mode 100644 docs/docs/auto-docs/components/AgendaItems/AgendaItemsContainerProps/variables/props2.md create mode 100644 docs/docs/auto-docs/components/AgendaItems/AgendaItemsCreateModal/README.md create mode 100644 docs/docs/auto-docs/components/AgendaItems/AgendaItemsCreateModal/functions/default.md create mode 100644 docs/docs/auto-docs/components/AgendaItems/AgendaItemsDeleteModal/README.md create mode 100644 docs/docs/auto-docs/components/AgendaItems/AgendaItemsDeleteModal/functions/default.md create mode 100644 docs/docs/auto-docs/components/AgendaItems/AgendaItemsPreviewModal/README.md create mode 100644 docs/docs/auto-docs/components/AgendaItems/AgendaItemsPreviewModal/functions/default.md create mode 100644 docs/docs/auto-docs/components/AgendaItems/AgendaItemsUpdateModal/README.md create mode 100644 docs/docs/auto-docs/components/AgendaItems/AgendaItemsUpdateModal/functions/default.md create mode 100644 docs/docs/auto-docs/components/Avatar/Avatar/README.md create mode 100644 docs/docs/auto-docs/components/Avatar/Avatar/functions/default.md create mode 100644 docs/docs/auto-docs/components/ChangeLanguageDropdown/ChangeLanguageDropDown/README.md create mode 100644 docs/docs/auto-docs/components/ChangeLanguageDropdown/ChangeLanguageDropDown/functions/default.md create mode 100644 docs/docs/auto-docs/components/CheckIn/CheckInModal/README.md create mode 100644 docs/docs/auto-docs/components/CheckIn/CheckInModal/functions/CheckInModal.md create mode 100644 docs/docs/auto-docs/components/CheckIn/CheckInWrapper/README.md create mode 100644 docs/docs/auto-docs/components/CheckIn/CheckInWrapper/functions/CheckInWrapper.md create mode 100644 docs/docs/auto-docs/components/CheckIn/TableRow/README.md create mode 100644 docs/docs/auto-docs/components/CheckIn/TableRow/functions/TableRow.md create mode 100644 docs/docs/auto-docs/components/CheckIn/mocks/README.md create mode 100644 docs/docs/auto-docs/components/CheckIn/mocks/variables/checkInMutationSuccess.md create mode 100644 docs/docs/auto-docs/components/CheckIn/mocks/variables/checkInMutationUnsuccess.md create mode 100644 docs/docs/auto-docs/components/CheckIn/mocks/variables/checkInQueryMock.md create mode 100644 docs/docs/auto-docs/components/CheckIn/tagTemplate/README.md create mode 100644 docs/docs/auto-docs/components/CheckIn/tagTemplate/variables/tagTemplate.md create mode 100644 docs/docs/auto-docs/components/CheckIn/types/README.md create mode 100644 docs/docs/auto-docs/components/CheckIn/types/interfaces/InterfaceAttendeeCheckIn.md create mode 100644 docs/docs/auto-docs/components/CheckIn/types/interfaces/InterfaceAttendeeQueryResponse.md create mode 100644 docs/docs/auto-docs/components/CheckIn/types/interfaces/InterfaceModalProp.md create mode 100644 docs/docs/auto-docs/components/CheckIn/types/interfaces/InterfaceTableCheckIn.md create mode 100644 docs/docs/auto-docs/components/CheckIn/types/interfaces/InterfaceTableData.md create mode 100644 docs/docs/auto-docs/components/CheckIn/types/interfaces/InterfaceUser.md create mode 100644 docs/docs/auto-docs/components/CollapsibleDropdown/CollapsibleDropdown/README.md create mode 100644 docs/docs/auto-docs/components/CollapsibleDropdown/CollapsibleDropdown/functions/default.md create mode 100644 docs/docs/auto-docs/components/CollapsibleDropdown/CollapsibleDropdown/interfaces/InterfaceCollapsibleDropdown.md create mode 100644 docs/docs/auto-docs/components/ContriStats/ContriStats/README.md create mode 100644 docs/docs/auto-docs/components/ContriStats/ContriStats/functions/default.md create mode 100644 docs/docs/auto-docs/components/CurrentHourIndicator/CurrentHourIndicator/README.md create mode 100644 docs/docs/auto-docs/components/CurrentHourIndicator/CurrentHourIndicator/functions/default.md create mode 100644 docs/docs/auto-docs/components/DynamicDropDown/DynamicDropDown/README.md create mode 100644 docs/docs/auto-docs/components/DynamicDropDown/DynamicDropDown/functions/default.md create mode 100644 docs/docs/auto-docs/components/EditCustomFieldDropDown/EditCustomFieldDropDown/README.md create mode 100644 docs/docs/auto-docs/components/EditCustomFieldDropDown/EditCustomFieldDropDown/functions/default.md create mode 100644 docs/docs/auto-docs/components/EventCalendar/EventCalendar/README.md create mode 100644 docs/docs/auto-docs/components/EventCalendar/EventCalendar/functions/default.md create mode 100644 docs/docs/auto-docs/components/EventCalendar/EventHeader/README.md create mode 100644 docs/docs/auto-docs/components/EventCalendar/EventHeader/functions/default.md create mode 100644 docs/docs/auto-docs/components/EventCalendar/YearlyEventCalender/README.md create mode 100644 docs/docs/auto-docs/components/EventCalendar/YearlyEventCalender/functions/default.md create mode 100644 docs/docs/auto-docs/components/EventDashboardScreen/EventDashboardScreen/README.md create mode 100644 docs/docs/auto-docs/components/EventDashboardScreen/EventDashboardScreen/functions/default.md create mode 100644 docs/docs/auto-docs/components/EventListCard/EventListCard/README.md create mode 100644 docs/docs/auto-docs/components/EventListCard/EventListCard/functions/default.md create mode 100644 docs/docs/auto-docs/components/EventListCard/EventListCard/interfaces/InterfaceEventListCardProps.md create mode 100644 docs/docs/auto-docs/components/EventListCard/EventListCardMocks/README.md create mode 100644 docs/docs/auto-docs/components/EventListCard/EventListCardMocks/variables/ERROR_MOCKS.md create mode 100644 docs/docs/auto-docs/components/EventListCard/EventListCardMocks/variables/MOCKS.md create mode 100644 docs/docs/auto-docs/components/EventListCard/EventListCardModals/README.md create mode 100644 docs/docs/auto-docs/components/EventListCard/EventListCardModals/functions/default.md create mode 100644 docs/docs/auto-docs/components/EventListCard/EventListCardProps/README.md create mode 100644 docs/docs/auto-docs/components/EventListCard/EventListCardProps/variables/props.md create mode 100644 docs/docs/auto-docs/components/EventManagement/Dashboard/EventDashboard.mocks/README.md create mode 100644 docs/docs/auto-docs/components/EventManagement/Dashboard/EventDashboard.mocks/variables/MOCKS_WITHOUT_TIME.md create mode 100644 docs/docs/auto-docs/components/EventManagement/Dashboard/EventDashboard.mocks/variables/MOCKS_WITH_TIME.md create mode 100644 docs/docs/auto-docs/components/EventManagement/Dashboard/EventDashboard/README.md create mode 100644 docs/docs/auto-docs/components/EventManagement/Dashboard/EventDashboard/functions/default.md create mode 100644 docs/docs/auto-docs/components/EventManagement/EventAgendaItems/EventAgendaItems/README.md create mode 100644 docs/docs/auto-docs/components/EventManagement/EventAgendaItems/EventAgendaItems/functions/default.md create mode 100644 docs/docs/auto-docs/components/EventManagement/EventAgendaItems/EventAgendaItemsMocks/README.md create mode 100644 docs/docs/auto-docs/components/EventManagement/EventAgendaItems/EventAgendaItemsMocks/variables/MOCKS.md create mode 100644 docs/docs/auto-docs/components/EventManagement/EventAgendaItems/EventAgendaItemsMocks/variables/MOCKS_ERROR_MUTATION.md create mode 100644 docs/docs/auto-docs/components/EventManagement/EventAgendaItems/EventAgendaItemsMocks/variables/MOCKS_ERROR_QUERY.md create mode 100644 docs/docs/auto-docs/components/EventManagement/EventAttendance/Attendance.mocks/README.md create mode 100644 docs/docs/auto-docs/components/EventManagement/EventAttendance/Attendance.mocks/variables/MOCKS.md create mode 100644 docs/docs/auto-docs/components/EventManagement/EventAttendance/Attendance.mocks/variables/MOCKS_ERROR.md create mode 100644 docs/docs/auto-docs/components/EventManagement/EventAttendance/AttendedEventList/README.md create mode 100644 docs/docs/auto-docs/components/EventManagement/EventAttendance/AttendedEventList/functions/default.md create mode 100644 docs/docs/auto-docs/components/EventManagement/EventAttendance/EventAttendance/README.md create mode 100644 docs/docs/auto-docs/components/EventManagement/EventAttendance/EventAttendance/functions/default.md create mode 100644 docs/docs/auto-docs/components/EventManagement/EventAttendance/EventStatistics/README.md create mode 100644 docs/docs/auto-docs/components/EventManagement/EventAttendance/EventStatistics/functions/AttendanceStatisticsModal.md create mode 100644 docs/docs/auto-docs/components/EventManagement/EventAttendance/InterfaceEvents/README.md create mode 100644 docs/docs/auto-docs/components/EventManagement/EventAttendance/InterfaceEvents/interfaces/InterfaceAttendanceStatisticsModalProps.md create mode 100644 docs/docs/auto-docs/components/EventManagement/EventAttendance/InterfaceEvents/interfaces/InterfaceEvent.md create mode 100644 docs/docs/auto-docs/components/EventManagement/EventAttendance/InterfaceEvents/interfaces/InterfaceMember.md create mode 100644 docs/docs/auto-docs/components/EventManagement/EventAttendance/InterfaceEvents/interfaces/InterfaceRecurringEvent.md create mode 100644 docs/docs/auto-docs/components/EventManagement/EventRegistrant/EventRegistrants/README.md create mode 100644 docs/docs/auto-docs/components/EventManagement/EventRegistrant/EventRegistrants/functions/default.md create mode 100644 docs/docs/auto-docs/components/EventManagement/EventRegistrant/Registrations.mocks/README.md create mode 100644 docs/docs/auto-docs/components/EventManagement/EventRegistrant/Registrations.mocks/variables/REGISTRANTS_MOCKS.md create mode 100644 docs/docs/auto-docs/components/EventManagement/EventRegistrant/Registrations.mocks/variables/REGISTRANTS_MOCKS_ERROR.md create mode 100644 docs/docs/auto-docs/components/EventRegistrantsModal/AddOnSpotAttendee/README.md create mode 100644 docs/docs/auto-docs/components/EventRegistrantsModal/AddOnSpotAttendee/functions/default.md create mode 100644 docs/docs/auto-docs/components/EventRegistrantsModal/EventRegistrantsModal/README.md create mode 100644 docs/docs/auto-docs/components/EventRegistrantsModal/EventRegistrantsModal/functions/EventRegistrantsModal.md create mode 100644 docs/docs/auto-docs/components/EventRegistrantsModal/EventRegistrantsWrapper/README.md create mode 100644 docs/docs/auto-docs/components/EventRegistrantsModal/EventRegistrantsWrapper/functions/EventRegistrantsWrapper.md create mode 100644 docs/docs/auto-docs/components/EventStats/EventStats/README.md create mode 100644 docs/docs/auto-docs/components/EventStats/EventStats/functions/EventStats.md create mode 100644 docs/docs/auto-docs/components/EventStats/EventStatsWrapper/README.md create mode 100644 docs/docs/auto-docs/components/EventStats/EventStatsWrapper/functions/EventStatsWrapper.md create mode 100644 docs/docs/auto-docs/components/EventStats/Statistics/AverageRating/README.md create mode 100644 docs/docs/auto-docs/components/EventStats/Statistics/AverageRating/functions/AverageRating.md create mode 100644 docs/docs/auto-docs/components/EventStats/Statistics/Feedback/README.md create mode 100644 docs/docs/auto-docs/components/EventStats/Statistics/Feedback/functions/FeedbackStats.md create mode 100644 docs/docs/auto-docs/components/EventStats/Statistics/Review/README.md create mode 100644 docs/docs/auto-docs/components/EventStats/Statistics/Review/functions/ReviewStats.md create mode 100644 docs/docs/auto-docs/components/GroupChatDetails/GroupChatDetails/README.md create mode 100644 docs/docs/auto-docs/components/GroupChatDetails/GroupChatDetails/functions/default.md create mode 100644 docs/docs/auto-docs/components/HolidayCards/HolidayCard/README.md create mode 100644 docs/docs/auto-docs/components/HolidayCards/HolidayCard/functions/default.md create mode 100644 docs/docs/auto-docs/components/IconComponent/IconComponent/README.md create mode 100644 docs/docs/auto-docs/components/IconComponent/IconComponent/functions/default.md create mode 100644 docs/docs/auto-docs/components/IconComponent/IconComponent/interfaces/InterfaceIconComponent.md create mode 100644 docs/docs/auto-docs/components/InfiniteScrollLoader/InfiniteScrollLoader/README.md create mode 100644 docs/docs/auto-docs/components/InfiniteScrollLoader/InfiniteScrollLoader/functions/default.md create mode 100644 docs/docs/auto-docs/components/LeftDrawer/LeftDrawer/README.md create mode 100644 docs/docs/auto-docs/components/LeftDrawer/LeftDrawer/functions/default.md create mode 100644 docs/docs/auto-docs/components/LeftDrawer/LeftDrawer/interfaces/InterfaceLeftDrawerProps.md create mode 100644 docs/docs/auto-docs/components/LeftDrawerOrg/LeftDrawerOrg/README.md create mode 100644 docs/docs/auto-docs/components/LeftDrawerOrg/LeftDrawerOrg/functions/default.md create mode 100644 docs/docs/auto-docs/components/LeftDrawerOrg/LeftDrawerOrg/interfaces/InterfaceLeftDrawerProps.md create mode 100644 docs/docs/auto-docs/components/Loader/Loader/README.md create mode 100644 docs/docs/auto-docs/components/Loader/Loader/functions/default.md create mode 100644 docs/docs/auto-docs/components/LoginPortalToggle/LoginPortalToggle/README.md create mode 100644 docs/docs/auto-docs/components/LoginPortalToggle/LoginPortalToggle/functions/default.md create mode 100644 docs/docs/auto-docs/components/MemberDetail/EventsAttendedByMember/README.md create mode 100644 docs/docs/auto-docs/components/MemberDetail/EventsAttendedByMember/functions/default.md create mode 100644 docs/docs/auto-docs/components/MemberDetail/EventsAttendedCardItem/README.md create mode 100644 docs/docs/auto-docs/components/MemberDetail/EventsAttendedCardItem/functions/default.md create mode 100644 docs/docs/auto-docs/components/MemberDetail/EventsAttendedCardItem/interfaces/InterfaceCardItem.md create mode 100644 docs/docs/auto-docs/components/MemberDetail/EventsAttendedMemberModal/README.md create mode 100644 docs/docs/auto-docs/components/MemberDetail/EventsAttendedMemberModal/functions/default.md create mode 100644 docs/docs/auto-docs/components/MemberDetail/customTableCell/README.md create mode 100644 docs/docs/auto-docs/components/MemberDetail/customTableCell/functions/CustomTableCell.md create mode 100644 docs/docs/auto-docs/components/MemberRequestCard/MemberRequestCard/README.md create mode 100644 docs/docs/auto-docs/components/MemberRequestCard/MemberRequestCard/functions/default.md create mode 100644 docs/docs/auto-docs/components/NotFound/NotFound/README.md create mode 100644 docs/docs/auto-docs/components/NotFound/NotFound/functions/default.md create mode 100644 docs/docs/auto-docs/components/OrgAdminListCard/OrgAdminListCard/README.md create mode 100644 docs/docs/auto-docs/components/OrgAdminListCard/OrgAdminListCard/functions/default.md create mode 100644 docs/docs/auto-docs/components/OrgContriCards/OrgContriCards/README.md create mode 100644 docs/docs/auto-docs/components/OrgContriCards/OrgContriCards/functions/default.md create mode 100644 docs/docs/auto-docs/components/OrgDelete/OrgDelete/README.md create mode 100644 docs/docs/auto-docs/components/OrgDelete/OrgDelete/functions/default.md create mode 100644 docs/docs/auto-docs/components/OrgListCard/OrgListCard/README.md create mode 100644 docs/docs/auto-docs/components/OrgListCard/OrgListCard/functions/default.md create mode 100644 docs/docs/auto-docs/components/OrgListCard/OrgListCard/interfaces/InterfaceOrgListCardProps.md create mode 100644 docs/docs/auto-docs/components/OrgListCard/TruncatedText/README.md create mode 100644 docs/docs/auto-docs/components/OrgListCard/TruncatedText/functions/default.md create mode 100644 docs/docs/auto-docs/components/OrgListCard/useDebounce/README.md create mode 100644 docs/docs/auto-docs/components/OrgListCard/useDebounce/functions/default.md create mode 100644 docs/docs/auto-docs/components/OrgPeopleListCard/OrgPeopleListCard/README.md create mode 100644 docs/docs/auto-docs/components/OrgPeopleListCard/OrgPeopleListCard/functions/default.md create mode 100644 docs/docs/auto-docs/components/OrgPostCard/DeletePostModal/README.md create mode 100644 docs/docs/auto-docs/components/OrgPostCard/DeletePostModal/functions/default.md create mode 100644 docs/docs/auto-docs/components/OrgPostCard/OrgPostCard/README.md create mode 100644 docs/docs/auto-docs/components/OrgPostCard/OrgPostCard/functions/default.md create mode 100644 docs/docs/auto-docs/components/OrgSettings/ActionItemCategories/CategoryModal/README.md create mode 100644 docs/docs/auto-docs/components/OrgSettings/ActionItemCategories/CategoryModal/functions/default.md create mode 100644 docs/docs/auto-docs/components/OrgSettings/ActionItemCategories/CategoryModal/interfaces/InterfaceActionItemCategoryModal.md create mode 100644 docs/docs/auto-docs/components/OrgSettings/ActionItemCategories/OrgActionItemCategories/README.md create mode 100644 docs/docs/auto-docs/components/OrgSettings/ActionItemCategories/OrgActionItemCategories/functions/default.md create mode 100644 docs/docs/auto-docs/components/OrgSettings/ActionItemCategories/OrgActionItemCategoryMocks/README.md create mode 100644 docs/docs/auto-docs/components/OrgSettings/ActionItemCategories/OrgActionItemCategoryMocks/variables/MOCKS.md create mode 100644 docs/docs/auto-docs/components/OrgSettings/ActionItemCategories/OrgActionItemCategoryMocks/variables/MOCKS_EMPTY.md create mode 100644 docs/docs/auto-docs/components/OrgSettings/ActionItemCategories/OrgActionItemCategoryMocks/variables/MOCKS_ERROR.md create mode 100644 docs/docs/auto-docs/components/OrgSettings/AgendaItemCategories/AgendaCategoryCreateModal/README.md create mode 100644 docs/docs/auto-docs/components/OrgSettings/AgendaItemCategories/AgendaCategoryCreateModal/functions/default.md create mode 100644 docs/docs/auto-docs/components/OrgSettings/AgendaItemCategories/AgendaCategoryDeleteModal/README.md create mode 100644 docs/docs/auto-docs/components/OrgSettings/AgendaItemCategories/AgendaCategoryDeleteModal/functions/default.md create mode 100644 docs/docs/auto-docs/components/OrgSettings/AgendaItemCategories/AgendaCategoryPreviewModal/README.md create mode 100644 docs/docs/auto-docs/components/OrgSettings/AgendaItemCategories/AgendaCategoryPreviewModal/functions/default.md create mode 100644 docs/docs/auto-docs/components/OrgSettings/AgendaItemCategories/AgendaCategoryUpdateModal/README.md create mode 100644 docs/docs/auto-docs/components/OrgSettings/AgendaItemCategories/AgendaCategoryUpdateModal/functions/default.md create mode 100644 docs/docs/auto-docs/components/OrgSettings/AgendaItemCategories/OrganizationAgendaCategory/README.md create mode 100644 docs/docs/auto-docs/components/OrgSettings/AgendaItemCategories/OrganizationAgendaCategory/functions/default.md create mode 100644 docs/docs/auto-docs/components/OrgSettings/AgendaItemCategories/OrganizationAgendaCategoryErrorMocks/README.md create mode 100644 docs/docs/auto-docs/components/OrgSettings/AgendaItemCategories/OrganizationAgendaCategoryErrorMocks/variables/MOCKS_ERROR_AGENDA_ITEM_CATEGORY_LIST_QUERY.md create mode 100644 docs/docs/auto-docs/components/OrgSettings/AgendaItemCategories/OrganizationAgendaCategoryErrorMocks/variables/MOCKS_ERROR_MUTATION.md create mode 100644 docs/docs/auto-docs/components/OrgSettings/AgendaItemCategories/OrganizationAgendaCategoryMocks/README.md create mode 100644 docs/docs/auto-docs/components/OrgSettings/AgendaItemCategories/OrganizationAgendaCategoryMocks/variables/MOCKS.md create mode 100644 docs/docs/auto-docs/components/OrgSettings/General/DeleteOrg/DeleteOrg/README.md create mode 100644 docs/docs/auto-docs/components/OrgSettings/General/DeleteOrg/DeleteOrg/functions/default.md create mode 100644 docs/docs/auto-docs/components/OrgSettings/General/GeneralSettings/README.md create mode 100644 docs/docs/auto-docs/components/OrgSettings/General/GeneralSettings/functions/default.md create mode 100644 docs/docs/auto-docs/components/OrgSettings/General/OrgProfileFieldSettings/OrgProfileFieldSettings/README.md create mode 100644 docs/docs/auto-docs/components/OrgSettings/General/OrgProfileFieldSettings/OrgProfileFieldSettings/functions/default.md create mode 100644 docs/docs/auto-docs/components/OrgSettings/General/OrgUpdate/OrgUpdate/README.md create mode 100644 docs/docs/auto-docs/components/OrgSettings/General/OrgUpdate/OrgUpdate/functions/default.md create mode 100644 docs/docs/auto-docs/components/OrgSettings/General/OrgUpdate/OrgUpdateMocks/README.md create mode 100644 docs/docs/auto-docs/components/OrgSettings/General/OrgUpdate/OrgUpdateMocks/variables/MOCKS.md create mode 100644 docs/docs/auto-docs/components/OrgSettings/General/OrgUpdate/OrgUpdateMocks/variables/MOCKS_ERROR_ORGLIST.md create mode 100644 docs/docs/auto-docs/components/OrgSettings/General/OrgUpdate/OrgUpdateMocks/variables/MOCKS_ERROR_UPDATE_ORGLIST.md create mode 100644 docs/docs/auto-docs/components/OrganizationCard/OrganizationCard/README.md create mode 100644 docs/docs/auto-docs/components/OrganizationCard/OrganizationCard/functions/default.md create mode 100644 docs/docs/auto-docs/components/OrganizationCardStart/OrganizationCardStart/README.md create mode 100644 docs/docs/auto-docs/components/OrganizationCardStart/OrganizationCardStart/functions/default.md create mode 100644 docs/docs/auto-docs/components/OrganizationDashCards/CardItem/README.md create mode 100644 docs/docs/auto-docs/components/OrganizationDashCards/CardItem/functions/default.md create mode 100644 docs/docs/auto-docs/components/OrganizationDashCards/CardItem/interfaces/InterfaceCardItem.md create mode 100644 docs/docs/auto-docs/components/OrganizationDashCards/CardItemLoading/README.md create mode 100644 docs/docs/auto-docs/components/OrganizationDashCards/CardItemLoading/functions/default.md create mode 100644 docs/docs/auto-docs/components/OrganizationDashCards/DashboardCard/README.md create mode 100644 docs/docs/auto-docs/components/OrganizationDashCards/DashboardCard/functions/default.md create mode 100644 docs/docs/auto-docs/components/OrganizationDashCards/DashboardCardLoading/README.md create mode 100644 docs/docs/auto-docs/components/OrganizationDashCards/DashboardCardLoading/functions/default.md create mode 100644 docs/docs/auto-docs/components/OrganizationScreen/OrganizationScreen/README.md create mode 100644 docs/docs/auto-docs/components/OrganizationScreen/OrganizationScreen/functions/default.md create mode 100644 docs/docs/auto-docs/components/Pagination/Pagination/README.md create mode 100644 docs/docs/auto-docs/components/Pagination/Pagination/functions/default.md create mode 100644 docs/docs/auto-docs/components/PaginationList/PaginationList/README.md create mode 100644 docs/docs/auto-docs/components/PaginationList/PaginationList/functions/default.md create mode 100644 docs/docs/auto-docs/components/ProfileDropdown/ProfileDropdown/README.md create mode 100644 docs/docs/auto-docs/components/ProfileDropdown/ProfileDropdown/functions/default.md create mode 100644 docs/docs/auto-docs/components/RecurrenceOptions/CustomRecurrenceModal/README.md create mode 100644 docs/docs/auto-docs/components/RecurrenceOptions/CustomRecurrenceModal/functions/default.md create mode 100644 docs/docs/auto-docs/components/RecurrenceOptions/RecurrenceOptions/README.md create mode 100644 docs/docs/auto-docs/components/RecurrenceOptions/RecurrenceOptions/functions/default.md create mode 100644 docs/docs/auto-docs/components/RequestsTableItem/RequestsTableItem/README.md create mode 100644 docs/docs/auto-docs/components/RequestsTableItem/RequestsTableItem/functions/default.md create mode 100644 docs/docs/auto-docs/components/RequestsTableItem/RequestsTableItem/interfaces/InterfaceRequestsListItem.md create mode 100644 docs/docs/auto-docs/components/RequestsTableItem/RequestsTableItemMocks/README.md create mode 100644 docs/docs/auto-docs/components/RequestsTableItem/RequestsTableItemMocks/variables/MOCKS.md create mode 100644 docs/docs/auto-docs/components/SecuredRoute/SecuredRoute/README.md create mode 100644 docs/docs/auto-docs/components/SecuredRoute/SecuredRoute/functions/default.md create mode 100644 docs/docs/auto-docs/components/SuperAdminScreen/SuperAdminScreen/README.md create mode 100644 docs/docs/auto-docs/components/SuperAdminScreen/SuperAdminScreen/functions/default.md create mode 100644 docs/docs/auto-docs/components/TableLoader/TableLoader/README.md create mode 100644 docs/docs/auto-docs/components/TableLoader/TableLoader/functions/default.md create mode 100644 docs/docs/auto-docs/components/TableLoader/TableLoader/interfaces/InterfaceTableLoader.md create mode 100644 docs/docs/auto-docs/components/TagActions/TagActions/README.md create mode 100644 docs/docs/auto-docs/components/TagActions/TagActions/functions/default.md create mode 100644 docs/docs/auto-docs/components/TagActions/TagActions/interfaces/InterfaceTagActionsProps.md create mode 100644 docs/docs/auto-docs/components/TagActions/TagActionsMocks/README.md create mode 100644 docs/docs/auto-docs/components/TagActions/TagActionsMocks/variables/MOCKS.md create mode 100644 docs/docs/auto-docs/components/TagActions/TagActionsMocks/variables/MOCKS_ERROR_ORGANIZATION_TAGS_QUERY.md create mode 100644 docs/docs/auto-docs/components/TagActions/TagActionsMocks/variables/MOCKS_ERROR_SUBTAGS_QUERY.md create mode 100644 docs/docs/auto-docs/components/TagActions/TagNode/README.md create mode 100644 docs/docs/auto-docs/components/TagActions/TagNode/functions/default.md create mode 100644 docs/docs/auto-docs/components/TagActions/TagNodeMocks/README.md create mode 100644 docs/docs/auto-docs/components/TagActions/TagNodeMocks/variables/MOCKS1.md create mode 100644 docs/docs/auto-docs/components/TagActions/TagNodeMocks/variables/MOCKS_ERROR_SUBTAGS_QUERY1.md create mode 100644 docs/docs/auto-docs/components/UpdateSession/UpdateSession/README.md create mode 100644 docs/docs/auto-docs/components/UpdateSession/UpdateSession/functions/default.md create mode 100644 docs/docs/auto-docs/components/UserListCard/UserListCard/README.md create mode 100644 docs/docs/auto-docs/components/UserListCard/UserListCard/functions/default.md create mode 100644 docs/docs/auto-docs/components/UserPasswordUpdate/UserPasswordUpdate/README.md create mode 100644 docs/docs/auto-docs/components/UserPasswordUpdate/UserPasswordUpdate/functions/default.md create mode 100644 docs/docs/auto-docs/components/UserPasswordUpdate/UserPasswordUpdateMocks/README.md create mode 100644 docs/docs/auto-docs/components/UserPasswordUpdate/UserPasswordUpdateMocks/variables/MOCKS.md create mode 100644 docs/docs/auto-docs/components/UserPortal/ChatRoom/ChatRoom/README.md create mode 100644 docs/docs/auto-docs/components/UserPortal/ChatRoom/ChatRoom/functions/default.md create mode 100644 docs/docs/auto-docs/components/UserPortal/CommentCard/CommentCard/README.md create mode 100644 docs/docs/auto-docs/components/UserPortal/CommentCard/CommentCard/functions/default.md create mode 100644 docs/docs/auto-docs/components/UserPortal/ContactCard/ContactCard/README.md create mode 100644 docs/docs/auto-docs/components/UserPortal/ContactCard/ContactCard/functions/default.md create mode 100644 docs/docs/auto-docs/components/UserPortal/CreateDirectChat/CreateDirectChat/README.md create mode 100644 docs/docs/auto-docs/components/UserPortal/CreateDirectChat/CreateDirectChat/functions/default.md create mode 100644 docs/docs/auto-docs/components/UserPortal/CreateGroupChat/CreateGroupChat/README.md create mode 100644 docs/docs/auto-docs/components/UserPortal/CreateGroupChat/CreateGroupChat/functions/default.md create mode 100644 docs/docs/auto-docs/components/UserPortal/DonationCard/DonationCard/README.md create mode 100644 docs/docs/auto-docs/components/UserPortal/DonationCard/DonationCard/functions/default.md create mode 100644 docs/docs/auto-docs/components/UserPortal/EventCard/EventCard/README.md create mode 100644 docs/docs/auto-docs/components/UserPortal/EventCard/EventCard/functions/default.md create mode 100644 docs/docs/auto-docs/components/UserPortal/OrganizationCard/OrganizationCard/README.md create mode 100644 docs/docs/auto-docs/components/UserPortal/OrganizationCard/OrganizationCard/functions/default.md create mode 100644 docs/docs/auto-docs/components/UserPortal/OrganizationNavbar/OrganizationNavbar/README.md create mode 100644 docs/docs/auto-docs/components/UserPortal/OrganizationNavbar/OrganizationNavbar/functions/default.md create mode 100644 docs/docs/auto-docs/components/UserPortal/OrganizationSidebar/OrganizationSidebar/README.md create mode 100644 docs/docs/auto-docs/components/UserPortal/OrganizationSidebar/OrganizationSidebar/functions/default.md create mode 100644 docs/docs/auto-docs/components/UserPortal/PeopleCard/PeopleCard/README.md create mode 100644 docs/docs/auto-docs/components/UserPortal/PeopleCard/PeopleCard/functions/default.md create mode 100644 docs/docs/auto-docs/components/UserPortal/PostCard/PostCard/README.md create mode 100644 docs/docs/auto-docs/components/UserPortal/PostCard/PostCard/functions/default.md create mode 100644 docs/docs/auto-docs/components/UserPortal/PromotedPost/PromotedPost/README.md create mode 100644 docs/docs/auto-docs/components/UserPortal/PromotedPost/PromotedPost/functions/default.md create mode 100644 docs/docs/auto-docs/components/UserPortal/Register/Register/README.md create mode 100644 docs/docs/auto-docs/components/UserPortal/Register/Register/functions/default.md create mode 100644 docs/docs/auto-docs/components/UserPortal/SecuredRouteForUser/SecuredRouteForUser/README.md create mode 100644 docs/docs/auto-docs/components/UserPortal/SecuredRouteForUser/SecuredRouteForUser/functions/default.md create mode 100644 docs/docs/auto-docs/components/UserPortal/StartPostModal/StartPostModal/README.md create mode 100644 docs/docs/auto-docs/components/UserPortal/StartPostModal/StartPostModal/functions/default.md create mode 100644 docs/docs/auto-docs/components/UserPortal/UserNavbar/UserNavbar/README.md create mode 100644 docs/docs/auto-docs/components/UserPortal/UserNavbar/UserNavbar/functions/default.md create mode 100644 docs/docs/auto-docs/components/UserPortal/UserProfile/EventsAttendedByUser/README.md create mode 100644 docs/docs/auto-docs/components/UserPortal/UserProfile/EventsAttendedByUser/functions/EventsAttendedByUser.md create mode 100644 docs/docs/auto-docs/components/UserPortal/UserProfile/UserAddressFields/README.md create mode 100644 docs/docs/auto-docs/components/UserPortal/UserProfile/UserAddressFields/functions/UserAddressFields.md create mode 100644 docs/docs/auto-docs/components/UserPortal/UserSidebar/UserSidebar/README.md create mode 100644 docs/docs/auto-docs/components/UserPortal/UserSidebar/UserSidebar/functions/default.md create mode 100644 docs/docs/auto-docs/components/UserPortal/UserSidebar/UserSidebar/interfaces/InterfaceUserSidebarProps.md create mode 100644 docs/docs/auto-docs/components/UserPortal/UserSidebarOrg/UserSidebarOrg/README.md create mode 100644 docs/docs/auto-docs/components/UserPortal/UserSidebarOrg/UserSidebarOrg/functions/default.md create mode 100644 docs/docs/auto-docs/components/UserPortal/UserSidebarOrg/UserSidebarOrg/interfaces/InterfaceUserSidebarOrgProps.md create mode 100644 docs/docs/auto-docs/components/UserProfileSettings/DeleteUser/README.md create mode 100644 docs/docs/auto-docs/components/UserProfileSettings/DeleteUser/functions/default.md create mode 100644 docs/docs/auto-docs/components/UserProfileSettings/OtherSettings/README.md create mode 100644 docs/docs/auto-docs/components/UserProfileSettings/OtherSettings/functions/default.md create mode 100644 docs/docs/auto-docs/components/UserProfileSettings/UserProfile/README.md create mode 100644 docs/docs/auto-docs/components/UserProfileSettings/UserProfile/functions/default.md create mode 100644 docs/docs/auto-docs/components/UsersTableItem/UserTableItemMocks/README.md create mode 100644 docs/docs/auto-docs/components/UsersTableItem/UserTableItemMocks/variables/MOCKS.md create mode 100644 docs/docs/auto-docs/components/UsersTableItem/UserTableItemMocks/variables/MOCKS2.md create mode 100644 docs/docs/auto-docs/components/UsersTableItem/UserTableItemMocks/variables/MOCKS_UPDATE.md create mode 100644 docs/docs/auto-docs/components/UsersTableItem/UsersTableItem/README.md create mode 100644 docs/docs/auto-docs/components/UsersTableItem/UsersTableItem/functions/default.md create mode 100644 docs/docs/auto-docs/components/Venues/VenueCard/README.md create mode 100644 docs/docs/auto-docs/components/Venues/VenueCard/functions/default.md create mode 100644 docs/docs/auto-docs/components/Venues/VenueModal/README.md create mode 100644 docs/docs/auto-docs/components/Venues/VenueModal/functions/default.md create mode 100644 docs/docs/auto-docs/components/Venues/VenueModal/interfaces/InterfaceVenueModalProps.md create mode 100644 docs/docs/auto-docs/components/plugins/DummyPlugin/DummyPlugin/README.md create mode 100644 docs/docs/auto-docs/components/plugins/DummyPlugin/DummyPlugin/functions/default.md create mode 100644 docs/docs/auto-docs/components/plugins/DummyPlugin2/DummyPlugin2/README.md create mode 100644 docs/docs/auto-docs/components/plugins/DummyPlugin2/DummyPlugin2/functions/default.md create mode 100644 docs/docs/auto-docs/components/plugins/README.md create mode 100644 docs/docs/auto-docs/constants/README.md create mode 100644 docs/docs/auto-docs/constants/variables/socialMediaLinks.md create mode 100644 docs/docs/auto-docs/index/README.md create mode 100644 docs/docs/auto-docs/modules.md create mode 100644 docs/docs/auto-docs/reportWebVitals/README.md create mode 100644 docs/docs/auto-docs/reportWebVitals/functions/default.md create mode 100644 docs/docs/auto-docs/screens/BlockUser/BlockUser/README.md create mode 100644 docs/docs/auto-docs/screens/BlockUser/BlockUser/functions/default.md create mode 100644 docs/docs/auto-docs/screens/CommunityProfile/CommunityProfile/README.md create mode 100644 docs/docs/auto-docs/screens/CommunityProfile/CommunityProfile/functions/default.md create mode 100644 docs/docs/auto-docs/screens/EventManagement/EventManagement/README.md create mode 100644 docs/docs/auto-docs/screens/EventManagement/EventManagement/functions/default.md create mode 100644 docs/docs/auto-docs/screens/EventVolunteers/Requests/Requests.mocks/README.md create mode 100644 docs/docs/auto-docs/screens/EventVolunteers/Requests/Requests.mocks/variables/EMPTY_MOCKS.md create mode 100644 docs/docs/auto-docs/screens/EventVolunteers/Requests/Requests.mocks/variables/ERROR_MOCKS.md create mode 100644 docs/docs/auto-docs/screens/EventVolunteers/Requests/Requests.mocks/variables/MOCKS.md create mode 100644 docs/docs/auto-docs/screens/EventVolunteers/Requests/Requests.mocks/variables/UPDATE_ERROR_MOCKS.md create mode 100644 docs/docs/auto-docs/screens/EventVolunteers/Requests/Requests/README.md create mode 100644 docs/docs/auto-docs/screens/EventVolunteers/Requests/Requests/functions/default.md create mode 100644 docs/docs/auto-docs/screens/EventVolunteers/VolunteerContainer/README.md create mode 100644 docs/docs/auto-docs/screens/EventVolunteers/VolunteerContainer/functions/default.md create mode 100644 docs/docs/auto-docs/screens/EventVolunteers/VolunteerGroups/VolunteerGroupDeleteModal/README.md create mode 100644 docs/docs/auto-docs/screens/EventVolunteers/VolunteerGroups/VolunteerGroupDeleteModal/functions/default.md create mode 100644 docs/docs/auto-docs/screens/EventVolunteers/VolunteerGroups/VolunteerGroupDeleteModal/interfaces/InterfaceDeleteVolunteerGroupModal.md create mode 100644 docs/docs/auto-docs/screens/EventVolunteers/VolunteerGroups/VolunteerGroupModal/README.md create mode 100644 docs/docs/auto-docs/screens/EventVolunteers/VolunteerGroups/VolunteerGroupModal/functions/default.md create mode 100644 docs/docs/auto-docs/screens/EventVolunteers/VolunteerGroups/VolunteerGroupModal/interfaces/InterfaceVolunteerGroupModal.md create mode 100644 docs/docs/auto-docs/screens/EventVolunteers/VolunteerGroups/VolunteerGroupViewModal/README.md create mode 100644 docs/docs/auto-docs/screens/EventVolunteers/VolunteerGroups/VolunteerGroupViewModal/functions/default.md create mode 100644 docs/docs/auto-docs/screens/EventVolunteers/VolunteerGroups/VolunteerGroupViewModal/interfaces/InterfaceVolunteerGroupViewModal.md create mode 100644 docs/docs/auto-docs/screens/EventVolunteers/VolunteerGroups/VolunteerGroups.mocks/README.md create mode 100644 docs/docs/auto-docs/screens/EventVolunteers/VolunteerGroups/VolunteerGroups.mocks/variables/MOCKS.md create mode 100644 docs/docs/auto-docs/screens/EventVolunteers/VolunteerGroups/VolunteerGroups.mocks/variables/MOCKS_EMPTY.md create mode 100644 docs/docs/auto-docs/screens/EventVolunteers/VolunteerGroups/VolunteerGroups.mocks/variables/MOCKS_ERROR.md create mode 100644 docs/docs/auto-docs/screens/EventVolunteers/VolunteerGroups/VolunteerGroups/README.md create mode 100644 docs/docs/auto-docs/screens/EventVolunteers/VolunteerGroups/VolunteerGroups/functions/default.md create mode 100644 docs/docs/auto-docs/screens/EventVolunteers/Volunteers/VolunteerCreateModal/README.md create mode 100644 docs/docs/auto-docs/screens/EventVolunteers/Volunteers/VolunteerCreateModal/functions/default.md create mode 100644 docs/docs/auto-docs/screens/EventVolunteers/Volunteers/VolunteerCreateModal/interfaces/InterfaceVolunteerCreateModal.md create mode 100644 docs/docs/auto-docs/screens/EventVolunteers/Volunteers/VolunteerDeleteModal/README.md create mode 100644 docs/docs/auto-docs/screens/EventVolunteers/Volunteers/VolunteerDeleteModal/functions/default.md create mode 100644 docs/docs/auto-docs/screens/EventVolunteers/Volunteers/VolunteerDeleteModal/interfaces/InterfaceDeleteVolunteerModal.md create mode 100644 docs/docs/auto-docs/screens/EventVolunteers/Volunteers/VolunteerViewModal/README.md create mode 100644 docs/docs/auto-docs/screens/EventVolunteers/Volunteers/VolunteerViewModal/functions/default.md create mode 100644 docs/docs/auto-docs/screens/EventVolunteers/Volunteers/VolunteerViewModal/interfaces/InterfaceVolunteerViewModal.md create mode 100644 docs/docs/auto-docs/screens/EventVolunteers/Volunteers/Volunteers.mocks/README.md create mode 100644 docs/docs/auto-docs/screens/EventVolunteers/Volunteers/Volunteers.mocks/variables/MOCKS.md create mode 100644 docs/docs/auto-docs/screens/EventVolunteers/Volunteers/Volunteers.mocks/variables/MOCKS_EMPTY.md create mode 100644 docs/docs/auto-docs/screens/EventVolunteers/Volunteers/Volunteers.mocks/variables/MOCKS_ERROR.md create mode 100644 docs/docs/auto-docs/screens/EventVolunteers/Volunteers/Volunteers/README.md create mode 100644 docs/docs/auto-docs/screens/EventVolunteers/Volunteers/Volunteers/functions/default.md create mode 100644 docs/docs/auto-docs/screens/ForgotPassword/ForgotPassword/README.md create mode 100644 docs/docs/auto-docs/screens/ForgotPassword/ForgotPassword/functions/default.md create mode 100644 docs/docs/auto-docs/screens/FundCampaignPledge/FundCampaignPledge/README.md create mode 100644 docs/docs/auto-docs/screens/FundCampaignPledge/FundCampaignPledge/functions/default.md create mode 100644 docs/docs/auto-docs/screens/FundCampaignPledge/PledgeDeleteModal/README.md create mode 100644 docs/docs/auto-docs/screens/FundCampaignPledge/PledgeDeleteModal/functions/default.md create mode 100644 docs/docs/auto-docs/screens/FundCampaignPledge/PledgeDeleteModal/interfaces/InterfaceDeletePledgeModal.md create mode 100644 docs/docs/auto-docs/screens/FundCampaignPledge/PledgeModal/README.md create mode 100644 docs/docs/auto-docs/screens/FundCampaignPledge/PledgeModal/functions/default.md create mode 100644 docs/docs/auto-docs/screens/FundCampaignPledge/PledgeModal/interfaces/InterfacePledgeModal.md create mode 100644 docs/docs/auto-docs/screens/FundCampaignPledge/PledgesMocks/README.md create mode 100644 docs/docs/auto-docs/screens/FundCampaignPledge/PledgesMocks/variables/EMPTY_MOCKS.md create mode 100644 docs/docs/auto-docs/screens/FundCampaignPledge/PledgesMocks/variables/MOCKS.md create mode 100644 docs/docs/auto-docs/screens/FundCampaignPledge/PledgesMocks/variables/MOCKS_DELETE_PLEDGE_ERROR.md create mode 100644 docs/docs/auto-docs/screens/FundCampaignPledge/PledgesMocks/variables/MOCKS_FUND_CAMPAIGN_PLEDGE_ERROR.md create mode 100644 docs/docs/auto-docs/screens/FundCampaignPledge/PledgesMocks/variables/PLEDGE_MODAL_MOCKS.md create mode 100644 docs/docs/auto-docs/screens/Leaderboard/Leaderboard.mocks/README.md create mode 100644 docs/docs/auto-docs/screens/Leaderboard/Leaderboard.mocks/variables/EMPTY_MOCKS.md create mode 100644 docs/docs/auto-docs/screens/Leaderboard/Leaderboard.mocks/variables/ERROR_MOCKS.md create mode 100644 docs/docs/auto-docs/screens/Leaderboard/Leaderboard.mocks/variables/MOCKS.md create mode 100644 docs/docs/auto-docs/screens/Leaderboard/Leaderboard/README.md create mode 100644 docs/docs/auto-docs/screens/Leaderboard/Leaderboard/functions/default.md create mode 100644 docs/docs/auto-docs/screens/LoginPage/LoginPage/README.md create mode 100644 docs/docs/auto-docs/screens/LoginPage/LoginPage/functions/default.md create mode 100644 docs/docs/auto-docs/screens/ManageTag/EditUserTagModal/README.md create mode 100644 docs/docs/auto-docs/screens/ManageTag/EditUserTagModal/functions/default.md create mode 100644 docs/docs/auto-docs/screens/ManageTag/EditUserTagModal/interfaces/InterfaceEditUserTagModalProps.md create mode 100644 docs/docs/auto-docs/screens/ManageTag/ManageTag/README.md create mode 100644 docs/docs/auto-docs/screens/ManageTag/ManageTag/functions/default.md create mode 100644 docs/docs/auto-docs/screens/ManageTag/ManageTagMockComponents/MockAddPeopleToTag/README.md create mode 100644 docs/docs/auto-docs/screens/ManageTag/ManageTagMockComponents/MockAddPeopleToTag/functions/default.md create mode 100644 docs/docs/auto-docs/screens/ManageTag/ManageTagMockComponents/MockTagActions/README.md create mode 100644 docs/docs/auto-docs/screens/ManageTag/ManageTagMockComponents/MockTagActions/functions/default.md create mode 100644 docs/docs/auto-docs/screens/ManageTag/ManageTagMocks/README.md create mode 100644 docs/docs/auto-docs/screens/ManageTag/ManageTagMocks/variables/MOCKS.md create mode 100644 docs/docs/auto-docs/screens/ManageTag/ManageTagMocks/variables/MOCKS_ERROR_ASSIGNED_MEMBERS.md create mode 100644 docs/docs/auto-docs/screens/ManageTag/RemoveUserTagModal/README.md create mode 100644 docs/docs/auto-docs/screens/ManageTag/RemoveUserTagModal/functions/default.md create mode 100644 docs/docs/auto-docs/screens/ManageTag/RemoveUserTagModal/interfaces/InterfaceRemoveUserTagModalProps.md create mode 100644 docs/docs/auto-docs/screens/ManageTag/UnassignUserTagModal/README.md create mode 100644 docs/docs/auto-docs/screens/ManageTag/UnassignUserTagModal/functions/default.md create mode 100644 docs/docs/auto-docs/screens/ManageTag/UnassignUserTagModal/interfaces/InterfaceUnassignUserTagModalProps.md create mode 100644 docs/docs/auto-docs/screens/MemberDetail/MemberDetail/README.md create mode 100644 docs/docs/auto-docs/screens/MemberDetail/MemberDetail/functions/default.md create mode 100644 docs/docs/auto-docs/screens/MemberDetail/MemberDetail/functions/getLanguageName.md create mode 100644 docs/docs/auto-docs/screens/MemberDetail/MemberDetail/functions/prettyDate.md create mode 100644 docs/docs/auto-docs/screens/MemberDetail/MemberDetailMocks/README.md create mode 100644 docs/docs/auto-docs/screens/MemberDetail/MemberDetailMocks/variables/MOCKS1.md create mode 100644 docs/docs/auto-docs/screens/MemberDetail/MemberDetailMocks/variables/MOCKS2.md create mode 100644 docs/docs/auto-docs/screens/MemberDetail/MemberDetailMocks/variables/MOCKS3.md create mode 100644 docs/docs/auto-docs/screens/OrgContribution/OrgContribution/README.md create mode 100644 docs/docs/auto-docs/screens/OrgContribution/OrgContribution/functions/default.md create mode 100644 docs/docs/auto-docs/screens/OrgList/OrgList/README.md create mode 100644 docs/docs/auto-docs/screens/OrgList/OrgList/functions/default.md create mode 100644 docs/docs/auto-docs/screens/OrgList/OrgListMocks/README.md create mode 100644 docs/docs/auto-docs/screens/OrgList/OrgListMocks/variables/MOCKS.md create mode 100644 docs/docs/auto-docs/screens/OrgList/OrgListMocks/variables/MOCKS_ADMIN.md create mode 100644 docs/docs/auto-docs/screens/OrgList/OrgListMocks/variables/MOCKS_EMPTY.md create mode 100644 docs/docs/auto-docs/screens/OrgList/OrgListMocks/variables/MOCKS_WITH_ERROR.md create mode 100644 docs/docs/auto-docs/screens/OrgList/OrganizationModal/README.md create mode 100644 docs/docs/auto-docs/screens/OrgList/OrganizationModal/functions/default.md create mode 100644 docs/docs/auto-docs/screens/OrgPost/OrgPost/README.md create mode 100644 docs/docs/auto-docs/screens/OrgPost/OrgPost/functions/default.md create mode 100644 docs/docs/auto-docs/screens/OrgSettings/OrgSettings.mocks/README.md create mode 100644 docs/docs/auto-docs/screens/OrgSettings/OrgSettings.mocks/variables/MOCKS.md create mode 100644 docs/docs/auto-docs/screens/OrgSettings/OrgSettings/README.md create mode 100644 docs/docs/auto-docs/screens/OrgSettings/OrgSettings/functions/default.md create mode 100644 docs/docs/auto-docs/screens/OrganizationActionItems/ItemDeleteModal/README.md create mode 100644 docs/docs/auto-docs/screens/OrganizationActionItems/ItemDeleteModal/functions/default.md create mode 100644 docs/docs/auto-docs/screens/OrganizationActionItems/ItemDeleteModal/interfaces/InterfaceItemDeleteModalProps.md create mode 100644 docs/docs/auto-docs/screens/OrganizationActionItems/ItemModal/README.md create mode 100644 docs/docs/auto-docs/screens/OrganizationActionItems/ItemModal/functions/default.md create mode 100644 docs/docs/auto-docs/screens/OrganizationActionItems/ItemModal/interfaces/InterfaceItemModalProps.md create mode 100644 docs/docs/auto-docs/screens/OrganizationActionItems/ItemUpdateStatusModal/README.md create mode 100644 docs/docs/auto-docs/screens/OrganizationActionItems/ItemUpdateStatusModal/functions/default.md create mode 100644 docs/docs/auto-docs/screens/OrganizationActionItems/ItemUpdateStatusModal/interfaces/InterfaceItemUpdateStatusModalProps.md create mode 100644 docs/docs/auto-docs/screens/OrganizationActionItems/ItemViewModal/README.md create mode 100644 docs/docs/auto-docs/screens/OrganizationActionItems/ItemViewModal/functions/default.md create mode 100644 docs/docs/auto-docs/screens/OrganizationActionItems/ItemViewModal/interfaces/InterfaceViewModalProps.md create mode 100644 docs/docs/auto-docs/screens/OrganizationActionItems/OrganizationActionItem.mocks/README.md create mode 100644 docs/docs/auto-docs/screens/OrganizationActionItems/OrganizationActionItem.mocks/variables/MOCKS.md create mode 100644 docs/docs/auto-docs/screens/OrganizationActionItems/OrganizationActionItem.mocks/variables/MOCKS_EMPTY.md create mode 100644 docs/docs/auto-docs/screens/OrganizationActionItems/OrganizationActionItem.mocks/variables/MOCKS_ERROR.md create mode 100644 docs/docs/auto-docs/screens/OrganizationActionItems/OrganizationActionItems/README.md create mode 100644 docs/docs/auto-docs/screens/OrganizationActionItems/OrganizationActionItems/functions/default.md create mode 100644 docs/docs/auto-docs/screens/OrganizationActionItems/testObject.mocks/README.md create mode 100644 docs/docs/auto-docs/screens/OrganizationActionItems/testObject.mocks/variables/actionItemCategory1.md create mode 100644 docs/docs/auto-docs/screens/OrganizationActionItems/testObject.mocks/variables/actionItemCategory2.md create mode 100644 docs/docs/auto-docs/screens/OrganizationActionItems/testObject.mocks/variables/actionItemCategoryListQuery.md create mode 100644 docs/docs/auto-docs/screens/OrganizationActionItems/testObject.mocks/variables/baseActionItem.md create mode 100644 docs/docs/auto-docs/screens/OrganizationActionItems/testObject.mocks/variables/groupListQuery.md create mode 100644 docs/docs/auto-docs/screens/OrganizationActionItems/testObject.mocks/variables/itemWithGroup.md create mode 100644 docs/docs/auto-docs/screens/OrganizationActionItems/testObject.mocks/variables/itemWithUser.md create mode 100644 docs/docs/auto-docs/screens/OrganizationActionItems/testObject.mocks/variables/itemWithUserImage.md create mode 100644 docs/docs/auto-docs/screens/OrganizationActionItems/testObject.mocks/variables/itemWithVolunteer.md create mode 100644 docs/docs/auto-docs/screens/OrganizationActionItems/testObject.mocks/variables/itemWithVolunteerImage.md create mode 100644 docs/docs/auto-docs/screens/OrganizationActionItems/testObject.mocks/variables/memberListQuery.md create mode 100644 docs/docs/auto-docs/screens/OrganizationActionItems/testObject.mocks/variables/volunteerListQuery.md create mode 100644 docs/docs/auto-docs/screens/OrganizationDashboard/OrganizationDashboard/README.md create mode 100644 docs/docs/auto-docs/screens/OrganizationDashboard/OrganizationDashboard/functions/default.md create mode 100644 docs/docs/auto-docs/screens/OrganizationDashboard/OrganizationDashboardMocks/README.md create mode 100644 docs/docs/auto-docs/screens/OrganizationDashboard/OrganizationDashboardMocks/variables/EMPTY_MOCKS.md create mode 100644 docs/docs/auto-docs/screens/OrganizationDashboard/OrganizationDashboardMocks/variables/ERROR_MOCKS.md create mode 100644 docs/docs/auto-docs/screens/OrganizationDashboard/OrganizationDashboardMocks/variables/MOCKS.md create mode 100644 docs/docs/auto-docs/screens/OrganizationEvents/OrganizationEvents/README.md create mode 100644 docs/docs/auto-docs/screens/OrganizationEvents/OrganizationEvents/enumerations/ViewType.md create mode 100644 docs/docs/auto-docs/screens/OrganizationEvents/OrganizationEvents/functions/default.md create mode 100644 docs/docs/auto-docs/screens/OrganizationEvents/OrganizationEventsMocks/README.md create mode 100644 docs/docs/auto-docs/screens/OrganizationEvents/OrganizationEventsMocks/variables/MOCKS.md create mode 100644 docs/docs/auto-docs/screens/OrganizationFundCampaign/CampaignModal/README.md create mode 100644 docs/docs/auto-docs/screens/OrganizationFundCampaign/CampaignModal/functions/default.md create mode 100644 docs/docs/auto-docs/screens/OrganizationFundCampaign/CampaignModal/interfaces/InterfaceCampaignModal.md create mode 100644 docs/docs/auto-docs/screens/OrganizationFundCampaign/OrganizationFundCampagins/README.md create mode 100644 docs/docs/auto-docs/screens/OrganizationFundCampaign/OrganizationFundCampagins/functions/default.md create mode 100644 docs/docs/auto-docs/screens/OrganizationFundCampaign/OrganizationFundCampaignMocks/README.md create mode 100644 docs/docs/auto-docs/screens/OrganizationFundCampaign/OrganizationFundCampaignMocks/variables/EMPTY_MOCKS.md create mode 100644 docs/docs/auto-docs/screens/OrganizationFundCampaign/OrganizationFundCampaignMocks/variables/MOCKS.md create mode 100644 docs/docs/auto-docs/screens/OrganizationFundCampaign/OrganizationFundCampaignMocks/variables/MOCK_ERROR.md create mode 100644 docs/docs/auto-docs/screens/OrganizationFunds/FundModal/README.md create mode 100644 docs/docs/auto-docs/screens/OrganizationFunds/FundModal/functions/default.md create mode 100644 docs/docs/auto-docs/screens/OrganizationFunds/FundModal/interfaces/InterfaceFundModal.md create mode 100644 docs/docs/auto-docs/screens/OrganizationFunds/OrganizationFunds/README.md create mode 100644 docs/docs/auto-docs/screens/OrganizationFunds/OrganizationFunds/functions/default.md create mode 100644 docs/docs/auto-docs/screens/OrganizationFunds/OrganizationFundsMocks/README.md create mode 100644 docs/docs/auto-docs/screens/OrganizationFunds/OrganizationFundsMocks/variables/MOCKS.md create mode 100644 docs/docs/auto-docs/screens/OrganizationFunds/OrganizationFundsMocks/variables/MOCKS_ERROR.md create mode 100644 docs/docs/auto-docs/screens/OrganizationFunds/OrganizationFundsMocks/variables/NO_FUNDS.md create mode 100644 docs/docs/auto-docs/screens/OrganizationPeople/AddMember/README.md create mode 100644 docs/docs/auto-docs/screens/OrganizationPeople/AddMember/functions/default.md create mode 100644 docs/docs/auto-docs/screens/OrganizationPeople/MockDataTypes/README.md create mode 100644 docs/docs/auto-docs/screens/OrganizationPeople/MockDataTypes/type-aliases/TestMock.md create mode 100644 docs/docs/auto-docs/screens/OrganizationPeople/OrganizationPeople/README.md create mode 100644 docs/docs/auto-docs/screens/OrganizationPeople/OrganizationPeople/functions/default.md create mode 100644 docs/docs/auto-docs/screens/OrganizationTags/OrganizationTags/README.md create mode 100644 docs/docs/auto-docs/screens/OrganizationTags/OrganizationTags/functions/default.md create mode 100644 docs/docs/auto-docs/screens/OrganizationTags/OrganizationTagsMocks/README.md create mode 100644 docs/docs/auto-docs/screens/OrganizationTags/OrganizationTagsMocks/variables/MOCKS.md create mode 100644 docs/docs/auto-docs/screens/OrganizationTags/OrganizationTagsMocks/variables/MOCKS_ERROR.md create mode 100644 docs/docs/auto-docs/screens/OrganizationVenues/OrganizationVenues/README.md create mode 100644 docs/docs/auto-docs/screens/OrganizationVenues/OrganizationVenues/functions/default.md create mode 100644 docs/docs/auto-docs/screens/PageNotFound/PageNotFound/README.md create mode 100644 docs/docs/auto-docs/screens/PageNotFound/PageNotFound/functions/default.md create mode 100644 docs/docs/auto-docs/screens/Requests/Requests/README.md create mode 100644 docs/docs/auto-docs/screens/Requests/Requests/functions/default.md create mode 100644 docs/docs/auto-docs/screens/Requests/RequestsMocks/README.md create mode 100644 docs/docs/auto-docs/screens/Requests/RequestsMocks/variables/EMPTY_MOCKS.md create mode 100644 docs/docs/auto-docs/screens/Requests/RequestsMocks/variables/EMPTY_REQUEST_MOCKS.md create mode 100644 docs/docs/auto-docs/screens/Requests/RequestsMocks/variables/MOCKS.md create mode 100644 docs/docs/auto-docs/screens/Requests/RequestsMocks/variables/MOCKS2.md create mode 100644 docs/docs/auto-docs/screens/Requests/RequestsMocks/variables/MOCKS3.md create mode 100644 docs/docs/auto-docs/screens/Requests/RequestsMocks/variables/MOCKS4.md create mode 100644 docs/docs/auto-docs/screens/Requests/RequestsMocks/variables/MOCKS_WITH_ERROR.md create mode 100644 docs/docs/auto-docs/screens/SubTags/SubTags/README.md create mode 100644 docs/docs/auto-docs/screens/SubTags/SubTags/functions/default.md create mode 100644 docs/docs/auto-docs/screens/SubTags/SubTagsMocks/README.md create mode 100644 docs/docs/auto-docs/screens/SubTags/SubTagsMocks/variables/MOCKS.md create mode 100644 docs/docs/auto-docs/screens/SubTags/SubTagsMocks/variables/MOCKS_ERROR_SUB_TAGS.md create mode 100644 docs/docs/auto-docs/screens/UserPortal/Campaigns/Campaigns/README.md create mode 100644 docs/docs/auto-docs/screens/UserPortal/Campaigns/Campaigns/functions/default.md create mode 100644 docs/docs/auto-docs/screens/UserPortal/Campaigns/CampaignsMocks/README.md create mode 100644 docs/docs/auto-docs/screens/UserPortal/Campaigns/CampaignsMocks/variables/EMPTY_MOCKS.md create mode 100644 docs/docs/auto-docs/screens/UserPortal/Campaigns/CampaignsMocks/variables/MOCKS.md create mode 100644 docs/docs/auto-docs/screens/UserPortal/Campaigns/CampaignsMocks/variables/USER_FUND_CAMPAIGNS_ERROR.md create mode 100644 docs/docs/auto-docs/screens/UserPortal/Campaigns/PledgeModal/README.md create mode 100644 docs/docs/auto-docs/screens/UserPortal/Campaigns/PledgeModal/functions/default.md create mode 100644 docs/docs/auto-docs/screens/UserPortal/Campaigns/PledgeModal/interfaces/InterfacePledgeModal.md create mode 100644 docs/docs/auto-docs/screens/UserPortal/Chat/Chat/README.md create mode 100644 docs/docs/auto-docs/screens/UserPortal/Chat/Chat/functions/default.md create mode 100644 docs/docs/auto-docs/screens/UserPortal/Donate/Donate/README.md create mode 100644 docs/docs/auto-docs/screens/UserPortal/Donate/Donate/functions/default.md create mode 100644 docs/docs/auto-docs/screens/UserPortal/Donate/Donate/interfaces/InterfaceDonationCardProps.md create mode 100644 docs/docs/auto-docs/screens/UserPortal/Events/Events/README.md create mode 100644 docs/docs/auto-docs/screens/UserPortal/Events/Events/functions/default.md create mode 100644 docs/docs/auto-docs/screens/UserPortal/LeaveOrganization/LeaveOrganization/README.md create mode 100644 docs/docs/auto-docs/screens/UserPortal/LeaveOrganization/LeaveOrganization/functions/default.md create mode 100644 docs/docs/auto-docs/screens/UserPortal/LeaveOrganization/LeaveOrganization/variables/userEmail.md create mode 100644 docs/docs/auto-docs/screens/UserPortal/LeaveOrganization/LeaveOrganization/variables/userId.md create mode 100644 docs/docs/auto-docs/screens/UserPortal/Organizations/Organizations/README.md create mode 100644 docs/docs/auto-docs/screens/UserPortal/Organizations/Organizations/functions/default.md create mode 100644 docs/docs/auto-docs/screens/UserPortal/People/People/README.md create mode 100644 docs/docs/auto-docs/screens/UserPortal/People/People/functions/default.md create mode 100644 docs/docs/auto-docs/screens/UserPortal/Pledges/Pledges/README.md create mode 100644 docs/docs/auto-docs/screens/UserPortal/Pledges/Pledges/functions/default.md create mode 100644 docs/docs/auto-docs/screens/UserPortal/Pledges/PledgesMocks/README.md create mode 100644 docs/docs/auto-docs/screens/UserPortal/Pledges/PledgesMocks/variables/EMPTY_MOCKS.md create mode 100644 docs/docs/auto-docs/screens/UserPortal/Pledges/PledgesMocks/variables/MOCKS.md create mode 100644 docs/docs/auto-docs/screens/UserPortal/Pledges/PledgesMocks/variables/USER_PLEDGES_ERROR.md create mode 100644 docs/docs/auto-docs/screens/UserPortal/Posts/Posts/README.md create mode 100644 docs/docs/auto-docs/screens/UserPortal/Posts/Posts/functions/default.md create mode 100644 docs/docs/auto-docs/screens/UserPortal/Settings/Settings/README.md create mode 100644 docs/docs/auto-docs/screens/UserPortal/Settings/Settings/functions/default.md create mode 100644 docs/docs/auto-docs/screens/UserPortal/UserScreen/UserScreen/README.md create mode 100644 docs/docs/auto-docs/screens/UserPortal/UserScreen/UserScreen/functions/default.md create mode 100644 docs/docs/auto-docs/screens/UserPortal/Volunteer/Actions/Actions.mocks/README.md create mode 100644 docs/docs/auto-docs/screens/UserPortal/Volunteer/Actions/Actions.mocks/variables/EMPTY_MOCKS.md create mode 100644 docs/docs/auto-docs/screens/UserPortal/Volunteer/Actions/Actions.mocks/variables/ERROR_MOCKS.md create mode 100644 docs/docs/auto-docs/screens/UserPortal/Volunteer/Actions/Actions.mocks/variables/MOCKS.md create mode 100644 docs/docs/auto-docs/screens/UserPortal/Volunteer/Actions/Actions/README.md create mode 100644 docs/docs/auto-docs/screens/UserPortal/Volunteer/Actions/Actions/functions/default.md create mode 100644 docs/docs/auto-docs/screens/UserPortal/Volunteer/Groups/GroupModal/README.md create mode 100644 docs/docs/auto-docs/screens/UserPortal/Volunteer/Groups/GroupModal/functions/default.md create mode 100644 docs/docs/auto-docs/screens/UserPortal/Volunteer/Groups/GroupModal/interfaces/InterfaceGroupModal.md create mode 100644 docs/docs/auto-docs/screens/UserPortal/Volunteer/Groups/Groups.mocks/README.md create mode 100644 docs/docs/auto-docs/screens/UserPortal/Volunteer/Groups/Groups.mocks/variables/EMPTY_MOCKS.md create mode 100644 docs/docs/auto-docs/screens/UserPortal/Volunteer/Groups/Groups.mocks/variables/ERROR_MOCKS.md create mode 100644 docs/docs/auto-docs/screens/UserPortal/Volunteer/Groups/Groups.mocks/variables/MOCKS.md create mode 100644 docs/docs/auto-docs/screens/UserPortal/Volunteer/Groups/Groups.mocks/variables/UPDATE_ERROR_MOCKS.md create mode 100644 docs/docs/auto-docs/screens/UserPortal/Volunteer/Groups/Groups/README.md create mode 100644 docs/docs/auto-docs/screens/UserPortal/Volunteer/Groups/Groups/functions/default.md create mode 100644 docs/docs/auto-docs/screens/UserPortal/Volunteer/Invitations/Invitations.mocks/README.md create mode 100644 docs/docs/auto-docs/screens/UserPortal/Volunteer/Invitations/Invitations.mocks/variables/EMPTY_MOCKS.md create mode 100644 docs/docs/auto-docs/screens/UserPortal/Volunteer/Invitations/Invitations.mocks/variables/ERROR_MOCKS.md create mode 100644 docs/docs/auto-docs/screens/UserPortal/Volunteer/Invitations/Invitations.mocks/variables/MOCKS.md create mode 100644 docs/docs/auto-docs/screens/UserPortal/Volunteer/Invitations/Invitations.mocks/variables/UPDATE_ERROR_MOCKS.md create mode 100644 docs/docs/auto-docs/screens/UserPortal/Volunteer/Invitations/Invitations/README.md create mode 100644 docs/docs/auto-docs/screens/UserPortal/Volunteer/Invitations/Invitations/functions/default.md create mode 100644 docs/docs/auto-docs/screens/UserPortal/Volunteer/UpcomingEvents/UpcomingEvents.mocks/README.md create mode 100644 docs/docs/auto-docs/screens/UserPortal/Volunteer/UpcomingEvents/UpcomingEvents.mocks/variables/CREATE_ERROR_MOCKS.md create mode 100644 docs/docs/auto-docs/screens/UserPortal/Volunteer/UpcomingEvents/UpcomingEvents.mocks/variables/EMPTY_MOCKS.md create mode 100644 docs/docs/auto-docs/screens/UserPortal/Volunteer/UpcomingEvents/UpcomingEvents.mocks/variables/ERROR_MOCKS.md create mode 100644 docs/docs/auto-docs/screens/UserPortal/Volunteer/UpcomingEvents/UpcomingEvents.mocks/variables/MOCKS.md create mode 100644 docs/docs/auto-docs/screens/UserPortal/Volunteer/UpcomingEvents/UpcomingEvents/README.md create mode 100644 docs/docs/auto-docs/screens/UserPortal/Volunteer/UpcomingEvents/UpcomingEvents/functions/default.md create mode 100644 docs/docs/auto-docs/screens/UserPortal/Volunteer/VolunteerManagement/README.md create mode 100644 docs/docs/auto-docs/screens/UserPortal/Volunteer/VolunteerManagement/functions/default.md create mode 100644 docs/docs/auto-docs/screens/Users/Users/README.md create mode 100644 docs/docs/auto-docs/screens/Users/Users/functions/default.md create mode 100644 docs/docs/auto-docs/screens/Users/UsersMocks/README.md create mode 100644 docs/docs/auto-docs/screens/Users/UsersMocks/variables/EMPTY_MOCKS.md create mode 100644 docs/docs/auto-docs/screens/Users/UsersMocks/variables/MOCKS.md create mode 100644 docs/docs/auto-docs/screens/Users/UsersMocks/variables/MOCKS2.md create mode 100644 docs/docs/auto-docs/setup/askAndSetDockerOption/askAndSetDockerOption/README.md create mode 100644 docs/docs/auto-docs/setup/askAndSetDockerOption/askAndSetDockerOption/functions/default.md create mode 100644 docs/docs/auto-docs/setup/askAndUpdatePort/askAndUpdatePort/README.md create mode 100644 docs/docs/auto-docs/setup/askAndUpdatePort/askAndUpdatePort/functions/default.md create mode 100644 docs/docs/auto-docs/setup/askForCustomPort/askForCustomPort/README.md create mode 100644 docs/docs/auto-docs/setup/askForCustomPort/askForCustomPort/functions/askForCustomPort.md create mode 100644 docs/docs/auto-docs/setup/askForCustomPort/askForCustomPort/functions/reservedPortWarning.md create mode 100644 docs/docs/auto-docs/setup/askForCustomPort/askForCustomPort/functions/validatePort.md create mode 100644 docs/docs/auto-docs/setup/askForDocker/askForDocker/README.md create mode 100644 docs/docs/auto-docs/setup/askForDocker/askForDocker/functions/askAndUpdateTalawaApiUrl.md create mode 100644 docs/docs/auto-docs/setup/askForDocker/askForDocker/functions/askForDocker.md create mode 100644 docs/docs/auto-docs/setup/askForTalawaApiUrl/askForTalawaApiUrl/README.md create mode 100644 docs/docs/auto-docs/setup/askForTalawaApiUrl/askForTalawaApiUrl/functions/askForTalawaApiUrl.md create mode 100644 docs/docs/auto-docs/setup/checkConnection/checkConnection/README.md create mode 100644 docs/docs/auto-docs/setup/checkConnection/checkConnection/functions/checkConnection.md create mode 100644 docs/docs/auto-docs/setup/checkEnvFile/checkEnvFile/README.md create mode 100644 docs/docs/auto-docs/setup/checkEnvFile/checkEnvFile/functions/checkEnvFile.md create mode 100644 docs/docs/auto-docs/setup/updateEnvFile/updateEnvFile/README.md create mode 100644 docs/docs/auto-docs/setup/updateEnvFile/updateEnvFile/functions/default.md create mode 100644 docs/docs/auto-docs/setup/validateRecaptcha/validateRecaptcha/README.md create mode 100644 docs/docs/auto-docs/setup/validateRecaptcha/validateRecaptcha/functions/validateRecaptcha.md create mode 100644 docs/docs/auto-docs/setupTests/README.md create mode 100644 docs/docs/auto-docs/state/README.md create mode 100644 docs/docs/auto-docs/state/action-creators/README.md create mode 100644 docs/docs/auto-docs/state/action-creators/functions/installPlugin.md create mode 100644 docs/docs/auto-docs/state/action-creators/functions/removePlugin.md create mode 100644 docs/docs/auto-docs/state/action-creators/functions/updateInstalled.md create mode 100644 docs/docs/auto-docs/state/action-creators/functions/updatePluginLinks.md create mode 100644 docs/docs/auto-docs/state/action-creators/functions/updateTargets.md create mode 100644 docs/docs/auto-docs/state/helpers/Action/README.md create mode 100644 docs/docs/auto-docs/state/helpers/Action/interfaces/InterfaceAction.md create mode 100644 docs/docs/auto-docs/state/hooks/README.md create mode 100644 docs/docs/auto-docs/state/hooks/functions/useAppDispatch.md create mode 100644 docs/docs/auto-docs/state/reducers/README.md create mode 100644 docs/docs/auto-docs/state/reducers/functions/reducers.md create mode 100644 docs/docs/auto-docs/state/reducers/pluginReducer/README.md create mode 100644 docs/docs/auto-docs/state/reducers/pluginReducer/functions/default.md create mode 100644 docs/docs/auto-docs/state/reducers/routesReducer/README.md create mode 100644 docs/docs/auto-docs/state/reducers/routesReducer/functions/default.md create mode 100644 docs/docs/auto-docs/state/reducers/routesReducer/type-aliases/ComponentType.md create mode 100644 docs/docs/auto-docs/state/reducers/routesReducer/type-aliases/SubTargetType.md create mode 100644 docs/docs/auto-docs/state/reducers/routesReducer/type-aliases/TargetsType.md create mode 100644 docs/docs/auto-docs/state/reducers/type-aliases/RootState.md create mode 100644 docs/docs/auto-docs/state/reducers/userRoutesReducer/README.md create mode 100644 docs/docs/auto-docs/state/reducers/userRoutesReducer/functions/default.md create mode 100644 docs/docs/auto-docs/state/reducers/userRoutesReducer/type-aliases/ComponentType.md create mode 100644 docs/docs/auto-docs/state/reducers/userRoutesReducer/type-aliases/SubTargetType.md create mode 100644 docs/docs/auto-docs/state/reducers/userRoutesReducer/type-aliases/TargetsType.md create mode 100644 docs/docs/auto-docs/state/store/README.md create mode 100644 docs/docs/auto-docs/state/store/type-aliases/AppDispatch.md create mode 100644 docs/docs/auto-docs/state/store/variables/store.md create mode 100644 docs/docs/auto-docs/subComponents/SortingButton/README.md create mode 100644 docs/docs/auto-docs/subComponents/SortingButton/functions/default.md create mode 100644 docs/docs/auto-docs/utils/StaticMockLink/README.md create mode 100644 docs/docs/auto-docs/utils/StaticMockLink/classes/StaticMockLink.md create mode 100644 docs/docs/auto-docs/utils/StaticMockLink/functions/mockSingleLink.md create mode 100644 docs/docs/auto-docs/utils/StaticMockLink/interfaces/InterfaceMockApolloLink.md create mode 100644 docs/docs/auto-docs/utils/chartToPdf/README.md create mode 100644 docs/docs/auto-docs/utils/chartToPdf/functions/exportDemographicsToCSV.md create mode 100644 docs/docs/auto-docs/utils/chartToPdf/functions/exportToCSV.md create mode 100644 docs/docs/auto-docs/utils/chartToPdf/functions/exportTrendsToCSV.md create mode 100644 docs/docs/auto-docs/utils/convertToBase64/README.md create mode 100644 docs/docs/auto-docs/utils/convertToBase64/functions/default.md create mode 100644 docs/docs/auto-docs/utils/currency/README.md create mode 100644 docs/docs/auto-docs/utils/currency/variables/currencyOptions.md create mode 100644 docs/docs/auto-docs/utils/currency/variables/currencySymbols.md create mode 100644 docs/docs/auto-docs/utils/dateFormatter/README.md create mode 100644 docs/docs/auto-docs/utils/dateFormatter/functions/formatDate.md create mode 100644 docs/docs/auto-docs/utils/errorHandler/README.md create mode 100644 docs/docs/auto-docs/utils/errorHandler/functions/errorHandler.md create mode 100644 docs/docs/auto-docs/utils/fieldTypes/README.md create mode 100644 docs/docs/auto-docs/utils/fieldTypes/variables/default.md create mode 100644 docs/docs/auto-docs/utils/formEnumFields/README.md create mode 100644 docs/docs/auto-docs/utils/formEnumFields/variables/countryOptions.md create mode 100644 docs/docs/auto-docs/utils/formEnumFields/variables/educationGradeEnum.md create mode 100644 docs/docs/auto-docs/utils/formEnumFields/variables/employmentStatusEnum.md create mode 100644 docs/docs/auto-docs/utils/formEnumFields/variables/genderEnum.md create mode 100644 docs/docs/auto-docs/utils/formEnumFields/variables/maritalStatusEnum.md create mode 100644 docs/docs/auto-docs/utils/formEnumFields/variables/userRoleEnum.md create mode 100644 docs/docs/auto-docs/utils/getOrganizationId/README.md create mode 100644 docs/docs/auto-docs/utils/getOrganizationId/functions/default.md create mode 100644 docs/docs/auto-docs/utils/getRefreshToken/README.md create mode 100644 docs/docs/auto-docs/utils/getRefreshToken/functions/refreshToken.md create mode 100644 docs/docs/auto-docs/utils/i18n/README.md create mode 100644 docs/docs/auto-docs/utils/i18nForTest/README.md create mode 100644 docs/docs/auto-docs/utils/interfaces/README.md create mode 100644 docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceActionItemCategoryInfo.md create mode 100644 docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceActionItemCategoryList.md create mode 100644 docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceActionItemInfo.md create mode 100644 docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceActionItemList.md create mode 100644 docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceAddOnSpotAttendeeProps.md create mode 100644 docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceAddress.md create mode 100644 docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceAgendaItemCategoryInfo.md create mode 100644 docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceAgendaItemCategoryList.md create mode 100644 docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceAgendaItemInfo.md create mode 100644 docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceAgendaItemList.md create mode 100644 docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceBaseEvent.md create mode 100644 docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceCampaignInfo.md create mode 100644 docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceCreateFund.md create mode 100644 docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceCreatePledge.md create mode 100644 docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceCreateVolunteerGroup.md create mode 100644 docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceCustomFieldData.md create mode 100644 docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceEventVolunteerInfo.md create mode 100644 docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceFormData.md create mode 100644 docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceFundInfo.md create mode 100644 docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceMapType.md create mode 100644 docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceMemberInfo.md create mode 100644 docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceMembersList.md create mode 100644 docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceOrgConnectionInfoType.md create mode 100644 docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceOrgConnectionType.md create mode 100644 docs/docs/auto-docs/utils/interfaces/interfaces/InterfacePledgeInfo.md create mode 100644 docs/docs/auto-docs/utils/interfaces/interfaces/InterfacePostCard.md create mode 100644 docs/docs/auto-docs/utils/interfaces/interfaces/InterfacePostForm.md create mode 100644 docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceQueryBlockPageMemberListItem.md create mode 100644 docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceQueryFundCampaignsPledges.md create mode 100644 docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceQueryMembershipRequestsListItem.md create mode 100644 docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceQueryOrganizationAdvertisementListItem.md create mode 100644 docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceQueryOrganizationEventListItem.md create mode 100644 docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceQueryOrganizationFundCampaigns.md create mode 100644 docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceQueryOrganizationListObject.md create mode 100644 docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceQueryOrganizationPostListItem.md create mode 100644 docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceQueryOrganizationUserTags.md create mode 100644 docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceQueryOrganizationsListObject.md create mode 100644 docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceQueryUserListItem.md create mode 100644 docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceQueryUserTagChildTags.md create mode 100644 docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceQueryUserTagsAssignedMembers.md create mode 100644 docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceQueryUserTagsMembersToAssignTo.md create mode 100644 docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceQueryVenueListItem.md create mode 100644 docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceTagData.md create mode 100644 docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceUserCampaign.md create mode 100644 docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceUserEvents.md create mode 100644 docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceUserInfo.md create mode 100644 docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceUserType.md create mode 100644 docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceVolunteerGroupInfo.md create mode 100644 docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceVolunteerMembership.md create mode 100644 docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceVolunteerRank.md create mode 100644 docs/docs/auto-docs/utils/languages/README.md create mode 100644 docs/docs/auto-docs/utils/languages/variables/languageArray.md create mode 100644 docs/docs/auto-docs/utils/languages/variables/languages.md create mode 100644 docs/docs/auto-docs/utils/linkValidator/README.md create mode 100644 docs/docs/auto-docs/utils/linkValidator/functions/isValidLink.md create mode 100644 docs/docs/auto-docs/utils/organizationTagsUtils/README.md create mode 100644 docs/docs/auto-docs/utils/organizationTagsUtils/interfaces/InterfaceOrganizationSubTagsQuery.md create mode 100644 docs/docs/auto-docs/utils/organizationTagsUtils/interfaces/InterfaceOrganizationTagsQuery.md create mode 100644 docs/docs/auto-docs/utils/organizationTagsUtils/interfaces/InterfaceTagAssignedMembersQuery.md create mode 100644 docs/docs/auto-docs/utils/organizationTagsUtils/interfaces/InterfaceTagUsersToAssignToQuery.md create mode 100644 docs/docs/auto-docs/utils/organizationTagsUtils/type-aliases/SortedByType.md create mode 100644 docs/docs/auto-docs/utils/organizationTagsUtils/type-aliases/TagActionType.md create mode 100644 docs/docs/auto-docs/utils/organizationTagsUtils/variables/TAGS_QUERY_DATA_CHUNK_SIZE.md create mode 100644 docs/docs/auto-docs/utils/organizationTagsUtils/variables/dataGridStyle.md create mode 100644 docs/docs/auto-docs/utils/recurrenceUtils/README.md create mode 100644 docs/docs/auto-docs/utils/recurrenceUtils/recurrenceConstants/README.md create mode 100644 docs/docs/auto-docs/utils/recurrenceUtils/recurrenceConstants/variables/Days.md create mode 100644 docs/docs/auto-docs/utils/recurrenceUtils/recurrenceConstants/variables/allInstances.md create mode 100644 docs/docs/auto-docs/utils/recurrenceUtils/recurrenceConstants/variables/dayNames.md create mode 100644 docs/docs/auto-docs/utils/recurrenceUtils/recurrenceConstants/variables/daysOptions.md create mode 100644 docs/docs/auto-docs/utils/recurrenceUtils/recurrenceConstants/variables/endsAfter.md create mode 100644 docs/docs/auto-docs/utils/recurrenceUtils/recurrenceConstants/variables/endsNever.md create mode 100644 docs/docs/auto-docs/utils/recurrenceUtils/recurrenceConstants/variables/endsOn.md create mode 100644 docs/docs/auto-docs/utils/recurrenceUtils/recurrenceConstants/variables/frequencies.md create mode 100644 docs/docs/auto-docs/utils/recurrenceUtils/recurrenceConstants/variables/mondayToFriday.md create mode 100644 docs/docs/auto-docs/utils/recurrenceUtils/recurrenceConstants/variables/monthNames.md create mode 100644 docs/docs/auto-docs/utils/recurrenceUtils/recurrenceConstants/variables/recurrenceEndOptions.md create mode 100644 docs/docs/auto-docs/utils/recurrenceUtils/recurrenceConstants/variables/recurringEventMutationOptions.md create mode 100644 docs/docs/auto-docs/utils/recurrenceUtils/recurrenceConstants/variables/thisAndFollowingInstances.md create mode 100644 docs/docs/auto-docs/utils/recurrenceUtils/recurrenceConstants/variables/thisInstance.md create mode 100644 docs/docs/auto-docs/utils/recurrenceUtils/recurrenceConstants/variables/weekDayOccurences.md create mode 100644 docs/docs/auto-docs/utils/recurrenceUtils/recurrenceTypes/README.md create mode 100644 docs/docs/auto-docs/utils/recurrenceUtils/recurrenceTypes/enumerations/Frequency.md create mode 100644 docs/docs/auto-docs/utils/recurrenceUtils/recurrenceTypes/enumerations/RecurrenceEndOption.md create mode 100644 docs/docs/auto-docs/utils/recurrenceUtils/recurrenceTypes/enumerations/RecurringEventMutationType.md create mode 100644 docs/docs/auto-docs/utils/recurrenceUtils/recurrenceTypes/enumerations/WeekDays.md create mode 100644 docs/docs/auto-docs/utils/recurrenceUtils/recurrenceTypes/interfaces/InterfaceRecurrenceRule.md create mode 100644 docs/docs/auto-docs/utils/recurrenceUtils/recurrenceTypes/interfaces/InterfaceRecurrenceRuleState.md create mode 100644 docs/docs/auto-docs/utils/recurrenceUtils/recurrenceUtilityFunctions/README.md create mode 100644 docs/docs/auto-docs/utils/recurrenceUtils/recurrenceUtilityFunctions/functions/getRecurrenceRuleText.md create mode 100644 docs/docs/auto-docs/utils/recurrenceUtils/recurrenceUtilityFunctions/functions/getWeekDayOccurenceInMonth.md create mode 100644 docs/docs/auto-docs/utils/recurrenceUtils/recurrenceUtilityFunctions/functions/hasRecurrenceRuleChanged.md create mode 100644 docs/docs/auto-docs/utils/recurrenceUtils/recurrenceUtilityFunctions/functions/haveInstanceDatesChanged.md create mode 100644 docs/docs/auto-docs/utils/recurrenceUtils/recurrenceUtilityFunctions/functions/isLastOccurenceOfWeekDay.md create mode 100644 docs/docs/auto-docs/utils/timezoneUtils/README.md create mode 100644 docs/docs/auto-docs/utils/timezoneUtils/dateTimeConfig/README.md create mode 100644 docs/docs/auto-docs/utils/timezoneUtils/dateTimeConfig/variables/dateTimeFields.md create mode 100644 docs/docs/auto-docs/utils/timezoneUtils/dateTimeMiddleware/README.md create mode 100644 docs/docs/auto-docs/utils/timezoneUtils/dateTimeMiddleware/variables/requestMiddleware.md create mode 100644 docs/docs/auto-docs/utils/timezoneUtils/dateTimeMiddleware/variables/responseMiddleware.md create mode 100644 docs/docs/auto-docs/utils/useLocalstorage/README.md create mode 100644 docs/docs/auto-docs/utils/useLocalstorage/functions/getItem.md create mode 100644 docs/docs/auto-docs/utils/useLocalstorage/functions/getStorageKey.md create mode 100644 docs/docs/auto-docs/utils/useLocalstorage/functions/removeItem.md create mode 100644 docs/docs/auto-docs/utils/useLocalstorage/functions/setItem.md create mode 100644 docs/docs/auto-docs/utils/useLocalstorage/functions/useLocalStorage.md create mode 100644 docs/docs/auto-docs/utils/useSession/README.md create mode 100644 docs/docs/auto-docs/utils/useSession/functions/default.md create mode 100644 docs/docs/auto-docs/vite-env/README.md create mode 100644 tsconfig.docs.json diff --git a/.github/workflows/pull-request.yml b/.github/workflows/pull-request.yml index 3f0aaab286..c0d4be7e59 100644 --- a/.github/workflows/pull-request.yml +++ b/.github/workflows/pull-request.yml @@ -448,92 +448,4 @@ jobs: env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} PR_NUMBER: ${{ github.event.pull_request.number }} - GITHUB_REPOSITORY: ${{ github.repository }} - - generate-docs: - name: Generate Auto Documentation - permissions: - contents: write - - runs-on: ubuntu-latest - needs: [Code-Quality-Checks, Test-Application, Start-App-Without-Docker, Docker-Start-Check] - - steps: - # Step 1: Checkout the code - - name: Checkout Code - uses: actions/checkout@v4 - with: - repository: ${{ github.event.pull_request.head.repo.full_name }} - ref: ${{ github.event.pull_request.head.ref }} - fetch-depth: 0 - token: ${{ secrets.GITHUB_TOKEN }} - - # Step 2: Setup Node.js environment - - name: Setup Node.js - uses: actions/setup-node@v4 - with: - node-version: '22.x' - cache: 'npm' - - # Step 3: Install dependencies - - name: Install Dependencies - run: | - npm ci - npm install -g typedoc typedoc-plugin-markdown - - # Step 4: Generate Documentation - - name: Generate Documentation - run: | - typedoc \ - --out docs/docs/auto-docs \ - --plugin typedoc-plugin-markdown \ - --theme markdown \ - --tsconfig tsconfig.json \ - --excludePrivate \ - --excludeProtected \ - --excludeExternals \ - --hideGenerator \ - --categorizeByGroup true \ - --entryPointStrategy expand \ - --entryPoints "src/**/*.ts" "src/**/*.tsx" \ - --exclude "**/*.{test,spec,stories}.{ts,tsx}" \ - --exclude "**/__tests__/**" \ - --exclude "**/__mocks__/**" \ - --exclude "**/node_modules/**" \ - --cleanOutputDir true - - # Step 5: Create placeholder documentation (only if not present) - - name: Create Placeholder Documentation - run: | - mkdir -p docs/docs/user-guide - mkdir -p docs/docs/developer-guide/reference - if [ ! -f docs/docs/user-guide/intro.md ]; then - echo "# User Guide\n\nThis section contains the user guide for Talawa Admin." > docs/docs/user-guide/intro.md - fi - if [ ! -f docs/docs/developer-guide/intro.md ]; then - echo "# Developer Guide\n\nThis section contains the developer guide for Talawa Admin." > docs/docs/developer-guide/intro.md - fi - if [ ! -f docs/docs/developer-guide/reference/README.md ]; then - echo "# API Reference\n\nThis section contains the auto-generated API documentation for Talawa Admin." > docs/docs/developer-guide/reference/README.md - fi - - # Step 6: Commit Documentation Changes - - name: Commit Documentation Changes - env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - run: | - git config user.name "github-actions[bot]" - git config user.email "41898282+github-actions[bot]@users.noreply.github.com" - git remote set-url origin "https://x-access-token:${GITHUB_TOKEN}@github.com/${{ github.event.pull_request.head.repo.full_name }}.git" - git fetch origin ${{ github.event.pull_request.head.ref }} - git checkout ${{ github.event.pull_request.head.ref }} - git add docs/docs/auto-docs/ - git add docs/docs/developer-guide/ - git add docs/docs/user-guide/ - if [ -n "$(git status --porcelain)" ]; then - git commit -m "docs: update auto-generated documentation [skip ci]" - git push origin HEAD:${{ github.event.pull_request.head.ref }} - else - echo "No changes to commit." - fi - + GITHUB_REPOSITORY: ${{ github.repository }} \ No newline at end of file diff --git a/.husky/pre-commit b/.husky/pre-commit index 8a0ce26aa2..c0ad7c1e85 100755 --- a/.husky/pre-commit +++ b/.husky/pre-commit @@ -1,4 +1,5 @@ +npm run generate-docs npm run format:fix # npm run lint:fix npm run lint-staged diff --git a/docs/docs/auto-docs/.gitignore b/docs/docs/auto-docs/.gitignore deleted file mode 100644 index e69de29bb2..0000000000 diff --git a/docs/docs/auto-docs/App/README.md b/docs/docs/auto-docs/App/README.md new file mode 100644 index 0000000000..9e85ae6693 --- /dev/null +++ b/docs/docs/auto-docs/App/README.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../README.md) + +*** + +[talawa-admin](../modules.md) / App + +# App + +## Functions + +- [default](functions/default.md) diff --git a/docs/docs/auto-docs/App/functions/default.md b/docs/docs/auto-docs/App/functions/default.md new file mode 100644 index 0000000000..e3736aae90 --- /dev/null +++ b/docs/docs/auto-docs/App/functions/default.md @@ -0,0 +1,30 @@ +[**talawa-admin**](../../README.md) + +*** + +[talawa-admin](../../modules.md) / [App](../README.md) / default + +# Function: default() + +> **default**(): `JSX.Element` + +Defined in: [src/App.tsx:74](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/App.tsx#L74) + +This is the main function for our application. It sets up all the routes and components, +defining how the user can navigate through the app. The function uses React Router's `Routes` +and `Route` components to map different URL paths to corresponding screens and components. + +## Important Details +- **UseEffect Hook**: This hook checks user authentication status using the `CHECK_AUTH` GraphQL query. +- **Plugins**: It dynamically loads additional routes for any installed plugins. +- **Routes**: + - The root route ("/") takes the user to the `LoginPage`. + - Protected routes are wrapped with the `SecuredRoute` component to ensure they are only accessible to authenticated users. + - Admin and Super Admin routes allow access to organization and user management screens. + - User portal routes allow end-users to interact with organizations, settings, chat, events, etc. + +## Returns + +`JSX.Element` + +The rendered routes and components of the application. diff --git a/docs/docs/auto-docs/Constant/constant/README.md b/docs/docs/auto-docs/Constant/constant/README.md new file mode 100644 index 0000000000..db1085e257 --- /dev/null +++ b/docs/docs/auto-docs/Constant/constant/README.md @@ -0,0 +1,16 @@ +[**talawa-admin**](../../README.md) + +*** + +[talawa-admin](../../modules.md) / Constant/constant + +# Constant/constant + +## Variables + +- [AUTH\_TOKEN](variables/AUTH_TOKEN.md) +- [BACKEND\_URL](variables/BACKEND_URL.md) +- [REACT\_APP\_BACKEND\_WEBSOCKET\_URL](variables/REACT_APP_BACKEND_WEBSOCKET_URL.md) +- [REACT\_APP\_CUSTOM\_PORT](variables/REACT_APP_CUSTOM_PORT.md) +- [REACT\_APP\_USE\_RECAPTCHA](variables/REACT_APP_USE_RECAPTCHA.md) +- [RECAPTCHA\_SITE\_KEY](variables/RECAPTCHA_SITE_KEY.md) diff --git a/docs/docs/auto-docs/Constant/constant/variables/AUTH_TOKEN.md b/docs/docs/auto-docs/Constant/constant/variables/AUTH_TOKEN.md new file mode 100644 index 0000000000..d8c53b97f5 --- /dev/null +++ b/docs/docs/auto-docs/Constant/constant/variables/AUTH_TOKEN.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / [Constant/constant](../README.md) / AUTH\_TOKEN + +# Variable: AUTH\_TOKEN + +> `const` **AUTH\_TOKEN**: `""` = `''` + +Defined in: [src/Constant/constant.ts:1](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/Constant/constant.ts#L1) diff --git a/docs/docs/auto-docs/Constant/constant/variables/BACKEND_URL.md b/docs/docs/auto-docs/Constant/constant/variables/BACKEND_URL.md new file mode 100644 index 0000000000..c2525d9ef8 --- /dev/null +++ b/docs/docs/auto-docs/Constant/constant/variables/BACKEND_URL.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / [Constant/constant](../README.md) / BACKEND\_URL + +# Variable: BACKEND\_URL + +> `const` **BACKEND\_URL**: `string` = `process.env.REACT_APP_TALAWA_URL` + +Defined in: [src/Constant/constant.ts:2](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/Constant/constant.ts#L2) diff --git a/docs/docs/auto-docs/Constant/constant/variables/REACT_APP_BACKEND_WEBSOCKET_URL.md b/docs/docs/auto-docs/Constant/constant/variables/REACT_APP_BACKEND_WEBSOCKET_URL.md new file mode 100644 index 0000000000..6e5fb458a6 --- /dev/null +++ b/docs/docs/auto-docs/Constant/constant/variables/REACT_APP_BACKEND_WEBSOCKET_URL.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / [Constant/constant](../README.md) / REACT\_APP\_BACKEND\_WEBSOCKET\_URL + +# Variable: REACT\_APP\_BACKEND\_WEBSOCKET\_URL + +> `const` **REACT\_APP\_BACKEND\_WEBSOCKET\_URL**: `string` + +Defined in: [src/Constant/constant.ts:6](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/Constant/constant.ts#L6) diff --git a/docs/docs/auto-docs/Constant/constant/variables/REACT_APP_CUSTOM_PORT.md b/docs/docs/auto-docs/Constant/constant/variables/REACT_APP_CUSTOM_PORT.md new file mode 100644 index 0000000000..b4f9fd6fa7 --- /dev/null +++ b/docs/docs/auto-docs/Constant/constant/variables/REACT_APP_CUSTOM_PORT.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / [Constant/constant](../README.md) / REACT\_APP\_CUSTOM\_PORT + +# Variable: REACT\_APP\_CUSTOM\_PORT + +> `const` **REACT\_APP\_CUSTOM\_PORT**: `string` = `process.env.PORT` + +Defined in: [src/Constant/constant.ts:5](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/Constant/constant.ts#L5) diff --git a/docs/docs/auto-docs/Constant/constant/variables/REACT_APP_USE_RECAPTCHA.md b/docs/docs/auto-docs/Constant/constant/variables/REACT_APP_USE_RECAPTCHA.md new file mode 100644 index 0000000000..ff2fc2cf2a --- /dev/null +++ b/docs/docs/auto-docs/Constant/constant/variables/REACT_APP_USE_RECAPTCHA.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / [Constant/constant](../README.md) / REACT\_APP\_USE\_RECAPTCHA + +# Variable: REACT\_APP\_USE\_RECAPTCHA + +> `const` **REACT\_APP\_USE\_RECAPTCHA**: `string` = `process.env.REACT_APP_USE_RECAPTCHA` + +Defined in: [src/Constant/constant.ts:4](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/Constant/constant.ts#L4) diff --git a/docs/docs/auto-docs/Constant/constant/variables/RECAPTCHA_SITE_KEY.md b/docs/docs/auto-docs/Constant/constant/variables/RECAPTCHA_SITE_KEY.md new file mode 100644 index 0000000000..39c5097780 --- /dev/null +++ b/docs/docs/auto-docs/Constant/constant/variables/RECAPTCHA_SITE_KEY.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / [Constant/constant](../README.md) / RECAPTCHA\_SITE\_KEY + +# Variable: RECAPTCHA\_SITE\_KEY + +> `const` **RECAPTCHA\_SITE\_KEY**: `string` = `process.env.REACT_APP_RECAPTCHA_SITE_KEY` + +Defined in: [src/Constant/constant.ts:3](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/Constant/constant.ts#L3) diff --git a/docs/docs/auto-docs/GraphQl/Mutations/ActionItemCategoryMutations/README.md b/docs/docs/auto-docs/GraphQl/Mutations/ActionItemCategoryMutations/README.md new file mode 100644 index 0000000000..7a45a9c28a --- /dev/null +++ b/docs/docs/auto-docs/GraphQl/Mutations/ActionItemCategoryMutations/README.md @@ -0,0 +1,12 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / GraphQl/Mutations/ActionItemCategoryMutations + +# GraphQl/Mutations/ActionItemCategoryMutations + +## Variables + +- [CREATE\_ACTION\_ITEM\_CATEGORY\_MUTATION](variables/CREATE_ACTION_ITEM_CATEGORY_MUTATION.md) +- [UPDATE\_ACTION\_ITEM\_CATEGORY\_MUTATION](variables/UPDATE_ACTION_ITEM_CATEGORY_MUTATION.md) diff --git a/docs/docs/auto-docs/GraphQl/Mutations/ActionItemCategoryMutations/variables/CREATE_ACTION_ITEM_CATEGORY_MUTATION.md b/docs/docs/auto-docs/GraphQl/Mutations/ActionItemCategoryMutations/variables/CREATE_ACTION_ITEM_CATEGORY_MUTATION.md new file mode 100644 index 0000000000..c6bbddc2ad --- /dev/null +++ b/docs/docs/auto-docs/GraphQl/Mutations/ActionItemCategoryMutations/variables/CREATE_ACTION_ITEM_CATEGORY_MUTATION.md @@ -0,0 +1,25 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [GraphQl/Mutations/ActionItemCategoryMutations](../README.md) / CREATE\_ACTION\_ITEM\_CATEGORY\_MUTATION + +# Variable: CREATE\_ACTION\_ITEM\_CATEGORY\_MUTATION + +> `const` **CREATE\_ACTION\_ITEM\_CATEGORY\_MUTATION**: `DocumentNode` + +Defined in: [src/GraphQl/Mutations/ActionItemCategoryMutations.ts:11](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/GraphQl/Mutations/ActionItemCategoryMutations.ts#L11) + +GraphQL mutation to create an action item category. + +## Param + +Name of the ActionItemCategory. + +## Param + +Disabled status of the ActionItemCategory. + +## Param + +Organization to which the ActionItemCategory belongs. diff --git a/docs/docs/auto-docs/GraphQl/Mutations/ActionItemCategoryMutations/variables/UPDATE_ACTION_ITEM_CATEGORY_MUTATION.md b/docs/docs/auto-docs/GraphQl/Mutations/ActionItemCategoryMutations/variables/UPDATE_ACTION_ITEM_CATEGORY_MUTATION.md new file mode 100644 index 0000000000..f034fb9763 --- /dev/null +++ b/docs/docs/auto-docs/GraphQl/Mutations/ActionItemCategoryMutations/variables/UPDATE_ACTION_ITEM_CATEGORY_MUTATION.md @@ -0,0 +1,25 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [GraphQl/Mutations/ActionItemCategoryMutations](../README.md) / UPDATE\_ACTION\_ITEM\_CATEGORY\_MUTATION + +# Variable: UPDATE\_ACTION\_ITEM\_CATEGORY\_MUTATION + +> `const` **UPDATE\_ACTION\_ITEM\_CATEGORY\_MUTATION**: `DocumentNode` + +Defined in: [src/GraphQl/Mutations/ActionItemCategoryMutations.ts:35](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/GraphQl/Mutations/ActionItemCategoryMutations.ts#L35) + +GraphQL mutation to update an action item category. + +## Param + +The id of the ActionItemCategory to be updated. + +## Param + +Updated name of the ActionItemCategory. + +## Param + +Updated disabled status of the ActionItemCategory. diff --git a/docs/docs/auto-docs/GraphQl/Mutations/ActionItemMutations/README.md b/docs/docs/auto-docs/GraphQl/Mutations/ActionItemMutations/README.md new file mode 100644 index 0000000000..999442ffe6 --- /dev/null +++ b/docs/docs/auto-docs/GraphQl/Mutations/ActionItemMutations/README.md @@ -0,0 +1,13 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / GraphQl/Mutations/ActionItemMutations + +# GraphQl/Mutations/ActionItemMutations + +## Variables + +- [CREATE\_ACTION\_ITEM\_MUTATION](variables/CREATE_ACTION_ITEM_MUTATION.md) +- [DELETE\_ACTION\_ITEM\_MUTATION](variables/DELETE_ACTION_ITEM_MUTATION.md) +- [UPDATE\_ACTION\_ITEM\_MUTATION](variables/UPDATE_ACTION_ITEM_MUTATION.md) diff --git a/docs/docs/auto-docs/GraphQl/Mutations/ActionItemMutations/variables/CREATE_ACTION_ITEM_MUTATION.md b/docs/docs/auto-docs/GraphQl/Mutations/ActionItemMutations/variables/CREATE_ACTION_ITEM_MUTATION.md new file mode 100644 index 0000000000..dcb8f69999 --- /dev/null +++ b/docs/docs/auto-docs/GraphQl/Mutations/ActionItemMutations/variables/CREATE_ACTION_ITEM_MUTATION.md @@ -0,0 +1,37 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [GraphQl/Mutations/ActionItemMutations](../README.md) / CREATE\_ACTION\_ITEM\_MUTATION + +# Variable: CREATE\_ACTION\_ITEM\_MUTATION + +> `const` **CREATE\_ACTION\_ITEM\_MUTATION**: `DocumentNode` + +Defined in: [src/GraphQl/Mutations/ActionItemMutations.ts:14](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/GraphQl/Mutations/ActionItemMutations.ts#L14) + +GraphQL mutation to create an action item. + +## Param + +ActionItemCategory to which the ActionItem is related. + +## Param + +User to whom the ActionItem is assigned. + +## Param + +Notes prior to completion. + +## Param + +Due date. + +## Param + +Event to which the ActionItem is related. + +## Param + +Hours allotted for the ActionItem. diff --git a/docs/docs/auto-docs/GraphQl/Mutations/ActionItemMutations/variables/DELETE_ACTION_ITEM_MUTATION.md b/docs/docs/auto-docs/GraphQl/Mutations/ActionItemMutations/variables/DELETE_ACTION_ITEM_MUTATION.md new file mode 100644 index 0000000000..6818853ac7 --- /dev/null +++ b/docs/docs/auto-docs/GraphQl/Mutations/ActionItemMutations/variables/DELETE_ACTION_ITEM_MUTATION.md @@ -0,0 +1,17 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [GraphQl/Mutations/ActionItemMutations](../README.md) / DELETE\_ACTION\_ITEM\_MUTATION + +# Variable: DELETE\_ACTION\_ITEM\_MUTATION + +> `const` **DELETE\_ACTION\_ITEM\_MUTATION**: `DocumentNode` + +Defined in: [src/GraphQl/Mutations/ActionItemMutations.ts:88](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/GraphQl/Mutations/ActionItemMutations.ts#L88) + +GraphQL mutation to delete an action item. + +## Param + +Id of the ActionItem to be updated. diff --git a/docs/docs/auto-docs/GraphQl/Mutations/ActionItemMutations/variables/UPDATE_ACTION_ITEM_MUTATION.md b/docs/docs/auto-docs/GraphQl/Mutations/ActionItemMutations/variables/UPDATE_ACTION_ITEM_MUTATION.md new file mode 100644 index 0000000000..8919c47ab4 --- /dev/null +++ b/docs/docs/auto-docs/GraphQl/Mutations/ActionItemMutations/variables/UPDATE_ACTION_ITEM_MUTATION.md @@ -0,0 +1,41 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [GraphQl/Mutations/ActionItemMutations](../README.md) / UPDATE\_ACTION\_ITEM\_MUTATION + +# Variable: UPDATE\_ACTION\_ITEM\_MUTATION + +> `const` **UPDATE\_ACTION\_ITEM\_MUTATION**: `DocumentNode` + +Defined in: [src/GraphQl/Mutations/ActionItemMutations.ts:52](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/GraphQl/Mutations/ActionItemMutations.ts#L52) + +GraphQL mutation to update an action item. + +## Param + +Id of the ActionItem to be updated. + +## Param + +User to whom the ActionItem is assigned. + +## Param + +Notes prior to completion. + +## Param + +Notes on completion. + +## Param + +Due date. + +## Param + +Completion date. + +## Param + +Whether the ActionItem has been completed. diff --git a/docs/docs/auto-docs/GraphQl/Mutations/AgendaCategoryMutations/README.md b/docs/docs/auto-docs/GraphQl/Mutations/AgendaCategoryMutations/README.md new file mode 100644 index 0000000000..73883a2355 --- /dev/null +++ b/docs/docs/auto-docs/GraphQl/Mutations/AgendaCategoryMutations/README.md @@ -0,0 +1,13 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / GraphQl/Mutations/AgendaCategoryMutations + +# GraphQl/Mutations/AgendaCategoryMutations + +## Variables + +- [CREATE\_AGENDA\_ITEM\_CATEGORY\_MUTATION](variables/CREATE_AGENDA_ITEM_CATEGORY_MUTATION.md) +- [DELETE\_AGENDA\_ITEM\_CATEGORY\_MUTATION](variables/DELETE_AGENDA_ITEM_CATEGORY_MUTATION.md) +- [UPDATE\_AGENDA\_ITEM\_CATEGORY\_MUTATION](variables/UPDATE_AGENDA_ITEM_CATEGORY_MUTATION.md) diff --git a/docs/docs/auto-docs/GraphQl/Mutations/AgendaCategoryMutations/variables/CREATE_AGENDA_ITEM_CATEGORY_MUTATION.md b/docs/docs/auto-docs/GraphQl/Mutations/AgendaCategoryMutations/variables/CREATE_AGENDA_ITEM_CATEGORY_MUTATION.md new file mode 100644 index 0000000000..63a322fa5e --- /dev/null +++ b/docs/docs/auto-docs/GraphQl/Mutations/AgendaCategoryMutations/variables/CREATE_AGENDA_ITEM_CATEGORY_MUTATION.md @@ -0,0 +1,17 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [GraphQl/Mutations/AgendaCategoryMutations](../README.md) / CREATE\_AGENDA\_ITEM\_CATEGORY\_MUTATION + +# Variable: CREATE\_AGENDA\_ITEM\_CATEGORY\_MUTATION + +> `const` **CREATE\_AGENDA\_ITEM\_CATEGORY\_MUTATION**: `DocumentNode` + +Defined in: [src/GraphQl/Mutations/AgendaCategoryMutations.ts:9](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/GraphQl/Mutations/AgendaCategoryMutations.ts#L9) + +GraphQL mutation to create an agenda category. + +## Param + +Name, Description, OrganizationID of the AgendaCategory. diff --git a/docs/docs/auto-docs/GraphQl/Mutations/AgendaCategoryMutations/variables/DELETE_AGENDA_ITEM_CATEGORY_MUTATION.md b/docs/docs/auto-docs/GraphQl/Mutations/AgendaCategoryMutations/variables/DELETE_AGENDA_ITEM_CATEGORY_MUTATION.md new file mode 100644 index 0000000000..1254947927 --- /dev/null +++ b/docs/docs/auto-docs/GraphQl/Mutations/AgendaCategoryMutations/variables/DELETE_AGENDA_ITEM_CATEGORY_MUTATION.md @@ -0,0 +1,17 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [GraphQl/Mutations/AgendaCategoryMutations](../README.md) / DELETE\_AGENDA\_ITEM\_CATEGORY\_MUTATION + +# Variable: DELETE\_AGENDA\_ITEM\_CATEGORY\_MUTATION + +> `const` **DELETE\_AGENDA\_ITEM\_CATEGORY\_MUTATION**: `DocumentNode` + +Defined in: [src/GraphQl/Mutations/AgendaCategoryMutations.ts:23](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/GraphQl/Mutations/AgendaCategoryMutations.ts#L23) + +GraphQL mutation to delete an agenda category. + +## Param + +The ID of the AgendaCategory to be deleted. diff --git a/docs/docs/auto-docs/GraphQl/Mutations/AgendaCategoryMutations/variables/UPDATE_AGENDA_ITEM_CATEGORY_MUTATION.md b/docs/docs/auto-docs/GraphQl/Mutations/AgendaCategoryMutations/variables/UPDATE_AGENDA_ITEM_CATEGORY_MUTATION.md new file mode 100644 index 0000000000..f1fcea8a9c --- /dev/null +++ b/docs/docs/auto-docs/GraphQl/Mutations/AgendaCategoryMutations/variables/UPDATE_AGENDA_ITEM_CATEGORY_MUTATION.md @@ -0,0 +1,21 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [GraphQl/Mutations/AgendaCategoryMutations](../README.md) / UPDATE\_AGENDA\_ITEM\_CATEGORY\_MUTATION + +# Variable: UPDATE\_AGENDA\_ITEM\_CATEGORY\_MUTATION + +> `const` **UPDATE\_AGENDA\_ITEM\_CATEGORY\_MUTATION**: `DocumentNode` + +Defined in: [src/GraphQl/Mutations/AgendaCategoryMutations.ts:36](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/GraphQl/Mutations/AgendaCategoryMutations.ts#L36) + +GraphQL mutation to update an agenda category. + +## Param + +The ID of the AgendaCategory to be updated. + +## Param + +Updated Name, Description, OrganizationID of the AgendaCategory. diff --git a/docs/docs/auto-docs/GraphQl/Mutations/AgendaItemMutations/README.md b/docs/docs/auto-docs/GraphQl/Mutations/AgendaItemMutations/README.md new file mode 100644 index 0000000000..2613bd3cdb --- /dev/null +++ b/docs/docs/auto-docs/GraphQl/Mutations/AgendaItemMutations/README.md @@ -0,0 +1,13 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / GraphQl/Mutations/AgendaItemMutations + +# GraphQl/Mutations/AgendaItemMutations + +## Variables + +- [CREATE\_AGENDA\_ITEM\_MUTATION](variables/CREATE_AGENDA_ITEM_MUTATION.md) +- [DELETE\_AGENDA\_ITEM\_MUTATION](variables/DELETE_AGENDA_ITEM_MUTATION.md) +- [UPDATE\_AGENDA\_ITEM\_MUTATION](variables/UPDATE_AGENDA_ITEM_MUTATION.md) diff --git a/docs/docs/auto-docs/GraphQl/Mutations/AgendaItemMutations/variables/CREATE_AGENDA_ITEM_MUTATION.md b/docs/docs/auto-docs/GraphQl/Mutations/AgendaItemMutations/variables/CREATE_AGENDA_ITEM_MUTATION.md new file mode 100644 index 0000000000..9ceca1b551 --- /dev/null +++ b/docs/docs/auto-docs/GraphQl/Mutations/AgendaItemMutations/variables/CREATE_AGENDA_ITEM_MUTATION.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [GraphQl/Mutations/AgendaItemMutations](../README.md) / CREATE\_AGENDA\_ITEM\_MUTATION + +# Variable: CREATE\_AGENDA\_ITEM\_MUTATION + +> `const` **CREATE\_AGENDA\_ITEM\_MUTATION**: `DocumentNode` + +Defined in: [src/GraphQl/Mutations/AgendaItemMutations.ts:3](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/GraphQl/Mutations/AgendaItemMutations.ts#L3) diff --git a/docs/docs/auto-docs/GraphQl/Mutations/AgendaItemMutations/variables/DELETE_AGENDA_ITEM_MUTATION.md b/docs/docs/auto-docs/GraphQl/Mutations/AgendaItemMutations/variables/DELETE_AGENDA_ITEM_MUTATION.md new file mode 100644 index 0000000000..e3d064d060 --- /dev/null +++ b/docs/docs/auto-docs/GraphQl/Mutations/AgendaItemMutations/variables/DELETE_AGENDA_ITEM_MUTATION.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [GraphQl/Mutations/AgendaItemMutations](../README.md) / DELETE\_AGENDA\_ITEM\_MUTATION + +# Variable: DELETE\_AGENDA\_ITEM\_MUTATION + +> `const` **DELETE\_AGENDA\_ITEM\_MUTATION**: `DocumentNode` + +Defined in: [src/GraphQl/Mutations/AgendaItemMutations.ts:12](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/GraphQl/Mutations/AgendaItemMutations.ts#L12) diff --git a/docs/docs/auto-docs/GraphQl/Mutations/AgendaItemMutations/variables/UPDATE_AGENDA_ITEM_MUTATION.md b/docs/docs/auto-docs/GraphQl/Mutations/AgendaItemMutations/variables/UPDATE_AGENDA_ITEM_MUTATION.md new file mode 100644 index 0000000000..639914e569 --- /dev/null +++ b/docs/docs/auto-docs/GraphQl/Mutations/AgendaItemMutations/variables/UPDATE_AGENDA_ITEM_MUTATION.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [GraphQl/Mutations/AgendaItemMutations](../README.md) / UPDATE\_AGENDA\_ITEM\_MUTATION + +# Variable: UPDATE\_AGENDA\_ITEM\_MUTATION + +> `const` **UPDATE\_AGENDA\_ITEM\_MUTATION**: `DocumentNode` + +Defined in: [src/GraphQl/Mutations/AgendaItemMutations.ts:20](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/GraphQl/Mutations/AgendaItemMutations.ts#L20) diff --git a/docs/docs/auto-docs/GraphQl/Mutations/CampaignMutation/README.md b/docs/docs/auto-docs/GraphQl/Mutations/CampaignMutation/README.md new file mode 100644 index 0000000000..0927d577f0 --- /dev/null +++ b/docs/docs/auto-docs/GraphQl/Mutations/CampaignMutation/README.md @@ -0,0 +1,12 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / GraphQl/Mutations/CampaignMutation + +# GraphQl/Mutations/CampaignMutation + +## Variables + +- [CREATE\_CAMPAIGN\_MUTATION](variables/CREATE_CAMPAIGN_MUTATION.md) +- [UPDATE\_CAMPAIGN\_MUTATION](variables/UPDATE_CAMPAIGN_MUTATION.md) diff --git a/docs/docs/auto-docs/GraphQl/Mutations/CampaignMutation/variables/CREATE_CAMPAIGN_MUTATION.md b/docs/docs/auto-docs/GraphQl/Mutations/CampaignMutation/variables/CREATE_CAMPAIGN_MUTATION.md new file mode 100644 index 0000000000..84120c38d2 --- /dev/null +++ b/docs/docs/auto-docs/GraphQl/Mutations/CampaignMutation/variables/CREATE_CAMPAIGN_MUTATION.md @@ -0,0 +1,41 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [GraphQl/Mutations/CampaignMutation](../README.md) / CREATE\_CAMPAIGN\_MUTATION + +# Variable: CREATE\_CAMPAIGN\_MUTATION + +> `const` **CREATE\_CAMPAIGN\_MUTATION**: `DocumentNode` + +Defined in: [src/GraphQl/Mutations/CampaignMutation.ts:15](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/GraphQl/Mutations/CampaignMutation.ts#L15) + +GraphQL mutation to create a new fund Campaign. + +## Param + +The name of the fund. + +## Param + +The fund ID the campaign is associated with. + +## Param + +The funding goal of the campaign. + +## Param + +The start date of the campaign. + +## Param + +The end date of the campaign. + +## Param + +The currency of the campaign. + +## Returns + +The ID of the created campaign. diff --git a/docs/docs/auto-docs/GraphQl/Mutations/CampaignMutation/variables/UPDATE_CAMPAIGN_MUTATION.md b/docs/docs/auto-docs/GraphQl/Mutations/CampaignMutation/variables/UPDATE_CAMPAIGN_MUTATION.md new file mode 100644 index 0000000000..e6d1c22145 --- /dev/null +++ b/docs/docs/auto-docs/GraphQl/Mutations/CampaignMutation/variables/UPDATE_CAMPAIGN_MUTATION.md @@ -0,0 +1,41 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [GraphQl/Mutations/CampaignMutation](../README.md) / UPDATE\_CAMPAIGN\_MUTATION + +# Variable: UPDATE\_CAMPAIGN\_MUTATION + +> `const` **UPDATE\_CAMPAIGN\_MUTATION**: `DocumentNode` + +Defined in: [src/GraphQl/Mutations/CampaignMutation.ts:53](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/GraphQl/Mutations/CampaignMutation.ts#L53) + +GraphQL mutation to update a fund Campaign. + +## Param + +The ID of the campaign being updated. + +## Param + +The name of the campaign. + +## Param + +The funding goal of the campaign. + +## Param + +The start date of the campaign. + +## Param + +The end date of the campaign. + +## Param + +The currency of the campaign. + +## Returns + +The ID of the updated campaign. diff --git a/docs/docs/auto-docs/GraphQl/Mutations/CommentMutations/README.md b/docs/docs/auto-docs/GraphQl/Mutations/CommentMutations/README.md new file mode 100644 index 0000000000..ca74abe9d3 --- /dev/null +++ b/docs/docs/auto-docs/GraphQl/Mutations/CommentMutations/README.md @@ -0,0 +1,13 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / GraphQl/Mutations/CommentMutations + +# GraphQl/Mutations/CommentMutations + +## Variables + +- [CREATE\_COMMENT\_POST](variables/CREATE_COMMENT_POST.md) +- [LIKE\_COMMENT](variables/LIKE_COMMENT.md) +- [UNLIKE\_COMMENT](variables/UNLIKE_COMMENT.md) diff --git a/docs/docs/auto-docs/GraphQl/Mutations/CommentMutations/variables/CREATE_COMMENT_POST.md b/docs/docs/auto-docs/GraphQl/Mutations/CommentMutations/variables/CREATE_COMMENT_POST.md new file mode 100644 index 0000000000..58069361e8 --- /dev/null +++ b/docs/docs/auto-docs/GraphQl/Mutations/CommentMutations/variables/CREATE_COMMENT_POST.md @@ -0,0 +1,25 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [GraphQl/Mutations/CommentMutations](../README.md) / CREATE\_COMMENT\_POST + +# Variable: CREATE\_COMMENT\_POST + +> `const` **CREATE\_COMMENT\_POST**: `DocumentNode` + +Defined in: [src/GraphQl/Mutations/CommentMutations.ts:11](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/GraphQl/Mutations/CommentMutations.ts#L11) + +GraphQL mutation to create a new comment on a post. + +## Param + +The text content of the comment. + +## Param + +The ID of the post to which the comment is being added. + +## Returns + +The created comment object. diff --git a/docs/docs/auto-docs/GraphQl/Mutations/CommentMutations/variables/LIKE_COMMENT.md b/docs/docs/auto-docs/GraphQl/Mutations/CommentMutations/variables/LIKE_COMMENT.md new file mode 100644 index 0000000000..d430c1f9a9 --- /dev/null +++ b/docs/docs/auto-docs/GraphQl/Mutations/CommentMutations/variables/LIKE_COMMENT.md @@ -0,0 +1,21 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [GraphQl/Mutations/CommentMutations](../README.md) / LIKE\_COMMENT + +# Variable: LIKE\_COMMENT + +> `const` **LIKE\_COMMENT**: `DocumentNode` + +Defined in: [src/GraphQl/Mutations/CommentMutations.ts:37](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/GraphQl/Mutations/CommentMutations.ts#L37) + +GraphQL mutation to like a comment. + +## Param + +The ID of the comment to be liked. + +## Returns + +The liked comment object. diff --git a/docs/docs/auto-docs/GraphQl/Mutations/CommentMutations/variables/UNLIKE_COMMENT.md b/docs/docs/auto-docs/GraphQl/Mutations/CommentMutations/variables/UNLIKE_COMMENT.md new file mode 100644 index 0000000000..d3d8d0447e --- /dev/null +++ b/docs/docs/auto-docs/GraphQl/Mutations/CommentMutations/variables/UNLIKE_COMMENT.md @@ -0,0 +1,21 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [GraphQl/Mutations/CommentMutations](../README.md) / UNLIKE\_COMMENT + +# Variable: UNLIKE\_COMMENT + +> `const` **UNLIKE\_COMMENT**: `DocumentNode` + +Defined in: [src/GraphQl/Mutations/CommentMutations.ts:52](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/GraphQl/Mutations/CommentMutations.ts#L52) + +GraphQL mutation to unlike a comment. + +## Param + +The ID of the comment to be unliked. + +## Returns + +The unliked comment object. diff --git a/docs/docs/auto-docs/GraphQl/Mutations/EventAttendeeMutations/README.md b/docs/docs/auto-docs/GraphQl/Mutations/EventAttendeeMutations/README.md new file mode 100644 index 0000000000..7ab9483240 --- /dev/null +++ b/docs/docs/auto-docs/GraphQl/Mutations/EventAttendeeMutations/README.md @@ -0,0 +1,13 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / GraphQl/Mutations/EventAttendeeMutations + +# GraphQl/Mutations/EventAttendeeMutations + +## Variables + +- [ADD\_EVENT\_ATTENDEE](variables/ADD_EVENT_ATTENDEE.md) +- [MARK\_CHECKIN](variables/MARK_CHECKIN.md) +- [REMOVE\_EVENT\_ATTENDEE](variables/REMOVE_EVENT_ATTENDEE.md) diff --git a/docs/docs/auto-docs/GraphQl/Mutations/EventAttendeeMutations/variables/ADD_EVENT_ATTENDEE.md b/docs/docs/auto-docs/GraphQl/Mutations/EventAttendeeMutations/variables/ADD_EVENT_ATTENDEE.md new file mode 100644 index 0000000000..80d6a79d57 --- /dev/null +++ b/docs/docs/auto-docs/GraphQl/Mutations/EventAttendeeMutations/variables/ADD_EVENT_ATTENDEE.md @@ -0,0 +1,25 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [GraphQl/Mutations/EventAttendeeMutations](../README.md) / ADD\_EVENT\_ATTENDEE + +# Variable: ADD\_EVENT\_ATTENDEE + +> `const` **ADD\_EVENT\_ATTENDEE**: `DocumentNode` + +Defined in: [src/GraphQl/Mutations/EventAttendeeMutations.ts:11](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/GraphQl/Mutations/EventAttendeeMutations.ts#L11) + +GraphQL mutation to add an attendee to an event. + +## Param + +The ID of the user being added as an attendee. + +## Param + +The ID of the event to which the user is being added as an attendee. + +## Returns + +The updated event object with the added attendee. diff --git a/docs/docs/auto-docs/GraphQl/Mutations/EventAttendeeMutations/variables/MARK_CHECKIN.md b/docs/docs/auto-docs/GraphQl/Mutations/EventAttendeeMutations/variables/MARK_CHECKIN.md new file mode 100644 index 0000000000..558aec70f7 --- /dev/null +++ b/docs/docs/auto-docs/GraphQl/Mutations/EventAttendeeMutations/variables/MARK_CHECKIN.md @@ -0,0 +1,25 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [GraphQl/Mutations/EventAttendeeMutations](../README.md) / MARK\_CHECKIN + +# Variable: MARK\_CHECKIN + +> `const` **MARK\_CHECKIN**: `DocumentNode` + +Defined in: [src/GraphQl/Mutations/EventAttendeeMutations.ts:43](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/GraphQl/Mutations/EventAttendeeMutations.ts#L43) + +GraphQL mutation to mark a user's check-in at an event. + +## Param + +The ID of the user checking in. + +## Param + +The ID of the event at which the user is checking in. + +## Returns + +The updated event object with the user's check-in information. diff --git a/docs/docs/auto-docs/GraphQl/Mutations/EventAttendeeMutations/variables/REMOVE_EVENT_ATTENDEE.md b/docs/docs/auto-docs/GraphQl/Mutations/EventAttendeeMutations/variables/REMOVE_EVENT_ATTENDEE.md new file mode 100644 index 0000000000..ba01a01701 --- /dev/null +++ b/docs/docs/auto-docs/GraphQl/Mutations/EventAttendeeMutations/variables/REMOVE_EVENT_ATTENDEE.md @@ -0,0 +1,25 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [GraphQl/Mutations/EventAttendeeMutations](../README.md) / REMOVE\_EVENT\_ATTENDEE + +# Variable: REMOVE\_EVENT\_ATTENDEE + +> `const` **REMOVE\_EVENT\_ATTENDEE**: `DocumentNode` + +Defined in: [src/GraphQl/Mutations/EventAttendeeMutations.ts:27](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/GraphQl/Mutations/EventAttendeeMutations.ts#L27) + +GraphQL mutation to remove an attendee from an event. + +## Param + +The ID of the user being removed as an attendee. + +## Param + +The ID of the event from which the user is being removed as an attendee. + +## Returns + +The updated event object without the removed attendee. diff --git a/docs/docs/auto-docs/GraphQl/Mutations/EventVolunteerMutation/README.md b/docs/docs/auto-docs/GraphQl/Mutations/EventVolunteerMutation/README.md new file mode 100644 index 0000000000..0d6a8f928c --- /dev/null +++ b/docs/docs/auto-docs/GraphQl/Mutations/EventVolunteerMutation/README.md @@ -0,0 +1,17 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / GraphQl/Mutations/EventVolunteerMutation + +# GraphQl/Mutations/EventVolunteerMutation + +## Variables + +- [ADD\_VOLUNTEER](variables/ADD_VOLUNTEER.md) +- [CREATE\_VOLUNTEER\_GROUP](variables/CREATE_VOLUNTEER_GROUP.md) +- [CREATE\_VOLUNTEER\_MEMBERSHIP](variables/CREATE_VOLUNTEER_MEMBERSHIP.md) +- [DELETE\_VOLUNTEER](variables/DELETE_VOLUNTEER.md) +- [DELETE\_VOLUNTEER\_GROUP](variables/DELETE_VOLUNTEER_GROUP.md) +- [UPDATE\_VOLUNTEER\_GROUP](variables/UPDATE_VOLUNTEER_GROUP.md) +- [UPDATE\_VOLUNTEER\_MEMBERSHIP](variables/UPDATE_VOLUNTEER_MEMBERSHIP.md) diff --git a/docs/docs/auto-docs/GraphQl/Mutations/EventVolunteerMutation/variables/ADD_VOLUNTEER.md b/docs/docs/auto-docs/GraphQl/Mutations/EventVolunteerMutation/variables/ADD_VOLUNTEER.md new file mode 100644 index 0000000000..0ed6b5e908 --- /dev/null +++ b/docs/docs/auto-docs/GraphQl/Mutations/EventVolunteerMutation/variables/ADD_VOLUNTEER.md @@ -0,0 +1,21 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [GraphQl/Mutations/EventVolunteerMutation](../README.md) / ADD\_VOLUNTEER + +# Variable: ADD\_VOLUNTEER + +> `const` **ADD\_VOLUNTEER**: `DocumentNode` + +Defined in: [src/GraphQl/Mutations/EventVolunteerMutation.ts:11](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/GraphQl/Mutations/EventVolunteerMutation.ts#L11) + +GraphQL mutation to create an event volunteer. + +## Param + +The data required to create an event volunteer. + +## Returns + +The ID of the created event volunteer. diff --git a/docs/docs/auto-docs/GraphQl/Mutations/EventVolunteerMutation/variables/CREATE_VOLUNTEER_GROUP.md b/docs/docs/auto-docs/GraphQl/Mutations/EventVolunteerMutation/variables/CREATE_VOLUNTEER_GROUP.md new file mode 100644 index 0000000000..542e793c52 --- /dev/null +++ b/docs/docs/auto-docs/GraphQl/Mutations/EventVolunteerMutation/variables/CREATE_VOLUNTEER_GROUP.md @@ -0,0 +1,28 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [GraphQl/Mutations/EventVolunteerMutation](../README.md) / CREATE\_VOLUNTEER\_GROUP + +# Variable: CREATE\_VOLUNTEER\_GROUP + +> `const` **CREATE\_VOLUNTEER\_GROUP**: `DocumentNode` + +Defined in: [src/GraphQl/Mutations/EventVolunteerMutation.ts:48](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/GraphQl/Mutations/EventVolunteerMutation.ts#L48) + +GraphQL mutation to create an event volunteer group. + +## Param + +The data required to create an event volunteer group. + - data contains following fileds: + - eventId: string + - leaderId: string + - name: string + - description?: string + - volunteers: [string] + - volunteersRequired?: number + +## Returns + +The ID of the created event volunteer group. diff --git a/docs/docs/auto-docs/GraphQl/Mutations/EventVolunteerMutation/variables/CREATE_VOLUNTEER_MEMBERSHIP.md b/docs/docs/auto-docs/GraphQl/Mutations/EventVolunteerMutation/variables/CREATE_VOLUNTEER_MEMBERSHIP.md new file mode 100644 index 0000000000..2c61b2385b --- /dev/null +++ b/docs/docs/auto-docs/GraphQl/Mutations/EventVolunteerMutation/variables/CREATE_VOLUNTEER_MEMBERSHIP.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [GraphQl/Mutations/EventVolunteerMutation](../README.md) / CREATE\_VOLUNTEER\_MEMBERSHIP + +# Variable: CREATE\_VOLUNTEER\_MEMBERSHIP + +> `const` **CREATE\_VOLUNTEER\_MEMBERSHIP**: `DocumentNode` + +Defined in: [src/GraphQl/Mutations/EventVolunteerMutation.ts:90](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/GraphQl/Mutations/EventVolunteerMutation.ts#L90) diff --git a/docs/docs/auto-docs/GraphQl/Mutations/EventVolunteerMutation/variables/DELETE_VOLUNTEER.md b/docs/docs/auto-docs/GraphQl/Mutations/EventVolunteerMutation/variables/DELETE_VOLUNTEER.md new file mode 100644 index 0000000000..6a1b30fb86 --- /dev/null +++ b/docs/docs/auto-docs/GraphQl/Mutations/EventVolunteerMutation/variables/DELETE_VOLUNTEER.md @@ -0,0 +1,21 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [GraphQl/Mutations/EventVolunteerMutation](../README.md) / DELETE\_VOLUNTEER + +# Variable: DELETE\_VOLUNTEER + +> `const` **DELETE\_VOLUNTEER**: `DocumentNode` + +Defined in: [src/GraphQl/Mutations/EventVolunteerMutation.ts:26](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/GraphQl/Mutations/EventVolunteerMutation.ts#L26) + +GraphQL mutation to delete an event volunteer. + +## Param + +The ID of the event volunteer being deleted. + +## Returns + +The ID of the deleted event volunteer. diff --git a/docs/docs/auto-docs/GraphQl/Mutations/EventVolunteerMutation/variables/DELETE_VOLUNTEER_GROUP.md b/docs/docs/auto-docs/GraphQl/Mutations/EventVolunteerMutation/variables/DELETE_VOLUNTEER_GROUP.md new file mode 100644 index 0000000000..d21484cf3b --- /dev/null +++ b/docs/docs/auto-docs/GraphQl/Mutations/EventVolunteerMutation/variables/DELETE_VOLUNTEER_GROUP.md @@ -0,0 +1,21 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [GraphQl/Mutations/EventVolunteerMutation](../README.md) / DELETE\_VOLUNTEER\_GROUP + +# Variable: DELETE\_VOLUNTEER\_GROUP + +> `const` **DELETE\_VOLUNTEER\_GROUP**: `DocumentNode` + +Defined in: [src/GraphQl/Mutations/EventVolunteerMutation.ts:82](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/GraphQl/Mutations/EventVolunteerMutation.ts#L82) + +GraphQL mutation to delete an event volunteer group. + +## Param + +The ID of the event volunteer group being deleted. + +## Returns + +The ID of the deleted event volunteer group. diff --git a/docs/docs/auto-docs/GraphQl/Mutations/EventVolunteerMutation/variables/UPDATE_VOLUNTEER_GROUP.md b/docs/docs/auto-docs/GraphQl/Mutations/EventVolunteerMutation/variables/UPDATE_VOLUNTEER_GROUP.md new file mode 100644 index 0000000000..92b19ad143 --- /dev/null +++ b/docs/docs/auto-docs/GraphQl/Mutations/EventVolunteerMutation/variables/UPDATE_VOLUNTEER_GROUP.md @@ -0,0 +1,25 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [GraphQl/Mutations/EventVolunteerMutation](../README.md) / UPDATE\_VOLUNTEER\_GROUP + +# Variable: UPDATE\_VOLUNTEER\_GROUP + +> `const` **UPDATE\_VOLUNTEER\_GROUP**: `DocumentNode` + +Defined in: [src/GraphQl/Mutations/EventVolunteerMutation.ts:64](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/GraphQl/Mutations/EventVolunteerMutation.ts#L64) + +GraphQL mutation to update an event volunteer group. + +## Param + +The ID of the event volunteer group being updated. + +## Param + +The data required to update an event volunteer group. + +## Returns + +The ID of the updated event volunteer group. diff --git a/docs/docs/auto-docs/GraphQl/Mutations/EventVolunteerMutation/variables/UPDATE_VOLUNTEER_MEMBERSHIP.md b/docs/docs/auto-docs/GraphQl/Mutations/EventVolunteerMutation/variables/UPDATE_VOLUNTEER_MEMBERSHIP.md new file mode 100644 index 0000000000..c416913a6b --- /dev/null +++ b/docs/docs/auto-docs/GraphQl/Mutations/EventVolunteerMutation/variables/UPDATE_VOLUNTEER_MEMBERSHIP.md @@ -0,0 +1,25 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [GraphQl/Mutations/EventVolunteerMutation](../README.md) / UPDATE\_VOLUNTEER\_MEMBERSHIP + +# Variable: UPDATE\_VOLUNTEER\_MEMBERSHIP + +> `const` **UPDATE\_VOLUNTEER\_MEMBERSHIP**: `DocumentNode` + +Defined in: [src/GraphQl/Mutations/EventVolunteerMutation.ts:106](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/GraphQl/Mutations/EventVolunteerMutation.ts#L106) + +GraphQL mutation to update an event volunteer group. + +## Param + +The ID of the event volunteer group being updated. + +## Param + +The data required to update an event volunteer group. + +## Returns + +The ID of the updated event volunteer group. diff --git a/docs/docs/auto-docs/GraphQl/Mutations/FundMutation/README.md b/docs/docs/auto-docs/GraphQl/Mutations/FundMutation/README.md new file mode 100644 index 0000000000..b44cfe6f2c --- /dev/null +++ b/docs/docs/auto-docs/GraphQl/Mutations/FundMutation/README.md @@ -0,0 +1,12 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / GraphQl/Mutations/FundMutation + +# GraphQl/Mutations/FundMutation + +## Variables + +- [CREATE\_FUND\_MUTATION](variables/CREATE_FUND_MUTATION.md) +- [UPDATE\_FUND\_MUTATION](variables/UPDATE_FUND_MUTATION.md) diff --git a/docs/docs/auto-docs/GraphQl/Mutations/FundMutation/variables/CREATE_FUND_MUTATION.md b/docs/docs/auto-docs/GraphQl/Mutations/FundMutation/variables/CREATE_FUND_MUTATION.md new file mode 100644 index 0000000000..b6a523e929 --- /dev/null +++ b/docs/docs/auto-docs/GraphQl/Mutations/FundMutation/variables/CREATE_FUND_MUTATION.md @@ -0,0 +1,41 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [GraphQl/Mutations/FundMutation](../README.md) / CREATE\_FUND\_MUTATION + +# Variable: CREATE\_FUND\_MUTATION + +> `const` **CREATE\_FUND\_MUTATION**: `DocumentNode` + +Defined in: [src/GraphQl/Mutations/FundMutation.ts:14](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/GraphQl/Mutations/FundMutation.ts#L14) + +GraphQL mutation to create a new fund. + +## Param + +The name of the fund. + +## Param + +The organization ID the fund is associated with. + +## Param + +The reference number of the fund. + +## Param + +Whether the fund is tax deductible. + +## Param + +Whether the fund is archived. + +## Param + +Whether the fund is the default. + +## Returns + +The ID of the created fund. diff --git a/docs/docs/auto-docs/GraphQl/Mutations/FundMutation/variables/UPDATE_FUND_MUTATION.md b/docs/docs/auto-docs/GraphQl/Mutations/FundMutation/variables/UPDATE_FUND_MUTATION.md new file mode 100644 index 0000000000..98dc36ac86 --- /dev/null +++ b/docs/docs/auto-docs/GraphQl/Mutations/FundMutation/variables/UPDATE_FUND_MUTATION.md @@ -0,0 +1,41 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [GraphQl/Mutations/FundMutation](../README.md) / UPDATE\_FUND\_MUTATION + +# Variable: UPDATE\_FUND\_MUTATION + +> `const` **UPDATE\_FUND\_MUTATION**: `DocumentNode` + +Defined in: [src/GraphQl/Mutations/FundMutation.ts:49](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/GraphQl/Mutations/FundMutation.ts#L49) + +GraphQL mutation to update a fund. + +## Param + +The ID of the fund being updated. + +## Param + +The name of the fund. + +## Param + +The reference number of the fund. + +## Param + +Whether the fund is tax deductible. + +## Param + +Whether the fund is archived. + +## Param + +Whether the fund is the default. + +## Returns + +The ID of the updated fund. diff --git a/docs/docs/auto-docs/GraphQl/Mutations/OrganizationMutations/README.md b/docs/docs/auto-docs/GraphQl/Mutations/OrganizationMutations/README.md new file mode 100644 index 0000000000..6957aa030d --- /dev/null +++ b/docs/docs/auto-docs/GraphQl/Mutations/OrganizationMutations/README.md @@ -0,0 +1,27 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / GraphQl/Mutations/OrganizationMutations + +# GraphQl/Mutations/OrganizationMutations + +## Variables + +- [ADD\_CUSTOM\_FIELD](variables/ADD_CUSTOM_FIELD.md) +- [ADD\_USER\_TO\_GROUP\_CHAT](variables/ADD_USER_TO_GROUP_CHAT.md) +- [CANCEL\_MEMBERSHIP\_REQUEST](variables/CANCEL_MEMBERSHIP_REQUEST.md) +- [CREATE\_CHAT](variables/CREATE_CHAT.md) +- [CREATE\_SAMPLE\_ORGANIZATION\_MUTATION](variables/CREATE_SAMPLE_ORGANIZATION_MUTATION.md) +- [EDIT\_CHAT\_MESSAGE](variables/EDIT_CHAT_MESSAGE.md) +- [JOIN\_PUBLIC\_ORGANIZATION](variables/JOIN_PUBLIC_ORGANIZATION.md) +- [MARK\_CHAT\_MESSAGES\_AS\_READ](variables/MARK_CHAT_MESSAGES_AS_READ.md) +- [MESSAGE\_SENT\_TO\_CHAT](variables/MESSAGE_SENT_TO_CHAT.md) +- [PLUGIN\_SUBSCRIPTION](variables/PLUGIN_SUBSCRIPTION.md) +- [REMOVE\_CUSTOM\_FIELD](variables/REMOVE_CUSTOM_FIELD.md) +- [REMOVE\_SAMPLE\_ORGANIZATION\_MUTATION](variables/REMOVE_SAMPLE_ORGANIZATION_MUTATION.md) +- [SEND\_MEMBERSHIP\_REQUEST](variables/SEND_MEMBERSHIP_REQUEST.md) +- [SEND\_MESSAGE\_TO\_CHAT](variables/SEND_MESSAGE_TO_CHAT.md) +- [TOGGLE\_PINNED\_POST](variables/TOGGLE_PINNED_POST.md) +- [UPDATE\_CHAT](variables/UPDATE_CHAT.md) +- [UPDATE\_USER\_ROLE\_IN\_ORG\_MUTATION](variables/UPDATE_USER_ROLE_IN_ORG_MUTATION.md) diff --git a/docs/docs/auto-docs/GraphQl/Mutations/OrganizationMutations/variables/ADD_CUSTOM_FIELD.md b/docs/docs/auto-docs/GraphQl/Mutations/OrganizationMutations/variables/ADD_CUSTOM_FIELD.md new file mode 100644 index 0000000000..934541cba8 --- /dev/null +++ b/docs/docs/auto-docs/GraphQl/Mutations/OrganizationMutations/variables/ADD_CUSTOM_FIELD.md @@ -0,0 +1,29 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [GraphQl/Mutations/OrganizationMutations](../README.md) / ADD\_CUSTOM\_FIELD + +# Variable: ADD\_CUSTOM\_FIELD + +> `const` **ADD\_CUSTOM\_FIELD**: `DocumentNode` + +Defined in: [src/GraphQl/Mutations/OrganizationMutations.ts:237](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/GraphQl/Mutations/OrganizationMutations.ts#L237) + +GraphQL mutation to add a custom field to an organization. + +## Param + +The ID of the organization where the custom field is being added. + +## Param + +The type of the custom field (e.g., String, Number). + +## Param + +The name of the custom field. + +## Returns + +The added organization custom field object. diff --git a/docs/docs/auto-docs/GraphQl/Mutations/OrganizationMutations/variables/ADD_USER_TO_GROUP_CHAT.md b/docs/docs/auto-docs/GraphQl/Mutations/OrganizationMutations/variables/ADD_USER_TO_GROUP_CHAT.md new file mode 100644 index 0000000000..7ac08132e7 --- /dev/null +++ b/docs/docs/auto-docs/GraphQl/Mutations/OrganizationMutations/variables/ADD_USER_TO_GROUP_CHAT.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [GraphQl/Mutations/OrganizationMutations](../README.md) / ADD\_USER\_TO\_GROUP\_CHAT + +# Variable: ADD\_USER\_TO\_GROUP\_CHAT + +> `const` **ADD\_USER\_TO\_GROUP\_CHAT**: `DocumentNode` + +Defined in: [src/GraphQl/Mutations/OrganizationMutations.ts:82](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/GraphQl/Mutations/OrganizationMutations.ts#L82) diff --git a/docs/docs/auto-docs/GraphQl/Mutations/OrganizationMutations/variables/CANCEL_MEMBERSHIP_REQUEST.md b/docs/docs/auto-docs/GraphQl/Mutations/OrganizationMutations/variables/CANCEL_MEMBERSHIP_REQUEST.md new file mode 100644 index 0000000000..1250aa1de0 --- /dev/null +++ b/docs/docs/auto-docs/GraphQl/Mutations/OrganizationMutations/variables/CANCEL_MEMBERSHIP_REQUEST.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [GraphQl/Mutations/OrganizationMutations](../README.md) / CANCEL\_MEMBERSHIP\_REQUEST + +# Variable: CANCEL\_MEMBERSHIP\_REQUEST + +> `const` **CANCEL\_MEMBERSHIP\_REQUEST**: `DocumentNode` + +Defined in: [src/GraphQl/Mutations/OrganizationMutations.ts:295](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/GraphQl/Mutations/OrganizationMutations.ts#L295) diff --git a/docs/docs/auto-docs/GraphQl/Mutations/OrganizationMutations/variables/CREATE_CHAT.md b/docs/docs/auto-docs/GraphQl/Mutations/OrganizationMutations/variables/CREATE_CHAT.md new file mode 100644 index 0000000000..d7f66729e1 --- /dev/null +++ b/docs/docs/auto-docs/GraphQl/Mutations/OrganizationMutations/variables/CREATE_CHAT.md @@ -0,0 +1,25 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [GraphQl/Mutations/OrganizationMutations](../README.md) / CREATE\_CHAT + +# Variable: CREATE\_CHAT + +> `const` **CREATE\_CHAT**: `DocumentNode` + +Defined in: [src/GraphQl/Mutations/OrganizationMutations.ts:60](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/GraphQl/Mutations/OrganizationMutations.ts#L60) + +GraphQL mutation to create a chat between users in an organization. + +## Param + +An array of user IDs participating in the direct chat. + +## Param + +The ID of the organization where the direct chat is created. + +## Returns + +The created direct chat object. diff --git a/docs/docs/auto-docs/GraphQl/Mutations/OrganizationMutations/variables/CREATE_SAMPLE_ORGANIZATION_MUTATION.md b/docs/docs/auto-docs/GraphQl/Mutations/OrganizationMutations/variables/CREATE_SAMPLE_ORGANIZATION_MUTATION.md new file mode 100644 index 0000000000..b72af166f8 --- /dev/null +++ b/docs/docs/auto-docs/GraphQl/Mutations/OrganizationMutations/variables/CREATE_SAMPLE_ORGANIZATION_MUTATION.md @@ -0,0 +1,17 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [GraphQl/Mutations/OrganizationMutations](../README.md) / CREATE\_SAMPLE\_ORGANIZATION\_MUTATION + +# Variable: CREATE\_SAMPLE\_ORGANIZATION\_MUTATION + +> `const` **CREATE\_SAMPLE\_ORGANIZATION\_MUTATION**: `DocumentNode` + +Defined in: [src/GraphQl/Mutations/OrganizationMutations.ts:34](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/GraphQl/Mutations/OrganizationMutations.ts#L34) + +GraphQL mutation to create a sample organization. + +## Returns + +The created sample organization object. diff --git a/docs/docs/auto-docs/GraphQl/Mutations/OrganizationMutations/variables/EDIT_CHAT_MESSAGE.md b/docs/docs/auto-docs/GraphQl/Mutations/OrganizationMutations/variables/EDIT_CHAT_MESSAGE.md new file mode 100644 index 0000000000..2b602547e5 --- /dev/null +++ b/docs/docs/auto-docs/GraphQl/Mutations/OrganizationMutations/variables/EDIT_CHAT_MESSAGE.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [GraphQl/Mutations/OrganizationMutations](../README.md) / EDIT\_CHAT\_MESSAGE + +# Variable: EDIT\_CHAT\_MESSAGE + +> `const` **EDIT\_CHAT\_MESSAGE**: `DocumentNode` + +Defined in: [src/GraphQl/Mutations/OrganizationMutations.ts:106](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/GraphQl/Mutations/OrganizationMutations.ts#L106) diff --git a/docs/docs/auto-docs/GraphQl/Mutations/OrganizationMutations/variables/JOIN_PUBLIC_ORGANIZATION.md b/docs/docs/auto-docs/GraphQl/Mutations/OrganizationMutations/variables/JOIN_PUBLIC_ORGANIZATION.md new file mode 100644 index 0000000000..6d51a90b2a --- /dev/null +++ b/docs/docs/auto-docs/GraphQl/Mutations/OrganizationMutations/variables/JOIN_PUBLIC_ORGANIZATION.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [GraphQl/Mutations/OrganizationMutations](../README.md) / JOIN\_PUBLIC\_ORGANIZATION + +# Variable: JOIN\_PUBLIC\_ORGANIZATION + +> `const` **JOIN\_PUBLIC\_ORGANIZATION**: `DocumentNode` + +Defined in: [src/GraphQl/Mutations/OrganizationMutations.ts:287](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/GraphQl/Mutations/OrganizationMutations.ts#L287) diff --git a/docs/docs/auto-docs/GraphQl/Mutations/OrganizationMutations/variables/MARK_CHAT_MESSAGES_AS_READ.md b/docs/docs/auto-docs/GraphQl/Mutations/OrganizationMutations/variables/MARK_CHAT_MESSAGES_AS_READ.md new file mode 100644 index 0000000000..b48892d0a1 --- /dev/null +++ b/docs/docs/auto-docs/GraphQl/Mutations/OrganizationMutations/variables/MARK_CHAT_MESSAGES_AS_READ.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [GraphQl/Mutations/OrganizationMutations](../README.md) / MARK\_CHAT\_MESSAGES\_AS\_READ + +# Variable: MARK\_CHAT\_MESSAGES\_AS\_READ + +> `const` **MARK\_CHAT\_MESSAGES\_AS\_READ**: `DocumentNode` + +Defined in: [src/GraphQl/Mutations/OrganizationMutations.ts:90](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/GraphQl/Mutations/OrganizationMutations.ts#L90) diff --git a/docs/docs/auto-docs/GraphQl/Mutations/OrganizationMutations/variables/MESSAGE_SENT_TO_CHAT.md b/docs/docs/auto-docs/GraphQl/Mutations/OrganizationMutations/variables/MESSAGE_SENT_TO_CHAT.md new file mode 100644 index 0000000000..37f4a2fa42 --- /dev/null +++ b/docs/docs/auto-docs/GraphQl/Mutations/OrganizationMutations/variables/MESSAGE_SENT_TO_CHAT.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [GraphQl/Mutations/OrganizationMutations](../README.md) / MESSAGE\_SENT\_TO\_CHAT + +# Variable: MESSAGE\_SENT\_TO\_CHAT + +> `const` **MESSAGE\_SENT\_TO\_CHAT**: `DocumentNode` + +Defined in: [src/GraphQl/Mutations/OrganizationMutations.ts:164](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/GraphQl/Mutations/OrganizationMutations.ts#L164) diff --git a/docs/docs/auto-docs/GraphQl/Mutations/OrganizationMutations/variables/PLUGIN_SUBSCRIPTION.md b/docs/docs/auto-docs/GraphQl/Mutations/OrganizationMutations/variables/PLUGIN_SUBSCRIPTION.md new file mode 100644 index 0000000000..1e7fac9ae2 --- /dev/null +++ b/docs/docs/auto-docs/GraphQl/Mutations/OrganizationMutations/variables/PLUGIN_SUBSCRIPTION.md @@ -0,0 +1,17 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [GraphQl/Mutations/OrganizationMutations](../README.md) / PLUGIN\_SUBSCRIPTION + +# Variable: PLUGIN\_SUBSCRIPTION + +> `const` **PLUGIN\_SUBSCRIPTION**: `DocumentNode` + +Defined in: [src/GraphQl/Mutations/OrganizationMutations.ts:202](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/GraphQl/Mutations/OrganizationMutations.ts#L202) + +GraphQL subscription to listen for updates on plugins. + +## Returns + +An object containing information about the updated plugin. diff --git a/docs/docs/auto-docs/GraphQl/Mutations/OrganizationMutations/variables/REMOVE_CUSTOM_FIELD.md b/docs/docs/auto-docs/GraphQl/Mutations/OrganizationMutations/variables/REMOVE_CUSTOM_FIELD.md new file mode 100644 index 0000000000..56a293f29d --- /dev/null +++ b/docs/docs/auto-docs/GraphQl/Mutations/OrganizationMutations/variables/REMOVE_CUSTOM_FIELD.md @@ -0,0 +1,25 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [GraphQl/Mutations/OrganizationMutations](../README.md) / REMOVE\_CUSTOM\_FIELD + +# Variable: REMOVE\_CUSTOM\_FIELD + +> `const` **REMOVE\_CUSTOM\_FIELD**: `DocumentNode` + +Defined in: [src/GraphQl/Mutations/OrganizationMutations.ts:260](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/GraphQl/Mutations/OrganizationMutations.ts#L260) + +GraphQL mutation to remove a custom field from an organization. + +## Param + +The ID of the organization from which the custom field is being removed. + +## Param + +The ID of the custom field to be removed. + +## Returns + +The removed organization custom field object. diff --git a/docs/docs/auto-docs/GraphQl/Mutations/OrganizationMutations/variables/REMOVE_SAMPLE_ORGANIZATION_MUTATION.md b/docs/docs/auto-docs/GraphQl/Mutations/OrganizationMutations/variables/REMOVE_SAMPLE_ORGANIZATION_MUTATION.md new file mode 100644 index 0000000000..8fe5ddafee --- /dev/null +++ b/docs/docs/auto-docs/GraphQl/Mutations/OrganizationMutations/variables/REMOVE_SAMPLE_ORGANIZATION_MUTATION.md @@ -0,0 +1,17 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [GraphQl/Mutations/OrganizationMutations](../README.md) / REMOVE\_SAMPLE\_ORGANIZATION\_MUTATION + +# Variable: REMOVE\_SAMPLE\_ORGANIZATION\_MUTATION + +> `const` **REMOVE\_SAMPLE\_ORGANIZATION\_MUTATION**: `DocumentNode` + +Defined in: [src/GraphQl/Mutations/OrganizationMutations.ts:46](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/GraphQl/Mutations/OrganizationMutations.ts#L46) + +GraphQL mutation to remove a sample organization. + +## Returns + +The removed sample organization object. diff --git a/docs/docs/auto-docs/GraphQl/Mutations/OrganizationMutations/variables/SEND_MEMBERSHIP_REQUEST.md b/docs/docs/auto-docs/GraphQl/Mutations/OrganizationMutations/variables/SEND_MEMBERSHIP_REQUEST.md new file mode 100644 index 0000000000..58d754f23b --- /dev/null +++ b/docs/docs/auto-docs/GraphQl/Mutations/OrganizationMutations/variables/SEND_MEMBERSHIP_REQUEST.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [GraphQl/Mutations/OrganizationMutations](../README.md) / SEND\_MEMBERSHIP\_REQUEST + +# Variable: SEND\_MEMBERSHIP\_REQUEST + +> `const` **SEND\_MEMBERSHIP\_REQUEST**: `DocumentNode` + +Defined in: [src/GraphQl/Mutations/OrganizationMutations.ts:272](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/GraphQl/Mutations/OrganizationMutations.ts#L272) diff --git a/docs/docs/auto-docs/GraphQl/Mutations/OrganizationMutations/variables/SEND_MESSAGE_TO_CHAT.md b/docs/docs/auto-docs/GraphQl/Mutations/OrganizationMutations/variables/SEND_MESSAGE_TO_CHAT.md new file mode 100644 index 0000000000..2bd81bcf40 --- /dev/null +++ b/docs/docs/auto-docs/GraphQl/Mutations/OrganizationMutations/variables/SEND_MESSAGE_TO_CHAT.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [GraphQl/Mutations/OrganizationMutations](../README.md) / SEND\_MESSAGE\_TO\_CHAT + +# Variable: SEND\_MESSAGE\_TO\_CHAT + +> `const` **SEND\_MESSAGE\_TO\_CHAT**: `DocumentNode` + +Defined in: [src/GraphQl/Mutations/OrganizationMutations.ts:126](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/GraphQl/Mutations/OrganizationMutations.ts#L126) diff --git a/docs/docs/auto-docs/GraphQl/Mutations/OrganizationMutations/variables/TOGGLE_PINNED_POST.md b/docs/docs/auto-docs/GraphQl/Mutations/OrganizationMutations/variables/TOGGLE_PINNED_POST.md new file mode 100644 index 0000000000..d50f215d34 --- /dev/null +++ b/docs/docs/auto-docs/GraphQl/Mutations/OrganizationMutations/variables/TOGGLE_PINNED_POST.md @@ -0,0 +1,21 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [GraphQl/Mutations/OrganizationMutations](../README.md) / TOGGLE\_PINNED\_POST + +# Variable: TOGGLE\_PINNED\_POST + +> `const` **TOGGLE\_PINNED\_POST**: `DocumentNode` + +Defined in: [src/GraphQl/Mutations/OrganizationMutations.ts:220](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/GraphQl/Mutations/OrganizationMutations.ts#L220) + +GraphQL mutation to toggle the pinned status of a post. + +## Param + +The ID of the post to be toggled. + +## Returns + +The updated post object with the new pinned status. diff --git a/docs/docs/auto-docs/GraphQl/Mutations/OrganizationMutations/variables/UPDATE_CHAT.md b/docs/docs/auto-docs/GraphQl/Mutations/OrganizationMutations/variables/UPDATE_CHAT.md new file mode 100644 index 0000000000..958641cb26 --- /dev/null +++ b/docs/docs/auto-docs/GraphQl/Mutations/OrganizationMutations/variables/UPDATE_CHAT.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [GraphQl/Mutations/OrganizationMutations](../README.md) / UPDATE\_CHAT + +# Variable: UPDATE\_CHAT + +> `const` **UPDATE\_CHAT**: `DocumentNode` + +Defined in: [src/GraphQl/Mutations/OrganizationMutations.ts:98](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/GraphQl/Mutations/OrganizationMutations.ts#L98) diff --git a/docs/docs/auto-docs/GraphQl/Mutations/OrganizationMutations/variables/UPDATE_USER_ROLE_IN_ORG_MUTATION.md b/docs/docs/auto-docs/GraphQl/Mutations/OrganizationMutations/variables/UPDATE_USER_ROLE_IN_ORG_MUTATION.md new file mode 100644 index 0000000000..dd17ae9305 --- /dev/null +++ b/docs/docs/auto-docs/GraphQl/Mutations/OrganizationMutations/variables/UPDATE_USER_ROLE_IN_ORG_MUTATION.md @@ -0,0 +1,29 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [GraphQl/Mutations/OrganizationMutations](../README.md) / UPDATE\_USER\_ROLE\_IN\_ORG\_MUTATION + +# Variable: UPDATE\_USER\_ROLE\_IN\_ORG\_MUTATION + +> `const` **UPDATE\_USER\_ROLE\_IN\_ORG\_MUTATION**: `DocumentNode` + +Defined in: [src/GraphQl/Mutations/OrganizationMutations.ts:12](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/GraphQl/Mutations/OrganizationMutations.ts#L12) + +GraphQL mutation to update the role of a user in an organization. + +## Param + +The ID of the organization in which the user's role is being updated. + +## Param + +The ID of the user whose role is being updated. + +## Param + +The new role to be assigned to the user in the organization. + +## Returns + +The updated user object with the new role in the organization. diff --git a/docs/docs/auto-docs/GraphQl/Mutations/PledgeMutation/README.md b/docs/docs/auto-docs/GraphQl/Mutations/PledgeMutation/README.md new file mode 100644 index 0000000000..2a7b674f0c --- /dev/null +++ b/docs/docs/auto-docs/GraphQl/Mutations/PledgeMutation/README.md @@ -0,0 +1,13 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / GraphQl/Mutations/PledgeMutation + +# GraphQl/Mutations/PledgeMutation + +## Variables + +- [CREATE\_PlEDGE](variables/CREATE_PlEDGE.md) +- [DELETE\_PLEDGE](variables/DELETE_PLEDGE.md) +- [UPDATE\_PLEDGE](variables/UPDATE_PLEDGE.md) diff --git a/docs/docs/auto-docs/GraphQl/Mutations/PledgeMutation/variables/CREATE_PlEDGE.md b/docs/docs/auto-docs/GraphQl/Mutations/PledgeMutation/variables/CREATE_PlEDGE.md new file mode 100644 index 0000000000..e9c03698ac --- /dev/null +++ b/docs/docs/auto-docs/GraphQl/Mutations/PledgeMutation/variables/CREATE_PlEDGE.md @@ -0,0 +1,41 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [GraphQl/Mutations/PledgeMutation](../README.md) / CREATE\_PlEDGE + +# Variable: CREATE\_PlEDGE + +> `const` **CREATE\_PlEDGE**: `DocumentNode` + +Defined in: [src/GraphQl/Mutations/PledgeMutation.ts:14](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/GraphQl/Mutations/PledgeMutation.ts#L14) + +GraphQL mutation to create a pledge. + +## Param + +The ID of the campaign the pledge is associated with. + +## Param + +The amount of the pledge. + +## Param + +The currency of the pledge. + +## Param + +The start date of the pledge. + +## Param + +The end date of the pledge. + +## Param + +The IDs of the users associated with the pledge. + +## Returns + +The ID of the created pledge. diff --git a/docs/docs/auto-docs/GraphQl/Mutations/PledgeMutation/variables/DELETE_PLEDGE.md b/docs/docs/auto-docs/GraphQl/Mutations/PledgeMutation/variables/DELETE_PLEDGE.md new file mode 100644 index 0000000000..3098ac04d9 --- /dev/null +++ b/docs/docs/auto-docs/GraphQl/Mutations/PledgeMutation/variables/DELETE_PLEDGE.md @@ -0,0 +1,21 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [GraphQl/Mutations/PledgeMutation](../README.md) / DELETE\_PLEDGE + +# Variable: DELETE\_PLEDGE + +> `const` **DELETE\_PLEDGE**: `DocumentNode` + +Defined in: [src/GraphQl/Mutations/PledgeMutation.ts:78](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/GraphQl/Mutations/PledgeMutation.ts#L78) + +GraphQL mutation to delete a pledge. + +## Param + +The ID of the pledge being deleted. + +## Returns + +Whether the pledge was successfully deleted. diff --git a/docs/docs/auto-docs/GraphQl/Mutations/PledgeMutation/variables/UPDATE_PLEDGE.md b/docs/docs/auto-docs/GraphQl/Mutations/PledgeMutation/variables/UPDATE_PLEDGE.md new file mode 100644 index 0000000000..f4ebfe04cf --- /dev/null +++ b/docs/docs/auto-docs/GraphQl/Mutations/PledgeMutation/variables/UPDATE_PLEDGE.md @@ -0,0 +1,37 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [GraphQl/Mutations/PledgeMutation](../README.md) / UPDATE\_PLEDGE + +# Variable: UPDATE\_PLEDGE + +> `const` **UPDATE\_PLEDGE**: `DocumentNode` + +Defined in: [src/GraphQl/Mutations/PledgeMutation.ts:48](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/GraphQl/Mutations/PledgeMutation.ts#L48) + +GraphQL mutation to update a pledge. + +## Param + +The ID of the pledge being updated. + +## Param + +The amount of the pledge. + +## Param + +The currency of the pledge. + +## Param + +The start date of the pledge. + +## Param + +The end date of the pledge. + +## Returns + +The ID of the updated pledge. diff --git a/docs/docs/auto-docs/GraphQl/Mutations/TagMutations/README.md b/docs/docs/auto-docs/GraphQl/Mutations/TagMutations/README.md new file mode 100644 index 0000000000..e3328dd710 --- /dev/null +++ b/docs/docs/auto-docs/GraphQl/Mutations/TagMutations/README.md @@ -0,0 +1,17 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / GraphQl/Mutations/TagMutations + +# GraphQl/Mutations/TagMutations + +## Variables + +- [ADD\_PEOPLE\_TO\_TAG](variables/ADD_PEOPLE_TO_TAG.md) +- [ASSIGN\_TO\_TAGS](variables/ASSIGN_TO_TAGS.md) +- [CREATE\_USER\_TAG](variables/CREATE_USER_TAG.md) +- [REMOVE\_FROM\_TAGS](variables/REMOVE_FROM_TAGS.md) +- [REMOVE\_USER\_TAG](variables/REMOVE_USER_TAG.md) +- [UNASSIGN\_USER\_TAG](variables/UNASSIGN_USER_TAG.md) +- [UPDATE\_USER\_TAG](variables/UPDATE_USER_TAG.md) diff --git a/docs/docs/auto-docs/GraphQl/Mutations/TagMutations/variables/ADD_PEOPLE_TO_TAG.md b/docs/docs/auto-docs/GraphQl/Mutations/TagMutations/variables/ADD_PEOPLE_TO_TAG.md new file mode 100644 index 0000000000..6804375220 --- /dev/null +++ b/docs/docs/auto-docs/GraphQl/Mutations/TagMutations/variables/ADD_PEOPLE_TO_TAG.md @@ -0,0 +1,21 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [GraphQl/Mutations/TagMutations](../README.md) / ADD\_PEOPLE\_TO\_TAG + +# Variable: ADD\_PEOPLE\_TO\_TAG + +> `const` **ADD\_PEOPLE\_TO\_TAG**: `DocumentNode` + +Defined in: [src/GraphQl/Mutations/TagMutations.ts:83](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/GraphQl/Mutations/TagMutations.ts#L83) + +GraphQL mutation to add people to tag. + +## Param + +Id of the tag to be assigned. + +## Param + +Ids of the users to assign to. diff --git a/docs/docs/auto-docs/GraphQl/Mutations/TagMutations/variables/ASSIGN_TO_TAGS.md b/docs/docs/auto-docs/GraphQl/Mutations/TagMutations/variables/ASSIGN_TO_TAGS.md new file mode 100644 index 0000000000..b7b0c52c36 --- /dev/null +++ b/docs/docs/auto-docs/GraphQl/Mutations/TagMutations/variables/ASSIGN_TO_TAGS.md @@ -0,0 +1,21 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [GraphQl/Mutations/TagMutations](../README.md) / ASSIGN\_TO\_TAGS + +# Variable: ASSIGN\_TO\_TAGS + +> `const` **ASSIGN\_TO\_TAGS**: `DocumentNode` + +Defined in: [src/GraphQl/Mutations/TagMutations.ts:98](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/GraphQl/Mutations/TagMutations.ts#L98) + +GraphQL mutation to assign people to multiple tags. + +## Param + +Id of the current tag. + +## Param + +Ids of the selected tags to be assined. diff --git a/docs/docs/auto-docs/GraphQl/Mutations/TagMutations/variables/CREATE_USER_TAG.md b/docs/docs/auto-docs/GraphQl/Mutations/TagMutations/variables/CREATE_USER_TAG.md new file mode 100644 index 0000000000..f03af162c4 --- /dev/null +++ b/docs/docs/auto-docs/GraphQl/Mutations/TagMutations/variables/CREATE_USER_TAG.md @@ -0,0 +1,29 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [GraphQl/Mutations/TagMutations](../README.md) / CREATE\_USER\_TAG + +# Variable: CREATE\_USER\_TAG + +> `const` **CREATE\_USER\_TAG**: `DocumentNode` + +Defined in: [src/GraphQl/Mutations/TagMutations.ts:12](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/GraphQl/Mutations/TagMutations.ts#L12) + +GraphQL mutation to create a user tag. + +## Param + +Name of the tag. + +## Param + +Color of the tag. + +## Param + +Id of the parent tag. + +## Param + +Organization to which the tag belongs. diff --git a/docs/docs/auto-docs/GraphQl/Mutations/TagMutations/variables/REMOVE_FROM_TAGS.md b/docs/docs/auto-docs/GraphQl/Mutations/TagMutations/variables/REMOVE_FROM_TAGS.md new file mode 100644 index 0000000000..027d1d5f5b --- /dev/null +++ b/docs/docs/auto-docs/GraphQl/Mutations/TagMutations/variables/REMOVE_FROM_TAGS.md @@ -0,0 +1,21 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [GraphQl/Mutations/TagMutations](../README.md) / REMOVE\_FROM\_TAGS + +# Variable: REMOVE\_FROM\_TAGS + +> `const` **REMOVE\_FROM\_TAGS**: `DocumentNode` + +Defined in: [src/GraphQl/Mutations/TagMutations.ts:115](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/GraphQl/Mutations/TagMutations.ts#L115) + +GraphQL mutation to remove people from multiple tags. + +## Param + +Id of the current tag. + +## Param + +Ids of the selected tags to be removed from. diff --git a/docs/docs/auto-docs/GraphQl/Mutations/TagMutations/variables/REMOVE_USER_TAG.md b/docs/docs/auto-docs/GraphQl/Mutations/TagMutations/variables/REMOVE_USER_TAG.md new file mode 100644 index 0000000000..c74397c1be --- /dev/null +++ b/docs/docs/auto-docs/GraphQl/Mutations/TagMutations/variables/REMOVE_USER_TAG.md @@ -0,0 +1,17 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [GraphQl/Mutations/TagMutations](../README.md) / REMOVE\_USER\_TAG + +# Variable: REMOVE\_USER\_TAG + +> `const` **REMOVE\_USER\_TAG**: `DocumentNode` + +Defined in: [src/GraphQl/Mutations/TagMutations.ts:68](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/GraphQl/Mutations/TagMutations.ts#L68) + +GraphQL mutation to remove a user tag. + +## Param + +Id of the tag to be removed . diff --git a/docs/docs/auto-docs/GraphQl/Mutations/TagMutations/variables/UNASSIGN_USER_TAG.md b/docs/docs/auto-docs/GraphQl/Mutations/TagMutations/variables/UNASSIGN_USER_TAG.md new file mode 100644 index 0000000000..7aa73ad496 --- /dev/null +++ b/docs/docs/auto-docs/GraphQl/Mutations/TagMutations/variables/UNASSIGN_USER_TAG.md @@ -0,0 +1,21 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [GraphQl/Mutations/TagMutations](../README.md) / UNASSIGN\_USER\_TAG + +# Variable: UNASSIGN\_USER\_TAG + +> `const` **UNASSIGN\_USER\_TAG**: `DocumentNode` + +Defined in: [src/GraphQl/Mutations/TagMutations.ts:39](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/GraphQl/Mutations/TagMutations.ts#L39) + +GraphQL mutation to unsssign a user tag from a user. + +## Param + +Id the tag. + +## Param + +Id of the user to be unassigned. diff --git a/docs/docs/auto-docs/GraphQl/Mutations/TagMutations/variables/UPDATE_USER_TAG.md b/docs/docs/auto-docs/GraphQl/Mutations/TagMutations/variables/UPDATE_USER_TAG.md new file mode 100644 index 0000000000..6ec39445ba --- /dev/null +++ b/docs/docs/auto-docs/GraphQl/Mutations/TagMutations/variables/UPDATE_USER_TAG.md @@ -0,0 +1,21 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [GraphQl/Mutations/TagMutations](../README.md) / UPDATE\_USER\_TAG + +# Variable: UPDATE\_USER\_TAG + +> `const` **UPDATE\_USER\_TAG**: `DocumentNode` + +Defined in: [src/GraphQl/Mutations/TagMutations.ts:54](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/GraphQl/Mutations/TagMutations.ts#L54) + +GraphQL mutation to update a user tag. + +## Param + +Id the tag. + +## Param + +Updated name of the tag. diff --git a/docs/docs/auto-docs/GraphQl/Mutations/VenueMutations/README.md b/docs/docs/auto-docs/GraphQl/Mutations/VenueMutations/README.md new file mode 100644 index 0000000000..78d71175fd --- /dev/null +++ b/docs/docs/auto-docs/GraphQl/Mutations/VenueMutations/README.md @@ -0,0 +1,13 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / GraphQl/Mutations/VenueMutations + +# GraphQl/Mutations/VenueMutations + +## Variables + +- [CREATE\_VENUE\_MUTATION](variables/CREATE_VENUE_MUTATION.md) +- [DELETE\_VENUE\_MUTATION](variables/DELETE_VENUE_MUTATION.md) +- [UPDATE\_VENUE\_MUTATION](variables/UPDATE_VENUE_MUTATION.md) diff --git a/docs/docs/auto-docs/GraphQl/Mutations/VenueMutations/variables/CREATE_VENUE_MUTATION.md b/docs/docs/auto-docs/GraphQl/Mutations/VenueMutations/variables/CREATE_VENUE_MUTATION.md new file mode 100644 index 0000000000..9c571ff4dc --- /dev/null +++ b/docs/docs/auto-docs/GraphQl/Mutations/VenueMutations/variables/CREATE_VENUE_MUTATION.md @@ -0,0 +1,33 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [GraphQl/Mutations/VenueMutations](../README.md) / CREATE\_VENUE\_MUTATION + +# Variable: CREATE\_VENUE\_MUTATION + +> `const` **CREATE\_VENUE\_MUTATION**: `DocumentNode` + +Defined in: [src/GraphQl/Mutations/VenueMutations.ts:13](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/GraphQl/Mutations/VenueMutations.ts#L13) + +GraphQL mutation to create a venue. + +## Param + +Name of the venue. + +## Param + +Ineteger representing capacity of venue. + +## Param + +Description of the venue. + +## Param + +Image file for the venue. + +## Param + +Organization to which the ActionItemCategory belongs. diff --git a/docs/docs/auto-docs/GraphQl/Mutations/VenueMutations/variables/DELETE_VENUE_MUTATION.md b/docs/docs/auto-docs/GraphQl/Mutations/VenueMutations/variables/DELETE_VENUE_MUTATION.md new file mode 100644 index 0000000000..ad7fffd1c7 --- /dev/null +++ b/docs/docs/auto-docs/GraphQl/Mutations/VenueMutations/variables/DELETE_VENUE_MUTATION.md @@ -0,0 +1,17 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [GraphQl/Mutations/VenueMutations](../README.md) / DELETE\_VENUE\_MUTATION + +# Variable: DELETE\_VENUE\_MUTATION + +> `const` **DELETE\_VENUE\_MUTATION**: `DocumentNode` + +Defined in: [src/GraphQl/Mutations/VenueMutations.ts:73](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/GraphQl/Mutations/VenueMutations.ts#L73) + +GraphQL mutation to delete a venue. + +## Param + +The id of the Venue to be deleted. diff --git a/docs/docs/auto-docs/GraphQl/Mutations/VenueMutations/variables/UPDATE_VENUE_MUTATION.md b/docs/docs/auto-docs/GraphQl/Mutations/VenueMutations/variables/UPDATE_VENUE_MUTATION.md new file mode 100644 index 0000000000..e9a0515c4d --- /dev/null +++ b/docs/docs/auto-docs/GraphQl/Mutations/VenueMutations/variables/UPDATE_VENUE_MUTATION.md @@ -0,0 +1,33 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [GraphQl/Mutations/VenueMutations](../README.md) / UPDATE\_VENUE\_MUTATION + +# Variable: UPDATE\_VENUE\_MUTATION + +> `const` **UPDATE\_VENUE\_MUTATION**: `DocumentNode` + +Defined in: [src/GraphQl/Mutations/VenueMutations.ts:45](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/GraphQl/Mutations/VenueMutations.ts#L45) + +GraphQL mutation to update a venue. + +## Param + +The id of the Venue to be updated. + +## Param + +Ineteger representing capacity of venue. + +## Param + +Description of the venue. + +## Param + +Image file for the venue. + +## Param + +Name of the venue. diff --git a/docs/docs/auto-docs/GraphQl/Mutations/mutations/README.md b/docs/docs/auto-docs/GraphQl/Mutations/mutations/README.md new file mode 100644 index 0000000000..57aa6032b2 --- /dev/null +++ b/docs/docs/auto-docs/GraphQl/Mutations/mutations/README.md @@ -0,0 +1,224 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / GraphQl/Mutations/mutations + +# GraphQl/Mutations/mutations + +## Variables + +- [ACCEPT\_ORGANIZATION\_REQUEST\_MUTATION](variables/ACCEPT_ORGANIZATION_REQUEST_MUTATION.md) +- [ADD\_ADMIN\_MUTATION](variables/ADD_ADMIN_MUTATION.md) +- [ADD\_ADVERTISEMENT\_MUTATION](variables/ADD_ADVERTISEMENT_MUTATION.md) +- [ADD\_MEMBER\_MUTATION](variables/ADD_MEMBER_MUTATION.md) +- [ADD\_PLUGIN\_MUTATION](variables/ADD_PLUGIN_MUTATION.md) +- [ADDRESS\_DETAILS\_FRAGMENT](variables/ADDRESS_DETAILS_FRAGMENT.md) +- [BLOCK\_USER\_MUTATION](variables/BLOCK_USER_MUTATION.md) +- [CREATE\_EVENT\_MUTATION](variables/CREATE_EVENT_MUTATION.md) +- [CREATE\_ORGANIZATION\_MUTATION](variables/CREATE_ORGANIZATION_MUTATION.md) +- [CREATE\_POST\_MUTATION](variables/CREATE_POST_MUTATION.md) +- [DELETE\_ADVERTISEMENT\_BY\_ID](variables/DELETE_ADVERTISEMENT_BY_ID.md) +- [DELETE\_EVENT\_MUTATION](variables/DELETE_EVENT_MUTATION.md) +- [DELETE\_ORGANIZATION\_MUTATION](variables/DELETE_ORGANIZATION_MUTATION.md) +- [DELETE\_POST\_MUTATION](variables/DELETE_POST_MUTATION.md) +- [DONATE\_TO\_ORGANIZATION](variables/DONATE_TO_ORGANIZATION.md) +- [FORGOT\_PASSWORD\_MUTATION](variables/FORGOT_PASSWORD_MUTATION.md) +- [GENERATE\_OTP\_MUTATION](variables/GENERATE_OTP_MUTATION.md) +- [LIKE\_POST](variables/LIKE_POST.md) +- [LOGIN\_MUTATION](variables/LOGIN_MUTATION.md) +- [RECAPTCHA\_MUTATION](variables/RECAPTCHA_MUTATION.md) +- [REFRESH\_TOKEN\_MUTATION](variables/REFRESH_TOKEN_MUTATION.md) +- [REGISTER\_EVENT](variables/REGISTER_EVENT.md) +- [REJECT\_ORGANIZATION\_REQUEST\_MUTATION](variables/REJECT_ORGANIZATION_REQUEST_MUTATION.md) +- [REMOVE\_ADMIN\_MUTATION](variables/REMOVE_ADMIN_MUTATION.md) +- [REMOVE\_MEMBER\_MUTATION](variables/REMOVE_MEMBER_MUTATION.md) +- [RESET\_COMMUNITY](variables/RESET_COMMUNITY.md) +- [REVOKE\_REFRESH\_TOKEN](variables/REVOKE_REFRESH_TOKEN.md) +- [SIGNUP\_MUTATION](variables/SIGNUP_MUTATION.md) +- [UNBLOCK\_USER\_MUTATION](variables/UNBLOCK_USER_MUTATION.md) +- [UNLIKE\_POST](variables/UNLIKE_POST.md) +- [UPDATE\_ADVERTISEMENT\_MUTATION](variables/UPDATE_ADVERTISEMENT_MUTATION.md) +- [UPDATE\_COMMUNITY](variables/UPDATE_COMMUNITY.md) +- [UPDATE\_EVENT\_MUTATION](variables/UPDATE_EVENT_MUTATION.md) +- [UPDATE\_INSTALL\_STATUS\_PLUGIN\_MUTATION](variables/UPDATE_INSTALL_STATUS_PLUGIN_MUTATION.md) +- [UPDATE\_ORG\_STATUS\_PLUGIN\_MUTATION](variables/UPDATE_ORG_STATUS_PLUGIN_MUTATION.md) +- [UPDATE\_ORGANIZATION\_MUTATION](variables/UPDATE_ORGANIZATION_MUTATION.md) +- [UPDATE\_POST\_MUTATION](variables/UPDATE_POST_MUTATION.md) +- [UPDATE\_SESSION\_TIMEOUT](variables/UPDATE_SESSION_TIMEOUT.md) +- [UPDATE\_USER\_MUTATION](variables/UPDATE_USER_MUTATION.md) +- [UPDATE\_USER\_PASSWORD\_MUTATION](variables/UPDATE_USER_PASSWORD_MUTATION.md) + +## References + +### ADD\_CUSTOM\_FIELD + +Re-exports [ADD_CUSTOM_FIELD](../OrganizationMutations/variables/ADD_CUSTOM_FIELD.md) + +*** + +### ADD\_EVENT\_ATTENDEE + +Re-exports [ADD_EVENT_ATTENDEE](../EventAttendeeMutations/variables/ADD_EVENT_ATTENDEE.md) + +*** + +### CREATE\_ACTION\_ITEM\_CATEGORY\_MUTATION + +Re-exports [CREATE_ACTION_ITEM_CATEGORY_MUTATION](../ActionItemCategoryMutations/variables/CREATE_ACTION_ITEM_CATEGORY_MUTATION.md) + +*** + +### CREATE\_ACTION\_ITEM\_MUTATION + +Re-exports [CREATE_ACTION_ITEM_MUTATION](../ActionItemMutations/variables/CREATE_ACTION_ITEM_MUTATION.md) + +*** + +### CREATE\_AGENDA\_ITEM\_CATEGORY\_MUTATION + +Re-exports [CREATE_AGENDA_ITEM_CATEGORY_MUTATION](../AgendaCategoryMutations/variables/CREATE_AGENDA_ITEM_CATEGORY_MUTATION.md) + +*** + +### CREATE\_AGENDA\_ITEM\_MUTATION + +Re-exports [CREATE_AGENDA_ITEM_MUTATION](../AgendaItemMutations/variables/CREATE_AGENDA_ITEM_MUTATION.md) + +*** + +### CREATE\_COMMENT\_POST + +Re-exports [CREATE_COMMENT_POST](../CommentMutations/variables/CREATE_COMMENT_POST.md) + +*** + +### CREATE\_SAMPLE\_ORGANIZATION\_MUTATION + +Re-exports [CREATE_SAMPLE_ORGANIZATION_MUTATION](../OrganizationMutations/variables/CREATE_SAMPLE_ORGANIZATION_MUTATION.md) + +*** + +### CREATE\_VENUE\_MUTATION + +Re-exports [CREATE_VENUE_MUTATION](../VenueMutations/variables/CREATE_VENUE_MUTATION.md) + +*** + +### DELETE\_ACTION\_ITEM\_MUTATION + +Re-exports [DELETE_ACTION_ITEM_MUTATION](../ActionItemMutations/variables/DELETE_ACTION_ITEM_MUTATION.md) + +*** + +### DELETE\_AGENDA\_ITEM\_CATEGORY\_MUTATION + +Re-exports [DELETE_AGENDA_ITEM_CATEGORY_MUTATION](../AgendaCategoryMutations/variables/DELETE_AGENDA_ITEM_CATEGORY_MUTATION.md) + +*** + +### DELETE\_AGENDA\_ITEM\_MUTATION + +Re-exports [DELETE_AGENDA_ITEM_MUTATION](../AgendaItemMutations/variables/DELETE_AGENDA_ITEM_MUTATION.md) + +*** + +### DELETE\_VENUE\_MUTATION + +Re-exports [DELETE_VENUE_MUTATION](../VenueMutations/variables/DELETE_VENUE_MUTATION.md) + +*** + +### JOIN\_PUBLIC\_ORGANIZATION + +Re-exports [JOIN_PUBLIC_ORGANIZATION](../OrganizationMutations/variables/JOIN_PUBLIC_ORGANIZATION.md) + +*** + +### LIKE\_COMMENT + +Re-exports [LIKE_COMMENT](../CommentMutations/variables/LIKE_COMMENT.md) + +*** + +### MARK\_CHECKIN + +Re-exports [MARK_CHECKIN](../EventAttendeeMutations/variables/MARK_CHECKIN.md) + +*** + +### PLUGIN\_SUBSCRIPTION + +Re-exports [PLUGIN_SUBSCRIPTION](../OrganizationMutations/variables/PLUGIN_SUBSCRIPTION.md) + +*** + +### REMOVE\_CUSTOM\_FIELD + +Re-exports [REMOVE_CUSTOM_FIELD](../OrganizationMutations/variables/REMOVE_CUSTOM_FIELD.md) + +*** + +### REMOVE\_EVENT\_ATTENDEE + +Re-exports [REMOVE_EVENT_ATTENDEE](../EventAttendeeMutations/variables/REMOVE_EVENT_ATTENDEE.md) + +*** + +### REMOVE\_SAMPLE\_ORGANIZATION\_MUTATION + +Re-exports [REMOVE_SAMPLE_ORGANIZATION_MUTATION](../OrganizationMutations/variables/REMOVE_SAMPLE_ORGANIZATION_MUTATION.md) + +*** + +### SEND\_MEMBERSHIP\_REQUEST + +Re-exports [SEND_MEMBERSHIP_REQUEST](../OrganizationMutations/variables/SEND_MEMBERSHIP_REQUEST.md) + +*** + +### TOGGLE\_PINNED\_POST + +Re-exports [TOGGLE_PINNED_POST](../OrganizationMutations/variables/TOGGLE_PINNED_POST.md) + +*** + +### UNLIKE\_COMMENT + +Re-exports [UNLIKE_COMMENT](../CommentMutations/variables/UNLIKE_COMMENT.md) + +*** + +### UPDATE\_ACTION\_ITEM\_CATEGORY\_MUTATION + +Re-exports [UPDATE_ACTION_ITEM_CATEGORY_MUTATION](../ActionItemCategoryMutations/variables/UPDATE_ACTION_ITEM_CATEGORY_MUTATION.md) + +*** + +### UPDATE\_ACTION\_ITEM\_MUTATION + +Re-exports [UPDATE_ACTION_ITEM_MUTATION](../ActionItemMutations/variables/UPDATE_ACTION_ITEM_MUTATION.md) + +*** + +### UPDATE\_AGENDA\_ITEM\_CATEGORY\_MUTATION + +Re-exports [UPDATE_AGENDA_ITEM_CATEGORY_MUTATION](../AgendaCategoryMutations/variables/UPDATE_AGENDA_ITEM_CATEGORY_MUTATION.md) + +*** + +### UPDATE\_AGENDA\_ITEM\_MUTATION + +Re-exports [UPDATE_AGENDA_ITEM_MUTATION](../AgendaItemMutations/variables/UPDATE_AGENDA_ITEM_MUTATION.md) + +*** + +### UPDATE\_USER\_ROLE\_IN\_ORG\_MUTATION + +Re-exports [UPDATE_USER_ROLE_IN_ORG_MUTATION](../OrganizationMutations/variables/UPDATE_USER_ROLE_IN_ORG_MUTATION.md) + +*** + +### UPDATE\_VENUE\_MUTATION + +Re-exports [UPDATE_VENUE_MUTATION](../VenueMutations/variables/UPDATE_VENUE_MUTATION.md) diff --git a/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/ACCEPT_ORGANIZATION_REQUEST_MUTATION.md b/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/ACCEPT_ORGANIZATION_REQUEST_MUTATION.md new file mode 100644 index 0000000000..7995ace3fb --- /dev/null +++ b/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/ACCEPT_ORGANIZATION_REQUEST_MUTATION.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [GraphQl/Mutations/mutations](../README.md) / ACCEPT\_ORGANIZATION\_REQUEST\_MUTATION + +# Variable: ACCEPT\_ORGANIZATION\_REQUEST\_MUTATION + +> `const` **ACCEPT\_ORGANIZATION\_REQUEST\_MUTATION**: `DocumentNode` + +Defined in: [src/GraphQl/Mutations/mutations.ts:33](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/GraphQl/Mutations/mutations.ts#L33) diff --git a/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/ADDRESS_DETAILS_FRAGMENT.md b/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/ADDRESS_DETAILS_FRAGMENT.md new file mode 100644 index 0000000000..9499c2ce66 --- /dev/null +++ b/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/ADDRESS_DETAILS_FRAGMENT.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [GraphQl/Mutations/mutations](../README.md) / ADDRESS\_DETAILS\_FRAGMENT + +# Variable: ADDRESS\_DETAILS\_FRAGMENT + +> `const` **ADDRESS\_DETAILS\_FRAGMENT**: `DocumentNode` + +Defined in: [src/GraphQl/Mutations/mutations.ts:70](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/GraphQl/Mutations/mutations.ts#L70) diff --git a/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/ADD_ADMIN_MUTATION.md b/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/ADD_ADMIN_MUTATION.md new file mode 100644 index 0000000000..8cf4d079c7 --- /dev/null +++ b/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/ADD_ADMIN_MUTATION.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [GraphQl/Mutations/mutations](../README.md) / ADD\_ADMIN\_MUTATION + +# Variable: ADD\_ADMIN\_MUTATION + +> `const` **ADD\_ADMIN\_MUTATION**: `DocumentNode` + +Defined in: [src/GraphQl/Mutations/mutations.ts:351](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/GraphQl/Mutations/mutations.ts#L351) diff --git a/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/ADD_ADVERTISEMENT_MUTATION.md b/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/ADD_ADVERTISEMENT_MUTATION.md new file mode 100644 index 0000000000..dafa36c167 --- /dev/null +++ b/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/ADD_ADVERTISEMENT_MUTATION.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [GraphQl/Mutations/mutations](../README.md) / ADD\_ADVERTISEMENT\_MUTATION + +# Variable: ADD\_ADVERTISEMENT\_MUTATION + +> `const` **ADD\_ADVERTISEMENT\_MUTATION**: `DocumentNode` + +Defined in: [src/GraphQl/Mutations/mutations.ts:486](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/GraphQl/Mutations/mutations.ts#L486) diff --git a/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/ADD_MEMBER_MUTATION.md b/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/ADD_MEMBER_MUTATION.md new file mode 100644 index 0000000000..265bcf8e66 --- /dev/null +++ b/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/ADD_MEMBER_MUTATION.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [GraphQl/Mutations/mutations](../README.md) / ADD\_MEMBER\_MUTATION + +# Variable: ADD\_MEMBER\_MUTATION + +> `const` **ADD\_MEMBER\_MUTATION**: `DocumentNode` + +Defined in: [src/GraphQl/Mutations/mutations.ts:361](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/GraphQl/Mutations/mutations.ts#L361) diff --git a/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/ADD_PLUGIN_MUTATION.md b/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/ADD_PLUGIN_MUTATION.md new file mode 100644 index 0000000000..e42801cfad --- /dev/null +++ b/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/ADD_PLUGIN_MUTATION.md @@ -0,0 +1,15 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [GraphQl/Mutations/mutations](../README.md) / ADD\_PLUGIN\_MUTATION + +# Variable: ADD\_PLUGIN\_MUTATION + +> `const` **ADD\_PLUGIN\_MUTATION**: `DocumentNode` + +Defined in: [src/GraphQl/Mutations/mutations.ts:468](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/GraphQl/Mutations/mutations.ts#L468) + +## Remarks + +used `createPlugin` to add new Plugin in database diff --git a/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/BLOCK_USER_MUTATION.md b/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/BLOCK_USER_MUTATION.md new file mode 100644 index 0000000000..3f63b9c51b --- /dev/null +++ b/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/BLOCK_USER_MUTATION.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [GraphQl/Mutations/mutations](../README.md) / BLOCK\_USER\_MUTATION + +# Variable: BLOCK\_USER\_MUTATION + +> `const` **BLOCK\_USER\_MUTATION**: `DocumentNode` + +Defined in: [src/GraphQl/Mutations/mutations.ts:13](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/GraphQl/Mutations/mutations.ts#L13) diff --git a/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/CREATE_EVENT_MUTATION.md b/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/CREATE_EVENT_MUTATION.md new file mode 100644 index 0000000000..64efb7b621 --- /dev/null +++ b/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/CREATE_EVENT_MUTATION.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [GraphQl/Mutations/mutations](../README.md) / CREATE\_EVENT\_MUTATION + +# Variable: CREATE\_EVENT\_MUTATION + +> `const` **CREATE\_EVENT\_MUTATION**: `DocumentNode` + +Defined in: [src/GraphQl/Mutations/mutations.ts:265](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/GraphQl/Mutations/mutations.ts#L265) diff --git a/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/CREATE_ORGANIZATION_MUTATION.md b/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/CREATE_ORGANIZATION_MUTATION.md new file mode 100644 index 0000000000..2c5258a5dc --- /dev/null +++ b/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/CREATE_ORGANIZATION_MUTATION.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [GraphQl/Mutations/mutations](../README.md) / CREATE\_ORGANIZATION\_MUTATION + +# Variable: CREATE\_ORGANIZATION\_MUTATION + +> `const` **CREATE\_ORGANIZATION\_MUTATION**: `DocumentNode` + +Defined in: [src/GraphQl/Mutations/mutations.ts:227](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/GraphQl/Mutations/mutations.ts#L227) diff --git a/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/CREATE_POST_MUTATION.md b/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/CREATE_POST_MUTATION.md new file mode 100644 index 0000000000..7794b841a2 --- /dev/null +++ b/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/CREATE_POST_MUTATION.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [GraphQl/Mutations/mutations](../README.md) / CREATE\_POST\_MUTATION + +# Variable: CREATE\_POST\_MUTATION + +> `const` **CREATE\_POST\_MUTATION**: `DocumentNode` + +Defined in: [src/GraphQl/Mutations/mutations.ts:371](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/GraphQl/Mutations/mutations.ts#L371) diff --git a/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/DELETE_ADVERTISEMENT_BY_ID.md b/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/DELETE_ADVERTISEMENT_BY_ID.md new file mode 100644 index 0000000000..9380bf9932 --- /dev/null +++ b/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/DELETE_ADVERTISEMENT_BY_ID.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [GraphQl/Mutations/mutations](../README.md) / DELETE\_ADVERTISEMENT\_BY\_ID + +# Variable: DELETE\_ADVERTISEMENT\_BY\_ID + +> `const` **DELETE\_ADVERTISEMENT\_BY\_ID**: `DocumentNode` + +Defined in: [src/GraphQl/Mutations/mutations.ts:536](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/GraphQl/Mutations/mutations.ts#L536) diff --git a/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/DELETE_EVENT_MUTATION.md b/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/DELETE_EVENT_MUTATION.md new file mode 100644 index 0000000000..57ba70195f --- /dev/null +++ b/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/DELETE_EVENT_MUTATION.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [GraphQl/Mutations/mutations](../README.md) / DELETE\_EVENT\_MUTATION + +# Variable: DELETE\_EVENT\_MUTATION + +> `const` **DELETE\_EVENT\_MUTATION**: `DocumentNode` + +Defined in: [src/GraphQl/Mutations/mutations.ts:321](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/GraphQl/Mutations/mutations.ts#L321) diff --git a/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/DELETE_ORGANIZATION_MUTATION.md b/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/DELETE_ORGANIZATION_MUTATION.md new file mode 100644 index 0000000000..f2b84e5df7 --- /dev/null +++ b/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/DELETE_ORGANIZATION_MUTATION.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [GraphQl/Mutations/mutations](../README.md) / DELETE\_ORGANIZATION\_MUTATION + +# Variable: DELETE\_ORGANIZATION\_MUTATION + +> `const` **DELETE\_ORGANIZATION\_MUTATION**: `DocumentNode` + +Defined in: [src/GraphQl/Mutations/mutations.ts:253](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/GraphQl/Mutations/mutations.ts#L253) diff --git a/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/DELETE_POST_MUTATION.md b/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/DELETE_POST_MUTATION.md new file mode 100644 index 0000000000..f52fb21866 --- /dev/null +++ b/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/DELETE_POST_MUTATION.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [GraphQl/Mutations/mutations](../README.md) / DELETE\_POST\_MUTATION + +# Variable: DELETE\_POST\_MUTATION + +> `const` **DELETE\_POST\_MUTATION**: `DocumentNode` + +Defined in: [src/GraphQl/Mutations/mutations.ts:397](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/GraphQl/Mutations/mutations.ts#L397) diff --git a/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/DONATE_TO_ORGANIZATION.md b/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/DONATE_TO_ORGANIZATION.md new file mode 100644 index 0000000000..2b78bbc859 --- /dev/null +++ b/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/DONATE_TO_ORGANIZATION.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [GraphQl/Mutations/mutations](../README.md) / DONATE\_TO\_ORGANIZATION + +# Variable: DONATE\_TO\_ORGANIZATION + +> `const` **DONATE\_TO\_ORGANIZATION**: `DocumentNode` + +Defined in: [src/GraphQl/Mutations/mutations.ts:663](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/GraphQl/Mutations/mutations.ts#L663) diff --git a/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/FORGOT_PASSWORD_MUTATION.md b/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/FORGOT_PASSWORD_MUTATION.md new file mode 100644 index 0000000000..784d7013a7 --- /dev/null +++ b/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/FORGOT_PASSWORD_MUTATION.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [GraphQl/Mutations/mutations](../README.md) / FORGOT\_PASSWORD\_MUTATION + +# Variable: FORGOT\_PASSWORD\_MUTATION + +> `const` **FORGOT\_PASSWORD\_MUTATION**: `DocumentNode` + +Defined in: [src/GraphQl/Mutations/mutations.ts:413](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/GraphQl/Mutations/mutations.ts#L413) diff --git a/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/GENERATE_OTP_MUTATION.md b/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/GENERATE_OTP_MUTATION.md new file mode 100644 index 0000000000..c40a235e19 --- /dev/null +++ b/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/GENERATE_OTP_MUTATION.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [GraphQl/Mutations/mutations](../README.md) / GENERATE\_OTP\_MUTATION + +# Variable: GENERATE\_OTP\_MUTATION + +> `const` **GENERATE\_OTP\_MUTATION**: `DocumentNode` + +Defined in: [src/GraphQl/Mutations/mutations.ts:405](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/GraphQl/Mutations/mutations.ts#L405) diff --git a/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/LIKE_POST.md b/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/LIKE_POST.md new file mode 100644 index 0000000000..ec3058ba11 --- /dev/null +++ b/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/LIKE_POST.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [GraphQl/Mutations/mutations](../README.md) / LIKE\_POST + +# Variable: LIKE\_POST + +> `const` **LIKE\_POST**: `DocumentNode` + +Defined in: [src/GraphQl/Mutations/mutations.ts:621](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/GraphQl/Mutations/mutations.ts#L621) diff --git a/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/LOGIN_MUTATION.md b/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/LOGIN_MUTATION.md new file mode 100644 index 0000000000..edab8e30f2 --- /dev/null +++ b/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/LOGIN_MUTATION.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [GraphQl/Mutations/mutations](../README.md) / LOGIN\_MUTATION + +# Variable: LOGIN\_MUTATION + +> `const` **LOGIN\_MUTATION**: `DocumentNode` + +Defined in: [src/GraphQl/Mutations/mutations.ts:175](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/GraphQl/Mutations/mutations.ts#L175) diff --git a/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/RECAPTCHA_MUTATION.md b/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/RECAPTCHA_MUTATION.md new file mode 100644 index 0000000000..6d66d7c5f9 --- /dev/null +++ b/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/RECAPTCHA_MUTATION.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [GraphQl/Mutations/mutations](../README.md) / RECAPTCHA\_MUTATION + +# Variable: RECAPTCHA\_MUTATION + +> `const` **RECAPTCHA\_MUTATION**: `DocumentNode` + +Defined in: [src/GraphQl/Mutations/mutations.ts:219](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/GraphQl/Mutations/mutations.ts#L219) diff --git a/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/REFRESH_TOKEN_MUTATION.md b/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/REFRESH_TOKEN_MUTATION.md new file mode 100644 index 0000000000..efa06b13ba --- /dev/null +++ b/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/REFRESH_TOKEN_MUTATION.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [GraphQl/Mutations/mutations](../README.md) / REFRESH\_TOKEN\_MUTATION + +# Variable: REFRESH\_TOKEN\_MUTATION + +> `const` **REFRESH\_TOKEN\_MUTATION**: `DocumentNode` + +Defined in: [src/GraphQl/Mutations/mutations.ts:200](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/GraphQl/Mutations/mutations.ts#L200) diff --git a/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/REGISTER_EVENT.md b/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/REGISTER_EVENT.md new file mode 100644 index 0000000000..1ba014b662 --- /dev/null +++ b/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/REGISTER_EVENT.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [GraphQl/Mutations/mutations](../README.md) / REGISTER\_EVENT + +# Variable: REGISTER\_EVENT + +> `const` **REGISTER\_EVENT**: `DocumentNode` + +Defined in: [src/GraphQl/Mutations/mutations.ts:637](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/GraphQl/Mutations/mutations.ts#L637) diff --git a/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/REJECT_ORGANIZATION_REQUEST_MUTATION.md b/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/REJECT_ORGANIZATION_REQUEST_MUTATION.md new file mode 100644 index 0000000000..0f83658c78 --- /dev/null +++ b/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/REJECT_ORGANIZATION_REQUEST_MUTATION.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [GraphQl/Mutations/mutations](../README.md) / REJECT\_ORGANIZATION\_REQUEST\_MUTATION + +# Variable: REJECT\_ORGANIZATION\_REQUEST\_MUTATION + +> `const` **REJECT\_ORGANIZATION\_REQUEST\_MUTATION**: `DocumentNode` + +Defined in: [src/GraphQl/Mutations/mutations.ts:23](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/GraphQl/Mutations/mutations.ts#L23) diff --git a/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/REMOVE_ADMIN_MUTATION.md b/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/REMOVE_ADMIN_MUTATION.md new file mode 100644 index 0000000000..5c2ee6928a --- /dev/null +++ b/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/REMOVE_ADMIN_MUTATION.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [GraphQl/Mutations/mutations](../README.md) / REMOVE\_ADMIN\_MUTATION + +# Variable: REMOVE\_ADMIN\_MUTATION + +> `const` **REMOVE\_ADMIN\_MUTATION**: `DocumentNode` + +Defined in: [src/GraphQl/Mutations/mutations.ts:333](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/GraphQl/Mutations/mutations.ts#L333) diff --git a/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/REMOVE_MEMBER_MUTATION.md b/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/REMOVE_MEMBER_MUTATION.md new file mode 100644 index 0000000000..f147d17c0d --- /dev/null +++ b/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/REMOVE_MEMBER_MUTATION.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [GraphQl/Mutations/mutations](../README.md) / REMOVE\_MEMBER\_MUTATION + +# Variable: REMOVE\_MEMBER\_MUTATION + +> `const` **REMOVE\_MEMBER\_MUTATION**: `DocumentNode` + +Defined in: [src/GraphQl/Mutations/mutations.ts:342](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/GraphQl/Mutations/mutations.ts#L342) diff --git a/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/RESET_COMMUNITY.md b/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/RESET_COMMUNITY.md new file mode 100644 index 0000000000..d0d7f455ba --- /dev/null +++ b/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/RESET_COMMUNITY.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [GraphQl/Mutations/mutations](../README.md) / RESET\_COMMUNITY + +# Variable: RESET\_COMMUNITY + +> `const` **RESET\_COMMUNITY**: `DocumentNode` + +Defined in: [src/GraphQl/Mutations/mutations.ts:657](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/GraphQl/Mutations/mutations.ts#L657) diff --git a/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/REVOKE_REFRESH_TOKEN.md b/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/REVOKE_REFRESH_TOKEN.md new file mode 100644 index 0000000000..c964d1e87b --- /dev/null +++ b/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/REVOKE_REFRESH_TOKEN.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [GraphQl/Mutations/mutations](../README.md) / REVOKE\_REFRESH\_TOKEN + +# Variable: REVOKE\_REFRESH\_TOKEN + +> `const` **REVOKE\_REFRESH\_TOKEN**: `DocumentNode` + +Defined in: [src/GraphQl/Mutations/mutations.ts:211](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/GraphQl/Mutations/mutations.ts#L211) diff --git a/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/SIGNUP_MUTATION.md b/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/SIGNUP_MUTATION.md new file mode 100644 index 0000000000..482bec1381 --- /dev/null +++ b/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/SIGNUP_MUTATION.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [GraphQl/Mutations/mutations](../README.md) / SIGNUP\_MUTATION + +# Variable: SIGNUP\_MUTATION + +> `const` **SIGNUP\_MUTATION**: `DocumentNode` + +Defined in: [src/GraphQl/Mutations/mutations.ts:147](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/GraphQl/Mutations/mutations.ts#L147) diff --git a/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/UNBLOCK_USER_MUTATION.md b/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/UNBLOCK_USER_MUTATION.md new file mode 100644 index 0000000000..708bcfcf89 --- /dev/null +++ b/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/UNBLOCK_USER_MUTATION.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [GraphQl/Mutations/mutations](../README.md) / UNBLOCK\_USER\_MUTATION + +# Variable: UNBLOCK\_USER\_MUTATION + +> `const` **UNBLOCK\_USER\_MUTATION**: `DocumentNode` + +Defined in: [src/GraphQl/Mutations/mutations.ts:3](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/GraphQl/Mutations/mutations.ts#L3) diff --git a/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/UNLIKE_POST.md b/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/UNLIKE_POST.md new file mode 100644 index 0000000000..b4934f3902 --- /dev/null +++ b/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/UNLIKE_POST.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [GraphQl/Mutations/mutations](../README.md) / UNLIKE\_POST + +# Variable: UNLIKE\_POST + +> `const` **UNLIKE\_POST**: `DocumentNode` + +Defined in: [src/GraphQl/Mutations/mutations.ts:629](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/GraphQl/Mutations/mutations.ts#L629) diff --git a/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/UPDATE_ADVERTISEMENT_MUTATION.md b/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/UPDATE_ADVERTISEMENT_MUTATION.md new file mode 100644 index 0000000000..90f80b3f8d --- /dev/null +++ b/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/UPDATE_ADVERTISEMENT_MUTATION.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [GraphQl/Mutations/mutations](../README.md) / UPDATE\_ADVERTISEMENT\_MUTATION + +# Variable: UPDATE\_ADVERTISEMENT\_MUTATION + +> `const` **UPDATE\_ADVERTISEMENT\_MUTATION**: `DocumentNode` + +Defined in: [src/GraphQl/Mutations/mutations.ts:511](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/GraphQl/Mutations/mutations.ts#L511) diff --git a/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/UPDATE_COMMUNITY.md b/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/UPDATE_COMMUNITY.md new file mode 100644 index 0000000000..6d26f3e039 --- /dev/null +++ b/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/UPDATE_COMMUNITY.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [GraphQl/Mutations/mutations](../README.md) / UPDATE\_COMMUNITY + +# Variable: UPDATE\_COMMUNITY + +> `const` **UPDATE\_COMMUNITY**: `DocumentNode` + +Defined in: [src/GraphQl/Mutations/mutations.ts:645](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/GraphQl/Mutations/mutations.ts#L645) diff --git a/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/UPDATE_EVENT_MUTATION.md b/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/UPDATE_EVENT_MUTATION.md new file mode 100644 index 0000000000..762a964e0e --- /dev/null +++ b/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/UPDATE_EVENT_MUTATION.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [GraphQl/Mutations/mutations](../README.md) / UPDATE\_EVENT\_MUTATION + +# Variable: UPDATE\_EVENT\_MUTATION + +> `const` **UPDATE\_EVENT\_MUTATION**: `DocumentNode` + +Defined in: [src/GraphQl/Mutations/mutations.ts:567](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/GraphQl/Mutations/mutations.ts#L567) diff --git a/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/UPDATE_INSTALL_STATUS_PLUGIN_MUTATION.md b/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/UPDATE_INSTALL_STATUS_PLUGIN_MUTATION.md new file mode 100644 index 0000000000..75360437d4 --- /dev/null +++ b/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/UPDATE_INSTALL_STATUS_PLUGIN_MUTATION.md @@ -0,0 +1,15 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [GraphQl/Mutations/mutations](../README.md) / UPDATE\_INSTALL\_STATUS\_PLUGIN\_MUTATION + +# Variable: UPDATE\_INSTALL\_STATUS\_PLUGIN\_MUTATION + +> `const` **UPDATE\_INSTALL\_STATUS\_PLUGIN\_MUTATION**: `DocumentNode` + +Defined in: [src/GraphQl/Mutations/mutations.ts:434](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/GraphQl/Mutations/mutations.ts#L434) + +## Remarks + +used to toggle `installStatus` (boolean value) of a Plugin diff --git a/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/UPDATE_ORGANIZATION_MUTATION.md b/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/UPDATE_ORGANIZATION_MUTATION.md new file mode 100644 index 0000000000..766a9b1b41 --- /dev/null +++ b/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/UPDATE_ORGANIZATION_MUTATION.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [GraphQl/Mutations/mutations](../README.md) / UPDATE\_ORGANIZATION\_MUTATION + +# Variable: UPDATE\_ORGANIZATION\_MUTATION + +> `const` **UPDATE\_ORGANIZATION\_MUTATION**: `DocumentNode` + +Defined in: [src/GraphQl/Mutations/mutations.ts:43](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/GraphQl/Mutations/mutations.ts#L43) diff --git a/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/UPDATE_ORG_STATUS_PLUGIN_MUTATION.md b/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/UPDATE_ORG_STATUS_PLUGIN_MUTATION.md new file mode 100644 index 0000000000..f31abd61cb --- /dev/null +++ b/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/UPDATE_ORG_STATUS_PLUGIN_MUTATION.md @@ -0,0 +1,15 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [GraphQl/Mutations/mutations](../README.md) / UPDATE\_ORG\_STATUS\_PLUGIN\_MUTATION + +# Variable: UPDATE\_ORG\_STATUS\_PLUGIN\_MUTATION + +> `const` **UPDATE\_ORG\_STATUS\_PLUGIN\_MUTATION**: `DocumentNode` + +Defined in: [src/GraphQl/Mutations/mutations.ts:451](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/GraphQl/Mutations/mutations.ts#L451) + +## Remarks + +used `updatePluginStatus`to add or remove the current Organization the in the plugin list `uninstalledOrgs` diff --git a/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/UPDATE_POST_MUTATION.md b/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/UPDATE_POST_MUTATION.md new file mode 100644 index 0000000000..c644b61df5 --- /dev/null +++ b/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/UPDATE_POST_MUTATION.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [GraphQl/Mutations/mutations](../README.md) / UPDATE\_POST\_MUTATION + +# Variable: UPDATE\_POST\_MUTATION + +> `const` **UPDATE\_POST\_MUTATION**: `DocumentNode` + +Defined in: [src/GraphQl/Mutations/mutations.ts:545](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/GraphQl/Mutations/mutations.ts#L545) diff --git a/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/UPDATE_SESSION_TIMEOUT.md b/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/UPDATE_SESSION_TIMEOUT.md new file mode 100644 index 0000000000..0b44f04a34 --- /dev/null +++ b/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/UPDATE_SESSION_TIMEOUT.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [GraphQl/Mutations/mutations](../README.md) / UPDATE\_SESSION\_TIMEOUT + +# Variable: UPDATE\_SESSION\_TIMEOUT + +> `const` **UPDATE\_SESSION\_TIMEOUT**: `DocumentNode` + +Defined in: [src/GraphQl/Mutations/mutations.ts:651](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/GraphQl/Mutations/mutations.ts#L651) diff --git a/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/UPDATE_USER_MUTATION.md b/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/UPDATE_USER_MUTATION.md new file mode 100644 index 0000000000..8d1e042c76 --- /dev/null +++ b/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/UPDATE_USER_MUTATION.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [GraphQl/Mutations/mutations](../README.md) / UPDATE\_USER\_MUTATION + +# Variable: UPDATE\_USER\_MUTATION + +> `const` **UPDATE\_USER\_MUTATION**: `DocumentNode` + +Defined in: [src/GraphQl/Mutations/mutations.ts:85](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/GraphQl/Mutations/mutations.ts#L85) diff --git a/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/UPDATE_USER_PASSWORD_MUTATION.md b/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/UPDATE_USER_PASSWORD_MUTATION.md new file mode 100644 index 0000000000..dbd853f88f --- /dev/null +++ b/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/UPDATE_USER_PASSWORD_MUTATION.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [GraphQl/Mutations/mutations](../README.md) / UPDATE\_USER\_PASSWORD\_MUTATION + +# Variable: UPDATE\_USER\_PASSWORD\_MUTATION + +> `const` **UPDATE\_USER\_PASSWORD\_MUTATION**: `DocumentNode` + +Defined in: [src/GraphQl/Mutations/mutations.ts:125](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/GraphQl/Mutations/mutations.ts#L125) diff --git a/docs/docs/auto-docs/GraphQl/Queries/ActionItemCategoryQueries/README.md b/docs/docs/auto-docs/GraphQl/Queries/ActionItemCategoryQueries/README.md new file mode 100644 index 0000000000..8136f04a59 --- /dev/null +++ b/docs/docs/auto-docs/GraphQl/Queries/ActionItemCategoryQueries/README.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / GraphQl/Queries/ActionItemCategoryQueries + +# GraphQl/Queries/ActionItemCategoryQueries + +## Variables + +- [ACTION\_ITEM\_CATEGORY\_LIST](variables/ACTION_ITEM_CATEGORY_LIST.md) diff --git a/docs/docs/auto-docs/GraphQl/Queries/ActionItemCategoryQueries/variables/ACTION_ITEM_CATEGORY_LIST.md b/docs/docs/auto-docs/GraphQl/Queries/ActionItemCategoryQueries/variables/ACTION_ITEM_CATEGORY_LIST.md new file mode 100644 index 0000000000..45f4661fe6 --- /dev/null +++ b/docs/docs/auto-docs/GraphQl/Queries/ActionItemCategoryQueries/variables/ACTION_ITEM_CATEGORY_LIST.md @@ -0,0 +1,21 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [GraphQl/Queries/ActionItemCategoryQueries](../README.md) / ACTION\_ITEM\_CATEGORY\_LIST + +# Variable: ACTION\_ITEM\_CATEGORY\_LIST + +> `const` **ACTION\_ITEM\_CATEGORY\_LIST**: `DocumentNode` + +Defined in: [src/GraphQl/Queries/ActionItemCategoryQueries.ts:10](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/GraphQl/Queries/ActionItemCategoryQueries.ts#L10) + +GraphQL query to retrieve action item categories by organization. + +## Param + +The ID of the organization for which action item categories are being retrieved. + +## Returns + +The list of action item categories associated with the organization. diff --git a/docs/docs/auto-docs/GraphQl/Queries/ActionItemQueries/README.md b/docs/docs/auto-docs/GraphQl/Queries/ActionItemQueries/README.md new file mode 100644 index 0000000000..e1ceadc0ec --- /dev/null +++ b/docs/docs/auto-docs/GraphQl/Queries/ActionItemQueries/README.md @@ -0,0 +1,12 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / GraphQl/Queries/ActionItemQueries + +# GraphQl/Queries/ActionItemQueries + +## Variables + +- [ACTION\_ITEM\_LIST](variables/ACTION_ITEM_LIST.md) +- [ACTION\_ITEMS\_BY\_USER](variables/ACTION_ITEMS_BY_USER.md) diff --git a/docs/docs/auto-docs/GraphQl/Queries/ActionItemQueries/variables/ACTION_ITEMS_BY_USER.md b/docs/docs/auto-docs/GraphQl/Queries/ActionItemQueries/variables/ACTION_ITEMS_BY_USER.md new file mode 100644 index 0000000000..c5971698aa --- /dev/null +++ b/docs/docs/auto-docs/GraphQl/Queries/ActionItemQueries/variables/ACTION_ITEMS_BY_USER.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [GraphQl/Queries/ActionItemQueries](../README.md) / ACTION\_ITEMS\_BY\_USER + +# Variable: ACTION\_ITEMS\_BY\_USER + +> `const` **ACTION\_ITEMS\_BY\_USER**: `DocumentNode` + +Defined in: [src/GraphQl/Queries/ActionItemQueries.ts:78](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/GraphQl/Queries/ActionItemQueries.ts#L78) diff --git a/docs/docs/auto-docs/GraphQl/Queries/ActionItemQueries/variables/ACTION_ITEM_LIST.md b/docs/docs/auto-docs/GraphQl/Queries/ActionItemQueries/variables/ACTION_ITEM_LIST.md new file mode 100644 index 0000000000..a06dba4e2a --- /dev/null +++ b/docs/docs/auto-docs/GraphQl/Queries/ActionItemQueries/variables/ACTION_ITEM_LIST.md @@ -0,0 +1,37 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [GraphQl/Queries/ActionItemQueries](../README.md) / ACTION\_ITEM\_LIST + +# Variable: ACTION\_ITEM\_LIST + +> `const` **ACTION\_ITEM\_LIST**: `DocumentNode` + +Defined in: [src/GraphQl/Queries/ActionItemQueries.ts:14](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/GraphQl/Queries/ActionItemQueries.ts#L14) + +GraphQL query to retrieve action item categories by organization. + +## Param + +The ID of the organization for which action item categories are being retrieved. + +## Param + +Sort action items Latest/Earliest first. + +## Param + +Filter action items belonging to an action item category. + +## Param + +Filter action items belonging to an event. + +## Param + +Filter all the completed action items. + +## Returns + +The list of action item categories associated with the organization. diff --git a/docs/docs/auto-docs/GraphQl/Queries/AgendaCategoryQueries/README.md b/docs/docs/auto-docs/GraphQl/Queries/AgendaCategoryQueries/README.md new file mode 100644 index 0000000000..ee135197c4 --- /dev/null +++ b/docs/docs/auto-docs/GraphQl/Queries/AgendaCategoryQueries/README.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / GraphQl/Queries/AgendaCategoryQueries + +# GraphQl/Queries/AgendaCategoryQueries + +## Variables + +- [AGENDA\_ITEM\_CATEGORY\_LIST](variables/AGENDA_ITEM_CATEGORY_LIST.md) diff --git a/docs/docs/auto-docs/GraphQl/Queries/AgendaCategoryQueries/variables/AGENDA_ITEM_CATEGORY_LIST.md b/docs/docs/auto-docs/GraphQl/Queries/AgendaCategoryQueries/variables/AGENDA_ITEM_CATEGORY_LIST.md new file mode 100644 index 0000000000..0763161698 --- /dev/null +++ b/docs/docs/auto-docs/GraphQl/Queries/AgendaCategoryQueries/variables/AGENDA_ITEM_CATEGORY_LIST.md @@ -0,0 +1,21 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [GraphQl/Queries/AgendaCategoryQueries](../README.md) / AGENDA\_ITEM\_CATEGORY\_LIST + +# Variable: AGENDA\_ITEM\_CATEGORY\_LIST + +> `const` **AGENDA\_ITEM\_CATEGORY\_LIST**: `DocumentNode` + +Defined in: [src/GraphQl/Queries/AgendaCategoryQueries.ts:10](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/GraphQl/Queries/AgendaCategoryQueries.ts#L10) + +GraphQL query to retrieve agenda category by id. + +## Param + +The ID of the category which is being retrieved. + +## Returns + +Agenda category associated with the id. diff --git a/docs/docs/auto-docs/GraphQl/Queries/AgendaItemQueries/README.md b/docs/docs/auto-docs/GraphQl/Queries/AgendaItemQueries/README.md new file mode 100644 index 0000000000..63bdc31b06 --- /dev/null +++ b/docs/docs/auto-docs/GraphQl/Queries/AgendaItemQueries/README.md @@ -0,0 +1,12 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / GraphQl/Queries/AgendaItemQueries + +# GraphQl/Queries/AgendaItemQueries + +## Variables + +- [AgendaItemByEvent](variables/AgendaItemByEvent.md) +- [AgendaItemByOrganization](variables/AgendaItemByOrganization.md) diff --git a/docs/docs/auto-docs/GraphQl/Queries/AgendaItemQueries/variables/AgendaItemByEvent.md b/docs/docs/auto-docs/GraphQl/Queries/AgendaItemQueries/variables/AgendaItemByEvent.md new file mode 100644 index 0000000000..01f6105ed3 --- /dev/null +++ b/docs/docs/auto-docs/GraphQl/Queries/AgendaItemQueries/variables/AgendaItemByEvent.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [GraphQl/Queries/AgendaItemQueries](../README.md) / AgendaItemByEvent + +# Variable: AgendaItemByEvent + +> `const` **AgendaItemByEvent**: `DocumentNode` + +Defined in: [src/GraphQl/Queries/AgendaItemQueries.ts:39](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/GraphQl/Queries/AgendaItemQueries.ts#L39) diff --git a/docs/docs/auto-docs/GraphQl/Queries/AgendaItemQueries/variables/AgendaItemByOrganization.md b/docs/docs/auto-docs/GraphQl/Queries/AgendaItemQueries/variables/AgendaItemByOrganization.md new file mode 100644 index 0000000000..c95024914a --- /dev/null +++ b/docs/docs/auto-docs/GraphQl/Queries/AgendaItemQueries/variables/AgendaItemByOrganization.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [GraphQl/Queries/AgendaItemQueries](../README.md) / AgendaItemByOrganization + +# Variable: AgendaItemByOrganization + +> `const` **AgendaItemByOrganization**: `DocumentNode` + +Defined in: [src/GraphQl/Queries/AgendaItemQueries.ts:3](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/GraphQl/Queries/AgendaItemQueries.ts#L3) diff --git a/docs/docs/auto-docs/GraphQl/Queries/EventVolunteerQueries/README.md b/docs/docs/auto-docs/GraphQl/Queries/EventVolunteerQueries/README.md new file mode 100644 index 0000000000..0c596e0620 --- /dev/null +++ b/docs/docs/auto-docs/GraphQl/Queries/EventVolunteerQueries/README.md @@ -0,0 +1,14 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / GraphQl/Queries/EventVolunteerQueries + +# GraphQl/Queries/EventVolunteerQueries + +## Variables + +- [EVENT\_VOLUNTEER\_GROUP\_LIST](variables/EVENT_VOLUNTEER_GROUP_LIST.md) +- [EVENT\_VOLUNTEER\_LIST](variables/EVENT_VOLUNTEER_LIST.md) +- [USER\_VOLUNTEER\_MEMBERSHIP](variables/USER_VOLUNTEER_MEMBERSHIP.md) +- [VOLUNTEER\_RANKING](variables/VOLUNTEER_RANKING.md) diff --git a/docs/docs/auto-docs/GraphQl/Queries/EventVolunteerQueries/variables/EVENT_VOLUNTEER_GROUP_LIST.md b/docs/docs/auto-docs/GraphQl/Queries/EventVolunteerQueries/variables/EVENT_VOLUNTEER_GROUP_LIST.md new file mode 100644 index 0000000000..6b9e784ce8 --- /dev/null +++ b/docs/docs/auto-docs/GraphQl/Queries/EventVolunteerQueries/variables/EVENT_VOLUNTEER_GROUP_LIST.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [GraphQl/Queries/EventVolunteerQueries](../README.md) / EVENT\_VOLUNTEER\_GROUP\_LIST + +# Variable: EVENT\_VOLUNTEER\_GROUP\_LIST + +> `const` **EVENT\_VOLUNTEER\_GROUP\_LIST**: `DocumentNode` + +Defined in: [src/GraphQl/Queries/EventVolunteerQueries.ts:41](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/GraphQl/Queries/EventVolunteerQueries.ts#L41) diff --git a/docs/docs/auto-docs/GraphQl/Queries/EventVolunteerQueries/variables/EVENT_VOLUNTEER_LIST.md b/docs/docs/auto-docs/GraphQl/Queries/EventVolunteerQueries/variables/EVENT_VOLUNTEER_LIST.md new file mode 100644 index 0000000000..92e7c6e4a6 --- /dev/null +++ b/docs/docs/auto-docs/GraphQl/Queries/EventVolunteerQueries/variables/EVENT_VOLUNTEER_LIST.md @@ -0,0 +1,25 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [GraphQl/Queries/EventVolunteerQueries](../README.md) / EVENT\_VOLUNTEER\_LIST + +# Variable: EVENT\_VOLUNTEER\_LIST + +> `const` **EVENT\_VOLUNTEER\_LIST**: `DocumentNode` + +Defined in: [src/GraphQl/Queries/EventVolunteerQueries.ts:12](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/GraphQl/Queries/EventVolunteerQueries.ts#L12) + +GraphQL query to retrieve event volunteers. + +## Param + +The filter to apply to the query. + +## Param + +The order in which to return the results. + +## Returns + +The list of event volunteers. diff --git a/docs/docs/auto-docs/GraphQl/Queries/EventVolunteerQueries/variables/USER_VOLUNTEER_MEMBERSHIP.md b/docs/docs/auto-docs/GraphQl/Queries/EventVolunteerQueries/variables/USER_VOLUNTEER_MEMBERSHIP.md new file mode 100644 index 0000000000..f3fc5f78f9 --- /dev/null +++ b/docs/docs/auto-docs/GraphQl/Queries/EventVolunteerQueries/variables/USER_VOLUNTEER_MEMBERSHIP.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [GraphQl/Queries/EventVolunteerQueries](../README.md) / USER\_VOLUNTEER\_MEMBERSHIP + +# Variable: USER\_VOLUNTEER\_MEMBERSHIP + +> `const` **USER\_VOLUNTEER\_MEMBERSHIP**: `DocumentNode` + +Defined in: [src/GraphQl/Queries/EventVolunteerQueries.ts:89](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/GraphQl/Queries/EventVolunteerQueries.ts#L89) diff --git a/docs/docs/auto-docs/GraphQl/Queries/EventVolunteerQueries/variables/VOLUNTEER_RANKING.md b/docs/docs/auto-docs/GraphQl/Queries/EventVolunteerQueries/variables/VOLUNTEER_RANKING.md new file mode 100644 index 0000000000..aaca559e66 --- /dev/null +++ b/docs/docs/auto-docs/GraphQl/Queries/EventVolunteerQueries/variables/VOLUNTEER_RANKING.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [GraphQl/Queries/EventVolunteerQueries](../README.md) / VOLUNTEER\_RANKING + +# Variable: VOLUNTEER\_RANKING + +> `const` **VOLUNTEER\_RANKING**: `DocumentNode` + +Defined in: [src/GraphQl/Queries/EventVolunteerQueries.ts:120](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/GraphQl/Queries/EventVolunteerQueries.ts#L120) diff --git a/docs/docs/auto-docs/GraphQl/Queries/OrganizationQueries/README.md b/docs/docs/auto-docs/GraphQl/Queries/OrganizationQueries/README.md new file mode 100644 index 0000000000..3ac3536541 --- /dev/null +++ b/docs/docs/auto-docs/GraphQl/Queries/OrganizationQueries/README.md @@ -0,0 +1,19 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / GraphQl/Queries/OrganizationQueries + +# GraphQl/Queries/OrganizationQueries + +## Variables + +- [ORGANIZATION\_ADMINS\_LIST](variables/ORGANIZATION_ADMINS_LIST.md) +- [ORGANIZATION\_ADVERTISEMENT\_LIST](variables/ORGANIZATION_ADVERTISEMENT_LIST.md) +- [ORGANIZATION\_FUNDS](variables/ORGANIZATION_FUNDS.md) +- [ORGANIZATION\_POST\_LIST](variables/ORGANIZATION_POST_LIST.md) +- [ORGANIZATION\_USER\_TAGS\_LIST](variables/ORGANIZATION_USER_TAGS_LIST.md) +- [USER\_CREATED\_ORGANIZATIONS](variables/USER_CREATED_ORGANIZATIONS.md) +- [USER\_JOINED\_ORGANIZATIONS](variables/USER_JOINED_ORGANIZATIONS.md) +- [USER\_ORGANIZATION\_CONNECTION](variables/USER_ORGANIZATION_CONNECTION.md) +- [VENUE\_LIST](variables/VENUE_LIST.md) diff --git a/docs/docs/auto-docs/GraphQl/Queries/OrganizationQueries/variables/ORGANIZATION_ADMINS_LIST.md b/docs/docs/auto-docs/GraphQl/Queries/OrganizationQueries/variables/ORGANIZATION_ADMINS_LIST.md new file mode 100644 index 0000000000..06d693f77f --- /dev/null +++ b/docs/docs/auto-docs/GraphQl/Queries/OrganizationQueries/variables/ORGANIZATION_ADMINS_LIST.md @@ -0,0 +1,21 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [GraphQl/Queries/OrganizationQueries](../README.md) / ORGANIZATION\_ADMINS\_LIST + +# Variable: ORGANIZATION\_ADMINS\_LIST + +> `const` **ORGANIZATION\_ADMINS\_LIST**: `DocumentNode` + +Defined in: [src/GraphQl/Queries/OrganizationQueries.ts:314](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/GraphQl/Queries/OrganizationQueries.ts#L314) + +GraphQL query to retrieve the list of admins for a specific organization. + +## Param + +The ID of the organization for which admins are being retrieved. + +## Returns + +The list of admins associated with the organization. diff --git a/docs/docs/auto-docs/GraphQl/Queries/OrganizationQueries/variables/ORGANIZATION_ADVERTISEMENT_LIST.md b/docs/docs/auto-docs/GraphQl/Queries/OrganizationQueries/variables/ORGANIZATION_ADVERTISEMENT_LIST.md new file mode 100644 index 0000000000..6b2a583797 --- /dev/null +++ b/docs/docs/auto-docs/GraphQl/Queries/OrganizationQueries/variables/ORGANIZATION_ADVERTISEMENT_LIST.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [GraphQl/Queries/OrganizationQueries](../README.md) / ORGANIZATION\_ADVERTISEMENT\_LIST + +# Variable: ORGANIZATION\_ADVERTISEMENT\_LIST + +> `const` **ORGANIZATION\_ADVERTISEMENT\_LIST**: `DocumentNode` + +Defined in: [src/GraphQl/Queries/OrganizationQueries.ts:134](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/GraphQl/Queries/OrganizationQueries.ts#L134) diff --git a/docs/docs/auto-docs/GraphQl/Queries/OrganizationQueries/variables/ORGANIZATION_FUNDS.md b/docs/docs/auto-docs/GraphQl/Queries/OrganizationQueries/variables/ORGANIZATION_FUNDS.md new file mode 100644 index 0000000000..a07c1a5f42 --- /dev/null +++ b/docs/docs/auto-docs/GraphQl/Queries/OrganizationQueries/variables/ORGANIZATION_FUNDS.md @@ -0,0 +1,21 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [GraphQl/Queries/OrganizationQueries](../README.md) / ORGANIZATION\_FUNDS + +# Variable: ORGANIZATION\_FUNDS + +> `const` **ORGANIZATION\_FUNDS**: `DocumentNode` + +Defined in: [src/GraphQl/Queries/OrganizationQueries.ts:335](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/GraphQl/Queries/OrganizationQueries.ts#L335) + +GraphQL query to retrieve the list of members for a specific organization. + +## Param + +The ID of the organization for which members are being retrieved. + +## Returns + +The list of members associated with the organization. diff --git a/docs/docs/auto-docs/GraphQl/Queries/OrganizationQueries/variables/ORGANIZATION_POST_LIST.md b/docs/docs/auto-docs/GraphQl/Queries/OrganizationQueries/variables/ORGANIZATION_POST_LIST.md new file mode 100644 index 0000000000..6fc631960e --- /dev/null +++ b/docs/docs/auto-docs/GraphQl/Queries/OrganizationQueries/variables/ORGANIZATION_POST_LIST.md @@ -0,0 +1,33 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [GraphQl/Queries/OrganizationQueries](../README.md) / ORGANIZATION\_POST\_LIST + +# Variable: ORGANIZATION\_POST\_LIST + +> `const` **ORGANIZATION\_POST\_LIST**: `DocumentNode` + +Defined in: [src/GraphQl/Queries/OrganizationQueries.ts:15](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/GraphQl/Queries/OrganizationQueries.ts#L15) + +GraphQL query to retrieve the list of organizations. + +## Param + +Optional. Number of organizations to retrieve in the first batch. + +## Param + +Optional. Number of organizations to skip before starting to collect the result set. + +## Param + +Optional. Filter organizations by a specified string. + +## Param + +Optional. The ID of a specific organization to retrieve. + +## Returns + +The list of organizations based on the applied filters. diff --git a/docs/docs/auto-docs/GraphQl/Queries/OrganizationQueries/variables/ORGANIZATION_USER_TAGS_LIST.md b/docs/docs/auto-docs/GraphQl/Queries/OrganizationQueries/variables/ORGANIZATION_USER_TAGS_LIST.md new file mode 100644 index 0000000000..a419be07d5 --- /dev/null +++ b/docs/docs/auto-docs/GraphQl/Queries/OrganizationQueries/variables/ORGANIZATION_USER_TAGS_LIST.md @@ -0,0 +1,37 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [GraphQl/Queries/OrganizationQueries](../README.md) / ORGANIZATION\_USER\_TAGS\_LIST + +# Variable: ORGANIZATION\_USER\_TAGS\_LIST + +> `const` **ORGANIZATION\_USER\_TAGS\_LIST**: `DocumentNode` + +Defined in: [src/GraphQl/Queries/OrganizationQueries.ts:83](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/GraphQl/Queries/OrganizationQueries.ts#L83) + +GraphQL query to retrieve the list of user tags belonging to an organization. + +## Param + +ID of the organization. + +## Param + +Number of tags to retrieve "after" (if provided) a certain tag. + +## Param + +Id of the last tag on the current page. + +## Param + +Number of tags to retrieve "before" (if provided) a certain tag. + +## Param + +Id of the first tag on the current page. + +## Returns + +The list of organizations based on the applied filters. diff --git a/docs/docs/auto-docs/GraphQl/Queries/OrganizationQueries/variables/USER_CREATED_ORGANIZATIONS.md b/docs/docs/auto-docs/GraphQl/Queries/OrganizationQueries/variables/USER_CREATED_ORGANIZATIONS.md new file mode 100644 index 0000000000..45f5c88e0a --- /dev/null +++ b/docs/docs/auto-docs/GraphQl/Queries/OrganizationQueries/variables/USER_CREATED_ORGANIZATIONS.md @@ -0,0 +1,21 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [GraphQl/Queries/OrganizationQueries](../README.md) / USER\_CREATED\_ORGANIZATIONS + +# Variable: USER\_CREATED\_ORGANIZATIONS + +> `const` **USER\_CREATED\_ORGANIZATIONS**: `DocumentNode` + +Defined in: [src/GraphQl/Queries/OrganizationQueries.ts:276](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/GraphQl/Queries/OrganizationQueries.ts#L276) + +GraphQL query to retrieve organizations created by a user. + +## Param + +The ID of the user for which created organizations are being retrieved. + +## Returns + +The list of organizations created by the user. diff --git a/docs/docs/auto-docs/GraphQl/Queries/OrganizationQueries/variables/USER_JOINED_ORGANIZATIONS.md b/docs/docs/auto-docs/GraphQl/Queries/OrganizationQueries/variables/USER_JOINED_ORGANIZATIONS.md new file mode 100644 index 0000000000..0e96bcce6a --- /dev/null +++ b/docs/docs/auto-docs/GraphQl/Queries/OrganizationQueries/variables/USER_JOINED_ORGANIZATIONS.md @@ -0,0 +1,21 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [GraphQl/Queries/OrganizationQueries](../README.md) / USER\_JOINED\_ORGANIZATIONS + +# Variable: USER\_JOINED\_ORGANIZATIONS + +> `const` **USER\_JOINED\_ORGANIZATIONS**: `DocumentNode` + +Defined in: [src/GraphQl/Queries/OrganizationQueries.ts:238](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/GraphQl/Queries/OrganizationQueries.ts#L238) + +GraphQL query to retrieve organizations joined by a user. + +## Param + +The ID of the user for which joined organizations are being retrieved. + +## Returns + +The list of organizations joined by the user. diff --git a/docs/docs/auto-docs/GraphQl/Queries/OrganizationQueries/variables/USER_ORGANIZATION_CONNECTION.md b/docs/docs/auto-docs/GraphQl/Queries/OrganizationQueries/variables/USER_ORGANIZATION_CONNECTION.md new file mode 100644 index 0000000000..a2a3eff789 --- /dev/null +++ b/docs/docs/auto-docs/GraphQl/Queries/OrganizationQueries/variables/USER_ORGANIZATION_CONNECTION.md @@ -0,0 +1,33 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [GraphQl/Queries/OrganizationQueries](../README.md) / USER\_ORGANIZATION\_CONNECTION + +# Variable: USER\_ORGANIZATION\_CONNECTION + +> `const` **USER\_ORGANIZATION\_CONNECTION**: `DocumentNode` + +Defined in: [src/GraphQl/Queries/OrganizationQueries.ts:182](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/GraphQl/Queries/OrganizationQueries.ts#L182) + +GraphQL query to retrieve organizations based on user connection. + +## Param + +Optional. Number of organizations to retrieve in the first batch. + +## Param + +Optional. Number of organizations to skip before starting to collect the result set. + +## Param + +Optional. Filter organizations by a specified string. + +## Param + +Optional. The ID of a specific organization to retrieve. + +## Returns + +The list of organizations based on the applied filters. diff --git a/docs/docs/auto-docs/GraphQl/Queries/OrganizationQueries/variables/VENUE_LIST.md b/docs/docs/auto-docs/GraphQl/Queries/OrganizationQueries/variables/VENUE_LIST.md new file mode 100644 index 0000000000..696db672de --- /dev/null +++ b/docs/docs/auto-docs/GraphQl/Queries/OrganizationQueries/variables/VENUE_LIST.md @@ -0,0 +1,21 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [GraphQl/Queries/OrganizationQueries](../README.md) / VENUE\_LIST + +# Variable: VENUE\_LIST + +> `const` **VENUE\_LIST**: `DocumentNode` + +Defined in: [src/GraphQl/Queries/OrganizationQueries.ts:357](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/GraphQl/Queries/OrganizationQueries.ts#L357) + +GraphQL query to retrieve the list of venues for a specific organization. + +## Param + +The ID of the organization for which venues are being retrieved. + +## Returns + +The list of venues associated with the organization. diff --git a/docs/docs/auto-docs/GraphQl/Queries/PlugInQueries/README.md b/docs/docs/auto-docs/GraphQl/Queries/PlugInQueries/README.md new file mode 100644 index 0000000000..7862961d8e --- /dev/null +++ b/docs/docs/auto-docs/GraphQl/Queries/PlugInQueries/README.md @@ -0,0 +1,20 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / GraphQl/Queries/PlugInQueries + +# GraphQl/Queries/PlugInQueries + +## Variables + +- [ADVERTISEMENTS\_GET](variables/ADVERTISEMENTS_GET.md) +- [CHAT\_BY\_ID](variables/CHAT_BY_ID.md) +- [CHATS\_LIST](variables/CHATS_LIST.md) +- [GROUP\_CHAT\_LIST](variables/GROUP_CHAT_LIST.md) +- [IS\_SAMPLE\_ORGANIZATION\_QUERY](variables/IS_SAMPLE_ORGANIZATION_QUERY.md) +- [ORGANIZATION\_CUSTOM\_FIELDS](variables/ORGANIZATION_CUSTOM_FIELDS.md) +- [ORGANIZATION\_EVENTS\_CONNECTION](variables/ORGANIZATION_EVENTS_CONNECTION.md) +- [PLUGIN\_GET](variables/PLUGIN_GET.md) +- [UNREAD\_CHAT\_LIST](variables/UNREAD_CHAT_LIST.md) +- [USER\_EVENTS\_VOLUNTEER](variables/USER_EVENTS_VOLUNTEER.md) diff --git a/docs/docs/auto-docs/GraphQl/Queries/PlugInQueries/variables/ADVERTISEMENTS_GET.md b/docs/docs/auto-docs/GraphQl/Queries/PlugInQueries/variables/ADVERTISEMENTS_GET.md new file mode 100644 index 0000000000..34628f7c66 --- /dev/null +++ b/docs/docs/auto-docs/GraphQl/Queries/PlugInQueries/variables/ADVERTISEMENTS_GET.md @@ -0,0 +1,17 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [GraphQl/Queries/PlugInQueries](../README.md) / ADVERTISEMENTS\_GET + +# Variable: ADVERTISEMENTS\_GET + +> `const` **ADVERTISEMENTS\_GET**: `DocumentNode` + +Defined in: [src/GraphQl/Queries/PlugInQueries.ts:27](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/GraphQl/Queries/PlugInQueries.ts#L27) + +GraphQL query to retrieve a list of advertisements. + +## Returns + +The list of advertisements with details such as ID, name, type, organization ID, link, start date, and end date. diff --git a/docs/docs/auto-docs/GraphQl/Queries/PlugInQueries/variables/CHATS_LIST.md b/docs/docs/auto-docs/GraphQl/Queries/PlugInQueries/variables/CHATS_LIST.md new file mode 100644 index 0000000000..a4383ea080 --- /dev/null +++ b/docs/docs/auto-docs/GraphQl/Queries/PlugInQueries/variables/CHATS_LIST.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [GraphQl/Queries/PlugInQueries](../README.md) / CHATS\_LIST + +# Variable: CHATS\_LIST + +> `const` **CHATS\_LIST**: `DocumentNode` + +Defined in: [src/GraphQl/Queries/PlugInQueries.ts:304](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/GraphQl/Queries/PlugInQueries.ts#L304) diff --git a/docs/docs/auto-docs/GraphQl/Queries/PlugInQueries/variables/CHAT_BY_ID.md b/docs/docs/auto-docs/GraphQl/Queries/PlugInQueries/variables/CHAT_BY_ID.md new file mode 100644 index 0000000000..6cc6aaec26 --- /dev/null +++ b/docs/docs/auto-docs/GraphQl/Queries/PlugInQueries/variables/CHAT_BY_ID.md @@ -0,0 +1,21 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [GraphQl/Queries/PlugInQueries](../README.md) / CHAT\_BY\_ID + +# Variable: CHAT\_BY\_ID + +> `const` **CHAT\_BY\_ID**: `DocumentNode` + +Defined in: [src/GraphQl/Queries/PlugInQueries.ts:156](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/GraphQl/Queries/PlugInQueries.ts#L156) + +GraphQL query to retrieve a list of chats based on user ID. + +## Param + +The ID of the user for which chats are being retrieved. + +## Returns + +The list of chats associated with the user, including details such as ID, creator, messages, organization, and participating users. diff --git a/docs/docs/auto-docs/GraphQl/Queries/PlugInQueries/variables/GROUP_CHAT_LIST.md b/docs/docs/auto-docs/GraphQl/Queries/PlugInQueries/variables/GROUP_CHAT_LIST.md new file mode 100644 index 0000000000..b9976f93d5 --- /dev/null +++ b/docs/docs/auto-docs/GraphQl/Queries/PlugInQueries/variables/GROUP_CHAT_LIST.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [GraphQl/Queries/PlugInQueries](../README.md) / GROUP\_CHAT\_LIST + +# Variable: GROUP\_CHAT\_LIST + +> `const` **GROUP\_CHAT\_LIST**: `DocumentNode` + +Defined in: [src/GraphQl/Queries/PlugInQueries.ts:210](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/GraphQl/Queries/PlugInQueries.ts#L210) diff --git a/docs/docs/auto-docs/GraphQl/Queries/PlugInQueries/variables/IS_SAMPLE_ORGANIZATION_QUERY.md b/docs/docs/auto-docs/GraphQl/Queries/PlugInQueries/variables/IS_SAMPLE_ORGANIZATION_QUERY.md new file mode 100644 index 0000000000..e54900d4f9 --- /dev/null +++ b/docs/docs/auto-docs/GraphQl/Queries/PlugInQueries/variables/IS_SAMPLE_ORGANIZATION_QUERY.md @@ -0,0 +1,21 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [GraphQl/Queries/PlugInQueries](../README.md) / IS\_SAMPLE\_ORGANIZATION\_QUERY + +# Variable: IS\_SAMPLE\_ORGANIZATION\_QUERY + +> `const` **IS\_SAMPLE\_ORGANIZATION\_QUERY**: `DocumentNode` + +Defined in: [src/GraphQl/Queries/PlugInQueries.ts:366](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/GraphQl/Queries/PlugInQueries.ts#L366) + +GraphQL query to check if an organization is a sample organization. + +## Param + +The ID of the organization being checked. + +## Returns + +A boolean indicating whether the organization is a sample organization. diff --git a/docs/docs/auto-docs/GraphQl/Queries/PlugInQueries/variables/ORGANIZATION_CUSTOM_FIELDS.md b/docs/docs/auto-docs/GraphQl/Queries/PlugInQueries/variables/ORGANIZATION_CUSTOM_FIELDS.md new file mode 100644 index 0000000000..bc0a662ecd --- /dev/null +++ b/docs/docs/auto-docs/GraphQl/Queries/PlugInQueries/variables/ORGANIZATION_CUSTOM_FIELDS.md @@ -0,0 +1,21 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [GraphQl/Queries/PlugInQueries](../README.md) / ORGANIZATION\_CUSTOM\_FIELDS + +# Variable: ORGANIZATION\_CUSTOM\_FIELDS + +> `const` **ORGANIZATION\_CUSTOM\_FIELDS**: `DocumentNode` + +Defined in: [src/GraphQl/Queries/PlugInQueries.ts:379](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/GraphQl/Queries/PlugInQueries.ts#L379) + +GraphQL query to retrieve custom fields for a specific organization. + +## Param + +The ID of the organization for which custom fields are being retrieved. + +## Returns + +The list of custom fields associated with the organization, including details such as ID, type, and name. diff --git a/docs/docs/auto-docs/GraphQl/Queries/PlugInQueries/variables/ORGANIZATION_EVENTS_CONNECTION.md b/docs/docs/auto-docs/GraphQl/Queries/PlugInQueries/variables/ORGANIZATION_EVENTS_CONNECTION.md new file mode 100644 index 0000000000..2010c656f7 --- /dev/null +++ b/docs/docs/auto-docs/GraphQl/Queries/PlugInQueries/variables/ORGANIZATION_EVENTS_CONNECTION.md @@ -0,0 +1,41 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [GraphQl/Queries/PlugInQueries](../README.md) / ORGANIZATION\_EVENTS\_CONNECTION + +# Variable: ORGANIZATION\_EVENTS\_CONNECTION + +> `const` **ORGANIZATION\_EVENTS\_CONNECTION**: `DocumentNode` + +Defined in: [src/GraphQl/Queries/PlugInQueries.ts:59](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/GraphQl/Queries/PlugInQueries.ts#L59) + +GraphQL query to retrieve a list of events based on organization connection. + +## Param + +The ID of the organization for which events are being retrieved. + +## Param + +Optional. Filter events by title containing a specified string. + +## Param + +Optional. Filter events by description containing a specified string. + +## Param + +Optional. Filter events by location containing a specified string. + +## Param + +Optional. Number of events to retrieve in the first batch. + +## Param + +Optional. Number of events to skip before starting to collect the result set. + +## Returns + +The list of events associated with the organization based on the applied filters. diff --git a/docs/docs/auto-docs/GraphQl/Queries/PlugInQueries/variables/PLUGIN_GET.md b/docs/docs/auto-docs/GraphQl/Queries/PlugInQueries/variables/PLUGIN_GET.md new file mode 100644 index 0000000000..fda7899274 --- /dev/null +++ b/docs/docs/auto-docs/GraphQl/Queries/PlugInQueries/variables/PLUGIN_GET.md @@ -0,0 +1,17 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [GraphQl/Queries/PlugInQueries](../README.md) / PLUGIN\_GET + +# Variable: PLUGIN\_GET + +> `const` **PLUGIN\_GET**: `DocumentNode` + +Defined in: [src/GraphQl/Queries/PlugInQueries.ts:9](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/GraphQl/Queries/PlugInQueries.ts#L9) + +GraphQL query to retrieve a list of plugins. + +## Returns + +The list of plugins with details such as ID, name, creator, description, and uninstalled organizations. diff --git a/docs/docs/auto-docs/GraphQl/Queries/PlugInQueries/variables/UNREAD_CHAT_LIST.md b/docs/docs/auto-docs/GraphQl/Queries/PlugInQueries/variables/UNREAD_CHAT_LIST.md new file mode 100644 index 0000000000..2201ce57e4 --- /dev/null +++ b/docs/docs/auto-docs/GraphQl/Queries/PlugInQueries/variables/UNREAD_CHAT_LIST.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [GraphQl/Queries/PlugInQueries](../README.md) / UNREAD\_CHAT\_LIST + +# Variable: UNREAD\_CHAT\_LIST + +> `const` **UNREAD\_CHAT\_LIST**: `DocumentNode` + +Defined in: [src/GraphQl/Queries/PlugInQueries.ts:257](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/GraphQl/Queries/PlugInQueries.ts#L257) diff --git a/docs/docs/auto-docs/GraphQl/Queries/PlugInQueries/variables/USER_EVENTS_VOLUNTEER.md b/docs/docs/auto-docs/GraphQl/Queries/PlugInQueries/variables/USER_EVENTS_VOLUNTEER.md new file mode 100644 index 0000000000..bafe712bad --- /dev/null +++ b/docs/docs/auto-docs/GraphQl/Queries/PlugInQueries/variables/USER_EVENTS_VOLUNTEER.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [GraphQl/Queries/PlugInQueries](../README.md) / USER\_EVENTS\_VOLUNTEER + +# Variable: USER\_EVENTS\_VOLUNTEER + +> `const` **USER\_EVENTS\_VOLUNTEER**: `DocumentNode` + +Defined in: [src/GraphQl/Queries/PlugInQueries.ts:102](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/GraphQl/Queries/PlugInQueries.ts#L102) diff --git a/docs/docs/auto-docs/GraphQl/Queries/Queries/README.md b/docs/docs/auto-docs/GraphQl/Queries/Queries/README.md new file mode 100644 index 0000000000..5a6baf74bd --- /dev/null +++ b/docs/docs/auto-docs/GraphQl/Queries/Queries/README.md @@ -0,0 +1,132 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / GraphQl/Queries/Queries + +# GraphQl/Queries/Queries + +## Variables + +- [ADMIN\_LIST](variables/ADMIN_LIST.md) +- [BLOCK\_PAGE\_MEMBER\_LIST](variables/BLOCK_PAGE_MEMBER_LIST.md) +- [CHECK\_AUTH](variables/CHECK_AUTH.md) +- [EVENT\_ATTENDEES](variables/EVENT_ATTENDEES.md) +- [EVENT\_CHECKINS](variables/EVENT_CHECKINS.md) +- [EVENT\_DETAILS](variables/EVENT_DETAILS.md) +- [EVENT\_FEEDBACKS](variables/EVENT_FEEDBACKS.md) +- [EVENT\_REGISTRANTS](variables/EVENT_REGISTRANTS.md) +- [GET\_COMMUNITY\_DATA](variables/GET_COMMUNITY_DATA.md) +- [GET\_COMMUNITY\_SESSION\_TIMEOUT\_DATA](variables/GET_COMMUNITY_SESSION_TIMEOUT_DATA.md) +- [MEMBERS\_LIST](variables/MEMBERS_LIST.md) +- [MEMBERSHIP\_REQUEST](variables/MEMBERSHIP_REQUEST.md) +- [ORGANIZATION\_CONNECTION\_LIST](variables/ORGANIZATION_CONNECTION_LIST.md) +- [ORGANIZATION\_DONATION\_CONNECTION\_LIST](variables/ORGANIZATION_DONATION_CONNECTION_LIST.md) +- [ORGANIZATION\_EVENT\_CONNECTION\_LIST](variables/ORGANIZATION_EVENT_CONNECTION_LIST.md) +- [ORGANIZATION\_EVENT\_LIST](variables/ORGANIZATION_EVENT_LIST.md) +- [ORGANIZATION\_LIST](variables/ORGANIZATION_LIST.md) +- [ORGANIZATIONS\_LIST](variables/ORGANIZATIONS_LIST.md) +- [ORGANIZATIONS\_MEMBER\_CONNECTION\_LIST](variables/ORGANIZATIONS_MEMBER_CONNECTION_LIST.md) +- [RECURRING\_EVENTS](variables/RECURRING_EVENTS.md) +- [USER\_DETAILS](variables/USER_DETAILS.md) +- [USER\_LIST](variables/USER_LIST.md) +- [USER\_LIST\_FOR\_TABLE](variables/USER_LIST_FOR_TABLE.md) +- [USER\_LIST\_REQUEST](variables/USER_LIST_REQUEST.md) +- [USER\_ORGANIZATION\_LIST](variables/USER_ORGANIZATION_LIST.md) +- [USERS\_CONNECTION\_LIST](variables/USERS_CONNECTION_LIST.md) + +## References + +### ACTION\_ITEM\_CATEGORY\_LIST + +Re-exports [ACTION_ITEM_CATEGORY_LIST](../ActionItemCategoryQueries/variables/ACTION_ITEM_CATEGORY_LIST.md) + +*** + +### ACTION\_ITEM\_LIST + +Re-exports [ACTION_ITEM_LIST](../ActionItemQueries/variables/ACTION_ITEM_LIST.md) + +*** + +### ADVERTISEMENTS\_GET + +Re-exports [ADVERTISEMENTS_GET](../PlugInQueries/variables/ADVERTISEMENTS_GET.md) + +*** + +### AGENDA\_ITEM\_CATEGORY\_LIST + +Re-exports [AGENDA_ITEM_CATEGORY_LIST](../AgendaCategoryQueries/variables/AGENDA_ITEM_CATEGORY_LIST.md) + +*** + +### AgendaItemByEvent + +Re-exports [AgendaItemByEvent](../AgendaItemQueries/variables/AgendaItemByEvent.md) + +*** + +### AgendaItemByOrganization + +Re-exports [AgendaItemByOrganization](../AgendaItemQueries/variables/AgendaItemByOrganization.md) + +*** + +### IS\_SAMPLE\_ORGANIZATION\_QUERY + +Re-exports [IS_SAMPLE_ORGANIZATION_QUERY](../PlugInQueries/variables/IS_SAMPLE_ORGANIZATION_QUERY.md) + +*** + +### ORGANIZATION\_ADMINS\_LIST + +Re-exports [ORGANIZATION_ADMINS_LIST](../OrganizationQueries/variables/ORGANIZATION_ADMINS_LIST.md) + +*** + +### ORGANIZATION\_ADVERTISEMENT\_LIST + +Re-exports [ORGANIZATION_ADVERTISEMENT_LIST](../OrganizationQueries/variables/ORGANIZATION_ADVERTISEMENT_LIST.md) + +*** + +### ORGANIZATION\_CUSTOM\_FIELDS + +Re-exports [ORGANIZATION_CUSTOM_FIELDS](../PlugInQueries/variables/ORGANIZATION_CUSTOM_FIELDS.md) + +*** + +### ORGANIZATION\_EVENTS\_CONNECTION + +Re-exports [ORGANIZATION_EVENTS_CONNECTION](../PlugInQueries/variables/ORGANIZATION_EVENTS_CONNECTION.md) + +*** + +### ORGANIZATION\_POST\_LIST + +Re-exports [ORGANIZATION_POST_LIST](../OrganizationQueries/variables/ORGANIZATION_POST_LIST.md) + +*** + +### PLUGIN\_GET + +Re-exports [PLUGIN_GET](../PlugInQueries/variables/PLUGIN_GET.md) + +*** + +### USER\_CREATED\_ORGANIZATIONS + +Re-exports [USER_CREATED_ORGANIZATIONS](../OrganizationQueries/variables/USER_CREATED_ORGANIZATIONS.md) + +*** + +### USER\_JOINED\_ORGANIZATIONS + +Re-exports [USER_JOINED_ORGANIZATIONS](../OrganizationQueries/variables/USER_JOINED_ORGANIZATIONS.md) + +*** + +### USER\_ORGANIZATION\_CONNECTION + +Re-exports [USER_ORGANIZATION_CONNECTION](../OrganizationQueries/variables/USER_ORGANIZATION_CONNECTION.md) diff --git a/docs/docs/auto-docs/GraphQl/Queries/Queries/variables/ADMIN_LIST.md b/docs/docs/auto-docs/GraphQl/Queries/Queries/variables/ADMIN_LIST.md new file mode 100644 index 0000000000..c589b85927 --- /dev/null +++ b/docs/docs/auto-docs/GraphQl/Queries/Queries/variables/ADMIN_LIST.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [GraphQl/Queries/Queries](../README.md) / ADMIN\_LIST + +# Variable: ADMIN\_LIST + +> `const` **ADMIN\_LIST**: `DocumentNode` + +Defined in: [src/GraphQl/Queries/Queries.ts:707](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/GraphQl/Queries/Queries.ts#L707) diff --git a/docs/docs/auto-docs/GraphQl/Queries/Queries/variables/BLOCK_PAGE_MEMBER_LIST.md b/docs/docs/auto-docs/GraphQl/Queries/Queries/variables/BLOCK_PAGE_MEMBER_LIST.md new file mode 100644 index 0000000000..3bc06557e1 --- /dev/null +++ b/docs/docs/auto-docs/GraphQl/Queries/Queries/variables/BLOCK_PAGE_MEMBER_LIST.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [GraphQl/Queries/Queries](../README.md) / BLOCK\_PAGE\_MEMBER\_LIST + +# Variable: BLOCK\_PAGE\_MEMBER\_LIST + +> `const` **BLOCK\_PAGE\_MEMBER\_LIST**: `DocumentNode` + +Defined in: [src/GraphQl/Queries/Queries.ts:451](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/GraphQl/Queries/Queries.ts#L451) diff --git a/docs/docs/auto-docs/GraphQl/Queries/Queries/variables/CHECK_AUTH.md b/docs/docs/auto-docs/GraphQl/Queries/Queries/variables/CHECK_AUTH.md new file mode 100644 index 0000000000..9e939c2ca3 --- /dev/null +++ b/docs/docs/auto-docs/GraphQl/Queries/Queries/variables/CHECK_AUTH.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [GraphQl/Queries/Queries](../README.md) / CHECK\_AUTH + +# Variable: CHECK\_AUTH + +> `const` **CHECK\_AUTH**: `DocumentNode` + +Defined in: [src/GraphQl/Queries/Queries.ts:5](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/GraphQl/Queries/Queries.ts#L5) diff --git a/docs/docs/auto-docs/GraphQl/Queries/Queries/variables/EVENT_ATTENDEES.md b/docs/docs/auto-docs/GraphQl/Queries/Queries/variables/EVENT_ATTENDEES.md new file mode 100644 index 0000000000..fd092e50d9 --- /dev/null +++ b/docs/docs/auto-docs/GraphQl/Queries/Queries/variables/EVENT_ATTENDEES.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [GraphQl/Queries/Queries](../README.md) / EVENT\_ATTENDEES + +# Variable: EVENT\_ATTENDEES + +> `const` **EVENT\_ATTENDEES**: `DocumentNode` + +Defined in: [src/GraphQl/Queries/Queries.ts:313](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/GraphQl/Queries/Queries.ts#L313) diff --git a/docs/docs/auto-docs/GraphQl/Queries/Queries/variables/EVENT_CHECKINS.md b/docs/docs/auto-docs/GraphQl/Queries/Queries/variables/EVENT_CHECKINS.md new file mode 100644 index 0000000000..68ffae74c1 --- /dev/null +++ b/docs/docs/auto-docs/GraphQl/Queries/Queries/variables/EVENT_CHECKINS.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [GraphQl/Queries/Queries](../README.md) / EVENT\_CHECKINS + +# Variable: EVENT\_CHECKINS + +> `const` **EVENT\_CHECKINS**: `DocumentNode` + +Defined in: [src/GraphQl/Queries/Queries.ts:341](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/GraphQl/Queries/Queries.ts#L341) diff --git a/docs/docs/auto-docs/GraphQl/Queries/Queries/variables/EVENT_DETAILS.md b/docs/docs/auto-docs/GraphQl/Queries/Queries/variables/EVENT_DETAILS.md new file mode 100644 index 0000000000..e0c92db9d0 --- /dev/null +++ b/docs/docs/auto-docs/GraphQl/Queries/Queries/variables/EVENT_DETAILS.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [GraphQl/Queries/Queries](../README.md) / EVENT\_DETAILS + +# Variable: EVENT\_DETAILS + +> `const` **EVENT\_DETAILS**: `DocumentNode` + +Defined in: [src/GraphQl/Queries/Queries.ts:268](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/GraphQl/Queries/Queries.ts#L268) diff --git a/docs/docs/auto-docs/GraphQl/Queries/Queries/variables/EVENT_FEEDBACKS.md b/docs/docs/auto-docs/GraphQl/Queries/Queries/variables/EVENT_FEEDBACKS.md new file mode 100644 index 0000000000..4b7fc47d50 --- /dev/null +++ b/docs/docs/auto-docs/GraphQl/Queries/Queries/variables/EVENT_FEEDBACKS.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [GraphQl/Queries/Queries](../README.md) / EVENT\_FEEDBACKS + +# Variable: EVENT\_FEEDBACKS + +> `const` **EVENT\_FEEDBACKS**: `DocumentNode` + +Defined in: [src/GraphQl/Queries/Queries.ts:361](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/GraphQl/Queries/Queries.ts#L361) diff --git a/docs/docs/auto-docs/GraphQl/Queries/Queries/variables/EVENT_REGISTRANTS.md b/docs/docs/auto-docs/GraphQl/Queries/Queries/variables/EVENT_REGISTRANTS.md new file mode 100644 index 0000000000..15cbd7c4ea --- /dev/null +++ b/docs/docs/auto-docs/GraphQl/Queries/Queries/variables/EVENT_REGISTRANTS.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [GraphQl/Queries/Queries](../README.md) / EVENT\_REGISTRANTS + +# Variable: EVENT\_REGISTRANTS + +> `const` **EVENT\_REGISTRANTS**: `DocumentNode` + +Defined in: [src/GraphQl/Queries/Queries.ts:331](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/GraphQl/Queries/Queries.ts#L331) diff --git a/docs/docs/auto-docs/GraphQl/Queries/Queries/variables/GET_COMMUNITY_DATA.md b/docs/docs/auto-docs/GraphQl/Queries/Queries/variables/GET_COMMUNITY_DATA.md new file mode 100644 index 0000000000..5655143a04 --- /dev/null +++ b/docs/docs/auto-docs/GraphQl/Queries/Queries/variables/GET_COMMUNITY_DATA.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [GraphQl/Queries/Queries](../README.md) / GET\_COMMUNITY\_DATA + +# Variable: GET\_COMMUNITY\_DATA + +> `const` **GET\_COMMUNITY\_DATA**: `DocumentNode` + +Defined in: [src/GraphQl/Queries/Queries.ts:839](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/GraphQl/Queries/Queries.ts#L839) diff --git a/docs/docs/auto-docs/GraphQl/Queries/Queries/variables/GET_COMMUNITY_SESSION_TIMEOUT_DATA.md b/docs/docs/auto-docs/GraphQl/Queries/Queries/variables/GET_COMMUNITY_SESSION_TIMEOUT_DATA.md new file mode 100644 index 0000000000..64c5996be9 --- /dev/null +++ b/docs/docs/auto-docs/GraphQl/Queries/Queries/variables/GET_COMMUNITY_SESSION_TIMEOUT_DATA.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [GraphQl/Queries/Queries](../README.md) / GET\_COMMUNITY\_SESSION\_TIMEOUT\_DATA + +# Variable: GET\_COMMUNITY\_SESSION\_TIMEOUT\_DATA + +> `const` **GET\_COMMUNITY\_SESSION\_TIMEOUT\_DATA**: `DocumentNode` + +Defined in: [src/GraphQl/Queries/Queries.ts:860](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/GraphQl/Queries/Queries.ts#L860) diff --git a/docs/docs/auto-docs/GraphQl/Queries/Queries/variables/MEMBERSHIP_REQUEST.md b/docs/docs/auto-docs/GraphQl/Queries/Queries/variables/MEMBERSHIP_REQUEST.md new file mode 100644 index 0000000000..5d23ae369d --- /dev/null +++ b/docs/docs/auto-docs/GraphQl/Queries/Queries/variables/MEMBERSHIP_REQUEST.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [GraphQl/Queries/Queries](../README.md) / MEMBERSHIP\_REQUEST + +# Variable: MEMBERSHIP\_REQUEST + +> `const` **MEMBERSHIP\_REQUEST**: `DocumentNode` + +Defined in: [src/GraphQl/Queries/Queries.ts:724](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/GraphQl/Queries/Queries.ts#L724) diff --git a/docs/docs/auto-docs/GraphQl/Queries/Queries/variables/MEMBERS_LIST.md b/docs/docs/auto-docs/GraphQl/Queries/Queries/variables/MEMBERS_LIST.md new file mode 100644 index 0000000000..19452d949b --- /dev/null +++ b/docs/docs/auto-docs/GraphQl/Queries/Queries/variables/MEMBERS_LIST.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [GraphQl/Queries/Queries](../README.md) / MEMBERS\_LIST + +# Variable: MEMBERS\_LIST + +> `const` **MEMBERS\_LIST**: `DocumentNode` + +Defined in: [src/GraphQl/Queries/Queries.ts:432](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/GraphQl/Queries/Queries.ts#L432) diff --git a/docs/docs/auto-docs/GraphQl/Queries/Queries/variables/ORGANIZATIONS_LIST.md b/docs/docs/auto-docs/GraphQl/Queries/Queries/variables/ORGANIZATIONS_LIST.md new file mode 100644 index 0000000000..8385c51f06 --- /dev/null +++ b/docs/docs/auto-docs/GraphQl/Queries/Queries/variables/ORGANIZATIONS_LIST.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [GraphQl/Queries/Queries](../README.md) / ORGANIZATIONS\_LIST + +# Variable: ORGANIZATIONS\_LIST + +> `const` **ORGANIZATIONS\_LIST**: `DocumentNode` + +Defined in: [src/GraphQl/Queries/Queries.ts:376](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/GraphQl/Queries/Queries.ts#L376) diff --git a/docs/docs/auto-docs/GraphQl/Queries/Queries/variables/ORGANIZATIONS_MEMBER_CONNECTION_LIST.md b/docs/docs/auto-docs/GraphQl/Queries/Queries/variables/ORGANIZATIONS_MEMBER_CONNECTION_LIST.md new file mode 100644 index 0000000000..55f4581b64 --- /dev/null +++ b/docs/docs/auto-docs/GraphQl/Queries/Queries/variables/ORGANIZATIONS_MEMBER_CONNECTION_LIST.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [GraphQl/Queries/Queries](../README.md) / ORGANIZATIONS\_MEMBER\_CONNECTION\_LIST + +# Variable: ORGANIZATIONS\_MEMBER\_CONNECTION\_LIST + +> `const` **ORGANIZATIONS\_MEMBER\_CONNECTION\_LIST**: `DocumentNode` + +Defined in: [src/GraphQl/Queries/Queries.ts:478](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/GraphQl/Queries/Queries.ts#L478) diff --git a/docs/docs/auto-docs/GraphQl/Queries/Queries/variables/ORGANIZATION_CONNECTION_LIST.md b/docs/docs/auto-docs/GraphQl/Queries/Queries/variables/ORGANIZATION_CONNECTION_LIST.md new file mode 100644 index 0000000000..976ecc0931 --- /dev/null +++ b/docs/docs/auto-docs/GraphQl/Queries/Queries/variables/ORGANIZATION_CONNECTION_LIST.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [GraphQl/Queries/Queries](../README.md) / ORGANIZATION\_CONNECTION\_LIST + +# Variable: ORGANIZATION\_CONNECTION\_LIST + +> `const` **ORGANIZATION\_CONNECTION\_LIST**: `DocumentNode` + +Defined in: [src/GraphQl/Queries/Queries.ts:67](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/GraphQl/Queries/Queries.ts#L67) diff --git a/docs/docs/auto-docs/GraphQl/Queries/Queries/variables/ORGANIZATION_DONATION_CONNECTION_LIST.md b/docs/docs/auto-docs/GraphQl/Queries/Queries/variables/ORGANIZATION_DONATION_CONNECTION_LIST.md new file mode 100644 index 0000000000..84210944c1 --- /dev/null +++ b/docs/docs/auto-docs/GraphQl/Queries/Queries/variables/ORGANIZATION_DONATION_CONNECTION_LIST.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [GraphQl/Queries/Queries](../README.md) / ORGANIZATION\_DONATION\_CONNECTION\_LIST + +# Variable: ORGANIZATION\_DONATION\_CONNECTION\_LIST + +> `const` **ORGANIZATION\_DONATION\_CONNECTION\_LIST**: `DocumentNode` + +Defined in: [src/GraphQl/Queries/Queries.ts:686](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/GraphQl/Queries/Queries.ts#L686) diff --git a/docs/docs/auto-docs/GraphQl/Queries/Queries/variables/ORGANIZATION_EVENT_CONNECTION_LIST.md b/docs/docs/auto-docs/GraphQl/Queries/Queries/variables/ORGANIZATION_EVENT_CONNECTION_LIST.md new file mode 100644 index 0000000000..3c9bb0821b --- /dev/null +++ b/docs/docs/auto-docs/GraphQl/Queries/Queries/variables/ORGANIZATION_EVENT_CONNECTION_LIST.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [GraphQl/Queries/Queries](../README.md) / ORGANIZATION\_EVENT\_CONNECTION\_LIST + +# Variable: ORGANIZATION\_EVENT\_CONNECTION\_LIST + +> `const` **ORGANIZATION\_EVENT\_CONNECTION\_LIST**: `DocumentNode` + +Defined in: [src/GraphQl/Queries/Queries.ts:630](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/GraphQl/Queries/Queries.ts#L630) diff --git a/docs/docs/auto-docs/GraphQl/Queries/Queries/variables/ORGANIZATION_EVENT_LIST.md b/docs/docs/auto-docs/GraphQl/Queries/Queries/variables/ORGANIZATION_EVENT_LIST.md new file mode 100644 index 0000000000..e914c0cadd --- /dev/null +++ b/docs/docs/auto-docs/GraphQl/Queries/Queries/variables/ORGANIZATION_EVENT_LIST.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [GraphQl/Queries/Queries](../README.md) / ORGANIZATION\_EVENT\_LIST + +# Variable: ORGANIZATION\_EVENT\_LIST + +> `const` **ORGANIZATION\_EVENT\_LIST**: `DocumentNode` + +Defined in: [src/GraphQl/Queries/Queries.ts:611](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/GraphQl/Queries/Queries.ts#L611) diff --git a/docs/docs/auto-docs/GraphQl/Queries/Queries/variables/ORGANIZATION_LIST.md b/docs/docs/auto-docs/GraphQl/Queries/Queries/variables/ORGANIZATION_LIST.md new file mode 100644 index 0000000000..0b1a120c9a --- /dev/null +++ b/docs/docs/auto-docs/GraphQl/Queries/Queries/variables/ORGANIZATION_LIST.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [GraphQl/Queries/Queries](../README.md) / ORGANIZATION\_LIST + +# Variable: ORGANIZATION\_LIST + +> `const` **ORGANIZATION\_LIST**: `DocumentNode` + +Defined in: [src/GraphQl/Queries/Queries.ts:35](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/GraphQl/Queries/Queries.ts#L35) diff --git a/docs/docs/auto-docs/GraphQl/Queries/Queries/variables/RECURRING_EVENTS.md b/docs/docs/auto-docs/GraphQl/Queries/Queries/variables/RECURRING_EVENTS.md new file mode 100644 index 0000000000..b83deca59a --- /dev/null +++ b/docs/docs/auto-docs/GraphQl/Queries/Queries/variables/RECURRING_EVENTS.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [GraphQl/Queries/Queries](../README.md) / RECURRING\_EVENTS + +# Variable: RECURRING\_EVENTS + +> `const` **RECURRING\_EVENTS**: `DocumentNode` + +Defined in: [src/GraphQl/Queries/Queries.ts:299](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/GraphQl/Queries/Queries.ts#L299) diff --git a/docs/docs/auto-docs/GraphQl/Queries/Queries/variables/USERS_CONNECTION_LIST.md b/docs/docs/auto-docs/GraphQl/Queries/Queries/variables/USERS_CONNECTION_LIST.md new file mode 100644 index 0000000000..8e822fe1b4 --- /dev/null +++ b/docs/docs/auto-docs/GraphQl/Queries/Queries/variables/USERS_CONNECTION_LIST.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [GraphQl/Queries/Queries](../README.md) / USERS\_CONNECTION\_LIST + +# Variable: USERS\_CONNECTION\_LIST + +> `const` **USERS\_CONNECTION\_LIST**: `DocumentNode` + +Defined in: [src/GraphQl/Queries/Queries.ts:750](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/GraphQl/Queries/Queries.ts#L750) diff --git a/docs/docs/auto-docs/GraphQl/Queries/Queries/variables/USER_DETAILS.md b/docs/docs/auto-docs/GraphQl/Queries/Queries/variables/USER_DETAILS.md new file mode 100644 index 0000000000..fdb3856e02 --- /dev/null +++ b/docs/docs/auto-docs/GraphQl/Queries/Queries/variables/USER_DETAILS.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [GraphQl/Queries/Queries](../README.md) / USER\_DETAILS + +# Variable: USER\_DETAILS + +> `const` **USER\_DETAILS**: `DocumentNode` + +Defined in: [src/GraphQl/Queries/Queries.ts:522](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/GraphQl/Queries/Queries.ts#L522) diff --git a/docs/docs/auto-docs/GraphQl/Queries/Queries/variables/USER_LIST.md b/docs/docs/auto-docs/GraphQl/Queries/Queries/variables/USER_LIST.md new file mode 100644 index 0000000000..98e9f9cf2b --- /dev/null +++ b/docs/docs/auto-docs/GraphQl/Queries/Queries/variables/USER_LIST.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [GraphQl/Queries/Queries](../README.md) / USER\_LIST + +# Variable: USER\_LIST + +> `const` **USER\_LIST**: `DocumentNode` + +Defined in: [src/GraphQl/Queries/Queries.ts:109](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/GraphQl/Queries/Queries.ts#L109) diff --git a/docs/docs/auto-docs/GraphQl/Queries/Queries/variables/USER_LIST_FOR_TABLE.md b/docs/docs/auto-docs/GraphQl/Queries/Queries/variables/USER_LIST_FOR_TABLE.md new file mode 100644 index 0000000000..dec135f2a3 --- /dev/null +++ b/docs/docs/auto-docs/GraphQl/Queries/Queries/variables/USER_LIST_FOR_TABLE.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [GraphQl/Queries/Queries](../README.md) / USER\_LIST\_FOR\_TABLE + +# Variable: USER\_LIST\_FOR\_TABLE + +> `const` **USER\_LIST\_FOR\_TABLE**: `DocumentNode` + +Defined in: [src/GraphQl/Queries/Queries.ts:205](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/GraphQl/Queries/Queries.ts#L205) diff --git a/docs/docs/auto-docs/GraphQl/Queries/Queries/variables/USER_LIST_REQUEST.md b/docs/docs/auto-docs/GraphQl/Queries/Queries/variables/USER_LIST_REQUEST.md new file mode 100644 index 0000000000..9c2c7298a5 --- /dev/null +++ b/docs/docs/auto-docs/GraphQl/Queries/Queries/variables/USER_LIST_REQUEST.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [GraphQl/Queries/Queries](../README.md) / USER\_LIST\_REQUEST + +# Variable: USER\_LIST\_REQUEST + +> `const` **USER\_LIST\_REQUEST**: `DocumentNode` + +Defined in: [src/GraphQl/Queries/Queries.ts:225](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/GraphQl/Queries/Queries.ts#L225) diff --git a/docs/docs/auto-docs/GraphQl/Queries/Queries/variables/USER_ORGANIZATION_LIST.md b/docs/docs/auto-docs/GraphQl/Queries/Queries/variables/USER_ORGANIZATION_LIST.md new file mode 100644 index 0000000000..e17fb95327 --- /dev/null +++ b/docs/docs/auto-docs/GraphQl/Queries/Queries/variables/USER_ORGANIZATION_LIST.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [GraphQl/Queries/Queries](../README.md) / USER\_ORGANIZATION\_LIST + +# Variable: USER\_ORGANIZATION\_LIST + +> `const` **USER\_ORGANIZATION\_LIST**: `DocumentNode` + +Defined in: [src/GraphQl/Queries/Queries.ts:508](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/GraphQl/Queries/Queries.ts#L508) diff --git a/docs/docs/auto-docs/GraphQl/Queries/fundQueries/README.md b/docs/docs/auto-docs/GraphQl/Queries/fundQueries/README.md new file mode 100644 index 0000000000..3da9c8c750 --- /dev/null +++ b/docs/docs/auto-docs/GraphQl/Queries/fundQueries/README.md @@ -0,0 +1,15 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / GraphQl/Queries/fundQueries + +# GraphQl/Queries/fundQueries + +## Variables + +- [FUND\_CAMPAIGN](variables/FUND_CAMPAIGN.md) +- [FUND\_CAMPAIGN\_PLEDGE](variables/FUND_CAMPAIGN_PLEDGE.md) +- [FUND\_LIST](variables/FUND_LIST.md) +- [USER\_FUND\_CAMPAIGNS](variables/USER_FUND_CAMPAIGNS.md) +- [USER\_PLEDGES](variables/USER_PLEDGES.md) diff --git a/docs/docs/auto-docs/GraphQl/Queries/fundQueries/variables/FUND_CAMPAIGN.md b/docs/docs/auto-docs/GraphQl/Queries/fundQueries/variables/FUND_CAMPAIGN.md new file mode 100644 index 0000000000..0c4b166732 --- /dev/null +++ b/docs/docs/auto-docs/GraphQl/Queries/fundQueries/variables/FUND_CAMPAIGN.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [GraphQl/Queries/fundQueries](../README.md) / FUND\_CAMPAIGN + +# Variable: FUND\_CAMPAIGN + +> `const` **FUND\_CAMPAIGN**: `DocumentNode` + +Defined in: [src/GraphQl/Queries/fundQueries.ts:39](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/GraphQl/Queries/fundQueries.ts#L39) diff --git a/docs/docs/auto-docs/GraphQl/Queries/fundQueries/variables/FUND_CAMPAIGN_PLEDGE.md b/docs/docs/auto-docs/GraphQl/Queries/fundQueries/variables/FUND_CAMPAIGN_PLEDGE.md new file mode 100644 index 0000000000..58851f5755 --- /dev/null +++ b/docs/docs/auto-docs/GraphQl/Queries/fundQueries/variables/FUND_CAMPAIGN_PLEDGE.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [GraphQl/Queries/fundQueries](../README.md) / FUND\_CAMPAIGN\_PLEDGE + +# Variable: FUND\_CAMPAIGN\_PLEDGE + +> `const` **FUND\_CAMPAIGN\_PLEDGE**: `DocumentNode` + +Defined in: [src/GraphQl/Queries/fundQueries.ts:60](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/GraphQl/Queries/fundQueries.ts#L60) diff --git a/docs/docs/auto-docs/GraphQl/Queries/fundQueries/variables/FUND_LIST.md b/docs/docs/auto-docs/GraphQl/Queries/fundQueries/variables/FUND_LIST.md new file mode 100644 index 0000000000..82ec2fb69a --- /dev/null +++ b/docs/docs/auto-docs/GraphQl/Queries/fundQueries/variables/FUND_LIST.md @@ -0,0 +1,25 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [GraphQl/Queries/fundQueries](../README.md) / FUND\_LIST + +# Variable: FUND\_LIST + +> `const` **FUND\_LIST**: `DocumentNode` + +Defined in: [src/GraphQl/Queries/fundQueries.ts:11](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/GraphQl/Queries/fundQueries.ts#L11) + +GraphQL query to retrieve the list of members for a specific organization. + +## Param + +The ID of the organization for which members are being retrieved. + +## Param + +The filter to search for a specific member. + +## Returns + +The list of members associated with the organization. diff --git a/docs/docs/auto-docs/GraphQl/Queries/fundQueries/variables/USER_FUND_CAMPAIGNS.md b/docs/docs/auto-docs/GraphQl/Queries/fundQueries/variables/USER_FUND_CAMPAIGNS.md new file mode 100644 index 0000000000..46cebc0ce1 --- /dev/null +++ b/docs/docs/auto-docs/GraphQl/Queries/fundQueries/variables/USER_FUND_CAMPAIGNS.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [GraphQl/Queries/fundQueries](../README.md) / USER\_FUND\_CAMPAIGNS + +# Variable: USER\_FUND\_CAMPAIGNS + +> `const` **USER\_FUND\_CAMPAIGNS**: `DocumentNode` + +Defined in: [src/GraphQl/Queries/fundQueries.ts:91](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/GraphQl/Queries/fundQueries.ts#L91) diff --git a/docs/docs/auto-docs/GraphQl/Queries/fundQueries/variables/USER_PLEDGES.md b/docs/docs/auto-docs/GraphQl/Queries/fundQueries/variables/USER_PLEDGES.md new file mode 100644 index 0000000000..4c5cd0e314 --- /dev/null +++ b/docs/docs/auto-docs/GraphQl/Queries/fundQueries/variables/USER_PLEDGES.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [GraphQl/Queries/fundQueries](../README.md) / USER\_PLEDGES + +# Variable: USER\_PLEDGES + +> `const` **USER\_PLEDGES**: `DocumentNode` + +Defined in: [src/GraphQl/Queries/fundQueries.ts:107](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/GraphQl/Queries/fundQueries.ts#L107) diff --git a/docs/docs/auto-docs/GraphQl/Queries/userTagQueries/README.md b/docs/docs/auto-docs/GraphQl/Queries/userTagQueries/README.md new file mode 100644 index 0000000000..ee918283dd --- /dev/null +++ b/docs/docs/auto-docs/GraphQl/Queries/userTagQueries/README.md @@ -0,0 +1,13 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / GraphQl/Queries/userTagQueries + +# GraphQl/Queries/userTagQueries + +## Variables + +- [USER\_TAG\_SUB\_TAGS](variables/USER_TAG_SUB_TAGS.md) +- [USER\_TAGS\_ASSIGNED\_MEMBERS](variables/USER_TAGS_ASSIGNED_MEMBERS.md) +- [USER\_TAGS\_MEMBERS\_TO\_ASSIGN\_TO](variables/USER_TAGS_MEMBERS_TO_ASSIGN_TO.md) diff --git a/docs/docs/auto-docs/GraphQl/Queries/userTagQueries/variables/USER_TAGS_ASSIGNED_MEMBERS.md b/docs/docs/auto-docs/GraphQl/Queries/userTagQueries/variables/USER_TAGS_ASSIGNED_MEMBERS.md new file mode 100644 index 0000000000..54fb7bc22e --- /dev/null +++ b/docs/docs/auto-docs/GraphQl/Queries/userTagQueries/variables/USER_TAGS_ASSIGNED_MEMBERS.md @@ -0,0 +1,21 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [GraphQl/Queries/userTagQueries](../README.md) / USER\_TAGS\_ASSIGNED\_MEMBERS + +# Variable: USER\_TAGS\_ASSIGNED\_MEMBERS + +> `const` **USER\_TAGS\_ASSIGNED\_MEMBERS**: `DocumentNode` + +Defined in: [src/GraphQl/Queries/userTagQueries.ts:10](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/GraphQl/Queries/userTagQueries.ts#L10) + +GraphQL query to retrieve organization members assigned a certain tag. + +## Param + +The ID of the tag that is assigned. + +## Returns + +The list of organization members. diff --git a/docs/docs/auto-docs/GraphQl/Queries/userTagQueries/variables/USER_TAGS_MEMBERS_TO_ASSIGN_TO.md b/docs/docs/auto-docs/GraphQl/Queries/userTagQueries/variables/USER_TAGS_MEMBERS_TO_ASSIGN_TO.md new file mode 100644 index 0000000000..e792b8ec11 --- /dev/null +++ b/docs/docs/auto-docs/GraphQl/Queries/userTagQueries/variables/USER_TAGS_MEMBERS_TO_ASSIGN_TO.md @@ -0,0 +1,21 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [GraphQl/Queries/userTagQueries](../README.md) / USER\_TAGS\_MEMBERS\_TO\_ASSIGN\_TO + +# Variable: USER\_TAGS\_MEMBERS\_TO\_ASSIGN\_TO + +> `const` **USER\_TAGS\_MEMBERS\_TO\_ASSIGN\_TO**: `DocumentNode` + +Defined in: [src/GraphQl/Queries/userTagQueries.ts:119](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/GraphQl/Queries/userTagQueries.ts#L119) + +GraphQL query to retrieve organization members that aren't assigned a certain tag. + +## Param + +The ID of the tag. + +## Returns + +The list of organization members. diff --git a/docs/docs/auto-docs/GraphQl/Queries/userTagQueries/variables/USER_TAG_SUB_TAGS.md b/docs/docs/auto-docs/GraphQl/Queries/userTagQueries/variables/USER_TAG_SUB_TAGS.md new file mode 100644 index 0000000000..afe6de08b7 --- /dev/null +++ b/docs/docs/auto-docs/GraphQl/Queries/userTagQueries/variables/USER_TAG_SUB_TAGS.md @@ -0,0 +1,21 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [GraphQl/Queries/userTagQueries](../README.md) / USER\_TAG\_SUB\_TAGS + +# Variable: USER\_TAG\_SUB\_TAGS + +> `const` **USER\_TAG\_SUB\_TAGS**: `DocumentNode` + +Defined in: [src/GraphQl/Queries/userTagQueries.ts:60](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/GraphQl/Queries/userTagQueries.ts#L60) + +GraphQL query to retrieve the sub tags of a certain tag. + +## Param + +The ID of the parent tag. + +## Returns + +The list of sub tags. diff --git a/docs/docs/auto-docs/README.md b/docs/docs/auto-docs/README.md new file mode 100644 index 0000000000..cdfd8da1c5 --- /dev/null +++ b/docs/docs/auto-docs/README.md @@ -0,0 +1,60 @@ +**talawa-admin** + +*** + +# Talawa Admin + +💬 Join the community on Slack from our [Palisadoes Foundation GitHub Home Page](https://github.com/PalisadoesFoundation) + +![talawa-logo-lite-200x200](https://github.com/PalisadoesFoundation/talawa-admin/assets/16875803/26291ec5-d3c1-4135-8bc7-80885dff613d) + +[![License: GPL v3](https://img.shields.io/badge/License-GPLv3-blue.svg)](https://www.gnu.org/licenses/gpl-3.0) +[![GitHub stars](https://img.shields.io/github/stars/PalisadoesFoundation/talawa-admin.svg?style=social&label=Star&maxAge=2592000)](https://github.com/PalisadoesFoundation/talawa-admin) +[![GitHub forks](https://img.shields.io/github/forks/PalisadoesFoundation/talawa-admin.svg?style=social&label=Fork&maxAge=2592000)](https://github.com/PalisadoesFoundation/talawa-admin) +[![codecov](https://codecov.io/gh/PalisadoesFoundation/talawa-admin/branch/develop/graph/badge.svg?token=II0R0RREES)](https://codecov.io/gh/PalisadoesFoundation/talawa-admin) + +Talawa is a modular open source project to manage group activities of both non-profit organizations and businesses. + +Core features include: + +1. Membership management +2. Groups management +3. Event registrations +4. Recurring meetings +5. Facilities registrations + +`talawa` is based on the original `quito` code created by the [Palisadoes Foundation][pfd] as part of its annual Calico Challenge program. Calico provides paid summer internships for Jamaican university students to work on selected open source projects. They are mentored by software professionals and receive stipends based on the completion of predefined milestones. Calico was started in 2015. Visit [The Palisadoes Foundation's website](http://www.palisadoes.org/) for more details on its origin and activities. + +# Table of Contents + + + +- [Talawa Components](#talawa-components) +- [Documentation](#documentation) +- [Videos](#videos) + + + +# Talawa Components + +`talawa` has these major software components: + +1. **talawa**: [A mobile application with social media features](https://github.com/PalisadoesFoundation/talawa) +1. **talawa-api**: [An API providing access to user data and features](https://github.com/PalisadoesFoundation/talawa-api) +1. **talawa-admin**: [A web based administrative portal](https://github.com/PalisadoesFoundation/talawa-admin) +1. **talawa-docs**: [The online documentation website](https://github.com/PalisadoesFoundation/talawa-docs) + +# Documentation + +1. You can install the software for this repository using the steps in our [INSTALLATION.md](_media/INSTALLATION.md) file. +1. Do you want to contribute to our code base? Look at our [CONTRIBUTING.md](_media/CONTRIBUTING.md) file to get started. There you'll also find links to: + 1. Our code of conduct documentation in the [CODE_OF_CONDUCT.md](_media/CODE_OF_CONDUCT.md) file. + 1. How we handle the processing of new and existing issues in our [ISSUE_GUIDELINES.md](_media/ISSUE_GUIDELINES.md) file. + 1. The methodologies we use to manage our pull requests in our [PR_GUIDELINES.md](_media/PR_GUIDELINES.md) file. +1. The `talawa` documentation can be found at our [docs.talawa.io](https://docs.talawa.io) site. + 1. It is automatically generated from the markdown files stored in our [Talawa-Docs GitHub repository](https://github.com/PalisadoesFoundation/talawa-docs). This makes it easy for you to update our documenation. + +# Videos + +1. Visit our [YouTube Channel playlists](https://www.youtube.com/@PalisadoesOrganization/playlists) for more insights + 1. The "[Getting Started - Developers](https://www.youtube.com/watch?v=YpBUoHxEeyg&list=PLv50qHwThlJUIzscg9a80a9-HmAlmUdCF&index=1)" videos are extremely helpful for new open source contributors. diff --git a/docs/docs/auto-docs/_media/CODE_OF_CONDUCT.md b/docs/docs/auto-docs/_media/CODE_OF_CONDUCT.md new file mode 100644 index 0000000000..b82fab3779 --- /dev/null +++ b/docs/docs/auto-docs/_media/CODE_OF_CONDUCT.md @@ -0,0 +1,150 @@ +# Contributor Covenant Code of Conduct + +# Table of Contents + + + +- [Our Pledge](#our-pledge) +- [Our Standards](#our-standards) +- [Enforcement Responsibilities](#enforcement-responsibilities) +- [Scope](#scope) +- [Enforcement](#enforcement) +- [Enforcement Guidelines](#enforcement-guidelines) + - [1. Correction](#1-correction) + - [2. Warning](#2-warning) + - [3. Temporary Ban](#3-temporary-ban) + - [4. Permanent Ban](#4-permanent-ban) +- [Attribution](#attribution) + + + +## Our Pledge + +We as members, contributors, and leaders pledge to make participation in our +community a harassment-free experience for everyone, regardless of age, body +size, visible or invisible disability, ethnicity, sex characteristics, gender +identity and expression, level of experience, education, socio-economic status, +nationality, personal appearance, race, caste, color, religion, or sexual identity +and orientation. + +We pledge to act and interact in ways that contribute to an open, welcoming, +diverse, inclusive, and healthy community. + +## Our Standards + +Examples of behavior that contributes to a positive environment for our +community include: + +- Demonstrating empathy and kindness toward other people +- Being respectful of differing opinions, viewpoints, and experiences +- Giving and gracefully accepting constructive feedback +- Accepting responsibility and apologizing to those affected by our mistakes, + and learning from the experience +- Focusing on what is best not just for us as individuals, but for the + overall community + +Examples of unacceptable behavior include: + +- The use of sexualized language or imagery, and sexual attention or + advances of any kind +- Trolling, insulting or derogatory comments, and personal or political attacks +- Public or private harassment +- Publishing others' private information, such as a physical or email + address, without their explicit permission +- Other conduct which could reasonably be considered inappropriate in a + professional setting + +## Enforcement Responsibilities + +Community leaders are responsible for clarifying and enforcing our standards of +acceptable behavior and will take appropriate and fair corrective action in +response to any behavior that they deem inappropriate, threatening, offensive, +or harmful. + +Community leaders have the right and responsibility to remove, edit, or reject +comments, commits, code, wiki edits, issues, and other contributions that are +not aligned to this Code of Conduct, and will communicate reasons for moderation +decisions when appropriate. + +## Scope + +This Code of Conduct applies within all community spaces, and also applies when +an individual is officially representing the community in public spaces. +Examples of representing our community include using an official e-mail address, +posting via an official social media account, or acting as an appointed +representative at an online or offline event. + +## Enforcement + +Instances of abusive, harassing, or otherwise unacceptable behavior may be +reported to the community leaders responsible for enforcement at [The Palisadoes Foundation](http://www.palisadoes.org/) + +All complaints will be reviewed and investigated promptly and fairly. + +All community leaders are obligated to respect the privacy and security of the +reporter of any incident. + +## Enforcement Guidelines + +Community leaders will follow these Community Impact Guidelines in determining +the consequences for any action they deem in violation of this Code of Conduct: + +### 1. Correction + +**Community Impact**: Use of inappropriate language or other behavior deemed +unprofessional or unwelcome in the community. + +**Consequence**: A private, written warning from community leaders, providing +clarity around the nature of the violation and an explanation of why the +behavior was inappropriate. A public apology may be requested. + +### 2. Warning + +**Community Impact**: A violation through a single incident or series +of actions. + +**Consequence**: A warning with consequences for continued behavior. No +interaction with the people involved, including unsolicited interaction with +those enforcing the Code of Conduct, for a specified period of time. This +includes avoiding interactions in community spaces as well as external channels +like social media. Violating these terms may lead to a temporary or +permanent ban. + +### 3. Temporary Ban + +**Community Impact**: A serious violation of community standards, including +sustained inappropriate behavior. + +**Consequence**: A temporary ban from any sort of interaction or public +communication with the community for a specified period of time. No public or +private interaction with the people involved, including unsolicited interaction +with those enforcing the Code of Conduct, is allowed during this period. +Violating these terms may lead to a permanent ban. + +### 4. Permanent Ban + +**Community Impact**: Demonstrating a pattern of violation of community +standards, including sustained inappropriate behavior, harassment of an +individual, or aggression toward or disparagement of classes of individuals. + +**Consequence**: A permanent ban from any sort of public interaction within +the community. + +## Attribution + +This Code of Conduct is adapted from the [Contributor Covenant][homepage], +version 2.0, available at +[https://www.contributor-covenant.org/version/2/0/code_of_conduct.html][v2.0]. + +Community Impact Guidelines were inspired by +[Mozilla's code of conduct enforcement ladder][mozilla coc]. + +For answers to common questions about this code of conduct, see the FAQ at +[https://www.contributor-covenant.org/faq][faq]. Translations are available +at [https://www.contributor-covenant.org/translations][translations]. + +[homepage]: https://www.contributor-covenant.org +[v2.0]: https://www.contributor-covenant.org/version/2/0/code_of_conduct.html +[mozilla coc]: https://github.com/mozilla/diversity +[faq]: https://www.contributor-covenant.org/faq +[translations]: https://www.contributor-covenant.org/translations diff --git a/docs/docs/auto-docs/_media/CONTRIBUTING.md b/docs/docs/auto-docs/_media/CONTRIBUTING.md new file mode 100644 index 0000000000..dbe448c807 --- /dev/null +++ b/docs/docs/auto-docs/_media/CONTRIBUTING.md @@ -0,0 +1,179 @@ +# Contributing to Talawa-Admin + +Thank you for your interest in contributing to Talawa Admin. Regardless of the size of the contribution you make, all contributions are welcome and are appreciated. + +If you are new to contributing to open source, please read the Open Source Guides on [How to Contribute to Open Source](https://opensource.guide/how-to-contribute/). + +## Table of Contents + + + +- [Code of Conduct](#code-of-conduct) +- [Videos](#videos) +- [Ways to Contribute](#ways-to-contribute) + - [Our Development Process](#our-development-process) + - [Issues](#issues) + - [Pull Requests](#pull-requests) + - [Branching Strategy](#branching-strategy) + - [Conflict Resolution](#conflict-resolution) + - [Contributing Code](#contributing-code) +- [Internships](#internships) +- [Community](#community) + + + +## Code of Conduct + +A safe environment is required for everyone to contribute. Read our [Code of Conduct Guide](CODE_OF_CONDUCT.md) to understand what this means. Let us know immediately if you have unacceptable experiences in this area. + +No one should fear voicing their opinion. Respones must be respectful. + +## Videos + +1. Visit our [YouTube Channel playlists](https://www.youtube.com/@PalisadoesOrganization/playlists) for more insights + 1. The "[Getting Started - Developers](https://www.youtube.com/watch?v=YpBUoHxEeyg&list=PLv50qHwThlJUIzscg9a80a9-HmAlmUdCF&index=1)" videos are extremely helpful for new open source contributors. + +## Ways to Contribute + +If you are ready to start contributing code right away, get ready! + +1. Join our Slack and introduce yourself. See details on how to join below in the Community section. + 1. This repository has its own dedicated channel. + 1. There are many persons on the various channels who are willing to assist you in getting started. +1. Take a look at our issues (**_after reading our guidelines below_**): + 1. We have a list of [good first issues](https://github.com/PalisadoesFoundation/talawa-admin/labels/good%20first%20issue) that contain challenges with a limited scope for beginners. + 1. There are issues for creating tests for our code base. We need to increase reliablility. Try those issues, or create your own for files that don't already have tests. This is another good strategy for beginners. + 1. There are [dormant issues on which nobody has worked for some time](https://github.com/PalisadoesFoundation/talawa-admin/issues?q=is%3Aopen+is%3Aissue+label%3Ano-issue-activity). These are another place to start + 1. There may also be [dormant PRs on which nobody has worked for some time](https://github.com/PalisadoesFoundation/talawa-admin/issues?q=is%3Aopen+is%3Aissue+label%3Ano-issue-activity+label%3Ano-pr-activity)! +1. Create an issue based on a bug you have found or a feature you would like to add. We value meaningful sugestions and will prioritize them. + +Welcome aboard! + +### Our Development Process + +We utilize GitHub issues and pull requests to keep track of issues and contributions from the community. + +#### Issues + +Make sure you are following [issue report guidelines](ISSUE_GUIDELINES.md) available here before creating any new issues on Talawa Admin project. + +#### Pull Requests + +[Pull Request guidelines](PR_GUIDELINES.md) is best resource to follow to start working on open issues. + +#### Branching Strategy + +For Talawa Admin, we had employed the following branching strategy to simplify the development process and to ensure that only stable code is pushed to the `main` branch: + +- `develop`: For unstable code and bug fixing +- `main`: Where the stable production ready code lies. This is our default branch. + +#### Conflict Resolution + +When multiple developers are working on issues there is bound to be a conflict of interest (not to be confused with git conflicts) among issues, PRs or even ideas. Usually these conflicts are resolved in a **First Come First Serve** basis however there are certain exceptions to it. + +- In the cases where you feel your potential issues could be an extension or in conflict with other PRs it is important to ask the author of the PR in the slack channel or in their PRs or issues themselves why he/she did not write code for something that would require minimal effort on their part. +- Based on basic courtesy, it is good practice to let the person who created a function apply and test that function when needed. +- Last but not the least, communication is important make sure to talk to other contributors, in these cases, in slack channel or in a issue/PR thread. +- As a last resort the Admins would be responsible for deciding how to resolve this conflict. + +### Contributing Code + +Code contributions to Talawa come in the form of pull requests. These are done by forking the repo and making changes locally. + +Make sure you have read the [Documentation for Setting up the Project](https://github.com/PalisadoesFoundation/talawa-admin#project-setup) + +The process of proposing a change to Talawa Admin can be summarized as: + +1. Fork the Talawa Admin repository and branch off `develop`. +1. Your newly forked repository can be cloned locally using `git clone `. +1. Make the Palisadoes Foundation's repo your `git upstream` for your local repo. +1. Make the desired changes to the Talawa Admin project. +1. Run the app and test your changes. +1. If you've added code, then test suites must be added. + + 1. **_General_:** + + 1. We need to get to 100% test coverage for the app. We periodically increase the desired test coverage for our pull requests to meet this goal. + 1. Pull requests that don't meet the minimum test coverage levels will not be accepted. This may mean that you will have to create tests for code you did not write. You can decide which part of the code base needs additional tests if this happens to you. + + 2. **_Testing_:** + + 1. Test using this set of commands: + + ``` + npm install + npm run test --watchAll=false --coverage + ``` + + 2. Debug tests in browser + + You can see the output of failing tests in broswer by running `jest-preview` package before running your tests + + ``` + npm install + npm run jest-preview + npm run test --watchAll=false --coverage + ``` + + You don't need to re-run the `npm run jest-preview` command each time, simply run the `npm run test` command if the Jest Preview server is already running in the background, it'll automatically detect any failing tests and show the preview at `http://localhost:3336` as shown in this screenshot - + + ![Debugging Test Demo](./public/images/jest-preview.webp) + + 3. **_Test Code Coverage_:** + + 1. _General Information_ + 1. The current code coverage of the repo is: [![codecov](https://codecov.io/gh/PalisadoesFoundation/talawa-admin/branch/develop/graph/badge.svg?token=II0R0RREES)](https://codecov.io/gh/PalisadoesFoundation/talawa-admin) + 2. You can determine the percentage test coverage of your code by running these two commands in sequence: + ``` + npm install + npm run test --watchAll=false --coverage + genhtml coverage/lcov.info -o coverage + ``` + 3. The output of the `npm run test` command will give you a tablular coverage report per file + 4. The overall coverage rate will be visible on the penultimate line of the `genhtml` command's output. + 5. The `genhtml` command is part of the Linux `lcov` package. Similar packages can be found for Windows and MacOS. + 6. The currently acceptable coverage rate can be found in the [GitHub Pull Request file](.github/workflows/pull-requests.yml). Search for the value below the line containing `min_coverage`. + 2. _Testing Individual Files_ + 1. You can test an individual file by running this command: + ``` + npm run test --watchAll=false /path/to/test/file + ``` + 2. You can get the test coverage report for that file by running this command. The report will list all tests in the suite. Those tests that are not run will have zero values. You will need to look for the output line relevant to your test file. + ``` + npm run test --watchAll=false --coverage /path/to/test/file + ``` + 3. _Creating your code coverage account_ + + 1. You can also see your code coverage online for your fork of the repo. This is provided by `codecov.io` + + 1. Go to this link: `https://app.codecov.io/gh/XXXX/YYYY` where XXXX is your GitHub account username and YYYY is the name of the repository + 2. Login to `codecov.io` using your GitHub account, and add your **repo** and **branches** to the `codecov.io` dashboard. + ![Debugging Test Demo](/public/images/codecov/authorise-codecov-github.jpg) + 3. Remember to add the `Repository Upload Token` for your forked repo. This can be found under `Settings` of your `codecov.io` account. + + 4. Click on Setup Repo option + ![Debugging Test Demo]() + 5. Use the value of this token to create a secret named CODE_COV for your forked repo. + [![Code-cov-token.jpg](/public/images/codecov/Code-cov-token.jpg)]() + [![addd-your-key.jpg](/public/images/codecov/addd-your-key.jpg)]() + 6. You will see your code coverage reports with every push to your repo after following these steps + [![results.jpg](/public/images/codecov/results.jpg)]() + +1. After making changes you can add them to git locally using `git add `(to add changes only in a particular file) or `git add .` (to add all changes). +1. After adding the changes you need to commit them using `git commit -m ''`(look at the commit guidelines below for commit messages). +1. Once you have successfully commited your changes, you need to push the changes to the forked repo on github using: `git push origin `.(Here branch name must be name of the branch you want to push the changes to.) +1. Now create a pull request to the Talawa-admin repository from your forked repo. Open an issue regarding the same and link your PR to it. +1. Ensure the test suite passes, either locally or on CI once a PR has been created. +1. Review and address comments on your pull request if requested. + +## Internships + +If you are participating in any of the various internship programs we are members of, then please read the [introduction guides on our documentation website](https://docs.talawa.io/docs/). + +## Community + +There are many ways to communicate with the community. + +1. The Palisadoes Foundation has a Slack channel where members can assist with support and clarification. Visit the [Talawa GitHub repository home page](https://github.com/PalisadoesFoundation/talawa) for the link to join our slack channel. +1. We also have a technical email list run by [freelists.org](https://www.freelists.org/). Search for "palisadoes" and join. Members on this list are also periodically added to our marketing email list that focuses on less technical aspects of our work. diff --git a/docs/docs/auto-docs/_media/INSTALLATION.md b/docs/docs/auto-docs/_media/INSTALLATION.md new file mode 100644 index 0000000000..3c09f69e33 --- /dev/null +++ b/docs/docs/auto-docs/_media/INSTALLATION.md @@ -0,0 +1,382 @@ +# Talawa-Admin Installation + +This document provides instructions on how to set up and start a running instance of `talawa-admin` on your local system. The instructions are written to be followed in sequence so make sure to go through each of them step by step without skipping any sections. + +# Table of Contents + + + +- [Installation Steps Summary](#installation-steps-summary) +- [Prerequisites](#prerequisites) + - [Install git](#install-git) + - [Setting up this repository](#setting-up-this-repository) + - [Install node.js](#install-nodejs) + - [Install TypeScript](#install-typescript) + - [Install Required Packages](#install-required-packages) +- [Installation using Docker](#installation-using-docker) + - [Prerequisites](#prerequisites-1) + - [Development Setup](#development-setup) + + + +# Installation Steps Summary + +Installation is not difficult, but there are many steps. This is a brief explanation of what needs to be done: + +1. Install `git` +2. Download the code from GitHub using `git` +3. Install `node.js` (Node), the runtime environment the application will need to work. +4. Configure the Node Package Manager (`npm`) to automatically use the correct version of Node for our application. +5. Use `npm` to install TypeScript, the language the application is written in. +6. Install other supporting software such as the database. +7. Configure the application +8. Start the application + +These steps are explained in more detail in the sections that follow. + +# Prerequisites + +In this section we'll explain how to set up all the prerequisite software packages to get you up and running. + +## Install git + +The easiest way to get the latest copies of our code is to install the `git` package on your computer. + +Follow the setup guide for `git` on official [git docs](https://git-scm.com/downloads). Basic `git` knowledge is required for open source contribution so make sure you're comfortable with it. [Here's](https://youtu.be/apGV9Kg7ics) a good tutorial to get started with `git` and `github`. + +## Setting up this repository + +First you need a local copy of `talawa-admin`. Run the following command in the directory of choice on your local system. + +1. On your computer, navigate to the folder where you want to setup the repository. +2. Open a `cmd` (Windows) or `terminal` (Linux or MacOS) session in this folder. + 1. An easy way to do this is to right-click and choose appropriate option based on your OS. +3. **For Our Open Source Contributor Software Developers:** + + 1. Next, we'll fork and clone the `talawa-admin` repository. + 1. In your web browser, navigate to [https://github.com/PalisadoesFoundation/talawa-admin/](https://github.com/PalisadoesFoundation/talawa-admin/) and click on the `fork` button. It is placed on the right corner opposite the repository name `PalisadoesFoundation/talawa-admin`. + + ![Image with fork](public/markdown/images/install1.png) + + 1. You should now see `talawa-admin` under your repositories. It will be marked as forked from `PalisadoesFoundation/talawa-admin` + + ![Image of user's clone](public/markdown/images/install2.png) + + 1. Clone the repository to your local computer (replacing the values in `{{}}`): + ```bash + $ git clone https://github.com/{{YOUR GITHUB USERNAME}}/talawa-admin.git + cd talawa-admin + git checkout develop + ``` + - **Note:** Make sure to check out the `develop` branch + 1. You now have a local copy of the code files. For more detailed instructions on contributing code, and managing the versions of this repository with `git`, checkout our [CONTRIBUTING.md](./CONTRIBUTING.md) file. + +4. **Talawa Administrators:** + + 1. Clone the repository to your local computer using this command: + + ```bash + $ git clone https://github.com/PalisadoesFoundation/talawa-admin.git + ``` + +## Install node.js + +Best way to install and manage `node.js` is making use of node version managers. We recommend using `fnm`, which will be described in more detail later. + +Follow these steps to install the `node.js` packages in Windows, Linux and MacOS. + +1. For Windows: + 1. first install `node.js` from their website at https://nodejs.org + 1. When installing, don't click the option to install the `necessary tools`. These are not needed in our case. + 2. then install [fnm](https://github.com/Schniz/fnm). Please read all the steps in this section first. + 1. All the commands listed on this page will need to be run in a Windows terminal session in the `talawa-admin` directory. + 2. Install `fnm` using the `winget` option listed on the page. + 3. Setup `fnm` to automatically set the version of `node.js` to the version required for the repository using these steps: + 1. First, refer to the `fnm` web page's section on `Shell Setup` recommendations. + 2. Open a `Windows PowerShell` terminal window + 3. Run the recommended `Windows PowerShell` command to open `notepad`. + 4. Paste the recommended string into `notepad` + 5. Save the document. + 6. Exit `notepad` + 7. Exit PowerShell + 8. This will ensure that you are always using the correct version of `node.js` +2. For Linux and MacOS, use the terminal window. + 1. install `node.js` + 2. then install `fnm` + 1. Refer to the installation page's section on the `Shell Setup` recommendations. + 2. Run the respective recommended commands to setup your node environment + 3. This will ensure that you are always using the correct version of `node.js` + +## Install TypeScript + +TypeScript is a typed superset of JavaScript that compiles to plain JavaScript. It adds optional types, classes, and modules to JavaScript, and supports tools for large-scale JavaScript applications. + +To install TypeScript, you can use the `npm` command which comes with `node.js`: + +```bash +npm install -g typescript +``` + +This command installs TypeScript globally on your system so that it can be accessed from any project. + +## Install Required Packages + +Run the following command to install the packages and dependencies required by the app: + +``` +npm install +``` + +The prerequisites are now installed. The next step will be to get the app up and running. + +# Installation using Docker + +## Prerequisites + +1. Install Docker on your system: + - [Docker Desktop for Windows/Mac](https://www.docker.com/products/docker-desktop) + - [Docker Engine for Linux](https://docs.docker.com/engine/install/) + +### Development Setup + +If you prefer to use Docker, you can install the app using the following command: + +1. Create a `.env` file as described in the Configuration section + +2. Build the Docker Image: + +Run the following command to build the Docker image: + +````bash +docker build -t talawa-admin . +```bash + +3. Run the Docker container: + +After the build is complete, run the Docker container using this command: + +```bash +docker run -p 4321:4321 talawa-admin +```bash + +The application will be accessible at `http://localhost:4321` + +# Configuration + +It's important to configure Talawa-Admin. Here's how to do it. + +You can use our interactive setup script for the configuration. Use the following command for the same. + +```bash +npm run setup +```bash + +All the options in "setup" can be done manually as well and here's how to do it. - [Creating .env file](#creating-env-file) + +## Creating .env file + +A file named .env is required in the root directory of talawa-admin for storing environment variables used at runtime. It is not a part of the repo and you will have to create it. For a sample of `.env` file there is a file named `.env.example` in the root directory. Create a new `.env` file by copying the contents of the `.env.example` into `.env` file. Use this command: + +```` + +cp .env.example .env + +``` + +This `.env` file must be populated with the following environment variables for `talawa-admin` to work: + +| Variable | Description | +| ------------------------------- | ------------------------------------------------- | +| PORT | Custom port for Talawa-Admin development purposes | +| REACT_APP_TALAWA_URL | URL endpoint for talawa-api graphql service | +| REACT_APP_BACKEND_WEBSOCKET_URL | URL endpoint for websocket end point | +| REACT_APP_USE_RECAPTCHA | Whether you want to use reCAPTCHA or not | +| REACT_APP_RECAPTCHA_SITE_KEY | Site key for authentication using reCAPTCHA | + +Follow the instructions from the sections [Setting up PORT in .env file](#setting-up-port-in-env-file), [Setting up REACT_APP_TALAWA_URL in .env file](#setting-up-REACT_APP_TALAWA_URL-in-env-file), [Setting up REACT_APP_BACKEND_WEBSOCKET_URL in .env file](#setting-up-react_app_backend_websocket_url-in-env-file), [Setting up REACT_APP_RECAPTCHA_SITE_KEY in .env file](#setting-up-REACT_APP_RECAPTCHA_SITE_KEY-in-env-file) and [Setting up Compiletime and Runtime logs](#setting-up-compiletime-and-runtime-logs) to set up these environment variables. + +## Setting up PORT in .env file + +Add a custom port number for Talawa-Admin development purposes to the variable named `PORT` in the `.env` file. + +## Setting up REACT_APP_TALAWA_URL in .env file + +Add the endpoint for accessing talawa-api graphql service to the variable named `REACT_APP_TALAWA_URL` in the `.env` file. + +``` + +REACT_APP_TALAWA_URL="http://API-IP-ADRESS:4000/graphql/" + +``` + +If you are a software developer working on your local system, then the URL would be: + +``` + +REACT_APP_TALAWA_URL="http://localhost:4000/graphql/" + +``` + +If you are trying to access Talawa Admin from a remote host with the API URL containing "localhost", You will have to change the API URL to + +``` + +REACT_APP_TALAWA_URL="http://YOUR-REMOTE-ADDRESS:4000/graphql/" + +``` + +## Setting up REACT_APP_BACKEND_WEBSOCKET_URL in .env file + +The endpoint for accessing talawa-api WebSocket graphql service for handling subscriptions is automatically added to the variable named `REACT_APP_BACKEND_WEBSOCKET_URL` in the `.env` file. + +``` + +REACT_APP_BACKEND_WEBSOCKET_URL="ws://API-IP-ADRESS:4000/graphql/" + +``` + +If you are a software developer working on your local system, then the URL would be: + +``` + +REACT_APP_BACKEND_WEBSOCKET_URL="ws://localhost:4000/graphql/" + +``` + +If you are trying to access Talawa Admin from a remote host with the API URL containing "localhost", You will have to change the API URL to + +``` + +REACT_APP_BACKEND_WEBSOCKET_URL="ws://YOUR-REMOTE-ADDRESS:4000/graphql/" + +``` + +For additional details, please refer the `How to Access the Talawa-API URL` section in the INSTALLATION.md file found in the [Talawa-API repo](https://github.com/PalisadoesFoundation/talawa-api). + +## Setting up REACT_APP_RECAPTCHA_SITE_KEY in .env file + +You may not want to setup reCAPTCHA since the project will still work. Moreover, it is recommended to not set it up in development environment. + +Just skip to the [Post Configuration Steps](#post-configuration-steps) if you don't want to set it up. Else, read the following steps. + +If you want to setup Google reCAPTCHA now, you may refer to the `RECAPTCHA` section in the INSTALLATION.md file found in [Talawa-API repo](https://github.com/PalisadoesFoundation/talawa-api). + +`Talawa-admin` needs the `reCAPTCHA site key` for the `reCAPTCHA` service you set up during `talawa-api` installation as shown in this screenshot: + +![reCAPTCHA site key](./public/images/REACT_SITE_KEY.webp) + +Copy/paste this `reCAPTCHA site key` to the variable named `REACT_APP_RECAPTCHA_SITE_KEY` in `.env` file. + +``` + +REACT_APP_RECAPTCHA_SITE_KEY="this_is_the_recaptcha_key" + +``` + +## Setting up Compiletime and Runtime logs + +Set the `ALLOW_LOGS` to "YES" if you want warnings , info and error messages in your console or leave it blank if you dont need them or want to keep the console clean + +# Post Configuration Steps + +It's now time to start Talawa-Admin and get it running + +## Running Talawa-Admin + +Run the following command to start `talawa-admin` development server: + +``` + +npm run serve + +``` + +## Accessing Talawa-Admin + +By default `talawa-admin` runs on port `4321` on your system's localhost. It is available on the following endpoint: + +``` + +http://localhost:4321/ + +``` + +If you have specified a custom port number in your `.env` file, Talawa-Admin will run on the following endpoint: + +``` + +http://localhost:${{customPort}}/ + +``` + +Replace `${{customPort}}` with the actual custom port number you have configured in your `.env` file. + +## Talawa-Admin Registration + +The first time you navigate to the running talawa-admin's website you'll land at talawa-admin registration page. Sign up using whatever credentials you want and create the account. Make sure to remember the email and password you entered because they'll be used to sign you in later on. + +## Talawa-Admin Login + +Now sign in to talawa-admin using the `email` and `password` you used to sign up. + +# Testing + +It is important to test our code. If you are a contributor, please follow these steps. + +## Running tests + +You can run the tests for `talawa-admin` using this command: + +``` + +npm run test + +``` + +## Debugging tests + +You can see the output of failing tests in broswer by running `jest-preview` package before running your tests + +``` + +npm run jest-preview +npm run test + +``` + +You don't need to re-run the `npm run jest-preview` command each time, simply run the `npm run test` command if the Jest Preview server is already running in the background, it'll automatically detect any failing tests and show the preview at `http://localhost:3336` as shown in this screenshot - + +![Debugging Test Demo](./public/images/jest-preview.webp) + +## Linting code files + +You can lint your code files using this command: + +``` + +npm run lint:fix + +``` + +## Husky for Git Hooks + +We are using the package `Husky` to run git hooks that run according to different git workflows. + +#### pre-commit hook + +We run a pre-commit hook which automatically runs code quality checks each time you make a commit and also fixes some of the issues. This way you don't have to run them manually each time. + +If you don't want these pre-commit checks running on each commit, you can manually opt out of it using the `--no-verify` flag with your commit message as shown:- + + git commit -m "commit message" --no-verify + +#### post-merge hook + +We are also running a post-merge(post-pull) hook which will automatically run "npm install" only if there is any change made to pakage.json file so that the developer has all the required dependencies when pulling files from remote. + +If you don't want this hook to run, you can manually opt out of this using the `no verify` flag while using the merge command(git pull): + + git pull --no-verify + +
+``` diff --git a/docs/docs/auto-docs/_media/ISSUE_GUIDELINES.md b/docs/docs/auto-docs/_media/ISSUE_GUIDELINES.md new file mode 100644 index 0000000000..5170de5839 --- /dev/null +++ b/docs/docs/auto-docs/_media/ISSUE_GUIDELINES.md @@ -0,0 +1,59 @@ +# Issue Report Guidelines + +:+1::tada: First off, thanks for taking the time to contribute! :tada::+1: + +In order to give everyone a chance to submit a issues reports and contribute to the Talawa project, we have put restrictions in place. This section outlines the guidelines that should be imposed upon issue reports in the Talawa project. + +___ +## Table of Contents + + + +- [Issue Management](#issue-management) + - [New Issues](#new-issues) + - [Existing Issues](#existing-issues) + - [Feature Request Issues](#feature-request-issues) + - [Monitoring the Creation of New Issues](#monitoring-the-creation-of-new-issues) +- [General Guidelines](#general-guidelines) + + + +___ +## Issue Management + +In all cases please use the [GitHub open issue search](https://github.com/PalisadoesFoundation/talawa-admin/issues) to check whether the issue has already been reported. + +### New Issues +To create new issues follow these steps: + +1. Your issue may have already been created. Search for duplicate open issues before submitting yours.for similar deficiencies in the code.duplicate issues are created. +1. Verify whether the issue has been fixed by trying to reproduce it using the latest master or development branch in the repository. +1. Click on the [`New Issue`](https://github.com/PalisadoesFoundation/talawa-admin/issues/new/choose) button +1. Use the templates to create a standardized report of what needs to be done and why. +1. If you want to be assigned the issue that you have created, then add a comment immediately after submitting it. + +We welcome contributors who find new ways to make the code better. + +### Existing Issues + +You can also be a valuable contributor by searching for dormant issues. Here's how you can do that: + +1. **Previously Assigned Issues**: We regularly review issues and add a [`no-issue-activity`](https://github.com/PalisadoesFoundation/talawa-admin/issues?q=is%3Aissue+is%3Aopen+label%3Ano-issue-activity) label to them. Use the issue comments to ask whether the assignee is still working on the issue, and if not, ask for the issue to be assigned to you. +1. **Unassigned Issues**: If the issue is already reported and [not assigned to anyone](https://github.com/PalisadoesFoundation/talawa-admin/issues?q=is%3Aissue+is%3Aopen+no%3Aassignee) and you are interested in working on the issue then: + 1. Ask for the issue to be assigned to you in the issue comments + 2. Ask our contributors to assign it to you in `#talawa` slack channel. + +Working on these types of existing issues is a good way of getting started with the community. + +### Feature Request Issues + +Feature requests are welcome. But take a moment to find out whether your idea fits with the scope and aims of the project. It's up to you to make a strong case to convince the mentors of the merits of this feature. Please provide as much detail and context as possible. + +### Monitoring the Creation of New Issues +1. Join our `#talawa-github` slack channel for automatic issue and pull request updates. + +## General Guidelines + +1. Discuss issues in our various slack channels when necessary +2. Please do not derail or troll issues. +3. Keep the discussion on topic and respect the opinions of others. diff --git a/docs/docs/auto-docs/_media/PR_GUIDELINES.md b/docs/docs/auto-docs/_media/PR_GUIDELINES.md new file mode 100644 index 0000000000..4c904c782d --- /dev/null +++ b/docs/docs/auto-docs/_media/PR_GUIDELINES.md @@ -0,0 +1,69 @@ +# Pull Request Guidelines + +:+1::tada: First off, thanks for taking the time to contribute! :tada::+1: + +In order to give everyone a chance to submit a pull request and contribute to the Talawa project, we have put restrictions in place. This section outlines the guidelines that should be imposed upon pull requests in the Talawa project. + +# Table of Contents + + + +- [Pull Requests and Issues](#pull-requests-and-issues) +- [Linting and Formatting](#linting-and-formatting) +- [Testing](#testing) +- [Pull Request Processing](#pull-request-processing) + - [Only submit PRs against our `develop` branch, not the default `main` branch](#only-submit-prs-against-our-develop-branch-not-the-default-main-branch) + + + +## Pull Requests and Issues + +1. Do not start working on any open issue and raise a PR unless the issue is assigned to you. PRs that don't meet these guidelines will be closed. +1. Pull requests must be based on [open issues](https://github.com/PalisadoesFoundation/talawa-admin/issues) available. +1. [Use this method to automatically close the issue when the PR is completed.](https://docs.github.com/en/github/managing-your-work-on-github/linking-a-pull-request-to-an-issue) + +## Linting and Formatting + +All the pull requests must have code that is properly linted and formatted, so that uniformity across the repository can be ensured. + +Before opening a PR, you can run the following scripts to automatically lint and format the code properly: + +``` +npm run lint:fix +npm run format:fix +``` + +Both of these scripts also have a `check` counterpart, which would be used by the GitHub CI to ensure that the code is properly formatted. +You can run the following scripts yourself to ensure that your pull request doesn't fail due to linting and formatting errors: + +``` +npm run lint:check +npm run format:check +``` + +## Testing + +1. All pull requests must have test units. If, for some reason, it is not possible to add tests, please let us know and explain why. In that case, you'll need to tell us what steps you followed to manually test your changes. +1. Please read our [CONTRIBUTING.md](CONTRIBUTING.md) document for details on our testing policy. + +## Pull Request Processing +These are key guidelines for the procedure: + +### Only submit PRs against our `develop` branch, not the default `main` branch + +1. Only submit PRs against our `develop` branch. The default is `main`, so you will have to modify this before submitting your PR for review. PRs made against `main` will be closed. +1. We do not accept draft Pull Requests. They will be closed if submitted. We focus on work that is ready for immediate review. +1. Removing assigned reviewers from your Pull Request will cause it to be closed. The quality of our code is very important to us. Therefore we make experienced maintainers of our code base review your code. Removing these assigned persons is not in the best interest of this goal. +1. If you have not done so already, please read the `Pull Requests and Issues` and `Testing` sections above. +1. Each contributor may only create one pull request at a time. We have this rule in place due to our limited resources - if everyone was allowed to post multiple pull requests, we would not be able to review them properly. It is also better for contributors because you can focus on creating one quality PR - so spend time making sure it is as good as it can be. +1. Upon successful push to the fork, check if all tests are passing; if not, fix the issues and then create a pull request. +1. If the pull request's code quality is not up to par, or it would break the app, it will more likely be closed. So please be careful when creating a PR. +1. Please follow the PR template provided. Ensure the PR title clearly describes the problem it is solving. In the description, include the relevant issue number, snapshots, and videos after changes are added. +1. If you are borrowing a code, please disclose it. It is fine and sometimes even recommended to borrow code, but we need to know about it to assess your work. If we find out that your pull request contains a lot of code copied from elsewhere, we will close the pull request. +1. No Work In Progress. ONLY completed and working pull requests and with respective test units will be accepted. A WIP would fall under rule 4 and be closed immediately. +1. Please do not @mention contributors and mentors. Sometimes it takes time before we can review your pull request or answer your questions, but we'll get to it sooner or later. @mentioning someone just adds to the pile of notifications we get and it won't make us look at your issue faster. +1. Do not force push. If you make changes to your pull request, please simply add a new commit, as that makes it easy for us to review your new changes. If you force push, we'll have to review everything from the beginning. +1. PR should be small, easy to review and should follow standard coding styles. +1. If PR has conflicts because of recently added changes to the same file, resolve issues, test new changes, and submit PR again for review. +1. PRs should be atomic. That is, they should address one item (issue or feature) +1. After submitting PR, if you are not replying within 48 hours, then in that case, we may need to assign the issue to other contributors based on the priority of the issue. diff --git a/docs/docs/auto-docs/assets/svgs/social-icons/README.md b/docs/docs/auto-docs/assets/svgs/social-icons/README.md new file mode 100644 index 0000000000..ea42cd11bd --- /dev/null +++ b/docs/docs/auto-docs/assets/svgs/social-icons/README.md @@ -0,0 +1,7 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / assets/svgs/social-icons + +# assets/svgs/social-icons diff --git a/docs/docs/auto-docs/components/AddOn/AddOn/README.md b/docs/docs/auto-docs/components/AddOn/AddOn/README.md new file mode 100644 index 0000000000..3fb85e739b --- /dev/null +++ b/docs/docs/auto-docs/components/AddOn/AddOn/README.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / components/AddOn/AddOn + +# components/AddOn/AddOn + +## Functions + +- [default](functions/default.md) diff --git a/docs/docs/auto-docs/components/AddOn/AddOn/functions/default.md b/docs/docs/auto-docs/components/AddOn/AddOn/functions/default.md new file mode 100644 index 0000000000..5f80e92a7b --- /dev/null +++ b/docs/docs/auto-docs/components/AddOn/AddOn/functions/default.md @@ -0,0 +1,27 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [components/AddOn/AddOn](../README.md) / default + +# Function: default() + +> **default**(`__namedParameters`): `JSX.Element` + +Defined in: [src/components/AddOn/AddOn.tsx:22](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/AddOn/AddOn.tsx#L22) + +The AddOn component is used to wrap children within a plugin container. +It also accepts additional properties (`extras` and `name`) to allow for +extensibility and custom naming. + +## Parameters + +### \_\_namedParameters + +`InterfaceAddOnProps` + +## Returns + +`JSX.Element` + +The JSX element representing the AddOn component. diff --git a/docs/docs/auto-docs/components/AddOn/core/AddOnEntry/AddOnEntry/README.md b/docs/docs/auto-docs/components/AddOn/core/AddOnEntry/AddOnEntry/README.md new file mode 100644 index 0000000000..66c7ecc60f --- /dev/null +++ b/docs/docs/auto-docs/components/AddOn/core/AddOnEntry/AddOnEntry/README.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../../../README.md) + +*** + +[talawa-admin](../../../../../modules.md) / components/AddOn/core/AddOnEntry/AddOnEntry + +# components/AddOn/core/AddOnEntry/AddOnEntry + +## Functions + +- [default](functions/default.md) diff --git a/docs/docs/auto-docs/components/AddOn/core/AddOnEntry/AddOnEntry/functions/default.md b/docs/docs/auto-docs/components/AddOn/core/AddOnEntry/AddOnEntry/functions/default.md new file mode 100644 index 0000000000..55599f0b7b --- /dev/null +++ b/docs/docs/auto-docs/components/AddOn/core/AddOnEntry/AddOnEntry/functions/default.md @@ -0,0 +1,43 @@ +[**talawa-admin**](../../../../../../README.md) + +*** + +[talawa-admin](../../../../../../modules.md) / [components/AddOn/core/AddOnEntry/AddOnEntry](../README.md) / default + +# Function: default() + +> **default**(`props`): `JSX.Element` + +Defined in: [src/components/AddOn/core/AddOnEntry/AddOnEntry.tsx:46](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/AddOn/core/AddOnEntry/AddOnEntry.tsx#L46) + +A React component that represents an add-on entry, displaying its details and allowing installation or uninstallation. + +## Parameters + +### props + +`InterfaceAddOnEntryProps` + +The properties for the component. + +## Returns + +`JSX.Element` + +A JSX element containing the add-on entry. + +## Example + +```tsx + {}} +/> +``` diff --git a/docs/docs/auto-docs/components/AddOn/core/AddOnEntry/AddOnEntryMocks/README.md b/docs/docs/auto-docs/components/AddOn/core/AddOnEntry/AddOnEntryMocks/README.md new file mode 100644 index 0000000000..04fe5af8f5 --- /dev/null +++ b/docs/docs/auto-docs/components/AddOn/core/AddOnEntry/AddOnEntryMocks/README.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../../../README.md) + +*** + +[talawa-admin](../../../../../modules.md) / components/AddOn/core/AddOnEntry/AddOnEntryMocks + +# components/AddOn/core/AddOnEntry/AddOnEntryMocks + +## Variables + +- [ADD\_ON\_ENTRY\_MOCK](variables/ADD_ON_ENTRY_MOCK.md) diff --git a/docs/docs/auto-docs/components/AddOn/core/AddOnEntry/AddOnEntryMocks/variables/ADD_ON_ENTRY_MOCK.md b/docs/docs/auto-docs/components/AddOn/core/AddOnEntry/AddOnEntryMocks/variables/ADD_ON_ENTRY_MOCK.md new file mode 100644 index 0000000000..9011f4c570 --- /dev/null +++ b/docs/docs/auto-docs/components/AddOn/core/AddOnEntry/AddOnEntryMocks/variables/ADD_ON_ENTRY_MOCK.md @@ -0,0 +1,65 @@ +[**talawa-admin**](../../../../../../README.md) + +*** + +[talawa-admin](../../../../../../modules.md) / [components/AddOn/core/AddOnEntry/AddOnEntryMocks](../README.md) / ADD\_ON\_ENTRY\_MOCK + +# Variable: ADD\_ON\_ENTRY\_MOCK + +> `const` **ADD\_ON\_ENTRY\_MOCK**: `object`[] + +Defined in: [src/components/AddOn/core/AddOnEntry/AddOnEntryMocks.ts:13](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/AddOn/core/AddOnEntry/AddOnEntryMocks.ts#L13) + +## Type declaration + +### request + +> **request**: `object` + +#### request.query + +> **query**: `DocumentNode` = `UPDATE_INSTALL_STATUS_PLUGIN_MUTATION` + +#### request.variables + +> **variables**: `object` + +#### request.variables.id + +> **id**: `string` = `'1'` + +#### request.variables.orgId + +> **orgId**: `string` = `'undefined'` + +### result + +> **result**: `object` + +#### result.data + +> **data**: `object` + +#### result.data.updatePluginStatus + +> **updatePluginStatus**: `object` = `updatePluginStatus` + +#### result.data.updatePluginStatus.\_id + +> **\_id**: `string` = `'123'` + +#### result.data.updatePluginStatus.pluginCreatedBy + +> **pluginCreatedBy**: `string` = `'John Doe'` + +#### result.data.updatePluginStatus.pluginDesc + +> **pluginDesc**: `string` = `'This is a sample plugin description.'` + +#### result.data.updatePluginStatus.pluginName + +> **pluginName**: `string` = `'Sample Plugin'` + +#### result.data.updatePluginStatus.uninstalledOrgs + +> **uninstalledOrgs**: `any`[] = `[]` diff --git a/docs/docs/auto-docs/components/AddOn/core/AddOnRegister/AddOnRegister/README.md b/docs/docs/auto-docs/components/AddOn/core/AddOnRegister/AddOnRegister/README.md new file mode 100644 index 0000000000..cf56d90951 --- /dev/null +++ b/docs/docs/auto-docs/components/AddOn/core/AddOnRegister/AddOnRegister/README.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../../../README.md) + +*** + +[talawa-admin](../../../../../modules.md) / components/AddOn/core/AddOnRegister/AddOnRegister + +# components/AddOn/core/AddOnRegister/AddOnRegister + +## Functions + +- [default](functions/default.md) diff --git a/docs/docs/auto-docs/components/AddOn/core/AddOnRegister/AddOnRegister/functions/default.md b/docs/docs/auto-docs/components/AddOn/core/AddOnRegister/AddOnRegister/functions/default.md new file mode 100644 index 0000000000..8894572b70 --- /dev/null +++ b/docs/docs/auto-docs/components/AddOn/core/AddOnRegister/AddOnRegister/functions/default.md @@ -0,0 +1,32 @@ +[**talawa-admin**](../../../../../../README.md) + +*** + +[talawa-admin](../../../../../../modules.md) / [components/AddOn/core/AddOnRegister/AddOnRegister](../README.md) / default + +# Function: default() + +> **default**(`__namedParameters`): `JSX.Element` + +Defined in: [src/components/AddOn/core/AddOnRegister/AddOnRegister.tsx:38](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/AddOn/core/AddOnRegister/AddOnRegister.tsx#L38) + +A React component for registering a new add-on plugin. + +This component: +- Displays a button to open a modal for plugin registration. +- Contains a form in the modal for entering plugin details. +- Uses GraphQL mutation to register the plugin. +- Uses `react-i18next` for localization and `react-toastify` for notifications. +- Redirects to the organization list page if no `orgId` is found in the URL. + +## Parameters + +### \_\_namedParameters + +`InterfaceAddOnRegisterProps` + +## Returns + +`JSX.Element` + +A JSX element containing the button and modal for plugin registration. diff --git a/docs/docs/auto-docs/components/AddOn/core/AddOnStore/AddOnStore/README.md b/docs/docs/auto-docs/components/AddOn/core/AddOnStore/AddOnStore/README.md new file mode 100644 index 0000000000..bfbd8077d0 --- /dev/null +++ b/docs/docs/auto-docs/components/AddOn/core/AddOnStore/AddOnStore/README.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../../../README.md) + +*** + +[talawa-admin](../../../../../modules.md) / components/AddOn/core/AddOnStore/AddOnStore + +# components/AddOn/core/AddOnStore/AddOnStore + +## Functions + +- [default](functions/default.md) diff --git a/docs/docs/auto-docs/components/AddOn/core/AddOnStore/AddOnStore/functions/default.md b/docs/docs/auto-docs/components/AddOn/core/AddOnStore/AddOnStore/functions/default.md new file mode 100644 index 0000000000..f750c67ba5 --- /dev/null +++ b/docs/docs/auto-docs/components/AddOn/core/AddOnStore/AddOnStore/functions/default.md @@ -0,0 +1,25 @@ +[**talawa-admin**](../../../../../../README.md) + +*** + +[talawa-admin](../../../../../../modules.md) / [components/AddOn/core/AddOnStore/AddOnStore](../README.md) / default + +# Function: default() + +> **default**(): `JSX.Element` + +Defined in: [src/components/AddOn/core/AddOnStore/AddOnStore.tsx:37](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/AddOn/core/AddOnStore/AddOnStore.tsx#L37) + +Component for managing and displaying plugins in the store. + +This component: +- Displays a search input and filter options. +- Uses tabs to switch between available and installed plugins. +- Fetches plugins from a GraphQL endpoint and filters them based on search criteria. +- Utilizes Redux store to manage plugin data. + +## Returns + +`JSX.Element` + +A JSX element containing the UI for the add-on store. diff --git a/docs/docs/auto-docs/components/AddOn/support/components/Action/Action/README.md b/docs/docs/auto-docs/components/AddOn/support/components/Action/Action/README.md new file mode 100644 index 0000000000..016a824d7f --- /dev/null +++ b/docs/docs/auto-docs/components/AddOn/support/components/Action/Action/README.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../../../../README.md) + +*** + +[talawa-admin](../../../../../../modules.md) / components/AddOn/support/components/Action/Action + +# components/AddOn/support/components/Action/Action + +## Functions + +- [default](functions/default.md) diff --git a/docs/docs/auto-docs/components/AddOn/support/components/Action/Action/functions/default.md b/docs/docs/auto-docs/components/AddOn/support/components/Action/Action/functions/default.md new file mode 100644 index 0000000000..9b48e79e9b --- /dev/null +++ b/docs/docs/auto-docs/components/AddOn/support/components/Action/Action/functions/default.md @@ -0,0 +1,35 @@ +[**talawa-admin**](../../../../../../../README.md) + +*** + +[talawa-admin](../../../../../../../modules.md) / [components/AddOn/support/components/Action/Action](../README.md) / default + +# Function: default() + +> **default**(`props`): `JSX.Element` + +Defined in: [src/components/AddOn/support/components/Action/Action.tsx:29](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/AddOn/support/components/Action/Action.tsx#L29) + +A React component that renders a labeled container for embedded actions. + +## Parameters + +### props + +`InterfaceActionProps` + +The properties for the component. + +## Returns + +`JSX.Element` + +A JSX element containing the label and child elements. + +## Example + +```ts + + + +``` diff --git a/docs/docs/auto-docs/components/AddOn/support/components/MainContent/MainContent/README.md b/docs/docs/auto-docs/components/AddOn/support/components/MainContent/MainContent/README.md new file mode 100644 index 0000000000..96985c44dc --- /dev/null +++ b/docs/docs/auto-docs/components/AddOn/support/components/MainContent/MainContent/README.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../../../../README.md) + +*** + +[talawa-admin](../../../../../../modules.md) / components/AddOn/support/components/MainContent/MainContent + +# components/AddOn/support/components/MainContent/MainContent + +## Functions + +- [default](functions/default.md) diff --git a/docs/docs/auto-docs/components/AddOn/support/components/MainContent/MainContent/functions/default.md b/docs/docs/auto-docs/components/AddOn/support/components/MainContent/MainContent/functions/default.md new file mode 100644 index 0000000000..ffd592034d --- /dev/null +++ b/docs/docs/auto-docs/components/AddOn/support/components/MainContent/MainContent/functions/default.md @@ -0,0 +1,35 @@ +[**talawa-admin**](../../../../../../../README.md) + +*** + +[talawa-admin](../../../../../../../modules.md) / [components/AddOn/support/components/MainContent/MainContent](../README.md) / default + +# Function: default() + +> **default**(`props`): `JSX.Element` + +Defined in: [src/components/AddOn/support/components/MainContent/MainContent.tsx:25](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/AddOn/support/components/MainContent/MainContent.tsx#L25) + +A React component that renders a main content container with additional styles. + +## Parameters + +### props + +`InterfaceMainContentProps` + +The properties for the component. + +## Returns + +`JSX.Element` + +A JSX element containing the main content container with the provided child elements. + +## Example + +```ts + +

Main content goes here

+
+``` diff --git a/docs/docs/auto-docs/components/AddOn/support/components/SidePanel/SidePanel/README.md b/docs/docs/auto-docs/components/AddOn/support/components/SidePanel/SidePanel/README.md new file mode 100644 index 0000000000..1280bc8469 --- /dev/null +++ b/docs/docs/auto-docs/components/AddOn/support/components/SidePanel/SidePanel/README.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../../../../README.md) + +*** + +[talawa-admin](../../../../../../modules.md) / components/AddOn/support/components/SidePanel/SidePanel + +# components/AddOn/support/components/SidePanel/SidePanel + +## Functions + +- [default](functions/default.md) diff --git a/docs/docs/auto-docs/components/AddOn/support/components/SidePanel/SidePanel/functions/default.md b/docs/docs/auto-docs/components/AddOn/support/components/SidePanel/SidePanel/functions/default.md new file mode 100644 index 0000000000..271d9e4514 --- /dev/null +++ b/docs/docs/auto-docs/components/AddOn/support/components/SidePanel/SidePanel/functions/default.md @@ -0,0 +1,35 @@ +[**talawa-admin**](../../../../../../../README.md) + +*** + +[talawa-admin](../../../../../../../modules.md) / [components/AddOn/support/components/SidePanel/SidePanel](../README.md) / default + +# Function: default() + +> **default**(`props`): `JSX.Element` + +Defined in: [src/components/AddOn/support/components/SidePanel/SidePanel.tsx:30](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/AddOn/support/components/SidePanel/SidePanel.tsx#L30) + +A React component that renders a side panel with an optional collapse state. + +## Parameters + +### props + +`InterfaceSidePanelProps` + +The properties for the component. + +## Returns + +`JSX.Element` + +A JSX element containing the side panel with the provided child elements. + +## Example + +```ts + +

Side panel content

+
+``` diff --git a/docs/docs/auto-docs/components/AddOn/support/services/Plugin.helper/README.md b/docs/docs/auto-docs/components/AddOn/support/services/Plugin.helper/README.md new file mode 100644 index 0000000000..a0cb53abad --- /dev/null +++ b/docs/docs/auto-docs/components/AddOn/support/services/Plugin.helper/README.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../../../README.md) + +*** + +[talawa-admin](../../../../../modules.md) / components/AddOn/support/services/Plugin.helper + +# components/AddOn/support/services/Plugin.helper + +## Classes + +- [default](classes/default.md) diff --git a/docs/docs/auto-docs/components/AddOn/support/services/Plugin.helper/classes/default.md b/docs/docs/auto-docs/components/AddOn/support/services/Plugin.helper/classes/default.md new file mode 100644 index 0000000000..0790f0fd75 --- /dev/null +++ b/docs/docs/auto-docs/components/AddOn/support/services/Plugin.helper/classes/default.md @@ -0,0 +1,77 @@ +[**talawa-admin**](../../../../../../README.md) + +*** + +[talawa-admin](../../../../../../modules.md) / [components/AddOn/support/services/Plugin.helper](../README.md) / default + +# Class: default + +Defined in: [src/components/AddOn/support/services/Plugin.helper.ts:5](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/AddOn/support/services/Plugin.helper.ts#L5) + +Helper class for managing plugin-related tasks such as fetching store data, installed plugins, and generating plugin links. + +## Constructors + +### new default() + +> **new default**(): [`default`](default.md) + +#### Returns + +[`default`](default.md) + +## Methods + +### fetchInstalled() + +> **fetchInstalled**(): `Promise`\<`any`\> + +Defined in: [src/components/AddOn/support/services/Plugin.helper.ts:21](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/AddOn/support/services/Plugin.helper.ts#L21) + +Fetches the list of installed plugins from a local server. + +#### Returns + +`Promise`\<`any`\> + +A promise that resolves to the installed plugins data in JSON format. + +*** + +### fetchStore() + +> **fetchStore**(): `Promise`\<`any`\> + +Defined in: [src/components/AddOn/support/services/Plugin.helper.ts:11](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/AddOn/support/services/Plugin.helper.ts#L11) + +Fetches the store data from a local server. + +#### Returns + +`Promise`\<`any`\> + +A promise that resolves to the store data in JSON format. + +*** + +### generateLinks() + +> **generateLinks**(`plugins`): `object`[] + +Defined in: [src/components/AddOn/support/services/Plugin.helper.ts:32](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/AddOn/support/services/Plugin.helper.ts#L32) + +Generates an array of links for the enabled plugins. + +#### Parameters + +##### plugins + +`any`[] + +An array of plugin objects. + +#### Returns + +`object`[] + +An array of objects containing the name and URL of each enabled plugin. diff --git a/docs/docs/auto-docs/components/AddOn/support/services/Render.helper/README.md b/docs/docs/auto-docs/components/AddOn/support/services/Render.helper/README.md new file mode 100644 index 0000000000..e6cace69dd --- /dev/null +++ b/docs/docs/auto-docs/components/AddOn/support/services/Render.helper/README.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../../../README.md) + +*** + +[talawa-admin](../../../../../modules.md) / components/AddOn/support/services/Render.helper + +# components/AddOn/support/services/Render.helper + +## Classes + +- [default](classes/default.md) diff --git a/docs/docs/auto-docs/components/AddOn/support/services/Render.helper/classes/default.md b/docs/docs/auto-docs/components/AddOn/support/services/Render.helper/classes/default.md new file mode 100644 index 0000000000..5558e872ac --- /dev/null +++ b/docs/docs/auto-docs/components/AddOn/support/services/Render.helper/classes/default.md @@ -0,0 +1,19 @@ +[**talawa-admin**](../../../../../../README.md) + +*** + +[talawa-admin](../../../../../../modules.md) / [components/AddOn/support/services/Render.helper](../README.md) / default + +# Class: default + +Defined in: [src/components/AddOn/support/services/Render.helper.ts:1](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/AddOn/support/services/Render.helper.ts#L1) + +## Constructors + +### new default() + +> **new default**(): [`default`](default.md) + +#### Returns + +[`default`](default.md) diff --git a/docs/docs/auto-docs/components/AddPeopleToTag/AddPeopleToTag/README.md b/docs/docs/auto-docs/components/AddPeopleToTag/AddPeopleToTag/README.md new file mode 100644 index 0000000000..1f8f9dcc9b --- /dev/null +++ b/docs/docs/auto-docs/components/AddPeopleToTag/AddPeopleToTag/README.md @@ -0,0 +1,15 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / components/AddPeopleToTag/AddPeopleToTag + +# components/AddPeopleToTag/AddPeopleToTag + +## Interfaces + +- [InterfaceAddPeopleToTagProps](interfaces/InterfaceAddPeopleToTagProps.md) + +## Functions + +- [default](functions/default.md) diff --git a/docs/docs/auto-docs/components/AddPeopleToTag/AddPeopleToTag/functions/default.md b/docs/docs/auto-docs/components/AddPeopleToTag/AddPeopleToTag/functions/default.md new file mode 100644 index 0000000000..383c3c138c --- /dev/null +++ b/docs/docs/auto-docs/components/AddPeopleToTag/AddPeopleToTag/functions/default.md @@ -0,0 +1,31 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [components/AddPeopleToTag/AddPeopleToTag](../README.md) / default + +# Function: default() + +> **default**(`props`, `deprecatedLegacyContext`?): `ReactNode` + +Defined in: [src/components/AddPeopleToTag/AddPeopleToTag.tsx:42](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/AddPeopleToTag/AddPeopleToTag.tsx#L42) + +## Parameters + +### props + +[`InterfaceAddPeopleToTagProps`](../interfaces/InterfaceAddPeopleToTagProps.md) + +### deprecatedLegacyContext? + +`any` + +**Deprecated** + +**See** + +[React Docs](https://legacy.reactjs.org/docs/legacy-context.html#referencing-context-in-lifecycle-methods) + +## Returns + +`ReactNode` diff --git a/docs/docs/auto-docs/components/AddPeopleToTag/AddPeopleToTag/interfaces/InterfaceAddPeopleToTagProps.md b/docs/docs/auto-docs/components/AddPeopleToTag/AddPeopleToTag/interfaces/InterfaceAddPeopleToTagProps.md new file mode 100644 index 0000000000..e5c9fee012 --- /dev/null +++ b/docs/docs/auto-docs/components/AddPeopleToTag/AddPeopleToTag/interfaces/InterfaceAddPeopleToTagProps.md @@ -0,0 +1,59 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [components/AddPeopleToTag/AddPeopleToTag](../README.md) / InterfaceAddPeopleToTagProps + +# Interface: InterfaceAddPeopleToTagProps + +Defined in: [src/components/AddPeopleToTag/AddPeopleToTag.tsx:28](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/AddPeopleToTag/AddPeopleToTag.tsx#L28) + +Props for the `AddPeopleToTag` component. + +## Properties + +### addPeopleToTagModalIsOpen + +> **addPeopleToTagModalIsOpen**: `boolean` + +Defined in: [src/components/AddPeopleToTag/AddPeopleToTag.tsx:29](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/AddPeopleToTag/AddPeopleToTag.tsx#L29) + +*** + +### hideAddPeopleToTagModal() + +> **hideAddPeopleToTagModal**: () => `void` + +Defined in: [src/components/AddPeopleToTag/AddPeopleToTag.tsx:30](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/AddPeopleToTag/AddPeopleToTag.tsx#L30) + +#### Returns + +`void` + +*** + +### refetchAssignedMembersData() + +> **refetchAssignedMembersData**: () => `void` + +Defined in: [src/components/AddPeopleToTag/AddPeopleToTag.tsx:31](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/AddPeopleToTag/AddPeopleToTag.tsx#L31) + +#### Returns + +`void` + +*** + +### t + +> **t**: `TFunction`\<`"manageTag"`\> + +Defined in: [src/components/AddPeopleToTag/AddPeopleToTag.tsx:32](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/AddPeopleToTag/AddPeopleToTag.tsx#L32) + +*** + +### tCommon + +> **tCommon**: `TFunction`\<`"common"`\> + +Defined in: [src/components/AddPeopleToTag/AddPeopleToTag.tsx:33](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/AddPeopleToTag/AddPeopleToTag.tsx#L33) diff --git a/docs/docs/auto-docs/components/AddPeopleToTag/AddPeopleToTagsMocks/README.md b/docs/docs/auto-docs/components/AddPeopleToTag/AddPeopleToTagsMocks/README.md new file mode 100644 index 0000000000..fefcf7c92a --- /dev/null +++ b/docs/docs/auto-docs/components/AddPeopleToTag/AddPeopleToTagsMocks/README.md @@ -0,0 +1,12 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / components/AddPeopleToTag/AddPeopleToTagsMocks + +# components/AddPeopleToTag/AddPeopleToTagsMocks + +## Variables + +- [MOCKS](variables/MOCKS.md) +- [MOCKS\_ERROR](variables/MOCKS_ERROR.md) diff --git a/docs/docs/auto-docs/components/AddPeopleToTag/AddPeopleToTagsMocks/variables/MOCKS.md b/docs/docs/auto-docs/components/AddPeopleToTag/AddPeopleToTagsMocks/variables/MOCKS.md new file mode 100644 index 0000000000..e88d5cba9e --- /dev/null +++ b/docs/docs/auto-docs/components/AddPeopleToTag/AddPeopleToTagsMocks/variables/MOCKS.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [components/AddPeopleToTag/AddPeopleToTagsMocks](../README.md) / MOCKS + +# Variable: MOCKS + +> `const` **MOCKS**: (\{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `after`: `undefined`; `first`: `number`; `id`: `string`; `tagId`: `undefined`; `userIds`: `undefined`; `where`: \{ `firstName`: \{ `starts_with`: `string`; \}; `lastName`: \{ `starts_with`: `string`; \}; \}; \}; \}; `result`: \{ `data`: \{ `addPeopleToUserTag`: `undefined`; `getUsersToAssignTo`: \{ `name`: `string`; `usersToAssignTo`: \{ `edges`: `object`[]; `pageInfo`: \{ `endCursor`: `string`; `hasNextPage`: `boolean`; `hasPreviousPage`: `boolean`; `startCursor`: `string`; \}; `totalCount`: `number`; \}; \}; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `after`: `string`; `first`: `number`; `id`: `string`; `tagId`: `undefined`; `userIds`: `undefined`; `where`: \{ `firstName`: \{ `starts_with`: `string`; \}; `lastName`: \{ `starts_with`: `string`; \}; \}; \}; \}; `result`: \{ `data`: \{ `addPeopleToUserTag`: `undefined`; `getUsersToAssignTo`: \{ `name`: `string`; `usersToAssignTo`: \{ `edges`: `object`[]; `pageInfo`: \{ `endCursor`: `string`; `hasNextPage`: `boolean`; `hasPreviousPage`: `boolean`; `startCursor`: `string`; \}; `totalCount`: `number`; \}; \}; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `after`: `undefined`; `first`: `undefined`; `id`: `undefined`; `tagId`: `string`; `userIds`: `string`[]; `where`: `undefined`; \}; \}; `result`: \{ `data`: \{ `addPeopleToUserTag`: \{ `_id`: `string`; \}; `getUsersToAssignTo`: `undefined`; \}; \}; \})[] + +Defined in: [src/components/AddPeopleToTag/AddPeopleToTagsMocks.ts:5](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/AddPeopleToTag/AddPeopleToTagsMocks.ts#L5) diff --git a/docs/docs/auto-docs/components/AddPeopleToTag/AddPeopleToTagsMocks/variables/MOCKS_ERROR.md b/docs/docs/auto-docs/components/AddPeopleToTag/AddPeopleToTagsMocks/variables/MOCKS_ERROR.md new file mode 100644 index 0000000000..bf46aefbb9 --- /dev/null +++ b/docs/docs/auto-docs/components/AddPeopleToTag/AddPeopleToTagsMocks/variables/MOCKS_ERROR.md @@ -0,0 +1,57 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [components/AddPeopleToTag/AddPeopleToTagsMocks](../README.md) / MOCKS\_ERROR + +# Variable: MOCKS\_ERROR + +> `const` **MOCKS\_ERROR**: `object`[] + +Defined in: [src/components/AddPeopleToTag/AddPeopleToTagsMocks.ts:277](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/AddPeopleToTag/AddPeopleToTagsMocks.ts#L277) + +## Type declaration + +### error + +> **error**: `Error` + +### request + +> **request**: `object` + +#### request.query + +> **query**: `DocumentNode` = `USER_TAGS_MEMBERS_TO_ASSIGN_TO` + +#### request.variables + +> **variables**: `object` + +#### request.variables.first + +> **first**: `number` = `TAGS_QUERY_DATA_CHUNK_SIZE` + +#### request.variables.id + +> **id**: `string` = `'1'` + +#### request.variables.where + +> **where**: `object` + +#### request.variables.where.firstName + +> **firstName**: `object` + +#### request.variables.where.firstName.starts\_with + +> **starts\_with**: `string` = `''` + +#### request.variables.where.lastName + +> **lastName**: `object` + +#### request.variables.where.lastName.starts\_with + +> **starts\_with**: `string` = `''` diff --git a/docs/docs/auto-docs/components/Advertisements/Advertisements/README.md b/docs/docs/auto-docs/components/Advertisements/Advertisements/README.md new file mode 100644 index 0000000000..a80e38ea71 --- /dev/null +++ b/docs/docs/auto-docs/components/Advertisements/Advertisements/README.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / components/Advertisements/Advertisements + +# components/Advertisements/Advertisements + +## Functions + +- [default](functions/default.md) diff --git a/docs/docs/auto-docs/components/Advertisements/Advertisements/functions/default.md b/docs/docs/auto-docs/components/Advertisements/Advertisements/functions/default.md new file mode 100644 index 0000000000..7478afda6a --- /dev/null +++ b/docs/docs/auto-docs/components/Advertisements/Advertisements/functions/default.md @@ -0,0 +1,15 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [components/Advertisements/Advertisements](../README.md) / default + +# Function: default() + +> **default**(): `JSX.Element` + +Defined in: [src/components/Advertisements/Advertisements.tsx:14](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/Advertisements/Advertisements.tsx#L14) + +## Returns + +`JSX.Element` diff --git a/docs/docs/auto-docs/components/Advertisements/core/AdvertisementEntry/AdvertisementEntry/README.md b/docs/docs/auto-docs/components/Advertisements/core/AdvertisementEntry/AdvertisementEntry/README.md new file mode 100644 index 0000000000..14277b3d34 --- /dev/null +++ b/docs/docs/auto-docs/components/Advertisements/core/AdvertisementEntry/AdvertisementEntry/README.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../../../README.md) + +*** + +[talawa-admin](../../../../../modules.md) / components/Advertisements/core/AdvertisementEntry/AdvertisementEntry + +# components/Advertisements/core/AdvertisementEntry/AdvertisementEntry + +## Functions + +- [default](functions/default.md) diff --git a/docs/docs/auto-docs/components/Advertisements/core/AdvertisementEntry/AdvertisementEntry/functions/default.md b/docs/docs/auto-docs/components/Advertisements/core/AdvertisementEntry/AdvertisementEntry/functions/default.md new file mode 100644 index 0000000000..17c3108257 --- /dev/null +++ b/docs/docs/auto-docs/components/Advertisements/core/AdvertisementEntry/AdvertisementEntry/functions/default.md @@ -0,0 +1,28 @@ +[**talawa-admin**](../../../../../../README.md) + +*** + +[talawa-admin](../../../../../../modules.md) / [components/Advertisements/core/AdvertisementEntry/AdvertisementEntry](../README.md) / default + +# Function: default() + +> **default**(`props`): `JSX.Element` + +Defined in: [src/components/Advertisements/core/AdvertisementEntry/AdvertisementEntry.tsx:31](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/Advertisements/core/AdvertisementEntry/AdvertisementEntry.tsx#L31) + +Component for displaying an advertisement entry. +Allows viewing, editing, and deleting of the advertisement. + +## Parameters + +### props + +`InterfaceAddOnEntryProps` + +Component properties + +## Returns + +`JSX.Element` + +The rendered component diff --git a/docs/docs/auto-docs/components/Advertisements/core/AdvertisementRegister/AdvertisementRegister/README.md b/docs/docs/auto-docs/components/Advertisements/core/AdvertisementRegister/AdvertisementRegister/README.md new file mode 100644 index 0000000000..c4b017d6ef --- /dev/null +++ b/docs/docs/auto-docs/components/Advertisements/core/AdvertisementRegister/AdvertisementRegister/README.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../../../README.md) + +*** + +[talawa-admin](../../../../../modules.md) / components/Advertisements/core/AdvertisementRegister/AdvertisementRegister + +# components/Advertisements/core/AdvertisementRegister/AdvertisementRegister + +## Functions + +- [default](functions/default.md) diff --git a/docs/docs/auto-docs/components/Advertisements/core/AdvertisementRegister/AdvertisementRegister/functions/default.md b/docs/docs/auto-docs/components/Advertisements/core/AdvertisementRegister/AdvertisementRegister/functions/default.md new file mode 100644 index 0000000000..a9459c3a11 --- /dev/null +++ b/docs/docs/auto-docs/components/Advertisements/core/AdvertisementRegister/AdvertisementRegister/functions/default.md @@ -0,0 +1,36 @@ +[**talawa-admin**](../../../../../../README.md) + +*** + +[talawa-admin](../../../../../../modules.md) / [components/Advertisements/core/AdvertisementRegister/AdvertisementRegister](../README.md) / default + +# Function: default() + +> **default**(`props`): `JSX.Element` + +Defined in: [src/components/Advertisements/core/AdvertisementRegister/AdvertisementRegister.tsx:60](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/Advertisements/core/AdvertisementRegister/AdvertisementRegister.tsx#L60) + +Component for registering or editing an advertisement. + +## Parameters + +### props + +`InterfaceAddOnRegisterProps` + +Contains form status, advertisement details, and a function to update parent state. + +## Returns + +`JSX.Element` + +A JSX element that renders a form inside a modal for creating or editing an advertisement. + +## Example + +```tsx + console.log(value)} +/> +``` diff --git a/docs/docs/auto-docs/components/AgendaCategory/AgendaCategoryContainer/README.md b/docs/docs/auto-docs/components/AgendaCategory/AgendaCategoryContainer/README.md new file mode 100644 index 0000000000..cefa1a1fe2 --- /dev/null +++ b/docs/docs/auto-docs/components/AgendaCategory/AgendaCategoryContainer/README.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / components/AgendaCategory/AgendaCategoryContainer + +# components/AgendaCategory/AgendaCategoryContainer + +## Functions + +- [default](functions/default.md) diff --git a/docs/docs/auto-docs/components/AgendaCategory/AgendaCategoryContainer/functions/default.md b/docs/docs/auto-docs/components/AgendaCategory/AgendaCategoryContainer/functions/default.md new file mode 100644 index 0000000000..d4dac9dfc0 --- /dev/null +++ b/docs/docs/auto-docs/components/AgendaCategory/AgendaCategoryContainer/functions/default.md @@ -0,0 +1,47 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [components/AgendaCategory/AgendaCategoryContainer](../README.md) / default + +# Function: default() + +> **default**(`props`): `JSX.Element` + +Defined in: [src/components/AgendaCategory/AgendaCategoryContainer.tsx:34](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/AgendaCategory/AgendaCategoryContainer.tsx#L34) + +Component for displaying and managing agenda item categories. + +## Parameters + +### props + +Contains agenda category data and functions for data management. + +#### agendaCategoryConnection + +`"Organization"` + +#### agendaCategoryData + +[`InterfaceAgendaItemCategoryInfo`](../../../../utils/interfaces/interfaces/InterfaceAgendaItemCategoryInfo.md)[] + +#### agendaCategoryRefetch + +() => `void` + +## Returns + +`JSX.Element` + +A JSX element that renders agenda item categories with options to preview, edit, and delete. + +## Example + +```tsx + +``` diff --git a/docs/docs/auto-docs/components/AgendaCategory/AgendaCategoryContainerMocks/README.md b/docs/docs/auto-docs/components/AgendaCategory/AgendaCategoryContainerMocks/README.md new file mode 100644 index 0000000000..e655973093 --- /dev/null +++ b/docs/docs/auto-docs/components/AgendaCategory/AgendaCategoryContainerMocks/README.md @@ -0,0 +1,12 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / components/AgendaCategory/AgendaCategoryContainerMocks + +# components/AgendaCategory/AgendaCategoryContainerMocks + +## Variables + +- [MOCKS](variables/MOCKS.md) +- [MOCKS\_ERROR\_MUTATIONS](variables/MOCKS_ERROR_MUTATIONS.md) diff --git a/docs/docs/auto-docs/components/AgendaCategory/AgendaCategoryContainerMocks/variables/MOCKS.md b/docs/docs/auto-docs/components/AgendaCategory/AgendaCategoryContainerMocks/variables/MOCKS.md new file mode 100644 index 0000000000..60bc6c10e9 --- /dev/null +++ b/docs/docs/auto-docs/components/AgendaCategory/AgendaCategoryContainerMocks/variables/MOCKS.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [components/AgendaCategory/AgendaCategoryContainerMocks](../README.md) / MOCKS + +# Variable: MOCKS + +> `const` **MOCKS**: (\{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `deleteAgendaCategoryId`: `undefined`; `input`: \{ `description`: `string`; `name`: `string`; \}; `updateAgendaCategoryId`: `string`; \}; \}; `result`: \{ `data`: \{ `deleteAgendaCategory`: `undefined`; `updateAgendaCategory`: \{ `_id`: `string`; \}; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `deleteAgendaCategoryId`: `string`; `input`: `undefined`; `updateAgendaCategoryId`: `undefined`; \}; \}; `result`: \{ `data`: \{ `deleteAgendaCategory`: \{ `_id`: `string`; \}; `updateAgendaCategory`: `undefined`; \}; \}; \})[] + +Defined in: [src/components/AgendaCategory/AgendaCategoryContainerMocks.ts:6](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/AgendaCategory/AgendaCategoryContainerMocks.ts#L6) diff --git a/docs/docs/auto-docs/components/AgendaCategory/AgendaCategoryContainerMocks/variables/MOCKS_ERROR_MUTATIONS.md b/docs/docs/auto-docs/components/AgendaCategory/AgendaCategoryContainerMocks/variables/MOCKS_ERROR_MUTATIONS.md new file mode 100644 index 0000000000..5e29d070f2 --- /dev/null +++ b/docs/docs/auto-docs/components/AgendaCategory/AgendaCategoryContainerMocks/variables/MOCKS_ERROR_MUTATIONS.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [components/AgendaCategory/AgendaCategoryContainerMocks](../README.md) / MOCKS\_ERROR\_MUTATIONS + +# Variable: MOCKS\_ERROR\_MUTATIONS + +> `const` **MOCKS\_ERROR\_MUTATIONS**: (\{ `error`: `Error`; `request`: \{ `query`: `DocumentNode`; `variables`: \{ `deleteAgendaCategoryId`: `undefined`; `input`: \{ `description`: `string`; `name`: `string`; \}; `updateAgendaCategoryId`: `string`; \}; \}; \} \| \{ `error`: `Error`; `request`: \{ `query`: `DocumentNode`; `variables`: \{ `deleteAgendaCategoryId`: `string`; `input`: `undefined`; `updateAgendaCategoryId`: `undefined`; \}; \}; \})[] + +Defined in: [src/components/AgendaCategory/AgendaCategoryContainerMocks.ts:81](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/AgendaCategory/AgendaCategoryContainerMocks.ts#L81) diff --git a/docs/docs/auto-docs/components/AgendaCategory/AgendaCategoryContainerProps/README.md b/docs/docs/auto-docs/components/AgendaCategory/AgendaCategoryContainerProps/README.md new file mode 100644 index 0000000000..5162a0870f --- /dev/null +++ b/docs/docs/auto-docs/components/AgendaCategory/AgendaCategoryContainerProps/README.md @@ -0,0 +1,12 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / components/AgendaCategory/AgendaCategoryContainerProps + +# components/AgendaCategory/AgendaCategoryContainerProps + +## Variables + +- [props](variables/props.md) +- [props2](variables/props2.md) diff --git a/docs/docs/auto-docs/components/AgendaCategory/AgendaCategoryContainerProps/variables/props.md b/docs/docs/auto-docs/components/AgendaCategory/AgendaCategoryContainerProps/variables/props.md new file mode 100644 index 0000000000..a298acdce8 --- /dev/null +++ b/docs/docs/auto-docs/components/AgendaCategory/AgendaCategoryContainerProps/variables/props.md @@ -0,0 +1,25 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [components/AgendaCategory/AgendaCategoryContainerProps](../README.md) / props + +# Variable: props + +> `const` **props**: `object` + +Defined in: [src/components/AgendaCategory/AgendaCategoryContainerProps.ts:4](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/AgendaCategory/AgendaCategoryContainerProps.ts#L4) + +## Type declaration + +### agendaCategoryConnection + +> **agendaCategoryConnection**: `"Organization"` + +### agendaCategoryData + +> **agendaCategoryData**: `object`[] + +### agendaCategoryRefetch + +> **agendaCategoryRefetch**: `Mock` diff --git a/docs/docs/auto-docs/components/AgendaCategory/AgendaCategoryContainerProps/variables/props2.md b/docs/docs/auto-docs/components/AgendaCategory/AgendaCategoryContainerProps/variables/props2.md new file mode 100644 index 0000000000..bcb375d726 --- /dev/null +++ b/docs/docs/auto-docs/components/AgendaCategory/AgendaCategoryContainerProps/variables/props2.md @@ -0,0 +1,25 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [components/AgendaCategory/AgendaCategoryContainerProps](../README.md) / props2 + +# Variable: props2 + +> `const` **props2**: `object` + +Defined in: [src/components/AgendaCategory/AgendaCategoryContainerProps.ts:31](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/AgendaCategory/AgendaCategoryContainerProps.ts#L31) + +## Type declaration + +### agendaCategoryConnection + +> **agendaCategoryConnection**: `"Organization"` + +### agendaCategoryData + +> **agendaCategoryData**: `any`[] = `[]` + +### agendaCategoryRefetch + +> **agendaCategoryRefetch**: `Mock` diff --git a/docs/docs/auto-docs/components/AgendaItems/AgendaItemsContainer/README.md b/docs/docs/auto-docs/components/AgendaItems/AgendaItemsContainer/README.md new file mode 100644 index 0000000000..7ac39feddc --- /dev/null +++ b/docs/docs/auto-docs/components/AgendaItems/AgendaItemsContainer/README.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / components/AgendaItems/AgendaItemsContainer + +# components/AgendaItems/AgendaItemsContainer + +## Functions + +- [default](functions/default.md) diff --git a/docs/docs/auto-docs/components/AgendaItems/AgendaItemsContainer/functions/default.md b/docs/docs/auto-docs/components/AgendaItems/AgendaItemsContainer/functions/default.md new file mode 100644 index 0000000000..6ab00a117b --- /dev/null +++ b/docs/docs/auto-docs/components/AgendaItems/AgendaItemsContainer/functions/default.md @@ -0,0 +1,43 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [components/AgendaItems/AgendaItemsContainer](../README.md) / default + +# Function: default() + +> **default**(`props`): `JSX.Element` + +Defined in: [src/components/AgendaItems/AgendaItemsContainer.tsx:32](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/AgendaItems/AgendaItemsContainer.tsx#L32) + +Component for displaying and managing agenda items. +Supports drag-and-drop functionality, and includes modals for previewing, +updating, and deleting agenda items. + +## Parameters + +### props + +The props for the component. + +#### agendaItemCategories + +[`InterfaceAgendaItemCategoryInfo`](../../../../utils/interfaces/interfaces/InterfaceAgendaItemCategoryInfo.md)[] + +#### agendaItemConnection + +`"Event"` + +#### agendaItemData + +[`InterfaceAgendaItemInfo`](../../../../utils/interfaces/interfaces/InterfaceAgendaItemInfo.md)[] + +#### agendaItemRefetch + +() => `void` + +## Returns + +`JSX.Element` + +JSX.Element diff --git a/docs/docs/auto-docs/components/AgendaItems/AgendaItemsContainerMocks/README.md b/docs/docs/auto-docs/components/AgendaItems/AgendaItemsContainerMocks/README.md new file mode 100644 index 0000000000..5922fb87b2 --- /dev/null +++ b/docs/docs/auto-docs/components/AgendaItems/AgendaItemsContainerMocks/README.md @@ -0,0 +1,12 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / components/AgendaItems/AgendaItemsContainerMocks + +# components/AgendaItems/AgendaItemsContainerMocks + +## Variables + +- [MOCKS](variables/MOCKS.md) +- [MOCKS\_ERROR](variables/MOCKS_ERROR.md) diff --git a/docs/docs/auto-docs/components/AgendaItems/AgendaItemsContainerMocks/variables/MOCKS.md b/docs/docs/auto-docs/components/AgendaItems/AgendaItemsContainerMocks/variables/MOCKS.md new file mode 100644 index 0000000000..2e39963843 --- /dev/null +++ b/docs/docs/auto-docs/components/AgendaItems/AgendaItemsContainerMocks/variables/MOCKS.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [components/AgendaItems/AgendaItemsContainerMocks](../README.md) / MOCKS + +# Variable: MOCKS + +> `const` **MOCKS**: (\{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `input`: \{ `description`: `string`; `title`: `string`; \}; `removeAgendaItemId`: `undefined`; `updateAgendaItemId`: `string`; \}; \}; `result`: \{ `data`: \{ `removeAgendaItem`: `undefined`; `updateAgendaItem`: \{ `_id`: `string`; \}; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `input`: `undefined`; `removeAgendaItemId`: `string`; `updateAgendaItemId`: `undefined`; \}; \}; `result`: \{ `data`: \{ `removeAgendaItem`: \{ `_id`: `string`; \}; `updateAgendaItem`: `undefined`; \}; \}; \})[] + +Defined in: [src/components/AgendaItems/AgendaItemsContainerMocks.ts:6](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/AgendaItems/AgendaItemsContainerMocks.ts#L6) diff --git a/docs/docs/auto-docs/components/AgendaItems/AgendaItemsContainerMocks/variables/MOCKS_ERROR.md b/docs/docs/auto-docs/components/AgendaItems/AgendaItemsContainerMocks/variables/MOCKS_ERROR.md new file mode 100644 index 0000000000..17c40b7f04 --- /dev/null +++ b/docs/docs/auto-docs/components/AgendaItems/AgendaItemsContainerMocks/variables/MOCKS_ERROR.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [components/AgendaItems/AgendaItemsContainerMocks](../README.md) / MOCKS\_ERROR + +# Variable: MOCKS\_ERROR + +> `const` **MOCKS\_ERROR**: (\{ `error`: `Error`; `request`: \{ `query`: `DocumentNode`; `variables`: \{ `input`: \{ `description`: `string`; `title`: `string`; \}; `removeAgendaItemId`: `undefined`; `updateAgendaItemId`: `string`; \}; \}; \} \| \{ `error`: `Error`; `request`: \{ `query`: `DocumentNode`; `variables`: \{ `input`: `undefined`; `removeAgendaItemId`: `string`; `updateAgendaItemId`: `undefined`; \}; \}; \})[] + +Defined in: [src/components/AgendaItems/AgendaItemsContainerMocks.ts:96](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/AgendaItems/AgendaItemsContainerMocks.ts#L96) diff --git a/docs/docs/auto-docs/components/AgendaItems/AgendaItemsContainerProps/README.md b/docs/docs/auto-docs/components/AgendaItems/AgendaItemsContainerProps/README.md new file mode 100644 index 0000000000..c8fed11bb8 --- /dev/null +++ b/docs/docs/auto-docs/components/AgendaItems/AgendaItemsContainerProps/README.md @@ -0,0 +1,12 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / components/AgendaItems/AgendaItemsContainerProps + +# components/AgendaItems/AgendaItemsContainerProps + +## Variables + +- [props](variables/props.md) +- [props2](variables/props2.md) diff --git a/docs/docs/auto-docs/components/AgendaItems/AgendaItemsContainerProps/variables/props.md b/docs/docs/auto-docs/components/AgendaItems/AgendaItemsContainerProps/variables/props.md new file mode 100644 index 0000000000..532d42b727 --- /dev/null +++ b/docs/docs/auto-docs/components/AgendaItems/AgendaItemsContainerProps/variables/props.md @@ -0,0 +1,29 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [components/AgendaItems/AgendaItemsContainerProps](../README.md) / props + +# Variable: props + +> `const` **props**: `object` + +Defined in: [src/components/AgendaItems/AgendaItemsContainerProps.ts:4](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/AgendaItems/AgendaItemsContainerProps.ts#L4) + +## Type declaration + +### agendaItemCategories + +> **agendaItemCategories**: `object`[] + +### agendaItemConnection + +> **agendaItemConnection**: `"Event"` + +### agendaItemData + +> **agendaItemData**: `object`[] + +### agendaItemRefetch + +> **agendaItemRefetch**: `Mock` diff --git a/docs/docs/auto-docs/components/AgendaItems/AgendaItemsContainerProps/variables/props2.md b/docs/docs/auto-docs/components/AgendaItems/AgendaItemsContainerProps/variables/props2.md new file mode 100644 index 0000000000..64b0d504e4 --- /dev/null +++ b/docs/docs/auto-docs/components/AgendaItems/AgendaItemsContainerProps/variables/props2.md @@ -0,0 +1,29 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [components/AgendaItems/AgendaItemsContainerProps](../README.md) / props2 + +# Variable: props2 + +> `const` **props2**: `object` + +Defined in: [src/components/AgendaItems/AgendaItemsContainerProps.ts:97](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/AgendaItems/AgendaItemsContainerProps.ts#L97) + +## Type declaration + +### agendaItemCategories + +> **agendaItemCategories**: `any`[] = `[]` + +### agendaItemConnection + +> **agendaItemConnection**: `"Event"` + +### agendaItemData + +> **agendaItemData**: `any`[] = `[]` + +### agendaItemRefetch + +> **agendaItemRefetch**: `Mock` diff --git a/docs/docs/auto-docs/components/AgendaItems/AgendaItemsCreateModal/README.md b/docs/docs/auto-docs/components/AgendaItems/AgendaItemsCreateModal/README.md new file mode 100644 index 0000000000..af532f7ea5 --- /dev/null +++ b/docs/docs/auto-docs/components/AgendaItems/AgendaItemsCreateModal/README.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / components/AgendaItems/AgendaItemsCreateModal + +# components/AgendaItems/AgendaItemsCreateModal + +## Functions + +- [default](functions/default.md) diff --git a/docs/docs/auto-docs/components/AgendaItems/AgendaItemsCreateModal/functions/default.md b/docs/docs/auto-docs/components/AgendaItems/AgendaItemsCreateModal/functions/default.md new file mode 100644 index 0000000000..b4ef18fb33 --- /dev/null +++ b/docs/docs/auto-docs/components/AgendaItems/AgendaItemsCreateModal/functions/default.md @@ -0,0 +1,34 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [components/AgendaItems/AgendaItemsCreateModal](../README.md) / default + +# Function: default() + +> **default**(`props`, `deprecatedLegacyContext`?): `ReactNode` + +Defined in: [src/components/AgendaItems/AgendaItemsCreateModal.tsx:43](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/AgendaItems/AgendaItemsCreateModal.tsx#L43) + +Component for creating a new agenda item. +Displays a modal form where users can input details for a new agenda item, including title, description, duration, categories, URLs, and attachments. + +## Parameters + +### props + +`InterfaceAgendaItemsCreateModalProps` + +### deprecatedLegacyContext? + +`any` + +**Deprecated** + +**See** + +[React Docs](https://legacy.reactjs.org/docs/legacy-context.html#referencing-context-in-lifecycle-methods) + +## Returns + +`ReactNode` diff --git a/docs/docs/auto-docs/components/AgendaItems/AgendaItemsDeleteModal/README.md b/docs/docs/auto-docs/components/AgendaItems/AgendaItemsDeleteModal/README.md new file mode 100644 index 0000000000..e4cf4d5114 --- /dev/null +++ b/docs/docs/auto-docs/components/AgendaItems/AgendaItemsDeleteModal/README.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / components/AgendaItems/AgendaItemsDeleteModal + +# components/AgendaItems/AgendaItemsDeleteModal + +## Functions + +- [default](functions/default.md) diff --git a/docs/docs/auto-docs/components/AgendaItems/AgendaItemsDeleteModal/functions/default.md b/docs/docs/auto-docs/components/AgendaItems/AgendaItemsDeleteModal/functions/default.md new file mode 100644 index 0000000000..b34fc0b0ba --- /dev/null +++ b/docs/docs/auto-docs/components/AgendaItems/AgendaItemsDeleteModal/functions/default.md @@ -0,0 +1,34 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [components/AgendaItems/AgendaItemsDeleteModal](../README.md) / default + +# Function: default() + +> **default**(`props`, `deprecatedLegacyContext`?): `ReactNode` + +Defined in: [src/components/AgendaItems/AgendaItemsDeleteModal.tsx:23](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/AgendaItems/AgendaItemsDeleteModal.tsx#L23) + +Modal component for confirming the deletion of an agenda item. +Displays a confirmation dialog when a user attempts to delete an agenda item. + +## Parameters + +### props + +`InterfaceAgendaItemsDeleteModalProps` + +### deprecatedLegacyContext? + +`any` + +**Deprecated** + +**See** + +[React Docs](https://legacy.reactjs.org/docs/legacy-context.html#referencing-context-in-lifecycle-methods) + +## Returns + +`ReactNode` diff --git a/docs/docs/auto-docs/components/AgendaItems/AgendaItemsPreviewModal/README.md b/docs/docs/auto-docs/components/AgendaItems/AgendaItemsPreviewModal/README.md new file mode 100644 index 0000000000..83e0e2b11d --- /dev/null +++ b/docs/docs/auto-docs/components/AgendaItems/AgendaItemsPreviewModal/README.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / components/AgendaItems/AgendaItemsPreviewModal + +# components/AgendaItems/AgendaItemsPreviewModal + +## Functions + +- [default](functions/default.md) diff --git a/docs/docs/auto-docs/components/AgendaItems/AgendaItemsPreviewModal/functions/default.md b/docs/docs/auto-docs/components/AgendaItems/AgendaItemsPreviewModal/functions/default.md new file mode 100644 index 0000000000..81f4afafd3 --- /dev/null +++ b/docs/docs/auto-docs/components/AgendaItems/AgendaItemsPreviewModal/functions/default.md @@ -0,0 +1,35 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [components/AgendaItems/AgendaItemsPreviewModal](../README.md) / default + +# Function: default() + +> **default**(`props`, `deprecatedLegacyContext`?): `ReactNode` + +Defined in: [src/components/AgendaItems/AgendaItemsPreviewModal.tsx:41](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/AgendaItems/AgendaItemsPreviewModal.tsx#L41) + +Modal component for previewing details of an agenda item. +Displays the details of the selected agenda item, including its categories, title, description, duration, creator, URLs, and attachments. +Also provides options to update or delete the agenda item. + +## Parameters + +### props + +`InterfaceAgendaItemsPreviewModalProps` + +### deprecatedLegacyContext? + +`any` + +**Deprecated** + +**See** + +[React Docs](https://legacy.reactjs.org/docs/legacy-context.html#referencing-context-in-lifecycle-methods) + +## Returns + +`ReactNode` diff --git a/docs/docs/auto-docs/components/AgendaItems/AgendaItemsUpdateModal/README.md b/docs/docs/auto-docs/components/AgendaItems/AgendaItemsUpdateModal/README.md new file mode 100644 index 0000000000..08535ac0bc --- /dev/null +++ b/docs/docs/auto-docs/components/AgendaItems/AgendaItemsUpdateModal/README.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / components/AgendaItems/AgendaItemsUpdateModal + +# components/AgendaItems/AgendaItemsUpdateModal + +## Functions + +- [default](functions/default.md) diff --git a/docs/docs/auto-docs/components/AgendaItems/AgendaItemsUpdateModal/functions/default.md b/docs/docs/auto-docs/components/AgendaItems/AgendaItemsUpdateModal/functions/default.md new file mode 100644 index 0000000000..6f463e3521 --- /dev/null +++ b/docs/docs/auto-docs/components/AgendaItems/AgendaItemsUpdateModal/functions/default.md @@ -0,0 +1,35 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [components/AgendaItems/AgendaItemsUpdateModal](../README.md) / default + +# Function: default() + +> **default**(`props`, `deprecatedLegacyContext`?): `ReactNode` + +Defined in: [src/components/AgendaItems/AgendaItemsUpdateModal.tsx:49](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/AgendaItems/AgendaItemsUpdateModal.tsx#L49) + +Modal component for updating details of an agenda item. +Provides a form to update the agenda item's title, description, duration, categories, URLs, and attachments. +Also includes functionality to add, remove URLs and attachments. + +## Parameters + +### props + +`InterfaceAgendaItemsUpdateModalProps` + +### deprecatedLegacyContext? + +`any` + +**Deprecated** + +**See** + +[React Docs](https://legacy.reactjs.org/docs/legacy-context.html#referencing-context-in-lifecycle-methods) + +## Returns + +`ReactNode` diff --git a/docs/docs/auto-docs/components/Avatar/Avatar/README.md b/docs/docs/auto-docs/components/Avatar/Avatar/README.md new file mode 100644 index 0000000000..9cdcde35ad --- /dev/null +++ b/docs/docs/auto-docs/components/Avatar/Avatar/README.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / components/Avatar/Avatar + +# components/Avatar/Avatar + +## Functions + +- [default](functions/default.md) diff --git a/docs/docs/auto-docs/components/Avatar/Avatar/functions/default.md b/docs/docs/auto-docs/components/Avatar/Avatar/functions/default.md new file mode 100644 index 0000000000..209b37be87 --- /dev/null +++ b/docs/docs/auto-docs/components/Avatar/Avatar/functions/default.md @@ -0,0 +1,26 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [components/Avatar/Avatar](../README.md) / default + +# Function: default() + +> **default**(`__namedParameters`): `Element` + +Defined in: [src/components/Avatar/Avatar.tsx:29](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/Avatar/Avatar.tsx#L29) + +A component that generates and displays an avatar based on the provided name. +The avatar is generated using the DiceBear library with the initials style. + +## Parameters + +### \_\_namedParameters + +`InterfaceAvatarProps` + +## Returns + +`Element` + +JSX.Element - The rendered avatar image component. diff --git a/docs/docs/auto-docs/components/ChangeLanguageDropdown/ChangeLanguageDropDown/README.md b/docs/docs/auto-docs/components/ChangeLanguageDropdown/ChangeLanguageDropDown/README.md new file mode 100644 index 0000000000..fb7e82ebb4 --- /dev/null +++ b/docs/docs/auto-docs/components/ChangeLanguageDropdown/ChangeLanguageDropDown/README.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / components/ChangeLanguageDropdown/ChangeLanguageDropDown + +# components/ChangeLanguageDropdown/ChangeLanguageDropDown + +## Functions + +- [default](functions/default.md) diff --git a/docs/docs/auto-docs/components/ChangeLanguageDropdown/ChangeLanguageDropDown/functions/default.md b/docs/docs/auto-docs/components/ChangeLanguageDropdown/ChangeLanguageDropDown/functions/default.md new file mode 100644 index 0000000000..6705f3f5a4 --- /dev/null +++ b/docs/docs/auto-docs/components/ChangeLanguageDropdown/ChangeLanguageDropDown/functions/default.md @@ -0,0 +1,28 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [components/ChangeLanguageDropdown/ChangeLanguageDropDown](../README.md) / default + +# Function: default() + +> **default**(`props`): `Element` + +Defined in: [src/components/ChangeLanguageDropdown/ChangeLanguageDropDown.tsx:29](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/ChangeLanguageDropdown/ChangeLanguageDropDown.tsx#L29) + +A dropdown component that allows users to change the application's language. +It updates the user's language preference in the backend and stores the selection in cookies. + +## Parameters + +### props + +`InterfaceChangeLanguageDropDownProps` + +The properties for customizing the dropdown component. + +## Returns + +`Element` + +JSX.Element - The rendered dropdown component for changing languages. diff --git a/docs/docs/auto-docs/components/CheckIn/CheckInModal/README.md b/docs/docs/auto-docs/components/CheckIn/CheckInModal/README.md new file mode 100644 index 0000000000..93e35d3191 --- /dev/null +++ b/docs/docs/auto-docs/components/CheckIn/CheckInModal/README.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / components/CheckIn/CheckInModal + +# components/CheckIn/CheckInModal + +## Functions + +- [CheckInModal](functions/CheckInModal.md) diff --git a/docs/docs/auto-docs/components/CheckIn/CheckInModal/functions/CheckInModal.md b/docs/docs/auto-docs/components/CheckIn/CheckInModal/functions/CheckInModal.md new file mode 100644 index 0000000000..825977e3d3 --- /dev/null +++ b/docs/docs/auto-docs/components/CheckIn/CheckInModal/functions/CheckInModal.md @@ -0,0 +1,26 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [components/CheckIn/CheckInModal](../README.md) / CheckInModal + +# Function: CheckInModal() + +> **CheckInModal**(`__namedParameters`): `Element` + +Defined in: [src/components/CheckIn/CheckInModal.tsx:26](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/CheckIn/CheckInModal.tsx#L26) + +Modal component for managing event check-ins. Displays a list of attendees +and their check-in statuses, allowing for filtering by user name. + +## Parameters + +### \_\_namedParameters + +[`InterfaceModalProp`](../../types/interfaces/InterfaceModalProp.md) + +## Returns + +`Element` + +JSX.Element - The rendered modal component. diff --git a/docs/docs/auto-docs/components/CheckIn/CheckInWrapper/README.md b/docs/docs/auto-docs/components/CheckIn/CheckInWrapper/README.md new file mode 100644 index 0000000000..47606eb0df --- /dev/null +++ b/docs/docs/auto-docs/components/CheckIn/CheckInWrapper/README.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / components/CheckIn/CheckInWrapper + +# components/CheckIn/CheckInWrapper + +## Functions + +- [CheckInWrapper](functions/CheckInWrapper.md) diff --git a/docs/docs/auto-docs/components/CheckIn/CheckInWrapper/functions/CheckInWrapper.md b/docs/docs/auto-docs/components/CheckIn/CheckInWrapper/functions/CheckInWrapper.md new file mode 100644 index 0000000000..4b8a1d7ab0 --- /dev/null +++ b/docs/docs/auto-docs/components/CheckIn/CheckInWrapper/functions/CheckInWrapper.md @@ -0,0 +1,27 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [components/CheckIn/CheckInWrapper](../README.md) / CheckInWrapper + +# Function: CheckInWrapper() + +> **CheckInWrapper**(`eventId`): `Element` + +Defined in: [src/components/CheckIn/CheckInWrapper.tsx:17](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/CheckIn/CheckInWrapper.tsx#L17) + +Wrapper component that displays a button to open the CheckInModal. + +## Parameters + +### eventId + +`PropType` + +The ID of the event for which check-in management is being handled. + +## Returns + +`Element` + +JSX.Element - The rendered CheckInWrapper component. diff --git a/docs/docs/auto-docs/components/CheckIn/TableRow/README.md b/docs/docs/auto-docs/components/CheckIn/TableRow/README.md new file mode 100644 index 0000000000..d603432368 --- /dev/null +++ b/docs/docs/auto-docs/components/CheckIn/TableRow/README.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / components/CheckIn/TableRow + +# components/CheckIn/TableRow + +## Functions + +- [TableRow](functions/TableRow.md) diff --git a/docs/docs/auto-docs/components/CheckIn/TableRow/functions/TableRow.md b/docs/docs/auto-docs/components/CheckIn/TableRow/functions/TableRow.md new file mode 100644 index 0000000000..ce81e29537 --- /dev/null +++ b/docs/docs/auto-docs/components/CheckIn/TableRow/functions/TableRow.md @@ -0,0 +1,32 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [components/CheckIn/TableRow](../README.md) / TableRow + +# Function: TableRow() + +> **TableRow**(`__namedParameters`): `Element` + +Defined in: [src/components/CheckIn/TableRow.tsx:19](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/CheckIn/TableRow.tsx#L19) + +Component that represents a single row in the check-in table. +Allows users to mark themselves as checked in and download a tag if they are already checked in. + +## Parameters + +### \_\_namedParameters + +#### data + +[`InterfaceTableCheckIn`](../../types/interfaces/InterfaceTableCheckIn.md) + +#### refetch + +() => `void` + +## Returns + +`Element` + +JSX.Element - The rendered TableRow component. diff --git a/docs/docs/auto-docs/components/CheckIn/mocks/README.md b/docs/docs/auto-docs/components/CheckIn/mocks/README.md new file mode 100644 index 0000000000..9173908595 --- /dev/null +++ b/docs/docs/auto-docs/components/CheckIn/mocks/README.md @@ -0,0 +1,13 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / components/CheckIn/mocks + +# components/CheckIn/mocks + +## Variables + +- [checkInMutationSuccess](variables/checkInMutationSuccess.md) +- [checkInMutationUnsuccess](variables/checkInMutationUnsuccess.md) +- [checkInQueryMock](variables/checkInQueryMock.md) diff --git a/docs/docs/auto-docs/components/CheckIn/mocks/variables/checkInMutationSuccess.md b/docs/docs/auto-docs/components/CheckIn/mocks/variables/checkInMutationSuccess.md new file mode 100644 index 0000000000..af31fd04fb --- /dev/null +++ b/docs/docs/auto-docs/components/CheckIn/mocks/variables/checkInMutationSuccess.md @@ -0,0 +1,49 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [components/CheckIn/mocks](../README.md) / checkInMutationSuccess + +# Variable: checkInMutationSuccess + +> `const` **checkInMutationSuccess**: `object`[] + +Defined in: [src/components/CheckIn/mocks.ts:46](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/CheckIn/mocks.ts#L46) + +## Type declaration + +### request + +> **request**: `object` + +#### request.query + +> **query**: `DocumentNode` = `MARK_CHECKIN` + +#### request.variables + +> **variables**: `object` + +#### request.variables.eventId + +> **eventId**: `string` = `'event123'` + +#### request.variables.userId + +> **userId**: `string` = `'user123'` + +### result + +> **result**: `object` + +#### result.data + +> **data**: `object` + +#### result.data.checkIn + +> **checkIn**: `object` + +#### result.data.checkIn.\_id + +> **\_id**: `string` = `'123'` diff --git a/docs/docs/auto-docs/components/CheckIn/mocks/variables/checkInMutationUnsuccess.md b/docs/docs/auto-docs/components/CheckIn/mocks/variables/checkInMutationUnsuccess.md new file mode 100644 index 0000000000..318df15ed6 --- /dev/null +++ b/docs/docs/auto-docs/components/CheckIn/mocks/variables/checkInMutationUnsuccess.md @@ -0,0 +1,37 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [components/CheckIn/mocks](../README.md) / checkInMutationUnsuccess + +# Variable: checkInMutationUnsuccess + +> `const` **checkInMutationUnsuccess**: `object`[] + +Defined in: [src/components/CheckIn/mocks.ts:65](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/CheckIn/mocks.ts#L65) + +## Type declaration + +### error + +> **error**: `Error` + +### request + +> **request**: `object` + +#### request.query + +> **query**: `DocumentNode` = `MARK_CHECKIN` + +#### request.variables + +> **variables**: `object` + +#### request.variables.eventId + +> **eventId**: `string` = `'event123'` + +#### request.variables.userId + +> **userId**: `string` = `'user123'` diff --git a/docs/docs/auto-docs/components/CheckIn/mocks/variables/checkInQueryMock.md b/docs/docs/auto-docs/components/CheckIn/mocks/variables/checkInQueryMock.md new file mode 100644 index 0000000000..168894afe0 --- /dev/null +++ b/docs/docs/auto-docs/components/CheckIn/mocks/variables/checkInQueryMock.md @@ -0,0 +1,37 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [components/CheckIn/mocks](../README.md) / checkInQueryMock + +# Variable: checkInQueryMock + +> `const` **checkInQueryMock**: `object`[] + +Defined in: [src/components/CheckIn/mocks.ts:34](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/CheckIn/mocks.ts#L34) + +## Type declaration + +### request + +> **request**: `object` + +#### request.query + +> **query**: `DocumentNode` = `EVENT_CHECKINS` + +#### request.variables + +> **variables**: `object` + +#### request.variables.id + +> **id**: `string` = `'event123'` + +### result + +> **result**: `object` + +#### result.data + +> **data**: [`InterfaceAttendeeQueryResponse`](../../types/interfaces/InterfaceAttendeeQueryResponse.md) = `checkInQueryData` diff --git a/docs/docs/auto-docs/components/CheckIn/tagTemplate/README.md b/docs/docs/auto-docs/components/CheckIn/tagTemplate/README.md new file mode 100644 index 0000000000..fdb4f3533e --- /dev/null +++ b/docs/docs/auto-docs/components/CheckIn/tagTemplate/README.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / components/CheckIn/tagTemplate + +# components/CheckIn/tagTemplate + +## Variables + +- [tagTemplate](variables/tagTemplate.md) diff --git a/docs/docs/auto-docs/components/CheckIn/tagTemplate/variables/tagTemplate.md b/docs/docs/auto-docs/components/CheckIn/tagTemplate/variables/tagTemplate.md new file mode 100644 index 0000000000..a7a22b213e --- /dev/null +++ b/docs/docs/auto-docs/components/CheckIn/tagTemplate/variables/tagTemplate.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [components/CheckIn/tagTemplate](../README.md) / tagTemplate + +# Variable: tagTemplate + +> `const` **tagTemplate**: `Template` + +Defined in: [src/components/CheckIn/tagTemplate.ts:4](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/CheckIn/tagTemplate.ts#L4) diff --git a/docs/docs/auto-docs/components/CheckIn/types/README.md b/docs/docs/auto-docs/components/CheckIn/types/README.md new file mode 100644 index 0000000000..1750d4df6e --- /dev/null +++ b/docs/docs/auto-docs/components/CheckIn/types/README.md @@ -0,0 +1,16 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / components/CheckIn/types + +# components/CheckIn/types + +## Interfaces + +- [InterfaceAttendeeCheckIn](interfaces/InterfaceAttendeeCheckIn.md) +- [InterfaceAttendeeQueryResponse](interfaces/InterfaceAttendeeQueryResponse.md) +- [InterfaceModalProp](interfaces/InterfaceModalProp.md) +- [InterfaceTableCheckIn](interfaces/InterfaceTableCheckIn.md) +- [InterfaceTableData](interfaces/InterfaceTableData.md) +- [InterfaceUser](interfaces/InterfaceUser.md) diff --git a/docs/docs/auto-docs/components/CheckIn/types/interfaces/InterfaceAttendeeCheckIn.md b/docs/docs/auto-docs/components/CheckIn/types/interfaces/InterfaceAttendeeCheckIn.md new file mode 100644 index 0000000000..c05b4db7bd --- /dev/null +++ b/docs/docs/auto-docs/components/CheckIn/types/interfaces/InterfaceAttendeeCheckIn.md @@ -0,0 +1,41 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [components/CheckIn/types](../README.md) / InterfaceAttendeeCheckIn + +# Interface: InterfaceAttendeeCheckIn + +Defined in: [src/components/CheckIn/types.ts:7](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/CheckIn/types.ts#L7) + +## Properties + +### \_id + +> **\_id**: `string` + +Defined in: [src/components/CheckIn/types.ts:8](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/CheckIn/types.ts#L8) + +*** + +### checkIn + +> **checkIn**: `object` + +Defined in: [src/components/CheckIn/types.ts:10](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/CheckIn/types.ts#L10) + +#### \_id + +> **\_id**: `string` + +#### time + +> **time**: `string` + +*** + +### user + +> **user**: [`InterfaceUser`](InterfaceUser.md) + +Defined in: [src/components/CheckIn/types.ts:9](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/CheckIn/types.ts#L9) diff --git a/docs/docs/auto-docs/components/CheckIn/types/interfaces/InterfaceAttendeeQueryResponse.md b/docs/docs/auto-docs/components/CheckIn/types/interfaces/InterfaceAttendeeQueryResponse.md new file mode 100644 index 0000000000..b92f85b57f --- /dev/null +++ b/docs/docs/auto-docs/components/CheckIn/types/interfaces/InterfaceAttendeeQueryResponse.md @@ -0,0 +1,25 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [components/CheckIn/types](../README.md) / InterfaceAttendeeQueryResponse + +# Interface: InterfaceAttendeeQueryResponse + +Defined in: [src/components/CheckIn/types.ts:16](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/CheckIn/types.ts#L16) + +## Properties + +### event + +> **event**: `object` + +Defined in: [src/components/CheckIn/types.ts:17](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/CheckIn/types.ts#L17) + +#### \_id + +> **\_id**: `string` + +#### attendeesCheckInStatus + +> **attendeesCheckInStatus**: [`InterfaceAttendeeCheckIn`](InterfaceAttendeeCheckIn.md)[] diff --git a/docs/docs/auto-docs/components/CheckIn/types/interfaces/InterfaceModalProp.md b/docs/docs/auto-docs/components/CheckIn/types/interfaces/InterfaceModalProp.md new file mode 100644 index 0000000000..22c5806cd2 --- /dev/null +++ b/docs/docs/auto-docs/components/CheckIn/types/interfaces/InterfaceModalProp.md @@ -0,0 +1,37 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [components/CheckIn/types](../README.md) / InterfaceModalProp + +# Interface: InterfaceModalProp + +Defined in: [src/components/CheckIn/types.ts:23](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/CheckIn/types.ts#L23) + +## Properties + +### eventId + +> **eventId**: `string` + +Defined in: [src/components/CheckIn/types.ts:25](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/CheckIn/types.ts#L25) + +*** + +### handleClose() + +> **handleClose**: () => `void` + +Defined in: [src/components/CheckIn/types.ts:26](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/CheckIn/types.ts#L26) + +#### Returns + +`void` + +*** + +### show + +> **show**: `boolean` + +Defined in: [src/components/CheckIn/types.ts:24](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/CheckIn/types.ts#L24) diff --git a/docs/docs/auto-docs/components/CheckIn/types/interfaces/InterfaceTableCheckIn.md b/docs/docs/auto-docs/components/CheckIn/types/interfaces/InterfaceTableCheckIn.md new file mode 100644 index 0000000000..649fdf402c --- /dev/null +++ b/docs/docs/auto-docs/components/CheckIn/types/interfaces/InterfaceTableCheckIn.md @@ -0,0 +1,57 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [components/CheckIn/types](../README.md) / InterfaceTableCheckIn + +# Interface: InterfaceTableCheckIn + +Defined in: [src/components/CheckIn/types.ts:29](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/CheckIn/types.ts#L29) + +## Properties + +### checkIn + +> **checkIn**: `object` + +Defined in: [src/components/CheckIn/types.ts:33](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/CheckIn/types.ts#L33) + +#### \_id + +> **\_id**: `string` + +#### time + +> **time**: `string` + +*** + +### eventId + +> **eventId**: `string` + +Defined in: [src/components/CheckIn/types.ts:37](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/CheckIn/types.ts#L37) + +*** + +### id + +> **id**: `string` + +Defined in: [src/components/CheckIn/types.ts:30](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/CheckIn/types.ts#L30) + +*** + +### name + +> **name**: `string` + +Defined in: [src/components/CheckIn/types.ts:31](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/CheckIn/types.ts#L31) + +*** + +### userId + +> **userId**: `string` + +Defined in: [src/components/CheckIn/types.ts:32](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/CheckIn/types.ts#L32) diff --git a/docs/docs/auto-docs/components/CheckIn/types/interfaces/InterfaceTableData.md b/docs/docs/auto-docs/components/CheckIn/types/interfaces/InterfaceTableData.md new file mode 100644 index 0000000000..d6f253cedb --- /dev/null +++ b/docs/docs/auto-docs/components/CheckIn/types/interfaces/InterfaceTableData.md @@ -0,0 +1,33 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [components/CheckIn/types](../README.md) / InterfaceTableData + +# Interface: InterfaceTableData + +Defined in: [src/components/CheckIn/types.ts:40](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/CheckIn/types.ts#L40) + +## Properties + +### checkInData + +> **checkInData**: [`InterfaceTableCheckIn`](InterfaceTableCheckIn.md) + +Defined in: [src/components/CheckIn/types.ts:43](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/CheckIn/types.ts#L43) + +*** + +### id + +> **id**: `string` + +Defined in: [src/components/CheckIn/types.ts:42](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/CheckIn/types.ts#L42) + +*** + +### userName + +> **userName**: `string` + +Defined in: [src/components/CheckIn/types.ts:41](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/CheckIn/types.ts#L41) diff --git a/docs/docs/auto-docs/components/CheckIn/types/interfaces/InterfaceUser.md b/docs/docs/auto-docs/components/CheckIn/types/interfaces/InterfaceUser.md new file mode 100644 index 0000000000..09c3183f59 --- /dev/null +++ b/docs/docs/auto-docs/components/CheckIn/types/interfaces/InterfaceUser.md @@ -0,0 +1,33 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [components/CheckIn/types](../README.md) / InterfaceUser + +# Interface: InterfaceUser + +Defined in: [src/components/CheckIn/types.ts:1](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/CheckIn/types.ts#L1) + +## Properties + +### \_id + +> **\_id**: `string` + +Defined in: [src/components/CheckIn/types.ts:2](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/CheckIn/types.ts#L2) + +*** + +### firstName + +> **firstName**: `string` + +Defined in: [src/components/CheckIn/types.ts:3](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/CheckIn/types.ts#L3) + +*** + +### lastName + +> **lastName**: `string` + +Defined in: [src/components/CheckIn/types.ts:4](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/CheckIn/types.ts#L4) diff --git a/docs/docs/auto-docs/components/CollapsibleDropdown/CollapsibleDropdown/README.md b/docs/docs/auto-docs/components/CollapsibleDropdown/CollapsibleDropdown/README.md new file mode 100644 index 0000000000..d79ea7e55b --- /dev/null +++ b/docs/docs/auto-docs/components/CollapsibleDropdown/CollapsibleDropdown/README.md @@ -0,0 +1,15 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / components/CollapsibleDropdown/CollapsibleDropdown + +# components/CollapsibleDropdown/CollapsibleDropdown + +## Interfaces + +- [InterfaceCollapsibleDropdown](interfaces/InterfaceCollapsibleDropdown.md) + +## Functions + +- [default](functions/default.md) diff --git a/docs/docs/auto-docs/components/CollapsibleDropdown/CollapsibleDropdown/functions/default.md b/docs/docs/auto-docs/components/CollapsibleDropdown/CollapsibleDropdown/functions/default.md new file mode 100644 index 0000000000..370d9ccbef --- /dev/null +++ b/docs/docs/auto-docs/components/CollapsibleDropdown/CollapsibleDropdown/functions/default.md @@ -0,0 +1,25 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [components/CollapsibleDropdown/CollapsibleDropdown](../README.md) / default + +# Function: default() + +> **default**(`__namedParameters`): `Element` + +Defined in: [src/components/CollapsibleDropdown/CollapsibleDropdown.tsx:24](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/CollapsibleDropdown/CollapsibleDropdown.tsx#L24) + +A collapsible dropdown component that toggles visibility of sub-targets. + +## Parameters + +### \_\_namedParameters + +[`InterfaceCollapsibleDropdown`](../interfaces/InterfaceCollapsibleDropdown.md) + +## Returns + +`Element` + +JSX.Element - The rendered CollapsibleDropdown component. diff --git a/docs/docs/auto-docs/components/CollapsibleDropdown/CollapsibleDropdown/interfaces/InterfaceCollapsibleDropdown.md b/docs/docs/auto-docs/components/CollapsibleDropdown/CollapsibleDropdown/interfaces/InterfaceCollapsibleDropdown.md new file mode 100644 index 0000000000..4e9347c5e2 --- /dev/null +++ b/docs/docs/auto-docs/components/CollapsibleDropdown/CollapsibleDropdown/interfaces/InterfaceCollapsibleDropdown.md @@ -0,0 +1,33 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [components/CollapsibleDropdown/CollapsibleDropdown](../README.md) / InterfaceCollapsibleDropdown + +# Interface: InterfaceCollapsibleDropdown + +Defined in: [src/components/CollapsibleDropdown/CollapsibleDropdown.tsx:9](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/CollapsibleDropdown/CollapsibleDropdown.tsx#L9) + +## Properties + +### setShowDropdown + +> **setShowDropdown**: `Dispatch`\<`SetStateAction`\<`boolean`\>\> + +Defined in: [src/components/CollapsibleDropdown/CollapsibleDropdown.tsx:12](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/CollapsibleDropdown/CollapsibleDropdown.tsx#L12) + +*** + +### showDropdown + +> **showDropdown**: `boolean` + +Defined in: [src/components/CollapsibleDropdown/CollapsibleDropdown.tsx:10](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/CollapsibleDropdown/CollapsibleDropdown.tsx#L10) + +*** + +### target + +> **target**: [`TargetsType`](../../../../state/reducers/routesReducer/type-aliases/TargetsType.md) + +Defined in: [src/components/CollapsibleDropdown/CollapsibleDropdown.tsx:11](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/CollapsibleDropdown/CollapsibleDropdown.tsx#L11) diff --git a/docs/docs/auto-docs/components/ContriStats/ContriStats/README.md b/docs/docs/auto-docs/components/ContriStats/ContriStats/README.md new file mode 100644 index 0000000000..587df84c24 --- /dev/null +++ b/docs/docs/auto-docs/components/ContriStats/ContriStats/README.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / components/ContriStats/ContriStats + +# components/ContriStats/ContriStats + +## Functions + +- [default](functions/default.md) diff --git a/docs/docs/auto-docs/components/ContriStats/ContriStats/functions/default.md b/docs/docs/auto-docs/components/ContriStats/ContriStats/functions/default.md new file mode 100644 index 0000000000..8b368edf28 --- /dev/null +++ b/docs/docs/auto-docs/components/ContriStats/ContriStats/functions/default.md @@ -0,0 +1,25 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [components/ContriStats/ContriStats](../README.md) / default + +# Function: default() + +> **default**(`__namedParameters`): `JSX.Element` + +Defined in: [src/components/ContriStats/ContriStats.tsx:22](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/ContriStats/ContriStats.tsx#L22) + +A component that displays contribution statistics. + +## Parameters + +### \_\_namedParameters + +`InterfaceContriStatsProps` + +## Returns + +`JSX.Element` + +JSX.Element - The rendered component displaying the contribution stats. diff --git a/docs/docs/auto-docs/components/CurrentHourIndicator/CurrentHourIndicator/README.md b/docs/docs/auto-docs/components/CurrentHourIndicator/CurrentHourIndicator/README.md new file mode 100644 index 0000000000..f48317f2f1 --- /dev/null +++ b/docs/docs/auto-docs/components/CurrentHourIndicator/CurrentHourIndicator/README.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / components/CurrentHourIndicator/CurrentHourIndicator + +# components/CurrentHourIndicator/CurrentHourIndicator + +## Functions + +- [default](functions/default.md) diff --git a/docs/docs/auto-docs/components/CurrentHourIndicator/CurrentHourIndicator/functions/default.md b/docs/docs/auto-docs/components/CurrentHourIndicator/CurrentHourIndicator/functions/default.md new file mode 100644 index 0000000000..c53da1664e --- /dev/null +++ b/docs/docs/auto-docs/components/CurrentHourIndicator/CurrentHourIndicator/functions/default.md @@ -0,0 +1,19 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [components/CurrentHourIndicator/CurrentHourIndicator](../README.md) / default + +# Function: default() + +> **default**(): `Element` + +Defined in: [src/components/CurrentHourIndicator/CurrentHourIndicator.tsx:9](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/CurrentHourIndicator/CurrentHourIndicator.tsx#L9) + +A component that displays an indicator for the current hour. + +## Returns + +`Element` + +JSX.Element - The rendered component showing the current hour indicator. diff --git a/docs/docs/auto-docs/components/DynamicDropDown/DynamicDropDown/README.md b/docs/docs/auto-docs/components/DynamicDropDown/DynamicDropDown/README.md new file mode 100644 index 0000000000..d1af600000 --- /dev/null +++ b/docs/docs/auto-docs/components/DynamicDropDown/DynamicDropDown/README.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / components/DynamicDropDown/DynamicDropDown + +# components/DynamicDropDown/DynamicDropDown + +## Functions + +- [default](functions/default.md) diff --git a/docs/docs/auto-docs/components/DynamicDropDown/DynamicDropDown/functions/default.md b/docs/docs/auto-docs/components/DynamicDropDown/DynamicDropDown/functions/default.md new file mode 100644 index 0000000000..c9582cdc94 --- /dev/null +++ b/docs/docs/auto-docs/components/DynamicDropDown/DynamicDropDown/functions/default.md @@ -0,0 +1,32 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [components/DynamicDropDown/DynamicDropDown](../README.md) / default + +# Function: default() + +> **default**\<`T`\>(`__namedParameters`): `Element` + +Defined in: [src/components/DynamicDropDown/DynamicDropDown.tsx:34](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/DynamicDropDown/DynamicDropDown.tsx#L34) + +A dynamic dropdown component that allows users to select an option. + +This component renders a dropdown with a toggle button. Clicking the button +opens a menu with options. When an option is selected, it updates the form state. + +## Type Parameters + +• **T** *extends* `Record`\<`string`, `unknown`\> + +## Parameters + +### \_\_namedParameters + +`InterfaceChangeDropDownProps`\<`T`\> + +## Returns + +`Element` + +JSX.Element - The rendered dropdown component. diff --git a/docs/docs/auto-docs/components/EditCustomFieldDropDown/EditCustomFieldDropDown/README.md b/docs/docs/auto-docs/components/EditCustomFieldDropDown/EditCustomFieldDropDown/README.md new file mode 100644 index 0000000000..045ad51fde --- /dev/null +++ b/docs/docs/auto-docs/components/EditCustomFieldDropDown/EditCustomFieldDropDown/README.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / components/EditCustomFieldDropDown/EditCustomFieldDropDown + +# components/EditCustomFieldDropDown/EditCustomFieldDropDown + +## Functions + +- [default](functions/default.md) diff --git a/docs/docs/auto-docs/components/EditCustomFieldDropDown/EditCustomFieldDropDown/functions/default.md b/docs/docs/auto-docs/components/EditCustomFieldDropDown/EditCustomFieldDropDown/functions/default.md new file mode 100644 index 0000000000..87dbb87ae6 --- /dev/null +++ b/docs/docs/auto-docs/components/EditCustomFieldDropDown/EditCustomFieldDropDown/functions/default.md @@ -0,0 +1,29 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [components/EditCustomFieldDropDown/EditCustomFieldDropDown](../README.md) / default + +# Function: default() + +> **default**(`__namedParameters`): `Element` + +Defined in: [src/components/EditCustomFieldDropDown/EditCustomFieldDropDown.tsx:33](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/EditCustomFieldDropDown/EditCustomFieldDropDown.tsx#L33) + +A dropdown component for editing custom field types. + +This component displays a dropdown menu that allows users to select a custom field type. +It shows the current type of the field and provides a list of available types to choose from. +When a new type is selected, it updates the custom field data. + +## Parameters + +### \_\_namedParameters + +`InterfaceEditCustomFieldDropDownProps` + +## Returns + +`Element` + +JSX.Element - The rendered dropdown component. diff --git a/docs/docs/auto-docs/components/EventCalendar/EventCalendar/README.md b/docs/docs/auto-docs/components/EventCalendar/EventCalendar/README.md new file mode 100644 index 0000000000..1472b8295d --- /dev/null +++ b/docs/docs/auto-docs/components/EventCalendar/EventCalendar/README.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / components/EventCalendar/EventCalendar + +# components/EventCalendar/EventCalendar + +## Functions + +- [default](functions/default.md) diff --git a/docs/docs/auto-docs/components/EventCalendar/EventCalendar/functions/default.md b/docs/docs/auto-docs/components/EventCalendar/EventCalendar/functions/default.md new file mode 100644 index 0000000000..94b142befe --- /dev/null +++ b/docs/docs/auto-docs/components/EventCalendar/EventCalendar/functions/default.md @@ -0,0 +1,31 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [components/EventCalendar/EventCalendar](../README.md) / default + +# Function: default() + +> **default**(`props`, `deprecatedLegacyContext`?): `ReactNode` + +Defined in: [src/components/EventCalendar/EventCalendar.tsx:58](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/EventCalendar/EventCalendar.tsx#L58) + +## Parameters + +### props + +`InterfaceCalendarProps` + +### deprecatedLegacyContext? + +`any` + +**Deprecated** + +**See** + +[React Docs](https://legacy.reactjs.org/docs/legacy-context.html#referencing-context-in-lifecycle-methods) + +## Returns + +`ReactNode` diff --git a/docs/docs/auto-docs/components/EventCalendar/EventHeader/README.md b/docs/docs/auto-docs/components/EventCalendar/EventHeader/README.md new file mode 100644 index 0000000000..61eb1fc8da --- /dev/null +++ b/docs/docs/auto-docs/components/EventCalendar/EventHeader/README.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / components/EventCalendar/EventHeader + +# components/EventCalendar/EventHeader + +## Functions + +- [default](functions/default.md) diff --git a/docs/docs/auto-docs/components/EventCalendar/EventHeader/functions/default.md b/docs/docs/auto-docs/components/EventCalendar/EventHeader/functions/default.md new file mode 100644 index 0000000000..a213abec6e --- /dev/null +++ b/docs/docs/auto-docs/components/EventCalendar/EventHeader/functions/default.md @@ -0,0 +1,26 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [components/EventCalendar/EventHeader](../README.md) / default + +# Function: default() + +> **default**(`__namedParameters`): `JSX.Element` + +Defined in: [src/components/EventCalendar/EventHeader.tsx:27](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/EventCalendar/EventHeader.tsx#L27) + +EventHeader component displays the header for the event calendar. +It includes a search field, view type dropdown, event type dropdown, and a button to create an event. + +## Parameters + +### \_\_namedParameters + +`InterfaceEventHeaderProps` + +## Returns + +`JSX.Element` + +JSX.Element - The rendered EventHeader component. diff --git a/docs/docs/auto-docs/components/EventCalendar/YearlyEventCalender/README.md b/docs/docs/auto-docs/components/EventCalendar/YearlyEventCalender/README.md new file mode 100644 index 0000000000..c7eb5d8b30 --- /dev/null +++ b/docs/docs/auto-docs/components/EventCalendar/YearlyEventCalender/README.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / components/EventCalendar/YearlyEventCalender + +# components/EventCalendar/YearlyEventCalender + +## Functions + +- [default](functions/default.md) diff --git a/docs/docs/auto-docs/components/EventCalendar/YearlyEventCalender/functions/default.md b/docs/docs/auto-docs/components/EventCalendar/YearlyEventCalender/functions/default.md new file mode 100644 index 0000000000..53f0b5e97f --- /dev/null +++ b/docs/docs/auto-docs/components/EventCalendar/YearlyEventCalender/functions/default.md @@ -0,0 +1,38 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [components/EventCalendar/YearlyEventCalender](../README.md) / default + +# Function: default() + +> **default**(`props`, `deprecatedLegacyContext`?): `ReactNode` + +Defined in: [src/components/EventCalendar/YearlyEventCalender.tsx:95](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/EventCalendar/YearlyEventCalender.tsx#L95) + +Calendar component to display events for a selected year. + +This component renders a yearly calendar with navigation to view previous and next years. +It displays events for each day, with functionality to expand and view details of events. + +## Parameters + +### props + +`InterfaceCalendarProps` + +### deprecatedLegacyContext? + +`any` + +**Deprecated** + +**See** + +[React Docs](https://legacy.reactjs.org/docs/legacy-context.html#referencing-context-in-lifecycle-methods) + +## Returns + +`ReactNode` + +JSX.Element - The rendered calendar component. diff --git a/docs/docs/auto-docs/components/EventDashboardScreen/EventDashboardScreen/README.md b/docs/docs/auto-docs/components/EventDashboardScreen/EventDashboardScreen/README.md new file mode 100644 index 0000000000..8ab5d2ee2b --- /dev/null +++ b/docs/docs/auto-docs/components/EventDashboardScreen/EventDashboardScreen/README.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / components/EventDashboardScreen/EventDashboardScreen + +# components/EventDashboardScreen/EventDashboardScreen + +## Functions + +- [default](functions/default.md) diff --git a/docs/docs/auto-docs/components/EventDashboardScreen/EventDashboardScreen/functions/default.md b/docs/docs/auto-docs/components/EventDashboardScreen/EventDashboardScreen/functions/default.md new file mode 100644 index 0000000000..c466b35022 --- /dev/null +++ b/docs/docs/auto-docs/components/EventDashboardScreen/EventDashboardScreen/functions/default.md @@ -0,0 +1,20 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [components/EventDashboardScreen/EventDashboardScreen](../README.md) / default + +# Function: default() + +> **default**(): `Element` + +Defined in: [src/components/EventDashboardScreen/EventDashboardScreen.tsx:21](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/EventDashboardScreen/EventDashboardScreen.tsx#L21) + +The EventDashboardScreen component is the main dashboard view for event management. +It includes navigation, a sidebar, and a profile dropdown. + +## Returns + +`Element` + +JSX.Element - The rendered EventDashboardScreen component. diff --git a/docs/docs/auto-docs/components/EventListCard/EventListCard/README.md b/docs/docs/auto-docs/components/EventListCard/EventListCard/README.md new file mode 100644 index 0000000000..413bd041b0 --- /dev/null +++ b/docs/docs/auto-docs/components/EventListCard/EventListCard/README.md @@ -0,0 +1,15 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / components/EventListCard/EventListCard + +# components/EventListCard/EventListCard + +## Interfaces + +- [InterfaceEventListCardProps](interfaces/InterfaceEventListCardProps.md) + +## Functions + +- [default](functions/default.md) diff --git a/docs/docs/auto-docs/components/EventListCard/EventListCard/functions/default.md b/docs/docs/auto-docs/components/EventListCard/EventListCard/functions/default.md new file mode 100644 index 0000000000..c27af1bf71 --- /dev/null +++ b/docs/docs/auto-docs/components/EventListCard/EventListCard/functions/default.md @@ -0,0 +1,27 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [components/EventListCard/EventListCard](../README.md) / default + +# Function: default() + +> **default**(`props`): `JSX.Element` + +Defined in: [src/components/EventListCard/EventListCard.tsx:45](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/EventListCard/EventListCard.tsx#L45) + +Component that displays an event card with a modal for event details. + +## Parameters + +### props + +[`InterfaceEventListCardProps`](../interfaces/InterfaceEventListCardProps.md) + +The props for the EventListCard component. + +## Returns + +`JSX.Element` + +The rendered EventListCard component. diff --git a/docs/docs/auto-docs/components/EventListCard/EventListCard/interfaces/InterfaceEventListCardProps.md b/docs/docs/auto-docs/components/EventListCard/EventListCard/interfaces/InterfaceEventListCardProps.md new file mode 100644 index 0000000000..eecbfb724f --- /dev/null +++ b/docs/docs/auto-docs/components/EventListCard/EventListCard/interfaces/InterfaceEventListCardProps.md @@ -0,0 +1,183 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [components/EventListCard/EventListCard](../README.md) / InterfaceEventListCardProps + +# Interface: InterfaceEventListCardProps + +Defined in: [src/components/EventListCard/EventListCard.tsx:11](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/EventListCard/EventListCard.tsx#L11) + +Props for the EventListCard component. + +## Properties + +### allDay + +> **allDay**: `boolean` + +Defined in: [src/components/EventListCard/EventListCard.tsx:23](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/EventListCard/EventListCard.tsx#L23) + +*** + +### creator? + +> `optional` **creator**: `object` + +Defined in: [src/components/EventListCard/EventListCard.tsx:32](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/EventListCard/EventListCard.tsx#L32) + +#### \_id + +> **\_id**: `string` + +#### firstName + +> **firstName**: `string` + +#### lastName + +> **lastName**: `string` + +*** + +### endDate + +> **endDate**: `string` + +Defined in: [src/components/EventListCard/EventListCard.tsx:20](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/EventListCard/EventListCard.tsx#L20) + +*** + +### endTime + +> **endTime**: `string` + +Defined in: [src/components/EventListCard/EventListCard.tsx:22](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/EventListCard/EventListCard.tsx#L22) + +*** + +### eventDescription + +> **eventDescription**: `string` + +Defined in: [src/components/EventListCard/EventListCard.tsx:18](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/EventListCard/EventListCard.tsx#L18) + +*** + +### eventLocation + +> **eventLocation**: `string` + +Defined in: [src/components/EventListCard/EventListCard.tsx:16](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/EventListCard/EventListCard.tsx#L16) + +*** + +### eventName + +> **eventName**: `string` + +Defined in: [src/components/EventListCard/EventListCard.tsx:17](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/EventListCard/EventListCard.tsx#L17) + +*** + +### id + +> **id**: `string` + +Defined in: [src/components/EventListCard/EventListCard.tsx:15](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/EventListCard/EventListCard.tsx#L15) + +*** + +### isPublic + +> **isPublic**: `boolean` + +Defined in: [src/components/EventListCard/EventListCard.tsx:27](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/EventListCard/EventListCard.tsx#L27) + +*** + +### isRecurringEventException + +> **isRecurringEventException**: `boolean` + +Defined in: [src/components/EventListCard/EventListCard.tsx:26](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/EventListCard/EventListCard.tsx#L26) + +*** + +### isRegisterable + +> **isRegisterable**: `boolean` + +Defined in: [src/components/EventListCard/EventListCard.tsx:28](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/EventListCard/EventListCard.tsx#L28) + +*** + +### key + +> **key**: `string` + +Defined in: [src/components/EventListCard/EventListCard.tsx:14](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/EventListCard/EventListCard.tsx#L14) + +*** + +### recurrenceRule + +> **recurrenceRule**: [`InterfaceRecurrenceRule`](../../../../utils/recurrenceUtils/recurrenceTypes/interfaces/InterfaceRecurrenceRule.md) + +Defined in: [src/components/EventListCard/EventListCard.tsx:25](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/EventListCard/EventListCard.tsx#L25) + +*** + +### recurring + +> **recurring**: `boolean` + +Defined in: [src/components/EventListCard/EventListCard.tsx:24](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/EventListCard/EventListCard.tsx#L24) + +*** + +### refetchEvents()? + +> `optional` **refetchEvents**: () => `void` + +Defined in: [src/components/EventListCard/EventListCard.tsx:12](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/EventListCard/EventListCard.tsx#L12) + +#### Returns + +`void` + +*** + +### registrants? + +> `optional` **registrants**: `object`[] + +Defined in: [src/components/EventListCard/EventListCard.tsx:29](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/EventListCard/EventListCard.tsx#L29) + +#### \_id + +> **\_id**: `string` + +*** + +### startDate + +> **startDate**: `string` + +Defined in: [src/components/EventListCard/EventListCard.tsx:19](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/EventListCard/EventListCard.tsx#L19) + +*** + +### startTime + +> **startTime**: `string` + +Defined in: [src/components/EventListCard/EventListCard.tsx:21](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/EventListCard/EventListCard.tsx#L21) + +*** + +### userRole? + +> `optional` **userRole**: `string` + +Defined in: [src/components/EventListCard/EventListCard.tsx:13](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/EventListCard/EventListCard.tsx#L13) diff --git a/docs/docs/auto-docs/components/EventListCard/EventListCardMocks/README.md b/docs/docs/auto-docs/components/EventListCard/EventListCardMocks/README.md new file mode 100644 index 0000000000..f3e178dc1b --- /dev/null +++ b/docs/docs/auto-docs/components/EventListCard/EventListCardMocks/README.md @@ -0,0 +1,12 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / components/EventListCard/EventListCardMocks + +# components/EventListCard/EventListCardMocks + +## Variables + +- [ERROR\_MOCKS](variables/ERROR_MOCKS.md) +- [MOCKS](variables/MOCKS.md) diff --git a/docs/docs/auto-docs/components/EventListCard/EventListCardMocks/variables/ERROR_MOCKS.md b/docs/docs/auto-docs/components/EventListCard/EventListCardMocks/variables/ERROR_MOCKS.md new file mode 100644 index 0000000000..deb95d736b --- /dev/null +++ b/docs/docs/auto-docs/components/EventListCard/EventListCardMocks/variables/ERROR_MOCKS.md @@ -0,0 +1,33 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [components/EventListCard/EventListCardMocks](../README.md) / ERROR\_MOCKS + +# Variable: ERROR\_MOCKS + +> `const` **ERROR\_MOCKS**: `object`[] + +Defined in: [src/components/EventListCard/EventListCardMocks.ts:191](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/EventListCard/EventListCardMocks.ts#L191) + +## Type declaration + +### error + +> **error**: `Error` + +### request + +> **request**: `object` + +#### request.query + +> **query**: `DocumentNode` = `DELETE_EVENT_MUTATION` + +#### request.variables + +> **variables**: `object` + +#### request.variables.id + +> **id**: `string` = `'1'` diff --git a/docs/docs/auto-docs/components/EventListCard/EventListCardMocks/variables/MOCKS.md b/docs/docs/auto-docs/components/EventListCard/EventListCardMocks/variables/MOCKS.md new file mode 100644 index 0000000000..c8493980ab --- /dev/null +++ b/docs/docs/auto-docs/components/EventListCard/EventListCardMocks/variables/MOCKS.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [components/EventListCard/EventListCardMocks](../README.md) / MOCKS + +# Variable: MOCKS + +> `const` **MOCKS**: (\{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `allDay`: `undefined`; `description`: `undefined`; `endDate`: `undefined`; `endTime`: `undefined`; `eventId`: `undefined`; `frequency`: `undefined`; `id`: `string`; `interval`: `undefined`; `isPublic`: `undefined`; `isRegisterable`: `undefined`; `location`: `undefined`; `recurrenceEndDate`: `undefined`; `recurrenceStartDate`: `undefined`; `recurring`: `undefined`; `recurringEventDeleteType`: `undefined`; `recurringEventUpdateType`: `undefined`; `startDate`: `undefined`; `startTime`: `undefined`; `title`: `undefined`; `weekDayOccurenceInMonth`: `undefined`; `weekDays`: `undefined`; \}; \}; `result`: \{ `data`: \{ `registerForEvent`: `undefined`; `removeEvent`: \{ `_id`: `string`; \}; `updateEvent`: `undefined`; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `allDay`: `undefined`; `description`: `undefined`; `endDate`: `undefined`; `endTime`: `undefined`; `eventId`: `undefined`; `frequency`: `undefined`; `id`: `string`; `interval`: `undefined`; `isPublic`: `undefined`; `isRegisterable`: `undefined`; `location`: `undefined`; `recurrenceEndDate`: `undefined`; `recurrenceStartDate`: `undefined`; `recurring`: `undefined`; `recurringEventDeleteType`: `string`; `recurringEventUpdateType`: `undefined`; `startDate`: `undefined`; `startTime`: `undefined`; `title`: `undefined`; `weekDayOccurenceInMonth`: `undefined`; `weekDays`: `undefined`; \}; \}; `result`: \{ `data`: \{ `registerForEvent`: `undefined`; `removeEvent`: \{ `_id`: `string`; \}; `updateEvent`: `undefined`; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `allDay`: `boolean`; `description`: `string`; `endDate`: `string`; `endTime`: `undefined`; `eventId`: `undefined`; `frequency`: `undefined`; `id`: `string`; `interval`: `undefined`; `isPublic`: `boolean`; `isRegisterable`: `boolean`; `location`: `string`; `recurrenceEndDate`: `undefined`; `recurrenceStartDate`: `undefined`; `recurring`: `boolean`; `recurringEventDeleteType`: `undefined`; `recurringEventUpdateType`: `undefined`; `startDate`: `string`; `startTime`: `undefined`; `title`: `string`; `weekDayOccurenceInMonth`: `undefined`; `weekDays`: `undefined`; \}; \}; `result`: \{ `data`: \{ `registerForEvent`: `undefined`; `removeEvent`: `undefined`; `updateEvent`: \{ `_id`: `string`; \}; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `allDay`: `boolean`; `description`: `string`; `endDate`: `string`; `endTime`: `string`; `eventId`: `undefined`; `frequency`: `undefined`; `id`: `string`; `interval`: `undefined`; `isPublic`: `boolean`; `isRegisterable`: `boolean`; `location`: `string`; `recurrenceEndDate`: `undefined`; `recurrenceStartDate`: `undefined`; `recurring`: `boolean`; `recurringEventDeleteType`: `undefined`; `recurringEventUpdateType`: `undefined`; `startDate`: `string`; `startTime`: `string`; `title`: `string`; `weekDayOccurenceInMonth`: `undefined`; `weekDays`: `undefined`; \}; \}; `result`: \{ `data`: \{ `registerForEvent`: `undefined`; `removeEvent`: `undefined`; `updateEvent`: \{ `_id`: `string`; \}; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `allDay`: `boolean`; `description`: `string`; `endDate`: `string`; `endTime`: `undefined`; `eventId`: `undefined`; `frequency`: `string`; `id`: `string`; `interval`: `number`; `isPublic`: `boolean`; `isRegisterable`: `boolean`; `location`: `string`; `recurrenceEndDate`: `any`; `recurrenceStartDate`: `string`; `recurring`: `boolean`; `recurringEventDeleteType`: `undefined`; `recurringEventUpdateType`: `string`; `startDate`: `string`; `startTime`: `undefined`; `title`: `string`; `weekDayOccurenceInMonth`: `undefined`; `weekDays`: `string`[]; \}; \}; `result`: \{ `data`: \{ `registerForEvent`: `undefined`; `removeEvent`: `undefined`; `updateEvent`: \{ `_id`: `string`; \}; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `allDay`: `boolean`; `description`: `string`; `endDate`: `string`; `endTime`: `undefined`; `eventId`: `undefined`; `frequency`: `string`; `id`: `string`; `interval`: `number`; `isPublic`: `boolean`; `isRegisterable`: `boolean`; `location`: `string`; `recurrenceEndDate`: `string`; `recurrenceStartDate`: `string`; `recurring`: `boolean`; `recurringEventDeleteType`: `undefined`; `recurringEventUpdateType`: `string`; `startDate`: `string`; `startTime`: `undefined`; `title`: `string`; `weekDayOccurenceInMonth`: `number`; `weekDays`: `string`[]; \}; \}; `result`: \{ `data`: \{ `registerForEvent`: `undefined`; `removeEvent`: `undefined`; `updateEvent`: \{ `_id`: `string`; \}; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `allDay`: `boolean`; `description`: `string`; `endDate`: `string`; `endTime`: `undefined`; `eventId`: `undefined`; `frequency`: `string`; `id`: `string`; `interval`: `number`; `isPublic`: `boolean`; `isRegisterable`: `boolean`; `location`: `string`; `recurrenceEndDate`: `any`; `recurrenceStartDate`: `string`; `recurring`: `boolean`; `recurringEventDeleteType`: `undefined`; `recurringEventUpdateType`: `string`; `startDate`: `string`; `startTime`: `undefined`; `title`: `string`; `weekDayOccurenceInMonth`: `undefined`; `weekDays`: `undefined`; \}; \}; `result`: \{ `data`: \{ `registerForEvent`: `undefined`; `removeEvent`: `undefined`; `updateEvent`: \{ `_id`: `string`; \}; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `allDay`: `undefined`; `description`: `undefined`; `endDate`: `undefined`; `endTime`: `undefined`; `eventId`: `string`; `frequency`: `undefined`; `id`: `undefined`; `interval`: `undefined`; `isPublic`: `undefined`; `isRegisterable`: `undefined`; `location`: `undefined`; `recurrenceEndDate`: `undefined`; `recurrenceStartDate`: `undefined`; `recurring`: `undefined`; `recurringEventDeleteType`: `undefined`; `recurringEventUpdateType`: `undefined`; `startDate`: `undefined`; `startTime`: `undefined`; `title`: `undefined`; `weekDayOccurenceInMonth`: `undefined`; `weekDays`: `undefined`; \}; \}; `result`: \{ `data`: \{ `registerForEvent`: `object`[]; `removeEvent`: `undefined`; `updateEvent`: `undefined`; \}; \}; \})[] + +Defined in: [src/components/EventListCard/EventListCardMocks.ts:7](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/EventListCard/EventListCardMocks.ts#L7) diff --git a/docs/docs/auto-docs/components/EventListCard/EventListCardModals/README.md b/docs/docs/auto-docs/components/EventListCard/EventListCardModals/README.md new file mode 100644 index 0000000000..a431dca3dd --- /dev/null +++ b/docs/docs/auto-docs/components/EventListCard/EventListCardModals/README.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / components/EventListCard/EventListCardModals + +# components/EventListCard/EventListCardModals + +## Functions + +- [default](functions/default.md) diff --git a/docs/docs/auto-docs/components/EventListCard/EventListCardModals/functions/default.md b/docs/docs/auto-docs/components/EventListCard/EventListCardModals/functions/default.md new file mode 100644 index 0000000000..9c0a5085d3 --- /dev/null +++ b/docs/docs/auto-docs/components/EventListCard/EventListCardModals/functions/default.md @@ -0,0 +1,28 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [components/EventListCard/EventListCardModals](../README.md) / default + +# Function: default() + +> **default**(`props`): `JSX.Element` + +Defined in: [src/components/EventListCard/EventListCardModals.tsx:72](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/EventListCard/EventListCardModals.tsx#L72) + +The `EventListCardModals` component displays the modals related to events, such as viewing, +updating, and deleting events. + +## Parameters + +### props + +`InterfaceEventListCardModalProps` + +The properties for the component. + +## Returns + +`JSX.Element` + +A JSX element containing the event modals. diff --git a/docs/docs/auto-docs/components/EventListCard/EventListCardProps/README.md b/docs/docs/auto-docs/components/EventListCard/EventListCardProps/README.md new file mode 100644 index 0000000000..57a365ea63 --- /dev/null +++ b/docs/docs/auto-docs/components/EventListCard/EventListCardProps/README.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / components/EventListCard/EventListCardProps + +# components/EventListCard/EventListCardProps + +## Variables + +- [props](variables/props.md) diff --git a/docs/docs/auto-docs/components/EventListCard/EventListCardProps/variables/props.md b/docs/docs/auto-docs/components/EventListCard/EventListCardProps/variables/props.md new file mode 100644 index 0000000000..5171db46a6 --- /dev/null +++ b/docs/docs/auto-docs/components/EventListCard/EventListCardProps/variables/props.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [components/EventListCard/EventListCardProps](../README.md) / props + +# Variable: props + +> `const` **props**: [`InterfaceEventListCardProps`](../../EventListCard/interfaces/InterfaceEventListCardProps.md)[] + +Defined in: [src/components/EventListCard/EventListCardProps.ts:4](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/EventListCard/EventListCardProps.ts#L4) diff --git a/docs/docs/auto-docs/components/EventManagement/Dashboard/EventDashboard.mocks/README.md b/docs/docs/auto-docs/components/EventManagement/Dashboard/EventDashboard.mocks/README.md new file mode 100644 index 0000000000..6077bc4772 --- /dev/null +++ b/docs/docs/auto-docs/components/EventManagement/Dashboard/EventDashboard.mocks/README.md @@ -0,0 +1,12 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / components/EventManagement/Dashboard/EventDashboard.mocks + +# components/EventManagement/Dashboard/EventDashboard.mocks + +## Variables + +- [MOCKS\_WITH\_TIME](variables/MOCKS_WITH_TIME.md) +- [MOCKS\_WITHOUT\_TIME](variables/MOCKS_WITHOUT_TIME.md) diff --git a/docs/docs/auto-docs/components/EventManagement/Dashboard/EventDashboard.mocks/variables/MOCKS_WITHOUT_TIME.md b/docs/docs/auto-docs/components/EventManagement/Dashboard/EventDashboard.mocks/variables/MOCKS_WITHOUT_TIME.md new file mode 100644 index 0000000000..8ebd85d294 --- /dev/null +++ b/docs/docs/auto-docs/components/EventManagement/Dashboard/EventDashboard.mocks/variables/MOCKS_WITHOUT_TIME.md @@ -0,0 +1,101 @@ +[**talawa-admin**](../../../../../README.md) + +*** + +[talawa-admin](../../../../../modules.md) / [components/EventManagement/Dashboard/EventDashboard.mocks](../README.md) / MOCKS\_WITHOUT\_TIME + +# Variable: MOCKS\_WITHOUT\_TIME + +> `const` **MOCKS\_WITHOUT\_TIME**: `object`[] + +Defined in: [src/components/EventManagement/Dashboard/EventDashboard.mocks.ts:34](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/EventManagement/Dashboard/EventDashboard.mocks.ts#L34) + +## Type declaration + +### request + +> **request**: `object` + +#### request.query + +> **query**: `DocumentNode` = `EVENT_DETAILS` + +#### request.variables + +> **variables**: `object` + +#### request.variables.id + +> **id**: `string` = `'event123'` + +### result + +> **result**: `object` + +#### result.data + +> **data**: `object` + +#### result.data.event + +> **event**: `object` + +#### result.data.event.\_id + +> **\_id**: `string` = `'event123'` + +#### result.data.event.allDay + +> **allDay**: `boolean` = `true` + +#### result.data.event.attendees + +> **attendees**: `object`[] + +#### result.data.event.creator + +> **creator**: `object` + +#### result.data.event.creator.\_id + +> **\_id**: `string` = `'creator1'` + +#### result.data.event.creator.firstName + +> **firstName**: `string` = `'John'` + +#### result.data.event.creator.lastName + +> **lastName**: `string` = `'Doe'` + +#### result.data.event.description + +> **description**: `string` = `'Test Description'` + +#### result.data.event.endDate + +> **endDate**: `string` = `'2024-01-02'` + +#### result.data.event.endTime + +> **endTime**: `any` = `null` + +#### result.data.event.location + +> **location**: `string` = `'India'` + +#### result.data.event.recurring + +> **recurring**: `boolean` = `false` + +#### result.data.event.startDate + +> **startDate**: `string` = `'2024-01-01'` + +#### result.data.event.startTime + +> **startTime**: `any` = `null` + +#### result.data.event.title + +> **title**: `string` = `'Test Event'` diff --git a/docs/docs/auto-docs/components/EventManagement/Dashboard/EventDashboard.mocks/variables/MOCKS_WITH_TIME.md b/docs/docs/auto-docs/components/EventManagement/Dashboard/EventDashboard.mocks/variables/MOCKS_WITH_TIME.md new file mode 100644 index 0000000000..051e8b5ba9 --- /dev/null +++ b/docs/docs/auto-docs/components/EventManagement/Dashboard/EventDashboard.mocks/variables/MOCKS_WITH_TIME.md @@ -0,0 +1,101 @@ +[**talawa-admin**](../../../../../README.md) + +*** + +[talawa-admin](../../../../../modules.md) / [components/EventManagement/Dashboard/EventDashboard.mocks](../README.md) / MOCKS\_WITH\_TIME + +# Variable: MOCKS\_WITH\_TIME + +> `const` **MOCKS\_WITH\_TIME**: `object`[] + +Defined in: [src/components/EventManagement/Dashboard/EventDashboard.mocks.ts:3](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/EventManagement/Dashboard/EventDashboard.mocks.ts#L3) + +## Type declaration + +### request + +> **request**: `object` + +#### request.query + +> **query**: `DocumentNode` = `EVENT_DETAILS` + +#### request.variables + +> **variables**: `object` + +#### request.variables.id + +> **id**: `string` = `'event123'` + +### result + +> **result**: `object` + +#### result.data + +> **data**: `object` + +#### result.data.event + +> **event**: `object` + +#### result.data.event.\_id + +> **\_id**: `string` = `'event123'` + +#### result.data.event.allDay + +> **allDay**: `boolean` = `false` + +#### result.data.event.attendees + +> **attendees**: `object`[] + +#### result.data.event.creator + +> **creator**: `object` + +#### result.data.event.creator.\_id + +> **\_id**: `string` = `'creator1'` + +#### result.data.event.creator.firstName + +> **firstName**: `string` = `'John'` + +#### result.data.event.creator.lastName + +> **lastName**: `string` = `'Doe'` + +#### result.data.event.description + +> **description**: `string` = `'Test Description'` + +#### result.data.event.endDate + +> **endDate**: `string` = `'2024-01-02'` + +#### result.data.event.endTime + +> **endTime**: `string` = `'17:00:00'` + +#### result.data.event.location + +> **location**: `string` = `'India'` + +#### result.data.event.recurring + +> **recurring**: `boolean` = `false` + +#### result.data.event.startDate + +> **startDate**: `string` = `'2024-01-01'` + +#### result.data.event.startTime + +> **startTime**: `string` = `'09:00:00'` + +#### result.data.event.title + +> **title**: `string` = `'Test Event'` diff --git a/docs/docs/auto-docs/components/EventManagement/Dashboard/EventDashboard/README.md b/docs/docs/auto-docs/components/EventManagement/Dashboard/EventDashboard/README.md new file mode 100644 index 0000000000..8a531a757e --- /dev/null +++ b/docs/docs/auto-docs/components/EventManagement/Dashboard/EventDashboard/README.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / components/EventManagement/Dashboard/EventDashboard + +# components/EventManagement/Dashboard/EventDashboard + +## Functions + +- [default](functions/default.md) diff --git a/docs/docs/auto-docs/components/EventManagement/Dashboard/EventDashboard/functions/default.md b/docs/docs/auto-docs/components/EventManagement/Dashboard/EventDashboard/functions/default.md new file mode 100644 index 0000000000..2b5c194664 --- /dev/null +++ b/docs/docs/auto-docs/components/EventManagement/Dashboard/EventDashboard/functions/default.md @@ -0,0 +1,29 @@ +[**talawa-admin**](../../../../../README.md) + +*** + +[talawa-admin](../../../../../modules.md) / [components/EventManagement/Dashboard/EventDashboard](../README.md) / default + +# Function: default() + +> **default**(`props`): `Element` + +Defined in: [src/components/EventManagement/Dashboard/EventDashboard.tsx:20](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/EventManagement/Dashboard/EventDashboard.tsx#L20) + +Component that displays event details. + +## Parameters + +### props + +The props for the EventDashboard component. + +#### eventId + +`string` + +## Returns + +`Element` + +The rendered EventDashboard component. diff --git a/docs/docs/auto-docs/components/EventManagement/EventAgendaItems/EventAgendaItems/README.md b/docs/docs/auto-docs/components/EventManagement/EventAgendaItems/EventAgendaItems/README.md new file mode 100644 index 0000000000..986421c468 --- /dev/null +++ b/docs/docs/auto-docs/components/EventManagement/EventAgendaItems/EventAgendaItems/README.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / components/EventManagement/EventAgendaItems/EventAgendaItems + +# components/EventManagement/EventAgendaItems/EventAgendaItems + +## Functions + +- [default](functions/default.md) diff --git a/docs/docs/auto-docs/components/EventManagement/EventAgendaItems/EventAgendaItems/functions/default.md b/docs/docs/auto-docs/components/EventManagement/EventAgendaItems/EventAgendaItems/functions/default.md new file mode 100644 index 0000000000..a7c3f14fb7 --- /dev/null +++ b/docs/docs/auto-docs/components/EventManagement/EventAgendaItems/EventAgendaItems/functions/default.md @@ -0,0 +1,29 @@ +[**talawa-admin**](../../../../../README.md) + +*** + +[talawa-admin](../../../../../modules.md) / [components/EventManagement/EventAgendaItems/EventAgendaItems](../README.md) / default + +# Function: default() + +> **default**(`props`): `JSX.Element` + +Defined in: [src/components/EventManagement/EventAgendaItems/EventAgendaItems.tsx:33](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/EventManagement/EventAgendaItems/EventAgendaItems.tsx#L33) + +Component to manage and display agenda items for a specific event. + +## Parameters + +### props + +The component props. + +#### eventId + +`string` + +## Returns + +`JSX.Element` + +The rendered component. diff --git a/docs/docs/auto-docs/components/EventManagement/EventAgendaItems/EventAgendaItemsMocks/README.md b/docs/docs/auto-docs/components/EventManagement/EventAgendaItems/EventAgendaItemsMocks/README.md new file mode 100644 index 0000000000..26246e02f3 --- /dev/null +++ b/docs/docs/auto-docs/components/EventManagement/EventAgendaItems/EventAgendaItemsMocks/README.md @@ -0,0 +1,13 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / components/EventManagement/EventAgendaItems/EventAgendaItemsMocks + +# components/EventManagement/EventAgendaItems/EventAgendaItemsMocks + +## Variables + +- [MOCKS](variables/MOCKS.md) +- [MOCKS\_ERROR\_MUTATION](variables/MOCKS_ERROR_MUTATION.md) +- [MOCKS\_ERROR\_QUERY](variables/MOCKS_ERROR_QUERY.md) diff --git a/docs/docs/auto-docs/components/EventManagement/EventAgendaItems/EventAgendaItemsMocks/variables/MOCKS.md b/docs/docs/auto-docs/components/EventManagement/EventAgendaItems/EventAgendaItemsMocks/variables/MOCKS.md new file mode 100644 index 0000000000..2518457629 --- /dev/null +++ b/docs/docs/auto-docs/components/EventManagement/EventAgendaItems/EventAgendaItemsMocks/variables/MOCKS.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../../../README.md) + +*** + +[talawa-admin](../../../../../modules.md) / [components/EventManagement/EventAgendaItems/EventAgendaItemsMocks](../README.md) / MOCKS + +# Variable: MOCKS + +> `const` **MOCKS**: (\{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `input`: `undefined`; `organizationId`: `string`; `relatedEventId`: `undefined`; \}; \}; `result`: \{ `data`: \{ `agendaItemByEvent`: `undefined`; `agendaItemCategoriesByOrganization`: `object`[]; `createAgendaItem`: `undefined`; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `input`: `undefined`; `organizationId`: `undefined`; `relatedEventId`: `string`; \}; \}; `result`: \{ `data`: \{ `agendaItemByEvent`: `object`[]; `agendaItemCategoriesByOrganization`: `undefined`; `createAgendaItem`: `undefined`; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `input`: \{ `attachments`: `any`[]; `categories`: `string`[]; `description`: `string`; `duration`: `string`; `organizationId`: `string`; `relatedEventId`: `string`; `sequence`: `number`; `title`: `string`; `urls`: `any`[]; \}; `organizationId`: `undefined`; `relatedEventId`: `undefined`; \}; \}; `result`: \{ `data`: \{ `agendaItemByEvent`: `undefined`; `agendaItemCategoriesByOrganization`: `undefined`; `createAgendaItem`: \{ `_id`: `string`; \}; \}; \}; \})[] + +Defined in: [src/components/EventManagement/EventAgendaItems/EventAgendaItemsMocks.ts:6](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/EventManagement/EventAgendaItems/EventAgendaItemsMocks.ts#L6) diff --git a/docs/docs/auto-docs/components/EventManagement/EventAgendaItems/EventAgendaItemsMocks/variables/MOCKS_ERROR_MUTATION.md b/docs/docs/auto-docs/components/EventManagement/EventAgendaItems/EventAgendaItemsMocks/variables/MOCKS_ERROR_MUTATION.md new file mode 100644 index 0000000000..4e5340d980 --- /dev/null +++ b/docs/docs/auto-docs/components/EventManagement/EventAgendaItems/EventAgendaItemsMocks/variables/MOCKS_ERROR_MUTATION.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../../../README.md) + +*** + +[talawa-admin](../../../../../modules.md) / [components/EventManagement/EventAgendaItems/EventAgendaItemsMocks](../README.md) / MOCKS\_ERROR\_MUTATION + +# Variable: MOCKS\_ERROR\_MUTATION + +> `const` **MOCKS\_ERROR\_MUTATION**: (\{ `error`: `Error`; `request`: \{ `query`: `DocumentNode`; `variables`: \{ `input`: \{ `attachments`: `any`[]; `categories`: `string`[]; `description`: `string`; `duration`: `string`; `organizationId`: `string`; `relatedEventId`: `string`; `sequence`: `number`; `title`: `string`; `urls`: `any`[]; \}; `organizationId`: `undefined`; `relatedEventId`: `undefined`; \}; \}; \} \| \{ `error`: `Error`; `request`: \{ `query`: `DocumentNode`; `variables`: \{ `input`: `undefined`; `organizationId`: `undefined`; `relatedEventId`: `string`; \}; \}; \} \| \{ `error`: `Error`; `request`: \{ `query`: `DocumentNode`; `variables`: \{ `input`: `undefined`; `organizationId`: `string`; `relatedEventId`: `undefined`; \}; \}; \})[] + +Defined in: [src/components/EventManagement/EventAgendaItems/EventAgendaItemsMocks.ts:97](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/EventManagement/EventAgendaItems/EventAgendaItemsMocks.ts#L97) diff --git a/docs/docs/auto-docs/components/EventManagement/EventAgendaItems/EventAgendaItemsMocks/variables/MOCKS_ERROR_QUERY.md b/docs/docs/auto-docs/components/EventManagement/EventAgendaItems/EventAgendaItemsMocks/variables/MOCKS_ERROR_QUERY.md new file mode 100644 index 0000000000..607521294f --- /dev/null +++ b/docs/docs/auto-docs/components/EventManagement/EventAgendaItems/EventAgendaItemsMocks/variables/MOCKS_ERROR_QUERY.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../../../README.md) + +*** + +[talawa-admin](../../../../../modules.md) / [components/EventManagement/EventAgendaItems/EventAgendaItemsMocks](../README.md) / MOCKS\_ERROR\_QUERY + +# Variable: MOCKS\_ERROR\_QUERY + +> `const` **MOCKS\_ERROR\_QUERY**: `any`[] = `[]` + +Defined in: [src/components/EventManagement/EventAgendaItems/EventAgendaItemsMocks.ts:133](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/EventManagement/EventAgendaItems/EventAgendaItemsMocks.ts#L133) diff --git a/docs/docs/auto-docs/components/EventManagement/EventAttendance/Attendance.mocks/README.md b/docs/docs/auto-docs/components/EventManagement/EventAttendance/Attendance.mocks/README.md new file mode 100644 index 0000000000..d618005d2e --- /dev/null +++ b/docs/docs/auto-docs/components/EventManagement/EventAttendance/Attendance.mocks/README.md @@ -0,0 +1,12 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / components/EventManagement/EventAttendance/Attendance.mocks + +# components/EventManagement/EventAttendance/Attendance.mocks + +## Variables + +- [MOCKS](variables/MOCKS.md) +- [MOCKS\_ERROR](variables/MOCKS_ERROR.md) diff --git a/docs/docs/auto-docs/components/EventManagement/EventAttendance/Attendance.mocks/variables/MOCKS.md b/docs/docs/auto-docs/components/EventManagement/EventAttendance/Attendance.mocks/variables/MOCKS.md new file mode 100644 index 0000000000..04deb27f94 --- /dev/null +++ b/docs/docs/auto-docs/components/EventManagement/EventAttendance/Attendance.mocks/variables/MOCKS.md @@ -0,0 +1,41 @@ +[**talawa-admin**](../../../../../README.md) + +*** + +[talawa-admin](../../../../../modules.md) / [components/EventManagement/EventAttendance/Attendance.mocks](../README.md) / MOCKS + +# Variable: MOCKS + +> `const` **MOCKS**: `object`[] + +Defined in: [src/components/EventManagement/EventAttendance/Attendance.mocks.ts:3](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/EventManagement/EventAttendance/Attendance.mocks.ts#L3) + +## Type declaration + +### request + +> **request**: `object` + +#### request.query + +> **query**: `DocumentNode` = `EVENT_ATTENDEES` + +#### request.variables + +> **variables**: `object` = `{}` + +### result + +> **result**: `object` + +#### result.data + +> **data**: `object` + +#### result.data.event + +> **event**: `object` + +#### result.data.event.attendees + +> **attendees**: `object`[] diff --git a/docs/docs/auto-docs/components/EventManagement/EventAttendance/Attendance.mocks/variables/MOCKS_ERROR.md b/docs/docs/auto-docs/components/EventManagement/EventAttendance/Attendance.mocks/variables/MOCKS_ERROR.md new file mode 100644 index 0000000000..65777a69da --- /dev/null +++ b/docs/docs/auto-docs/components/EventManagement/EventAttendance/Attendance.mocks/variables/MOCKS_ERROR.md @@ -0,0 +1,29 @@ +[**talawa-admin**](../../../../../README.md) + +*** + +[talawa-admin](../../../../../modules.md) / [components/EventManagement/EventAttendance/Attendance.mocks](../README.md) / MOCKS\_ERROR + +# Variable: MOCKS\_ERROR + +> `const` **MOCKS\_ERROR**: `object`[] + +Defined in: [src/components/EventManagement/EventAttendance/Attendance.mocks.ts:54](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/EventManagement/EventAttendance/Attendance.mocks.ts#L54) + +## Type declaration + +### error + +> **error**: `Error` + +### request + +> **request**: `object` + +#### request.query + +> **query**: `DocumentNode` = `EVENT_ATTENDEES` + +#### request.variables + +> **variables**: `object` = `{}` diff --git a/docs/docs/auto-docs/components/EventManagement/EventAttendance/AttendedEventList/README.md b/docs/docs/auto-docs/components/EventManagement/EventAttendance/AttendedEventList/README.md new file mode 100644 index 0000000000..9b16ced2f2 --- /dev/null +++ b/docs/docs/auto-docs/components/EventManagement/EventAttendance/AttendedEventList/README.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / components/EventManagement/EventAttendance/AttendedEventList + +# components/EventManagement/EventAttendance/AttendedEventList + +## Functions + +- [default](functions/default.md) diff --git a/docs/docs/auto-docs/components/EventManagement/EventAttendance/AttendedEventList/functions/default.md b/docs/docs/auto-docs/components/EventManagement/EventAttendance/AttendedEventList/functions/default.md new file mode 100644 index 0000000000..14faeb627d --- /dev/null +++ b/docs/docs/auto-docs/components/EventManagement/EventAttendance/AttendedEventList/functions/default.md @@ -0,0 +1,35 @@ +[**talawa-admin**](../../../../../README.md) + +*** + +[talawa-admin](../../../../../modules.md) / [components/EventManagement/EventAttendance/AttendedEventList](../README.md) / default + +# Function: default() + +> **default**(`props`, `deprecatedLegacyContext`?): `ReactNode` + +Defined in: [src/components/EventManagement/EventAttendance/AttendedEventList.tsx:16](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/EventManagement/EventAttendance/AttendedEventList.tsx#L16) + +Component to display a list of events attended by a member + +## Parameters + +### props + +`InterfaceEventsAttended` + +### deprecatedLegacyContext? + +`any` + +**Deprecated** + +**See** + +[React Docs](https://legacy.reactjs.org/docs/legacy-context.html#referencing-context-in-lifecycle-methods) + +## Returns + +`ReactNode` + +A table row containing event details with a link to the event diff --git a/docs/docs/auto-docs/components/EventManagement/EventAttendance/EventAttendance/README.md b/docs/docs/auto-docs/components/EventManagement/EventAttendance/EventAttendance/README.md new file mode 100644 index 0000000000..5cc3bcb609 --- /dev/null +++ b/docs/docs/auto-docs/components/EventManagement/EventAttendance/EventAttendance/README.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / components/EventManagement/EventAttendance/EventAttendance + +# components/EventManagement/EventAttendance/EventAttendance + +## Functions + +- [default](functions/default.md) diff --git a/docs/docs/auto-docs/components/EventManagement/EventAttendance/EventAttendance/functions/default.md b/docs/docs/auto-docs/components/EventManagement/EventAttendance/EventAttendance/functions/default.md new file mode 100644 index 0000000000..21f2acc54e --- /dev/null +++ b/docs/docs/auto-docs/components/EventManagement/EventAttendance/EventAttendance/functions/default.md @@ -0,0 +1,20 @@ +[**talawa-admin**](../../../../../README.md) + +*** + +[talawa-admin](../../../../../modules.md) / [components/EventManagement/EventAttendance/EventAttendance](../README.md) / default + +# Function: default() + +> **default**(): `JSX.Element` + +Defined in: [src/components/EventManagement/EventAttendance/EventAttendance.tsx:34](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/EventManagement/EventAttendance/EventAttendance.tsx#L34) + +Component to manage and display event attendance information +Includes filtering and sorting functionality for attendees + +## Returns + +`JSX.Element` + +JSX element containing the event attendance interface diff --git a/docs/docs/auto-docs/components/EventManagement/EventAttendance/EventStatistics/README.md b/docs/docs/auto-docs/components/EventManagement/EventAttendance/EventStatistics/README.md new file mode 100644 index 0000000000..28c111d1ec --- /dev/null +++ b/docs/docs/auto-docs/components/EventManagement/EventAttendance/EventStatistics/README.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / components/EventManagement/EventAttendance/EventStatistics + +# components/EventManagement/EventAttendance/EventStatistics + +## Functions + +- [AttendanceStatisticsModal](functions/AttendanceStatisticsModal.md) diff --git a/docs/docs/auto-docs/components/EventManagement/EventAttendance/EventStatistics/functions/AttendanceStatisticsModal.md b/docs/docs/auto-docs/components/EventManagement/EventAttendance/EventStatistics/functions/AttendanceStatisticsModal.md new file mode 100644 index 0000000000..aca54e350c --- /dev/null +++ b/docs/docs/auto-docs/components/EventManagement/EventAttendance/EventStatistics/functions/AttendanceStatisticsModal.md @@ -0,0 +1,36 @@ +[**talawa-admin**](../../../../../README.md) + +*** + +[talawa-admin](../../../../../modules.md) / [components/EventManagement/EventAttendance/EventStatistics](../README.md) / AttendanceStatisticsModal + +# Function: AttendanceStatisticsModal() + +> **AttendanceStatisticsModal**(`props`, `deprecatedLegacyContext`?): `ReactNode` + +Defined in: [src/components/EventManagement/EventAttendance/EventStatistics.tsx:50](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/EventManagement/EventAttendance/EventStatistics.tsx#L50) + +Component to display statistical information about event attendance +Shows metrics like total attendees, filtering options, and attendance trends + +## Parameters + +### props + +[`InterfaceAttendanceStatisticsModalProps`](../../InterfaceEvents/interfaces/InterfaceAttendanceStatisticsModalProps.md) + +### deprecatedLegacyContext? + +`any` + +**Deprecated** + +**See** + +[React Docs](https://legacy.reactjs.org/docs/legacy-context.html#referencing-context-in-lifecycle-methods) + +## Returns + +`ReactNode` + +JSX element with event statistics dashboard diff --git a/docs/docs/auto-docs/components/EventManagement/EventAttendance/InterfaceEvents/README.md b/docs/docs/auto-docs/components/EventManagement/EventAttendance/InterfaceEvents/README.md new file mode 100644 index 0000000000..aeb9b6a842 --- /dev/null +++ b/docs/docs/auto-docs/components/EventManagement/EventAttendance/InterfaceEvents/README.md @@ -0,0 +1,14 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / components/EventManagement/EventAttendance/InterfaceEvents + +# components/EventManagement/EventAttendance/InterfaceEvents + +## Interfaces + +- [InterfaceAttendanceStatisticsModalProps](interfaces/InterfaceAttendanceStatisticsModalProps.md) +- [InterfaceEvent](interfaces/InterfaceEvent.md) +- [InterfaceMember](interfaces/InterfaceMember.md) +- [InterfaceRecurringEvent](interfaces/InterfaceRecurringEvent.md) diff --git a/docs/docs/auto-docs/components/EventManagement/EventAttendance/InterfaceEvents/interfaces/InterfaceAttendanceStatisticsModalProps.md b/docs/docs/auto-docs/components/EventManagement/EventAttendance/InterfaceEvents/interfaces/InterfaceAttendanceStatisticsModalProps.md new file mode 100644 index 0000000000..68789cd275 --- /dev/null +++ b/docs/docs/auto-docs/components/EventManagement/EventAttendance/InterfaceEvents/interfaces/InterfaceAttendanceStatisticsModalProps.md @@ -0,0 +1,75 @@ +[**talawa-admin**](../../../../../README.md) + +*** + +[talawa-admin](../../../../../modules.md) / [components/EventManagement/EventAttendance/InterfaceEvents](../README.md) / InterfaceAttendanceStatisticsModalProps + +# Interface: InterfaceAttendanceStatisticsModalProps + +Defined in: [src/components/EventManagement/EventAttendance/InterfaceEvents.ts:1](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/EventManagement/EventAttendance/InterfaceEvents.ts#L1) + +## Properties + +### handleClose() + +> **handleClose**: () => `void` + +Defined in: [src/components/EventManagement/EventAttendance/InterfaceEvents.ts:3](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/EventManagement/EventAttendance/InterfaceEvents.ts#L3) + +#### Returns + +`void` + +*** + +### memberData + +> **memberData**: [`InterfaceMember`](InterfaceMember.md)[] + +Defined in: [src/components/EventManagement/EventAttendance/InterfaceEvents.ts:9](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/EventManagement/EventAttendance/InterfaceEvents.ts#L9) + +*** + +### show + +> **show**: `boolean` + +Defined in: [src/components/EventManagement/EventAttendance/InterfaceEvents.ts:2](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/EventManagement/EventAttendance/InterfaceEvents.ts#L2) + +*** + +### statistics + +> **statistics**: `object` + +Defined in: [src/components/EventManagement/EventAttendance/InterfaceEvents.ts:4](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/EventManagement/EventAttendance/InterfaceEvents.ts#L4) + +#### attendanceRate + +> **attendanceRate**: `number` + +#### membersAttended + +> **membersAttended**: `number` + +#### totalMembers + +> **totalMembers**: `number` + +*** + +### t() + +> **t**: (`key`) => `string` + +Defined in: [src/components/EventManagement/EventAttendance/InterfaceEvents.ts:10](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/EventManagement/EventAttendance/InterfaceEvents.ts#L10) + +#### Parameters + +##### key + +`string` + +#### Returns + +`string` diff --git a/docs/docs/auto-docs/components/EventManagement/EventAttendance/InterfaceEvents/interfaces/InterfaceEvent.md b/docs/docs/auto-docs/components/EventManagement/EventAttendance/InterfaceEvents/interfaces/InterfaceEvent.md new file mode 100644 index 0000000000..3a8743a938 --- /dev/null +++ b/docs/docs/auto-docs/components/EventManagement/EventAttendance/InterfaceEvents/interfaces/InterfaceEvent.md @@ -0,0 +1,189 @@ +[**talawa-admin**](../../../../../README.md) + +*** + +[talawa-admin](../../../../../modules.md) / [components/EventManagement/EventAttendance/InterfaceEvents](../README.md) / InterfaceEvent + +# Interface: InterfaceEvent + +Defined in: [src/components/EventManagement/EventAttendance/InterfaceEvents.ts:35](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/EventManagement/EventAttendance/InterfaceEvents.ts#L35) + +## Properties + +### \_\_typename + +> **\_\_typename**: `string` + +Defined in: [src/components/EventManagement/EventAttendance/InterfaceEvents.ts:66](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/EventManagement/EventAttendance/InterfaceEvents.ts#L66) + +*** + +### \_id + +> **\_id**: `string` + +Defined in: [src/components/EventManagement/EventAttendance/InterfaceEvents.ts:36](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/EventManagement/EventAttendance/InterfaceEvents.ts#L36) + +*** + +### allDay + +> **allDay**: `boolean` + +Defined in: [src/components/EventManagement/EventAttendance/InterfaceEvents.ts:44](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/EventManagement/EventAttendance/InterfaceEvents.ts#L44) + +*** + +### attendees + +> **attendees**: `object`[] + +Defined in: [src/components/EventManagement/EventAttendance/InterfaceEvents.ts:58](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/EventManagement/EventAttendance/InterfaceEvents.ts#L58) + +#### \_id + +> **\_id**: `string` + +#### birthDate + +> **birthDate**: `string` + +#### email + +> **email**: `string` + +#### firstName + +> **firstName**: `string` + +#### gender + +> **gender**: `string` + +#### lastName + +> **lastName**: `string` + +*** + +### description + +> **description**: `string` + +Defined in: [src/components/EventManagement/EventAttendance/InterfaceEvents.ts:38](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/EventManagement/EventAttendance/InterfaceEvents.ts#L38) + +*** + +### endDate + +> **endDate**: `string` + +Defined in: [src/components/EventManagement/EventAttendance/InterfaceEvents.ts:40](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/EventManagement/EventAttendance/InterfaceEvents.ts#L40) + +*** + +### endTime + +> **endTime**: `string` + +Defined in: [src/components/EventManagement/EventAttendance/InterfaceEvents.ts:43](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/EventManagement/EventAttendance/InterfaceEvents.ts#L43) + +*** + +### isPublic + +> **isPublic**: `boolean` + +Defined in: [src/components/EventManagement/EventAttendance/InterfaceEvents.ts:56](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/EventManagement/EventAttendance/InterfaceEvents.ts#L56) + +*** + +### isRecurringEventException + +> **isRecurringEventException**: `boolean` + +Defined in: [src/components/EventManagement/EventAttendance/InterfaceEvents.ts:55](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/EventManagement/EventAttendance/InterfaceEvents.ts#L55) + +*** + +### isRegisterable + +> **isRegisterable**: `boolean` + +Defined in: [src/components/EventManagement/EventAttendance/InterfaceEvents.ts:57](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/EventManagement/EventAttendance/InterfaceEvents.ts#L57) + +*** + +### location + +> **location**: `string` + +Defined in: [src/components/EventManagement/EventAttendance/InterfaceEvents.ts:41](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/EventManagement/EventAttendance/InterfaceEvents.ts#L41) + +*** + +### recurrenceRule + +> **recurrenceRule**: `object` + +Defined in: [src/components/EventManagement/EventAttendance/InterfaceEvents.ts:46](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/EventManagement/EventAttendance/InterfaceEvents.ts#L46) + +#### count? + +> `optional` **count**: `number` + +#### frequency + +> **frequency**: `string` + +#### interval + +> **interval**: `number` + +#### recurrenceEndDate? + +> `optional` **recurrenceEndDate**: `string` + +#### recurrenceStartDate + +> **recurrenceStartDate**: `string` + +#### weekDayOccurenceInMonth? + +> `optional` **weekDayOccurenceInMonth**: `number` + +#### weekDays + +> **weekDays**: `string`[] + +*** + +### recurring + +> **recurring**: `boolean` + +Defined in: [src/components/EventManagement/EventAttendance/InterfaceEvents.ts:45](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/EventManagement/EventAttendance/InterfaceEvents.ts#L45) + +*** + +### startDate + +> **startDate**: `string` + +Defined in: [src/components/EventManagement/EventAttendance/InterfaceEvents.ts:39](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/EventManagement/EventAttendance/InterfaceEvents.ts#L39) + +*** + +### startTime + +> **startTime**: `string` + +Defined in: [src/components/EventManagement/EventAttendance/InterfaceEvents.ts:42](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/EventManagement/EventAttendance/InterfaceEvents.ts#L42) + +*** + +### title + +> **title**: `string` + +Defined in: [src/components/EventManagement/EventAttendance/InterfaceEvents.ts:37](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/EventManagement/EventAttendance/InterfaceEvents.ts#L37) diff --git a/docs/docs/auto-docs/components/EventManagement/EventAttendance/InterfaceEvents/interfaces/InterfaceMember.md b/docs/docs/auto-docs/components/EventManagement/EventAttendance/InterfaceEvents/interfaces/InterfaceMember.md new file mode 100644 index 0000000000..584d8c859d --- /dev/null +++ b/docs/docs/auto-docs/components/EventManagement/EventAttendance/InterfaceEvents/interfaces/InterfaceMember.md @@ -0,0 +1,97 @@ +[**talawa-admin**](../../../../../README.md) + +*** + +[talawa-admin](../../../../../modules.md) / [components/EventManagement/EventAttendance/InterfaceEvents](../README.md) / InterfaceMember + +# Interface: InterfaceMember + +Defined in: [src/components/EventManagement/EventAttendance/InterfaceEvents.ts:13](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/EventManagement/EventAttendance/InterfaceEvents.ts#L13) + +## Properties + +### \_\_typename + +> **\_\_typename**: `string` + +Defined in: [src/components/EventManagement/EventAttendance/InterfaceEvents.ts:23](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/EventManagement/EventAttendance/InterfaceEvents.ts#L23) + +*** + +### \_id + +> **\_id**: `string` + +Defined in: [src/components/EventManagement/EventAttendance/InterfaceEvents.ts:24](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/EventManagement/EventAttendance/InterfaceEvents.ts#L24) + +*** + +### birthDate + +> **birthDate**: `Date` + +Defined in: [src/components/EventManagement/EventAttendance/InterfaceEvents.ts:22](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/EventManagement/EventAttendance/InterfaceEvents.ts#L22) + +*** + +### createdAt + +> **createdAt**: `string` + +Defined in: [src/components/EventManagement/EventAttendance/InterfaceEvents.ts:14](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/EventManagement/EventAttendance/InterfaceEvents.ts#L14) + +*** + +### email + +> **email**: `` `${string}@${string}.${string}` `` + +Defined in: [src/components/EventManagement/EventAttendance/InterfaceEvents.ts:17](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/EventManagement/EventAttendance/InterfaceEvents.ts#L17) + +*** + +### eventsAttended? + +> `optional` **eventsAttended**: `object`[] + +Defined in: [src/components/EventManagement/EventAttendance/InterfaceEvents.ts:19](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/EventManagement/EventAttendance/InterfaceEvents.ts#L19) + +#### \_id + +> **\_id**: `string` + +*** + +### firstName + +> **firstName**: `string` + +Defined in: [src/components/EventManagement/EventAttendance/InterfaceEvents.ts:15](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/EventManagement/EventAttendance/InterfaceEvents.ts#L15) + +*** + +### gender + +> **gender**: `string` + +Defined in: [src/components/EventManagement/EventAttendance/InterfaceEvents.ts:18](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/EventManagement/EventAttendance/InterfaceEvents.ts#L18) + +*** + +### lastName + +> **lastName**: `string` + +Defined in: [src/components/EventManagement/EventAttendance/InterfaceEvents.ts:16](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/EventManagement/EventAttendance/InterfaceEvents.ts#L16) + +*** + +### tagsAssignedWith + +> **tagsAssignedWith**: `object` + +Defined in: [src/components/EventManagement/EventAttendance/InterfaceEvents.ts:25](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/EventManagement/EventAttendance/InterfaceEvents.ts#L25) + +#### edges + +> **edges**: `object`[] diff --git a/docs/docs/auto-docs/components/EventManagement/EventAttendance/InterfaceEvents/interfaces/InterfaceRecurringEvent.md b/docs/docs/auto-docs/components/EventManagement/EventAttendance/InterfaceEvents/interfaces/InterfaceRecurringEvent.md new file mode 100644 index 0000000000..411e986b80 --- /dev/null +++ b/docs/docs/auto-docs/components/EventManagement/EventAttendance/InterfaceEvents/interfaces/InterfaceRecurringEvent.md @@ -0,0 +1,89 @@ +[**talawa-admin**](../../../../../README.md) + +*** + +[talawa-admin](../../../../../modules.md) / [components/EventManagement/EventAttendance/InterfaceEvents](../README.md) / InterfaceRecurringEvent + +# Interface: InterfaceRecurringEvent + +Defined in: [src/components/EventManagement/EventAttendance/InterfaceEvents.ts:69](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/EventManagement/EventAttendance/InterfaceEvents.ts#L69) + +## Properties + +### \_id + +> **\_id**: `string` + +Defined in: [src/components/EventManagement/EventAttendance/InterfaceEvents.ts:70](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/EventManagement/EventAttendance/InterfaceEvents.ts#L70) + +*** + +### attendees + +> **attendees**: `object`[] + +Defined in: [src/components/EventManagement/EventAttendance/InterfaceEvents.ts:76](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/EventManagement/EventAttendance/InterfaceEvents.ts#L76) + +#### \_id + +> **\_id**: `string` + +#### gender + +> **gender**: `"MALE"` \| `"FEMALE"` \| `"OTHER"` \| `"PREFER_NOT_TO_SAY"` + +*** + +### endDate + +> **endDate**: `string` + +Defined in: [src/components/EventManagement/EventAttendance/InterfaceEvents.ts:73](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/EventManagement/EventAttendance/InterfaceEvents.ts#L73) + +*** + +### frequency + +> **frequency**: `string` + +Defined in: [src/components/EventManagement/EventAttendance/InterfaceEvents.ts:74](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/EventManagement/EventAttendance/InterfaceEvents.ts#L74) + +*** + +### interval + +> **interval**: `number` + +Defined in: [src/components/EventManagement/EventAttendance/InterfaceEvents.ts:75](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/EventManagement/EventAttendance/InterfaceEvents.ts#L75) + +*** + +### isPublic + +> **isPublic**: `boolean` + +Defined in: [src/components/EventManagement/EventAttendance/InterfaceEvents.ts:80](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/EventManagement/EventAttendance/InterfaceEvents.ts#L80) + +*** + +### isRegisterable + +> **isRegisterable**: `boolean` + +Defined in: [src/components/EventManagement/EventAttendance/InterfaceEvents.ts:81](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/EventManagement/EventAttendance/InterfaceEvents.ts#L81) + +*** + +### startDate + +> **startDate**: `string` + +Defined in: [src/components/EventManagement/EventAttendance/InterfaceEvents.ts:72](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/EventManagement/EventAttendance/InterfaceEvents.ts#L72) + +*** + +### title + +> **title**: `string` + +Defined in: [src/components/EventManagement/EventAttendance/InterfaceEvents.ts:71](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/EventManagement/EventAttendance/InterfaceEvents.ts#L71) diff --git a/docs/docs/auto-docs/components/EventManagement/EventRegistrant/EventRegistrants/README.md b/docs/docs/auto-docs/components/EventManagement/EventRegistrant/EventRegistrants/README.md new file mode 100644 index 0000000000..5cea6aa16c --- /dev/null +++ b/docs/docs/auto-docs/components/EventManagement/EventRegistrant/EventRegistrants/README.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / components/EventManagement/EventRegistrant/EventRegistrants + +# components/EventManagement/EventRegistrant/EventRegistrants + +## Functions + +- [default](functions/default.md) diff --git a/docs/docs/auto-docs/components/EventManagement/EventRegistrant/EventRegistrants/functions/default.md b/docs/docs/auto-docs/components/EventManagement/EventRegistrant/EventRegistrants/functions/default.md new file mode 100644 index 0000000000..6e915e32b1 --- /dev/null +++ b/docs/docs/auto-docs/components/EventManagement/EventRegistrant/EventRegistrants/functions/default.md @@ -0,0 +1,20 @@ +[**talawa-admin**](../../../../../README.md) + +*** + +[talawa-admin](../../../../../modules.md) / [components/EventManagement/EventRegistrant/EventRegistrants](../README.md) / default + +# Function: default() + +> **default**(): `JSX.Element` + +Defined in: [src/components/EventManagement/EventRegistrant/EventRegistrants.tsx:34](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/EventManagement/EventRegistrant/EventRegistrants.tsx#L34) + +Component to manage and display event registrant information +Includes adding new registrants and check-in functionality for registrants + +## Returns + +`JSX.Element` + +JSX element containing the event attendance interface diff --git a/docs/docs/auto-docs/components/EventManagement/EventRegistrant/Registrations.mocks/README.md b/docs/docs/auto-docs/components/EventManagement/EventRegistrant/Registrations.mocks/README.md new file mode 100644 index 0000000000..3b775ce0f9 --- /dev/null +++ b/docs/docs/auto-docs/components/EventManagement/EventRegistrant/Registrations.mocks/README.md @@ -0,0 +1,12 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / components/EventManagement/EventRegistrant/Registrations.mocks + +# components/EventManagement/EventRegistrant/Registrations.mocks + +## Variables + +- [REGISTRANTS\_MOCKS](variables/REGISTRANTS_MOCKS.md) +- [REGISTRANTS\_MOCKS\_ERROR](variables/REGISTRANTS_MOCKS_ERROR.md) diff --git a/docs/docs/auto-docs/components/EventManagement/EventRegistrant/Registrations.mocks/variables/REGISTRANTS_MOCKS.md b/docs/docs/auto-docs/components/EventManagement/EventRegistrant/Registrations.mocks/variables/REGISTRANTS_MOCKS.md new file mode 100644 index 0000000000..b8b468d03f --- /dev/null +++ b/docs/docs/auto-docs/components/EventManagement/EventRegistrant/Registrations.mocks/variables/REGISTRANTS_MOCKS.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../../../README.md) + +*** + +[talawa-admin](../../../../../modules.md) / [components/EventManagement/EventRegistrant/Registrations.mocks](../README.md) / REGISTRANTS\_MOCKS + +# Variable: REGISTRANTS\_MOCKS + +> `const` **REGISTRANTS\_MOCKS**: (\{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `eventId`: `string`; `id`: `undefined`; \}; \}; `result`: \{ `data`: \{ `event`: `undefined`; `getEventAttendeesByEventId`: `object`[]; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `eventId`: `undefined`; `id`: `string`; \}; \}; `result`: \{ `data`: \{ `event`: \{ `attendees`: `object`[]; \}; `getEventAttendeesByEventId`: `undefined`; \}; \}; \})[] + +Defined in: [src/components/EventManagement/EventRegistrant/Registrations.mocks.ts:3](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/EventManagement/EventRegistrant/Registrations.mocks.ts#L3) diff --git a/docs/docs/auto-docs/components/EventManagement/EventRegistrant/Registrations.mocks/variables/REGISTRANTS_MOCKS_ERROR.md b/docs/docs/auto-docs/components/EventManagement/EventRegistrant/Registrations.mocks/variables/REGISTRANTS_MOCKS_ERROR.md new file mode 100644 index 0000000000..f4d97fb767 --- /dev/null +++ b/docs/docs/auto-docs/components/EventManagement/EventRegistrant/Registrations.mocks/variables/REGISTRANTS_MOCKS_ERROR.md @@ -0,0 +1,33 @@ +[**talawa-admin**](../../../../../README.md) + +*** + +[talawa-admin](../../../../../modules.md) / [components/EventManagement/EventRegistrant/Registrations.mocks](../README.md) / REGISTRANTS\_MOCKS\_ERROR + +# Variable: REGISTRANTS\_MOCKS\_ERROR + +> `const` **REGISTRANTS\_MOCKS\_ERROR**: `object`[] + +Defined in: [src/components/EventManagement/EventRegistrant/Registrations.mocks.ts:58](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/EventManagement/EventRegistrant/Registrations.mocks.ts#L58) + +## Type declaration + +### error + +> **error**: `Error` + +### request + +> **request**: `object` + +#### request.query + +> **query**: `DocumentNode` = `EVENT_REGISTRANTS` + +#### request.variables + +> **variables**: `object` + +#### request.variables.eventId + +> **eventId**: `string` = `'event123'` diff --git a/docs/docs/auto-docs/components/EventRegistrantsModal/AddOnSpotAttendee/README.md b/docs/docs/auto-docs/components/EventRegistrantsModal/AddOnSpotAttendee/README.md new file mode 100644 index 0000000000..0d20c6918e --- /dev/null +++ b/docs/docs/auto-docs/components/EventRegistrantsModal/AddOnSpotAttendee/README.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / components/EventRegistrantsModal/AddOnSpotAttendee + +# components/EventRegistrantsModal/AddOnSpotAttendee + +## Functions + +- [default](functions/default.md) diff --git a/docs/docs/auto-docs/components/EventRegistrantsModal/AddOnSpotAttendee/functions/default.md b/docs/docs/auto-docs/components/EventRegistrantsModal/AddOnSpotAttendee/functions/default.md new file mode 100644 index 0000000000..34a2d7bd32 --- /dev/null +++ b/docs/docs/auto-docs/components/EventRegistrantsModal/AddOnSpotAttendee/functions/default.md @@ -0,0 +1,35 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [components/EventRegistrantsModal/AddOnSpotAttendee](../README.md) / default + +# Function: default() + +> **default**(`props`, `deprecatedLegacyContext`?): `ReactNode` + +Defined in: [src/components/EventRegistrantsModal/AddOnSpotAttendee.tsx:21](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/EventRegistrantsModal/AddOnSpotAttendee.tsx#L21) + +Modal component for adding on-spot attendees to an event + +## Parameters + +### props + +[`InterfaceAddOnSpotAttendeeProps`](../../../../utils/interfaces/interfaces/InterfaceAddOnSpotAttendeeProps.md) + +### deprecatedLegacyContext? + +`any` + +**Deprecated** + +**See** + +[React Docs](https://legacy.reactjs.org/docs/legacy-context.html#referencing-context-in-lifecycle-methods) + +## Returns + +`ReactNode` + +Modal component with form for adding new attendee diff --git a/docs/docs/auto-docs/components/EventRegistrantsModal/EventRegistrantsModal/README.md b/docs/docs/auto-docs/components/EventRegistrantsModal/EventRegistrantsModal/README.md new file mode 100644 index 0000000000..f4c911304e --- /dev/null +++ b/docs/docs/auto-docs/components/EventRegistrantsModal/EventRegistrantsModal/README.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / components/EventRegistrantsModal/EventRegistrantsModal + +# components/EventRegistrantsModal/EventRegistrantsModal + +## Functions + +- [EventRegistrantsModal](functions/EventRegistrantsModal.md) diff --git a/docs/docs/auto-docs/components/EventRegistrantsModal/EventRegistrantsModal/functions/EventRegistrantsModal.md b/docs/docs/auto-docs/components/EventRegistrantsModal/EventRegistrantsModal/functions/EventRegistrantsModal.md new file mode 100644 index 0000000000..0f327318c4 --- /dev/null +++ b/docs/docs/auto-docs/components/EventRegistrantsModal/EventRegistrantsModal/functions/EventRegistrantsModal.md @@ -0,0 +1,26 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [components/EventRegistrantsModal/EventRegistrantsModal](../README.md) / EventRegistrantsModal + +# Function: EventRegistrantsModal() + +> **EventRegistrantsModal**(`props`): `Element` + +Defined in: [src/components/EventRegistrantsModal/EventRegistrantsModal.tsx:44](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/EventRegistrantsModal/EventRegistrantsModal.tsx#L44) + +Modal component for managing event registrants. +Allows adding and removing attendees from an event. + +## Parameters + +### props + +`ModalPropType` + +## Returns + +`Element` + +JSX element representing the modal. diff --git a/docs/docs/auto-docs/components/EventRegistrantsModal/EventRegistrantsWrapper/README.md b/docs/docs/auto-docs/components/EventRegistrantsModal/EventRegistrantsWrapper/README.md new file mode 100644 index 0000000000..198804f459 --- /dev/null +++ b/docs/docs/auto-docs/components/EventRegistrantsModal/EventRegistrantsWrapper/README.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / components/EventRegistrantsModal/EventRegistrantsWrapper + +# components/EventRegistrantsModal/EventRegistrantsWrapper + +## Functions + +- [EventRegistrantsWrapper](functions/EventRegistrantsWrapper.md) diff --git a/docs/docs/auto-docs/components/EventRegistrantsModal/EventRegistrantsWrapper/functions/EventRegistrantsWrapper.md b/docs/docs/auto-docs/components/EventRegistrantsModal/EventRegistrantsWrapper/functions/EventRegistrantsWrapper.md new file mode 100644 index 0000000000..42dc6955f0 --- /dev/null +++ b/docs/docs/auto-docs/components/EventRegistrantsModal/EventRegistrantsWrapper/functions/EventRegistrantsWrapper.md @@ -0,0 +1,25 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [components/EventRegistrantsModal/EventRegistrantsWrapper](../README.md) / EventRegistrantsWrapper + +# Function: EventRegistrantsWrapper() + +> **EventRegistrantsWrapper**(`__namedParameters`): `Element` + +Defined in: [src/components/EventRegistrantsModal/EventRegistrantsWrapper.tsx:20](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/EventRegistrantsModal/EventRegistrantsWrapper.tsx#L20) + +Wrapper component that displays a button to show the event registrants modal. + +## Parameters + +### \_\_namedParameters + +`PropType` + +## Returns + +`Element` + +JSX element representing the wrapper with a button to show the modal. diff --git a/docs/docs/auto-docs/components/EventStats/EventStats/README.md b/docs/docs/auto-docs/components/EventStats/EventStats/README.md new file mode 100644 index 0000000000..37b49f4e4e --- /dev/null +++ b/docs/docs/auto-docs/components/EventStats/EventStats/README.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / components/EventStats/EventStats + +# components/EventStats/EventStats + +## Functions + +- [EventStats](functions/EventStats.md) diff --git a/docs/docs/auto-docs/components/EventStats/EventStats/functions/EventStats.md b/docs/docs/auto-docs/components/EventStats/EventStats/functions/EventStats.md new file mode 100644 index 0000000000..9a455af70e --- /dev/null +++ b/docs/docs/auto-docs/components/EventStats/EventStats/functions/EventStats.md @@ -0,0 +1,26 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [components/EventStats/EventStats](../README.md) / EventStats + +# Function: EventStats() + +> **EventStats**(`__namedParameters`): `Element` + +Defined in: [src/components/EventStats/EventStats.tsx:27](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/EventStats/EventStats.tsx#L27) + +Component that displays event statistics in a modal. +Shows feedback, reviews, and average rating for the event. + +## Parameters + +### \_\_namedParameters + +`ModalPropType` + +## Returns + +`Element` + +JSX element representing the event statistics modal. diff --git a/docs/docs/auto-docs/components/EventStats/EventStatsWrapper/README.md b/docs/docs/auto-docs/components/EventStats/EventStatsWrapper/README.md new file mode 100644 index 0000000000..5e00a71e19 --- /dev/null +++ b/docs/docs/auto-docs/components/EventStats/EventStatsWrapper/README.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / components/EventStats/EventStatsWrapper + +# components/EventStats/EventStatsWrapper + +## Functions + +- [EventStatsWrapper](functions/EventStatsWrapper.md) diff --git a/docs/docs/auto-docs/components/EventStats/EventStatsWrapper/functions/EventStatsWrapper.md b/docs/docs/auto-docs/components/EventStats/EventStatsWrapper/functions/EventStatsWrapper.md new file mode 100644 index 0000000000..9374b2c7d5 --- /dev/null +++ b/docs/docs/auto-docs/components/EventStats/EventStatsWrapper/functions/EventStatsWrapper.md @@ -0,0 +1,27 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [components/EventStats/EventStatsWrapper](../README.md) / EventStatsWrapper + +# Function: EventStatsWrapper() + +> **EventStatsWrapper**(`eventId`): `Element` + +Defined in: [src/components/EventStats/EventStatsWrapper.tsx:18](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/EventStats/EventStatsWrapper.tsx#L18) + +Wrapper component that displays a button to show event statistics. + +## Parameters + +### eventId + +`PropType` + +The ID of the event. + +## Returns + +`Element` + +JSX element representing the wrapper with a button to view event statistics. diff --git a/docs/docs/auto-docs/components/EventStats/Statistics/AverageRating/README.md b/docs/docs/auto-docs/components/EventStats/Statistics/AverageRating/README.md new file mode 100644 index 0000000000..8f37a3f2fb --- /dev/null +++ b/docs/docs/auto-docs/components/EventStats/Statistics/AverageRating/README.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / components/EventStats/Statistics/AverageRating + +# components/EventStats/Statistics/AverageRating + +## Functions + +- [AverageRating](functions/AverageRating.md) diff --git a/docs/docs/auto-docs/components/EventStats/Statistics/AverageRating/functions/AverageRating.md b/docs/docs/auto-docs/components/EventStats/Statistics/AverageRating/functions/AverageRating.md new file mode 100644 index 0000000000..1ac1362a69 --- /dev/null +++ b/docs/docs/auto-docs/components/EventStats/Statistics/AverageRating/functions/AverageRating.md @@ -0,0 +1,28 @@ +[**talawa-admin**](../../../../../README.md) + +*** + +[talawa-admin](../../../../../modules.md) / [components/EventStats/Statistics/AverageRating](../README.md) / AverageRating + +# Function: AverageRating() + +> **AverageRating**(`data`): `Element` + +Defined in: [src/components/EventStats/Statistics/AverageRating.tsx:33](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/EventStats/Statistics/AverageRating.tsx#L33) + +Component that displays the average rating for an event. +Shows a rating value and a star rating icon. + +## Parameters + +### data + +`ModalPropType` + +Data containing the average feedback score to be displayed. + +## Returns + +`Element` + +JSX element representing the average rating card with a star rating. diff --git a/docs/docs/auto-docs/components/EventStats/Statistics/Feedback/README.md b/docs/docs/auto-docs/components/EventStats/Statistics/Feedback/README.md new file mode 100644 index 0000000000..b319a633ca --- /dev/null +++ b/docs/docs/auto-docs/components/EventStats/Statistics/Feedback/README.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / components/EventStats/Statistics/Feedback + +# components/EventStats/Statistics/Feedback + +## Functions + +- [FeedbackStats](functions/FeedbackStats.md) diff --git a/docs/docs/auto-docs/components/EventStats/Statistics/Feedback/functions/FeedbackStats.md b/docs/docs/auto-docs/components/EventStats/Statistics/Feedback/functions/FeedbackStats.md new file mode 100644 index 0000000000..a085ba2025 --- /dev/null +++ b/docs/docs/auto-docs/components/EventStats/Statistics/Feedback/functions/FeedbackStats.md @@ -0,0 +1,28 @@ +[**talawa-admin**](../../../../../README.md) + +*** + +[talawa-admin](../../../../../modules.md) / [components/EventStats/Statistics/Feedback](../README.md) / FeedbackStats + +# Function: FeedbackStats() + +> **FeedbackStats**(`data`): `Element` + +Defined in: [src/components/EventStats/Statistics/Feedback.tsx:34](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/EventStats/Statistics/Feedback.tsx#L34) + +Component that displays a pie chart of feedback ratings for an event. +Shows how many people gave each rating. + +## Parameters + +### data + +`ModalPropType` + +Data containing event feedback to be displayed in the chart. + +## Returns + +`Element` + +JSX element representing the feedback analysis card with a pie chart. diff --git a/docs/docs/auto-docs/components/EventStats/Statistics/Review/README.md b/docs/docs/auto-docs/components/EventStats/Statistics/Review/README.md new file mode 100644 index 0000000000..570c0082b2 --- /dev/null +++ b/docs/docs/auto-docs/components/EventStats/Statistics/Review/README.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / components/EventStats/Statistics/Review + +# components/EventStats/Statistics/Review + +## Functions + +- [ReviewStats](functions/ReviewStats.md) diff --git a/docs/docs/auto-docs/components/EventStats/Statistics/Review/functions/ReviewStats.md b/docs/docs/auto-docs/components/EventStats/Statistics/Review/functions/ReviewStats.md new file mode 100644 index 0000000000..43016b3ac5 --- /dev/null +++ b/docs/docs/auto-docs/components/EventStats/Statistics/Review/functions/ReviewStats.md @@ -0,0 +1,28 @@ +[**talawa-admin**](../../../../../README.md) + +*** + +[talawa-admin](../../../../../modules.md) / [components/EventStats/Statistics/Review](../README.md) / ReviewStats + +# Function: ReviewStats() + +> **ReviewStats**(`data`): `Element` + +Defined in: [src/components/EventStats/Statistics/Review.tsx:30](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/EventStats/Statistics/Review.tsx#L30) + +Component that displays reviews for an event. +Shows a list of reviews with ratings and text. + +## Parameters + +### data + +`ModalPropType` + +Data containing event feedback to be displayed. + +## Returns + +`Element` + +JSX element representing the reviews card. diff --git a/docs/docs/auto-docs/components/GroupChatDetails/GroupChatDetails/README.md b/docs/docs/auto-docs/components/GroupChatDetails/GroupChatDetails/README.md new file mode 100644 index 0000000000..262c3f8919 --- /dev/null +++ b/docs/docs/auto-docs/components/GroupChatDetails/GroupChatDetails/README.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / components/GroupChatDetails/GroupChatDetails + +# components/GroupChatDetails/GroupChatDetails + +## Functions + +- [default](functions/default.md) diff --git a/docs/docs/auto-docs/components/GroupChatDetails/GroupChatDetails/functions/default.md b/docs/docs/auto-docs/components/GroupChatDetails/GroupChatDetails/functions/default.md new file mode 100644 index 0000000000..34b67d80b9 --- /dev/null +++ b/docs/docs/auto-docs/components/GroupChatDetails/GroupChatDetails/functions/default.md @@ -0,0 +1,25 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [components/GroupChatDetails/GroupChatDetails](../README.md) / default + +# Function: default() + +> **default**(`__namedParameters`): `JSX.Element` + +Defined in: [src/components/GroupChatDetails/GroupChatDetails.tsx:120](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/GroupChatDetails/GroupChatDetails.tsx#L120) + +Component for displaying and managing group chat details. + +## Parameters + +### \_\_namedParameters + +`InterfaceGoroupChatDetailsProps` + +## Returns + +`JSX.Element` + +The rendered component. diff --git a/docs/docs/auto-docs/components/HolidayCards/HolidayCard/README.md b/docs/docs/auto-docs/components/HolidayCards/HolidayCard/README.md new file mode 100644 index 0000000000..4bf1aa700e --- /dev/null +++ b/docs/docs/auto-docs/components/HolidayCards/HolidayCard/README.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / components/HolidayCards/HolidayCard + +# components/HolidayCards/HolidayCard + +## Functions + +- [default](functions/default.md) diff --git a/docs/docs/auto-docs/components/HolidayCards/HolidayCard/functions/default.md b/docs/docs/auto-docs/components/HolidayCards/HolidayCard/functions/default.md new file mode 100644 index 0000000000..9b90753681 --- /dev/null +++ b/docs/docs/auto-docs/components/HolidayCards/HolidayCard/functions/default.md @@ -0,0 +1,27 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [components/HolidayCards/HolidayCard](../README.md) / default + +# Function: default() + +> **default**(`props`): `Element` + +Defined in: [src/components/HolidayCards/HolidayCard.tsx:15](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/HolidayCards/HolidayCard.tsx#L15) + +Component that displays a card with the name of a holiday. + +## Parameters + +### props + +`InterfaceHolidayList` + +Contains the holidayName to be displayed on the card. + +## Returns + +`Element` + +JSX element representing a card with the holiday name. diff --git a/docs/docs/auto-docs/components/IconComponent/IconComponent/README.md b/docs/docs/auto-docs/components/IconComponent/IconComponent/README.md new file mode 100644 index 0000000000..925ecf21a9 --- /dev/null +++ b/docs/docs/auto-docs/components/IconComponent/IconComponent/README.md @@ -0,0 +1,15 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / components/IconComponent/IconComponent + +# components/IconComponent/IconComponent + +## Interfaces + +- [InterfaceIconComponent](interfaces/InterfaceIconComponent.md) + +## Functions + +- [default](functions/default.md) diff --git a/docs/docs/auto-docs/components/IconComponent/IconComponent/functions/default.md b/docs/docs/auto-docs/components/IconComponent/IconComponent/functions/default.md new file mode 100644 index 0000000000..5dd185d5e9 --- /dev/null +++ b/docs/docs/auto-docs/components/IconComponent/IconComponent/functions/default.md @@ -0,0 +1,27 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [components/IconComponent/IconComponent](../README.md) / default + +# Function: default() + +> **default**(`props`): `Element` + +Defined in: [src/components/IconComponent/IconComponent.tsx:39](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/IconComponent/IconComponent.tsx#L39) + +Renders an icon based on the provided name. + +## Parameters + +### props + +[`InterfaceIconComponent`](../interfaces/InterfaceIconComponent.md) + +Contains the name of the icon and optional styles (fill, height, width). + +## Returns + +`Element` + +JSX element representing the icon. diff --git a/docs/docs/auto-docs/components/IconComponent/IconComponent/interfaces/InterfaceIconComponent.md b/docs/docs/auto-docs/components/IconComponent/IconComponent/interfaces/InterfaceIconComponent.md new file mode 100644 index 0000000000..6c8592c073 --- /dev/null +++ b/docs/docs/auto-docs/components/IconComponent/IconComponent/interfaces/InterfaceIconComponent.md @@ -0,0 +1,41 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [components/IconComponent/IconComponent](../README.md) / InterfaceIconComponent + +# Interface: InterfaceIconComponent + +Defined in: [src/components/IconComponent/IconComponent.tsx:27](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/IconComponent/IconComponent.tsx#L27) + +## Properties + +### fill? + +> `optional` **fill**: `string` + +Defined in: [src/components/IconComponent/IconComponent.tsx:29](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/IconComponent/IconComponent.tsx#L29) + +*** + +### height? + +> `optional` **height**: `string` + +Defined in: [src/components/IconComponent/IconComponent.tsx:30](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/IconComponent/IconComponent.tsx#L30) + +*** + +### name + +> **name**: `string` + +Defined in: [src/components/IconComponent/IconComponent.tsx:28](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/IconComponent/IconComponent.tsx#L28) + +*** + +### width? + +> `optional` **width**: `string` + +Defined in: [src/components/IconComponent/IconComponent.tsx:31](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/IconComponent/IconComponent.tsx#L31) diff --git a/docs/docs/auto-docs/components/InfiniteScrollLoader/InfiniteScrollLoader/README.md b/docs/docs/auto-docs/components/InfiniteScrollLoader/InfiniteScrollLoader/README.md new file mode 100644 index 0000000000..3d896e2472 --- /dev/null +++ b/docs/docs/auto-docs/components/InfiniteScrollLoader/InfiniteScrollLoader/README.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / components/InfiniteScrollLoader/InfiniteScrollLoader + +# components/InfiniteScrollLoader/InfiniteScrollLoader + +## Functions + +- [default](functions/default.md) diff --git a/docs/docs/auto-docs/components/InfiniteScrollLoader/InfiniteScrollLoader/functions/default.md b/docs/docs/auto-docs/components/InfiniteScrollLoader/InfiniteScrollLoader/functions/default.md new file mode 100644 index 0000000000..a80af4bcd7 --- /dev/null +++ b/docs/docs/auto-docs/components/InfiniteScrollLoader/InfiniteScrollLoader/functions/default.md @@ -0,0 +1,17 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [components/InfiniteScrollLoader/InfiniteScrollLoader](../README.md) / default + +# Function: default() + +> **default**(): `Element` + +Defined in: [src/components/InfiniteScrollLoader/InfiniteScrollLoader.tsx:8](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/InfiniteScrollLoader/InfiniteScrollLoader.tsx#L8) + +A Loader for infinite scroll. + +## Returns + +`Element` diff --git a/docs/docs/auto-docs/components/LeftDrawer/LeftDrawer/README.md b/docs/docs/auto-docs/components/LeftDrawer/LeftDrawer/README.md new file mode 100644 index 0000000000..aa0d9e2266 --- /dev/null +++ b/docs/docs/auto-docs/components/LeftDrawer/LeftDrawer/README.md @@ -0,0 +1,15 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / components/LeftDrawer/LeftDrawer + +# components/LeftDrawer/LeftDrawer + +## Interfaces + +- [InterfaceLeftDrawerProps](interfaces/InterfaceLeftDrawerProps.md) + +## Functions + +- [default](functions/default.md) diff --git a/docs/docs/auto-docs/components/LeftDrawer/LeftDrawer/functions/default.md b/docs/docs/auto-docs/components/LeftDrawer/LeftDrawer/functions/default.md new file mode 100644 index 0000000000..53771d2f2c --- /dev/null +++ b/docs/docs/auto-docs/components/LeftDrawer/LeftDrawer/functions/default.md @@ -0,0 +1,25 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [components/LeftDrawer/LeftDrawer](../README.md) / default + +# Function: default() + +> **default**(`__namedParameters`): `Element` + +Defined in: [src/components/LeftDrawer/LeftDrawer.tsx:24](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/LeftDrawer/LeftDrawer.tsx#L24) + +LeftDrawer component for displaying navigation options. + +## Parameters + +### \_\_namedParameters + +[`InterfaceLeftDrawerProps`](../interfaces/InterfaceLeftDrawerProps.md) + +## Returns + +`Element` + +JSX element for the left navigation drawer. diff --git a/docs/docs/auto-docs/components/LeftDrawer/LeftDrawer/interfaces/InterfaceLeftDrawerProps.md b/docs/docs/auto-docs/components/LeftDrawer/LeftDrawer/interfaces/InterfaceLeftDrawerProps.md new file mode 100644 index 0000000000..2d2c589595 --- /dev/null +++ b/docs/docs/auto-docs/components/LeftDrawer/LeftDrawer/interfaces/InterfaceLeftDrawerProps.md @@ -0,0 +1,25 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [components/LeftDrawer/LeftDrawer](../README.md) / InterfaceLeftDrawerProps + +# Interface: InterfaceLeftDrawerProps + +Defined in: [src/components/LeftDrawer/LeftDrawer.tsx:12](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/LeftDrawer/LeftDrawer.tsx#L12) + +## Properties + +### hideDrawer + +> **hideDrawer**: `boolean` + +Defined in: [src/components/LeftDrawer/LeftDrawer.tsx:13](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/LeftDrawer/LeftDrawer.tsx#L13) + +*** + +### setHideDrawer + +> **setHideDrawer**: `Dispatch`\<`SetStateAction`\<`boolean`\>\> + +Defined in: [src/components/LeftDrawer/LeftDrawer.tsx:14](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/LeftDrawer/LeftDrawer.tsx#L14) diff --git a/docs/docs/auto-docs/components/LeftDrawerOrg/LeftDrawerOrg/README.md b/docs/docs/auto-docs/components/LeftDrawerOrg/LeftDrawerOrg/README.md new file mode 100644 index 0000000000..eba6903f72 --- /dev/null +++ b/docs/docs/auto-docs/components/LeftDrawerOrg/LeftDrawerOrg/README.md @@ -0,0 +1,15 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / components/LeftDrawerOrg/LeftDrawerOrg + +# components/LeftDrawerOrg/LeftDrawerOrg + +## Interfaces + +- [InterfaceLeftDrawerProps](interfaces/InterfaceLeftDrawerProps.md) + +## Functions + +- [default](functions/default.md) diff --git a/docs/docs/auto-docs/components/LeftDrawerOrg/LeftDrawerOrg/functions/default.md b/docs/docs/auto-docs/components/LeftDrawerOrg/LeftDrawerOrg/functions/default.md new file mode 100644 index 0000000000..803a97e623 --- /dev/null +++ b/docs/docs/auto-docs/components/LeftDrawerOrg/LeftDrawerOrg/functions/default.md @@ -0,0 +1,25 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [components/LeftDrawerOrg/LeftDrawerOrg](../README.md) / default + +# Function: default() + +> **default**(`__namedParameters`): `Element` + +Defined in: [src/components/LeftDrawerOrg/LeftDrawerOrg.tsx:35](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/LeftDrawerOrg/LeftDrawerOrg.tsx#L35) + +LeftDrawerOrg component for displaying organization details and navigation options. + +## Parameters + +### \_\_namedParameters + +[`InterfaceLeftDrawerProps`](../interfaces/InterfaceLeftDrawerProps.md) + +## Returns + +`Element` + +JSX element for the left navigation drawer with organization details. diff --git a/docs/docs/auto-docs/components/LeftDrawerOrg/LeftDrawerOrg/interfaces/InterfaceLeftDrawerProps.md b/docs/docs/auto-docs/components/LeftDrawerOrg/LeftDrawerOrg/interfaces/InterfaceLeftDrawerProps.md new file mode 100644 index 0000000000..c18c05a657 --- /dev/null +++ b/docs/docs/auto-docs/components/LeftDrawerOrg/LeftDrawerOrg/interfaces/InterfaceLeftDrawerProps.md @@ -0,0 +1,41 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [components/LeftDrawerOrg/LeftDrawerOrg](../README.md) / InterfaceLeftDrawerProps + +# Interface: InterfaceLeftDrawerProps + +Defined in: [src/components/LeftDrawerOrg/LeftDrawerOrg.tsx:18](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/LeftDrawerOrg/LeftDrawerOrg.tsx#L18) + +## Properties + +### hideDrawer + +> **hideDrawer**: `boolean` + +Defined in: [src/components/LeftDrawerOrg/LeftDrawerOrg.tsx:21](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/LeftDrawerOrg/LeftDrawerOrg.tsx#L21) + +*** + +### orgId + +> **orgId**: `string` + +Defined in: [src/components/LeftDrawerOrg/LeftDrawerOrg.tsx:19](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/LeftDrawerOrg/LeftDrawerOrg.tsx#L19) + +*** + +### setHideDrawer + +> **setHideDrawer**: `Dispatch`\<`SetStateAction`\<`boolean`\>\> + +Defined in: [src/components/LeftDrawerOrg/LeftDrawerOrg.tsx:22](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/LeftDrawerOrg/LeftDrawerOrg.tsx#L22) + +*** + +### targets + +> **targets**: [`TargetsType`](../../../../state/reducers/routesReducer/type-aliases/TargetsType.md)[] + +Defined in: [src/components/LeftDrawerOrg/LeftDrawerOrg.tsx:20](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/LeftDrawerOrg/LeftDrawerOrg.tsx#L20) diff --git a/docs/docs/auto-docs/components/Loader/Loader/README.md b/docs/docs/auto-docs/components/Loader/Loader/README.md new file mode 100644 index 0000000000..6121de4969 --- /dev/null +++ b/docs/docs/auto-docs/components/Loader/Loader/README.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / components/Loader/Loader + +# components/Loader/Loader + +## Functions + +- [default](functions/default.md) diff --git a/docs/docs/auto-docs/components/Loader/Loader/functions/default.md b/docs/docs/auto-docs/components/Loader/Loader/functions/default.md new file mode 100644 index 0000000000..385674dc48 --- /dev/null +++ b/docs/docs/auto-docs/components/Loader/Loader/functions/default.md @@ -0,0 +1,25 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [components/Loader/Loader](../README.md) / default + +# Function: default() + +> **default**(`props`): `Element` + +Defined in: [src/components/Loader/Loader.tsx:17](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/Loader/Loader.tsx#L17) + +Loader component for displaying a loading spinner. + +## Parameters + +### props + +`InterfaceLoaderProps` + +## Returns + +`Element` + +JSX element for a loading spinner. diff --git a/docs/docs/auto-docs/components/LoginPortalToggle/LoginPortalToggle/README.md b/docs/docs/auto-docs/components/LoginPortalToggle/LoginPortalToggle/README.md new file mode 100644 index 0000000000..e671f4ec8f --- /dev/null +++ b/docs/docs/auto-docs/components/LoginPortalToggle/LoginPortalToggle/README.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / components/LoginPortalToggle/LoginPortalToggle + +# components/LoginPortalToggle/LoginPortalToggle + +## Functions + +- [default](functions/default.md) diff --git a/docs/docs/auto-docs/components/LoginPortalToggle/LoginPortalToggle/functions/default.md b/docs/docs/auto-docs/components/LoginPortalToggle/LoginPortalToggle/functions/default.md new file mode 100644 index 0000000000..ab4b21034a --- /dev/null +++ b/docs/docs/auto-docs/components/LoginPortalToggle/LoginPortalToggle/functions/default.md @@ -0,0 +1,27 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [components/LoginPortalToggle/LoginPortalToggle](../README.md) / default + +# Function: default() + +> **default**(`onToggle`): `JSX.Element` + +Defined in: [src/components/LoginPortalToggle/LoginPortalToggle.tsx:18](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/LoginPortalToggle/LoginPortalToggle.tsx#L18) + +Component for toggling between admin and user login portals. + +## Parameters + +### onToggle + +`InterfaceLoginPortalToggleProps` + +Callback function to handle role changes ('admin' or 'user'). + +## Returns + +`JSX.Element` + +JSX element for login portal toggle. diff --git a/docs/docs/auto-docs/components/MemberDetail/EventsAttendedByMember/README.md b/docs/docs/auto-docs/components/MemberDetail/EventsAttendedByMember/README.md new file mode 100644 index 0000000000..f6d25bb237 --- /dev/null +++ b/docs/docs/auto-docs/components/MemberDetail/EventsAttendedByMember/README.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / components/MemberDetail/EventsAttendedByMember + +# components/MemberDetail/EventsAttendedByMember + +## Functions + +- [default](functions/default.md) diff --git a/docs/docs/auto-docs/components/MemberDetail/EventsAttendedByMember/functions/default.md b/docs/docs/auto-docs/components/MemberDetail/EventsAttendedByMember/functions/default.md new file mode 100644 index 0000000000..3e01857f95 --- /dev/null +++ b/docs/docs/auto-docs/components/MemberDetail/EventsAttendedByMember/functions/default.md @@ -0,0 +1,21 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [components/MemberDetail/EventsAttendedByMember](../README.md) / default + +# Function: default() + +> **default**(`__namedParameters`): `JSX.Element` + +Defined in: [src/components/MemberDetail/EventsAttendedByMember.tsx:15](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/MemberDetail/EventsAttendedByMember.tsx#L15) + +## Parameters + +### \_\_namedParameters + +`InterfaceEventsAttendedByMember` + +## Returns + +`JSX.Element` diff --git a/docs/docs/auto-docs/components/MemberDetail/EventsAttendedCardItem/README.md b/docs/docs/auto-docs/components/MemberDetail/EventsAttendedCardItem/README.md new file mode 100644 index 0000000000..54a651098f --- /dev/null +++ b/docs/docs/auto-docs/components/MemberDetail/EventsAttendedCardItem/README.md @@ -0,0 +1,15 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / components/MemberDetail/EventsAttendedCardItem + +# components/MemberDetail/EventsAttendedCardItem + +## Interfaces + +- [InterfaceCardItem](interfaces/InterfaceCardItem.md) + +## Functions + +- [default](functions/default.md) diff --git a/docs/docs/auto-docs/components/MemberDetail/EventsAttendedCardItem/functions/default.md b/docs/docs/auto-docs/components/MemberDetail/EventsAttendedCardItem/functions/default.md new file mode 100644 index 0000000000..f38767db70 --- /dev/null +++ b/docs/docs/auto-docs/components/MemberDetail/EventsAttendedCardItem/functions/default.md @@ -0,0 +1,21 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [components/MemberDetail/EventsAttendedCardItem](../README.md) / default + +# Function: default() + +> **default**(`props`): `Element` + +Defined in: [src/components/MemberDetail/EventsAttendedCardItem.tsx:26](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/MemberDetail/EventsAttendedCardItem.tsx#L26) + +## Parameters + +### props + +[`InterfaceCardItem`](../interfaces/InterfaceCardItem.md) + +## Returns + +`Element` diff --git a/docs/docs/auto-docs/components/MemberDetail/EventsAttendedCardItem/interfaces/InterfaceCardItem.md b/docs/docs/auto-docs/components/MemberDetail/EventsAttendedCardItem/interfaces/InterfaceCardItem.md new file mode 100644 index 0000000000..89a0a19c2e --- /dev/null +++ b/docs/docs/auto-docs/components/MemberDetail/EventsAttendedCardItem/interfaces/InterfaceCardItem.md @@ -0,0 +1,88 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [components/MemberDetail/EventsAttendedCardItem](../README.md) / InterfaceCardItem + +# Interface: InterfaceCardItem + +Defined in: [src/components/MemberDetail/EventsAttendedCardItem.tsx:16](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/MemberDetail/EventsAttendedCardItem.tsx#L16) + +Card component to display individual event attendance information +Shows event details including title, date, location and organization + +## Param + +Organization ID + +## Param + +Event ID + +## Param + +Event start date + +## Param + +Event title + +## Param + +Event location + +## Properties + +### creator? + +> `optional` **creator**: `string` + +Defined in: [src/components/MemberDetail/EventsAttendedCardItem.tsx:20](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/MemberDetail/EventsAttendedCardItem.tsx#L20) + +*** + +### eventId? + +> `optional` **eventId**: `string` + +Defined in: [src/components/MemberDetail/EventsAttendedCardItem.tsx:22](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/MemberDetail/EventsAttendedCardItem.tsx#L22) + +*** + +### location? + +> `optional` **location**: `string` + +Defined in: [src/components/MemberDetail/EventsAttendedCardItem.tsx:21](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/MemberDetail/EventsAttendedCardItem.tsx#L21) + +*** + +### orgId? + +> `optional` **orgId**: `string` + +Defined in: [src/components/MemberDetail/EventsAttendedCardItem.tsx:23](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/MemberDetail/EventsAttendedCardItem.tsx#L23) + +*** + +### startdate? + +> `optional` **startdate**: `string` + +Defined in: [src/components/MemberDetail/EventsAttendedCardItem.tsx:19](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/MemberDetail/EventsAttendedCardItem.tsx#L19) + +*** + +### time? + +> `optional` **time**: `string` + +Defined in: [src/components/MemberDetail/EventsAttendedCardItem.tsx:18](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/MemberDetail/EventsAttendedCardItem.tsx#L18) + +*** + +### title + +> **title**: `string` + +Defined in: [src/components/MemberDetail/EventsAttendedCardItem.tsx:17](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/MemberDetail/EventsAttendedCardItem.tsx#L17) diff --git a/docs/docs/auto-docs/components/MemberDetail/EventsAttendedMemberModal/README.md b/docs/docs/auto-docs/components/MemberDetail/EventsAttendedMemberModal/README.md new file mode 100644 index 0000000000..fb1b316570 --- /dev/null +++ b/docs/docs/auto-docs/components/MemberDetail/EventsAttendedMemberModal/README.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / components/MemberDetail/EventsAttendedMemberModal + +# components/MemberDetail/EventsAttendedMemberModal + +## Functions + +- [default](functions/default.md) diff --git a/docs/docs/auto-docs/components/MemberDetail/EventsAttendedMemberModal/functions/default.md b/docs/docs/auto-docs/components/MemberDetail/EventsAttendedMemberModal/functions/default.md new file mode 100644 index 0000000000..4df42f2b12 --- /dev/null +++ b/docs/docs/auto-docs/components/MemberDetail/EventsAttendedMemberModal/functions/default.md @@ -0,0 +1,31 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [components/MemberDetail/EventsAttendedMemberModal](../README.md) / default + +# Function: default() + +> **default**(`props`, `deprecatedLegacyContext`?): `ReactNode` + +Defined in: [src/components/MemberDetail/EventsAttendedMemberModal.tsx:39](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/MemberDetail/EventsAttendedMemberModal.tsx#L39) + +## Parameters + +### props + +`InterfaceEventsAttendedMemberModalProps` + +### deprecatedLegacyContext? + +`any` + +**Deprecated** + +**See** + +[React Docs](https://legacy.reactjs.org/docs/legacy-context.html#referencing-context-in-lifecycle-methods) + +## Returns + +`ReactNode` diff --git a/docs/docs/auto-docs/components/MemberDetail/customTableCell/README.md b/docs/docs/auto-docs/components/MemberDetail/customTableCell/README.md new file mode 100644 index 0000000000..b73565cc94 --- /dev/null +++ b/docs/docs/auto-docs/components/MemberDetail/customTableCell/README.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / components/MemberDetail/customTableCell + +# components/MemberDetail/customTableCell + +## Functions + +- [CustomTableCell](functions/CustomTableCell.md) diff --git a/docs/docs/auto-docs/components/MemberDetail/customTableCell/functions/CustomTableCell.md b/docs/docs/auto-docs/components/MemberDetail/customTableCell/functions/CustomTableCell.md new file mode 100644 index 0000000000..d1a36edfdc --- /dev/null +++ b/docs/docs/auto-docs/components/MemberDetail/customTableCell/functions/CustomTableCell.md @@ -0,0 +1,37 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [components/MemberDetail/customTableCell](../README.md) / CustomTableCell + +# Function: CustomTableCell() + +> **CustomTableCell**(`props`, `deprecatedLegacyContext`?): `ReactNode` + +Defined in: [src/components/MemberDetail/customTableCell.tsx:13](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/MemberDetail/customTableCell.tsx#L13) + +Custom table cell component to display event details + +## Parameters + +### props + +#### eventId + +`string` + +### deprecatedLegacyContext? + +`any` + +**Deprecated** + +**See** + +[React Docs](https://legacy.reactjs.org/docs/legacy-context.html#referencing-context-in-lifecycle-methods) + +## Returns + +`ReactNode` + +TableRow component with event information diff --git a/docs/docs/auto-docs/components/MemberRequestCard/MemberRequestCard/README.md b/docs/docs/auto-docs/components/MemberRequestCard/MemberRequestCard/README.md new file mode 100644 index 0000000000..0e2ff9bf92 --- /dev/null +++ b/docs/docs/auto-docs/components/MemberRequestCard/MemberRequestCard/README.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / components/MemberRequestCard/MemberRequestCard + +# components/MemberRequestCard/MemberRequestCard + +## Functions + +- [default](functions/default.md) diff --git a/docs/docs/auto-docs/components/MemberRequestCard/MemberRequestCard/functions/default.md b/docs/docs/auto-docs/components/MemberRequestCard/MemberRequestCard/functions/default.md new file mode 100644 index 0000000000..e262082586 --- /dev/null +++ b/docs/docs/auto-docs/components/MemberRequestCard/MemberRequestCard/functions/default.md @@ -0,0 +1,27 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [components/MemberRequestCard/MemberRequestCard](../README.md) / default + +# Function: default() + +> **default**(`props`): `JSX.Element` + +Defined in: [src/components/MemberRequestCard/MemberRequestCard.tsx:31](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/MemberRequestCard/MemberRequestCard.tsx#L31) + +Component for displaying and managing member requests. + +## Parameters + +### props + +`InterfaceMemberRequestCardProps` + +Properties for the member request card. + +## Returns + +`JSX.Element` + +JSX element for member request card. diff --git a/docs/docs/auto-docs/components/NotFound/NotFound/README.md b/docs/docs/auto-docs/components/NotFound/NotFound/README.md new file mode 100644 index 0000000000..5b37138d23 --- /dev/null +++ b/docs/docs/auto-docs/components/NotFound/NotFound/README.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / components/NotFound/NotFound + +# components/NotFound/NotFound + +## Functions + +- [default](functions/default.md) diff --git a/docs/docs/auto-docs/components/NotFound/NotFound/functions/default.md b/docs/docs/auto-docs/components/NotFound/NotFound/functions/default.md new file mode 100644 index 0000000000..4a4bbf74c1 --- /dev/null +++ b/docs/docs/auto-docs/components/NotFound/NotFound/functions/default.md @@ -0,0 +1,25 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [components/NotFound/NotFound](../README.md) / default + +# Function: default() + +> **default**(`props`): `JSX.Element` + +Defined in: [src/components/NotFound/NotFound.tsx:18](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/NotFound/NotFound.tsx#L18) + +Component to display a "Not Found" message. + +## Parameters + +### props + +`InterfaceNotFoundProps` + +## Returns + +`JSX.Element` + +JSX element for the "Not Found" page. diff --git a/docs/docs/auto-docs/components/OrgAdminListCard/OrgAdminListCard/README.md b/docs/docs/auto-docs/components/OrgAdminListCard/OrgAdminListCard/README.md new file mode 100644 index 0000000000..8ad3c4634a --- /dev/null +++ b/docs/docs/auto-docs/components/OrgAdminListCard/OrgAdminListCard/README.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / components/OrgAdminListCard/OrgAdminListCard + +# components/OrgAdminListCard/OrgAdminListCard + +## Functions + +- [default](functions/default.md) diff --git a/docs/docs/auto-docs/components/OrgAdminListCard/OrgAdminListCard/functions/default.md b/docs/docs/auto-docs/components/OrgAdminListCard/OrgAdminListCard/functions/default.md new file mode 100644 index 0000000000..7f9a7ee62b --- /dev/null +++ b/docs/docs/auto-docs/components/OrgAdminListCard/OrgAdminListCard/functions/default.md @@ -0,0 +1,25 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [components/OrgAdminListCard/OrgAdminListCard](../README.md) / default + +# Function: default() + +> **default**(`props`): `JSX.Element` + +Defined in: [src/components/OrgAdminListCard/OrgAdminListCard.tsx:22](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/OrgAdminListCard/OrgAdminListCard.tsx#L22) + +Component to confirm and handle the removal of an admin. + +## Parameters + +### props + +`InterfaceOrgPeopleListCardProps` + +## Returns + +`JSX.Element` + +JSX element for the removal confirmation modal. diff --git a/docs/docs/auto-docs/components/OrgContriCards/OrgContriCards/README.md b/docs/docs/auto-docs/components/OrgContriCards/OrgContriCards/README.md new file mode 100644 index 0000000000..6837afa7f4 --- /dev/null +++ b/docs/docs/auto-docs/components/OrgContriCards/OrgContriCards/README.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / components/OrgContriCards/OrgContriCards + +# components/OrgContriCards/OrgContriCards + +## Functions + +- [default](functions/default.md) diff --git a/docs/docs/auto-docs/components/OrgContriCards/OrgContriCards/functions/default.md b/docs/docs/auto-docs/components/OrgContriCards/OrgContriCards/functions/default.md new file mode 100644 index 0000000000..649341a4be --- /dev/null +++ b/docs/docs/auto-docs/components/OrgContriCards/OrgContriCards/functions/default.md @@ -0,0 +1,30 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [components/OrgContriCards/OrgContriCards](../README.md) / default + +# Function: default() + +> **default**(`props`): `JSX.Element` + +Defined in: [src/components/OrgContriCards/OrgContriCards.tsx:30](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/OrgContriCards/OrgContriCards.tsx#L30) + +Component to display organization contribution cards + +This component shows the contribution details of a user in a card format. It includes +the user's name, email, contribution date, transaction ID, and the contribution amount. + +## Parameters + +### props + +`InterfaceOrgContriCardsProps` + +The properties passed to the component + +## Returns + +`JSX.Element` + +JSX.Element representing a contribution card diff --git a/docs/docs/auto-docs/components/OrgDelete/OrgDelete/README.md b/docs/docs/auto-docs/components/OrgDelete/OrgDelete/README.md new file mode 100644 index 0000000000..61d0992c04 --- /dev/null +++ b/docs/docs/auto-docs/components/OrgDelete/OrgDelete/README.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / components/OrgDelete/OrgDelete + +# components/OrgDelete/OrgDelete + +## Functions + +- [default](functions/default.md) diff --git a/docs/docs/auto-docs/components/OrgDelete/OrgDelete/functions/default.md b/docs/docs/auto-docs/components/OrgDelete/OrgDelete/functions/default.md new file mode 100644 index 0000000000..b8c7cb7dbd --- /dev/null +++ b/docs/docs/auto-docs/components/OrgDelete/OrgDelete/functions/default.md @@ -0,0 +1,21 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [components/OrgDelete/OrgDelete](../README.md) / default + +# Function: default() + +> **default**(): `JSX.Element` + +Defined in: [src/components/OrgDelete/OrgDelete.tsx:11](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/OrgDelete/OrgDelete.tsx#L11) + +Component for displaying organization deletion message + +This component renders a message related to deleting an organization. + +## Returns + +`JSX.Element` + +JSX.Element representing the organization deletion message diff --git a/docs/docs/auto-docs/components/OrgListCard/OrgListCard/README.md b/docs/docs/auto-docs/components/OrgListCard/OrgListCard/README.md new file mode 100644 index 0000000000..48cc0da29f --- /dev/null +++ b/docs/docs/auto-docs/components/OrgListCard/OrgListCard/README.md @@ -0,0 +1,15 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / components/OrgListCard/OrgListCard + +# components/OrgListCard/OrgListCard + +## Interfaces + +- [InterfaceOrgListCardProps](interfaces/InterfaceOrgListCardProps.md) + +## Functions + +- [default](functions/default.md) diff --git a/docs/docs/auto-docs/components/OrgListCard/OrgListCard/functions/default.md b/docs/docs/auto-docs/components/OrgListCard/OrgListCard/functions/default.md new file mode 100644 index 0000000000..46ed954f84 --- /dev/null +++ b/docs/docs/auto-docs/components/OrgListCard/OrgListCard/functions/default.md @@ -0,0 +1,31 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [components/OrgListCard/OrgListCard](../README.md) / default + +# Function: default() + +> **default**(`props`): `JSX.Element` + +Defined in: [src/components/OrgListCard/OrgListCard.tsx:38](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/OrgListCard/OrgListCard.tsx#L38) + +Component for displaying a list card for an organization + +This component renders a card that displays information about an organization, +including its name, address, members, and admins. It also provides a button +to manage the organization, navigating to the organization's dashboard. + +## Parameters + +### props + +[`InterfaceOrgListCardProps`](../interfaces/InterfaceOrgListCardProps.md) + +The properties passed to the component + +## Returns + +`JSX.Element` + +JSX.Element representing an organization list card diff --git a/docs/docs/auto-docs/components/OrgListCard/OrgListCard/interfaces/InterfaceOrgListCardProps.md b/docs/docs/auto-docs/components/OrgListCard/OrgListCard/interfaces/InterfaceOrgListCardProps.md new file mode 100644 index 0000000000..954e360c36 --- /dev/null +++ b/docs/docs/auto-docs/components/OrgListCard/OrgListCard/interfaces/InterfaceOrgListCardProps.md @@ -0,0 +1,19 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [components/OrgListCard/OrgListCard](../README.md) / InterfaceOrgListCardProps + +# Interface: InterfaceOrgListCardProps + +Defined in: [src/components/OrgListCard/OrgListCard.tsx:24](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/OrgListCard/OrgListCard.tsx#L24) + +Props for the OrgListCard component + +## Properties + +### data + +> **data**: [`InterfaceOrgConnectionInfoType`](../../../../utils/interfaces/interfaces/InterfaceOrgConnectionInfoType.md) + +Defined in: [src/components/OrgListCard/OrgListCard.tsx:25](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/OrgListCard/OrgListCard.tsx#L25) diff --git a/docs/docs/auto-docs/components/OrgListCard/TruncatedText/README.md b/docs/docs/auto-docs/components/OrgListCard/TruncatedText/README.md new file mode 100644 index 0000000000..fac93a67cb --- /dev/null +++ b/docs/docs/auto-docs/components/OrgListCard/TruncatedText/README.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / components/OrgListCard/TruncatedText + +# components/OrgListCard/TruncatedText + +## Functions + +- [default](functions/default.md) diff --git a/docs/docs/auto-docs/components/OrgListCard/TruncatedText/functions/default.md b/docs/docs/auto-docs/components/OrgListCard/TruncatedText/functions/default.md new file mode 100644 index 0000000000..f658cb685f --- /dev/null +++ b/docs/docs/auto-docs/components/OrgListCard/TruncatedText/functions/default.md @@ -0,0 +1,47 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [components/OrgListCard/TruncatedText](../README.md) / default + +# Function: default() + +> **default**(`props`, `deprecatedLegacyContext`?): `ReactNode` + +Defined in: [src/components/OrgListCard/TruncatedText.tsx:31](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/OrgListCard/TruncatedText.tsx#L31) + +A React functional component that displays text and truncates it with an ellipsis (`...`) +if the text exceeds the available width or the `maxWidthOverride` value. + +The component adjusts the truncation dynamically based on the available space +or the `maxWidthOverride` value. It also listens for window resize events to reapply truncation. + +## Parameters + +### props + +`InterfaceTruncatedTextProps` + +The props for the component. + +### deprecatedLegacyContext? + +`any` + +**Deprecated** + +**See** + +[React Docs](https://legacy.reactjs.org/docs/legacy-context.html#referencing-context-in-lifecycle-methods) + +## Returns + +`ReactNode` + +A heading element (`
`) containing the truncated or full text. + +## Example + +```tsx + +``` diff --git a/docs/docs/auto-docs/components/OrgListCard/useDebounce/README.md b/docs/docs/auto-docs/components/OrgListCard/useDebounce/README.md new file mode 100644 index 0000000000..3cbd337a25 --- /dev/null +++ b/docs/docs/auto-docs/components/OrgListCard/useDebounce/README.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / components/OrgListCard/useDebounce + +# components/OrgListCard/useDebounce + +## Functions + +- [default](functions/default.md) diff --git a/docs/docs/auto-docs/components/OrgListCard/useDebounce/functions/default.md b/docs/docs/auto-docs/components/OrgListCard/useDebounce/functions/default.md new file mode 100644 index 0000000000..6a021dd012 --- /dev/null +++ b/docs/docs/auto-docs/components/OrgListCard/useDebounce/functions/default.md @@ -0,0 +1,61 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [components/OrgListCard/useDebounce](../README.md) / default + +# Function: default() + +> **default**\<`T`\>(`callback`, `delay`): `object` + +Defined in: [src/components/OrgListCard/useDebounce.tsx:12](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/OrgListCard/useDebounce.tsx#L12) + +A custom React hook for debouncing a callback function. +It delays the execution of the callback until after a specified delay has elapsed +since the last time the debounced function was invoked. + +## Type Parameters + +• **T** *extends* (...`args`) => `void` + +## Parameters + +### callback + +`T` + +The function to debounce. + +### delay + +`number` + +The delay in milliseconds to wait before invoking the callback. + +## Returns + +`object` + +An object with the `debouncedCallback` function and a `cancel` method to clear the timeout. + +### cancel() + +> **cancel**: () => `void` + +#### Returns + +`void` + +### debouncedCallback() + +> **debouncedCallback**: (...`args`) => `void` + +#### Parameters + +##### args + +...`Parameters`\<`T`\> + +#### Returns + +`void` diff --git a/docs/docs/auto-docs/components/OrgPeopleListCard/OrgPeopleListCard/README.md b/docs/docs/auto-docs/components/OrgPeopleListCard/OrgPeopleListCard/README.md new file mode 100644 index 0000000000..bc89def863 --- /dev/null +++ b/docs/docs/auto-docs/components/OrgPeopleListCard/OrgPeopleListCard/README.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / components/OrgPeopleListCard/OrgPeopleListCard + +# components/OrgPeopleListCard/OrgPeopleListCard + +## Functions + +- [default](functions/default.md) diff --git a/docs/docs/auto-docs/components/OrgPeopleListCard/OrgPeopleListCard/functions/default.md b/docs/docs/auto-docs/components/OrgPeopleListCard/OrgPeopleListCard/functions/default.md new file mode 100644 index 0000000000..21d159296c --- /dev/null +++ b/docs/docs/auto-docs/components/OrgPeopleListCard/OrgPeopleListCard/functions/default.md @@ -0,0 +1,30 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [components/OrgPeopleListCard/OrgPeopleListCard](../README.md) / default + +# Function: default() + +> **default**(`props`): `JSX.Element` + +Defined in: [src/components/OrgPeopleListCard/OrgPeopleListCard.tsx:30](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/OrgPeopleListCard/OrgPeopleListCard.tsx#L30) + +Component for displaying a modal to remove a member from an organization + +This component shows a modal that confirms the removal of a member from the organization. +It performs the removal action and displays success or error messages. + +## Parameters + +### props + +`InterfaceOrgPeopleListCardProps` + +The properties passed to the component + +## Returns + +`JSX.Element` + +JSX.Element representing the organization people list card modal diff --git a/docs/docs/auto-docs/components/OrgPostCard/DeletePostModal/README.md b/docs/docs/auto-docs/components/OrgPostCard/DeletePostModal/README.md new file mode 100644 index 0000000000..e9fcbcd946 --- /dev/null +++ b/docs/docs/auto-docs/components/OrgPostCard/DeletePostModal/README.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / components/OrgPostCard/DeletePostModal + +# components/OrgPostCard/DeletePostModal + +## Functions + +- [default](functions/default.md) diff --git a/docs/docs/auto-docs/components/OrgPostCard/DeletePostModal/functions/default.md b/docs/docs/auto-docs/components/OrgPostCard/DeletePostModal/functions/default.md new file mode 100644 index 0000000000..dfa8cf0c2b --- /dev/null +++ b/docs/docs/auto-docs/components/OrgPostCard/DeletePostModal/functions/default.md @@ -0,0 +1,31 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [components/OrgPostCard/DeletePostModal](../README.md) / default + +# Function: default() + +> **default**(`props`, `deprecatedLegacyContext`?): `ReactNode` + +Defined in: [src/components/OrgPostCard/DeletePostModal.tsx:20](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/OrgPostCard/DeletePostModal.tsx#L20) + +## Parameters + +### props + +`InterfaceDeletePostModalProps` + +### deprecatedLegacyContext? + +`any` + +**Deprecated** + +**See** + +[React Docs](https://legacy.reactjs.org/docs/legacy-context.html#referencing-context-in-lifecycle-methods) + +## Returns + +`ReactNode` diff --git a/docs/docs/auto-docs/components/OrgPostCard/OrgPostCard/README.md b/docs/docs/auto-docs/components/OrgPostCard/OrgPostCard/README.md new file mode 100644 index 0000000000..697b44c4da --- /dev/null +++ b/docs/docs/auto-docs/components/OrgPostCard/OrgPostCard/README.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / components/OrgPostCard/OrgPostCard + +# components/OrgPostCard/OrgPostCard + +## Functions + +- [default](functions/default.md) diff --git a/docs/docs/auto-docs/components/OrgPostCard/OrgPostCard/functions/default.md b/docs/docs/auto-docs/components/OrgPostCard/OrgPostCard/functions/default.md new file mode 100644 index 0000000000..8967f835c5 --- /dev/null +++ b/docs/docs/auto-docs/components/OrgPostCard/OrgPostCard/functions/default.md @@ -0,0 +1,21 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [components/OrgPostCard/OrgPostCard](../README.md) / default + +# Function: default() + +> **default**(`props`): `JSX.Element` + +Defined in: [src/components/OrgPostCard/OrgPostCard.tsx:29](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/OrgPostCard/OrgPostCard.tsx#L29) + +## Parameters + +### props + +`InterfaceOrgPostCardProps` + +## Returns + +`JSX.Element` diff --git a/docs/docs/auto-docs/components/OrgSettings/ActionItemCategories/CategoryModal/README.md b/docs/docs/auto-docs/components/OrgSettings/ActionItemCategories/CategoryModal/README.md new file mode 100644 index 0000000000..25ff96a2bb --- /dev/null +++ b/docs/docs/auto-docs/components/OrgSettings/ActionItemCategories/CategoryModal/README.md @@ -0,0 +1,15 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / components/OrgSettings/ActionItemCategories/CategoryModal + +# components/OrgSettings/ActionItemCategories/CategoryModal + +## Interfaces + +- [InterfaceActionItemCategoryModal](interfaces/InterfaceActionItemCategoryModal.md) + +## Functions + +- [default](functions/default.md) diff --git a/docs/docs/auto-docs/components/OrgSettings/ActionItemCategories/CategoryModal/functions/default.md b/docs/docs/auto-docs/components/OrgSettings/ActionItemCategories/CategoryModal/functions/default.md new file mode 100644 index 0000000000..481e5bb2db --- /dev/null +++ b/docs/docs/auto-docs/components/OrgSettings/ActionItemCategories/CategoryModal/functions/default.md @@ -0,0 +1,37 @@ +[**talawa-admin**](../../../../../README.md) + +*** + +[talawa-admin](../../../../../modules.md) / [components/OrgSettings/ActionItemCategories/CategoryModal](../README.md) / default + +# Function: default() + +> **default**(`props`, `deprecatedLegacyContext`?): `ReactNode` + +Defined in: [src/components/OrgSettings/ActionItemCategories/CategoryModal.tsx:41](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/OrgSettings/ActionItemCategories/CategoryModal.tsx#L41) + +A modal component for creating and editing action item categories. + +## Parameters + +### props + +[`InterfaceActionItemCategoryModal`](../interfaces/InterfaceActionItemCategoryModal.md) + +The properties passed to the component. + +### deprecatedLegacyContext? + +`any` + +**Deprecated** + +**See** + +[React Docs](https://legacy.reactjs.org/docs/legacy-context.html#referencing-context-in-lifecycle-methods) + +## Returns + +`ReactNode` + +The `CategoryModal` component. diff --git a/docs/docs/auto-docs/components/OrgSettings/ActionItemCategories/CategoryModal/interfaces/InterfaceActionItemCategoryModal.md b/docs/docs/auto-docs/components/OrgSettings/ActionItemCategories/CategoryModal/interfaces/InterfaceActionItemCategoryModal.md new file mode 100644 index 0000000000..2247a87312 --- /dev/null +++ b/docs/docs/auto-docs/components/OrgSettings/ActionItemCategories/CategoryModal/interfaces/InterfaceActionItemCategoryModal.md @@ -0,0 +1,74 @@ +[**talawa-admin**](../../../../../README.md) + +*** + +[talawa-admin](../../../../../modules.md) / [components/OrgSettings/ActionItemCategories/CategoryModal](../README.md) / InterfaceActionItemCategoryModal + +# Interface: InterfaceActionItemCategoryModal + +Defined in: [src/components/OrgSettings/ActionItemCategories/CategoryModal.tsx:26](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/OrgSettings/ActionItemCategories/CategoryModal.tsx#L26) + +Props for the `CategoryModal` component. + +isOpen - The state of the modal. +hide - The function to hide the modal. +refetchCategories - The function to refetch the categories. +orgId - The organization ID. +category - The category to be edited. +mode - The mode of the modal. + +## Properties + +### category + +> **category**: [`InterfaceActionItemCategoryInfo`](../../../../../utils/interfaces/interfaces/InterfaceActionItemCategoryInfo.md) + +Defined in: [src/components/OrgSettings/ActionItemCategories/CategoryModal.tsx:31](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/OrgSettings/ActionItemCategories/CategoryModal.tsx#L31) + +*** + +### hide() + +> **hide**: () => `void` + +Defined in: [src/components/OrgSettings/ActionItemCategories/CategoryModal.tsx:28](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/OrgSettings/ActionItemCategories/CategoryModal.tsx#L28) + +#### Returns + +`void` + +*** + +### isOpen + +> **isOpen**: `boolean` + +Defined in: [src/components/OrgSettings/ActionItemCategories/CategoryModal.tsx:27](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/OrgSettings/ActionItemCategories/CategoryModal.tsx#L27) + +*** + +### mode + +> **mode**: `"edit"` \| `"create"` + +Defined in: [src/components/OrgSettings/ActionItemCategories/CategoryModal.tsx:32](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/OrgSettings/ActionItemCategories/CategoryModal.tsx#L32) + +*** + +### orgId + +> **orgId**: `string` + +Defined in: [src/components/OrgSettings/ActionItemCategories/CategoryModal.tsx:30](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/OrgSettings/ActionItemCategories/CategoryModal.tsx#L30) + +*** + +### refetchCategories() + +> **refetchCategories**: () => `void` + +Defined in: [src/components/OrgSettings/ActionItemCategories/CategoryModal.tsx:29](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/OrgSettings/ActionItemCategories/CategoryModal.tsx#L29) + +#### Returns + +`void` diff --git a/docs/docs/auto-docs/components/OrgSettings/ActionItemCategories/OrgActionItemCategories/README.md b/docs/docs/auto-docs/components/OrgSettings/ActionItemCategories/OrgActionItemCategories/README.md new file mode 100644 index 0000000000..9fbcade10c --- /dev/null +++ b/docs/docs/auto-docs/components/OrgSettings/ActionItemCategories/OrgActionItemCategories/README.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / components/OrgSettings/ActionItemCategories/OrgActionItemCategories + +# components/OrgSettings/ActionItemCategories/OrgActionItemCategories + +## Functions + +- [default](functions/default.md) diff --git a/docs/docs/auto-docs/components/OrgSettings/ActionItemCategories/OrgActionItemCategories/functions/default.md b/docs/docs/auto-docs/components/OrgSettings/ActionItemCategories/OrgActionItemCategories/functions/default.md new file mode 100644 index 0000000000..be96270f22 --- /dev/null +++ b/docs/docs/auto-docs/components/OrgSettings/ActionItemCategories/OrgActionItemCategories/functions/default.md @@ -0,0 +1,34 @@ +[**talawa-admin**](../../../../../README.md) + +*** + +[talawa-admin](../../../../../modules.md) / [components/OrgSettings/ActionItemCategories/OrgActionItemCategories](../README.md) / default + +# Function: default() + +> **default**(`props`, `deprecatedLegacyContext`?): `ReactNode` + +Defined in: [src/components/OrgSettings/ActionItemCategories/OrgActionItemCategories.tsx:61](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/OrgSettings/ActionItemCategories/OrgActionItemCategories.tsx#L61) + +Represents the component for managing organization action item categories. +This component allows creating, updating, enabling, and disabling action item categories. + +## Parameters + +### props + +`InterfaceActionItemCategoryProps` + +### deprecatedLegacyContext? + +`any` + +**Deprecated** + +**See** + +[React Docs](https://legacy.reactjs.org/docs/legacy-context.html#referencing-context-in-lifecycle-methods) + +## Returns + +`ReactNode` diff --git a/docs/docs/auto-docs/components/OrgSettings/ActionItemCategories/OrgActionItemCategoryMocks/README.md b/docs/docs/auto-docs/components/OrgSettings/ActionItemCategories/OrgActionItemCategoryMocks/README.md new file mode 100644 index 0000000000..7141fc79d4 --- /dev/null +++ b/docs/docs/auto-docs/components/OrgSettings/ActionItemCategories/OrgActionItemCategoryMocks/README.md @@ -0,0 +1,13 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / components/OrgSettings/ActionItemCategories/OrgActionItemCategoryMocks + +# components/OrgSettings/ActionItemCategories/OrgActionItemCategoryMocks + +## Variables + +- [MOCKS](variables/MOCKS.md) +- [MOCKS\_EMPTY](variables/MOCKS_EMPTY.md) +- [MOCKS\_ERROR](variables/MOCKS_ERROR.md) diff --git a/docs/docs/auto-docs/components/OrgSettings/ActionItemCategories/OrgActionItemCategoryMocks/variables/MOCKS.md b/docs/docs/auto-docs/components/OrgSettings/ActionItemCategories/OrgActionItemCategoryMocks/variables/MOCKS.md new file mode 100644 index 0000000000..08f03dfa49 --- /dev/null +++ b/docs/docs/auto-docs/components/OrgSettings/ActionItemCategories/OrgActionItemCategoryMocks/variables/MOCKS.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../../../README.md) + +*** + +[talawa-admin](../../../../../modules.md) / [components/OrgSettings/ActionItemCategories/OrgActionItemCategoryMocks](../README.md) / MOCKS + +# Variable: MOCKS + +> `const` **MOCKS**: (\{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `actionItemCategoryId`: `undefined`; `isDisabled`: `undefined`; `name`: `undefined`; `orderBy`: `string`; `organizationId`: `string`; `where`: \{ `is_disabled`: `undefined`; `name_contains`: `string`; \}; \}; \}; `result`: \{ `data`: \{ `actionItemCategoriesByOrganization`: `object`[]; `createActionItemCategory`: `undefined`; `updateActionItemCategory`: `undefined`; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `actionItemCategoryId`: `undefined`; `isDisabled`: `undefined`; `name`: `undefined`; `orderBy`: `string`; `organizationId`: `string`; `where`: \{ `is_disabled`: `boolean`; `name_contains`: `string`; \}; \}; \}; `result`: \{ `data`: \{ `actionItemCategoriesByOrganization`: `object`[]; `createActionItemCategory`: `undefined`; `updateActionItemCategory`: `undefined`; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `actionItemCategoryId`: `undefined`; `isDisabled`: `boolean`; `name`: `string`; `orderBy`: `undefined`; `organizationId`: `string`; `where`: `undefined`; \}; \}; `result`: \{ `data`: \{ `actionItemCategoriesByOrganization`: `undefined`; `createActionItemCategory`: \{ `_id`: `string`; \}; `updateActionItemCategory`: `undefined`; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `actionItemCategoryId`: `string`; `isDisabled`: `boolean`; `name`: `string`; `orderBy`: `undefined`; `organizationId`: `undefined`; `where`: `undefined`; \}; \}; `result`: \{ `data`: \{ `actionItemCategoriesByOrganization`: `undefined`; `createActionItemCategory`: `undefined`; `updateActionItemCategory`: \{ `_id`: `string`; \}; \}; \}; \})[] + +Defined in: [src/components/OrgSettings/ActionItemCategories/OrgActionItemCategoryMocks.ts:8](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/OrgSettings/ActionItemCategories/OrgActionItemCategoryMocks.ts#L8) diff --git a/docs/docs/auto-docs/components/OrgSettings/ActionItemCategories/OrgActionItemCategoryMocks/variables/MOCKS_EMPTY.md b/docs/docs/auto-docs/components/OrgSettings/ActionItemCategories/OrgActionItemCategoryMocks/variables/MOCKS_EMPTY.md new file mode 100644 index 0000000000..fa882350bc --- /dev/null +++ b/docs/docs/auto-docs/components/OrgSettings/ActionItemCategories/OrgActionItemCategoryMocks/variables/MOCKS_EMPTY.md @@ -0,0 +1,53 @@ +[**talawa-admin**](../../../../../README.md) + +*** + +[talawa-admin](../../../../../modules.md) / [components/OrgSettings/ActionItemCategories/OrgActionItemCategoryMocks](../README.md) / MOCKS\_EMPTY + +# Variable: MOCKS\_EMPTY + +> `const` **MOCKS\_EMPTY**: `object`[] + +Defined in: [src/components/OrgSettings/ActionItemCategories/OrgActionItemCategoryMocks.ts:236](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/OrgSettings/ActionItemCategories/OrgActionItemCategoryMocks.ts#L236) + +## Type declaration + +### request + +> **request**: `object` + +#### request.query + +> **query**: `DocumentNode` = `ACTION_ITEM_CATEGORY_LIST` + +#### request.variables + +> **variables**: `object` + +#### request.variables.orderBy + +> **orderBy**: `string` = `'createdAt_DESC'` + +#### request.variables.organizationId + +> **organizationId**: `string` = `'orgId'` + +#### request.variables.where + +> **where**: `object` + +#### request.variables.where.name\_contains + +> **name\_contains**: `string` = `''` + +### result + +> **result**: `object` + +#### result.data + +> **data**: `object` + +#### result.data.actionItemCategoriesByOrganization + +> **actionItemCategoriesByOrganization**: `any`[] = `[]` diff --git a/docs/docs/auto-docs/components/OrgSettings/ActionItemCategories/OrgActionItemCategoryMocks/variables/MOCKS_ERROR.md b/docs/docs/auto-docs/components/OrgSettings/ActionItemCategories/OrgActionItemCategoryMocks/variables/MOCKS_ERROR.md new file mode 100644 index 0000000000..83ad60ebe5 --- /dev/null +++ b/docs/docs/auto-docs/components/OrgSettings/ActionItemCategories/OrgActionItemCategoryMocks/variables/MOCKS_ERROR.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../../../README.md) + +*** + +[talawa-admin](../../../../../modules.md) / [components/OrgSettings/ActionItemCategories/OrgActionItemCategoryMocks](../README.md) / MOCKS\_ERROR + +# Variable: MOCKS\_ERROR + +> `const` **MOCKS\_ERROR**: (\{ `error`: `Error`; `request`: \{ `query`: `DocumentNode`; `variables`: \{ `actionItemCategoryId`: `undefined`; `isDisabled`: `undefined`; `name`: `undefined`; `orderBy`: `string`; `organizationId`: `string`; `where`: \{ `name_contains`: `string`; \}; \}; \}; \} \| \{ `error`: `Error`; `request`: \{ `query`: `DocumentNode`; `variables`: \{ `actionItemCategoryId`: `undefined`; `isDisabled`: `boolean`; `name`: `string`; `orderBy`: `undefined`; `organizationId`: `string`; `where`: `undefined`; \}; \}; \} \| \{ `error`: `Error`; `request`: \{ `query`: `DocumentNode`; `variables`: \{ `actionItemCategoryId`: `string`; `isDisabled`: `boolean`; `name`: `string`; `orderBy`: `undefined`; `organizationId`: `undefined`; `where`: `undefined`; \}; \}; \})[] + +Defined in: [src/components/OrgSettings/ActionItemCategories/OrgActionItemCategoryMocks.ts:254](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/OrgSettings/ActionItemCategories/OrgActionItemCategoryMocks.ts#L254) diff --git a/docs/docs/auto-docs/components/OrgSettings/AgendaItemCategories/AgendaCategoryCreateModal/README.md b/docs/docs/auto-docs/components/OrgSettings/AgendaItemCategories/AgendaCategoryCreateModal/README.md new file mode 100644 index 0000000000..93cb2dcfd5 --- /dev/null +++ b/docs/docs/auto-docs/components/OrgSettings/AgendaItemCategories/AgendaCategoryCreateModal/README.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / components/OrgSettings/AgendaItemCategories/AgendaCategoryCreateModal + +# components/OrgSettings/AgendaItemCategories/AgendaCategoryCreateModal + +## Functions + +- [default](functions/default.md) diff --git a/docs/docs/auto-docs/components/OrgSettings/AgendaItemCategories/AgendaCategoryCreateModal/functions/default.md b/docs/docs/auto-docs/components/OrgSettings/AgendaItemCategories/AgendaCategoryCreateModal/functions/default.md new file mode 100644 index 0000000000..141d99e508 --- /dev/null +++ b/docs/docs/auto-docs/components/OrgSettings/AgendaItemCategories/AgendaCategoryCreateModal/functions/default.md @@ -0,0 +1,35 @@ +[**talawa-admin**](../../../../../README.md) + +*** + +[talawa-admin](../../../../../modules.md) / [components/OrgSettings/AgendaItemCategories/AgendaCategoryCreateModal](../README.md) / default + +# Function: default() + +> **default**(`props`, `deprecatedLegacyContext`?): `ReactNode` + +Defined in: [src/components/OrgSettings/AgendaItemCategories/AgendaCategoryCreateModal.tsx:38](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/OrgSettings/AgendaItemCategories/AgendaCategoryCreateModal.tsx#L38) + +AgendaCategoryCreateModal component is used to create the agenda category details like name, description + +## Parameters + +### props + +`InterfaceAgendaCategoryCreateModalProps` + +### deprecatedLegacyContext? + +`any` + +**Deprecated** + +**See** + +[React Docs](https://legacy.reactjs.org/docs/legacy-context.html#referencing-context-in-lifecycle-methods) + +## Returns + +`ReactNode` + +returns the AgendaCategoryCreateModal component diff --git a/docs/docs/auto-docs/components/OrgSettings/AgendaItemCategories/AgendaCategoryDeleteModal/README.md b/docs/docs/auto-docs/components/OrgSettings/AgendaItemCategories/AgendaCategoryDeleteModal/README.md new file mode 100644 index 0000000000..206ecdb910 --- /dev/null +++ b/docs/docs/auto-docs/components/OrgSettings/AgendaItemCategories/AgendaCategoryDeleteModal/README.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / components/OrgSettings/AgendaItemCategories/AgendaCategoryDeleteModal + +# components/OrgSettings/AgendaItemCategories/AgendaCategoryDeleteModal + +## Functions + +- [default](functions/default.md) diff --git a/docs/docs/auto-docs/components/OrgSettings/AgendaItemCategories/AgendaCategoryDeleteModal/functions/default.md b/docs/docs/auto-docs/components/OrgSettings/AgendaItemCategories/AgendaCategoryDeleteModal/functions/default.md new file mode 100644 index 0000000000..45570c51d7 --- /dev/null +++ b/docs/docs/auto-docs/components/OrgSettings/AgendaItemCategories/AgendaCategoryDeleteModal/functions/default.md @@ -0,0 +1,35 @@ +[**talawa-admin**](../../../../../README.md) + +*** + +[talawa-admin](../../../../../modules.md) / [components/OrgSettings/AgendaItemCategories/AgendaCategoryDeleteModal](../README.md) / default + +# Function: default() + +> **default**(`props`, `deprecatedLegacyContext`?): `ReactNode` + +Defined in: [src/components/OrgSettings/AgendaItemCategories/AgendaCategoryDeleteModal.tsx:25](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/OrgSettings/AgendaItemCategories/AgendaCategoryDeleteModal.tsx#L25) + +AgendaCategoryDeleteModal component is used to delete the agenda category + +## Parameters + +### props + +`InterfaceAgendaCategoryDeleteModalProps` + +### deprecatedLegacyContext? + +`any` + +**Deprecated** + +**See** + +[React Docs](https://legacy.reactjs.org/docs/legacy-context.html#referencing-context-in-lifecycle-methods) + +## Returns + +`ReactNode` + +returns the AgendaCategoryDeleteModal component diff --git a/docs/docs/auto-docs/components/OrgSettings/AgendaItemCategories/AgendaCategoryPreviewModal/README.md b/docs/docs/auto-docs/components/OrgSettings/AgendaItemCategories/AgendaCategoryPreviewModal/README.md new file mode 100644 index 0000000000..b757415768 --- /dev/null +++ b/docs/docs/auto-docs/components/OrgSettings/AgendaItemCategories/AgendaCategoryPreviewModal/README.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / components/OrgSettings/AgendaItemCategories/AgendaCategoryPreviewModal + +# components/OrgSettings/AgendaItemCategories/AgendaCategoryPreviewModal + +## Functions + +- [default](functions/default.md) diff --git a/docs/docs/auto-docs/components/OrgSettings/AgendaItemCategories/AgendaCategoryPreviewModal/functions/default.md b/docs/docs/auto-docs/components/OrgSettings/AgendaItemCategories/AgendaCategoryPreviewModal/functions/default.md new file mode 100644 index 0000000000..5425268a99 --- /dev/null +++ b/docs/docs/auto-docs/components/OrgSettings/AgendaItemCategories/AgendaCategoryPreviewModal/functions/default.md @@ -0,0 +1,35 @@ +[**talawa-admin**](../../../../../README.md) + +*** + +[talawa-admin](../../../../../modules.md) / [components/OrgSettings/AgendaItemCategories/AgendaCategoryPreviewModal](../README.md) / default + +# Function: default() + +> **default**(`props`, `deprecatedLegacyContext`?): `ReactNode` + +Defined in: [src/components/OrgSettings/AgendaItemCategories/AgendaCategoryPreviewModal.tsx:38](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/OrgSettings/AgendaItemCategories/AgendaCategoryPreviewModal.tsx#L38) + +AgendaCategoryPreviewModal component is used to preview the agenda category details like name, description, createdBy + +## Parameters + +### props + +`InterfaceAgendaCategoryPreviewModalProps` + +### deprecatedLegacyContext? + +`any` + +**Deprecated** + +**See** + +[React Docs](https://legacy.reactjs.org/docs/legacy-context.html#referencing-context-in-lifecycle-methods) + +## Returns + +`ReactNode` + +returns the AgendaCategoryPreviewModal component diff --git a/docs/docs/auto-docs/components/OrgSettings/AgendaItemCategories/AgendaCategoryUpdateModal/README.md b/docs/docs/auto-docs/components/OrgSettings/AgendaItemCategories/AgendaCategoryUpdateModal/README.md new file mode 100644 index 0000000000..19b2d6ad70 --- /dev/null +++ b/docs/docs/auto-docs/components/OrgSettings/AgendaItemCategories/AgendaCategoryUpdateModal/README.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / components/OrgSettings/AgendaItemCategories/AgendaCategoryUpdateModal + +# components/OrgSettings/AgendaItemCategories/AgendaCategoryUpdateModal + +## Functions + +- [default](functions/default.md) diff --git a/docs/docs/auto-docs/components/OrgSettings/AgendaItemCategories/AgendaCategoryUpdateModal/functions/default.md b/docs/docs/auto-docs/components/OrgSettings/AgendaItemCategories/AgendaCategoryUpdateModal/functions/default.md new file mode 100644 index 0000000000..0e04807f18 --- /dev/null +++ b/docs/docs/auto-docs/components/OrgSettings/AgendaItemCategories/AgendaCategoryUpdateModal/functions/default.md @@ -0,0 +1,35 @@ +[**talawa-admin**](../../../../../README.md) + +*** + +[talawa-admin](../../../../../modules.md) / [components/OrgSettings/AgendaItemCategories/AgendaCategoryUpdateModal](../README.md) / default + +# Function: default() + +> **default**(`props`, `deprecatedLegacyContext`?): `ReactNode` + +Defined in: [src/components/OrgSettings/AgendaItemCategories/AgendaCategoryUpdateModal.tsx:40](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/OrgSettings/AgendaItemCategories/AgendaCategoryUpdateModal.tsx#L40) + +AgendaCategoryUpdateModal component is used to update the agenda category details like name, description + +## Parameters + +### props + +`InterfaceAgendaCategoryUpdateModalProps` + +### deprecatedLegacyContext? + +`any` + +**Deprecated** + +**See** + +[React Docs](https://legacy.reactjs.org/docs/legacy-context.html#referencing-context-in-lifecycle-methods) + +## Returns + +`ReactNode` + +returns the AgendaCategoryUpdateModal component diff --git a/docs/docs/auto-docs/components/OrgSettings/AgendaItemCategories/OrganizationAgendaCategory/README.md b/docs/docs/auto-docs/components/OrgSettings/AgendaItemCategories/OrganizationAgendaCategory/README.md new file mode 100644 index 0000000000..c70db04ac7 --- /dev/null +++ b/docs/docs/auto-docs/components/OrgSettings/AgendaItemCategories/OrganizationAgendaCategory/README.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / components/OrgSettings/AgendaItemCategories/OrganizationAgendaCategory + +# components/OrgSettings/AgendaItemCategories/OrganizationAgendaCategory + +## Functions + +- [default](functions/default.md) diff --git a/docs/docs/auto-docs/components/OrgSettings/AgendaItemCategories/OrganizationAgendaCategory/functions/default.md b/docs/docs/auto-docs/components/OrgSettings/AgendaItemCategories/OrganizationAgendaCategory/functions/default.md new file mode 100644 index 0000000000..8683bd254c --- /dev/null +++ b/docs/docs/auto-docs/components/OrgSettings/AgendaItemCategories/OrganizationAgendaCategory/functions/default.md @@ -0,0 +1,37 @@ +[**talawa-admin**](../../../../../README.md) + +*** + +[talawa-admin](../../../../../modules.md) / [components/OrgSettings/AgendaItemCategories/OrganizationAgendaCategory](../README.md) / default + +# Function: default() + +> **default**(`props`, `deprecatedLegacyContext`?): `ReactNode` + +Defined in: [src/components/OrgSettings/AgendaItemCategories/OrganizationAgendaCategory.tsx:31](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/OrgSettings/AgendaItemCategories/OrganizationAgendaCategory.tsx#L31) + +Component for managing and displaying agenda item categories within an organization. + +This component allows users to view, create, and manage agenda item categories. It includes functionality for displaying categories, handling creation, and managing modal visibility. + +## Parameters + +### props + +`InterfaceAgendaCategoryProps` + +### deprecatedLegacyContext? + +`any` + +**Deprecated** + +**See** + +[React Docs](https://legacy.reactjs.org/docs/legacy-context.html#referencing-context-in-lifecycle-methods) + +## Returns + +`ReactNode` + +The rendered component. diff --git a/docs/docs/auto-docs/components/OrgSettings/AgendaItemCategories/OrganizationAgendaCategoryErrorMocks/README.md b/docs/docs/auto-docs/components/OrgSettings/AgendaItemCategories/OrganizationAgendaCategoryErrorMocks/README.md new file mode 100644 index 0000000000..170de04bd0 --- /dev/null +++ b/docs/docs/auto-docs/components/OrgSettings/AgendaItemCategories/OrganizationAgendaCategoryErrorMocks/README.md @@ -0,0 +1,12 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / components/OrgSettings/AgendaItemCategories/OrganizationAgendaCategoryErrorMocks + +# components/OrgSettings/AgendaItemCategories/OrganizationAgendaCategoryErrorMocks + +## Variables + +- [MOCKS\_ERROR\_AGENDA\_ITEM\_CATEGORY\_LIST\_QUERY](variables/MOCKS_ERROR_AGENDA_ITEM_CATEGORY_LIST_QUERY.md) +- [MOCKS\_ERROR\_MUTATION](variables/MOCKS_ERROR_MUTATION.md) diff --git a/docs/docs/auto-docs/components/OrgSettings/AgendaItemCategories/OrganizationAgendaCategoryErrorMocks/variables/MOCKS_ERROR_AGENDA_ITEM_CATEGORY_LIST_QUERY.md b/docs/docs/auto-docs/components/OrgSettings/AgendaItemCategories/OrganizationAgendaCategoryErrorMocks/variables/MOCKS_ERROR_AGENDA_ITEM_CATEGORY_LIST_QUERY.md new file mode 100644 index 0000000000..da78e8d529 --- /dev/null +++ b/docs/docs/auto-docs/components/OrgSettings/AgendaItemCategories/OrganizationAgendaCategoryErrorMocks/variables/MOCKS_ERROR_AGENDA_ITEM_CATEGORY_LIST_QUERY.md @@ -0,0 +1,41 @@ +[**talawa-admin**](../../../../../README.md) + +*** + +[talawa-admin](../../../../../modules.md) / [components/OrgSettings/AgendaItemCategories/OrganizationAgendaCategoryErrorMocks](../README.md) / MOCKS\_ERROR\_AGENDA\_ITEM\_CATEGORY\_LIST\_QUERY + +# Variable: MOCKS\_ERROR\_AGENDA\_ITEM\_CATEGORY\_LIST\_QUERY + +> `const` **MOCKS\_ERROR\_AGENDA\_ITEM\_CATEGORY\_LIST\_QUERY**: `object`[] + +Defined in: [src/components/OrgSettings/AgendaItemCategories/OrganizationAgendaCategoryErrorMocks.ts:5](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/OrgSettings/AgendaItemCategories/OrganizationAgendaCategoryErrorMocks.ts#L5) + +## Type declaration + +### error + +> **error**: `Error` + +### request + +> **request**: `object` + +#### request.query + +> **query**: `DocumentNode` = `AGENDA_ITEM_CATEGORY_LIST` + +#### request.variables + +> **variables**: `object` + +#### request.variables.organizationId + +> **organizationId**: `string` = `'123'` + +#### request.variables.where + +> **where**: `object` + +#### request.variables.where.name\_contains + +> **name\_contains**: `string` = `''` diff --git a/docs/docs/auto-docs/components/OrgSettings/AgendaItemCategories/OrganizationAgendaCategoryErrorMocks/variables/MOCKS_ERROR_MUTATION.md b/docs/docs/auto-docs/components/OrgSettings/AgendaItemCategories/OrganizationAgendaCategoryErrorMocks/variables/MOCKS_ERROR_MUTATION.md new file mode 100644 index 0000000000..e35fcf2e68 --- /dev/null +++ b/docs/docs/auto-docs/components/OrgSettings/AgendaItemCategories/OrganizationAgendaCategoryErrorMocks/variables/MOCKS_ERROR_MUTATION.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../../../README.md) + +*** + +[talawa-admin](../../../../../modules.md) / [components/OrgSettings/AgendaItemCategories/OrganizationAgendaCategoryErrorMocks](../README.md) / MOCKS\_ERROR\_MUTATION + +# Variable: MOCKS\_ERROR\_MUTATION + +> `const` **MOCKS\_ERROR\_MUTATION**: (\{ `error`: `undefined`; `request`: \{ `query`: `DocumentNode`; `variables`: \{ `input`: `undefined`; `organizationId`: `string`; `where`: \{ `name_contains`: `string`; \}; \}; \}; `result`: \{ `data`: \{ `agendaItemCategoriesByOrganization`: `object`[]; \}; \}; \} \| \{ `error`: `Error`; `request`: \{ `query`: `DocumentNode`; `variables`: \{ `input`: \{ `description`: `string`; `name`: `string`; `organizationId`: `string`; \}; `organizationId`: `undefined`; `where`: `undefined`; \}; \}; `result`: `undefined`; \})[] + +Defined in: [src/components/OrgSettings/AgendaItemCategories/OrganizationAgendaCategoryErrorMocks.ts:20](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/OrgSettings/AgendaItemCategories/OrganizationAgendaCategoryErrorMocks.ts#L20) diff --git a/docs/docs/auto-docs/components/OrgSettings/AgendaItemCategories/OrganizationAgendaCategoryMocks/README.md b/docs/docs/auto-docs/components/OrgSettings/AgendaItemCategories/OrganizationAgendaCategoryMocks/README.md new file mode 100644 index 0000000000..6abcadf0c7 --- /dev/null +++ b/docs/docs/auto-docs/components/OrgSettings/AgendaItemCategories/OrganizationAgendaCategoryMocks/README.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / components/OrgSettings/AgendaItemCategories/OrganizationAgendaCategoryMocks + +# components/OrgSettings/AgendaItemCategories/OrganizationAgendaCategoryMocks + +## Variables + +- [MOCKS](variables/MOCKS.md) diff --git a/docs/docs/auto-docs/components/OrgSettings/AgendaItemCategories/OrganizationAgendaCategoryMocks/variables/MOCKS.md b/docs/docs/auto-docs/components/OrgSettings/AgendaItemCategories/OrganizationAgendaCategoryMocks/variables/MOCKS.md new file mode 100644 index 0000000000..ad703733ed --- /dev/null +++ b/docs/docs/auto-docs/components/OrgSettings/AgendaItemCategories/OrganizationAgendaCategoryMocks/variables/MOCKS.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../../../README.md) + +*** + +[talawa-admin](../../../../../modules.md) / [components/OrgSettings/AgendaItemCategories/OrganizationAgendaCategoryMocks](../README.md) / MOCKS + +# Variable: MOCKS + +> `const` **MOCKS**: (\{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `input`: `undefined`; `organizationId`: `string`; `where`: \{ `name_contains`: `string`; \}; \}; \}; `result`: \{ `data`: \{ `agendaItemCategoriesByOrganization`: `object`[]; `createAgendaCategory`: `undefined`; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `input`: \{ `description`: `string`; `name`: `string`; `organizationId`: `string`; \}; `organizationId`: `undefined`; `where`: `undefined`; \}; \}; `result`: \{ `data`: \{ `agendaItemCategoriesByOrganization`: `undefined`; `createAgendaCategory`: \{ `_id`: `string`; \}; \}; \}; \})[] + +Defined in: [src/components/OrgSettings/AgendaItemCategories/OrganizationAgendaCategoryMocks.ts:5](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/OrgSettings/AgendaItemCategories/OrganizationAgendaCategoryMocks.ts#L5) diff --git a/docs/docs/auto-docs/components/OrgSettings/General/DeleteOrg/DeleteOrg/README.md b/docs/docs/auto-docs/components/OrgSettings/General/DeleteOrg/DeleteOrg/README.md new file mode 100644 index 0000000000..2930197acf --- /dev/null +++ b/docs/docs/auto-docs/components/OrgSettings/General/DeleteOrg/DeleteOrg/README.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../../../README.md) + +*** + +[talawa-admin](../../../../../modules.md) / components/OrgSettings/General/DeleteOrg/DeleteOrg + +# components/OrgSettings/General/DeleteOrg/DeleteOrg + +## Functions + +- [default](functions/default.md) diff --git a/docs/docs/auto-docs/components/OrgSettings/General/DeleteOrg/DeleteOrg/functions/default.md b/docs/docs/auto-docs/components/OrgSettings/General/DeleteOrg/DeleteOrg/functions/default.md new file mode 100644 index 0000000000..432039996a --- /dev/null +++ b/docs/docs/auto-docs/components/OrgSettings/General/DeleteOrg/DeleteOrg/functions/default.md @@ -0,0 +1,24 @@ +[**talawa-admin**](../../../../../../README.md) + +*** + +[talawa-admin](../../../../../../modules.md) / [components/OrgSettings/General/DeleteOrg/DeleteOrg](../README.md) / default + +# Function: default() + +> **default**(): `JSX.Element` + +Defined in: [src/components/OrgSettings/General/DeleteOrg/DeleteOrg.tsx:26](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/OrgSettings/General/DeleteOrg/DeleteOrg.tsx#L26) + +A component for deleting an organization. + +It displays a card with a delete button. When the delete button is clicked, +a modal appears asking for confirmation. Depending on the type of organization +(sample or regular), it performs the delete operation and shows appropriate +success or error messages. + +## Returns + +`JSX.Element` + +JSX.Element - The rendered component with delete functionality. diff --git a/docs/docs/auto-docs/components/OrgSettings/General/GeneralSettings/README.md b/docs/docs/auto-docs/components/OrgSettings/General/GeneralSettings/README.md new file mode 100644 index 0000000000..94753fd6ad --- /dev/null +++ b/docs/docs/auto-docs/components/OrgSettings/General/GeneralSettings/README.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / components/OrgSettings/General/GeneralSettings + +# components/OrgSettings/General/GeneralSettings + +## Functions + +- [default](functions/default.md) diff --git a/docs/docs/auto-docs/components/OrgSettings/General/GeneralSettings/functions/default.md b/docs/docs/auto-docs/components/OrgSettings/General/GeneralSettings/functions/default.md new file mode 100644 index 0000000000..497991bc8d --- /dev/null +++ b/docs/docs/auto-docs/components/OrgSettings/General/GeneralSettings/functions/default.md @@ -0,0 +1,37 @@ +[**talawa-admin**](../../../../../README.md) + +*** + +[talawa-admin](../../../../../modules.md) / [components/OrgSettings/General/GeneralSettings](../README.md) / default + +# Function: default() + +> **default**(`props`, `deprecatedLegacyContext`?): `ReactNode` + +Defined in: [src/components/OrgSettings/General/GeneralSettings.tsx:23](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/OrgSettings/General/GeneralSettings.tsx#L23) + +A component for displaying general settings for an organization. + +## Parameters + +### props + +`InterfaceGeneralSettingsProps` + +The properties passed to the component. + +### deprecatedLegacyContext? + +`any` + +**Deprecated** + +**See** + +[React Docs](https://legacy.reactjs.org/docs/legacy-context.html#referencing-context-in-lifecycle-methods) + +## Returns + +`ReactNode` + +The `GeneralSettings` component. diff --git a/docs/docs/auto-docs/components/OrgSettings/General/OrgProfileFieldSettings/OrgProfileFieldSettings/README.md b/docs/docs/auto-docs/components/OrgSettings/General/OrgProfileFieldSettings/OrgProfileFieldSettings/README.md new file mode 100644 index 0000000000..da8152d8d2 --- /dev/null +++ b/docs/docs/auto-docs/components/OrgSettings/General/OrgProfileFieldSettings/OrgProfileFieldSettings/README.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../../../README.md) + +*** + +[talawa-admin](../../../../../modules.md) / components/OrgSettings/General/OrgProfileFieldSettings/OrgProfileFieldSettings + +# components/OrgSettings/General/OrgProfileFieldSettings/OrgProfileFieldSettings + +## Functions + +- [default](functions/default.md) diff --git a/docs/docs/auto-docs/components/OrgSettings/General/OrgProfileFieldSettings/OrgProfileFieldSettings/functions/default.md b/docs/docs/auto-docs/components/OrgSettings/General/OrgProfileFieldSettings/OrgProfileFieldSettings/functions/default.md new file mode 100644 index 0000000000..3580ecd3c6 --- /dev/null +++ b/docs/docs/auto-docs/components/OrgSettings/General/OrgProfileFieldSettings/OrgProfileFieldSettings/functions/default.md @@ -0,0 +1,22 @@ +[**talawa-admin**](../../../../../../README.md) + +*** + +[talawa-admin](../../../../../../modules.md) / [components/OrgSettings/General/OrgProfileFieldSettings/OrgProfileFieldSettings](../README.md) / default + +# Function: default() + +> **default**(): `Element` + +Defined in: [src/components/OrgSettings/General/OrgProfileFieldSettings/OrgProfileFieldSettings.tsx:26](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/OrgSettings/General/OrgProfileFieldSettings/OrgProfileFieldSettings.tsx#L26) + +Component for managing organization profile field settings + +This component allows adding and removing custom fields for an organization. +It displays existing custom fields and provides a form to add new fields. + +## Returns + +`Element` + +JSX.Element representing the organization profile field settings diff --git a/docs/docs/auto-docs/components/OrgSettings/General/OrgUpdate/OrgUpdate/README.md b/docs/docs/auto-docs/components/OrgSettings/General/OrgUpdate/OrgUpdate/README.md new file mode 100644 index 0000000000..3021f67a45 --- /dev/null +++ b/docs/docs/auto-docs/components/OrgSettings/General/OrgUpdate/OrgUpdate/README.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../../../README.md) + +*** + +[talawa-admin](../../../../../modules.md) / components/OrgSettings/General/OrgUpdate/OrgUpdate + +# components/OrgSettings/General/OrgUpdate/OrgUpdate + +## Functions + +- [default](functions/default.md) diff --git a/docs/docs/auto-docs/components/OrgSettings/General/OrgUpdate/OrgUpdate/functions/default.md b/docs/docs/auto-docs/components/OrgSettings/General/OrgUpdate/OrgUpdate/functions/default.md new file mode 100644 index 0000000000..f5783b16ac --- /dev/null +++ b/docs/docs/auto-docs/components/OrgSettings/General/OrgUpdate/OrgUpdate/functions/default.md @@ -0,0 +1,31 @@ +[**talawa-admin**](../../../../../../README.md) + +*** + +[talawa-admin](../../../../../../modules.md) / [components/OrgSettings/General/OrgUpdate/OrgUpdate](../README.md) / default + +# Function: default() + +> **default**(`props`): `JSX.Element` + +Defined in: [src/components/OrgSettings/General/OrgUpdate/OrgUpdate.tsx:36](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/OrgSettings/General/OrgUpdate/OrgUpdate.tsx#L36) + +Component for updating organization details. + +This component allows users to update the organization's name, description, address, +visibility settings, and upload an image. It uses GraphQL mutations and queries to +fetch and update data. + +## Parameters + +### props + +`InterfaceOrgUpdateProps` + +Component props containing the organization ID. + +## Returns + +`JSX.Element` + +The rendered component. diff --git a/docs/docs/auto-docs/components/OrgSettings/General/OrgUpdate/OrgUpdateMocks/README.md b/docs/docs/auto-docs/components/OrgSettings/General/OrgUpdate/OrgUpdateMocks/README.md new file mode 100644 index 0000000000..aec709b65b --- /dev/null +++ b/docs/docs/auto-docs/components/OrgSettings/General/OrgUpdate/OrgUpdateMocks/README.md @@ -0,0 +1,13 @@ +[**talawa-admin**](../../../../../README.md) + +*** + +[talawa-admin](../../../../../modules.md) / components/OrgSettings/General/OrgUpdate/OrgUpdateMocks + +# components/OrgSettings/General/OrgUpdate/OrgUpdateMocks + +## Variables + +- [MOCKS](variables/MOCKS.md) +- [MOCKS\_ERROR\_ORGLIST](variables/MOCKS_ERROR_ORGLIST.md) +- [MOCKS\_ERROR\_UPDATE\_ORGLIST](variables/MOCKS_ERROR_UPDATE_ORGLIST.md) diff --git a/docs/docs/auto-docs/components/OrgSettings/General/OrgUpdate/OrgUpdateMocks/variables/MOCKS.md b/docs/docs/auto-docs/components/OrgSettings/General/OrgUpdate/OrgUpdateMocks/variables/MOCKS.md new file mode 100644 index 0000000000..c5705c4d56 --- /dev/null +++ b/docs/docs/auto-docs/components/OrgSettings/General/OrgUpdate/OrgUpdateMocks/variables/MOCKS.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../../../../README.md) + +*** + +[talawa-admin](../../../../../../modules.md) / [components/OrgSettings/General/OrgUpdate/OrgUpdateMocks](../README.md) / MOCKS + +# Variable: MOCKS + +> `const` **MOCKS**: (\{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `address`: `undefined`; `description`: `undefined`; `id`: `string`; `image`: `undefined`; `name`: `undefined`; `userRegistrationRequired`: `undefined`; `visibleInSearch`: `undefined`; \}; \}; `result`: \{ `data`: \{ `organizations`: `object`[]; `updateOrganization`: `undefined`; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `address`: \{ `city`: `string`; `countryCode`: `string`; `dependentLocality`: `string`; `line1`: `string`; `line2`: `string`; `postalCode`: `string`; `sortingCode`: `string`; `state`: `string`; \}; `description`: `string`; `id`: `string`; `image`: `File`; `name`: `string`; `userRegistrationRequired`: `boolean`; `visibleInSearch`: `boolean`; \}; \}; `result`: \{ `data`: \{ `organizations`: `undefined`; `updateOrganization`: \{ `_id`: `string`; `address`: \{ `city`: `string`; `countryCode`: `string`; `dependentLocality`: `string`; `line1`: `string`; `line2`: `string`; `postalCode`: `string`; `sortingCode`: `string`; `state`: `string`; \}; `description`: `string`; `name`: `string`; `userRegistrationRequired`: `boolean`; `visibleInSearch`: `boolean`; \}; \}; \}; \})[] + +Defined in: [src/components/OrgSettings/General/OrgUpdate/OrgUpdateMocks.ts:4](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/OrgSettings/General/OrgUpdate/OrgUpdateMocks.ts#L4) diff --git a/docs/docs/auto-docs/components/OrgSettings/General/OrgUpdate/OrgUpdateMocks/variables/MOCKS_ERROR_ORGLIST.md b/docs/docs/auto-docs/components/OrgSettings/General/OrgUpdate/OrgUpdateMocks/variables/MOCKS_ERROR_ORGLIST.md new file mode 100644 index 0000000000..56d0680070 --- /dev/null +++ b/docs/docs/auto-docs/components/OrgSettings/General/OrgUpdate/OrgUpdateMocks/variables/MOCKS_ERROR_ORGLIST.md @@ -0,0 +1,33 @@ +[**talawa-admin**](../../../../../../README.md) + +*** + +[talawa-admin](../../../../../../modules.md) / [components/OrgSettings/General/OrgUpdate/OrgUpdateMocks](../README.md) / MOCKS\_ERROR\_ORGLIST + +# Variable: MOCKS\_ERROR\_ORGLIST + +> `const` **MOCKS\_ERROR\_ORGLIST**: `object`[] + +Defined in: [src/components/OrgSettings/General/OrgUpdate/OrgUpdateMocks.ts:110](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/OrgSettings/General/OrgUpdate/OrgUpdateMocks.ts#L110) + +## Type declaration + +### error + +> **error**: `Error` + +### request + +> **request**: `object` + +#### request.query + +> **query**: `DocumentNode` = `ORGANIZATIONS_LIST` + +#### request.variables + +> **variables**: `object` + +#### request.variables.id + +> **id**: `string` = `'123'` diff --git a/docs/docs/auto-docs/components/OrgSettings/General/OrgUpdate/OrgUpdateMocks/variables/MOCKS_ERROR_UPDATE_ORGLIST.md b/docs/docs/auto-docs/components/OrgSettings/General/OrgUpdate/OrgUpdateMocks/variables/MOCKS_ERROR_UPDATE_ORGLIST.md new file mode 100644 index 0000000000..b4b1d4a96c --- /dev/null +++ b/docs/docs/auto-docs/components/OrgSettings/General/OrgUpdate/OrgUpdateMocks/variables/MOCKS_ERROR_UPDATE_ORGLIST.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../../../../README.md) + +*** + +[talawa-admin](../../../../../../modules.md) / [components/OrgSettings/General/OrgUpdate/OrgUpdateMocks](../README.md) / MOCKS\_ERROR\_UPDATE\_ORGLIST + +# Variable: MOCKS\_ERROR\_UPDATE\_ORGLIST + +> `const` **MOCKS\_ERROR\_UPDATE\_ORGLIST**: (\{ `erorr`: `undefined`; `request`: \{ `query`: `DocumentNode`; `variables`: \{ `address`: `undefined`; `description`: `undefined`; `id`: `string`; `image`: `undefined`; `name`: `undefined`; `userRegistrationRequired`: `undefined`; `visibleInSearch`: `undefined`; \}; \}; `result`: \{ `data`: \{ `organizations`: `object`[]; \}; \}; \} \| \{ `erorr`: `Error`; `request`: \{ `query`: `DocumentNode`; `variables`: \{ `address`: \{ `city`: `string`; `countryCode`: `string`; `dependentLocality`: `string`; `line1`: `string`; `line2`: `string`; `postalCode`: `string`; `sortingCode`: `string`; `state`: `string`; \}; `description`: `string`; `id`: `string`; `image`: `File`; `name`: `string`; `userRegistrationRequired`: `boolean`; `visibleInSearch`: `boolean`; \}; \}; `result`: `undefined`; \})[] + +Defined in: [src/components/OrgSettings/General/OrgUpdate/OrgUpdateMocks.ts:120](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/OrgSettings/General/OrgUpdate/OrgUpdateMocks.ts#L120) diff --git a/docs/docs/auto-docs/components/OrganizationCard/OrganizationCard/README.md b/docs/docs/auto-docs/components/OrganizationCard/OrganizationCard/README.md new file mode 100644 index 0000000000..fb6c91285d --- /dev/null +++ b/docs/docs/auto-docs/components/OrganizationCard/OrganizationCard/README.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / components/OrganizationCard/OrganizationCard + +# components/OrganizationCard/OrganizationCard + +## Functions + +- [default](functions/default.md) diff --git a/docs/docs/auto-docs/components/OrganizationCard/OrganizationCard/functions/default.md b/docs/docs/auto-docs/components/OrganizationCard/OrganizationCard/functions/default.md new file mode 100644 index 0000000000..b982850881 --- /dev/null +++ b/docs/docs/auto-docs/components/OrganizationCard/OrganizationCard/functions/default.md @@ -0,0 +1,27 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [components/OrganizationCard/OrganizationCard](../README.md) / default + +# Function: default() + +> **default**(`props`): `JSX.Element` + +Defined in: [src/components/OrganizationCard/OrganizationCard.tsx:18](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/OrganizationCard/OrganizationCard.tsx#L18) + +Component to display an organization's card with its image and owner details. + +## Parameters + +### props + +`InterfaceOrganizationCardProps` + +Properties for the organization card. + +## Returns + +`JSX.Element` + +JSX element representing the organization card. diff --git a/docs/docs/auto-docs/components/OrganizationCardStart/OrganizationCardStart/README.md b/docs/docs/auto-docs/components/OrganizationCardStart/OrganizationCardStart/README.md new file mode 100644 index 0000000000..bdb5ef1f8b --- /dev/null +++ b/docs/docs/auto-docs/components/OrganizationCardStart/OrganizationCardStart/README.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / components/OrganizationCardStart/OrganizationCardStart + +# components/OrganizationCardStart/OrganizationCardStart + +## Functions + +- [default](functions/default.md) diff --git a/docs/docs/auto-docs/components/OrganizationCardStart/OrganizationCardStart/functions/default.md b/docs/docs/auto-docs/components/OrganizationCardStart/OrganizationCardStart/functions/default.md new file mode 100644 index 0000000000..c433b03402 --- /dev/null +++ b/docs/docs/auto-docs/components/OrganizationCardStart/OrganizationCardStart/functions/default.md @@ -0,0 +1,25 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [components/OrganizationCardStart/OrganizationCardStart](../README.md) / default + +# Function: default() + +> **default**(`props`): `JSX.Element` + +Defined in: [src/components/OrganizationCardStart/OrganizationCardStart.tsx:18](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/OrganizationCardStart/OrganizationCardStart.tsx#L18) + +Component to display a simplified card for an organization. + +## Parameters + +### props + +`InterfaceOrganizationCardStartProps` + +## Returns + +`JSX.Element` + +JSX element representing the organization card. diff --git a/docs/docs/auto-docs/components/OrganizationDashCards/CardItem/README.md b/docs/docs/auto-docs/components/OrganizationDashCards/CardItem/README.md new file mode 100644 index 0000000000..85c9fc2dc0 --- /dev/null +++ b/docs/docs/auto-docs/components/OrganizationDashCards/CardItem/README.md @@ -0,0 +1,15 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / components/OrganizationDashCards/CardItem + +# components/OrganizationDashCards/CardItem + +## Interfaces + +- [InterfaceCardItem](interfaces/InterfaceCardItem.md) + +## Functions + +- [default](functions/default.md) diff --git a/docs/docs/auto-docs/components/OrganizationDashCards/CardItem/functions/default.md b/docs/docs/auto-docs/components/OrganizationDashCards/CardItem/functions/default.md new file mode 100644 index 0000000000..5dee42713f --- /dev/null +++ b/docs/docs/auto-docs/components/OrganizationDashCards/CardItem/functions/default.md @@ -0,0 +1,27 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [components/OrganizationDashCards/CardItem](../README.md) / default + +# Function: default() + +> **default**(`props`): `Element` + +Defined in: [src/components/OrganizationDashCards/CardItem.tsx:35](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/OrganizationDashCards/CardItem.tsx#L35) + +Component to display a card item with various types such as Event, Post, or MembershipRequest. + +## Parameters + +### props + +[`InterfaceCardItem`](../interfaces/InterfaceCardItem.md) + +Props for the CardItem component. + +## Returns + +`Element` + +JSX element representing the card item. diff --git a/docs/docs/auto-docs/components/OrganizationDashCards/CardItem/interfaces/InterfaceCardItem.md b/docs/docs/auto-docs/components/OrganizationDashCards/CardItem/interfaces/InterfaceCardItem.md new file mode 100644 index 0000000000..5ed41ede3e --- /dev/null +++ b/docs/docs/auto-docs/components/OrganizationDashCards/CardItem/interfaces/InterfaceCardItem.md @@ -0,0 +1,83 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [components/OrganizationDashCards/CardItem](../README.md) / InterfaceCardItem + +# Interface: InterfaceCardItem + +Defined in: [src/components/OrganizationDashCards/CardItem.tsx:14](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/OrganizationDashCards/CardItem.tsx#L14) + +Interface for the CardItem component's props. + +## Properties + +### creator? + +> `optional` **creator**: `object` + +Defined in: [src/components/OrganizationDashCards/CardItem.tsx:20](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/OrganizationDashCards/CardItem.tsx#L20) + +#### \_id + +> **\_id**: `string` + +#### email + +> **email**: `string` + +#### firstName + +> **firstName**: `string` + +#### lastName + +> **lastName**: `string` + +*** + +### enddate? + +> `optional` **enddate**: `string` + +Defined in: [src/components/OrganizationDashCards/CardItem.tsx:19](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/OrganizationDashCards/CardItem.tsx#L19) + +*** + +### location? + +> `optional` **location**: `string` + +Defined in: [src/components/OrganizationDashCards/CardItem.tsx:26](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/OrganizationDashCards/CardItem.tsx#L26) + +*** + +### startdate? + +> `optional` **startdate**: `string` + +Defined in: [src/components/OrganizationDashCards/CardItem.tsx:18](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/OrganizationDashCards/CardItem.tsx#L18) + +*** + +### time? + +> `optional` **time**: `string` + +Defined in: [src/components/OrganizationDashCards/CardItem.tsx:17](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/OrganizationDashCards/CardItem.tsx#L17) + +*** + +### title + +> **title**: `string` + +Defined in: [src/components/OrganizationDashCards/CardItem.tsx:16](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/OrganizationDashCards/CardItem.tsx#L16) + +*** + +### type + +> **type**: `"Event"` \| `"Post"` \| `"MembershipRequest"` + +Defined in: [src/components/OrganizationDashCards/CardItem.tsx:15](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/OrganizationDashCards/CardItem.tsx#L15) diff --git a/docs/docs/auto-docs/components/OrganizationDashCards/CardItemLoading/README.md b/docs/docs/auto-docs/components/OrganizationDashCards/CardItemLoading/README.md new file mode 100644 index 0000000000..af5a47e20e --- /dev/null +++ b/docs/docs/auto-docs/components/OrganizationDashCards/CardItemLoading/README.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / components/OrganizationDashCards/CardItemLoading + +# components/OrganizationDashCards/CardItemLoading + +## Functions + +- [default](functions/default.md) diff --git a/docs/docs/auto-docs/components/OrganizationDashCards/CardItemLoading/functions/default.md b/docs/docs/auto-docs/components/OrganizationDashCards/CardItemLoading/functions/default.md new file mode 100644 index 0000000000..f31fe41e73 --- /dev/null +++ b/docs/docs/auto-docs/components/OrganizationDashCards/CardItemLoading/functions/default.md @@ -0,0 +1,19 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [components/OrganizationDashCards/CardItemLoading](../README.md) / default + +# Function: default() + +> **default**(): `Element` + +Defined in: [src/components/OrganizationDashCards/CardItemLoading.tsx:8](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/OrganizationDashCards/CardItemLoading.tsx#L8) + +CardItemLoading component is a loading state for the card item. It is used when the data is being fetched. + +## Returns + +`Element` + +JSX.Element diff --git a/docs/docs/auto-docs/components/OrganizationDashCards/DashboardCard/README.md b/docs/docs/auto-docs/components/OrganizationDashCards/DashboardCard/README.md new file mode 100644 index 0000000000..c966d0184c --- /dev/null +++ b/docs/docs/auto-docs/components/OrganizationDashCards/DashboardCard/README.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / components/OrganizationDashCards/DashboardCard + +# components/OrganizationDashCards/DashboardCard + +## Functions + +- [default](functions/default.md) diff --git a/docs/docs/auto-docs/components/OrganizationDashCards/DashboardCard/functions/default.md b/docs/docs/auto-docs/components/OrganizationDashCards/DashboardCard/functions/default.md new file mode 100644 index 0000000000..22eddcd490 --- /dev/null +++ b/docs/docs/auto-docs/components/OrganizationDashCards/DashboardCard/functions/default.md @@ -0,0 +1,35 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [components/OrganizationDashCards/DashboardCard](../README.md) / default + +# Function: default() + +> **default**(`props`): `Element` + +Defined in: [src/components/OrganizationDashCards/DashboardCard.tsx:13](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/OrganizationDashCards/DashboardCard.tsx#L13) + +Dashboard card component is used to display the card with icon, title and count. + +## Parameters + +### props + +#### count + +`number` + +#### icon + +`ReactNode` + +#### title + +`string` + +## Returns + +`Element` + +Dashboard card component diff --git a/docs/docs/auto-docs/components/OrganizationDashCards/DashboardCardLoading/README.md b/docs/docs/auto-docs/components/OrganizationDashCards/DashboardCardLoading/README.md new file mode 100644 index 0000000000..0229ba496b --- /dev/null +++ b/docs/docs/auto-docs/components/OrganizationDashCards/DashboardCardLoading/README.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / components/OrganizationDashCards/DashboardCardLoading + +# components/OrganizationDashCards/DashboardCardLoading + +## Functions + +- [default](functions/default.md) diff --git a/docs/docs/auto-docs/components/OrganizationDashCards/DashboardCardLoading/functions/default.md b/docs/docs/auto-docs/components/OrganizationDashCards/DashboardCardLoading/functions/default.md new file mode 100644 index 0000000000..6fab6157d9 --- /dev/null +++ b/docs/docs/auto-docs/components/OrganizationDashCards/DashboardCardLoading/functions/default.md @@ -0,0 +1,19 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [components/OrganizationDashCards/DashboardCardLoading](../README.md) / default + +# Function: default() + +> **default**(): `Element` + +Defined in: [src/components/OrganizationDashCards/DashboardCardLoading.tsx:10](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/OrganizationDashCards/DashboardCardLoading.tsx#L10) + +Dashboard card loading component is a loading state for the dashboard card. It is used when the data is being fetched. + +## Returns + +`Element` + +JSX.Element diff --git a/docs/docs/auto-docs/components/OrganizationScreen/OrganizationScreen/README.md b/docs/docs/auto-docs/components/OrganizationScreen/OrganizationScreen/README.md new file mode 100644 index 0000000000..f69f4d0dd9 --- /dev/null +++ b/docs/docs/auto-docs/components/OrganizationScreen/OrganizationScreen/README.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / components/OrganizationScreen/OrganizationScreen + +# components/OrganizationScreen/OrganizationScreen + +## Functions + +- [default](functions/default.md) diff --git a/docs/docs/auto-docs/components/OrganizationScreen/OrganizationScreen/functions/default.md b/docs/docs/auto-docs/components/OrganizationScreen/OrganizationScreen/functions/default.md new file mode 100644 index 0000000000..0cb2aead04 --- /dev/null +++ b/docs/docs/auto-docs/components/OrganizationScreen/OrganizationScreen/functions/default.md @@ -0,0 +1,24 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [components/OrganizationScreen/OrganizationScreen](../README.md) / default + +# Function: default() + +> **default**(): `Element` + +Defined in: [src/components/OrganizationScreen/OrganizationScreen.tsx:37](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/OrganizationScreen/OrganizationScreen.tsx#L37) + +Component for the organization screen + +This component displays the organization screen and handles the layout +including a side drawer, header, and main content area. It adjusts +the layout based on the screen size and shows the appropriate content +based on the route. + +## Returns + +`Element` + +JSX.Element representing the organization screen diff --git a/docs/docs/auto-docs/components/Pagination/Pagination/README.md b/docs/docs/auto-docs/components/Pagination/Pagination/README.md new file mode 100644 index 0000000000..e4478da85f --- /dev/null +++ b/docs/docs/auto-docs/components/Pagination/Pagination/README.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / components/Pagination/Pagination + +# components/Pagination/Pagination + +## Functions + +- [default](functions/default.md) diff --git a/docs/docs/auto-docs/components/Pagination/Pagination/functions/default.md b/docs/docs/auto-docs/components/Pagination/Pagination/functions/default.md new file mode 100644 index 0000000000..f949fe4af4 --- /dev/null +++ b/docs/docs/auto-docs/components/Pagination/Pagination/functions/default.md @@ -0,0 +1,31 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [components/Pagination/Pagination](../README.md) / default + +# Function: default() + +> **default**(`props`): `JSX.Element` + +Defined in: [src/components/Pagination/Pagination.tsx:30](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/Pagination/Pagination.tsx#L30) + +Pagination component for navigating between pages in a table. + +This component provides buttons to navigate to the first page, previous page, +next page, and last page of a table. The visibility and functionality of the +buttons are controlled based on the current page and the total number of items. + +## Parameters + +### props + +`InterfaceTablePaginationActionsProps` + +Component properties. + +## Returns + +`JSX.Element` + +The rendered component. diff --git a/docs/docs/auto-docs/components/PaginationList/PaginationList/README.md b/docs/docs/auto-docs/components/PaginationList/PaginationList/README.md new file mode 100644 index 0000000000..97e958ec2f --- /dev/null +++ b/docs/docs/auto-docs/components/PaginationList/PaginationList/README.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / components/PaginationList/PaginationList + +# components/PaginationList/PaginationList + +## Functions + +- [default](functions/default.md) diff --git a/docs/docs/auto-docs/components/PaginationList/PaginationList/functions/default.md b/docs/docs/auto-docs/components/PaginationList/PaginationList/functions/default.md new file mode 100644 index 0000000000..cfe5bfc128 --- /dev/null +++ b/docs/docs/auto-docs/components/PaginationList/PaginationList/functions/default.md @@ -0,0 +1,24 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [components/PaginationList/PaginationList](../README.md) / default + +# Function: default() + +> **default**(`__namedParameters`): `Element` + +Defined in: [src/components/PaginationList/PaginationList.tsx:31](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/PaginationList/PaginationList.tsx#L31) + +A component that provides pagination controls for a table. +It uses different pagination styles based on screen size. + +## Parameters + +### \_\_namedParameters + +`InterfacePropsInterface` + +## Returns + +`Element` diff --git a/docs/docs/auto-docs/components/ProfileDropdown/ProfileDropdown/README.md b/docs/docs/auto-docs/components/ProfileDropdown/ProfileDropdown/README.md new file mode 100644 index 0000000000..7730f4adbe --- /dev/null +++ b/docs/docs/auto-docs/components/ProfileDropdown/ProfileDropdown/README.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / components/ProfileDropdown/ProfileDropdown + +# components/ProfileDropdown/ProfileDropdown + +## Functions + +- [default](functions/default.md) diff --git a/docs/docs/auto-docs/components/ProfileDropdown/ProfileDropdown/functions/default.md b/docs/docs/auto-docs/components/ProfileDropdown/ProfileDropdown/functions/default.md new file mode 100644 index 0000000000..63ccea5ccd --- /dev/null +++ b/docs/docs/auto-docs/components/ProfileDropdown/ProfileDropdown/functions/default.md @@ -0,0 +1,26 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [components/ProfileDropdown/ProfileDropdown](../README.md) / default + +# Function: default() + +> **default**(): `Element` + +Defined in: [src/components/ProfileDropdown/ProfileDropdown.tsx:24](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/ProfileDropdown/ProfileDropdown.tsx#L24) + +Renders a profile dropdown menu for the user. + +This component displays the user's profile picture or an avatar, their name (truncated if necessary), +and their role (SuperAdmin, Admin, or User). It provides options to view the profile or log out. + +- If a user image is available, it displays that; otherwise, it shows an avatar. +- The displayed name is truncated if it exceeds a specified length. +- The logout function revokes the refresh token and clears local storage before redirecting to the home page. + +## Returns + +`Element` + +JSX.Element - The profile dropdown menu. diff --git a/docs/docs/auto-docs/components/RecurrenceOptions/CustomRecurrenceModal/README.md b/docs/docs/auto-docs/components/RecurrenceOptions/CustomRecurrenceModal/README.md new file mode 100644 index 0000000000..905215ebe4 --- /dev/null +++ b/docs/docs/auto-docs/components/RecurrenceOptions/CustomRecurrenceModal/README.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / components/RecurrenceOptions/CustomRecurrenceModal + +# components/RecurrenceOptions/CustomRecurrenceModal + +## Functions + +- [default](functions/default.md) diff --git a/docs/docs/auto-docs/components/RecurrenceOptions/CustomRecurrenceModal/functions/default.md b/docs/docs/auto-docs/components/RecurrenceOptions/CustomRecurrenceModal/functions/default.md new file mode 100644 index 0000000000..36fc56a541 --- /dev/null +++ b/docs/docs/auto-docs/components/RecurrenceOptions/CustomRecurrenceModal/functions/default.md @@ -0,0 +1,41 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [components/RecurrenceOptions/CustomRecurrenceModal](../README.md) / default + +# Function: default() + +> **default**(`props`, `deprecatedLegacyContext`?): `ReactNode` + +Defined in: [src/components/RecurrenceOptions/CustomRecurrenceModal.tsx:54](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/RecurrenceOptions/CustomRecurrenceModal.tsx#L54) + +A modal for setting up custom recurrence rules. + +This component allows users to configure how often an event should repeat, and +when it should end. It includes options for daily, weekly, monthly, and yearly +recurrence, as well as specific end options. + +## Parameters + +### props + +`InterfaceCustomRecurrenceModalProps` + +The props object containing various configurations and state management functions. + +### deprecatedLegacyContext? + +`any` + +**Deprecated** + +**See** + +[React Docs](https://legacy.reactjs.org/docs/legacy-context.html#referencing-context-in-lifecycle-methods) + +## Returns + +`ReactNode` + +The JSX element representing the CustomRecurrenceModal. diff --git a/docs/docs/auto-docs/components/RecurrenceOptions/RecurrenceOptions/README.md b/docs/docs/auto-docs/components/RecurrenceOptions/RecurrenceOptions/README.md new file mode 100644 index 0000000000..64470d030e --- /dev/null +++ b/docs/docs/auto-docs/components/RecurrenceOptions/RecurrenceOptions/README.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / components/RecurrenceOptions/RecurrenceOptions + +# components/RecurrenceOptions/RecurrenceOptions + +## Functions + +- [default](functions/default.md) diff --git a/docs/docs/auto-docs/components/RecurrenceOptions/RecurrenceOptions/functions/default.md b/docs/docs/auto-docs/components/RecurrenceOptions/RecurrenceOptions/functions/default.md new file mode 100644 index 0000000000..81146f2504 --- /dev/null +++ b/docs/docs/auto-docs/components/RecurrenceOptions/RecurrenceOptions/functions/default.md @@ -0,0 +1,49 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [components/RecurrenceOptions/RecurrenceOptions](../README.md) / default + +# Function: default() + +> **default**(`props`, `deprecatedLegacyContext`?): `ReactNode` + +Defined in: [src/components/RecurrenceOptions/RecurrenceOptions.tsx:49](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/RecurrenceOptions/RecurrenceOptions.tsx#L49) + +Renders a dropdown menu for selecting recurrence options. + +This component allows users to choose various recurrence rules (daily, weekly, monthly, yearly) for a given event. +It displays the current recurrence rule text and provides options to modify it, including a custom recurrence modal. + +The dropdown menu includes options for: +- Daily recurrence +- Weekly recurrence (including a specific day of the week or Monday to Friday) +- Monthly recurrence (on a specific day or occurrence) +- Yearly recurrence +- Custom recurrence (opens a modal for advanced settings) + +The displayed recurrence rule text is truncated if it exceeds a specified length, with an overlay showing the full text on hover. + +## Parameters + +### props + +`InterfaceRecurrenceOptionsProps` + +The properties to configure the recurrence options dropdown. + +### deprecatedLegacyContext? + +`any` + +**Deprecated** + +**See** + +[React Docs](https://legacy.reactjs.org/docs/legacy-context.html#referencing-context-in-lifecycle-methods) + +## Returns + +`ReactNode` + +JSX.Element - The recurrence options dropdown and the custom recurrence modal. diff --git a/docs/docs/auto-docs/components/RequestsTableItem/RequestsTableItem/README.md b/docs/docs/auto-docs/components/RequestsTableItem/RequestsTableItem/README.md new file mode 100644 index 0000000000..86e8b36c33 --- /dev/null +++ b/docs/docs/auto-docs/components/RequestsTableItem/RequestsTableItem/README.md @@ -0,0 +1,15 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / components/RequestsTableItem/RequestsTableItem + +# components/RequestsTableItem/RequestsTableItem + +## Interfaces + +- [InterfaceRequestsListItem](interfaces/InterfaceRequestsListItem.md) + +## Functions + +- [default](functions/default.md) diff --git a/docs/docs/auto-docs/components/RequestsTableItem/RequestsTableItem/functions/default.md b/docs/docs/auto-docs/components/RequestsTableItem/RequestsTableItem/functions/default.md new file mode 100644 index 0000000000..0aea6041b8 --- /dev/null +++ b/docs/docs/auto-docs/components/RequestsTableItem/RequestsTableItem/functions/default.md @@ -0,0 +1,31 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [components/RequestsTableItem/RequestsTableItem](../README.md) / default + +# Function: default() + +> **default**(`props`): `Element` + +Defined in: [src/components/RequestsTableItem/RequestsTableItem.tsx:45](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/RequestsTableItem/RequestsTableItem.tsx#L45) + +Renders a table row item for a membership request. + +This component displays user details and provides buttons to accept or reject +the membership request. It also handles showing success or error messages using +toast notifications. + +## Parameters + +### props + +`Props` + +The props object containing request details, index, and state reset function. + +## Returns + +`Element` + +The JSX element representing the RequestsTableItem. diff --git a/docs/docs/auto-docs/components/RequestsTableItem/RequestsTableItem/interfaces/InterfaceRequestsListItem.md b/docs/docs/auto-docs/components/RequestsTableItem/RequestsTableItem/interfaces/InterfaceRequestsListItem.md new file mode 100644 index 0000000000..9b2588a020 --- /dev/null +++ b/docs/docs/auto-docs/components/RequestsTableItem/RequestsTableItem/interfaces/InterfaceRequestsListItem.md @@ -0,0 +1,39 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [components/RequestsTableItem/RequestsTableItem](../README.md) / InterfaceRequestsListItem + +# Interface: InterfaceRequestsListItem + +Defined in: [src/components/RequestsTableItem/RequestsTableItem.tsx:16](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/RequestsTableItem/RequestsTableItem.tsx#L16) + +Represents a membership request in the requests table. + +## Properties + +### \_id + +> **\_id**: `string` + +Defined in: [src/components/RequestsTableItem/RequestsTableItem.tsx:17](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/RequestsTableItem/RequestsTableItem.tsx#L17) + +*** + +### user + +> **user**: `object` + +Defined in: [src/components/RequestsTableItem/RequestsTableItem.tsx:18](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/RequestsTableItem/RequestsTableItem.tsx#L18) + +#### email + +> **email**: `string` + +#### firstName + +> **firstName**: `string` + +#### lastName + +> **lastName**: `string` diff --git a/docs/docs/auto-docs/components/RequestsTableItem/RequestsTableItemMocks/README.md b/docs/docs/auto-docs/components/RequestsTableItem/RequestsTableItemMocks/README.md new file mode 100644 index 0000000000..cc799b603d --- /dev/null +++ b/docs/docs/auto-docs/components/RequestsTableItem/RequestsTableItemMocks/README.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / components/RequestsTableItem/RequestsTableItemMocks + +# components/RequestsTableItem/RequestsTableItemMocks + +## Variables + +- [MOCKS](variables/MOCKS.md) diff --git a/docs/docs/auto-docs/components/RequestsTableItem/RequestsTableItemMocks/variables/MOCKS.md b/docs/docs/auto-docs/components/RequestsTableItem/RequestsTableItemMocks/variables/MOCKS.md new file mode 100644 index 0000000000..78c10bb789 --- /dev/null +++ b/docs/docs/auto-docs/components/RequestsTableItem/RequestsTableItemMocks/variables/MOCKS.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [components/RequestsTableItem/RequestsTableItemMocks](../README.md) / MOCKS + +# Variable: MOCKS + +> `const` **MOCKS**: (\{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `id`: `string`; \}; \}; `result`: \{ `data`: \{ `acceptMembershipRequest`: \{ `_id`: `string`; \}; `rejectMembershipRequest`: `undefined`; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `id`: `string`; \}; \}; `result`: \{ `data`: \{ `acceptMembershipRequest`: `undefined`; `rejectMembershipRequest`: \{ `_id`: `string`; \}; \}; \}; \})[] + +Defined in: [src/components/RequestsTableItem/RequestsTableItemMocks.ts:6](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/RequestsTableItem/RequestsTableItemMocks.ts#L6) diff --git a/docs/docs/auto-docs/components/SecuredRoute/SecuredRoute/README.md b/docs/docs/auto-docs/components/SecuredRoute/SecuredRoute/README.md new file mode 100644 index 0000000000..3f41aee770 --- /dev/null +++ b/docs/docs/auto-docs/components/SecuredRoute/SecuredRoute/README.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / components/SecuredRoute/SecuredRoute + +# components/SecuredRoute/SecuredRoute + +## Functions + +- [default](functions/default.md) diff --git a/docs/docs/auto-docs/components/SecuredRoute/SecuredRoute/functions/default.md b/docs/docs/auto-docs/components/SecuredRoute/SecuredRoute/functions/default.md new file mode 100644 index 0000000000..e81bfb88b7 --- /dev/null +++ b/docs/docs/auto-docs/components/SecuredRoute/SecuredRoute/functions/default.md @@ -0,0 +1,22 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [components/SecuredRoute/SecuredRoute](../README.md) / default + +# Function: default() + +> **default**(): `Element` + +Defined in: [src/components/SecuredRoute/SecuredRoute.tsx:16](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/SecuredRoute/SecuredRoute.tsx#L16) + +A route guard that checks if the user is logged in and has the necessary permissions. + +If the user is logged in and has an admin role set, it renders the child routes. +Otherwise, it redirects to the home page or shows a 404 page if admin role is not set. + +## Returns + +`Element` + +The JSX element representing the secured route. diff --git a/docs/docs/auto-docs/components/SuperAdminScreen/SuperAdminScreen/README.md b/docs/docs/auto-docs/components/SuperAdminScreen/SuperAdminScreen/README.md new file mode 100644 index 0000000000..2bc917ec5e --- /dev/null +++ b/docs/docs/auto-docs/components/SuperAdminScreen/SuperAdminScreen/README.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / components/SuperAdminScreen/SuperAdminScreen + +# components/SuperAdminScreen/SuperAdminScreen + +## Functions + +- [default](functions/default.md) diff --git a/docs/docs/auto-docs/components/SuperAdminScreen/SuperAdminScreen/functions/default.md b/docs/docs/auto-docs/components/SuperAdminScreen/SuperAdminScreen/functions/default.md new file mode 100644 index 0000000000..939eca5398 --- /dev/null +++ b/docs/docs/auto-docs/components/SuperAdminScreen/SuperAdminScreen/functions/default.md @@ -0,0 +1,20 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [components/SuperAdminScreen/SuperAdminScreen](../README.md) / default + +# Function: default() + +> **default**(): `Element` + +Defined in: [src/components/SuperAdminScreen/SuperAdminScreen.tsx:15](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/SuperAdminScreen/SuperAdminScreen.tsx#L15) + +The SuperAdminScreen component manages the layout for the Super Admin screen, +including handling the sidebar visibility and page title based on the current route. + +## Returns + +`Element` + +The JSX element representing the Super Admin screen layout. diff --git a/docs/docs/auto-docs/components/TableLoader/TableLoader/README.md b/docs/docs/auto-docs/components/TableLoader/TableLoader/README.md new file mode 100644 index 0000000000..4ea503163f --- /dev/null +++ b/docs/docs/auto-docs/components/TableLoader/TableLoader/README.md @@ -0,0 +1,15 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / components/TableLoader/TableLoader + +# components/TableLoader/TableLoader + +## Interfaces + +- [InterfaceTableLoader](interfaces/InterfaceTableLoader.md) + +## Functions + +- [default](functions/default.md) diff --git a/docs/docs/auto-docs/components/TableLoader/TableLoader/functions/default.md b/docs/docs/auto-docs/components/TableLoader/TableLoader/functions/default.md new file mode 100644 index 0000000000..481bce8855 --- /dev/null +++ b/docs/docs/auto-docs/components/TableLoader/TableLoader/functions/default.md @@ -0,0 +1,29 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [components/TableLoader/TableLoader](../README.md) / default + +# Function: default() + +> **default**(`props`): `Element` + +Defined in: [src/components/TableLoader/TableLoader.tsx:23](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/TableLoader/TableLoader.tsx#L23) + +The TableLoader component displays a loading skeleton for tables. +It shows a specified number of rows and columns as placeholders +with a shimmering effect to indicate loading content. + +## Parameters + +### props + +[`InterfaceTableLoader`](../interfaces/InterfaceTableLoader.md) + +The properties for the TableLoader component. + +## Returns + +`Element` + +The JSX element representing the table loader. diff --git a/docs/docs/auto-docs/components/TableLoader/TableLoader/interfaces/InterfaceTableLoader.md b/docs/docs/auto-docs/components/TableLoader/TableLoader/interfaces/InterfaceTableLoader.md new file mode 100644 index 0000000000..00af9455b2 --- /dev/null +++ b/docs/docs/auto-docs/components/TableLoader/TableLoader/interfaces/InterfaceTableLoader.md @@ -0,0 +1,33 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [components/TableLoader/TableLoader](../README.md) / InterfaceTableLoader + +# Interface: InterfaceTableLoader + +Defined in: [src/components/TableLoader/TableLoader.tsx:5](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/TableLoader/TableLoader.tsx#L5) + +## Properties + +### headerTitles? + +> `optional` **headerTitles**: `string`[] + +Defined in: [src/components/TableLoader/TableLoader.tsx:7](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/TableLoader/TableLoader.tsx#L7) + +*** + +### noOfCols? + +> `optional` **noOfCols**: `number` + +Defined in: [src/components/TableLoader/TableLoader.tsx:8](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/TableLoader/TableLoader.tsx#L8) + +*** + +### noOfRows + +> **noOfRows**: `number` + +Defined in: [src/components/TableLoader/TableLoader.tsx:6](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/TableLoader/TableLoader.tsx#L6) diff --git a/docs/docs/auto-docs/components/TagActions/TagActions/README.md b/docs/docs/auto-docs/components/TagActions/TagActions/README.md new file mode 100644 index 0000000000..b150d81f56 --- /dev/null +++ b/docs/docs/auto-docs/components/TagActions/TagActions/README.md @@ -0,0 +1,15 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / components/TagActions/TagActions + +# components/TagActions/TagActions + +## Interfaces + +- [InterfaceTagActionsProps](interfaces/InterfaceTagActionsProps.md) + +## Functions + +- [default](functions/default.md) diff --git a/docs/docs/auto-docs/components/TagActions/TagActions/functions/default.md b/docs/docs/auto-docs/components/TagActions/TagActions/functions/default.md new file mode 100644 index 0000000000..0ad7773c86 --- /dev/null +++ b/docs/docs/auto-docs/components/TagActions/TagActions/functions/default.md @@ -0,0 +1,31 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [components/TagActions/TagActions](../README.md) / default + +# Function: default() + +> **default**(`props`, `deprecatedLegacyContext`?): `ReactNode` + +Defined in: [src/components/TagActions/TagActions.tsx:44](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/TagActions/TagActions.tsx#L44) + +## Parameters + +### props + +[`InterfaceTagActionsProps`](../interfaces/InterfaceTagActionsProps.md) + +### deprecatedLegacyContext? + +`any` + +**Deprecated** + +**See** + +[React Docs](https://legacy.reactjs.org/docs/legacy-context.html#referencing-context-in-lifecycle-methods) + +## Returns + +`ReactNode` diff --git a/docs/docs/auto-docs/components/TagActions/TagActions/interfaces/InterfaceTagActionsProps.md b/docs/docs/auto-docs/components/TagActions/TagActions/interfaces/InterfaceTagActionsProps.md new file mode 100644 index 0000000000..49b4a230bf --- /dev/null +++ b/docs/docs/auto-docs/components/TagActions/TagActions/interfaces/InterfaceTagActionsProps.md @@ -0,0 +1,55 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [components/TagActions/TagActions](../README.md) / InterfaceTagActionsProps + +# Interface: InterfaceTagActionsProps + +Defined in: [src/components/TagActions/TagActions.tsx:36](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/TagActions/TagActions.tsx#L36) + +Props for the `AssignToTags` component. + +## Properties + +### hideTagActionsModal() + +> **hideTagActionsModal**: () => `void` + +Defined in: [src/components/TagActions/TagActions.tsx:38](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/TagActions/TagActions.tsx#L38) + +#### Returns + +`void` + +*** + +### t + +> **t**: `TFunction`\<`"manageTag"`\> + +Defined in: [src/components/TagActions/TagActions.tsx:40](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/TagActions/TagActions.tsx#L40) + +*** + +### tagActionsModalIsOpen + +> **tagActionsModalIsOpen**: `boolean` + +Defined in: [src/components/TagActions/TagActions.tsx:37](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/TagActions/TagActions.tsx#L37) + +*** + +### tagActionType + +> **tagActionType**: [`TagActionType`](../../../../utils/organizationTagsUtils/type-aliases/TagActionType.md) + +Defined in: [src/components/TagActions/TagActions.tsx:39](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/TagActions/TagActions.tsx#L39) + +*** + +### tCommon + +> **tCommon**: `TFunction`\<`"common"`\> + +Defined in: [src/components/TagActions/TagActions.tsx:41](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/TagActions/TagActions.tsx#L41) diff --git a/docs/docs/auto-docs/components/TagActions/TagActionsMocks/README.md b/docs/docs/auto-docs/components/TagActions/TagActionsMocks/README.md new file mode 100644 index 0000000000..039d549e67 --- /dev/null +++ b/docs/docs/auto-docs/components/TagActions/TagActionsMocks/README.md @@ -0,0 +1,13 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / components/TagActions/TagActionsMocks + +# components/TagActions/TagActionsMocks + +## Variables + +- [MOCKS](variables/MOCKS.md) +- [MOCKS\_ERROR\_ORGANIZATION\_TAGS\_QUERY](variables/MOCKS_ERROR_ORGANIZATION_TAGS_QUERY.md) +- [MOCKS\_ERROR\_SUBTAGS\_QUERY](variables/MOCKS_ERROR_SUBTAGS_QUERY.md) diff --git a/docs/docs/auto-docs/components/TagActions/TagActionsMocks/variables/MOCKS.md b/docs/docs/auto-docs/components/TagActions/TagActionsMocks/variables/MOCKS.md new file mode 100644 index 0000000000..ad4f640364 --- /dev/null +++ b/docs/docs/auto-docs/components/TagActions/TagActionsMocks/variables/MOCKS.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [components/TagActions/TagActionsMocks](../README.md) / MOCKS + +# Variable: MOCKS + +> `const` **MOCKS**: (\{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `after`: `string`; `currentTagId`: `undefined`; `first`: `number`; `id`: `string`; `selectedTagIds`: `undefined`; `where`: \{ `name`: \{ `starts_with`: `string`; \}; \}; \}; \}; `result`: \{ `data`: \{ `assignToUserTags`: `undefined`; `getChildTags`: `undefined`; `organizations`: `object`[]; `removeFromUserTags`: `undefined`; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `after`: `undefined`; `currentTagId`: `undefined`; `first`: `number`; `id`: `string`; `selectedTagIds`: `undefined`; `where`: \{ `name`: \{ `starts_with`: `string`; \}; \}; \}; \}; `result`: \{ `data`: \{ `assignToUserTags`: `undefined`; `getChildTags`: `undefined`; `organizations`: `object`[]; `removeFromUserTags`: `undefined`; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `after`: `undefined`; `currentTagId`: `undefined`; `first`: `number`; `id`: `string`; `selectedTagIds`: `undefined`; `where`: `undefined`; \}; \}; `result`: \{ `data`: \{ `assignToUserTags`: `undefined`; `getChildTags`: \{ `ancestorTags`: `any`[]; `childTags`: \{ `edges`: `object`[]; `pageInfo`: \{ `endCursor`: `string`; `hasNextPage`: `boolean`; `hasPreviousPage`: `boolean`; `startCursor`: `string`; \}; `totalCount`: `number`; \}; `name`: `string`; \}; `organizations`: `undefined`; `removeFromUserTags`: `undefined`; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `after`: `string`; `currentTagId`: `undefined`; `first`: `number`; `id`: `string`; `selectedTagIds`: `undefined`; `where`: `undefined`; \}; \}; `result`: \{ `data`: \{ `assignToUserTags`: `undefined`; `getChildTags`: \{ `ancestorTags`: `any`[]; `childTags`: \{ `edges`: `object`[]; `pageInfo`: \{ `endCursor`: `string`; `hasNextPage`: `boolean`; `hasPreviousPage`: `boolean`; `startCursor`: `string`; \}; `totalCount`: `number`; \}; `name`: `string`; \}; `organizations`: `undefined`; `removeFromUserTags`: `undefined`; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `after`: `undefined`; `currentTagId`: `string`; `first`: `undefined`; `id`: `undefined`; `selectedTagIds`: `string`[]; `where`: `undefined`; \}; \}; `result`: \{ `data`: \{ `assignToUserTags`: \{ `_id`: `string`; \}; `getChildTags`: `undefined`; `organizations`: `undefined`; `removeFromUserTags`: `undefined`; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `after`: `undefined`; `currentTagId`: `string`; `first`: `undefined`; `id`: `undefined`; `selectedTagIds`: `string`[]; `where`: `undefined`; \}; \}; `result`: \{ `data`: \{ `assignToUserTags`: `undefined`; `getChildTags`: `undefined`; `organizations`: `undefined`; `removeFromUserTags`: \{ `_id`: `string`; \}; \}; \}; \})[] + +Defined in: [src/components/TagActions/TagActionsMocks.ts:9](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/TagActions/TagActionsMocks.ts#L9) diff --git a/docs/docs/auto-docs/components/TagActions/TagActionsMocks/variables/MOCKS_ERROR_ORGANIZATION_TAGS_QUERY.md b/docs/docs/auto-docs/components/TagActions/TagActionsMocks/variables/MOCKS_ERROR_ORGANIZATION_TAGS_QUERY.md new file mode 100644 index 0000000000..97615e9350 --- /dev/null +++ b/docs/docs/auto-docs/components/TagActions/TagActionsMocks/variables/MOCKS_ERROR_ORGANIZATION_TAGS_QUERY.md @@ -0,0 +1,49 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [components/TagActions/TagActionsMocks](../README.md) / MOCKS\_ERROR\_ORGANIZATION\_TAGS\_QUERY + +# Variable: MOCKS\_ERROR\_ORGANIZATION\_TAGS\_QUERY + +> `const` **MOCKS\_ERROR\_ORGANIZATION\_TAGS\_QUERY**: `object`[] + +Defined in: [src/components/TagActions/TagActionsMocks.ts:622](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/TagActions/TagActionsMocks.ts#L622) + +## Type declaration + +### error + +> **error**: `Error` + +### request + +> **request**: `object` + +#### request.query + +> **query**: `DocumentNode` = `ORGANIZATION_USER_TAGS_LIST` + +#### request.variables + +> **variables**: `object` + +#### request.variables.first + +> **first**: `number` = `TAGS_QUERY_DATA_CHUNK_SIZE` + +#### request.variables.id + +> **id**: `string` = `'123'` + +#### request.variables.where + +> **where**: `object` + +#### request.variables.where.name + +> **name**: `object` + +#### request.variables.where.name.starts\_with + +> **starts\_with**: `string` = `''` diff --git a/docs/docs/auto-docs/components/TagActions/TagActionsMocks/variables/MOCKS_ERROR_SUBTAGS_QUERY.md b/docs/docs/auto-docs/components/TagActions/TagActionsMocks/variables/MOCKS_ERROR_SUBTAGS_QUERY.md new file mode 100644 index 0000000000..7fc88c0435 --- /dev/null +++ b/docs/docs/auto-docs/components/TagActions/TagActionsMocks/variables/MOCKS_ERROR_SUBTAGS_QUERY.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [components/TagActions/TagActionsMocks](../README.md) / MOCKS\_ERROR\_SUBTAGS\_QUERY + +# Variable: MOCKS\_ERROR\_SUBTAGS\_QUERY + +> `const` **MOCKS\_ERROR\_SUBTAGS\_QUERY**: (\{ `error`: `undefined`; `request`: \{ `query`: `DocumentNode`; `variables`: \{ `first`: `number`; `id`: `string`; `where`: \{ `name`: \{ `starts_with`: `string`; \}; \}; \}; \}; `result`: \{ `data`: \{ `organizations`: `object`[]; \}; \}; \} \| \{ `error`: `Error`; `request`: \{ `query`: `DocumentNode`; `variables`: \{ `first`: `number`; `id`: `string`; `where`: `undefined`; \}; \}; `result`: `undefined`; \})[] + +Defined in: [src/components/TagActions/TagActionsMocks.ts:636](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/TagActions/TagActionsMocks.ts#L636) diff --git a/docs/docs/auto-docs/components/TagActions/TagNode/README.md b/docs/docs/auto-docs/components/TagActions/TagNode/README.md new file mode 100644 index 0000000000..094685e530 --- /dev/null +++ b/docs/docs/auto-docs/components/TagActions/TagNode/README.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / components/TagActions/TagNode + +# components/TagActions/TagNode + +## Functions + +- [default](functions/default.md) diff --git a/docs/docs/auto-docs/components/TagActions/TagNode/functions/default.md b/docs/docs/auto-docs/components/TagActions/TagNode/functions/default.md new file mode 100644 index 0000000000..d106ddfe7e --- /dev/null +++ b/docs/docs/auto-docs/components/TagActions/TagNode/functions/default.md @@ -0,0 +1,33 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [components/TagActions/TagNode](../README.md) / default + +# Function: default() + +> **default**(`props`, `deprecatedLegacyContext`?): `ReactNode` + +Defined in: [src/components/TagActions/TagNode.tsx:29](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/TagActions/TagNode.tsx#L29) + +Renders the Tags which can be expanded to list subtags. + +## Parameters + +### props + +`InterfaceTagNodeProps` + +### deprecatedLegacyContext? + +`any` + +**Deprecated** + +**See** + +[React Docs](https://legacy.reactjs.org/docs/legacy-context.html#referencing-context-in-lifecycle-methods) + +## Returns + +`ReactNode` diff --git a/docs/docs/auto-docs/components/TagActions/TagNodeMocks/README.md b/docs/docs/auto-docs/components/TagActions/TagNodeMocks/README.md new file mode 100644 index 0000000000..a5a0bd060a --- /dev/null +++ b/docs/docs/auto-docs/components/TagActions/TagNodeMocks/README.md @@ -0,0 +1,12 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / components/TagActions/TagNodeMocks + +# components/TagActions/TagNodeMocks + +## Variables + +- [MOCKS\_ERROR\_SUBTAGS\_QUERY1](variables/MOCKS_ERROR_SUBTAGS_QUERY1.md) +- [MOCKS1](variables/MOCKS1.md) diff --git a/docs/docs/auto-docs/components/TagActions/TagNodeMocks/variables/MOCKS1.md b/docs/docs/auto-docs/components/TagActions/TagNodeMocks/variables/MOCKS1.md new file mode 100644 index 0000000000..2c546bf9c0 --- /dev/null +++ b/docs/docs/auto-docs/components/TagActions/TagNodeMocks/variables/MOCKS1.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [components/TagActions/TagNodeMocks](../README.md) / MOCKS1 + +# Variable: MOCKS1 + +> `const` **MOCKS1**: (\{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `after`: `undefined`; `first`: `number`; `id`: `string`; \}; \}; `result`: \{ `data`: \{ `getChildTags`: \{ `__typename`: `string`; `childTags`: \{ `__typename`: `string`; `edges`: `object`[]; `pageInfo`: \{ `__typename`: `string`; `endCursor`: `string`; `hasNextPage`: `boolean`; \}; \}; \}; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `after`: `string`; `first`: `number`; `id`: `string`; \}; \}; `result`: \{ `data`: \{ `getChildTags`: \{ `__typename`: `string`; `childTags`: \{ `__typename`: `string`; `edges`: `object`[]; `pageInfo`: \{ `__typename`: `string`; `endCursor`: `string`; `hasNextPage`: `boolean`; \}; \}; \}; \}; \}; \})[] + +Defined in: [src/components/TagActions/TagNodeMocks.ts:3](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/TagActions/TagNodeMocks.ts#L3) diff --git a/docs/docs/auto-docs/components/TagActions/TagNodeMocks/variables/MOCKS_ERROR_SUBTAGS_QUERY1.md b/docs/docs/auto-docs/components/TagActions/TagNodeMocks/variables/MOCKS_ERROR_SUBTAGS_QUERY1.md new file mode 100644 index 0000000000..b9b1190395 --- /dev/null +++ b/docs/docs/auto-docs/components/TagActions/TagNodeMocks/variables/MOCKS_ERROR_SUBTAGS_QUERY1.md @@ -0,0 +1,37 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [components/TagActions/TagNodeMocks](../README.md) / MOCKS\_ERROR\_SUBTAGS\_QUERY1 + +# Variable: MOCKS\_ERROR\_SUBTAGS\_QUERY1 + +> `const` **MOCKS\_ERROR\_SUBTAGS\_QUERY1**: `object`[] + +Defined in: [src/components/TagActions/TagNodeMocks.ts:64](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/TagActions/TagNodeMocks.ts#L64) + +## Type declaration + +### error + +> **error**: `Error` + +### request + +> **request**: `object` + +#### request.query + +> **query**: `DocumentNode` = `USER_TAG_SUB_TAGS` + +#### request.variables + +> **variables**: `object` + +#### request.variables.first + +> **first**: `number` = `10` + +#### request.variables.id + +> **id**: `string` = `'1'` diff --git a/docs/docs/auto-docs/components/UpdateSession/UpdateSession/README.md b/docs/docs/auto-docs/components/UpdateSession/UpdateSession/README.md new file mode 100644 index 0000000000..803802d4f8 --- /dev/null +++ b/docs/docs/auto-docs/components/UpdateSession/UpdateSession/README.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / components/UpdateSession/UpdateSession + +# components/UpdateSession/UpdateSession + +## Functions + +- [default](functions/default.md) diff --git a/docs/docs/auto-docs/components/UpdateSession/UpdateSession/functions/default.md b/docs/docs/auto-docs/components/UpdateSession/UpdateSession/functions/default.md new file mode 100644 index 0000000000..0554cf2c21 --- /dev/null +++ b/docs/docs/auto-docs/components/UpdateSession/UpdateSession/functions/default.md @@ -0,0 +1,31 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [components/UpdateSession/UpdateSession](../README.md) / default + +# Function: default() + +> **default**(`props`, `deprecatedLegacyContext`?): `ReactNode` + +Defined in: [src/components/UpdateSession/UpdateSession.tsx:29](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/UpdateSession/UpdateSession.tsx#L29) + +## Parameters + +### props + +`TestInterfaceUpdateTimeoutProps` + +### deprecatedLegacyContext? + +`any` + +**Deprecated** + +**See** + +[React Docs](https://legacy.reactjs.org/docs/legacy-context.html#referencing-context-in-lifecycle-methods) + +## Returns + +`ReactNode` diff --git a/docs/docs/auto-docs/components/UserListCard/UserListCard/README.md b/docs/docs/auto-docs/components/UserListCard/UserListCard/README.md new file mode 100644 index 0000000000..c6f01125f2 --- /dev/null +++ b/docs/docs/auto-docs/components/UserListCard/UserListCard/README.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / components/UserListCard/UserListCard + +# components/UserListCard/UserListCard + +## Functions + +- [default](functions/default.md) diff --git a/docs/docs/auto-docs/components/UserListCard/UserListCard/functions/default.md b/docs/docs/auto-docs/components/UserListCard/UserListCard/functions/default.md new file mode 100644 index 0000000000..4b801b1b54 --- /dev/null +++ b/docs/docs/auto-docs/components/UserListCard/UserListCard/functions/default.md @@ -0,0 +1,28 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [components/UserListCard/UserListCard](../README.md) / default + +# Function: default() + +> **default**(`props`): `JSX.Element` + +Defined in: [src/components/UserListCard/UserListCard.tsx:27](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/UserListCard/UserListCard.tsx#L27) + +The UserListCard component allows for adding a user as an admin in a specific organization. +It uses a button to trigger a mutation for updating the user's role. + +## Parameters + +### props + +`InterfaceUserListCardProps` + +The properties for the UserListCard component. + +## Returns + +`JSX.Element` + +The JSX element representing the user list card. diff --git a/docs/docs/auto-docs/components/UserPasswordUpdate/UserPasswordUpdate/README.md b/docs/docs/auto-docs/components/UserPasswordUpdate/UserPasswordUpdate/README.md new file mode 100644 index 0000000000..f40a70775b --- /dev/null +++ b/docs/docs/auto-docs/components/UserPasswordUpdate/UserPasswordUpdate/README.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / components/UserPasswordUpdate/UserPasswordUpdate + +# components/UserPasswordUpdate/UserPasswordUpdate + +## Functions + +- [default](functions/default.md) diff --git a/docs/docs/auto-docs/components/UserPasswordUpdate/UserPasswordUpdate/functions/default.md b/docs/docs/auto-docs/components/UserPasswordUpdate/UserPasswordUpdate/functions/default.md new file mode 100644 index 0000000000..09bce2296d --- /dev/null +++ b/docs/docs/auto-docs/components/UserPasswordUpdate/UserPasswordUpdate/functions/default.md @@ -0,0 +1,38 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [components/UserPasswordUpdate/UserPasswordUpdate](../README.md) / default + +# Function: default() + +> **default**(`props`, `deprecatedLegacyContext`?): `ReactNode` + +Defined in: [src/components/UserPasswordUpdate/UserPasswordUpdate.tsx:23](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/UserPasswordUpdate/UserPasswordUpdate.tsx#L23) + +UserUpdate component allows users to update their passwords. +It handles form submission and communicates with the backend to update the user's password. + +## Parameters + +### props + +`InterfaceUserPasswordUpdateProps` + +The properties for the UserUpdate component. + +### deprecatedLegacyContext? + +`any` + +**Deprecated** + +**See** + +[React Docs](https://legacy.reactjs.org/docs/legacy-context.html#referencing-context-in-lifecycle-methods) + +## Returns + +`ReactNode` + +The JSX element for updating user password. diff --git a/docs/docs/auto-docs/components/UserPasswordUpdate/UserPasswordUpdateMocks/README.md b/docs/docs/auto-docs/components/UserPasswordUpdate/UserPasswordUpdateMocks/README.md new file mode 100644 index 0000000000..3282ccc987 --- /dev/null +++ b/docs/docs/auto-docs/components/UserPasswordUpdate/UserPasswordUpdateMocks/README.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / components/UserPasswordUpdate/UserPasswordUpdateMocks + +# components/UserPasswordUpdate/UserPasswordUpdateMocks + +## Variables + +- [MOCKS](variables/MOCKS.md) diff --git a/docs/docs/auto-docs/components/UserPasswordUpdate/UserPasswordUpdateMocks/variables/MOCKS.md b/docs/docs/auto-docs/components/UserPasswordUpdate/UserPasswordUpdateMocks/variables/MOCKS.md new file mode 100644 index 0000000000..8ceefeff31 --- /dev/null +++ b/docs/docs/auto-docs/components/UserPasswordUpdate/UserPasswordUpdateMocks/variables/MOCKS.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [components/UserPasswordUpdate/UserPasswordUpdateMocks](../README.md) / MOCKS + +# Variable: MOCKS + +> `const` **MOCKS**: (\{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `confirmNewPassword`: `string`; `newPassword`: `string`; `previousPassword`: `string`; \}; \}; `result`: \{ `data`: \{ `users`: `object`[]; \}; `errors`: `undefined`; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `confirmNewPassword`: `string`; `newPassword`: `string`; `previousPassword`: `string`; \}; \}; `result`: \{ `data`: `undefined`; `errors`: `object`[]; \}; \})[] + +Defined in: [src/components/UserPasswordUpdate/UserPasswordUpdateMocks.ts:3](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/UserPasswordUpdate/UserPasswordUpdateMocks.ts#L3) diff --git a/docs/docs/auto-docs/components/UserPortal/ChatRoom/ChatRoom/README.md b/docs/docs/auto-docs/components/UserPortal/ChatRoom/ChatRoom/README.md new file mode 100644 index 0000000000..278150d222 --- /dev/null +++ b/docs/docs/auto-docs/components/UserPortal/ChatRoom/ChatRoom/README.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / components/UserPortal/ChatRoom/ChatRoom + +# components/UserPortal/ChatRoom/ChatRoom + +## Functions + +- [default](functions/default.md) diff --git a/docs/docs/auto-docs/components/UserPortal/ChatRoom/ChatRoom/functions/default.md b/docs/docs/auto-docs/components/UserPortal/ChatRoom/ChatRoom/functions/default.md new file mode 100644 index 0000000000..2823b370db --- /dev/null +++ b/docs/docs/auto-docs/components/UserPortal/ChatRoom/ChatRoom/functions/default.md @@ -0,0 +1,21 @@ +[**talawa-admin**](../../../../../README.md) + +*** + +[talawa-admin](../../../../../modules.md) / [components/UserPortal/ChatRoom/ChatRoom](../README.md) / default + +# Function: default() + +> **default**(`props`): `JSX.Element` + +Defined in: [src/components/UserPortal/ChatRoom/ChatRoom.tsx:100](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/UserPortal/ChatRoom/ChatRoom.tsx#L100) + +## Parameters + +### props + +`InterfaceChatRoomProps` + +## Returns + +`JSX.Element` diff --git a/docs/docs/auto-docs/components/UserPortal/CommentCard/CommentCard/README.md b/docs/docs/auto-docs/components/UserPortal/CommentCard/CommentCard/README.md new file mode 100644 index 0000000000..b611b74f48 --- /dev/null +++ b/docs/docs/auto-docs/components/UserPortal/CommentCard/CommentCard/README.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / components/UserPortal/CommentCard/CommentCard + +# components/UserPortal/CommentCard/CommentCard + +## Functions + +- [default](functions/default.md) diff --git a/docs/docs/auto-docs/components/UserPortal/CommentCard/CommentCard/functions/default.md b/docs/docs/auto-docs/components/UserPortal/CommentCard/CommentCard/functions/default.md new file mode 100644 index 0000000000..7fbfb9fdf0 --- /dev/null +++ b/docs/docs/auto-docs/components/UserPortal/CommentCard/CommentCard/functions/default.md @@ -0,0 +1,30 @@ +[**talawa-admin**](../../../../../README.md) + +*** + +[talawa-admin](../../../../../modules.md) / [components/UserPortal/CommentCard/CommentCard](../README.md) / default + +# Function: default() + +> **default**(`props`): `JSX.Element` + +Defined in: [src/components/UserPortal/CommentCard/CommentCard.tsx:51](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/UserPortal/CommentCard/CommentCard.tsx#L51) + +Displays a card for a single comment with options to like or dislike the comment. + +Shows the commenter's name, the comment text, and the number of likes. +Allows the user to like or dislike the comment. The button icon changes based on whether the comment is liked by the user. + +## Parameters + +### props + +`InterfaceCommentCardProps` + +The properties passed to the component. + +## Returns + +`JSX.Element` + +The rendered comment card component. diff --git a/docs/docs/auto-docs/components/UserPortal/ContactCard/ContactCard/README.md b/docs/docs/auto-docs/components/UserPortal/ContactCard/ContactCard/README.md new file mode 100644 index 0000000000..829e0d2ed6 --- /dev/null +++ b/docs/docs/auto-docs/components/UserPortal/ContactCard/ContactCard/README.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / components/UserPortal/ContactCard/ContactCard + +# components/UserPortal/ContactCard/ContactCard + +## Functions + +- [default](functions/default.md) diff --git a/docs/docs/auto-docs/components/UserPortal/ContactCard/ContactCard/functions/default.md b/docs/docs/auto-docs/components/UserPortal/ContactCard/ContactCard/functions/default.md new file mode 100644 index 0000000000..d632b8fe90 --- /dev/null +++ b/docs/docs/auto-docs/components/UserPortal/ContactCard/ContactCard/functions/default.md @@ -0,0 +1,31 @@ +[**talawa-admin**](../../../../../README.md) + +*** + +[talawa-admin](../../../../../modules.md) / [components/UserPortal/ContactCard/ContactCard](../README.md) / default + +# Function: default() + +> **default**(`props`): `JSX.Element` + +Defined in: [src/components/UserPortal/ContactCard/ContactCard.tsx:36](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/UserPortal/ContactCard/ContactCard.tsx#L36) + +Displays a card for a contact in a contact list. + +Shows the contact's name, email, and an image or avatar. +The card changes background color based on whether it is selected. +Clicking on the card sets it as the selected contact and updates the contact name. + +## Parameters + +### props + +`InterfaceContactCardProps` + +The properties passed to the component. + +## Returns + +`JSX.Element` + +The rendered contact card component. diff --git a/docs/docs/auto-docs/components/UserPortal/CreateDirectChat/CreateDirectChat/README.md b/docs/docs/auto-docs/components/UserPortal/CreateDirectChat/CreateDirectChat/README.md new file mode 100644 index 0000000000..ae31d45ce2 --- /dev/null +++ b/docs/docs/auto-docs/components/UserPortal/CreateDirectChat/CreateDirectChat/README.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / components/UserPortal/CreateDirectChat/CreateDirectChat + +# components/UserPortal/CreateDirectChat/CreateDirectChat + +## Functions + +- [default](functions/default.md) diff --git a/docs/docs/auto-docs/components/UserPortal/CreateDirectChat/CreateDirectChat/functions/default.md b/docs/docs/auto-docs/components/UserPortal/CreateDirectChat/CreateDirectChat/functions/default.md new file mode 100644 index 0000000000..69616f6570 --- /dev/null +++ b/docs/docs/auto-docs/components/UserPortal/CreateDirectChat/CreateDirectChat/functions/default.md @@ -0,0 +1,21 @@ +[**talawa-admin**](../../../../../README.md) + +*** + +[talawa-admin](../../../../../modules.md) / [components/UserPortal/CreateDirectChat/CreateDirectChat](../README.md) / default + +# Function: default() + +> **default**(`__namedParameters`): `JSX.Element` + +Defined in: [src/components/UserPortal/CreateDirectChat/CreateDirectChat.tsx:60](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/UserPortal/CreateDirectChat/CreateDirectChat.tsx#L60) + +## Parameters + +### \_\_namedParameters + +`InterfaceCreateDirectChatProps` + +## Returns + +`JSX.Element` diff --git a/docs/docs/auto-docs/components/UserPortal/CreateGroupChat/CreateGroupChat/README.md b/docs/docs/auto-docs/components/UserPortal/CreateGroupChat/CreateGroupChat/README.md new file mode 100644 index 0000000000..e1e42b76cb --- /dev/null +++ b/docs/docs/auto-docs/components/UserPortal/CreateGroupChat/CreateGroupChat/README.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / components/UserPortal/CreateGroupChat/CreateGroupChat + +# components/UserPortal/CreateGroupChat/CreateGroupChat + +## Functions + +- [default](functions/default.md) diff --git a/docs/docs/auto-docs/components/UserPortal/CreateGroupChat/CreateGroupChat/functions/default.md b/docs/docs/auto-docs/components/UserPortal/CreateGroupChat/CreateGroupChat/functions/default.md new file mode 100644 index 0000000000..ed238f4579 --- /dev/null +++ b/docs/docs/auto-docs/components/UserPortal/CreateGroupChat/CreateGroupChat/functions/default.md @@ -0,0 +1,21 @@ +[**talawa-admin**](../../../../../README.md) + +*** + +[talawa-admin](../../../../../modules.md) / [components/UserPortal/CreateGroupChat/CreateGroupChat](../README.md) / default + +# Function: default() + +> **default**(`__namedParameters`): `JSX.Element` + +Defined in: [src/components/UserPortal/CreateGroupChat/CreateGroupChat.tsx:63](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/UserPortal/CreateGroupChat/CreateGroupChat.tsx#L63) + +## Parameters + +### \_\_namedParameters + +`InterfaceCreateGroupChatProps` + +## Returns + +`JSX.Element` diff --git a/docs/docs/auto-docs/components/UserPortal/DonationCard/DonationCard/README.md b/docs/docs/auto-docs/components/UserPortal/DonationCard/DonationCard/README.md new file mode 100644 index 0000000000..0e4045098f --- /dev/null +++ b/docs/docs/auto-docs/components/UserPortal/DonationCard/DonationCard/README.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / components/UserPortal/DonationCard/DonationCard + +# components/UserPortal/DonationCard/DonationCard + +## Functions + +- [default](functions/default.md) diff --git a/docs/docs/auto-docs/components/UserPortal/DonationCard/DonationCard/functions/default.md b/docs/docs/auto-docs/components/UserPortal/DonationCard/DonationCard/functions/default.md new file mode 100644 index 0000000000..f0c6b4cb24 --- /dev/null +++ b/docs/docs/auto-docs/components/UserPortal/DonationCard/DonationCard/functions/default.md @@ -0,0 +1,30 @@ +[**talawa-admin**](../../../../../README.md) + +*** + +[talawa-admin](../../../../../modules.md) / [components/UserPortal/DonationCard/DonationCard](../README.md) / default + +# Function: default() + +> **default**(`props`): `JSX.Element` + +Defined in: [src/components/UserPortal/DonationCard/DonationCard.tsx:19](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/UserPortal/DonationCard/DonationCard.tsx#L19) + +Displays a card with details about a donation. + +Shows the donor's name, the amount donated, and the date of the donation. +Includes a button to view more details about the donation. + +## Parameters + +### props + +[`InterfaceDonationCardProps`](../../../../../screens/UserPortal/Donate/Donate/interfaces/InterfaceDonationCardProps.md) + +The properties passed to the component. + +## Returns + +`JSX.Element` + +The rendered donation card component. diff --git a/docs/docs/auto-docs/components/UserPortal/EventCard/EventCard/README.md b/docs/docs/auto-docs/components/UserPortal/EventCard/EventCard/README.md new file mode 100644 index 0000000000..4c08daf4d5 --- /dev/null +++ b/docs/docs/auto-docs/components/UserPortal/EventCard/EventCard/README.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / components/UserPortal/EventCard/EventCard + +# components/UserPortal/EventCard/EventCard + +## Functions + +- [default](functions/default.md) diff --git a/docs/docs/auto-docs/components/UserPortal/EventCard/EventCard/functions/default.md b/docs/docs/auto-docs/components/UserPortal/EventCard/EventCard/functions/default.md new file mode 100644 index 0000000000..048d9adf5e --- /dev/null +++ b/docs/docs/auto-docs/components/UserPortal/EventCard/EventCard/functions/default.md @@ -0,0 +1,31 @@ +[**talawa-admin**](../../../../../README.md) + +*** + +[talawa-admin](../../../../../modules.md) / [components/UserPortal/EventCard/EventCard](../README.md) / default + +# Function: default() + +> **default**(`props`): `JSX.Element` + +Defined in: [src/components/UserPortal/EventCard/EventCard.tsx:63](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/UserPortal/EventCard/EventCard.tsx#L63) + +Displays information about an event and provides an option to register for it. + +Shows the event's title, description, location, start and end dates and times, +creator's name, and registration status. Includes a button to register for the event +if the user is not already registered. + +## Parameters + +### props + +`InterfaceEventCardProps` + +The properties for the event card. + +## Returns + +`JSX.Element` + +The event card component. diff --git a/docs/docs/auto-docs/components/UserPortal/OrganizationCard/OrganizationCard/README.md b/docs/docs/auto-docs/components/UserPortal/OrganizationCard/OrganizationCard/README.md new file mode 100644 index 0000000000..25b71e5469 --- /dev/null +++ b/docs/docs/auto-docs/components/UserPortal/OrganizationCard/OrganizationCard/README.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / components/UserPortal/OrganizationCard/OrganizationCard + +# components/UserPortal/OrganizationCard/OrganizationCard + +## Functions + +- [default](functions/default.md) diff --git a/docs/docs/auto-docs/components/UserPortal/OrganizationCard/OrganizationCard/functions/default.md b/docs/docs/auto-docs/components/UserPortal/OrganizationCard/OrganizationCard/functions/default.md new file mode 100644 index 0000000000..1c973e6741 --- /dev/null +++ b/docs/docs/auto-docs/components/UserPortal/OrganizationCard/OrganizationCard/functions/default.md @@ -0,0 +1,21 @@ +[**talawa-admin**](../../../../../README.md) + +*** + +[talawa-admin](../../../../../modules.md) / [components/UserPortal/OrganizationCard/OrganizationCard](../README.md) / default + +# Function: default() + +> **default**(`props`): `JSX.Element` + +Defined in: [src/components/UserPortal/OrganizationCard/OrganizationCard.tsx:73](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/UserPortal/OrganizationCard/OrganizationCard.tsx#L73) + +## Parameters + +### props + +`InterfaceOrganizationCardProps` + +## Returns + +`JSX.Element` diff --git a/docs/docs/auto-docs/components/UserPortal/OrganizationNavbar/OrganizationNavbar/README.md b/docs/docs/auto-docs/components/UserPortal/OrganizationNavbar/OrganizationNavbar/README.md new file mode 100644 index 0000000000..5677238173 --- /dev/null +++ b/docs/docs/auto-docs/components/UserPortal/OrganizationNavbar/OrganizationNavbar/README.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / components/UserPortal/OrganizationNavbar/OrganizationNavbar + +# components/UserPortal/OrganizationNavbar/OrganizationNavbar + +## Functions + +- [default](functions/default.md) diff --git a/docs/docs/auto-docs/components/UserPortal/OrganizationNavbar/OrganizationNavbar/functions/default.md b/docs/docs/auto-docs/components/UserPortal/OrganizationNavbar/OrganizationNavbar/functions/default.md new file mode 100644 index 0000000000..adb107ead3 --- /dev/null +++ b/docs/docs/auto-docs/components/UserPortal/OrganizationNavbar/OrganizationNavbar/functions/default.md @@ -0,0 +1,33 @@ +[**talawa-admin**](../../../../../README.md) + +*** + +[talawa-admin](../../../../../modules.md) / [components/UserPortal/OrganizationNavbar/OrganizationNavbar](../README.md) / default + +# Function: default() + +> **default**(`props`): `JSX.Element` + +Defined in: [src/components/UserPortal/OrganizationNavbar/OrganizationNavbar.tsx:44](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/UserPortal/OrganizationNavbar/OrganizationNavbar.tsx#L44) + +Displays the organization navbar with navigation options, user settings, and language selection. + +The navbar includes: +- Organization branding and name. +- Navigation links for various plugins based on user permissions. +- Language dropdown for changing the interface language. +- User dropdown for accessing settings and logging out. + +## Parameters + +### props + +`InterfaceNavbarProps` + +The properties for the navbar. + +## Returns + +`JSX.Element` + +The organization navbar component. diff --git a/docs/docs/auto-docs/components/UserPortal/OrganizationSidebar/OrganizationSidebar/README.md b/docs/docs/auto-docs/components/UserPortal/OrganizationSidebar/OrganizationSidebar/README.md new file mode 100644 index 0000000000..91d4321195 --- /dev/null +++ b/docs/docs/auto-docs/components/UserPortal/OrganizationSidebar/OrganizationSidebar/README.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / components/UserPortal/OrganizationSidebar/OrganizationSidebar + +# components/UserPortal/OrganizationSidebar/OrganizationSidebar + +## Functions + +- [default](functions/default.md) diff --git a/docs/docs/auto-docs/components/UserPortal/OrganizationSidebar/OrganizationSidebar/functions/default.md b/docs/docs/auto-docs/components/UserPortal/OrganizationSidebar/OrganizationSidebar/functions/default.md new file mode 100644 index 0000000000..8ec754fe77 --- /dev/null +++ b/docs/docs/auto-docs/components/UserPortal/OrganizationSidebar/OrganizationSidebar/functions/default.md @@ -0,0 +1,29 @@ +[**talawa-admin**](../../../../../README.md) + +*** + +[talawa-admin](../../../../../modules.md) / [components/UserPortal/OrganizationSidebar/OrganizationSidebar](../README.md) / default + +# Function: default() + +> **default**(): `JSX.Element` + +Defined in: [src/components/UserPortal/OrganizationSidebar/OrganizationSidebar.tsx:36](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/UserPortal/OrganizationSidebar/OrganizationSidebar.tsx#L36) + +OrganizationSidebar displays the sidebar for an organization, showing a list of members and events. + +This component fetches and displays: +- The top 3 members of the organization with their images and names. +- The top 3 upcoming events for the organization with their titles, start, and end dates. + +It includes: +- A link to view all members. +- A link to view all events. + +The sidebar handles loading states and displays appropriate messages while data is being fetched. + +## Returns + +`JSX.Element` + +JSX.Element representing the organization sidebar. diff --git a/docs/docs/auto-docs/components/UserPortal/PeopleCard/PeopleCard/README.md b/docs/docs/auto-docs/components/UserPortal/PeopleCard/PeopleCard/README.md new file mode 100644 index 0000000000..8440febd7f --- /dev/null +++ b/docs/docs/auto-docs/components/UserPortal/PeopleCard/PeopleCard/README.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / components/UserPortal/PeopleCard/PeopleCard + +# components/UserPortal/PeopleCard/PeopleCard + +## Functions + +- [default](functions/default.md) diff --git a/docs/docs/auto-docs/components/UserPortal/PeopleCard/PeopleCard/functions/default.md b/docs/docs/auto-docs/components/UserPortal/PeopleCard/PeopleCard/functions/default.md new file mode 100644 index 0000000000..0346d55da5 --- /dev/null +++ b/docs/docs/auto-docs/components/UserPortal/PeopleCard/PeopleCard/functions/default.md @@ -0,0 +1,34 @@ +[**talawa-admin**](../../../../../README.md) + +*** + +[talawa-admin](../../../../../modules.md) / [components/UserPortal/PeopleCard/PeopleCard](../README.md) / default + +# Function: default() + +> **default**(`props`): `JSX.Element` + +Defined in: [src/components/UserPortal/PeopleCard/PeopleCard.tsx:30](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/UserPortal/PeopleCard/PeopleCard.tsx#L30) + +PeopleCard component displays information about a person within an organization. + +It includes: +- An image of the person or a default image if none is provided. +- The serial number of the person. +- The person's name. +- The person's email address. +- The person's role within the organization, styled with a border. + +## Parameters + +### props + +`InterfaceOrganizationCardProps` + +The properties passed to the component. + +## Returns + +`JSX.Element` + +JSX.Element representing a card with the person's details. diff --git a/docs/docs/auto-docs/components/UserPortal/PostCard/PostCard/README.md b/docs/docs/auto-docs/components/UserPortal/PostCard/PostCard/README.md new file mode 100644 index 0000000000..741a0eada0 --- /dev/null +++ b/docs/docs/auto-docs/components/UserPortal/PostCard/PostCard/README.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / components/UserPortal/PostCard/PostCard + +# components/UserPortal/PostCard/PostCard + +## Functions + +- [default](functions/default.md) diff --git a/docs/docs/auto-docs/components/UserPortal/PostCard/PostCard/functions/default.md b/docs/docs/auto-docs/components/UserPortal/PostCard/PostCard/functions/default.md new file mode 100644 index 0000000000..7eb5ec4307 --- /dev/null +++ b/docs/docs/auto-docs/components/UserPortal/PostCard/PostCard/functions/default.md @@ -0,0 +1,34 @@ +[**talawa-admin**](../../../../../README.md) + +*** + +[talawa-admin](../../../../../modules.md) / [components/UserPortal/PostCard/PostCard](../README.md) / default + +# Function: default() + +> **default**(`props`): `JSX.Element` + +Defined in: [src/components/UserPortal/PostCard/PostCard.tsx:69](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/UserPortal/PostCard/PostCard.tsx#L69) + +PostCard component displays an individual post, including its details, interactions, and comments. + +The component allows users to: +- View the post's details in a modal. +- Edit or delete the post. +- Like or unlike the post. +- Add comments to the post. +- Like or dislike individual comments. + +## Parameters + +### props + +[`InterfacePostCard`](../../../../../utils/interfaces/interfaces/InterfacePostCard.md) + +The properties passed to the component including post details, comments, and related actions. + +## Returns + +`JSX.Element` + +JSX.Element representing a post card with interactive features. diff --git a/docs/docs/auto-docs/components/UserPortal/PromotedPost/PromotedPost/README.md b/docs/docs/auto-docs/components/UserPortal/PromotedPost/PromotedPost/README.md new file mode 100644 index 0000000000..c906e91831 --- /dev/null +++ b/docs/docs/auto-docs/components/UserPortal/PromotedPost/PromotedPost/README.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / components/UserPortal/PromotedPost/PromotedPost + +# components/UserPortal/PromotedPost/PromotedPost + +## Functions + +- [default](functions/default.md) diff --git a/docs/docs/auto-docs/components/UserPortal/PromotedPost/PromotedPost/functions/default.md b/docs/docs/auto-docs/components/UserPortal/PromotedPost/PromotedPost/functions/default.md new file mode 100644 index 0000000000..4204ca3d85 --- /dev/null +++ b/docs/docs/auto-docs/components/UserPortal/PromotedPost/PromotedPost/functions/default.md @@ -0,0 +1,32 @@ +[**talawa-admin**](../../../../../README.md) + +*** + +[talawa-admin](../../../../../modules.md) / [components/UserPortal/PromotedPost/PromotedPost](../README.md) / default + +# Function: default() + +> **default**(`props`): `JSX.Element` + +Defined in: [src/components/UserPortal/PromotedPost/PromotedPost.tsx:23](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/UserPortal/PromotedPost/PromotedPost.tsx#L23) + +PromotedPost component displays a card representing promoted content. + +This component includes: +- A header with a star icon indicating the content is promoted. +- A title and description of the promoted content. +- An optional image associated with the promoted content. + +## Parameters + +### props + +`InterfacePostCardProps` + +Properties passed to the component including an image, title, and ID. + +## Returns + +`JSX.Element` + +JSX.Element representing a card with promoted content. diff --git a/docs/docs/auto-docs/components/UserPortal/Register/Register/README.md b/docs/docs/auto-docs/components/UserPortal/Register/Register/README.md new file mode 100644 index 0000000000..5df2315aa1 --- /dev/null +++ b/docs/docs/auto-docs/components/UserPortal/Register/Register/README.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / components/UserPortal/Register/Register + +# components/UserPortal/Register/Register + +## Functions + +- [default](functions/default.md) diff --git a/docs/docs/auto-docs/components/UserPortal/Register/Register/functions/default.md b/docs/docs/auto-docs/components/UserPortal/Register/Register/functions/default.md new file mode 100644 index 0000000000..96a46abcf4 --- /dev/null +++ b/docs/docs/auto-docs/components/UserPortal/Register/Register/functions/default.md @@ -0,0 +1,21 @@ +[**talawa-admin**](../../../../../README.md) + +*** + +[talawa-admin](../../../../../modules.md) / [components/UserPortal/Register/Register](../README.md) / default + +# Function: default() + +> **default**(`props`): `JSX.Element` + +Defined in: [src/components/UserPortal/Register/Register.tsx:22](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/UserPortal/Register/Register.tsx#L22) + +## Parameters + +### props + +`InterfaceRegisterProps` + +## Returns + +`JSX.Element` diff --git a/docs/docs/auto-docs/components/UserPortal/SecuredRouteForUser/SecuredRouteForUser/README.md b/docs/docs/auto-docs/components/UserPortal/SecuredRouteForUser/SecuredRouteForUser/README.md new file mode 100644 index 0000000000..3e3da099d0 --- /dev/null +++ b/docs/docs/auto-docs/components/UserPortal/SecuredRouteForUser/SecuredRouteForUser/README.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / components/UserPortal/SecuredRouteForUser/SecuredRouteForUser + +# components/UserPortal/SecuredRouteForUser/SecuredRouteForUser + +## Functions + +- [default](functions/default.md) diff --git a/docs/docs/auto-docs/components/UserPortal/SecuredRouteForUser/SecuredRouteForUser/functions/default.md b/docs/docs/auto-docs/components/UserPortal/SecuredRouteForUser/SecuredRouteForUser/functions/default.md new file mode 100644 index 0000000000..2144ad9044 --- /dev/null +++ b/docs/docs/auto-docs/components/UserPortal/SecuredRouteForUser/SecuredRouteForUser/functions/default.md @@ -0,0 +1,22 @@ +[**talawa-admin**](../../../../../README.md) + +*** + +[talawa-admin](../../../../../modules.md) / [components/UserPortal/SecuredRouteForUser/SecuredRouteForUser](../README.md) / default + +# Function: default() + +> **default**(): `Element` + +Defined in: [src/components/UserPortal/SecuredRouteForUser/SecuredRouteForUser.tsx:14](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/UserPortal/SecuredRouteForUser/SecuredRouteForUser.tsx#L14) + +A component that guards routes by checking if the user is logged in. +If the user is logged in and does not have 'AdminFor' set, the child routes are rendered. +If the user is not logged in, they are redirected to the homepage. +If the user is logged in but has 'AdminFor' set, a 404 page is shown. + +## Returns + +`Element` + +JSX.Element - Rendered component based on user authentication and role. diff --git a/docs/docs/auto-docs/components/UserPortal/StartPostModal/StartPostModal/README.md b/docs/docs/auto-docs/components/UserPortal/StartPostModal/StartPostModal/README.md new file mode 100644 index 0000000000..0a50b6de47 --- /dev/null +++ b/docs/docs/auto-docs/components/UserPortal/StartPostModal/StartPostModal/README.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / components/UserPortal/StartPostModal/StartPostModal + +# components/UserPortal/StartPostModal/StartPostModal + +## Functions + +- [default](functions/default.md) diff --git a/docs/docs/auto-docs/components/UserPortal/StartPostModal/StartPostModal/functions/default.md b/docs/docs/auto-docs/components/UserPortal/StartPostModal/StartPostModal/functions/default.md new file mode 100644 index 0000000000..c9d9301796 --- /dev/null +++ b/docs/docs/auto-docs/components/UserPortal/StartPostModal/StartPostModal/functions/default.md @@ -0,0 +1,30 @@ +[**talawa-admin**](../../../../../README.md) + +*** + +[talawa-admin](../../../../../modules.md) / [components/UserPortal/StartPostModal/StartPostModal](../README.md) / default + +# Function: default() + +> **default**(`__namedParameters`): `Element` + +Defined in: [src/components/UserPortal/StartPostModal/StartPostModal.tsx:40](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/UserPortal/StartPostModal/StartPostModal.tsx#L40) + +A modal component for creating a new post. + +This modal includes: +- A form where users can input the content of the post. +- A preview of the image if provided. +- User's profile image and name displayed in the modal header. + +## Parameters + +### \_\_namedParameters + +`InterfaceStartPostModalProps` + +## Returns + +`Element` + +JSX.Element - The rendered modal component. diff --git a/docs/docs/auto-docs/components/UserPortal/UserNavbar/UserNavbar/README.md b/docs/docs/auto-docs/components/UserPortal/UserNavbar/UserNavbar/README.md new file mode 100644 index 0000000000..e5c8408b35 --- /dev/null +++ b/docs/docs/auto-docs/components/UserPortal/UserNavbar/UserNavbar/README.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / components/UserPortal/UserNavbar/UserNavbar + +# components/UserPortal/UserNavbar/UserNavbar + +## Functions + +- [default](functions/default.md) diff --git a/docs/docs/auto-docs/components/UserPortal/UserNavbar/UserNavbar/functions/default.md b/docs/docs/auto-docs/components/UserPortal/UserNavbar/UserNavbar/functions/default.md new file mode 100644 index 0000000000..f4882d1195 --- /dev/null +++ b/docs/docs/auto-docs/components/UserPortal/UserNavbar/UserNavbar/functions/default.md @@ -0,0 +1,24 @@ +[**talawa-admin**](../../../../../README.md) + +*** + +[talawa-admin](../../../../../modules.md) / [components/UserPortal/UserNavbar/UserNavbar](../README.md) / default + +# Function: default() + +> **default**(): `JSX.Element` + +Defined in: [src/components/UserPortal/UserNavbar/UserNavbar.tsx:26](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/UserPortal/UserNavbar/UserNavbar.tsx#L26) + +Navbar component for user-specific actions and settings. + +This component provides: +- A branding image and name. +- A dropdown for language selection. +- A dropdown for user actions including profile settings and logout. + +## Returns + +`JSX.Element` + +JSX.Element - The rendered Navbar component. diff --git a/docs/docs/auto-docs/components/UserPortal/UserProfile/EventsAttendedByUser/README.md b/docs/docs/auto-docs/components/UserPortal/UserProfile/EventsAttendedByUser/README.md new file mode 100644 index 0000000000..f6715014d5 --- /dev/null +++ b/docs/docs/auto-docs/components/UserPortal/UserProfile/EventsAttendedByUser/README.md @@ -0,0 +1,17 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / components/UserPortal/UserProfile/EventsAttendedByUser + +# components/UserPortal/UserProfile/EventsAttendedByUser + +## Functions + +- [EventsAttendedByUser](functions/EventsAttendedByUser.md) + +## References + +### default + +Renames and re-exports [EventsAttendedByUser](functions/EventsAttendedByUser.md) diff --git a/docs/docs/auto-docs/components/UserPortal/UserProfile/EventsAttendedByUser/functions/EventsAttendedByUser.md b/docs/docs/auto-docs/components/UserPortal/UserProfile/EventsAttendedByUser/functions/EventsAttendedByUser.md new file mode 100644 index 0000000000..0b2a19adc8 --- /dev/null +++ b/docs/docs/auto-docs/components/UserPortal/UserProfile/EventsAttendedByUser/functions/EventsAttendedByUser.md @@ -0,0 +1,31 @@ +[**talawa-admin**](../../../../../README.md) + +*** + +[talawa-admin](../../../../../modules.md) / [components/UserPortal/UserProfile/EventsAttendedByUser](../README.md) / EventsAttendedByUser + +# Function: EventsAttendedByUser() + +> **EventsAttendedByUser**(`props`, `deprecatedLegacyContext`?): `ReactNode` + +Defined in: [src/components/UserPortal/UserProfile/EventsAttendedByUser.tsx:31](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/UserPortal/UserProfile/EventsAttendedByUser.tsx#L31) + +## Parameters + +### props + +`InterfaceUser` + +### deprecatedLegacyContext? + +`any` + +**Deprecated** + +**See** + +[React Docs](https://legacy.reactjs.org/docs/legacy-context.html#referencing-context-in-lifecycle-methods) + +## Returns + +`ReactNode` diff --git a/docs/docs/auto-docs/components/UserPortal/UserProfile/UserAddressFields/README.md b/docs/docs/auto-docs/components/UserPortal/UserProfile/UserAddressFields/README.md new file mode 100644 index 0000000000..fcf8648765 --- /dev/null +++ b/docs/docs/auto-docs/components/UserPortal/UserProfile/UserAddressFields/README.md @@ -0,0 +1,17 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / components/UserPortal/UserProfile/UserAddressFields + +# components/UserPortal/UserProfile/UserAddressFields + +## Functions + +- [UserAddressFields](functions/UserAddressFields.md) + +## References + +### default + +Renames and re-exports [UserAddressFields](functions/UserAddressFields.md) diff --git a/docs/docs/auto-docs/components/UserPortal/UserProfile/UserAddressFields/functions/UserAddressFields.md b/docs/docs/auto-docs/components/UserPortal/UserProfile/UserAddressFields/functions/UserAddressFields.md new file mode 100644 index 0000000000..1bf1e09fc2 --- /dev/null +++ b/docs/docs/auto-docs/components/UserPortal/UserProfile/UserAddressFields/functions/UserAddressFields.md @@ -0,0 +1,38 @@ +[**talawa-admin**](../../../../../README.md) + +*** + +[talawa-admin](../../../../../modules.md) / [components/UserPortal/UserProfile/UserAddressFields](../README.md) / UserAddressFields + +# Function: UserAddressFields() + +> **UserAddressFields**(`props`, `deprecatedLegacyContext`?): `ReactNode` + +Defined in: [src/components/UserPortal/UserProfile/UserAddressFields.tsx:26](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/UserPortal/UserProfile/UserAddressFields.tsx#L26) + +Form component containing address-related input fields for user profile +Includes fields for address, city, state, and country + +## Parameters + +### props + +`InterfaceUserAddressFieldsProps` + +Component props + +### deprecatedLegacyContext? + +`any` + +**Deprecated** + +**See** + +[React Docs](https://legacy.reactjs.org/docs/legacy-context.html#referencing-context-in-lifecycle-methods) + +## Returns + +`ReactNode` + +Form group with address input fields diff --git a/docs/docs/auto-docs/components/UserPortal/UserSidebar/UserSidebar/README.md b/docs/docs/auto-docs/components/UserPortal/UserSidebar/UserSidebar/README.md new file mode 100644 index 0000000000..6dba28665f --- /dev/null +++ b/docs/docs/auto-docs/components/UserPortal/UserSidebar/UserSidebar/README.md @@ -0,0 +1,15 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / components/UserPortal/UserSidebar/UserSidebar + +# components/UserPortal/UserSidebar/UserSidebar + +## Interfaces + +- [InterfaceUserSidebarProps](interfaces/InterfaceUserSidebarProps.md) + +## Functions + +- [default](functions/default.md) diff --git a/docs/docs/auto-docs/components/UserPortal/UserSidebar/UserSidebar/functions/default.md b/docs/docs/auto-docs/components/UserPortal/UserSidebar/UserSidebar/functions/default.md new file mode 100644 index 0000000000..31be4b51ba --- /dev/null +++ b/docs/docs/auto-docs/components/UserPortal/UserSidebar/UserSidebar/functions/default.md @@ -0,0 +1,30 @@ +[**talawa-admin**](../../../../../README.md) + +*** + +[talawa-admin](../../../../../modules.md) / [components/UserPortal/UserSidebar/UserSidebar](../README.md) / default + +# Function: default() + +> **default**(`__namedParameters`): `Element` + +Defined in: [src/components/UserPortal/UserSidebar/UserSidebar.tsx:28](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/UserPortal/UserSidebar/UserSidebar.tsx#L28) + +Sidebar component for user navigation, including links to organizations and settings. + +Provides: +- A logo and title for the sidebar. +- Navigation buttons for "My Organizations" and "Settings". +- Dynamic styling based on the active route. + +## Parameters + +### \_\_namedParameters + +[`InterfaceUserSidebarProps`](../interfaces/InterfaceUserSidebarProps.md) + +## Returns + +`Element` + +JSX.Element - The rendered sidebar component. diff --git a/docs/docs/auto-docs/components/UserPortal/UserSidebar/UserSidebar/interfaces/InterfaceUserSidebarProps.md b/docs/docs/auto-docs/components/UserPortal/UserSidebar/UserSidebar/interfaces/InterfaceUserSidebarProps.md new file mode 100644 index 0000000000..46264bcaaf --- /dev/null +++ b/docs/docs/auto-docs/components/UserPortal/UserSidebar/UserSidebar/interfaces/InterfaceUserSidebarProps.md @@ -0,0 +1,25 @@ +[**talawa-admin**](../../../../../README.md) + +*** + +[talawa-admin](../../../../../modules.md) / [components/UserPortal/UserSidebar/UserSidebar](../README.md) / InterfaceUserSidebarProps + +# Interface: InterfaceUserSidebarProps + +Defined in: [src/components/UserPortal/UserSidebar/UserSidebar.tsx:10](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/UserPortal/UserSidebar/UserSidebar.tsx#L10) + +## Properties + +### hideDrawer + +> **hideDrawer**: `boolean` + +Defined in: [src/components/UserPortal/UserSidebar/UserSidebar.tsx:11](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/UserPortal/UserSidebar/UserSidebar.tsx#L11) + +*** + +### setHideDrawer + +> **setHideDrawer**: `Dispatch`\<`SetStateAction`\<`boolean`\>\> + +Defined in: [src/components/UserPortal/UserSidebar/UserSidebar.tsx:12](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/UserPortal/UserSidebar/UserSidebar.tsx#L12) diff --git a/docs/docs/auto-docs/components/UserPortal/UserSidebarOrg/UserSidebarOrg/README.md b/docs/docs/auto-docs/components/UserPortal/UserSidebarOrg/UserSidebarOrg/README.md new file mode 100644 index 0000000000..5fc2924076 --- /dev/null +++ b/docs/docs/auto-docs/components/UserPortal/UserSidebarOrg/UserSidebarOrg/README.md @@ -0,0 +1,15 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / components/UserPortal/UserSidebarOrg/UserSidebarOrg + +# components/UserPortal/UserSidebarOrg/UserSidebarOrg + +## Interfaces + +- [InterfaceUserSidebarOrgProps](interfaces/InterfaceUserSidebarOrgProps.md) + +## Functions + +- [default](functions/default.md) diff --git a/docs/docs/auto-docs/components/UserPortal/UserSidebarOrg/UserSidebarOrg/functions/default.md b/docs/docs/auto-docs/components/UserPortal/UserSidebarOrg/UserSidebarOrg/functions/default.md new file mode 100644 index 0000000000..ef7322671f --- /dev/null +++ b/docs/docs/auto-docs/components/UserPortal/UserSidebarOrg/UserSidebarOrg/functions/default.md @@ -0,0 +1,30 @@ +[**talawa-admin**](../../../../../README.md) + +*** + +[talawa-admin](../../../../../modules.md) / [components/UserPortal/UserSidebarOrg/UserSidebarOrg](../README.md) / default + +# Function: default() + +> **default**(`__namedParameters`): `Element` + +Defined in: [src/components/UserPortal/UserSidebarOrg/UserSidebarOrg.tsx:39](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/UserPortal/UserSidebarOrg/UserSidebarOrg.tsx#L39) + +Sidebar component for user navigation within an organization. + +Provides: +- Branding with the Talawa logo. +- Displays the current organization's details. +- Navigation options with links and collapsible dropdowns. + +## Parameters + +### \_\_namedParameters + +[`InterfaceUserSidebarOrgProps`](../interfaces/InterfaceUserSidebarOrgProps.md) + +## Returns + +`Element` + +JSX.Element - The rendered sidebar component. diff --git a/docs/docs/auto-docs/components/UserPortal/UserSidebarOrg/UserSidebarOrg/interfaces/InterfaceUserSidebarOrgProps.md b/docs/docs/auto-docs/components/UserPortal/UserSidebarOrg/UserSidebarOrg/interfaces/InterfaceUserSidebarOrgProps.md new file mode 100644 index 0000000000..86aa0aa038 --- /dev/null +++ b/docs/docs/auto-docs/components/UserPortal/UserSidebarOrg/UserSidebarOrg/interfaces/InterfaceUserSidebarOrgProps.md @@ -0,0 +1,41 @@ +[**talawa-admin**](../../../../../README.md) + +*** + +[talawa-admin](../../../../../modules.md) / [components/UserPortal/UserSidebarOrg/UserSidebarOrg](../README.md) / InterfaceUserSidebarOrgProps + +# Interface: InterfaceUserSidebarOrgProps + +Defined in: [src/components/UserPortal/UserSidebarOrg/UserSidebarOrg.tsx:17](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/UserPortal/UserSidebarOrg/UserSidebarOrg.tsx#L17) + +## Properties + +### hideDrawer + +> **hideDrawer**: `boolean` + +Defined in: [src/components/UserPortal/UserSidebarOrg/UserSidebarOrg.tsx:20](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/UserPortal/UserSidebarOrg/UserSidebarOrg.tsx#L20) + +*** + +### orgId + +> **orgId**: `string` + +Defined in: [src/components/UserPortal/UserSidebarOrg/UserSidebarOrg.tsx:18](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/UserPortal/UserSidebarOrg/UserSidebarOrg.tsx#L18) + +*** + +### setHideDrawer + +> **setHideDrawer**: `Dispatch`\<`SetStateAction`\<`boolean`\>\> + +Defined in: [src/components/UserPortal/UserSidebarOrg/UserSidebarOrg.tsx:21](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/UserPortal/UserSidebarOrg/UserSidebarOrg.tsx#L21) + +*** + +### targets + +> **targets**: [`TargetsType`](../../../../../state/reducers/routesReducer/type-aliases/TargetsType.md)[] + +Defined in: [src/components/UserPortal/UserSidebarOrg/UserSidebarOrg.tsx:19](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/UserPortal/UserSidebarOrg/UserSidebarOrg.tsx#L19) diff --git a/docs/docs/auto-docs/components/UserProfileSettings/DeleteUser/README.md b/docs/docs/auto-docs/components/UserProfileSettings/DeleteUser/README.md new file mode 100644 index 0000000000..aed329a07a --- /dev/null +++ b/docs/docs/auto-docs/components/UserProfileSettings/DeleteUser/README.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / components/UserProfileSettings/DeleteUser + +# components/UserProfileSettings/DeleteUser + +## Functions + +- [default](functions/default.md) diff --git a/docs/docs/auto-docs/components/UserProfileSettings/DeleteUser/functions/default.md b/docs/docs/auto-docs/components/UserProfileSettings/DeleteUser/functions/default.md new file mode 100644 index 0000000000..c24d49d0c1 --- /dev/null +++ b/docs/docs/auto-docs/components/UserProfileSettings/DeleteUser/functions/default.md @@ -0,0 +1,34 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [components/UserProfileSettings/DeleteUser](../README.md) / default + +# Function: default() + +> **default**(`props`, `deprecatedLegacyContext`?): `ReactNode` + +Defined in: [src/components/UserProfileSettings/DeleteUser.tsx:12](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/UserProfileSettings/DeleteUser.tsx#L12) + +DeleteUser component displays a card with a button to delete a user. +It includes a message and a button to trigger the delete action. + +## Parameters + +### props + +### deprecatedLegacyContext? + +`any` + +**Deprecated** + +**See** + +[React Docs](https://legacy.reactjs.org/docs/legacy-context.html#referencing-context-in-lifecycle-methods) + +## Returns + +`ReactNode` + +The JSX element for the delete user card. diff --git a/docs/docs/auto-docs/components/UserProfileSettings/OtherSettings/README.md b/docs/docs/auto-docs/components/UserProfileSettings/OtherSettings/README.md new file mode 100644 index 0000000000..d62f597c02 --- /dev/null +++ b/docs/docs/auto-docs/components/UserProfileSettings/OtherSettings/README.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / components/UserProfileSettings/OtherSettings + +# components/UserProfileSettings/OtherSettings + +## Functions + +- [default](functions/default.md) diff --git a/docs/docs/auto-docs/components/UserProfileSettings/OtherSettings/functions/default.md b/docs/docs/auto-docs/components/UserProfileSettings/OtherSettings/functions/default.md new file mode 100644 index 0000000000..b231d55531 --- /dev/null +++ b/docs/docs/auto-docs/components/UserProfileSettings/OtherSettings/functions/default.md @@ -0,0 +1,34 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [components/UserProfileSettings/OtherSettings](../README.md) / default + +# Function: default() + +> **default**(`props`, `deprecatedLegacyContext`?): `ReactNode` + +Defined in: [src/components/UserProfileSettings/OtherSettings.tsx:13](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/UserProfileSettings/OtherSettings.tsx#L13) + +OtherSettings component displays a card with settings options such as changing the language. +It includes a label and a dropdown for selecting a different language. + +## Parameters + +### props + +### deprecatedLegacyContext? + +`any` + +**Deprecated** + +**See** + +[React Docs](https://legacy.reactjs.org/docs/legacy-context.html#referencing-context-in-lifecycle-methods) + +## Returns + +`ReactNode` + +The JSX element for the other settings card. diff --git a/docs/docs/auto-docs/components/UserProfileSettings/UserProfile/README.md b/docs/docs/auto-docs/components/UserProfileSettings/UserProfile/README.md new file mode 100644 index 0000000000..c20ee1ebcb --- /dev/null +++ b/docs/docs/auto-docs/components/UserProfileSettings/UserProfile/README.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / components/UserProfileSettings/UserProfile + +# components/UserProfileSettings/UserProfile + +## Functions + +- [default](functions/default.md) diff --git a/docs/docs/auto-docs/components/UserProfileSettings/UserProfile/functions/default.md b/docs/docs/auto-docs/components/UserProfileSettings/UserProfile/functions/default.md new file mode 100644 index 0000000000..4040aeb485 --- /dev/null +++ b/docs/docs/auto-docs/components/UserProfileSettings/UserProfile/functions/default.md @@ -0,0 +1,38 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [components/UserProfileSettings/UserProfile](../README.md) / default + +# Function: default() + +> **default**(`props`, `deprecatedLegacyContext`?): `ReactNode` + +Defined in: [src/components/UserProfileSettings/UserProfile.tsx:38](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/UserProfileSettings/UserProfile.tsx#L38) + +UserProfile component displays user profile details including an avatar or profile image, name, email, and join date. +It also provides a button to copy the profile link. + +## Parameters + +### props + +`InterfaceUserProfile` + +The properties to be passed into the component. + +### deprecatedLegacyContext? + +`any` + +**Deprecated** + +**See** + +[React Docs](https://legacy.reactjs.org/docs/legacy-context.html#referencing-context-in-lifecycle-methods) + +## Returns + +`ReactNode` + +The JSX element for the user profile card. diff --git a/docs/docs/auto-docs/components/UsersTableItem/UserTableItemMocks/README.md b/docs/docs/auto-docs/components/UsersTableItem/UserTableItemMocks/README.md new file mode 100644 index 0000000000..a6bc5cb05c --- /dev/null +++ b/docs/docs/auto-docs/components/UsersTableItem/UserTableItemMocks/README.md @@ -0,0 +1,13 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / components/UsersTableItem/UserTableItemMocks + +# components/UsersTableItem/UserTableItemMocks + +## Variables + +- [MOCKS](variables/MOCKS.md) +- [MOCKS\_UPDATE](variables/MOCKS_UPDATE.md) +- [MOCKS2](variables/MOCKS2.md) diff --git a/docs/docs/auto-docs/components/UsersTableItem/UserTableItemMocks/variables/MOCKS.md b/docs/docs/auto-docs/components/UsersTableItem/UserTableItemMocks/variables/MOCKS.md new file mode 100644 index 0000000000..b50a16be2f --- /dev/null +++ b/docs/docs/auto-docs/components/UsersTableItem/UserTableItemMocks/variables/MOCKS.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [components/UsersTableItem/UserTableItemMocks](../README.md) / MOCKS + +# Variable: MOCKS + +> `const` **MOCKS**: (\{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `organizationId`: `undefined`; `orgid`: `string`; `role`: `undefined`; `userid`: `string`; `userId`: `undefined`; \}; \}; `result`: \{ `data`: \{ `removeMember`: \{ `_id`: `string`; \}; `updateUserRoleInOrganization`: `undefined`; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `organizationId`: `string`; `orgid`: `undefined`; `role`: `string`; `userid`: `undefined`; `userId`: `string`; \}; \}; `result`: \{ `data`: \{ `removeMember`: `undefined`; `updateUserRoleInOrganization`: \{ `_id`: `string`; \}; \}; \}; \})[] + +Defined in: [src/components/UsersTableItem/UserTableItemMocks.ts:6](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/UsersTableItem/UserTableItemMocks.ts#L6) diff --git a/docs/docs/auto-docs/components/UsersTableItem/UserTableItemMocks/variables/MOCKS2.md b/docs/docs/auto-docs/components/UsersTableItem/UserTableItemMocks/variables/MOCKS2.md new file mode 100644 index 0000000000..2f00ace4f9 --- /dev/null +++ b/docs/docs/auto-docs/components/UsersTableItem/UserTableItemMocks/variables/MOCKS2.md @@ -0,0 +1,37 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [components/UsersTableItem/UserTableItemMocks](../README.md) / MOCKS2 + +# Variable: MOCKS2 + +> `const` **MOCKS2**: `object`[] + +Defined in: [src/components/UsersTableItem/UserTableItemMocks.ts:42](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/UsersTableItem/UserTableItemMocks.ts#L42) + +## Type declaration + +### error + +> **error**: `Error` + +### request + +> **request**: `object` + +#### request.query + +> **query**: `DocumentNode` = `REMOVE_MEMBER_MUTATION` + +#### request.variables + +> **variables**: `object` + +#### request.variables.orgid + +> **orgid**: `string` = `'abc'` + +#### request.variables.userid + +> **userid**: `string` = `'123'` diff --git a/docs/docs/auto-docs/components/UsersTableItem/UserTableItemMocks/variables/MOCKS_UPDATE.md b/docs/docs/auto-docs/components/UsersTableItem/UserTableItemMocks/variables/MOCKS_UPDATE.md new file mode 100644 index 0000000000..a3dc2ab795 --- /dev/null +++ b/docs/docs/auto-docs/components/UsersTableItem/UserTableItemMocks/variables/MOCKS_UPDATE.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [components/UsersTableItem/UserTableItemMocks](../README.md) / MOCKS\_UPDATE + +# Variable: MOCKS\_UPDATE + +> `const` **MOCKS\_UPDATE**: (\{ `error`: `Error`; `request`: \{ `query`: `DocumentNode`; `variables`: \{ `organizationId`: `string`; `role`: `string`; `userId`: `string`; \}; \}; `result`: `undefined`; \} \| \{ `error`: `undefined`; `request`: \{ `query`: `DocumentNode`; `variables`: \{ `organizationId`: `string`; `role`: `string`; `userId`: `string`; \}; \}; `result`: \{ `data`: \{ `updateUserRoleInOrganization`: \{ `_id`: `string`; \}; \}; \}; \})[] + +Defined in: [src/components/UsersTableItem/UserTableItemMocks.ts:55](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/UsersTableItem/UserTableItemMocks.ts#L55) diff --git a/docs/docs/auto-docs/components/UsersTableItem/UsersTableItem/README.md b/docs/docs/auto-docs/components/UsersTableItem/UsersTableItem/README.md new file mode 100644 index 0000000000..35774184ed --- /dev/null +++ b/docs/docs/auto-docs/components/UsersTableItem/UsersTableItem/README.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / components/UsersTableItem/UsersTableItem + +# components/UsersTableItem/UsersTableItem + +## Functions + +- [default](functions/default.md) diff --git a/docs/docs/auto-docs/components/UsersTableItem/UsersTableItem/functions/default.md b/docs/docs/auto-docs/components/UsersTableItem/UsersTableItem/functions/default.md new file mode 100644 index 0000000000..f8a7c9a4cf --- /dev/null +++ b/docs/docs/auto-docs/components/UsersTableItem/UsersTableItem/functions/default.md @@ -0,0 +1,21 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [components/UsersTableItem/UsersTableItem](../README.md) / default + +# Function: default() + +> **default**(`props`): `Element` + +Defined in: [src/components/UsersTableItem/UsersTableItem.tsx:23](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/UsersTableItem/UsersTableItem.tsx#L23) + +## Parameters + +### props + +`Props` + +## Returns + +`Element` diff --git a/docs/docs/auto-docs/components/Venues/VenueCard/README.md b/docs/docs/auto-docs/components/Venues/VenueCard/README.md new file mode 100644 index 0000000000..f5058ba6f0 --- /dev/null +++ b/docs/docs/auto-docs/components/Venues/VenueCard/README.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / components/Venues/VenueCard + +# components/Venues/VenueCard + +## Functions + +- [default](functions/default.md) diff --git a/docs/docs/auto-docs/components/Venues/VenueCard/functions/default.md b/docs/docs/auto-docs/components/Venues/VenueCard/functions/default.md new file mode 100644 index 0000000000..43cd3f47d5 --- /dev/null +++ b/docs/docs/auto-docs/components/Venues/VenueCard/functions/default.md @@ -0,0 +1,39 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [components/Venues/VenueCard](../README.md) / default + +# Function: default() + +> **default**(`__namedParameters`): `Element` + +Defined in: [src/components/Venues/VenueCard.tsx:39](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/Venues/VenueCard.tsx#L39) + +Represents a card component displaying venue information. + +This component renders a card with the venue's image, name, capacity, and description. +It also provides buttons to edit or delete the venue. + +## Parameters + +### \_\_namedParameters + +`InterfaceVenueCardProps` + +## Returns + +`Element` + +JSX.Element - The `VenueCard` component. + +## Example + +```tsx + +``` diff --git a/docs/docs/auto-docs/components/Venues/VenueModal/README.md b/docs/docs/auto-docs/components/Venues/VenueModal/README.md new file mode 100644 index 0000000000..1ef81a0b58 --- /dev/null +++ b/docs/docs/auto-docs/components/Venues/VenueModal/README.md @@ -0,0 +1,15 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / components/Venues/VenueModal + +# components/Venues/VenueModal + +## Interfaces + +- [InterfaceVenueModalProps](interfaces/InterfaceVenueModalProps.md) + +## Functions + +- [default](functions/default.md) diff --git a/docs/docs/auto-docs/components/Venues/VenueModal/functions/default.md b/docs/docs/auto-docs/components/Venues/VenueModal/functions/default.md new file mode 100644 index 0000000000..6489b22798 --- /dev/null +++ b/docs/docs/auto-docs/components/Venues/VenueModal/functions/default.md @@ -0,0 +1,28 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [components/Venues/VenueModal](../README.md) / default + +# Function: default() + +> **default**(`__namedParameters`): `Element` + +Defined in: [src/components/Venues/VenueModal.tsx:39](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/Venues/VenueModal.tsx#L39) + +A modal component for creating or updating venue information. + +This component displays a modal window where users can enter details for a venue, such as name, description, capacity, and an image. +It also handles submitting the form data to create or update a venue based on whether the `edit` prop is true or false. + +## Parameters + +### \_\_namedParameters + +[`InterfaceVenueModalProps`](../interfaces/InterfaceVenueModalProps.md) + +## Returns + +`Element` + +The rendered modal component. diff --git a/docs/docs/auto-docs/components/Venues/VenueModal/interfaces/InterfaceVenueModalProps.md b/docs/docs/auto-docs/components/Venues/VenueModal/interfaces/InterfaceVenueModalProps.md new file mode 100644 index 0000000000..353b060d95 --- /dev/null +++ b/docs/docs/auto-docs/components/Venues/VenueModal/interfaces/InterfaceVenueModalProps.md @@ -0,0 +1,65 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [components/Venues/VenueModal](../README.md) / InterfaceVenueModalProps + +# Interface: InterfaceVenueModalProps + +Defined in: [src/components/Venues/VenueModal.tsx:15](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/Venues/VenueModal.tsx#L15) + +## Properties + +### edit + +> **edit**: `boolean` + +Defined in: [src/components/Venues/VenueModal.tsx:21](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/Venues/VenueModal.tsx#L21) + +*** + +### onHide() + +> **onHide**: () => `void` + +Defined in: [src/components/Venues/VenueModal.tsx:17](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/Venues/VenueModal.tsx#L17) + +#### Returns + +`void` + +*** + +### orgId + +> **orgId**: `string` + +Defined in: [src/components/Venues/VenueModal.tsx:19](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/Venues/VenueModal.tsx#L19) + +*** + +### refetchVenues() + +> **refetchVenues**: () => `void` + +Defined in: [src/components/Venues/VenueModal.tsx:18](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/Venues/VenueModal.tsx#L18) + +#### Returns + +`void` + +*** + +### show + +> **show**: `boolean` + +Defined in: [src/components/Venues/VenueModal.tsx:16](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/Venues/VenueModal.tsx#L16) + +*** + +### venueData? + +> `optional` **venueData**: [`InterfaceQueryVenueListItem`](../../../../utils/interfaces/interfaces/InterfaceQueryVenueListItem.md) + +Defined in: [src/components/Venues/VenueModal.tsx:20](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/Venues/VenueModal.tsx#L20) diff --git a/docs/docs/auto-docs/components/plugins/DummyPlugin/DummyPlugin/README.md b/docs/docs/auto-docs/components/plugins/DummyPlugin/DummyPlugin/README.md new file mode 100644 index 0000000000..c582ebf9fa --- /dev/null +++ b/docs/docs/auto-docs/components/plugins/DummyPlugin/DummyPlugin/README.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / components/plugins/DummyPlugin/DummyPlugin + +# components/plugins/DummyPlugin/DummyPlugin + +## Functions + +- [default](functions/default.md) diff --git a/docs/docs/auto-docs/components/plugins/DummyPlugin/DummyPlugin/functions/default.md b/docs/docs/auto-docs/components/plugins/DummyPlugin/DummyPlugin/functions/default.md new file mode 100644 index 0000000000..0ef654633d --- /dev/null +++ b/docs/docs/auto-docs/components/plugins/DummyPlugin/DummyPlugin/functions/default.md @@ -0,0 +1,22 @@ +[**talawa-admin**](../../../../../README.md) + +*** + +[talawa-admin](../../../../../modules.md) / [components/plugins/DummyPlugin/DummyPlugin](../README.md) / default + +# Function: default() + +> **default**(): `JSX.Element` + +Defined in: [src/components/plugins/DummyPlugin/DummyPlugin.tsx:12](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/plugins/DummyPlugin/DummyPlugin.tsx#L12) + +A dummy plugin component that renders a welcome message inside an `AddOn` component. + +This component is used for demonstration or testing purposes and does not have any +additional functionality or properties. + +## Returns + +`JSX.Element` + +JSX.Element - Renders the `AddOn` component containing a welcome message. diff --git a/docs/docs/auto-docs/components/plugins/DummyPlugin2/DummyPlugin2/README.md b/docs/docs/auto-docs/components/plugins/DummyPlugin2/DummyPlugin2/README.md new file mode 100644 index 0000000000..e01e669542 --- /dev/null +++ b/docs/docs/auto-docs/components/plugins/DummyPlugin2/DummyPlugin2/README.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / components/plugins/DummyPlugin2/DummyPlugin2 + +# components/plugins/DummyPlugin2/DummyPlugin2 + +## Functions + +- [default](functions/default.md) diff --git a/docs/docs/auto-docs/components/plugins/DummyPlugin2/DummyPlugin2/functions/default.md b/docs/docs/auto-docs/components/plugins/DummyPlugin2/DummyPlugin2/functions/default.md new file mode 100644 index 0000000000..135c2ceece --- /dev/null +++ b/docs/docs/auto-docs/components/plugins/DummyPlugin2/DummyPlugin2/functions/default.md @@ -0,0 +1,21 @@ +[**talawa-admin**](../../../../../README.md) + +*** + +[talawa-admin](../../../../../modules.md) / [components/plugins/DummyPlugin2/DummyPlugin2](../README.md) / default + +# Function: default() + +> **default**(): `JSX.Element` + +Defined in: [src/components/plugins/DummyPlugin2/DummyPlugin2.tsx:10](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/plugins/DummyPlugin2/DummyPlugin2.tsx#L10) + +A placeholder component for demonstration or testing purposes. +It renders an empty `div` element. + +This component currently does not have any additional functionality +or properties. + +## Returns + +`JSX.Element` diff --git a/docs/docs/auto-docs/components/plugins/README.md b/docs/docs/auto-docs/components/plugins/README.md new file mode 100644 index 0000000000..5512e9966c --- /dev/null +++ b/docs/docs/auto-docs/components/plugins/README.md @@ -0,0 +1,19 @@ +[**talawa-admin**](../../README.md) + +*** + +[talawa-admin](../../modules.md) / components/plugins + +# components/plugins + +## References + +### DummyPlugin + +Renames and re-exports [default](DummyPlugin/DummyPlugin/functions/default.md) + +*** + +### DummyPlugin2 + +Renames and re-exports [default](DummyPlugin2/DummyPlugin2/functions/default.md) diff --git a/docs/docs/auto-docs/constants/README.md b/docs/docs/auto-docs/constants/README.md new file mode 100644 index 0000000000..1813337544 --- /dev/null +++ b/docs/docs/auto-docs/constants/README.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../README.md) + +*** + +[talawa-admin](../modules.md) / constants + +# constants + +## Variables + +- [socialMediaLinks](variables/socialMediaLinks.md) diff --git a/docs/docs/auto-docs/constants/variables/socialMediaLinks.md b/docs/docs/auto-docs/constants/variables/socialMediaLinks.md new file mode 100644 index 0000000000..56138133af --- /dev/null +++ b/docs/docs/auto-docs/constants/variables/socialMediaLinks.md @@ -0,0 +1,25 @@ +[**talawa-admin**](../../README.md) + +*** + +[talawa-admin](../../modules.md) / [constants](../README.md) / socialMediaLinks + +# Variable: socialMediaLinks + +> `const` **socialMediaLinks**: `object`[] + +Defined in: [src/constants.ts:12](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/constants.ts#L12) + +## Type declaration + +### href + +> **href**: `string` = `'https://www.facebook.com/palisadoesproject'` + +### logo + +> **logo**: `string` = `FacebookLogo` + +### tag + +> **tag**: `string` = `'facebook'` diff --git a/docs/docs/auto-docs/index/README.md b/docs/docs/auto-docs/index/README.md new file mode 100644 index 0000000000..73aef1b7cd --- /dev/null +++ b/docs/docs/auto-docs/index/README.md @@ -0,0 +1,7 @@ +[**talawa-admin**](../README.md) + +*** + +[talawa-admin](../modules.md) / index + +# index diff --git a/docs/docs/auto-docs/modules.md b/docs/docs/auto-docs/modules.md new file mode 100644 index 0000000000..75c3a920fa --- /dev/null +++ b/docs/docs/auto-docs/modules.md @@ -0,0 +1,337 @@ +[**talawa-admin**](README.md) + +*** + +# talawa-admin + +## Modules + +- [App](App/README.md) +- [assets/svgs/social-icons](assets/svgs/social-icons/README.md) +- [components/AddOn/AddOn](components/AddOn/AddOn/README.md) +- [components/AddOn/core/AddOnEntry/AddOnEntry](components/AddOn/core/AddOnEntry/AddOnEntry/README.md) +- [components/AddOn/core/AddOnEntry/AddOnEntryMocks](components/AddOn/core/AddOnEntry/AddOnEntryMocks/README.md) +- [components/AddOn/core/AddOnRegister/AddOnRegister](components/AddOn/core/AddOnRegister/AddOnRegister/README.md) +- [components/AddOn/core/AddOnStore/AddOnStore](components/AddOn/core/AddOnStore/AddOnStore/README.md) +- [components/AddOn/support/components/Action/Action](components/AddOn/support/components/Action/Action/README.md) +- [components/AddOn/support/components/MainContent/MainContent](components/AddOn/support/components/MainContent/MainContent/README.md) +- [components/AddOn/support/components/SidePanel/SidePanel](components/AddOn/support/components/SidePanel/SidePanel/README.md) +- [components/AddOn/support/services/Plugin.helper](components/AddOn/support/services/Plugin.helper/README.md) +- [components/AddOn/support/services/Render.helper](components/AddOn/support/services/Render.helper/README.md) +- [components/AddPeopleToTag/AddPeopleToTag](components/AddPeopleToTag/AddPeopleToTag/README.md) +- [components/AddPeopleToTag/AddPeopleToTagsMocks](components/AddPeopleToTag/AddPeopleToTagsMocks/README.md) +- [components/Advertisements/Advertisements](components/Advertisements/Advertisements/README.md) +- [components/Advertisements/core/AdvertisementEntry/AdvertisementEntry](components/Advertisements/core/AdvertisementEntry/AdvertisementEntry/README.md) +- [components/Advertisements/core/AdvertisementRegister/AdvertisementRegister](components/Advertisements/core/AdvertisementRegister/AdvertisementRegister/README.md) +- [components/AgendaCategory/AgendaCategoryContainer](components/AgendaCategory/AgendaCategoryContainer/README.md) +- [components/AgendaCategory/AgendaCategoryContainerMocks](components/AgendaCategory/AgendaCategoryContainerMocks/README.md) +- [components/AgendaCategory/AgendaCategoryContainerProps](components/AgendaCategory/AgendaCategoryContainerProps/README.md) +- [components/AgendaItems/AgendaItemsContainer](components/AgendaItems/AgendaItemsContainer/README.md) +- [components/AgendaItems/AgendaItemsContainerMocks](components/AgendaItems/AgendaItemsContainerMocks/README.md) +- [components/AgendaItems/AgendaItemsContainerProps](components/AgendaItems/AgendaItemsContainerProps/README.md) +- [components/AgendaItems/AgendaItemsCreateModal](components/AgendaItems/AgendaItemsCreateModal/README.md) +- [components/AgendaItems/AgendaItemsDeleteModal](components/AgendaItems/AgendaItemsDeleteModal/README.md) +- [components/AgendaItems/AgendaItemsPreviewModal](components/AgendaItems/AgendaItemsPreviewModal/README.md) +- [components/AgendaItems/AgendaItemsUpdateModal](components/AgendaItems/AgendaItemsUpdateModal/README.md) +- [components/Avatar/Avatar](components/Avatar/Avatar/README.md) +- [components/ChangeLanguageDropdown/ChangeLanguageDropDown](components/ChangeLanguageDropdown/ChangeLanguageDropDown/README.md) +- [components/CheckIn/CheckInModal](components/CheckIn/CheckInModal/README.md) +- [components/CheckIn/CheckInWrapper](components/CheckIn/CheckInWrapper/README.md) +- [components/CheckIn/mocks](components/CheckIn/mocks/README.md) +- [components/CheckIn/TableRow](components/CheckIn/TableRow/README.md) +- [components/CheckIn/tagTemplate](components/CheckIn/tagTemplate/README.md) +- [components/CheckIn/types](components/CheckIn/types/README.md) +- [components/CollapsibleDropdown/CollapsibleDropdown](components/CollapsibleDropdown/CollapsibleDropdown/README.md) +- [components/ContriStats/ContriStats](components/ContriStats/ContriStats/README.md) +- [components/CurrentHourIndicator/CurrentHourIndicator](components/CurrentHourIndicator/CurrentHourIndicator/README.md) +- [components/DynamicDropDown/DynamicDropDown](components/DynamicDropDown/DynamicDropDown/README.md) +- [components/EditCustomFieldDropDown/EditCustomFieldDropDown](components/EditCustomFieldDropDown/EditCustomFieldDropDown/README.md) +- [components/EventCalendar/EventCalendar](components/EventCalendar/EventCalendar/README.md) +- [components/EventCalendar/EventHeader](components/EventCalendar/EventHeader/README.md) +- [components/EventCalendar/YearlyEventCalender](components/EventCalendar/YearlyEventCalender/README.md) +- [components/EventDashboardScreen/EventDashboardScreen](components/EventDashboardScreen/EventDashboardScreen/README.md) +- [components/EventListCard/EventListCard](components/EventListCard/EventListCard/README.md) +- [components/EventListCard/EventListCardMocks](components/EventListCard/EventListCardMocks/README.md) +- [components/EventListCard/EventListCardModals](components/EventListCard/EventListCardModals/README.md) +- [components/EventListCard/EventListCardProps](components/EventListCard/EventListCardProps/README.md) +- [components/EventManagement/Dashboard/EventDashboard](components/EventManagement/Dashboard/EventDashboard/README.md) +- [components/EventManagement/Dashboard/EventDashboard.mocks](components/EventManagement/Dashboard/EventDashboard.mocks/README.md) +- [components/EventManagement/EventAgendaItems/EventAgendaItems](components/EventManagement/EventAgendaItems/EventAgendaItems/README.md) +- [components/EventManagement/EventAgendaItems/EventAgendaItemsMocks](components/EventManagement/EventAgendaItems/EventAgendaItemsMocks/README.md) +- [components/EventManagement/EventAttendance/Attendance.mocks](components/EventManagement/EventAttendance/Attendance.mocks/README.md) +- [components/EventManagement/EventAttendance/AttendedEventList](components/EventManagement/EventAttendance/AttendedEventList/README.md) +- [components/EventManagement/EventAttendance/EventAttendance](components/EventManagement/EventAttendance/EventAttendance/README.md) +- [components/EventManagement/EventAttendance/EventStatistics](components/EventManagement/EventAttendance/EventStatistics/README.md) +- [components/EventManagement/EventAttendance/InterfaceEvents](components/EventManagement/EventAttendance/InterfaceEvents/README.md) +- [components/EventManagement/EventRegistrant/EventRegistrants](components/EventManagement/EventRegistrant/EventRegistrants/README.md) +- [components/EventManagement/EventRegistrant/Registrations.mocks](components/EventManagement/EventRegistrant/Registrations.mocks/README.md) +- [components/EventRegistrantsModal/AddOnSpotAttendee](components/EventRegistrantsModal/AddOnSpotAttendee/README.md) +- [components/EventRegistrantsModal/EventRegistrantsModal](components/EventRegistrantsModal/EventRegistrantsModal/README.md) +- [components/EventRegistrantsModal/EventRegistrantsWrapper](components/EventRegistrantsModal/EventRegistrantsWrapper/README.md) +- [components/EventStats/EventStats](components/EventStats/EventStats/README.md) +- [components/EventStats/EventStatsWrapper](components/EventStats/EventStatsWrapper/README.md) +- [components/EventStats/Statistics/AverageRating](components/EventStats/Statistics/AverageRating/README.md) +- [components/EventStats/Statistics/Feedback](components/EventStats/Statistics/Feedback/README.md) +- [components/EventStats/Statistics/Review](components/EventStats/Statistics/Review/README.md) +- [components/GroupChatDetails/GroupChatDetails](components/GroupChatDetails/GroupChatDetails/README.md) +- [components/HolidayCards/HolidayCard](components/HolidayCards/HolidayCard/README.md) +- [components/IconComponent/IconComponent](components/IconComponent/IconComponent/README.md) +- [components/InfiniteScrollLoader/InfiniteScrollLoader](components/InfiniteScrollLoader/InfiniteScrollLoader/README.md) +- [components/LeftDrawer/LeftDrawer](components/LeftDrawer/LeftDrawer/README.md) +- [components/LeftDrawerOrg/LeftDrawerOrg](components/LeftDrawerOrg/LeftDrawerOrg/README.md) +- [components/Loader/Loader](components/Loader/Loader/README.md) +- [components/LoginPortalToggle/LoginPortalToggle](components/LoginPortalToggle/LoginPortalToggle/README.md) +- [components/MemberDetail/customTableCell](components/MemberDetail/customTableCell/README.md) +- [components/MemberDetail/EventsAttendedByMember](components/MemberDetail/EventsAttendedByMember/README.md) +- [components/MemberDetail/EventsAttendedCardItem](components/MemberDetail/EventsAttendedCardItem/README.md) +- [components/MemberDetail/EventsAttendedMemberModal](components/MemberDetail/EventsAttendedMemberModal/README.md) +- [components/MemberRequestCard/MemberRequestCard](components/MemberRequestCard/MemberRequestCard/README.md) +- [components/NotFound/NotFound](components/NotFound/NotFound/README.md) +- [components/OrgAdminListCard/OrgAdminListCard](components/OrgAdminListCard/OrgAdminListCard/README.md) +- [components/OrganizationCard/OrganizationCard](components/OrganizationCard/OrganizationCard/README.md) +- [components/OrganizationCardStart/OrganizationCardStart](components/OrganizationCardStart/OrganizationCardStart/README.md) +- [components/OrganizationDashCards/CardItem](components/OrganizationDashCards/CardItem/README.md) +- [components/OrganizationDashCards/CardItemLoading](components/OrganizationDashCards/CardItemLoading/README.md) +- [components/OrganizationDashCards/DashboardCard](components/OrganizationDashCards/DashboardCard/README.md) +- [components/OrganizationDashCards/DashboardCardLoading](components/OrganizationDashCards/DashboardCardLoading/README.md) +- [components/OrganizationScreen/OrganizationScreen](components/OrganizationScreen/OrganizationScreen/README.md) +- [components/OrgContriCards/OrgContriCards](components/OrgContriCards/OrgContriCards/README.md) +- [components/OrgDelete/OrgDelete](components/OrgDelete/OrgDelete/README.md) +- [components/OrgListCard/OrgListCard](components/OrgListCard/OrgListCard/README.md) +- [components/OrgListCard/TruncatedText](components/OrgListCard/TruncatedText/README.md) +- [components/OrgListCard/useDebounce](components/OrgListCard/useDebounce/README.md) +- [components/OrgPeopleListCard/OrgPeopleListCard](components/OrgPeopleListCard/OrgPeopleListCard/README.md) +- [components/OrgPostCard/DeletePostModal](components/OrgPostCard/DeletePostModal/README.md) +- [components/OrgPostCard/OrgPostCard](components/OrgPostCard/OrgPostCard/README.md) +- [components/OrgSettings/ActionItemCategories/CategoryModal](components/OrgSettings/ActionItemCategories/CategoryModal/README.md) +- [components/OrgSettings/ActionItemCategories/OrgActionItemCategories](components/OrgSettings/ActionItemCategories/OrgActionItemCategories/README.md) +- [components/OrgSettings/ActionItemCategories/OrgActionItemCategoryMocks](components/OrgSettings/ActionItemCategories/OrgActionItemCategoryMocks/README.md) +- [components/OrgSettings/AgendaItemCategories/AgendaCategoryCreateModal](components/OrgSettings/AgendaItemCategories/AgendaCategoryCreateModal/README.md) +- [components/OrgSettings/AgendaItemCategories/AgendaCategoryDeleteModal](components/OrgSettings/AgendaItemCategories/AgendaCategoryDeleteModal/README.md) +- [components/OrgSettings/AgendaItemCategories/AgendaCategoryPreviewModal](components/OrgSettings/AgendaItemCategories/AgendaCategoryPreviewModal/README.md) +- [components/OrgSettings/AgendaItemCategories/AgendaCategoryUpdateModal](components/OrgSettings/AgendaItemCategories/AgendaCategoryUpdateModal/README.md) +- [components/OrgSettings/AgendaItemCategories/OrganizationAgendaCategory](components/OrgSettings/AgendaItemCategories/OrganizationAgendaCategory/README.md) +- [components/OrgSettings/AgendaItemCategories/OrganizationAgendaCategoryErrorMocks](components/OrgSettings/AgendaItemCategories/OrganizationAgendaCategoryErrorMocks/README.md) +- [components/OrgSettings/AgendaItemCategories/OrganizationAgendaCategoryMocks](components/OrgSettings/AgendaItemCategories/OrganizationAgendaCategoryMocks/README.md) +- [components/OrgSettings/General/DeleteOrg/DeleteOrg](components/OrgSettings/General/DeleteOrg/DeleteOrg/README.md) +- [components/OrgSettings/General/GeneralSettings](components/OrgSettings/General/GeneralSettings/README.md) +- [components/OrgSettings/General/OrgProfileFieldSettings/OrgProfileFieldSettings](components/OrgSettings/General/OrgProfileFieldSettings/OrgProfileFieldSettings/README.md) +- [components/OrgSettings/General/OrgUpdate/OrgUpdate](components/OrgSettings/General/OrgUpdate/OrgUpdate/README.md) +- [components/OrgSettings/General/OrgUpdate/OrgUpdateMocks](components/OrgSettings/General/OrgUpdate/OrgUpdateMocks/README.md) +- [components/Pagination/Pagination](components/Pagination/Pagination/README.md) +- [components/PaginationList/PaginationList](components/PaginationList/PaginationList/README.md) +- [components/plugins](components/plugins/README.md) +- [components/plugins/DummyPlugin/DummyPlugin](components/plugins/DummyPlugin/DummyPlugin/README.md) +- [components/plugins/DummyPlugin2/DummyPlugin2](components/plugins/DummyPlugin2/DummyPlugin2/README.md) +- [components/ProfileDropdown/ProfileDropdown](components/ProfileDropdown/ProfileDropdown/README.md) +- [components/RecurrenceOptions/CustomRecurrenceModal](components/RecurrenceOptions/CustomRecurrenceModal/README.md) +- [components/RecurrenceOptions/RecurrenceOptions](components/RecurrenceOptions/RecurrenceOptions/README.md) +- [components/RequestsTableItem/RequestsTableItem](components/RequestsTableItem/RequestsTableItem/README.md) +- [components/RequestsTableItem/RequestsTableItemMocks](components/RequestsTableItem/RequestsTableItemMocks/README.md) +- [components/SecuredRoute/SecuredRoute](components/SecuredRoute/SecuredRoute/README.md) +- [components/SuperAdminScreen/SuperAdminScreen](components/SuperAdminScreen/SuperAdminScreen/README.md) +- [components/TableLoader/TableLoader](components/TableLoader/TableLoader/README.md) +- [components/TagActions/TagActions](components/TagActions/TagActions/README.md) +- [components/TagActions/TagActionsMocks](components/TagActions/TagActionsMocks/README.md) +- [components/TagActions/TagNode](components/TagActions/TagNode/README.md) +- [components/TagActions/TagNodeMocks](components/TagActions/TagNodeMocks/README.md) +- [components/UpdateSession/UpdateSession](components/UpdateSession/UpdateSession/README.md) +- [components/UserListCard/UserListCard](components/UserListCard/UserListCard/README.md) +- [components/UserPasswordUpdate/UserPasswordUpdate](components/UserPasswordUpdate/UserPasswordUpdate/README.md) +- [components/UserPasswordUpdate/UserPasswordUpdateMocks](components/UserPasswordUpdate/UserPasswordUpdateMocks/README.md) +- [components/UserPortal/ChatRoom/ChatRoom](components/UserPortal/ChatRoom/ChatRoom/README.md) +- [components/UserPortal/CommentCard/CommentCard](components/UserPortal/CommentCard/CommentCard/README.md) +- [components/UserPortal/ContactCard/ContactCard](components/UserPortal/ContactCard/ContactCard/README.md) +- [components/UserPortal/CreateDirectChat/CreateDirectChat](components/UserPortal/CreateDirectChat/CreateDirectChat/README.md) +- [components/UserPortal/CreateGroupChat/CreateGroupChat](components/UserPortal/CreateGroupChat/CreateGroupChat/README.md) +- [components/UserPortal/DonationCard/DonationCard](components/UserPortal/DonationCard/DonationCard/README.md) +- [components/UserPortal/EventCard/EventCard](components/UserPortal/EventCard/EventCard/README.md) +- [components/UserPortal/OrganizationCard/OrganizationCard](components/UserPortal/OrganizationCard/OrganizationCard/README.md) +- [components/UserPortal/OrganizationNavbar/OrganizationNavbar](components/UserPortal/OrganizationNavbar/OrganizationNavbar/README.md) +- [components/UserPortal/OrganizationSidebar/OrganizationSidebar](components/UserPortal/OrganizationSidebar/OrganizationSidebar/README.md) +- [components/UserPortal/PeopleCard/PeopleCard](components/UserPortal/PeopleCard/PeopleCard/README.md) +- [components/UserPortal/PostCard/PostCard](components/UserPortal/PostCard/PostCard/README.md) +- [components/UserPortal/PromotedPost/PromotedPost](components/UserPortal/PromotedPost/PromotedPost/README.md) +- [components/UserPortal/Register/Register](components/UserPortal/Register/Register/README.md) +- [components/UserPortal/SecuredRouteForUser/SecuredRouteForUser](components/UserPortal/SecuredRouteForUser/SecuredRouteForUser/README.md) +- [components/UserPortal/StartPostModal/StartPostModal](components/UserPortal/StartPostModal/StartPostModal/README.md) +- [components/UserPortal/UserNavbar/UserNavbar](components/UserPortal/UserNavbar/UserNavbar/README.md) +- [components/UserPortal/UserProfile/EventsAttendedByUser](components/UserPortal/UserProfile/EventsAttendedByUser/README.md) +- [components/UserPortal/UserProfile/UserAddressFields](components/UserPortal/UserProfile/UserAddressFields/README.md) +- [components/UserPortal/UserSidebar/UserSidebar](components/UserPortal/UserSidebar/UserSidebar/README.md) +- [components/UserPortal/UserSidebarOrg/UserSidebarOrg](components/UserPortal/UserSidebarOrg/UserSidebarOrg/README.md) +- [components/UserProfileSettings/DeleteUser](components/UserProfileSettings/DeleteUser/README.md) +- [components/UserProfileSettings/OtherSettings](components/UserProfileSettings/OtherSettings/README.md) +- [components/UserProfileSettings/UserProfile](components/UserProfileSettings/UserProfile/README.md) +- [components/UsersTableItem/UsersTableItem](components/UsersTableItem/UsersTableItem/README.md) +- [components/UsersTableItem/UserTableItemMocks](components/UsersTableItem/UserTableItemMocks/README.md) +- [components/Venues/VenueCard](components/Venues/VenueCard/README.md) +- [components/Venues/VenueModal](components/Venues/VenueModal/README.md) +- [Constant/constant](Constant/constant/README.md) +- [constants](constants/README.md) +- [GraphQl/Mutations/ActionItemCategoryMutations](GraphQl/Mutations/ActionItemCategoryMutations/README.md) +- [GraphQl/Mutations/ActionItemMutations](GraphQl/Mutations/ActionItemMutations/README.md) +- [GraphQl/Mutations/AgendaCategoryMutations](GraphQl/Mutations/AgendaCategoryMutations/README.md) +- [GraphQl/Mutations/AgendaItemMutations](GraphQl/Mutations/AgendaItemMutations/README.md) +- [GraphQl/Mutations/CampaignMutation](GraphQl/Mutations/CampaignMutation/README.md) +- [GraphQl/Mutations/CommentMutations](GraphQl/Mutations/CommentMutations/README.md) +- [GraphQl/Mutations/EventAttendeeMutations](GraphQl/Mutations/EventAttendeeMutations/README.md) +- [GraphQl/Mutations/EventVolunteerMutation](GraphQl/Mutations/EventVolunteerMutation/README.md) +- [GraphQl/Mutations/FundMutation](GraphQl/Mutations/FundMutation/README.md) +- [GraphQl/Mutations/mutations](GraphQl/Mutations/mutations/README.md) +- [GraphQl/Mutations/OrganizationMutations](GraphQl/Mutations/OrganizationMutations/README.md) +- [GraphQl/Mutations/PledgeMutation](GraphQl/Mutations/PledgeMutation/README.md) +- [GraphQl/Mutations/TagMutations](GraphQl/Mutations/TagMutations/README.md) +- [GraphQl/Mutations/VenueMutations](GraphQl/Mutations/VenueMutations/README.md) +- [GraphQl/Queries/ActionItemCategoryQueries](GraphQl/Queries/ActionItemCategoryQueries/README.md) +- [GraphQl/Queries/ActionItemQueries](GraphQl/Queries/ActionItemQueries/README.md) +- [GraphQl/Queries/AgendaCategoryQueries](GraphQl/Queries/AgendaCategoryQueries/README.md) +- [GraphQl/Queries/AgendaItemQueries](GraphQl/Queries/AgendaItemQueries/README.md) +- [GraphQl/Queries/EventVolunteerQueries](GraphQl/Queries/EventVolunteerQueries/README.md) +- [GraphQl/Queries/fundQueries](GraphQl/Queries/fundQueries/README.md) +- [GraphQl/Queries/OrganizationQueries](GraphQl/Queries/OrganizationQueries/README.md) +- [GraphQl/Queries/PlugInQueries](GraphQl/Queries/PlugInQueries/README.md) +- [GraphQl/Queries/Queries](GraphQl/Queries/Queries/README.md) +- [GraphQl/Queries/userTagQueries](GraphQl/Queries/userTagQueries/README.md) +- [index](index/README.md) +- [reportWebVitals](reportWebVitals/README.md) +- [screens/BlockUser/BlockUser](screens/BlockUser/BlockUser/README.md) +- [screens/CommunityProfile/CommunityProfile](screens/CommunityProfile/CommunityProfile/README.md) +- [screens/EventManagement/EventManagement](screens/EventManagement/EventManagement/README.md) +- [screens/EventVolunteers/Requests/Requests](screens/EventVolunteers/Requests/Requests/README.md) +- [screens/EventVolunteers/Requests/Requests.mocks](screens/EventVolunteers/Requests/Requests.mocks/README.md) +- [screens/EventVolunteers/VolunteerContainer](screens/EventVolunteers/VolunteerContainer/README.md) +- [screens/EventVolunteers/VolunteerGroups/VolunteerGroupDeleteModal](screens/EventVolunteers/VolunteerGroups/VolunteerGroupDeleteModal/README.md) +- [screens/EventVolunteers/VolunteerGroups/VolunteerGroupModal](screens/EventVolunteers/VolunteerGroups/VolunteerGroupModal/README.md) +- [screens/EventVolunteers/VolunteerGroups/VolunteerGroups](screens/EventVolunteers/VolunteerGroups/VolunteerGroups/README.md) +- [screens/EventVolunteers/VolunteerGroups/VolunteerGroups.mocks](screens/EventVolunteers/VolunteerGroups/VolunteerGroups.mocks/README.md) +- [screens/EventVolunteers/VolunteerGroups/VolunteerGroupViewModal](screens/EventVolunteers/VolunteerGroups/VolunteerGroupViewModal/README.md) +- [screens/EventVolunteers/Volunteers/VolunteerCreateModal](screens/EventVolunteers/Volunteers/VolunteerCreateModal/README.md) +- [screens/EventVolunteers/Volunteers/VolunteerDeleteModal](screens/EventVolunteers/Volunteers/VolunteerDeleteModal/README.md) +- [screens/EventVolunteers/Volunteers/Volunteers](screens/EventVolunteers/Volunteers/Volunteers/README.md) +- [screens/EventVolunteers/Volunteers/Volunteers.mocks](screens/EventVolunteers/Volunteers/Volunteers.mocks/README.md) +- [screens/EventVolunteers/Volunteers/VolunteerViewModal](screens/EventVolunteers/Volunteers/VolunteerViewModal/README.md) +- [screens/ForgotPassword/ForgotPassword](screens/ForgotPassword/ForgotPassword/README.md) +- [screens/FundCampaignPledge/FundCampaignPledge](screens/FundCampaignPledge/FundCampaignPledge/README.md) +- [screens/FundCampaignPledge/PledgeDeleteModal](screens/FundCampaignPledge/PledgeDeleteModal/README.md) +- [screens/FundCampaignPledge/PledgeModal](screens/FundCampaignPledge/PledgeModal/README.md) +- [screens/FundCampaignPledge/PledgesMocks](screens/FundCampaignPledge/PledgesMocks/README.md) +- [screens/Leaderboard/Leaderboard](screens/Leaderboard/Leaderboard/README.md) +- [screens/Leaderboard/Leaderboard.mocks](screens/Leaderboard/Leaderboard.mocks/README.md) +- [screens/LoginPage/LoginPage](screens/LoginPage/LoginPage/README.md) +- [screens/ManageTag/EditUserTagModal](screens/ManageTag/EditUserTagModal/README.md) +- [screens/ManageTag/ManageTag](screens/ManageTag/ManageTag/README.md) +- [screens/ManageTag/ManageTagMockComponents/MockAddPeopleToTag](screens/ManageTag/ManageTagMockComponents/MockAddPeopleToTag/README.md) +- [screens/ManageTag/ManageTagMockComponents/MockTagActions](screens/ManageTag/ManageTagMockComponents/MockTagActions/README.md) +- [screens/ManageTag/ManageTagMocks](screens/ManageTag/ManageTagMocks/README.md) +- [screens/ManageTag/RemoveUserTagModal](screens/ManageTag/RemoveUserTagModal/README.md) +- [screens/ManageTag/UnassignUserTagModal](screens/ManageTag/UnassignUserTagModal/README.md) +- [screens/MemberDetail/MemberDetail](screens/MemberDetail/MemberDetail/README.md) +- [screens/MemberDetail/MemberDetailMocks](screens/MemberDetail/MemberDetailMocks/README.md) +- [screens/OrganizationActionItems/ItemDeleteModal](screens/OrganizationActionItems/ItemDeleteModal/README.md) +- [screens/OrganizationActionItems/ItemModal](screens/OrganizationActionItems/ItemModal/README.md) +- [screens/OrganizationActionItems/ItemUpdateStatusModal](screens/OrganizationActionItems/ItemUpdateStatusModal/README.md) +- [screens/OrganizationActionItems/ItemViewModal](screens/OrganizationActionItems/ItemViewModal/README.md) +- [screens/OrganizationActionItems/OrganizationActionItem.mocks](screens/OrganizationActionItems/OrganizationActionItem.mocks/README.md) +- [screens/OrganizationActionItems/OrganizationActionItems](screens/OrganizationActionItems/OrganizationActionItems/README.md) +- [screens/OrganizationActionItems/testObject.mocks](screens/OrganizationActionItems/testObject.mocks/README.md) +- [screens/OrganizationDashboard/OrganizationDashboard](screens/OrganizationDashboard/OrganizationDashboard/README.md) +- [screens/OrganizationDashboard/OrganizationDashboardMocks](screens/OrganizationDashboard/OrganizationDashboardMocks/README.md) +- [screens/OrganizationEvents/OrganizationEvents](screens/OrganizationEvents/OrganizationEvents/README.md) +- [screens/OrganizationEvents/OrganizationEventsMocks](screens/OrganizationEvents/OrganizationEventsMocks/README.md) +- [screens/OrganizationFundCampaign/CampaignModal](screens/OrganizationFundCampaign/CampaignModal/README.md) +- [screens/OrganizationFundCampaign/OrganizationFundCampagins](screens/OrganizationFundCampaign/OrganizationFundCampagins/README.md) +- [screens/OrganizationFundCampaign/OrganizationFundCampaignMocks](screens/OrganizationFundCampaign/OrganizationFundCampaignMocks/README.md) +- [screens/OrganizationFunds/FundModal](screens/OrganizationFunds/FundModal/README.md) +- [screens/OrganizationFunds/OrganizationFunds](screens/OrganizationFunds/OrganizationFunds/README.md) +- [screens/OrganizationFunds/OrganizationFundsMocks](screens/OrganizationFunds/OrganizationFundsMocks/README.md) +- [screens/OrganizationPeople/AddMember](screens/OrganizationPeople/AddMember/README.md) +- [screens/OrganizationPeople/MockDataTypes](screens/OrganizationPeople/MockDataTypes/README.md) +- [screens/OrganizationPeople/OrganizationPeople](screens/OrganizationPeople/OrganizationPeople/README.md) +- [screens/OrganizationTags/OrganizationTags](screens/OrganizationTags/OrganizationTags/README.md) +- [screens/OrganizationTags/OrganizationTagsMocks](screens/OrganizationTags/OrganizationTagsMocks/README.md) +- [screens/OrganizationVenues/OrganizationVenues](screens/OrganizationVenues/OrganizationVenues/README.md) +- [screens/OrgContribution/OrgContribution](screens/OrgContribution/OrgContribution/README.md) +- [screens/OrgList/OrganizationModal](screens/OrgList/OrganizationModal/README.md) +- [screens/OrgList/OrgList](screens/OrgList/OrgList/README.md) +- [screens/OrgList/OrgListMocks](screens/OrgList/OrgListMocks/README.md) +- [screens/OrgPost/OrgPost](screens/OrgPost/OrgPost/README.md) +- [screens/OrgSettings/OrgSettings](screens/OrgSettings/OrgSettings/README.md) +- [screens/OrgSettings/OrgSettings.mocks](screens/OrgSettings/OrgSettings.mocks/README.md) +- [screens/PageNotFound/PageNotFound](screens/PageNotFound/PageNotFound/README.md) +- [screens/Requests/Requests](screens/Requests/Requests/README.md) +- [screens/Requests/RequestsMocks](screens/Requests/RequestsMocks/README.md) +- [screens/SubTags/SubTags](screens/SubTags/SubTags/README.md) +- [screens/SubTags/SubTagsMocks](screens/SubTags/SubTagsMocks/README.md) +- [screens/UserPortal/Campaigns/Campaigns](screens/UserPortal/Campaigns/Campaigns/README.md) +- [screens/UserPortal/Campaigns/CampaignsMocks](screens/UserPortal/Campaigns/CampaignsMocks/README.md) +- [screens/UserPortal/Campaigns/PledgeModal](screens/UserPortal/Campaigns/PledgeModal/README.md) +- [screens/UserPortal/Chat/Chat](screens/UserPortal/Chat/Chat/README.md) +- [screens/UserPortal/Donate/Donate](screens/UserPortal/Donate/Donate/README.md) +- [screens/UserPortal/Events/Events](screens/UserPortal/Events/Events/README.md) +- [screens/UserPortal/LeaveOrganization/LeaveOrganization](screens/UserPortal/LeaveOrganization/LeaveOrganization/README.md) +- [screens/UserPortal/Organizations/Organizations](screens/UserPortal/Organizations/Organizations/README.md) +- [screens/UserPortal/People/People](screens/UserPortal/People/People/README.md) +- [screens/UserPortal/Pledges/Pledges](screens/UserPortal/Pledges/Pledges/README.md) +- [screens/UserPortal/Pledges/PledgesMocks](screens/UserPortal/Pledges/PledgesMocks/README.md) +- [screens/UserPortal/Posts/Posts](screens/UserPortal/Posts/Posts/README.md) +- [screens/UserPortal/Settings/Settings](screens/UserPortal/Settings/Settings/README.md) +- [screens/UserPortal/UserScreen/UserScreen](screens/UserPortal/UserScreen/UserScreen/README.md) +- [screens/UserPortal/Volunteer/Actions/Actions](screens/UserPortal/Volunteer/Actions/Actions/README.md) +- [screens/UserPortal/Volunteer/Actions/Actions.mocks](screens/UserPortal/Volunteer/Actions/Actions.mocks/README.md) +- [screens/UserPortal/Volunteer/Groups/GroupModal](screens/UserPortal/Volunteer/Groups/GroupModal/README.md) +- [screens/UserPortal/Volunteer/Groups/Groups](screens/UserPortal/Volunteer/Groups/Groups/README.md) +- [screens/UserPortal/Volunteer/Groups/Groups.mocks](screens/UserPortal/Volunteer/Groups/Groups.mocks/README.md) +- [screens/UserPortal/Volunteer/Invitations/Invitations](screens/UserPortal/Volunteer/Invitations/Invitations/README.md) +- [screens/UserPortal/Volunteer/Invitations/Invitations.mocks](screens/UserPortal/Volunteer/Invitations/Invitations.mocks/README.md) +- [screens/UserPortal/Volunteer/UpcomingEvents/UpcomingEvents](screens/UserPortal/Volunteer/UpcomingEvents/UpcomingEvents/README.md) +- [screens/UserPortal/Volunteer/UpcomingEvents/UpcomingEvents.mocks](screens/UserPortal/Volunteer/UpcomingEvents/UpcomingEvents.mocks/README.md) +- [screens/UserPortal/Volunteer/VolunteerManagement](screens/UserPortal/Volunteer/VolunteerManagement/README.md) +- [screens/Users/Users](screens/Users/Users/README.md) +- [screens/Users/UsersMocks](screens/Users/UsersMocks/README.md) +- [setup/askAndSetDockerOption/askAndSetDockerOption](setup/askAndSetDockerOption/askAndSetDockerOption/README.md) +- [setup/askAndUpdatePort/askAndUpdatePort](setup/askAndUpdatePort/askAndUpdatePort/README.md) +- [setup/askForCustomPort/askForCustomPort](setup/askForCustomPort/askForCustomPort/README.md) +- [setup/askForDocker/askForDocker](setup/askForDocker/askForDocker/README.md) +- [setup/askForTalawaApiUrl/askForTalawaApiUrl](setup/askForTalawaApiUrl/askForTalawaApiUrl/README.md) +- [setup/checkConnection/checkConnection](setup/checkConnection/checkConnection/README.md) +- [setup/checkEnvFile/checkEnvFile](setup/checkEnvFile/checkEnvFile/README.md) +- [setup/updateEnvFile/updateEnvFile](setup/updateEnvFile/updateEnvFile/README.md) +- [setup/validateRecaptcha/validateRecaptcha](setup/validateRecaptcha/validateRecaptcha/README.md) +- [setupTests](setupTests/README.md) +- [state](state/README.md) +- [state/action-creators](state/action-creators/README.md) +- [state/helpers/Action](state/helpers/Action/README.md) +- [state/hooks](state/hooks/README.md) +- [state/reducers](state/reducers/README.md) +- [state/reducers/pluginReducer](state/reducers/pluginReducer/README.md) +- [state/reducers/routesReducer](state/reducers/routesReducer/README.md) +- [state/reducers/userRoutesReducer](state/reducers/userRoutesReducer/README.md) +- [state/store](state/store/README.md) +- [subComponents/SortingButton](subComponents/SortingButton/README.md) +- [utils/chartToPdf](utils/chartToPdf/README.md) +- [utils/convertToBase64](utils/convertToBase64/README.md) +- [utils/currency](utils/currency/README.md) +- [utils/dateFormatter](utils/dateFormatter/README.md) +- [utils/errorHandler](utils/errorHandler/README.md) +- [utils/fieldTypes](utils/fieldTypes/README.md) +- [utils/formEnumFields](utils/formEnumFields/README.md) +- [utils/getOrganizationId](utils/getOrganizationId/README.md) +- [utils/getRefreshToken](utils/getRefreshToken/README.md) +- [utils/i18n](utils/i18n/README.md) +- [utils/i18nForTest](utils/i18nForTest/README.md) +- [utils/interfaces](utils/interfaces/README.md) +- [utils/languages](utils/languages/README.md) +- [utils/linkValidator](utils/linkValidator/README.md) +- [utils/organizationTagsUtils](utils/organizationTagsUtils/README.md) +- [utils/recurrenceUtils](utils/recurrenceUtils/README.md) +- [utils/recurrenceUtils/recurrenceConstants](utils/recurrenceUtils/recurrenceConstants/README.md) +- [utils/recurrenceUtils/recurrenceTypes](utils/recurrenceUtils/recurrenceTypes/README.md) +- [utils/recurrenceUtils/recurrenceUtilityFunctions](utils/recurrenceUtils/recurrenceUtilityFunctions/README.md) +- [utils/StaticMockLink](utils/StaticMockLink/README.md) +- [utils/timezoneUtils](utils/timezoneUtils/README.md) +- [utils/timezoneUtils/dateTimeConfig](utils/timezoneUtils/dateTimeConfig/README.md) +- [utils/timezoneUtils/dateTimeMiddleware](utils/timezoneUtils/dateTimeMiddleware/README.md) +- [utils/useLocalstorage](utils/useLocalstorage/README.md) +- [utils/useSession](utils/useSession/README.md) +- [vite-env](vite-env/README.md) diff --git a/docs/docs/auto-docs/reportWebVitals/README.md b/docs/docs/auto-docs/reportWebVitals/README.md new file mode 100644 index 0000000000..7d1257e8c6 --- /dev/null +++ b/docs/docs/auto-docs/reportWebVitals/README.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../README.md) + +*** + +[talawa-admin](../modules.md) / reportWebVitals + +# reportWebVitals + +## Functions + +- [default](functions/default.md) diff --git a/docs/docs/auto-docs/reportWebVitals/functions/default.md b/docs/docs/auto-docs/reportWebVitals/functions/default.md new file mode 100644 index 0000000000..4ae7afc222 --- /dev/null +++ b/docs/docs/auto-docs/reportWebVitals/functions/default.md @@ -0,0 +1,21 @@ +[**talawa-admin**](../../README.md) + +*** + +[talawa-admin](../../modules.md) / [reportWebVitals](../README.md) / default + +# Function: default() + +> **default**(`onPerfEntry`?): `void` + +Defined in: [src/reportWebVitals.ts:4](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/reportWebVitals.ts#L4) + +## Parameters + +### onPerfEntry? + +(`metric`) => `void` + +## Returns + +`void` diff --git a/docs/docs/auto-docs/screens/BlockUser/BlockUser/README.md b/docs/docs/auto-docs/screens/BlockUser/BlockUser/README.md new file mode 100644 index 0000000000..5966130741 --- /dev/null +++ b/docs/docs/auto-docs/screens/BlockUser/BlockUser/README.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / screens/BlockUser/BlockUser + +# screens/BlockUser/BlockUser + +## Functions + +- [default](functions/default.md) diff --git a/docs/docs/auto-docs/screens/BlockUser/BlockUser/functions/default.md b/docs/docs/auto-docs/screens/BlockUser/BlockUser/functions/default.md new file mode 100644 index 0000000000..9ab1f75bd8 --- /dev/null +++ b/docs/docs/auto-docs/screens/BlockUser/BlockUser/functions/default.md @@ -0,0 +1,28 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [screens/BlockUser/BlockUser](../README.md) / default + +# Function: default() + +> **default**(): `Element` + +Defined in: [src/screens/BlockUser/BlockUser.tsx:45](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/BlockUser/BlockUser.tsx#L45) + +Requests component displays and manages a list of users that can be blocked or unblocked. + +This component allows users to search for members by their first name or last name, +toggle between viewing blocked and all members, and perform block/unblock operations. + +## Returns + +`Element` + +JSX.Element - The `Requests` component. + +## Example + +```tsx + +``` diff --git a/docs/docs/auto-docs/screens/CommunityProfile/CommunityProfile/README.md b/docs/docs/auto-docs/screens/CommunityProfile/CommunityProfile/README.md new file mode 100644 index 0000000000..4cfeaf8531 --- /dev/null +++ b/docs/docs/auto-docs/screens/CommunityProfile/CommunityProfile/README.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / screens/CommunityProfile/CommunityProfile + +# screens/CommunityProfile/CommunityProfile + +## Functions + +- [default](functions/default.md) diff --git a/docs/docs/auto-docs/screens/CommunityProfile/CommunityProfile/functions/default.md b/docs/docs/auto-docs/screens/CommunityProfile/CommunityProfile/functions/default.md new file mode 100644 index 0000000000..8b0074f2ec --- /dev/null +++ b/docs/docs/auto-docs/screens/CommunityProfile/CommunityProfile/functions/default.md @@ -0,0 +1,30 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [screens/CommunityProfile/CommunityProfile](../README.md) / default + +# Function: default() + +> **default**(): `Element` + +Defined in: [src/screens/CommunityProfile/CommunityProfile.tsx:40](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/CommunityProfile/CommunityProfile.tsx#L40) + +`CommunityProfile` component allows users to view and update their community profile details. + +It includes functionalities to: +- Display current community profile information +- Update profile details including social media links and logo +- Reset profile changes to the initial state + +## Returns + +`Element` + +JSX.Element - The `CommunityProfile` component. + +## Example + +```tsx + +``` diff --git a/docs/docs/auto-docs/screens/EventManagement/EventManagement/README.md b/docs/docs/auto-docs/screens/EventManagement/EventManagement/README.md new file mode 100644 index 0000000000..65b8b007de --- /dev/null +++ b/docs/docs/auto-docs/screens/EventManagement/EventManagement/README.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / screens/EventManagement/EventManagement + +# screens/EventManagement/EventManagement + +## Functions + +- [default](functions/default.md) diff --git a/docs/docs/auto-docs/screens/EventManagement/EventManagement/functions/default.md b/docs/docs/auto-docs/screens/EventManagement/EventManagement/functions/default.md new file mode 100644 index 0000000000..6acdee8548 --- /dev/null +++ b/docs/docs/auto-docs/screens/EventManagement/EventManagement/functions/default.md @@ -0,0 +1,34 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [screens/EventManagement/EventManagement](../README.md) / default + +# Function: default() + +> **default**(): `Element` + +Defined in: [src/screens/EventManagement/EventManagement.tsx:91](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/EventManagement/EventManagement.tsx#L91) + +`EventManagement` component handles the display and navigation of different event management sections. + +It provides a tabbed interface for: +- Viewing event dashboard +- Managing event registrants +- Handling event actions +- Reviewing event agendas +- Viewing event statistics +- Managing event volunteers +- Managing event attendance + +## Returns + +`Element` + +JSX.Element - The `EventManagement` component. + +## Example + +```tsx + +``` diff --git a/docs/docs/auto-docs/screens/EventVolunteers/Requests/Requests.mocks/README.md b/docs/docs/auto-docs/screens/EventVolunteers/Requests/Requests.mocks/README.md new file mode 100644 index 0000000000..75a66f86b6 --- /dev/null +++ b/docs/docs/auto-docs/screens/EventVolunteers/Requests/Requests.mocks/README.md @@ -0,0 +1,14 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / screens/EventVolunteers/Requests/Requests.mocks + +# screens/EventVolunteers/Requests/Requests.mocks + +## Variables + +- [EMPTY\_MOCKS](variables/EMPTY_MOCKS.md) +- [ERROR\_MOCKS](variables/ERROR_MOCKS.md) +- [MOCKS](variables/MOCKS.md) +- [UPDATE\_ERROR\_MOCKS](variables/UPDATE_ERROR_MOCKS.md) diff --git a/docs/docs/auto-docs/screens/EventVolunteers/Requests/Requests.mocks/variables/EMPTY_MOCKS.md b/docs/docs/auto-docs/screens/EventVolunteers/Requests/Requests.mocks/variables/EMPTY_MOCKS.md new file mode 100644 index 0000000000..17665932f8 --- /dev/null +++ b/docs/docs/auto-docs/screens/EventVolunteers/Requests/Requests.mocks/variables/EMPTY_MOCKS.md @@ -0,0 +1,49 @@ +[**talawa-admin**](../../../../../README.md) + +*** + +[talawa-admin](../../../../../modules.md) / [screens/EventVolunteers/Requests/Requests.mocks](../README.md) / EMPTY\_MOCKS + +# Variable: EMPTY\_MOCKS + +> `const` **EMPTY\_MOCKS**: `object`[] + +Defined in: [src/screens/EventVolunteers/Requests/Requests.mocks.ts:148](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/EventVolunteers/Requests/Requests.mocks.ts#L148) + +## Type declaration + +### request + +> **request**: `object` + +#### request.query + +> **query**: `DocumentNode` = `USER_VOLUNTEER_MEMBERSHIP` + +#### request.variables + +> **variables**: `object` + +#### request.variables.where + +> **where**: `object` + +#### request.variables.where.eventId + +> **eventId**: `string` = `'eventId'` + +#### request.variables.where.status + +> **status**: `string` = `'requested'` + +### result + +> **result**: `object` + +#### result.data + +> **data**: `object` + +#### result.data.getVolunteerMembership + +> **getVolunteerMembership**: `any`[] = `[]` diff --git a/docs/docs/auto-docs/screens/EventVolunteers/Requests/Requests.mocks/variables/ERROR_MOCKS.md b/docs/docs/auto-docs/screens/EventVolunteers/Requests/Requests.mocks/variables/ERROR_MOCKS.md new file mode 100644 index 0000000000..c2b0287b3b --- /dev/null +++ b/docs/docs/auto-docs/screens/EventVolunteers/Requests/Requests.mocks/variables/ERROR_MOCKS.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../../../README.md) + +*** + +[talawa-admin](../../../../../modules.md) / [screens/EventVolunteers/Requests/Requests.mocks](../README.md) / ERROR\_MOCKS + +# Variable: ERROR\_MOCKS + +> `const` **ERROR\_MOCKS**: (\{ `error`: `Error`; `request`: \{ `query`: `DocumentNode`; `variables`: \{ `id`: `undefined`; `orderBy`: `any`; `status`: `undefined`; `where`: \{ `eventId`: `string`; `status`: `string`; `userName`: `any`; \}; \}; \}; \} \| \{ `error`: `Error`; `request`: \{ `query`: `DocumentNode`; `variables`: \{ `id`: `string`; `orderBy`: `undefined`; `status`: `string`; `where`: `undefined`; \}; \}; \})[] + +Defined in: [src/screens/EventVolunteers/Requests/Requests.mocks.ts:167](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/EventVolunteers/Requests/Requests.mocks.ts#L167) diff --git a/docs/docs/auto-docs/screens/EventVolunteers/Requests/Requests.mocks/variables/MOCKS.md b/docs/docs/auto-docs/screens/EventVolunteers/Requests/Requests.mocks/variables/MOCKS.md new file mode 100644 index 0000000000..fb7352a3ad --- /dev/null +++ b/docs/docs/auto-docs/screens/EventVolunteers/Requests/Requests.mocks/variables/MOCKS.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../../../README.md) + +*** + +[talawa-admin](../../../../../modules.md) / [screens/EventVolunteers/Requests/Requests.mocks](../README.md) / MOCKS + +# Variable: MOCKS + +> `const` **MOCKS**: (\{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `id`: `undefined`; `orderBy`: `undefined`; `status`: `undefined`; `where`: \{ `eventId`: `string`; `status`: `string`; `userName`: `undefined`; \}; \}; \}; `result`: \{ `data`: \{ `getVolunteerMembership`: `object`[]; `updateVolunteerMembership`: `undefined`; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `id`: `undefined`; `orderBy`: `string`; `status`: `undefined`; `where`: \{ `eventId`: `string`; `status`: `string`; `userName`: `undefined`; \}; \}; \}; `result`: \{ `data`: \{ `getVolunteerMembership`: `object`[]; `updateVolunteerMembership`: `undefined`; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `id`: `undefined`; `orderBy`: `undefined`; `status`: `undefined`; `where`: \{ `eventId`: `string`; `status`: `string`; `userName`: `string`; \}; \}; \}; `result`: \{ `data`: \{ `getVolunteerMembership`: `object`[]; `updateVolunteerMembership`: `undefined`; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `id`: `string`; `orderBy`: `undefined`; `status`: `string`; `where`: `undefined`; \}; \}; `result`: \{ `data`: \{ `getVolunteerMembership`: `undefined`; `updateVolunteerMembership`: \{ `_id`: `string`; \}; \}; \}; \})[] + +Defined in: [src/screens/EventVolunteers/Requests/Requests.mocks.ts:46](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/EventVolunteers/Requests/Requests.mocks.ts#L46) diff --git a/docs/docs/auto-docs/screens/EventVolunteers/Requests/Requests.mocks/variables/UPDATE_ERROR_MOCKS.md b/docs/docs/auto-docs/screens/EventVolunteers/Requests/Requests.mocks/variables/UPDATE_ERROR_MOCKS.md new file mode 100644 index 0000000000..f0c6d59d0b --- /dev/null +++ b/docs/docs/auto-docs/screens/EventVolunteers/Requests/Requests.mocks/variables/UPDATE_ERROR_MOCKS.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../../../README.md) + +*** + +[talawa-admin](../../../../../modules.md) / [screens/EventVolunteers/Requests/Requests.mocks](../README.md) / UPDATE\_ERROR\_MOCKS + +# Variable: UPDATE\_ERROR\_MOCKS + +> `const` **UPDATE\_ERROR\_MOCKS**: (\{ `error`: `undefined`; `request`: \{ `query`: `DocumentNode`; `variables`: \{ `id`: `undefined`; `status`: `undefined`; `where`: \{ `eventId`: `string`; `status`: `string`; \}; \}; \}; `result`: \{ `data`: \{ `getVolunteerMembership`: `object`[]; \}; \}; \} \| \{ `error`: `Error`; `request`: \{ `query`: `DocumentNode`; `variables`: \{ `id`: `string`; `status`: `string`; `where`: `undefined`; \}; \}; `result`: `undefined`; \})[] + +Defined in: [src/screens/EventVolunteers/Requests/Requests.mocks.ts:194](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/EventVolunteers/Requests/Requests.mocks.ts#L194) diff --git a/docs/docs/auto-docs/screens/EventVolunteers/Requests/Requests/README.md b/docs/docs/auto-docs/screens/EventVolunteers/Requests/Requests/README.md new file mode 100644 index 0000000000..669266bca9 --- /dev/null +++ b/docs/docs/auto-docs/screens/EventVolunteers/Requests/Requests/README.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / screens/EventVolunteers/Requests/Requests + +# screens/EventVolunteers/Requests/Requests + +## Functions + +- [default](functions/default.md) diff --git a/docs/docs/auto-docs/screens/EventVolunteers/Requests/Requests/functions/default.md b/docs/docs/auto-docs/screens/EventVolunteers/Requests/Requests/functions/default.md new file mode 100644 index 0000000000..7ff59a553f --- /dev/null +++ b/docs/docs/auto-docs/screens/EventVolunteers/Requests/Requests/functions/default.md @@ -0,0 +1,21 @@ +[**talawa-admin**](../../../../../README.md) + +*** + +[talawa-admin](../../../../../modules.md) / [screens/EventVolunteers/Requests/Requests](../README.md) / default + +# Function: default() + +> **default**(): `JSX.Element` + +Defined in: [src/screens/EventVolunteers/Requests/Requests.tsx:53](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/EventVolunteers/Requests/Requests.tsx#L53) + +Component for managing and displaying Volunteer Membership requests for an event. + +This component allows users to view, filter, sort, and create action items. It also allows users to accept or reject volunteer membership requests. + +## Returns + +`JSX.Element` + +The rendered component. diff --git a/docs/docs/auto-docs/screens/EventVolunteers/VolunteerContainer/README.md b/docs/docs/auto-docs/screens/EventVolunteers/VolunteerContainer/README.md new file mode 100644 index 0000000000..03cc6c6ef1 --- /dev/null +++ b/docs/docs/auto-docs/screens/EventVolunteers/VolunteerContainer/README.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / screens/EventVolunteers/VolunteerContainer + +# screens/EventVolunteers/VolunteerContainer + +## Functions + +- [default](functions/default.md) diff --git a/docs/docs/auto-docs/screens/EventVolunteers/VolunteerContainer/functions/default.md b/docs/docs/auto-docs/screens/EventVolunteers/VolunteerContainer/functions/default.md new file mode 100644 index 0000000000..b28f6eb70b --- /dev/null +++ b/docs/docs/auto-docs/screens/EventVolunteers/VolunteerContainer/functions/default.md @@ -0,0 +1,21 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [screens/EventVolunteers/VolunteerContainer](../README.md) / default + +# Function: default() + +> **default**(): `JSX.Element` + +Defined in: [src/screens/EventVolunteers/VolunteerContainer.tsx:18](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/EventVolunteers/VolunteerContainer.tsx#L18) + +Container Component for Volunteer or VolunteerGroups as per selection. + +This component allows users switch between Volunteers and VolunteerGroups. + +## Returns + +`JSX.Element` + +The rendered component. diff --git a/docs/docs/auto-docs/screens/EventVolunteers/VolunteerGroups/VolunteerGroupDeleteModal/README.md b/docs/docs/auto-docs/screens/EventVolunteers/VolunteerGroups/VolunteerGroupDeleteModal/README.md new file mode 100644 index 0000000000..d744309fca --- /dev/null +++ b/docs/docs/auto-docs/screens/EventVolunteers/VolunteerGroups/VolunteerGroupDeleteModal/README.md @@ -0,0 +1,15 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / screens/EventVolunteers/VolunteerGroups/VolunteerGroupDeleteModal + +# screens/EventVolunteers/VolunteerGroups/VolunteerGroupDeleteModal + +## Interfaces + +- [InterfaceDeleteVolunteerGroupModal](interfaces/InterfaceDeleteVolunteerGroupModal.md) + +## Functions + +- [default](functions/default.md) diff --git a/docs/docs/auto-docs/screens/EventVolunteers/VolunteerGroups/VolunteerGroupDeleteModal/functions/default.md b/docs/docs/auto-docs/screens/EventVolunteers/VolunteerGroups/VolunteerGroupDeleteModal/functions/default.md new file mode 100644 index 0000000000..e070e40aee --- /dev/null +++ b/docs/docs/auto-docs/screens/EventVolunteers/VolunteerGroups/VolunteerGroupDeleteModal/functions/default.md @@ -0,0 +1,48 @@ +[**talawa-admin**](../../../../../README.md) + +*** + +[talawa-admin](../../../../../modules.md) / [screens/EventVolunteers/VolunteerGroups/VolunteerGroupDeleteModal](../README.md) / default + +# Function: default() + +> **default**(`props`, `deprecatedLegacyContext`?): `ReactNode` + +Defined in: [src/screens/EventVolunteers/VolunteerGroups/VolunteerGroupDeleteModal.tsx:42](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/EventVolunteers/VolunteerGroups/VolunteerGroupDeleteModal.tsx#L42) + +A modal dialog for confirming the deletion of a volunteer group. + +## Parameters + +### props + +[`InterfaceDeleteVolunteerGroupModal`](../interfaces/InterfaceDeleteVolunteerGroupModal.md) + +### deprecatedLegacyContext? + +`any` + +**Deprecated** + +**See** + +[React Docs](https://legacy.reactjs.org/docs/legacy-context.html#referencing-context-in-lifecycle-methods) + +## Returns + +`ReactNode` + +The rendered modal component. + +The `VolunteerGroupDeleteModal` component displays a confirmation dialog when a user attempts to delete a volunteer group. +It allows the user to either confirm or cancel the deletion. +On confirmation, the `deleteVolunteerGroup` mutation is called to remove the volunteer group from the database, +and the `refetchGroups` function is invoked to update the list of volunteer groups. +A success or error toast notification is shown based on the result of the deletion operation. + +The modal includes: +- A header with a title and a close button. +- A body with a message asking for confirmation. +- A footer with "Yes" and "No" buttons to confirm or cancel the deletion. + +The `deleteVolunteerGroup` mutation is used to perform the deletion operation. diff --git a/docs/docs/auto-docs/screens/EventVolunteers/VolunteerGroups/VolunteerGroupDeleteModal/interfaces/InterfaceDeleteVolunteerGroupModal.md b/docs/docs/auto-docs/screens/EventVolunteers/VolunteerGroups/VolunteerGroupDeleteModal/interfaces/InterfaceDeleteVolunteerGroupModal.md new file mode 100644 index 0000000000..6f1a67e883 --- /dev/null +++ b/docs/docs/auto-docs/screens/EventVolunteers/VolunteerGroups/VolunteerGroupDeleteModal/interfaces/InterfaceDeleteVolunteerGroupModal.md @@ -0,0 +1,49 @@ +[**talawa-admin**](../../../../../README.md) + +*** + +[talawa-admin](../../../../../modules.md) / [screens/EventVolunteers/VolunteerGroups/VolunteerGroupDeleteModal](../README.md) / InterfaceDeleteVolunteerGroupModal + +# Interface: InterfaceDeleteVolunteerGroupModal + +Defined in: [src/screens/EventVolunteers/VolunteerGroups/VolunteerGroupDeleteModal.tsx:10](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/EventVolunteers/VolunteerGroups/VolunteerGroupDeleteModal.tsx#L10) + +## Properties + +### group + +> **group**: [`InterfaceVolunteerGroupInfo`](../../../../../utils/interfaces/interfaces/InterfaceVolunteerGroupInfo.md) + +Defined in: [src/screens/EventVolunteers/VolunteerGroups/VolunteerGroupDeleteModal.tsx:13](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/EventVolunteers/VolunteerGroups/VolunteerGroupDeleteModal.tsx#L13) + +*** + +### hide() + +> **hide**: () => `void` + +Defined in: [src/screens/EventVolunteers/VolunteerGroups/VolunteerGroupDeleteModal.tsx:12](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/EventVolunteers/VolunteerGroups/VolunteerGroupDeleteModal.tsx#L12) + +#### Returns + +`void` + +*** + +### isOpen + +> **isOpen**: `boolean` + +Defined in: [src/screens/EventVolunteers/VolunteerGroups/VolunteerGroupDeleteModal.tsx:11](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/EventVolunteers/VolunteerGroups/VolunteerGroupDeleteModal.tsx#L11) + +*** + +### refetchGroups() + +> **refetchGroups**: () => `void` + +Defined in: [src/screens/EventVolunteers/VolunteerGroups/VolunteerGroupDeleteModal.tsx:14](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/EventVolunteers/VolunteerGroups/VolunteerGroupDeleteModal.tsx#L14) + +#### Returns + +`void` diff --git a/docs/docs/auto-docs/screens/EventVolunteers/VolunteerGroups/VolunteerGroupModal/README.md b/docs/docs/auto-docs/screens/EventVolunteers/VolunteerGroups/VolunteerGroupModal/README.md new file mode 100644 index 0000000000..51f59d0b3d --- /dev/null +++ b/docs/docs/auto-docs/screens/EventVolunteers/VolunteerGroups/VolunteerGroupModal/README.md @@ -0,0 +1,15 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / screens/EventVolunteers/VolunteerGroups/VolunteerGroupModal + +# screens/EventVolunteers/VolunteerGroups/VolunteerGroupModal + +## Interfaces + +- [InterfaceVolunteerGroupModal](interfaces/InterfaceVolunteerGroupModal.md) + +## Functions + +- [default](functions/default.md) diff --git a/docs/docs/auto-docs/screens/EventVolunteers/VolunteerGroups/VolunteerGroupModal/functions/default.md b/docs/docs/auto-docs/screens/EventVolunteers/VolunteerGroups/VolunteerGroupModal/functions/default.md new file mode 100644 index 0000000000..dc52466905 --- /dev/null +++ b/docs/docs/auto-docs/screens/EventVolunteers/VolunteerGroups/VolunteerGroupModal/functions/default.md @@ -0,0 +1,54 @@ +[**talawa-admin**](../../../../../README.md) + +*** + +[talawa-admin](../../../../../modules.md) / [screens/EventVolunteers/VolunteerGroups/VolunteerGroupModal](../README.md) / default + +# Function: default() + +> **default**(`props`, `deprecatedLegacyContext`?): `ReactNode` + +Defined in: [src/screens/EventVolunteers/VolunteerGroups/VolunteerGroupModal.tsx:63](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/EventVolunteers/VolunteerGroups/VolunteerGroupModal.tsx#L63) + +A modal dialog for creating or editing a volunteer group. + +## Parameters + +### props + +[`InterfaceVolunteerGroupModal`](../interfaces/InterfaceVolunteerGroupModal.md) + +### deprecatedLegacyContext? + +`any` + +**Deprecated** + +**See** + +[React Docs](https://legacy.reactjs.org/docs/legacy-context.html#referencing-context-in-lifecycle-methods) + +## Returns + +`ReactNode` + +The rendered modal component. + +The `VolunteerGroupModal` component displays a form within a modal dialog for creating or editing a Volunteer Group. +It includes fields for entering the group name, description, volunteersRequired, and selecting volunteers/leaders. + +The modal includes: +- A header with a title indicating the current mode (create or edit) and a close button. +- A form with: + - An input field for entering the group name. + - A textarea for entering the group description. + - A multi-select dropdown for selecting leader. + - A multi-select dropdown for selecting volunteers. + - An input field for entering the number of volunteers required. +- A submit button to create or update the pledge. + +On form submission, the component either: +- Calls `updatePledge` mutation to update an existing pledge, or +- Calls `createPledge` mutation to create a new pledge. + +Success or error messages are displayed using toast notifications based on the result of the mutation. diff --git a/docs/docs/auto-docs/screens/EventVolunteers/VolunteerGroups/VolunteerGroupModal/interfaces/InterfaceVolunteerGroupModal.md b/docs/docs/auto-docs/screens/EventVolunteers/VolunteerGroups/VolunteerGroupModal/interfaces/InterfaceVolunteerGroupModal.md new file mode 100644 index 0000000000..a59525b134 --- /dev/null +++ b/docs/docs/auto-docs/screens/EventVolunteers/VolunteerGroups/VolunteerGroupModal/interfaces/InterfaceVolunteerGroupModal.md @@ -0,0 +1,73 @@ +[**talawa-admin**](../../../../../README.md) + +*** + +[talawa-admin](../../../../../modules.md) / [screens/EventVolunteers/VolunteerGroups/VolunteerGroupModal](../README.md) / InterfaceVolunteerGroupModal + +# Interface: InterfaceVolunteerGroupModal + +Defined in: [src/screens/EventVolunteers/VolunteerGroups/VolunteerGroupModal.tsx:21](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/EventVolunteers/VolunteerGroups/VolunteerGroupModal.tsx#L21) + +## Properties + +### eventId + +> **eventId**: `string` + +Defined in: [src/screens/EventVolunteers/VolunteerGroups/VolunteerGroupModal.tsx:24](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/EventVolunteers/VolunteerGroups/VolunteerGroupModal.tsx#L24) + +*** + +### group + +> **group**: [`InterfaceVolunteerGroupInfo`](../../../../../utils/interfaces/interfaces/InterfaceVolunteerGroupInfo.md) + +Defined in: [src/screens/EventVolunteers/VolunteerGroups/VolunteerGroupModal.tsx:26](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/EventVolunteers/VolunteerGroups/VolunteerGroupModal.tsx#L26) + +*** + +### hide() + +> **hide**: () => `void` + +Defined in: [src/screens/EventVolunteers/VolunteerGroups/VolunteerGroupModal.tsx:23](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/EventVolunteers/VolunteerGroups/VolunteerGroupModal.tsx#L23) + +#### Returns + +`void` + +*** + +### isOpen + +> **isOpen**: `boolean` + +Defined in: [src/screens/EventVolunteers/VolunteerGroups/VolunteerGroupModal.tsx:22](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/EventVolunteers/VolunteerGroups/VolunteerGroupModal.tsx#L22) + +*** + +### mode + +> **mode**: `"edit"` \| `"create"` + +Defined in: [src/screens/EventVolunteers/VolunteerGroups/VolunteerGroupModal.tsx:28](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/EventVolunteers/VolunteerGroups/VolunteerGroupModal.tsx#L28) + +*** + +### orgId + +> **orgId**: `string` + +Defined in: [src/screens/EventVolunteers/VolunteerGroups/VolunteerGroupModal.tsx:25](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/EventVolunteers/VolunteerGroups/VolunteerGroupModal.tsx#L25) + +*** + +### refetchGroups() + +> **refetchGroups**: () => `void` + +Defined in: [src/screens/EventVolunteers/VolunteerGroups/VolunteerGroupModal.tsx:27](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/EventVolunteers/VolunteerGroups/VolunteerGroupModal.tsx#L27) + +#### Returns + +`void` diff --git a/docs/docs/auto-docs/screens/EventVolunteers/VolunteerGroups/VolunteerGroupViewModal/README.md b/docs/docs/auto-docs/screens/EventVolunteers/VolunteerGroups/VolunteerGroupViewModal/README.md new file mode 100644 index 0000000000..9e4517af04 --- /dev/null +++ b/docs/docs/auto-docs/screens/EventVolunteers/VolunteerGroups/VolunteerGroupViewModal/README.md @@ -0,0 +1,15 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / screens/EventVolunteers/VolunteerGroups/VolunteerGroupViewModal + +# screens/EventVolunteers/VolunteerGroups/VolunteerGroupViewModal + +## Interfaces + +- [InterfaceVolunteerGroupViewModal](interfaces/InterfaceVolunteerGroupViewModal.md) + +## Functions + +- [default](functions/default.md) diff --git a/docs/docs/auto-docs/screens/EventVolunteers/VolunteerGroups/VolunteerGroupViewModal/functions/default.md b/docs/docs/auto-docs/screens/EventVolunteers/VolunteerGroups/VolunteerGroupViewModal/functions/default.md new file mode 100644 index 0000000000..71fc8aa359 --- /dev/null +++ b/docs/docs/auto-docs/screens/EventVolunteers/VolunteerGroups/VolunteerGroupViewModal/functions/default.md @@ -0,0 +1,41 @@ +[**talawa-admin**](../../../../../README.md) + +*** + +[talawa-admin](../../../../../modules.md) / [screens/EventVolunteers/VolunteerGroups/VolunteerGroupViewModal](../README.md) / default + +# Function: default() + +> **default**(`props`, `deprecatedLegacyContext`?): `ReactNode` + +Defined in: [src/screens/EventVolunteers/VolunteerGroups/VolunteerGroupViewModal.tsx:41](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/EventVolunteers/VolunteerGroups/VolunteerGroupViewModal.tsx#L41) + +A modal dialog for viewing volunteer group information for an event. + +## Parameters + +### props + +[`InterfaceVolunteerGroupViewModal`](../interfaces/InterfaceVolunteerGroupViewModal.md) + +### deprecatedLegacyContext? + +`any` + +**Deprecated** + +**See** + +[React Docs](https://legacy.reactjs.org/docs/legacy-context.html#referencing-context-in-lifecycle-methods) + +## Returns + +`ReactNode` + +The rendered modal component. + +The `VolunteerGroupViewModal` component displays all the fields of a volunteer group in a modal dialog. + +The modal includes: +- A header with a title and a close button. +- fields for volunteer name, status, hours volunteered, groups, and assignments. diff --git a/docs/docs/auto-docs/screens/EventVolunteers/VolunteerGroups/VolunteerGroupViewModal/interfaces/InterfaceVolunteerGroupViewModal.md b/docs/docs/auto-docs/screens/EventVolunteers/VolunteerGroups/VolunteerGroupViewModal/interfaces/InterfaceVolunteerGroupViewModal.md new file mode 100644 index 0000000000..7bb3b9b71e --- /dev/null +++ b/docs/docs/auto-docs/screens/EventVolunteers/VolunteerGroups/VolunteerGroupViewModal/interfaces/InterfaceVolunteerGroupViewModal.md @@ -0,0 +1,37 @@ +[**talawa-admin**](../../../../../README.md) + +*** + +[talawa-admin](../../../../../modules.md) / [screens/EventVolunteers/VolunteerGroups/VolunteerGroupViewModal](../README.md) / InterfaceVolunteerGroupViewModal + +# Interface: InterfaceVolunteerGroupViewModal + +Defined in: [src/screens/EventVolunteers/VolunteerGroups/VolunteerGroupViewModal.tsx:19](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/EventVolunteers/VolunteerGroups/VolunteerGroupViewModal.tsx#L19) + +## Properties + +### group + +> **group**: [`InterfaceVolunteerGroupInfo`](../../../../../utils/interfaces/interfaces/InterfaceVolunteerGroupInfo.md) + +Defined in: [src/screens/EventVolunteers/VolunteerGroups/VolunteerGroupViewModal.tsx:22](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/EventVolunteers/VolunteerGroups/VolunteerGroupViewModal.tsx#L22) + +*** + +### hide() + +> **hide**: () => `void` + +Defined in: [src/screens/EventVolunteers/VolunteerGroups/VolunteerGroupViewModal.tsx:21](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/EventVolunteers/VolunteerGroups/VolunteerGroupViewModal.tsx#L21) + +#### Returns + +`void` + +*** + +### isOpen + +> **isOpen**: `boolean` + +Defined in: [src/screens/EventVolunteers/VolunteerGroups/VolunteerGroupViewModal.tsx:20](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/EventVolunteers/VolunteerGroups/VolunteerGroupViewModal.tsx#L20) diff --git a/docs/docs/auto-docs/screens/EventVolunteers/VolunteerGroups/VolunteerGroups.mocks/README.md b/docs/docs/auto-docs/screens/EventVolunteers/VolunteerGroups/VolunteerGroups.mocks/README.md new file mode 100644 index 0000000000..f9b469997c --- /dev/null +++ b/docs/docs/auto-docs/screens/EventVolunteers/VolunteerGroups/VolunteerGroups.mocks/README.md @@ -0,0 +1,13 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / screens/EventVolunteers/VolunteerGroups/VolunteerGroups.mocks + +# screens/EventVolunteers/VolunteerGroups/VolunteerGroups.mocks + +## Variables + +- [MOCKS](variables/MOCKS.md) +- [MOCKS\_EMPTY](variables/MOCKS_EMPTY.md) +- [MOCKS\_ERROR](variables/MOCKS_ERROR.md) diff --git a/docs/docs/auto-docs/screens/EventVolunteers/VolunteerGroups/VolunteerGroups.mocks/variables/MOCKS.md b/docs/docs/auto-docs/screens/EventVolunteers/VolunteerGroups/VolunteerGroups.mocks/variables/MOCKS.md new file mode 100644 index 0000000000..f1ad816c95 --- /dev/null +++ b/docs/docs/auto-docs/screens/EventVolunteers/VolunteerGroups/VolunteerGroups.mocks/variables/MOCKS.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../../../README.md) + +*** + +[talawa-admin](../../../../../modules.md) / [screens/EventVolunteers/VolunteerGroups/VolunteerGroups.mocks](../README.md) / MOCKS + +# Variable: MOCKS + +> `const` **MOCKS**: (\{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `data`: `undefined`; `id`: `undefined`; `orderBy`: `string`; `where`: \{ `eventId`: `string`; `leaderName`: `any`; `name_contains`: `string`; \}; \}; \}; `result`: \{ `data`: \{ `createEventVolunteerGroup`: `undefined`; `getEventVolunteerGroups`: `object`[]; `organizations`: `undefined`; `removeEventVolunteerGroup`: `undefined`; `updateEventVolunteerGroup`: `undefined`; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `data`: `undefined`; `id`: `undefined`; `orderBy`: `any`; `where`: \{ `eventId`: `string`; `leaderName`: `string`; `name_contains`: `any`; \}; \}; \}; `result`: \{ `data`: \{ `createEventVolunteerGroup`: `undefined`; `getEventVolunteerGroups`: `object`[]; `organizations`: `undefined`; `removeEventVolunteerGroup`: `undefined`; `updateEventVolunteerGroup`: `undefined`; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `data`: `undefined`; `id`: `string`; `orderBy`: `undefined`; `where`: `undefined`; \}; \}; `result`: \{ `data`: \{ `createEventVolunteerGroup`: `undefined`; `getEventVolunteerGroups`: `undefined`; `organizations`: `object`[]; `removeEventVolunteerGroup`: `undefined`; `updateEventVolunteerGroup`: `undefined`; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `data`: \{ `description`: `string`; `eventId`: `string`; `leaderId`: `string`; `name`: `string`; `volunteersRequired`: `number`; `volunteerUserIds`: `string`[]; \}; `id`: `undefined`; `orderBy`: `undefined`; `where`: `undefined`; \}; \}; `result`: \{ `data`: \{ `createEventVolunteerGroup`: \{ `_id`: `string`; \}; `getEventVolunteerGroups`: `undefined`; `organizations`: `undefined`; `removeEventVolunteerGroup`: `undefined`; `updateEventVolunteerGroup`: `undefined`; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `data`: `undefined`; `id`: `string`; `orderBy`: `undefined`; `where`: `undefined`; \}; \}; `result`: \{ `data`: \{ `createEventVolunteerGroup`: `undefined`; `getEventVolunteerGroups`: `undefined`; `organizations`: `undefined`; `removeEventVolunteerGroup`: \{ `_id`: `string`; \}; `updateEventVolunteerGroup`: `undefined`; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `data`: \{ `description`: `string`; `eventId`: `string`; `leaderId`: `undefined`; `name`: `string`; `volunteersRequired`: `number`; `volunteerUserIds`: `undefined`; \}; `id`: `string`; `orderBy`: `undefined`; `where`: `undefined`; \}; \}; `result`: \{ `data`: \{ `createEventVolunteerGroup`: `undefined`; `getEventVolunteerGroups`: `undefined`; `organizations`: `undefined`; `removeEventVolunteerGroup`: `undefined`; `updateEventVolunteerGroup`: \{ `_id`: `string`; \}; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `data`: \{ `description`: `undefined`; `eventId`: `string`; `leaderId`: `undefined`; `name`: `undefined`; `volunteersRequired`: `undefined`; `volunteerUserIds`: `undefined`; \}; `id`: `string`; `orderBy`: `undefined`; `where`: `undefined`; \}; \}; `result`: \{ `data`: \{ `createEventVolunteerGroup`: `undefined`; `getEventVolunteerGroups`: `undefined`; `organizations`: `undefined`; `removeEventVolunteerGroup`: `undefined`; `updateEventVolunteerGroup`: \{ `_id`: `string`; \}; \}; \}; \})[] + +Defined in: [src/screens/EventVolunteers/VolunteerGroups/VolunteerGroups.mocks.ts:114](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/EventVolunteers/VolunteerGroups/VolunteerGroups.mocks.ts#L114) diff --git a/docs/docs/auto-docs/screens/EventVolunteers/VolunteerGroups/VolunteerGroups.mocks/variables/MOCKS_EMPTY.md b/docs/docs/auto-docs/screens/EventVolunteers/VolunteerGroups/VolunteerGroups.mocks/variables/MOCKS_EMPTY.md new file mode 100644 index 0000000000..9a8b6643f0 --- /dev/null +++ b/docs/docs/auto-docs/screens/EventVolunteers/VolunteerGroups/VolunteerGroups.mocks/variables/MOCKS_EMPTY.md @@ -0,0 +1,57 @@ +[**talawa-admin**](../../../../../README.md) + +*** + +[talawa-admin](../../../../../modules.md) / [screens/EventVolunteers/VolunteerGroups/VolunteerGroups.mocks](../README.md) / MOCKS\_EMPTY + +# Variable: MOCKS\_EMPTY + +> `const` **MOCKS\_EMPTY**: `object`[] + +Defined in: [src/screens/EventVolunteers/VolunteerGroups/VolunteerGroups.mocks.ts:339](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/EventVolunteers/VolunteerGroups/VolunteerGroups.mocks.ts#L339) + +## Type declaration + +### request + +> **request**: `object` + +#### request.query + +> **query**: `DocumentNode` = `EVENT_VOLUNTEER_GROUP_LIST` + +#### request.variables + +> **variables**: `object` + +#### request.variables.orderBy + +> **orderBy**: `any` = `null` + +#### request.variables.where + +> **where**: `object` + +#### request.variables.where.eventId + +> **eventId**: `string` = `'eventId'` + +#### request.variables.where.leaderName + +> **leaderName**: `any` = `null` + +#### request.variables.where.name\_contains + +> **name\_contains**: `string` = `''` + +### result + +> **result**: `object` + +#### result.data + +> **data**: `object` + +#### result.data.getEventVolunteerGroups + +> **getEventVolunteerGroups**: `any`[] = `[]` diff --git a/docs/docs/auto-docs/screens/EventVolunteers/VolunteerGroups/VolunteerGroups.mocks/variables/MOCKS_ERROR.md b/docs/docs/auto-docs/screens/EventVolunteers/VolunteerGroups/VolunteerGroups.mocks/variables/MOCKS_ERROR.md new file mode 100644 index 0000000000..a946da08c2 --- /dev/null +++ b/docs/docs/auto-docs/screens/EventVolunteers/VolunteerGroups/VolunteerGroups.mocks/variables/MOCKS_ERROR.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../../../README.md) + +*** + +[talawa-admin](../../../../../modules.md) / [screens/EventVolunteers/VolunteerGroups/VolunteerGroups.mocks](../README.md) / MOCKS\_ERROR + +# Variable: MOCKS\_ERROR + +> `const` **MOCKS\_ERROR**: (\{ `error`: `Error`; `request`: \{ `query`: `DocumentNode`; `variables`: \{ `data`: `undefined`; `id`: `undefined`; `orderBy`: `any`; `where`: \{ `eventId`: `string`; `leaderName`: `any`; `name_contains`: `string`; \}; \}; \}; `result`: `undefined`; \} \| \{ `error`: `Error`; `request`: \{ `query`: `DocumentNode`; `variables`: \{ `data`: `undefined`; `id`: `string`; `orderBy`: `undefined`; `where`: `undefined`; \}; \}; `result`: `undefined`; \} \| \{ `error`: `undefined`; `request`: \{ `query`: `DocumentNode`; `variables`: \{ `data`: `undefined`; `id`: `string`; `orderBy`: `undefined`; `where`: `undefined`; \}; \}; `result`: \{ `data`: \{ `organizations`: `object`[]; \}; \}; \} \| \{ `error`: `Error`; `request`: \{ `query`: `DocumentNode`; `variables`: \{ `data`: \{ `description`: `string`; `eventId`: `string`; `leaderId`: `string`; `name`: `string`; `volunteersRequired`: `number`; `volunteerUserIds`: `string`[]; \}; `id`: `undefined`; `orderBy`: `undefined`; `where`: `undefined`; \}; \}; `result`: `undefined`; \} \| \{ `error`: `Error`; `request`: \{ `query`: `DocumentNode`; `variables`: \{ `data`: \{ `description`: `string`; `eventId`: `string`; `leaderId`: `undefined`; `name`: `string`; `volunteersRequired`: `number`; `volunteerUserIds`: `undefined`; \}; `id`: `string`; `orderBy`: `undefined`; `where`: `undefined`; \}; \}; `result`: `undefined`; \})[] + +Defined in: [src/screens/EventVolunteers/VolunteerGroups/VolunteerGroups.mocks.ts:360](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/EventVolunteers/VolunteerGroups/VolunteerGroups.mocks.ts#L360) diff --git a/docs/docs/auto-docs/screens/EventVolunteers/VolunteerGroups/VolunteerGroups/README.md b/docs/docs/auto-docs/screens/EventVolunteers/VolunteerGroups/VolunteerGroups/README.md new file mode 100644 index 0000000000..faf3f11e82 --- /dev/null +++ b/docs/docs/auto-docs/screens/EventVolunteers/VolunteerGroups/VolunteerGroups/README.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / screens/EventVolunteers/VolunteerGroups/VolunteerGroups + +# screens/EventVolunteers/VolunteerGroups/VolunteerGroups + +## Functions + +- [default](functions/default.md) diff --git a/docs/docs/auto-docs/screens/EventVolunteers/VolunteerGroups/VolunteerGroups/functions/default.md b/docs/docs/auto-docs/screens/EventVolunteers/VolunteerGroups/VolunteerGroups/functions/default.md new file mode 100644 index 0000000000..8ee62c17cb --- /dev/null +++ b/docs/docs/auto-docs/screens/EventVolunteers/VolunteerGroups/VolunteerGroups/functions/default.md @@ -0,0 +1,20 @@ +[**talawa-admin**](../../../../../README.md) + +*** + +[talawa-admin](../../../../../modules.md) / [screens/EventVolunteers/VolunteerGroups/VolunteerGroups](../README.md) / default + +# Function: default() + +> **default**(): `JSX.Element` + +Defined in: [src/screens/EventVolunteers/VolunteerGroups/VolunteerGroups.tsx:58](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/EventVolunteers/VolunteerGroups/VolunteerGroups.tsx#L58) + +Component for managing volunteer groups for an event. +This component allows users to view, filter, sort, and create action items. It also provides a modal for creating and editing action items. + +## Returns + +`JSX.Element` + +The rendered component. diff --git a/docs/docs/auto-docs/screens/EventVolunteers/Volunteers/VolunteerCreateModal/README.md b/docs/docs/auto-docs/screens/EventVolunteers/Volunteers/VolunteerCreateModal/README.md new file mode 100644 index 0000000000..6457ea9675 --- /dev/null +++ b/docs/docs/auto-docs/screens/EventVolunteers/Volunteers/VolunteerCreateModal/README.md @@ -0,0 +1,15 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / screens/EventVolunteers/Volunteers/VolunteerCreateModal + +# screens/EventVolunteers/Volunteers/VolunteerCreateModal + +## Interfaces + +- [InterfaceVolunteerCreateModal](interfaces/InterfaceVolunteerCreateModal.md) + +## Functions + +- [default](functions/default.md) diff --git a/docs/docs/auto-docs/screens/EventVolunteers/Volunteers/VolunteerCreateModal/functions/default.md b/docs/docs/auto-docs/screens/EventVolunteers/Volunteers/VolunteerCreateModal/functions/default.md new file mode 100644 index 0000000000..124e0724a0 --- /dev/null +++ b/docs/docs/auto-docs/screens/EventVolunteers/Volunteers/VolunteerCreateModal/functions/default.md @@ -0,0 +1,49 @@ +[**talawa-admin**](../../../../../README.md) + +*** + +[talawa-admin](../../../../../modules.md) / [screens/EventVolunteers/Volunteers/VolunteerCreateModal](../README.md) / default + +# Function: default() + +> **default**(`props`, `deprecatedLegacyContext`?): `ReactNode` + +Defined in: [src/screens/EventVolunteers/Volunteers/VolunteerCreateModal.tsx:48](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/EventVolunteers/Volunteers/VolunteerCreateModal.tsx#L48) + +A modal dialog for add a volunteer for an event. + +## Parameters + +### props + +[`InterfaceVolunteerCreateModal`](../interfaces/InterfaceVolunteerCreateModal.md) + +### deprecatedLegacyContext? + +`any` + +**Deprecated** + +**See** + +[React Docs](https://legacy.reactjs.org/docs/legacy-context.html#referencing-context-in-lifecycle-methods) + +## Returns + +`ReactNode` + +The rendered modal component. + +The `VolunteerCreateModal` component displays a form within a modal dialog for adding a volunteer. +It includes fields for selecting user. + +The modal includes: +- A header with a title and a close button. +- A form with: +- A multi-select dropdown for selecting user be added as volunteer. +- A submit button to create or update the pledge. + +On form submission, the component: +- Calls `addVolunteer` mutation to add a new Volunteer. + +Success or error messages are displayed using toast notifications based on the result of the mutation. diff --git a/docs/docs/auto-docs/screens/EventVolunteers/Volunteers/VolunteerCreateModal/interfaces/InterfaceVolunteerCreateModal.md b/docs/docs/auto-docs/screens/EventVolunteers/Volunteers/VolunteerCreateModal/interfaces/InterfaceVolunteerCreateModal.md new file mode 100644 index 0000000000..e9568167a1 --- /dev/null +++ b/docs/docs/auto-docs/screens/EventVolunteers/Volunteers/VolunteerCreateModal/interfaces/InterfaceVolunteerCreateModal.md @@ -0,0 +1,57 @@ +[**talawa-admin**](../../../../../README.md) + +*** + +[talawa-admin](../../../../../modules.md) / [screens/EventVolunteers/Volunteers/VolunteerCreateModal](../README.md) / InterfaceVolunteerCreateModal + +# Interface: InterfaceVolunteerCreateModal + +Defined in: [src/screens/EventVolunteers/Volunteers/VolunteerCreateModal.tsx:14](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/EventVolunteers/Volunteers/VolunteerCreateModal.tsx#L14) + +## Properties + +### eventId + +> **eventId**: `string` + +Defined in: [src/screens/EventVolunteers/Volunteers/VolunteerCreateModal.tsx:17](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/EventVolunteers/Volunteers/VolunteerCreateModal.tsx#L17) + +*** + +### hide() + +> **hide**: () => `void` + +Defined in: [src/screens/EventVolunteers/Volunteers/VolunteerCreateModal.tsx:16](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/EventVolunteers/Volunteers/VolunteerCreateModal.tsx#L16) + +#### Returns + +`void` + +*** + +### isOpen + +> **isOpen**: `boolean` + +Defined in: [src/screens/EventVolunteers/Volunteers/VolunteerCreateModal.tsx:15](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/EventVolunteers/Volunteers/VolunteerCreateModal.tsx#L15) + +*** + +### orgId + +> **orgId**: `string` + +Defined in: [src/screens/EventVolunteers/Volunteers/VolunteerCreateModal.tsx:18](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/EventVolunteers/Volunteers/VolunteerCreateModal.tsx#L18) + +*** + +### refetchVolunteers() + +> **refetchVolunteers**: () => `void` + +Defined in: [src/screens/EventVolunteers/Volunteers/VolunteerCreateModal.tsx:19](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/EventVolunteers/Volunteers/VolunteerCreateModal.tsx#L19) + +#### Returns + +`void` diff --git a/docs/docs/auto-docs/screens/EventVolunteers/Volunteers/VolunteerDeleteModal/README.md b/docs/docs/auto-docs/screens/EventVolunteers/Volunteers/VolunteerDeleteModal/README.md new file mode 100644 index 0000000000..b8c4b05c6f --- /dev/null +++ b/docs/docs/auto-docs/screens/EventVolunteers/Volunteers/VolunteerDeleteModal/README.md @@ -0,0 +1,15 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / screens/EventVolunteers/Volunteers/VolunteerDeleteModal + +# screens/EventVolunteers/Volunteers/VolunteerDeleteModal + +## Interfaces + +- [InterfaceDeleteVolunteerModal](interfaces/InterfaceDeleteVolunteerModal.md) + +## Functions + +- [default](functions/default.md) diff --git a/docs/docs/auto-docs/screens/EventVolunteers/Volunteers/VolunteerDeleteModal/functions/default.md b/docs/docs/auto-docs/screens/EventVolunteers/Volunteers/VolunteerDeleteModal/functions/default.md new file mode 100644 index 0000000000..ebb7d348da --- /dev/null +++ b/docs/docs/auto-docs/screens/EventVolunteers/Volunteers/VolunteerDeleteModal/functions/default.md @@ -0,0 +1,48 @@ +[**talawa-admin**](../../../../../README.md) + +*** + +[talawa-admin](../../../../../modules.md) / [screens/EventVolunteers/Volunteers/VolunteerDeleteModal](../README.md) / default + +# Function: default() + +> **default**(`props`, `deprecatedLegacyContext`?): `ReactNode` + +Defined in: [src/screens/EventVolunteers/Volunteers/VolunteerDeleteModal.tsx:42](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/EventVolunteers/Volunteers/VolunteerDeleteModal.tsx#L42) + +A modal dialog for confirming the deletion of a volunteer. + +## Parameters + +### props + +[`InterfaceDeleteVolunteerModal`](../interfaces/InterfaceDeleteVolunteerModal.md) + +### deprecatedLegacyContext? + +`any` + +**Deprecated** + +**See** + +[React Docs](https://legacy.reactjs.org/docs/legacy-context.html#referencing-context-in-lifecycle-methods) + +## Returns + +`ReactNode` + +The rendered modal component. + +The `VolunteerDeleteModal` component displays a confirmation dialog when a user attempts to delete a volunteer. +It allows the user to either confirm or cancel the deletion. +On confirmation, the `deleteVolunteer` mutation is called to remove the pledge from the database, +and the `refetchVolunteers` function is invoked to update the list of volunteers. +A success or error toast notification is shown based on the result of the deletion operation. + +The modal includes: +- A header with a title and a close button. +- A body with a message asking for confirmation. +- A footer with "Yes" and "No" buttons to confirm or cancel the deletion. + +The `deleteVolunteer` mutation is used to perform the deletion operation. diff --git a/docs/docs/auto-docs/screens/EventVolunteers/Volunteers/VolunteerDeleteModal/interfaces/InterfaceDeleteVolunteerModal.md b/docs/docs/auto-docs/screens/EventVolunteers/Volunteers/VolunteerDeleteModal/interfaces/InterfaceDeleteVolunteerModal.md new file mode 100644 index 0000000000..60345a6a70 --- /dev/null +++ b/docs/docs/auto-docs/screens/EventVolunteers/Volunteers/VolunteerDeleteModal/interfaces/InterfaceDeleteVolunteerModal.md @@ -0,0 +1,49 @@ +[**talawa-admin**](../../../../../README.md) + +*** + +[talawa-admin](../../../../../modules.md) / [screens/EventVolunteers/Volunteers/VolunteerDeleteModal](../README.md) / InterfaceDeleteVolunteerModal + +# Interface: InterfaceDeleteVolunteerModal + +Defined in: [src/screens/EventVolunteers/Volunteers/VolunteerDeleteModal.tsx:10](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/EventVolunteers/Volunteers/VolunteerDeleteModal.tsx#L10) + +## Properties + +### hide() + +> **hide**: () => `void` + +Defined in: [src/screens/EventVolunteers/Volunteers/VolunteerDeleteModal.tsx:12](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/EventVolunteers/Volunteers/VolunteerDeleteModal.tsx#L12) + +#### Returns + +`void` + +*** + +### isOpen + +> **isOpen**: `boolean` + +Defined in: [src/screens/EventVolunteers/Volunteers/VolunteerDeleteModal.tsx:11](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/EventVolunteers/Volunteers/VolunteerDeleteModal.tsx#L11) + +*** + +### refetchVolunteers() + +> **refetchVolunteers**: () => `void` + +Defined in: [src/screens/EventVolunteers/Volunteers/VolunteerDeleteModal.tsx:14](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/EventVolunteers/Volunteers/VolunteerDeleteModal.tsx#L14) + +#### Returns + +`void` + +*** + +### volunteer + +> **volunteer**: [`InterfaceEventVolunteerInfo`](../../../../../utils/interfaces/interfaces/InterfaceEventVolunteerInfo.md) + +Defined in: [src/screens/EventVolunteers/Volunteers/VolunteerDeleteModal.tsx:13](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/EventVolunteers/Volunteers/VolunteerDeleteModal.tsx#L13) diff --git a/docs/docs/auto-docs/screens/EventVolunteers/Volunteers/VolunteerViewModal/README.md b/docs/docs/auto-docs/screens/EventVolunteers/Volunteers/VolunteerViewModal/README.md new file mode 100644 index 0000000000..8546213b41 --- /dev/null +++ b/docs/docs/auto-docs/screens/EventVolunteers/Volunteers/VolunteerViewModal/README.md @@ -0,0 +1,15 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / screens/EventVolunteers/Volunteers/VolunteerViewModal + +# screens/EventVolunteers/Volunteers/VolunteerViewModal + +## Interfaces + +- [InterfaceVolunteerViewModal](interfaces/InterfaceVolunteerViewModal.md) + +## Functions + +- [default](functions/default.md) diff --git a/docs/docs/auto-docs/screens/EventVolunteers/Volunteers/VolunteerViewModal/functions/default.md b/docs/docs/auto-docs/screens/EventVolunteers/Volunteers/VolunteerViewModal/functions/default.md new file mode 100644 index 0000000000..620ed83bfb --- /dev/null +++ b/docs/docs/auto-docs/screens/EventVolunteers/Volunteers/VolunteerViewModal/functions/default.md @@ -0,0 +1,41 @@ +[**talawa-admin**](../../../../../README.md) + +*** + +[talawa-admin](../../../../../modules.md) / [screens/EventVolunteers/Volunteers/VolunteerViewModal](../README.md) / default + +# Function: default() + +> **default**(`props`, `deprecatedLegacyContext`?): `ReactNode` + +Defined in: [src/screens/EventVolunteers/Volunteers/VolunteerViewModal.tsx:42](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/EventVolunteers/Volunteers/VolunteerViewModal.tsx#L42) + +A modal dialog for viewing volunteer information for an event. + +## Parameters + +### props + +[`InterfaceVolunteerViewModal`](../interfaces/InterfaceVolunteerViewModal.md) + +### deprecatedLegacyContext? + +`any` + +**Deprecated** + +**See** + +[React Docs](https://legacy.reactjs.org/docs/legacy-context.html#referencing-context-in-lifecycle-methods) + +## Returns + +`ReactNode` + +The rendered modal component. + +The `VolunteerViewModal` component displays all the fields of a volunteer in a modal dialog. + +The modal includes: +- A header with a title and a close button. +- fields for volunteer name, status, hours volunteered, groups, and assignments. diff --git a/docs/docs/auto-docs/screens/EventVolunteers/Volunteers/VolunteerViewModal/interfaces/InterfaceVolunteerViewModal.md b/docs/docs/auto-docs/screens/EventVolunteers/Volunteers/VolunteerViewModal/interfaces/InterfaceVolunteerViewModal.md new file mode 100644 index 0000000000..c96e1480da --- /dev/null +++ b/docs/docs/auto-docs/screens/EventVolunteers/Volunteers/VolunteerViewModal/interfaces/InterfaceVolunteerViewModal.md @@ -0,0 +1,37 @@ +[**talawa-admin**](../../../../../README.md) + +*** + +[talawa-admin](../../../../../modules.md) / [screens/EventVolunteers/Volunteers/VolunteerViewModal](../README.md) / InterfaceVolunteerViewModal + +# Interface: InterfaceVolunteerViewModal + +Defined in: [src/screens/EventVolunteers/Volunteers/VolunteerViewModal.tsx:20](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/EventVolunteers/Volunteers/VolunteerViewModal.tsx#L20) + +## Properties + +### hide() + +> **hide**: () => `void` + +Defined in: [src/screens/EventVolunteers/Volunteers/VolunteerViewModal.tsx:22](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/EventVolunteers/Volunteers/VolunteerViewModal.tsx#L22) + +#### Returns + +`void` + +*** + +### isOpen + +> **isOpen**: `boolean` + +Defined in: [src/screens/EventVolunteers/Volunteers/VolunteerViewModal.tsx:21](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/EventVolunteers/Volunteers/VolunteerViewModal.tsx#L21) + +*** + +### volunteer + +> **volunteer**: [`InterfaceEventVolunteerInfo`](../../../../../utils/interfaces/interfaces/InterfaceEventVolunteerInfo.md) + +Defined in: [src/screens/EventVolunteers/Volunteers/VolunteerViewModal.tsx:23](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/EventVolunteers/Volunteers/VolunteerViewModal.tsx#L23) diff --git a/docs/docs/auto-docs/screens/EventVolunteers/Volunteers/Volunteers.mocks/README.md b/docs/docs/auto-docs/screens/EventVolunteers/Volunteers/Volunteers.mocks/README.md new file mode 100644 index 0000000000..cc8ac8f4e0 --- /dev/null +++ b/docs/docs/auto-docs/screens/EventVolunteers/Volunteers/Volunteers.mocks/README.md @@ -0,0 +1,13 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / screens/EventVolunteers/Volunteers/Volunteers.mocks + +# screens/EventVolunteers/Volunteers/Volunteers.mocks + +## Variables + +- [MOCKS](variables/MOCKS.md) +- [MOCKS\_EMPTY](variables/MOCKS_EMPTY.md) +- [MOCKS\_ERROR](variables/MOCKS_ERROR.md) diff --git a/docs/docs/auto-docs/screens/EventVolunteers/Volunteers/Volunteers.mocks/variables/MOCKS.md b/docs/docs/auto-docs/screens/EventVolunteers/Volunteers/Volunteers.mocks/variables/MOCKS.md new file mode 100644 index 0000000000..c9ba0e144d --- /dev/null +++ b/docs/docs/auto-docs/screens/EventVolunteers/Volunteers/Volunteers.mocks/variables/MOCKS.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../../../README.md) + +*** + +[talawa-admin](../../../../../modules.md) / [screens/EventVolunteers/Volunteers/Volunteers.mocks](../README.md) / MOCKS + +# Variable: MOCKS + +> `const` **MOCKS**: (\{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `data`: `undefined`; `id`: `undefined`; `orderBy`: `string`; `where`: \{ `eventId`: `string`; `hasAccepted`: `undefined`; `name_contains`: `string`; \}; \}; \}; `result`: \{ `data`: \{ `createEventVolunteer`: `undefined`; `getEventVolunteers`: (\{ `_id`: `string`; `assignments`: `any`[]; `groups`: `object`[]; `hasAccepted`: `boolean`; `hoursVolunteered`: `number`; `user`: \{ `_id`: `string`; `firstName`: `string`; `image`: `any`; `lastName`: `string`; \}; \} \| \{ `_id`: `string`; `assignments`: `any`[]; `groups`: `any`[]; `hasAccepted`: `boolean`; `hoursVolunteered`: `any`; `user`: \{ `_id`: `string`; `firstName`: `string`; `image`: `string`; `lastName`: `string`; \}; \})[]; `organizations`: `undefined`; `removeEventVolunteer`: `undefined`; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `data`: `undefined`; `id`: `undefined`; `orderBy`: `any`; `where`: \{ `eventId`: `string`; `hasAccepted`: `boolean`; `name_contains`: `string`; \}; \}; \}; `result`: \{ `data`: \{ `createEventVolunteer`: `undefined`; `getEventVolunteers`: `object`[]; `organizations`: `undefined`; `removeEventVolunteer`: `undefined`; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `data`: `undefined`; `id`: `undefined`; `orderBy`: `any`; `where`: \{ `eventId`: `string`; `hasAccepted`: `boolean`; `name_contains`: `string`; \}; \}; \}; `result`: \{ `data`: \{ `createEventVolunteer`: `undefined`; `getEventVolunteers`: `object`[]; `organizations`: `undefined`; `removeEventVolunteer`: `undefined`; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `data`: `undefined`; `id`: `string`; `orderBy`: `undefined`; `where`: `undefined`; \}; \}; `result`: \{ `data`: \{ `createEventVolunteer`: `undefined`; `getEventVolunteers`: `undefined`; `organizations`: `undefined`; `removeEventVolunteer`: \{ `_id`: `string`; \}; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `data`: `undefined`; `id`: `string`; `orderBy`: `undefined`; `where`: `undefined`; \}; \}; `result`: \{ `data`: \{ `createEventVolunteer`: `undefined`; `getEventVolunteers`: `undefined`; `organizations`: `object`[]; `removeEventVolunteer`: `undefined`; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `data`: \{ `eventId`: `string`; `userId`: `string`; \}; `id`: `undefined`; `orderBy`: `undefined`; `where`: `undefined`; \}; \}; `result`: \{ `data`: \{ `createEventVolunteer`: \{ `_id`: `string`; \}; `getEventVolunteers`: `undefined`; `organizations`: `undefined`; `removeEventVolunteer`: `undefined`; \}; \}; \})[] + +Defined in: [src/screens/EventVolunteers/Volunteers/Volunteers.mocks.ts:46](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/EventVolunteers/Volunteers/Volunteers.mocks.ts#L46) diff --git a/docs/docs/auto-docs/screens/EventVolunteers/Volunteers/Volunteers.mocks/variables/MOCKS_EMPTY.md b/docs/docs/auto-docs/screens/EventVolunteers/Volunteers/Volunteers.mocks/variables/MOCKS_EMPTY.md new file mode 100644 index 0000000000..d485a6bb22 --- /dev/null +++ b/docs/docs/auto-docs/screens/EventVolunteers/Volunteers/Volunteers.mocks/variables/MOCKS_EMPTY.md @@ -0,0 +1,53 @@ +[**talawa-admin**](../../../../../README.md) + +*** + +[talawa-admin](../../../../../modules.md) / [screens/EventVolunteers/Volunteers/Volunteers.mocks](../README.md) / MOCKS\_EMPTY + +# Variable: MOCKS\_EMPTY + +> `const` **MOCKS\_EMPTY**: `object`[] + +Defined in: [src/screens/EventVolunteers/Volunteers/Volunteers.mocks.ts:288](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/EventVolunteers/Volunteers/Volunteers.mocks.ts#L288) + +## Type declaration + +### request + +> **request**: `object` + +#### request.query + +> **query**: `DocumentNode` = `EVENT_VOLUNTEER_LIST` + +#### request.variables + +> **variables**: `object` + +#### request.variables.orderBy + +> **orderBy**: `any` = `null` + +#### request.variables.where + +> **where**: `object` + +#### request.variables.where.eventId + +> **eventId**: `string` = `'eventId'` + +#### request.variables.where.name\_contains + +> **name\_contains**: `string` = `''` + +### result + +> **result**: `object` + +#### result.data + +> **data**: `object` + +#### result.data.getEventVolunteers + +> **getEventVolunteers**: `any`[] = `[]` diff --git a/docs/docs/auto-docs/screens/EventVolunteers/Volunteers/Volunteers.mocks/variables/MOCKS_ERROR.md b/docs/docs/auto-docs/screens/EventVolunteers/Volunteers/Volunteers.mocks/variables/MOCKS_ERROR.md new file mode 100644 index 0000000000..a965f9cf20 --- /dev/null +++ b/docs/docs/auto-docs/screens/EventVolunteers/Volunteers/Volunteers.mocks/variables/MOCKS_ERROR.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../../../README.md) + +*** + +[talawa-admin](../../../../../modules.md) / [screens/EventVolunteers/Volunteers/Volunteers.mocks](../README.md) / MOCKS\_ERROR + +# Variable: MOCKS\_ERROR + +> `const` **MOCKS\_ERROR**: (\{ `error`: `Error`; `request`: \{ `query`: `DocumentNode`; `variables`: \{ `data`: `undefined`; `id`: `undefined`; `orderBy`: `any`; `where`: \{ `eventId`: `string`; `name_contains`: `string`; \}; \}; \}; `result`: `undefined`; \} \| \{ `error`: `Error`; `request`: \{ `query`: `DocumentNode`; `variables`: \{ `data`: `undefined`; `id`: `string`; `orderBy`: `undefined`; `where`: `undefined`; \}; \}; `result`: `undefined`; \} \| \{ `error`: `undefined`; `request`: \{ `query`: `DocumentNode`; `variables`: \{ `data`: `undefined`; `id`: `string`; `orderBy`: `undefined`; `where`: `undefined`; \}; \}; `result`: \{ `data`: \{ `organizations`: `object`[]; \}; \}; \} \| \{ `error`: `Error`; `request`: \{ `query`: `DocumentNode`; `variables`: \{ `data`: \{ `eventId`: `string`; `userId`: `string`; \}; `id`: `undefined`; `orderBy`: `undefined`; `where`: `undefined`; \}; \}; `result`: `undefined`; \})[] + +Defined in: [src/screens/EventVolunteers/Volunteers/Volunteers.mocks.ts:217](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/EventVolunteers/Volunteers/Volunteers.mocks.ts#L217) diff --git a/docs/docs/auto-docs/screens/EventVolunteers/Volunteers/Volunteers/README.md b/docs/docs/auto-docs/screens/EventVolunteers/Volunteers/Volunteers/README.md new file mode 100644 index 0000000000..d4454ffc42 --- /dev/null +++ b/docs/docs/auto-docs/screens/EventVolunteers/Volunteers/Volunteers/README.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / screens/EventVolunteers/Volunteers/Volunteers + +# screens/EventVolunteers/Volunteers/Volunteers + +## Functions + +- [default](functions/default.md) diff --git a/docs/docs/auto-docs/screens/EventVolunteers/Volunteers/Volunteers/functions/default.md b/docs/docs/auto-docs/screens/EventVolunteers/Volunteers/Volunteers/functions/default.md new file mode 100644 index 0000000000..36dd6157b4 --- /dev/null +++ b/docs/docs/auto-docs/screens/EventVolunteers/Volunteers/Volunteers/functions/default.md @@ -0,0 +1,21 @@ +[**talawa-admin**](../../../../../README.md) + +*** + +[talawa-admin](../../../../../modules.md) / [screens/EventVolunteers/Volunteers/Volunteers](../README.md) / default + +# Function: default() + +> **default**(): `JSX.Element` + +Defined in: [src/screens/EventVolunteers/Volunteers/Volunteers.tsx:65](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/EventVolunteers/Volunteers/Volunteers.tsx#L65) + +Component for managing and displaying event volunteers related to an event. + +This component allows users to view, filter, sort, and create volunteers. It also handles fetching and displaying related data such as volunteer acceptance status, etc. + +## Returns + +`JSX.Element` + +The rendered component. diff --git a/docs/docs/auto-docs/screens/ForgotPassword/ForgotPassword/README.md b/docs/docs/auto-docs/screens/ForgotPassword/ForgotPassword/README.md new file mode 100644 index 0000000000..242cc67fcc --- /dev/null +++ b/docs/docs/auto-docs/screens/ForgotPassword/ForgotPassword/README.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / screens/ForgotPassword/ForgotPassword + +# screens/ForgotPassword/ForgotPassword + +## Functions + +- [default](functions/default.md) diff --git a/docs/docs/auto-docs/screens/ForgotPassword/ForgotPassword/functions/default.md b/docs/docs/auto-docs/screens/ForgotPassword/ForgotPassword/functions/default.md new file mode 100644 index 0000000000..b9fad4bc57 --- /dev/null +++ b/docs/docs/auto-docs/screens/ForgotPassword/ForgotPassword/functions/default.md @@ -0,0 +1,29 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [screens/ForgotPassword/ForgotPassword](../README.md) / default + +# Function: default() + +> **default**(): `Element` + +Defined in: [src/screens/ForgotPassword/ForgotPassword.tsx:36](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/ForgotPassword/ForgotPassword.tsx#L36) + +`ForgotPassword` component allows users to reset their password. + +It provides two stages: +1. Entering the registered email to receive an OTP. +2. Entering the OTP and new password to reset the password. + +## Returns + +`Element` + +JSX.Element - The `ForgotPassword` component. + +## Example + +```tsx + +``` diff --git a/docs/docs/auto-docs/screens/FundCampaignPledge/FundCampaignPledge/README.md b/docs/docs/auto-docs/screens/FundCampaignPledge/FundCampaignPledge/README.md new file mode 100644 index 0000000000..6d4032a000 --- /dev/null +++ b/docs/docs/auto-docs/screens/FundCampaignPledge/FundCampaignPledge/README.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / screens/FundCampaignPledge/FundCampaignPledge + +# screens/FundCampaignPledge/FundCampaignPledge + +## Functions + +- [default](functions/default.md) diff --git a/docs/docs/auto-docs/screens/FundCampaignPledge/FundCampaignPledge/functions/default.md b/docs/docs/auto-docs/screens/FundCampaignPledge/FundCampaignPledge/functions/default.md new file mode 100644 index 0000000000..e7f92f586d --- /dev/null +++ b/docs/docs/auto-docs/screens/FundCampaignPledge/FundCampaignPledge/functions/default.md @@ -0,0 +1,15 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [screens/FundCampaignPledge/FundCampaignPledge](../README.md) / default + +# Function: default() + +> **default**(): `Element` + +Defined in: [src/screens/FundCampaignPledge/FundCampaignPledge.tsx:62](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/FundCampaignPledge/FundCampaignPledge.tsx#L62) + +## Returns + +`Element` diff --git a/docs/docs/auto-docs/screens/FundCampaignPledge/PledgeDeleteModal/README.md b/docs/docs/auto-docs/screens/FundCampaignPledge/PledgeDeleteModal/README.md new file mode 100644 index 0000000000..af92bb2e5a --- /dev/null +++ b/docs/docs/auto-docs/screens/FundCampaignPledge/PledgeDeleteModal/README.md @@ -0,0 +1,15 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / screens/FundCampaignPledge/PledgeDeleteModal + +# screens/FundCampaignPledge/PledgeDeleteModal + +## Interfaces + +- [InterfaceDeletePledgeModal](interfaces/InterfaceDeletePledgeModal.md) + +## Functions + +- [default](functions/default.md) diff --git a/docs/docs/auto-docs/screens/FundCampaignPledge/PledgeDeleteModal/functions/default.md b/docs/docs/auto-docs/screens/FundCampaignPledge/PledgeDeleteModal/functions/default.md new file mode 100644 index 0000000000..66283b7023 --- /dev/null +++ b/docs/docs/auto-docs/screens/FundCampaignPledge/PledgeDeleteModal/functions/default.md @@ -0,0 +1,48 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [screens/FundCampaignPledge/PledgeDeleteModal](../README.md) / default + +# Function: default() + +> **default**(`props`, `deprecatedLegacyContext`?): `ReactNode` + +Defined in: [src/screens/FundCampaignPledge/PledgeDeleteModal.tsx:42](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/FundCampaignPledge/PledgeDeleteModal.tsx#L42) + +A modal dialog for confirming the deletion of a pledge. + +## Parameters + +### props + +[`InterfaceDeletePledgeModal`](../interfaces/InterfaceDeletePledgeModal.md) + +### deprecatedLegacyContext? + +`any` + +**Deprecated** + +**See** + +[React Docs](https://legacy.reactjs.org/docs/legacy-context.html#referencing-context-in-lifecycle-methods) + +## Returns + +`ReactNode` + +The rendered modal component. + +The `PledgeDeleteModal` component displays a confirmation dialog when a user attempts to delete a pledge. +It allows the user to either confirm or cancel the deletion. +On confirmation, the `deletePledge` mutation is called to remove the pledge from the database, +and the `refetchPledge` function is invoked to update the list of pledges. +A success or error toast notification is shown based on the result of the deletion operation. + +The modal includes: +- A header with a title and a close button. +- A body with a message asking for confirmation. +- A footer with "Yes" and "No" buttons to confirm or cancel the deletion. + +The `deletePledge` mutation is used to perform the deletion operation. diff --git a/docs/docs/auto-docs/screens/FundCampaignPledge/PledgeDeleteModal/interfaces/InterfaceDeletePledgeModal.md b/docs/docs/auto-docs/screens/FundCampaignPledge/PledgeDeleteModal/interfaces/InterfaceDeletePledgeModal.md new file mode 100644 index 0000000000..56e2f29466 --- /dev/null +++ b/docs/docs/auto-docs/screens/FundCampaignPledge/PledgeDeleteModal/interfaces/InterfaceDeletePledgeModal.md @@ -0,0 +1,49 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [screens/FundCampaignPledge/PledgeDeleteModal](../README.md) / InterfaceDeletePledgeModal + +# Interface: InterfaceDeletePledgeModal + +Defined in: [src/screens/FundCampaignPledge/PledgeDeleteModal.tsx:10](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/FundCampaignPledge/PledgeDeleteModal.tsx#L10) + +## Properties + +### hide() + +> **hide**: () => `void` + +Defined in: [src/screens/FundCampaignPledge/PledgeDeleteModal.tsx:12](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/FundCampaignPledge/PledgeDeleteModal.tsx#L12) + +#### Returns + +`void` + +*** + +### isOpen + +> **isOpen**: `boolean` + +Defined in: [src/screens/FundCampaignPledge/PledgeDeleteModal.tsx:11](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/FundCampaignPledge/PledgeDeleteModal.tsx#L11) + +*** + +### pledge + +> **pledge**: [`InterfacePledgeInfo`](../../../../utils/interfaces/interfaces/InterfacePledgeInfo.md) + +Defined in: [src/screens/FundCampaignPledge/PledgeDeleteModal.tsx:13](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/FundCampaignPledge/PledgeDeleteModal.tsx#L13) + +*** + +### refetchPledge() + +> **refetchPledge**: () => `void` + +Defined in: [src/screens/FundCampaignPledge/PledgeDeleteModal.tsx:14](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/FundCampaignPledge/PledgeDeleteModal.tsx#L14) + +#### Returns + +`void` diff --git a/docs/docs/auto-docs/screens/FundCampaignPledge/PledgeModal/README.md b/docs/docs/auto-docs/screens/FundCampaignPledge/PledgeModal/README.md new file mode 100644 index 0000000000..0e89faf3e6 --- /dev/null +++ b/docs/docs/auto-docs/screens/FundCampaignPledge/PledgeModal/README.md @@ -0,0 +1,15 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / screens/FundCampaignPledge/PledgeModal + +# screens/FundCampaignPledge/PledgeModal + +## Interfaces + +- [InterfacePledgeModal](interfaces/InterfacePledgeModal.md) + +## Functions + +- [default](functions/default.md) diff --git a/docs/docs/auto-docs/screens/FundCampaignPledge/PledgeModal/functions/default.md b/docs/docs/auto-docs/screens/FundCampaignPledge/PledgeModal/functions/default.md new file mode 100644 index 0000000000..29ba7ebc2a --- /dev/null +++ b/docs/docs/auto-docs/screens/FundCampaignPledge/PledgeModal/functions/default.md @@ -0,0 +1,53 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [screens/FundCampaignPledge/PledgeModal](../README.md) / default + +# Function: default() + +> **default**(`props`, `deprecatedLegacyContext`?): `ReactNode` + +Defined in: [src/screens/FundCampaignPledge/PledgeModal.tsx:72](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/FundCampaignPledge/PledgeModal.tsx#L72) + +A modal dialog for creating or editing a pledge. + +## Parameters + +### props + +[`InterfacePledgeModal`](../interfaces/InterfacePledgeModal.md) + +### deprecatedLegacyContext? + +`any` + +**Deprecated** + +**See** + +[React Docs](https://legacy.reactjs.org/docs/legacy-context.html#referencing-context-in-lifecycle-methods) + +## Returns + +`ReactNode` + +The rendered modal component. + +The `PledgeModal` component displays a form within a modal dialog for creating or editing a pledge. +It includes fields for selecting users, entering an amount, choosing a currency, and setting start and end dates for the pledge. + +The modal includes: +- A header with a title indicating the current mode (create or edit) and a close button. +- A form with: + - A multi-select dropdown for selecting users to participate in the pledge. + - Date pickers for selecting the start and end dates of the pledge. + - A dropdown for selecting the currency of the pledge amount. + - An input field for entering the pledge amount. +- A submit button to create or update the pledge. + +On form submission, the component either: +- Calls `updatePledge` mutation to update an existing pledge, or +- Calls `createPledge` mutation to create a new pledge. + +Success or error messages are displayed using toast notifications based on the result of the mutation. diff --git a/docs/docs/auto-docs/screens/FundCampaignPledge/PledgeModal/interfaces/InterfacePledgeModal.md b/docs/docs/auto-docs/screens/FundCampaignPledge/PledgeModal/interfaces/InterfacePledgeModal.md new file mode 100644 index 0000000000..4e19f4aca6 --- /dev/null +++ b/docs/docs/auto-docs/screens/FundCampaignPledge/PledgeModal/interfaces/InterfacePledgeModal.md @@ -0,0 +1,81 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [screens/FundCampaignPledge/PledgeModal](../README.md) / InterfacePledgeModal + +# Interface: InterfacePledgeModal + +Defined in: [src/screens/FundCampaignPledge/PledgeModal.tsx:28](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/FundCampaignPledge/PledgeModal.tsx#L28) + +## Properties + +### campaignId + +> **campaignId**: `string` + +Defined in: [src/screens/FundCampaignPledge/PledgeModal.tsx:31](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/FundCampaignPledge/PledgeModal.tsx#L31) + +*** + +### endDate + +> **endDate**: `Date` + +Defined in: [src/screens/FundCampaignPledge/PledgeModal.tsx:35](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/FundCampaignPledge/PledgeModal.tsx#L35) + +*** + +### hide() + +> **hide**: () => `void` + +Defined in: [src/screens/FundCampaignPledge/PledgeModal.tsx:30](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/FundCampaignPledge/PledgeModal.tsx#L30) + +#### Returns + +`void` + +*** + +### isOpen + +> **isOpen**: `boolean` + +Defined in: [src/screens/FundCampaignPledge/PledgeModal.tsx:29](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/FundCampaignPledge/PledgeModal.tsx#L29) + +*** + +### mode + +> **mode**: `"edit"` \| `"create"` + +Defined in: [src/screens/FundCampaignPledge/PledgeModal.tsx:36](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/FundCampaignPledge/PledgeModal.tsx#L36) + +*** + +### orgId + +> **orgId**: `string` + +Defined in: [src/screens/FundCampaignPledge/PledgeModal.tsx:32](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/FundCampaignPledge/PledgeModal.tsx#L32) + +*** + +### pledge + +> **pledge**: [`InterfacePledgeInfo`](../../../../utils/interfaces/interfaces/InterfacePledgeInfo.md) + +Defined in: [src/screens/FundCampaignPledge/PledgeModal.tsx:33](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/FundCampaignPledge/PledgeModal.tsx#L33) + +*** + +### refetchPledge() + +> **refetchPledge**: () => `void` + +Defined in: [src/screens/FundCampaignPledge/PledgeModal.tsx:34](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/FundCampaignPledge/PledgeModal.tsx#L34) + +#### Returns + +`void` diff --git a/docs/docs/auto-docs/screens/FundCampaignPledge/PledgesMocks/README.md b/docs/docs/auto-docs/screens/FundCampaignPledge/PledgesMocks/README.md new file mode 100644 index 0000000000..09161cf5a8 --- /dev/null +++ b/docs/docs/auto-docs/screens/FundCampaignPledge/PledgesMocks/README.md @@ -0,0 +1,15 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / screens/FundCampaignPledge/PledgesMocks + +# screens/FundCampaignPledge/PledgesMocks + +## Variables + +- [EMPTY\_MOCKS](variables/EMPTY_MOCKS.md) +- [MOCKS](variables/MOCKS.md) +- [MOCKS\_DELETE\_PLEDGE\_ERROR](variables/MOCKS_DELETE_PLEDGE_ERROR.md) +- [MOCKS\_FUND\_CAMPAIGN\_PLEDGE\_ERROR](variables/MOCKS_FUND_CAMPAIGN_PLEDGE_ERROR.md) +- [PLEDGE\_MODAL\_MOCKS](variables/PLEDGE_MODAL_MOCKS.md) diff --git a/docs/docs/auto-docs/screens/FundCampaignPledge/PledgesMocks/variables/EMPTY_MOCKS.md b/docs/docs/auto-docs/screens/FundCampaignPledge/PledgesMocks/variables/EMPTY_MOCKS.md new file mode 100644 index 0000000000..647a9d4377 --- /dev/null +++ b/docs/docs/auto-docs/screens/FundCampaignPledge/PledgesMocks/variables/EMPTY_MOCKS.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [screens/FundCampaignPledge/PledgesMocks](../README.md) / EMPTY\_MOCKS + +# Variable: EMPTY\_MOCKS + +> `const` **EMPTY\_MOCKS**: (\{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `id`: `string`; \}; \}; `result`: \{ `data`: \{ `organizations`: `object`[]; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `pledgeOrderBy`: `string`; `where`: \{ `id`: `string`; \}; \}; \}; `result`: \{ `data`: \{ `getFundraisingCampaigns`: `object`[]; \}; \}; \})[] + +Defined in: [src/screens/FundCampaignPledge/PledgesMocks.ts:387](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/FundCampaignPledge/PledgesMocks.ts#L387) diff --git a/docs/docs/auto-docs/screens/FundCampaignPledge/PledgesMocks/variables/MOCKS.md b/docs/docs/auto-docs/screens/FundCampaignPledge/PledgesMocks/variables/MOCKS.md new file mode 100644 index 0000000000..ec14040443 --- /dev/null +++ b/docs/docs/auto-docs/screens/FundCampaignPledge/PledgesMocks/variables/MOCKS.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [screens/FundCampaignPledge/PledgesMocks](../README.md) / MOCKS + +# Variable: MOCKS + +> `const` **MOCKS**: (\{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `id`: `string`; \}; \}; `result`: \{ `data`: \{ `organizations`: `object`[]; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `id`: `undefined`; `pledgeOrderBy`: `string`; `where`: \{ `id`: `string`; \}; \}; \}; `result`: \{ `data`: \{ `getFundraisingCampaigns`: `object`[]; `removeFundraisingCampaignPledge`: `undefined`; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `id`: `string`; `pledgeOrderBy`: `undefined`; `where`: `undefined`; \}; \}; `result`: \{ `data`: \{ `getFundraisingCampaigns`: `undefined`; `removeFundraisingCampaignPledge`: \{ `_id`: `string`; \}; \}; \}; \})[] + +Defined in: [src/screens/FundCampaignPledge/PledgesMocks.ts:49](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/FundCampaignPledge/PledgesMocks.ts#L49) diff --git a/docs/docs/auto-docs/screens/FundCampaignPledge/PledgesMocks/variables/MOCKS_DELETE_PLEDGE_ERROR.md b/docs/docs/auto-docs/screens/FundCampaignPledge/PledgesMocks/variables/MOCKS_DELETE_PLEDGE_ERROR.md new file mode 100644 index 0000000000..44441f8101 --- /dev/null +++ b/docs/docs/auto-docs/screens/FundCampaignPledge/PledgesMocks/variables/MOCKS_DELETE_PLEDGE_ERROR.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [screens/FundCampaignPledge/PledgesMocks](../README.md) / MOCKS\_DELETE\_PLEDGE\_ERROR + +# Variable: MOCKS\_DELETE\_PLEDGE\_ERROR + +> `const` **MOCKS\_DELETE\_PLEDGE\_ERROR**: (\{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `id`: `string`; \}; \}; `result`: \{ `data`: \{ `organizations`: `object`[]; \}; \}; \} \| \{ `error`: `Error`; `request`: \{ `query`: `DocumentNode`; `variables`: \{ `id`: `string`; \}; \}; \})[] + +Defined in: [src/screens/FundCampaignPledge/PledgesMocks.ts:374](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/FundCampaignPledge/PledgesMocks.ts#L374) diff --git a/docs/docs/auto-docs/screens/FundCampaignPledge/PledgesMocks/variables/MOCKS_FUND_CAMPAIGN_PLEDGE_ERROR.md b/docs/docs/auto-docs/screens/FundCampaignPledge/PledgesMocks/variables/MOCKS_FUND_CAMPAIGN_PLEDGE_ERROR.md new file mode 100644 index 0000000000..729ceb1087 --- /dev/null +++ b/docs/docs/auto-docs/screens/FundCampaignPledge/PledgesMocks/variables/MOCKS_FUND_CAMPAIGN_PLEDGE_ERROR.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [screens/FundCampaignPledge/PledgesMocks](../README.md) / MOCKS\_FUND\_CAMPAIGN\_PLEDGE\_ERROR + +# Variable: MOCKS\_FUND\_CAMPAIGN\_PLEDGE\_ERROR + +> `const` **MOCKS\_FUND\_CAMPAIGN\_PLEDGE\_ERROR**: (\{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `id`: `string`; \}; \}; `result`: \{ `data`: \{ `organizations`: `object`[]; \}; \}; \} \| \{ `error`: `Error`; `request`: \{ `query`: `DocumentNode`; `variables`: \{ `pledgeOrderBy`: `string`; `where`: \{ `id`: `string`; \}; \}; \}; \})[] + +Defined in: [src/screens/FundCampaignPledge/PledgesMocks.ts:358](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/FundCampaignPledge/PledgesMocks.ts#L358) diff --git a/docs/docs/auto-docs/screens/FundCampaignPledge/PledgesMocks/variables/PLEDGE_MODAL_MOCKS.md b/docs/docs/auto-docs/screens/FundCampaignPledge/PledgesMocks/variables/PLEDGE_MODAL_MOCKS.md new file mode 100644 index 0000000000..4e6d26b313 --- /dev/null +++ b/docs/docs/auto-docs/screens/FundCampaignPledge/PledgesMocks/variables/PLEDGE_MODAL_MOCKS.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [screens/FundCampaignPledge/PledgesMocks](../README.md) / PLEDGE\_MODAL\_MOCKS + +# Variable: PLEDGE\_MODAL\_MOCKS + +> `const` **PLEDGE\_MODAL\_MOCKS**: (\{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `id`: `string`; \}; \}; `result`: \{ `data`: \{ `organizations`: `object`[]; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `amount`: `number`; `campaignId`: `undefined`; `currency`: `undefined`; `endDate`: `undefined`; `id`: `string`; `startDate`: `undefined`; `userIds`: `undefined`; \}; \}; `result`: \{ `data`: \{ `createFundraisingCampaignPledge`: `undefined`; `updateFundraisingCampaignPledge`: \{ `_id`: `string`; \}; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `amount`: `number`; `campaignId`: `string`; `currency`: `string`; `endDate`: `string`; `id`: `undefined`; `startDate`: `string`; `userIds`: `string`[]; \}; \}; `result`: \{ `data`: \{ `createFundraisingCampaignPledge`: \{ `_id`: `string`; \}; `updateFundraisingCampaignPledge`: `undefined`; \}; \}; \})[] + +Defined in: [src/screens/FundCampaignPledge/PledgesMocks.ts:419](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/FundCampaignPledge/PledgesMocks.ts#L419) diff --git a/docs/docs/auto-docs/screens/Leaderboard/Leaderboard.mocks/README.md b/docs/docs/auto-docs/screens/Leaderboard/Leaderboard.mocks/README.md new file mode 100644 index 0000000000..300d2201d7 --- /dev/null +++ b/docs/docs/auto-docs/screens/Leaderboard/Leaderboard.mocks/README.md @@ -0,0 +1,13 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / screens/Leaderboard/Leaderboard.mocks + +# screens/Leaderboard/Leaderboard.mocks + +## Variables + +- [EMPTY\_MOCKS](variables/EMPTY_MOCKS.md) +- [ERROR\_MOCKS](variables/ERROR_MOCKS.md) +- [MOCKS](variables/MOCKS.md) diff --git a/docs/docs/auto-docs/screens/Leaderboard/Leaderboard.mocks/variables/EMPTY_MOCKS.md b/docs/docs/auto-docs/screens/Leaderboard/Leaderboard.mocks/variables/EMPTY_MOCKS.md new file mode 100644 index 0000000000..da2ab3bf05 --- /dev/null +++ b/docs/docs/auto-docs/screens/Leaderboard/Leaderboard.mocks/variables/EMPTY_MOCKS.md @@ -0,0 +1,57 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [screens/Leaderboard/Leaderboard.mocks](../README.md) / EMPTY\_MOCKS + +# Variable: EMPTY\_MOCKS + +> `const` **EMPTY\_MOCKS**: `object`[] + +Defined in: [src/screens/Leaderboard/Leaderboard.mocks.ts:162](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/Leaderboard/Leaderboard.mocks.ts#L162) + +## Type declaration + +### request + +> **request**: `object` + +#### request.query + +> **query**: `DocumentNode` = `VOLUNTEER_RANKING` + +#### request.variables + +> **variables**: `object` + +#### request.variables.orgId + +> **orgId**: `string` = `'orgId'` + +#### request.variables.where + +> **where**: `object` + +#### request.variables.where.nameContains + +> **nameContains**: `string` = `''` + +#### request.variables.where.orderBy + +> **orderBy**: `string` = `'hours_DESC'` + +#### request.variables.where.timeFrame + +> **timeFrame**: `string` = `'allTime'` + +### result + +> **result**: `object` + +#### result.data + +> **data**: `object` + +#### result.data.getVolunteerRanks + +> **getVolunteerRanks**: `any`[] = `[]` diff --git a/docs/docs/auto-docs/screens/Leaderboard/Leaderboard.mocks/variables/ERROR_MOCKS.md b/docs/docs/auto-docs/screens/Leaderboard/Leaderboard.mocks/variables/ERROR_MOCKS.md new file mode 100644 index 0000000000..a1e6699be6 --- /dev/null +++ b/docs/docs/auto-docs/screens/Leaderboard/Leaderboard.mocks/variables/ERROR_MOCKS.md @@ -0,0 +1,49 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [screens/Leaderboard/Leaderboard.mocks](../README.md) / ERROR\_MOCKS + +# Variable: ERROR\_MOCKS + +> `const` **ERROR\_MOCKS**: `object`[] + +Defined in: [src/screens/Leaderboard/Leaderboard.mocks.ts:183](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/Leaderboard/Leaderboard.mocks.ts#L183) + +## Type declaration + +### error + +> **error**: `Error` + +### request + +> **request**: `object` + +#### request.query + +> **query**: `DocumentNode` = `VOLUNTEER_RANKING` + +#### request.variables + +> **variables**: `object` + +#### request.variables.orgId + +> **orgId**: `string` = `'orgId'` + +#### request.variables.where + +> **where**: `object` + +#### request.variables.where.nameContains + +> **nameContains**: `string` = `''` + +#### request.variables.where.orderBy + +> **orderBy**: `string` = `'hours_DESC'` + +#### request.variables.where.timeFrame + +> **timeFrame**: `string` = `'allTime'` diff --git a/docs/docs/auto-docs/screens/Leaderboard/Leaderboard.mocks/variables/MOCKS.md b/docs/docs/auto-docs/screens/Leaderboard/Leaderboard.mocks/variables/MOCKS.md new file mode 100644 index 0000000000..d77b49ee88 --- /dev/null +++ b/docs/docs/auto-docs/screens/Leaderboard/Leaderboard.mocks/variables/MOCKS.md @@ -0,0 +1,57 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [screens/Leaderboard/Leaderboard.mocks](../README.md) / MOCKS + +# Variable: MOCKS + +> `const` **MOCKS**: `object`[] + +Defined in: [src/screens/Leaderboard/Leaderboard.mocks.ts:51](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/Leaderboard/Leaderboard.mocks.ts#L51) + +## Type declaration + +### request + +> **request**: `object` + +#### request.query + +> **query**: `DocumentNode` = `VOLUNTEER_RANKING` + +#### request.variables + +> **variables**: `object` + +#### request.variables.orgId + +> **orgId**: `string` = `'orgId'` + +#### request.variables.where + +> **where**: `object` + +#### request.variables.where.nameContains + +> **nameContains**: `string` = `''` + +#### request.variables.where.orderBy + +> **orderBy**: `string` = `'hours_DESC'` + +#### request.variables.where.timeFrame + +> **timeFrame**: `string` = `'allTime'` + +### result + +> **result**: `object` + +#### result.data + +> **data**: `object` + +#### result.data.getVolunteerRanks + +> **getVolunteerRanks**: `object`[] diff --git a/docs/docs/auto-docs/screens/Leaderboard/Leaderboard/README.md b/docs/docs/auto-docs/screens/Leaderboard/Leaderboard/README.md new file mode 100644 index 0000000000..a8117a54a7 --- /dev/null +++ b/docs/docs/auto-docs/screens/Leaderboard/Leaderboard/README.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / screens/Leaderboard/Leaderboard + +# screens/Leaderboard/Leaderboard + +## Functions + +- [default](functions/default.md) diff --git a/docs/docs/auto-docs/screens/Leaderboard/Leaderboard/functions/default.md b/docs/docs/auto-docs/screens/Leaderboard/Leaderboard/functions/default.md new file mode 100644 index 0000000000..abf7922839 --- /dev/null +++ b/docs/docs/auto-docs/screens/Leaderboard/Leaderboard/functions/default.md @@ -0,0 +1,23 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [screens/Leaderboard/Leaderboard](../README.md) / default + +# Function: default() + +> **default**(): `JSX.Element` + +Defined in: [src/screens/Leaderboard/Leaderboard.tsx:62](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/Leaderboard/Leaderboard.tsx#L62) + +Component to display the leaderboard of volunteers. + +This component shows a leaderboard of volunteers ranked by hours contributed, +with features for filtering by time frame and sorting by hours. It displays +volunteer details including rank, name, email, and hours volunteered. + +## Returns + +`JSX.Element` + +The rendered component. diff --git a/docs/docs/auto-docs/screens/LoginPage/LoginPage/README.md b/docs/docs/auto-docs/screens/LoginPage/LoginPage/README.md new file mode 100644 index 0000000000..3258f97741 --- /dev/null +++ b/docs/docs/auto-docs/screens/LoginPage/LoginPage/README.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / screens/LoginPage/LoginPage + +# screens/LoginPage/LoginPage + +## Functions + +- [default](functions/default.md) diff --git a/docs/docs/auto-docs/screens/LoginPage/LoginPage/functions/default.md b/docs/docs/auto-docs/screens/LoginPage/LoginPage/functions/default.md new file mode 100644 index 0000000000..5c8d88cc9c --- /dev/null +++ b/docs/docs/auto-docs/screens/LoginPage/LoginPage/functions/default.md @@ -0,0 +1,19 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [screens/LoginPage/LoginPage](../README.md) / default + +# Function: default() + +> **default**(): `Element` + +Defined in: [src/screens/LoginPage/LoginPage.tsx:46](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/LoginPage/LoginPage.tsx#L46) + +LoginPage component is used to render the login page of the application where user can login or register +to the application using email and password. The component also provides the functionality to switch between login and +register form. + +## Returns + +`Element` diff --git a/docs/docs/auto-docs/screens/ManageTag/EditUserTagModal/README.md b/docs/docs/auto-docs/screens/ManageTag/EditUserTagModal/README.md new file mode 100644 index 0000000000..b40848f3a0 --- /dev/null +++ b/docs/docs/auto-docs/screens/ManageTag/EditUserTagModal/README.md @@ -0,0 +1,15 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / screens/ManageTag/EditUserTagModal + +# screens/ManageTag/EditUserTagModal + +## Interfaces + +- [InterfaceEditUserTagModalProps](interfaces/InterfaceEditUserTagModalProps.md) + +## Functions + +- [default](functions/default.md) diff --git a/docs/docs/auto-docs/screens/ManageTag/EditUserTagModal/functions/default.md b/docs/docs/auto-docs/screens/ManageTag/EditUserTagModal/functions/default.md new file mode 100644 index 0000000000..1554d48d41 --- /dev/null +++ b/docs/docs/auto-docs/screens/ManageTag/EditUserTagModal/functions/default.md @@ -0,0 +1,31 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [screens/ManageTag/EditUserTagModal](../README.md) / default + +# Function: default() + +> **default**(`props`, `deprecatedLegacyContext`?): `ReactNode` + +Defined in: [src/screens/ManageTag/EditUserTagModal.tsx:20](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/ManageTag/EditUserTagModal.tsx#L20) + +## Parameters + +### props + +[`InterfaceEditUserTagModalProps`](../interfaces/InterfaceEditUserTagModalProps.md) + +### deprecatedLegacyContext? + +`any` + +**Deprecated** + +**See** + +[React Docs](https://legacy.reactjs.org/docs/legacy-context.html#referencing-context-in-lifecycle-methods) + +## Returns + +`ReactNode` diff --git a/docs/docs/auto-docs/screens/ManageTag/EditUserTagModal/interfaces/InterfaceEditUserTagModalProps.md b/docs/docs/auto-docs/screens/ManageTag/EditUserTagModal/interfaces/InterfaceEditUserTagModalProps.md new file mode 100644 index 0000000000..a30e2310e1 --- /dev/null +++ b/docs/docs/auto-docs/screens/ManageTag/EditUserTagModal/interfaces/InterfaceEditUserTagModalProps.md @@ -0,0 +1,91 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [screens/ManageTag/EditUserTagModal](../README.md) / InterfaceEditUserTagModalProps + +# Interface: InterfaceEditUserTagModalProps + +Defined in: [src/screens/ManageTag/EditUserTagModal.tsx:10](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/ManageTag/EditUserTagModal.tsx#L10) + +Edit UserTag Modal component for the Manage Tag screen. + +## Properties + +### editUserTagModalIsOpen + +> **editUserTagModalIsOpen**: `boolean` + +Defined in: [src/screens/ManageTag/EditUserTagModal.tsx:11](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/ManageTag/EditUserTagModal.tsx#L11) + +*** + +### handleEditUserTag() + +> **handleEditUserTag**: (`e`) => `Promise`\<`void`\> + +Defined in: [src/screens/ManageTag/EditUserTagModal.tsx:15](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/ManageTag/EditUserTagModal.tsx#L15) + +#### Parameters + +##### e + +`FormEvent`\<`HTMLFormElement`\> + +#### Returns + +`Promise`\<`void`\> + +*** + +### hideEditUserTagModal() + +> **hideEditUserTagModal**: () => `void` + +Defined in: [src/screens/ManageTag/EditUserTagModal.tsx:12](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/ManageTag/EditUserTagModal.tsx#L12) + +#### Returns + +`void` + +*** + +### newTagName + +> **newTagName**: `string` + +Defined in: [src/screens/ManageTag/EditUserTagModal.tsx:13](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/ManageTag/EditUserTagModal.tsx#L13) + +*** + +### setNewTagName() + +> **setNewTagName**: (`state`) => `void` + +Defined in: [src/screens/ManageTag/EditUserTagModal.tsx:14](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/ManageTag/EditUserTagModal.tsx#L14) + +#### Parameters + +##### state + +`SetStateAction`\<`string`\> + +#### Returns + +`void` + +*** + +### t + +> **t**: `TFunction`\<`"manageTag"`\> + +Defined in: [src/screens/ManageTag/EditUserTagModal.tsx:16](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/ManageTag/EditUserTagModal.tsx#L16) + +*** + +### tCommon + +> **tCommon**: `TFunction`\<`"common"`\> + +Defined in: [src/screens/ManageTag/EditUserTagModal.tsx:17](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/ManageTag/EditUserTagModal.tsx#L17) diff --git a/docs/docs/auto-docs/screens/ManageTag/ManageTag/README.md b/docs/docs/auto-docs/screens/ManageTag/ManageTag/README.md new file mode 100644 index 0000000000..fd25228ebe --- /dev/null +++ b/docs/docs/auto-docs/screens/ManageTag/ManageTag/README.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / screens/ManageTag/ManageTag + +# screens/ManageTag/ManageTag + +## Functions + +- [default](functions/default.md) diff --git a/docs/docs/auto-docs/screens/ManageTag/ManageTag/functions/default.md b/docs/docs/auto-docs/screens/ManageTag/ManageTag/functions/default.md new file mode 100644 index 0000000000..25321f5924 --- /dev/null +++ b/docs/docs/auto-docs/screens/ManageTag/ManageTag/functions/default.md @@ -0,0 +1,17 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [screens/ManageTag/ManageTag](../README.md) / default + +# Function: default() + +> **default**(): `JSX.Element` + +Defined in: [src/screens/ManageTag/ManageTag.tsx:46](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/ManageTag/ManageTag.tsx#L46) + +Component that renders the Manage Tag screen when the app navigates to '/orgtags/:orgId/manageTag/:tagId'. + +## Returns + +`JSX.Element` diff --git a/docs/docs/auto-docs/screens/ManageTag/ManageTagMockComponents/MockAddPeopleToTag/README.md b/docs/docs/auto-docs/screens/ManageTag/ManageTagMockComponents/MockAddPeopleToTag/README.md new file mode 100644 index 0000000000..472f1e281d --- /dev/null +++ b/docs/docs/auto-docs/screens/ManageTag/ManageTagMockComponents/MockAddPeopleToTag/README.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / screens/ManageTag/ManageTagMockComponents/MockAddPeopleToTag + +# screens/ManageTag/ManageTagMockComponents/MockAddPeopleToTag + +## Functions + +- [default](functions/default.md) diff --git a/docs/docs/auto-docs/screens/ManageTag/ManageTagMockComponents/MockAddPeopleToTag/functions/default.md b/docs/docs/auto-docs/screens/ManageTag/ManageTagMockComponents/MockAddPeopleToTag/functions/default.md new file mode 100644 index 0000000000..2d358e5be2 --- /dev/null +++ b/docs/docs/auto-docs/screens/ManageTag/ManageTagMockComponents/MockAddPeopleToTag/functions/default.md @@ -0,0 +1,31 @@ +[**talawa-admin**](../../../../../README.md) + +*** + +[talawa-admin](../../../../../modules.md) / [screens/ManageTag/ManageTagMockComponents/MockAddPeopleToTag](../README.md) / default + +# Function: default() + +> **default**(`props`, `deprecatedLegacyContext`?): `ReactNode` + +Defined in: [src/screens/ManageTag/ManageTagMockComponents/MockAddPeopleToTag.tsx:12](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/ManageTag/ManageTagMockComponents/MockAddPeopleToTag.tsx#L12) + +## Parameters + +### props + +[`InterfaceAddPeopleToTagProps`](../../../../../components/AddPeopleToTag/AddPeopleToTag/interfaces/InterfaceAddPeopleToTagProps.md) + +### deprecatedLegacyContext? + +`any` + +**Deprecated** + +**See** + +[React Docs](https://legacy.reactjs.org/docs/legacy-context.html#referencing-context-in-lifecycle-methods) + +## Returns + +`ReactNode` diff --git a/docs/docs/auto-docs/screens/ManageTag/ManageTagMockComponents/MockTagActions/README.md b/docs/docs/auto-docs/screens/ManageTag/ManageTagMockComponents/MockTagActions/README.md new file mode 100644 index 0000000000..b7165dfdef --- /dev/null +++ b/docs/docs/auto-docs/screens/ManageTag/ManageTagMockComponents/MockTagActions/README.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / screens/ManageTag/ManageTagMockComponents/MockTagActions + +# screens/ManageTag/ManageTagMockComponents/MockTagActions + +## Functions + +- [default](functions/default.md) diff --git a/docs/docs/auto-docs/screens/ManageTag/ManageTagMockComponents/MockTagActions/functions/default.md b/docs/docs/auto-docs/screens/ManageTag/ManageTagMockComponents/MockTagActions/functions/default.md new file mode 100644 index 0000000000..6cf36c8599 --- /dev/null +++ b/docs/docs/auto-docs/screens/ManageTag/ManageTagMockComponents/MockTagActions/functions/default.md @@ -0,0 +1,33 @@ +[**talawa-admin**](../../../../../README.md) + +*** + +[talawa-admin](../../../../../modules.md) / [screens/ManageTag/ManageTagMockComponents/MockTagActions](../README.md) / default + +# Function: default() + +> **default**(`props`, `deprecatedLegacyContext`?): `ReactNode` + +Defined in: [src/screens/ManageTag/ManageTagMockComponents/MockTagActions.tsx:8](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/ManageTag/ManageTagMockComponents/MockTagActions.tsx#L8) + +Component that mocks the TagActions component for the Manage Tag screen. + +## Parameters + +### props + +[`InterfaceTagActionsProps`](../../../../../components/TagActions/TagActions/interfaces/InterfaceTagActionsProps.md) + +### deprecatedLegacyContext? + +`any` + +**Deprecated** + +**See** + +[React Docs](https://legacy.reactjs.org/docs/legacy-context.html#referencing-context-in-lifecycle-methods) + +## Returns + +`ReactNode` diff --git a/docs/docs/auto-docs/screens/ManageTag/ManageTagMocks/README.md b/docs/docs/auto-docs/screens/ManageTag/ManageTagMocks/README.md new file mode 100644 index 0000000000..b371650a1e --- /dev/null +++ b/docs/docs/auto-docs/screens/ManageTag/ManageTagMocks/README.md @@ -0,0 +1,12 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / screens/ManageTag/ManageTagMocks + +# screens/ManageTag/ManageTagMocks + +## Variables + +- [MOCKS](variables/MOCKS.md) +- [MOCKS\_ERROR\_ASSIGNED\_MEMBERS](variables/MOCKS_ERROR_ASSIGNED_MEMBERS.md) diff --git a/docs/docs/auto-docs/screens/ManageTag/ManageTagMocks/variables/MOCKS.md b/docs/docs/auto-docs/screens/ManageTag/ManageTagMocks/variables/MOCKS.md new file mode 100644 index 0000000000..c52f7475e1 --- /dev/null +++ b/docs/docs/auto-docs/screens/ManageTag/ManageTagMocks/variables/MOCKS.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [screens/ManageTag/ManageTagMocks](../README.md) / MOCKS + +# Variable: MOCKS + +> `const` **MOCKS**: (\{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `after`: `undefined`; `first`: `number`; `id`: `string`; `name`: `undefined`; `sortedBy`: \{ `id`: `string`; \}; `tagId`: `undefined`; `userId`: `undefined`; `where`: \{ `firstName`: \{ `starts_with`: `string`; \}; `lastName`: \{ `starts_with`: `string`; \}; \}; \}; \}; `result`: \{ `data`: \{ `getAssignedUsers`: \{ `ancestorTags`: `any`[]; `name`: `string`; `usersAssignedTo`: \{ `edges`: `object`[]; `pageInfo`: \{ `endCursor`: `string`; `hasNextPage`: `boolean`; `hasPreviousPage`: `boolean`; `startCursor`: `string`; \}; `totalCount`: `number`; \}; \}; `removeUserTag`: `undefined`; `unassignUserTag`: `undefined`; `updateUserTag`: `undefined`; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `after`: `string`; `first`: `number`; `id`: `string`; `name`: `undefined`; `sortedBy`: \{ `id`: `string`; \}; `tagId`: `undefined`; `userId`: `undefined`; `where`: \{ `firstName`: \{ `starts_with`: `string`; \}; `lastName`: \{ `starts_with`: `string`; \}; \}; \}; \}; `result`: \{ `data`: \{ `getAssignedUsers`: \{ `ancestorTags`: `any`[]; `name`: `string`; `usersAssignedTo`: \{ `edges`: `object`[]; `pageInfo`: \{ `endCursor`: `string`; `hasNextPage`: `boolean`; `hasPreviousPage`: `boolean`; `startCursor`: `string`; \}; `totalCount`: `number`; \}; \}; `removeUserTag`: `undefined`; `unassignUserTag`: `undefined`; `updateUserTag`: `undefined`; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `after`: `undefined`; `first`: `undefined`; `id`: `undefined`; `name`: `undefined`; `sortedBy`: `undefined`; `tagId`: `string`; `userId`: `string`; `where`: `undefined`; \}; \}; `result`: \{ `data`: \{ `getAssignedUsers`: `undefined`; `removeUserTag`: `undefined`; `unassignUserTag`: \{ `_id`: `string`; \}; `updateUserTag`: `undefined`; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `after`: `undefined`; `first`: `undefined`; `id`: `undefined`; `name`: `string`; `sortedBy`: `undefined`; `tagId`: `string`; `userId`: `undefined`; `where`: `undefined`; \}; \}; `result`: \{ `data`: \{ `getAssignedUsers`: `undefined`; `removeUserTag`: `undefined`; `unassignUserTag`: `undefined`; `updateUserTag`: \{ `_id`: `string`; \}; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `after`: `undefined`; `first`: `undefined`; `id`: `string`; `name`: `undefined`; `sortedBy`: `undefined`; `tagId`: `undefined`; `userId`: `undefined`; `where`: `undefined`; \}; \}; `result`: \{ `data`: \{ `getAssignedUsers`: `undefined`; `removeUserTag`: \{ `_id`: `string`; \}; `unassignUserTag`: `undefined`; `updateUserTag`: `undefined`; \}; \}; \})[] + +Defined in: [src/screens/ManageTag/ManageTagMocks.ts:9](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/ManageTag/ManageTagMocks.ts#L9) diff --git a/docs/docs/auto-docs/screens/ManageTag/ManageTagMocks/variables/MOCKS_ERROR_ASSIGNED_MEMBERS.md b/docs/docs/auto-docs/screens/ManageTag/ManageTagMocks/variables/MOCKS_ERROR_ASSIGNED_MEMBERS.md new file mode 100644 index 0000000000..a814770445 --- /dev/null +++ b/docs/docs/auto-docs/screens/ManageTag/ManageTagMocks/variables/MOCKS_ERROR_ASSIGNED_MEMBERS.md @@ -0,0 +1,65 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [screens/ManageTag/ManageTagMocks](../README.md) / MOCKS\_ERROR\_ASSIGNED\_MEMBERS + +# Variable: MOCKS\_ERROR\_ASSIGNED\_MEMBERS + +> `const` **MOCKS\_ERROR\_ASSIGNED\_MEMBERS**: `object`[] + +Defined in: [src/screens/ManageTag/ManageTagMocks.ts:320](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/ManageTag/ManageTagMocks.ts#L320) + +## Type declaration + +### error + +> **error**: `Error` + +### request + +> **request**: `object` + +#### request.query + +> **query**: `DocumentNode` = `USER_TAGS_ASSIGNED_MEMBERS` + +#### request.variables + +> **variables**: `object` + +#### request.variables.first + +> **first**: `number` = `TAGS_QUERY_DATA_CHUNK_SIZE` + +#### request.variables.id + +> **id**: `string` = `'1'` + +#### request.variables.sortedBy + +> **sortedBy**: `object` + +#### request.variables.sortedBy.id + +> **id**: `string` = `'DESCENDING'` + +#### request.variables.where + +> **where**: `object` + +#### request.variables.where.firstName + +> **firstName**: `object` + +#### request.variables.where.firstName.starts\_with + +> **starts\_with**: `string` = `''` + +#### request.variables.where.lastName + +> **lastName**: `object` + +#### request.variables.where.lastName.starts\_with + +> **starts\_with**: `string` = `''` diff --git a/docs/docs/auto-docs/screens/ManageTag/RemoveUserTagModal/README.md b/docs/docs/auto-docs/screens/ManageTag/RemoveUserTagModal/README.md new file mode 100644 index 0000000000..81941d24ec --- /dev/null +++ b/docs/docs/auto-docs/screens/ManageTag/RemoveUserTagModal/README.md @@ -0,0 +1,15 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / screens/ManageTag/RemoveUserTagModal + +# screens/ManageTag/RemoveUserTagModal + +## Interfaces + +- [InterfaceRemoveUserTagModalProps](interfaces/InterfaceRemoveUserTagModalProps.md) + +## Functions + +- [default](functions/default.md) diff --git a/docs/docs/auto-docs/screens/ManageTag/RemoveUserTagModal/functions/default.md b/docs/docs/auto-docs/screens/ManageTag/RemoveUserTagModal/functions/default.md new file mode 100644 index 0000000000..99691c4046 --- /dev/null +++ b/docs/docs/auto-docs/screens/ManageTag/RemoveUserTagModal/functions/default.md @@ -0,0 +1,31 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [screens/ManageTag/RemoveUserTagModal](../README.md) / default + +# Function: default() + +> **default**(`props`, `deprecatedLegacyContext`?): `ReactNode` + +Defined in: [src/screens/ManageTag/RemoveUserTagModal.tsx:17](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/ManageTag/RemoveUserTagModal.tsx#L17) + +## Parameters + +### props + +[`InterfaceRemoveUserTagModalProps`](../interfaces/InterfaceRemoveUserTagModalProps.md) + +### deprecatedLegacyContext? + +`any` + +**Deprecated** + +**See** + +[React Docs](https://legacy.reactjs.org/docs/legacy-context.html#referencing-context-in-lifecycle-methods) + +## Returns + +`ReactNode` diff --git a/docs/docs/auto-docs/screens/ManageTag/RemoveUserTagModal/interfaces/InterfaceRemoveUserTagModalProps.md b/docs/docs/auto-docs/screens/ManageTag/RemoveUserTagModal/interfaces/InterfaceRemoveUserTagModalProps.md new file mode 100644 index 0000000000..b3c07445cc --- /dev/null +++ b/docs/docs/auto-docs/screens/ManageTag/RemoveUserTagModal/interfaces/InterfaceRemoveUserTagModalProps.md @@ -0,0 +1,59 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [screens/ManageTag/RemoveUserTagModal](../README.md) / InterfaceRemoveUserTagModalProps + +# Interface: InterfaceRemoveUserTagModalProps + +Defined in: [src/screens/ManageTag/RemoveUserTagModal.tsx:9](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/ManageTag/RemoveUserTagModal.tsx#L9) + +Remove UserTag Modal component for the Manage Tag screen. + +## Properties + +### handleRemoveUserTag() + +> **handleRemoveUserTag**: () => `Promise`\<`void`\> + +Defined in: [src/screens/ManageTag/RemoveUserTagModal.tsx:12](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/ManageTag/RemoveUserTagModal.tsx#L12) + +#### Returns + +`Promise`\<`void`\> + +*** + +### removeUserTagModalIsOpen + +> **removeUserTagModalIsOpen**: `boolean` + +Defined in: [src/screens/ManageTag/RemoveUserTagModal.tsx:10](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/ManageTag/RemoveUserTagModal.tsx#L10) + +*** + +### t + +> **t**: `TFunction`\<`"manageTag"`\> + +Defined in: [src/screens/ManageTag/RemoveUserTagModal.tsx:13](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/ManageTag/RemoveUserTagModal.tsx#L13) + +*** + +### tCommon + +> **tCommon**: `TFunction`\<`"common"`\> + +Defined in: [src/screens/ManageTag/RemoveUserTagModal.tsx:14](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/ManageTag/RemoveUserTagModal.tsx#L14) + +*** + +### toggleRemoveUserTagModal() + +> **toggleRemoveUserTagModal**: () => `void` + +Defined in: [src/screens/ManageTag/RemoveUserTagModal.tsx:11](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/ManageTag/RemoveUserTagModal.tsx#L11) + +#### Returns + +`void` diff --git a/docs/docs/auto-docs/screens/ManageTag/UnassignUserTagModal/README.md b/docs/docs/auto-docs/screens/ManageTag/UnassignUserTagModal/README.md new file mode 100644 index 0000000000..a2f139ddb6 --- /dev/null +++ b/docs/docs/auto-docs/screens/ManageTag/UnassignUserTagModal/README.md @@ -0,0 +1,15 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / screens/ManageTag/UnassignUserTagModal + +# screens/ManageTag/UnassignUserTagModal + +## Interfaces + +- [InterfaceUnassignUserTagModalProps](interfaces/InterfaceUnassignUserTagModalProps.md) + +## Functions + +- [default](functions/default.md) diff --git a/docs/docs/auto-docs/screens/ManageTag/UnassignUserTagModal/functions/default.md b/docs/docs/auto-docs/screens/ManageTag/UnassignUserTagModal/functions/default.md new file mode 100644 index 0000000000..c2b0ba88ac --- /dev/null +++ b/docs/docs/auto-docs/screens/ManageTag/UnassignUserTagModal/functions/default.md @@ -0,0 +1,31 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [screens/ManageTag/UnassignUserTagModal](../README.md) / default + +# Function: default() + +> **default**(`props`, `deprecatedLegacyContext`?): `ReactNode` + +Defined in: [src/screens/ManageTag/UnassignUserTagModal.tsx:17](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/ManageTag/UnassignUserTagModal.tsx#L17) + +## Parameters + +### props + +[`InterfaceUnassignUserTagModalProps`](../interfaces/InterfaceUnassignUserTagModalProps.md) + +### deprecatedLegacyContext? + +`any` + +**Deprecated** + +**See** + +[React Docs](https://legacy.reactjs.org/docs/legacy-context.html#referencing-context-in-lifecycle-methods) + +## Returns + +`ReactNode` diff --git a/docs/docs/auto-docs/screens/ManageTag/UnassignUserTagModal/interfaces/InterfaceUnassignUserTagModalProps.md b/docs/docs/auto-docs/screens/ManageTag/UnassignUserTagModal/interfaces/InterfaceUnassignUserTagModalProps.md new file mode 100644 index 0000000000..ba023521d8 --- /dev/null +++ b/docs/docs/auto-docs/screens/ManageTag/UnassignUserTagModal/interfaces/InterfaceUnassignUserTagModalProps.md @@ -0,0 +1,59 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [screens/ManageTag/UnassignUserTagModal](../README.md) / InterfaceUnassignUserTagModalProps + +# Interface: InterfaceUnassignUserTagModalProps + +Defined in: [src/screens/ManageTag/UnassignUserTagModal.tsx:9](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/ManageTag/UnassignUserTagModal.tsx#L9) + +Unassign UserTag Modal component for the Manage Tag screen. + +## Properties + +### handleUnassignUserTag() + +> **handleUnassignUserTag**: () => `Promise`\<`void`\> + +Defined in: [src/screens/ManageTag/UnassignUserTagModal.tsx:12](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/ManageTag/UnassignUserTagModal.tsx#L12) + +#### Returns + +`Promise`\<`void`\> + +*** + +### t + +> **t**: `TFunction`\<`"manageTag"` \| `"memberDetail"`\> + +Defined in: [src/screens/ManageTag/UnassignUserTagModal.tsx:13](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/ManageTag/UnassignUserTagModal.tsx#L13) + +*** + +### tCommon + +> **tCommon**: `TFunction`\<`"common"`\> + +Defined in: [src/screens/ManageTag/UnassignUserTagModal.tsx:14](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/ManageTag/UnassignUserTagModal.tsx#L14) + +*** + +### toggleUnassignUserTagModal() + +> **toggleUnassignUserTagModal**: () => `void` + +Defined in: [src/screens/ManageTag/UnassignUserTagModal.tsx:11](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/ManageTag/UnassignUserTagModal.tsx#L11) + +#### Returns + +`void` + +*** + +### unassignUserTagModalIsOpen + +> **unassignUserTagModalIsOpen**: `boolean` + +Defined in: [src/screens/ManageTag/UnassignUserTagModal.tsx:10](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/ManageTag/UnassignUserTagModal.tsx#L10) diff --git a/docs/docs/auto-docs/screens/MemberDetail/MemberDetail/README.md b/docs/docs/auto-docs/screens/MemberDetail/MemberDetail/README.md new file mode 100644 index 0000000000..abab2714e3 --- /dev/null +++ b/docs/docs/auto-docs/screens/MemberDetail/MemberDetail/README.md @@ -0,0 +1,13 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / screens/MemberDetail/MemberDetail + +# screens/MemberDetail/MemberDetail + +## Functions + +- [default](functions/default.md) +- [getLanguageName](functions/getLanguageName.md) +- [prettyDate](functions/prettyDate.md) diff --git a/docs/docs/auto-docs/screens/MemberDetail/MemberDetail/functions/default.md b/docs/docs/auto-docs/screens/MemberDetail/MemberDetail/functions/default.md new file mode 100644 index 0000000000..0889fa6ef7 --- /dev/null +++ b/docs/docs/auto-docs/screens/MemberDetail/MemberDetail/functions/default.md @@ -0,0 +1,38 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [screens/MemberDetail/MemberDetail](../README.md) / default + +# Function: default() + +> **default**(`props`, `deprecatedLegacyContext`?): `ReactNode` + +Defined in: [src/screens/MemberDetail/MemberDetail.tsx:51](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/MemberDetail/MemberDetail.tsx#L51) + +MemberDetail component is used to display the details of a user. +It also allows the user to update the details. It uses the UPDATE_USER_MUTATION to update the user details. +It uses the USER_DETAILS query to get the user details. It uses the useLocalStorage hook to store the user + details in the local storage. + +## Parameters + +### props + +`MemberDetailProps` + +### deprecatedLegacyContext? + +`any` + +**Deprecated** + +**See** + +[React Docs](https://legacy.reactjs.org/docs/legacy-context.html#referencing-context-in-lifecycle-methods) + +## Returns + +`ReactNode` + +React component diff --git a/docs/docs/auto-docs/screens/MemberDetail/MemberDetail/functions/getLanguageName.md b/docs/docs/auto-docs/screens/MemberDetail/MemberDetail/functions/getLanguageName.md new file mode 100644 index 0000000000..3baa3e746c --- /dev/null +++ b/docs/docs/auto-docs/screens/MemberDetail/MemberDetail/functions/getLanguageName.md @@ -0,0 +1,21 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [screens/MemberDetail/MemberDetail](../README.md) / getLanguageName + +# Function: getLanguageName() + +> **getLanguageName**(`code`): `string` + +Defined in: [src/screens/MemberDetail/MemberDetail.tsx:752](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/MemberDetail/MemberDetail.tsx#L752) + +## Parameters + +### code + +`string` + +## Returns + +`string` diff --git a/docs/docs/auto-docs/screens/MemberDetail/MemberDetail/functions/prettyDate.md b/docs/docs/auto-docs/screens/MemberDetail/MemberDetail/functions/prettyDate.md new file mode 100644 index 0000000000..41091e6009 --- /dev/null +++ b/docs/docs/auto-docs/screens/MemberDetail/MemberDetail/functions/prettyDate.md @@ -0,0 +1,21 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [screens/MemberDetail/MemberDetail](../README.md) / prettyDate + +# Function: prettyDate() + +> **prettyDate**(`param`): `string` + +Defined in: [src/screens/MemberDetail/MemberDetail.tsx:742](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/MemberDetail/MemberDetail.tsx#L742) + +## Parameters + +### param + +`string` + +## Returns + +`string` diff --git a/docs/docs/auto-docs/screens/MemberDetail/MemberDetailMocks/README.md b/docs/docs/auto-docs/screens/MemberDetail/MemberDetailMocks/README.md new file mode 100644 index 0000000000..5b10a708fc --- /dev/null +++ b/docs/docs/auto-docs/screens/MemberDetail/MemberDetailMocks/README.md @@ -0,0 +1,13 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / screens/MemberDetail/MemberDetailMocks + +# screens/MemberDetail/MemberDetailMocks + +## Variables + +- [MOCKS1](variables/MOCKS1.md) +- [MOCKS2](variables/MOCKS2.md) +- [MOCKS3](variables/MOCKS3.md) diff --git a/docs/docs/auto-docs/screens/MemberDetail/MemberDetailMocks/variables/MOCKS1.md b/docs/docs/auto-docs/screens/MemberDetail/MemberDetailMocks/variables/MOCKS1.md new file mode 100644 index 0000000000..3681941ffb --- /dev/null +++ b/docs/docs/auto-docs/screens/MemberDetail/MemberDetailMocks/variables/MOCKS1.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [screens/MemberDetail/MemberDetailMocks](../README.md) / MOCKS1 + +# Variable: MOCKS1 + +> `const` **MOCKS1**: (\{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `after`: `undefined`; `first`: `number`; `id`: `string`; `tagId`: `undefined`; `userId`: `undefined`; \}; \}; `result`: \{ `data`: \{ `unassignUserTag`: `undefined`; `user`: \{ `__typename`: `string`; `appUserProfile`: \{ `__typename`: `string`; `_id`: `string`; `adminFor`: `object`[]; `appLanguageCode`: `string`; `createdEvents`: `object`[]; `createdOrganizations`: `object`[]; `eventAdmin`: `object`[]; `isSuperAdmin`: `boolean`; `pluginCreationAllowed`: `boolean`; \}; `user`: \{ `__typename`: `string`; `_id`: `string`; `address`: \{ `city`: `string`; `countryCode`: `string`; `line1`: `string`; `state`: `string`; \}; `birthDate`: `string`; `createdAt`: `string`; `educationGrade`: `string`; `email`: `string`; `employmentStatus`: `string`; `eventsAttended`: `any`[]; `firstName`: `string`; `gender`: `string`; `image`: `any`; `joinedOrganizations`: `object`[]; `lastName`: `string`; `maritalStatus`: `string`; `membershipRequests`: `any`[]; `organizationsBlockedBy`: `any`[]; `phone`: \{ `mobile`: `string`; \}; `registeredEvents`: `object`[]; `tagsAssignedWith`: \{ `edges`: `object`[]; `pageInfo`: \{ `endCursor`: `string`; `hasNextPage`: `boolean`; `hasPreviousPage`: `boolean`; `startCursor`: `string`; \}; `totalCount`: `number`; \}; \}; \}; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `after`: `string`; `first`: `number`; `id`: `string`; `tagId`: `undefined`; `userId`: `undefined`; \}; \}; `result`: \{ `data`: \{ `unassignUserTag`: `undefined`; `user`: \{ `__typename`: `string`; `appUserProfile`: \{ `__typename`: `string`; `_id`: `string`; `adminFor`: `object`[]; `appLanguageCode`: `string`; `createdEvents`: `object`[]; `createdOrganizations`: `object`[]; `eventAdmin`: `object`[]; `isSuperAdmin`: `boolean`; `pluginCreationAllowed`: `boolean`; \}; `user`: \{ `__typename`: `string`; `_id`: `string`; `address`: \{ `city`: `string`; `countryCode`: `string`; `line1`: `string`; `state`: `string`; \}; `birthDate`: `string`; `createdAt`: `string`; `educationGrade`: `string`; `email`: `string`; `employmentStatus`: `string`; `eventsAttended`: `any`[]; `firstName`: `string`; `gender`: `string`; `image`: `any`; `joinedOrganizations`: `object`[]; `lastName`: `string`; `maritalStatus`: `string`; `membershipRequests`: `any`[]; `organizationsBlockedBy`: `any`[]; `phone`: \{ `mobile`: `string`; \}; `registeredEvents`: `object`[]; `tagsAssignedWith`: \{ `edges`: `object`[]; `pageInfo`: \{ `endCursor`: `string`; `hasNextPage`: `boolean`; `hasPreviousPage`: `boolean`; `startCursor`: `string`; \}; `totalCount`: `number`; \}; \}; \}; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `after`: `undefined`; `first`: `undefined`; `id`: `undefined`; `tagId`: `string`; `userId`: `string`; \}; \}; `result`: \{ `data`: \{ `unassignUserTag`: \{ `_id`: `string`; \}; `user`: `undefined`; \}; \}; \})[] + +Defined in: [src/screens/MemberDetail/MemberDetailMocks.ts:5](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/MemberDetail/MemberDetailMocks.ts#L5) diff --git a/docs/docs/auto-docs/screens/MemberDetail/MemberDetailMocks/variables/MOCKS2.md b/docs/docs/auto-docs/screens/MemberDetail/MemberDetailMocks/variables/MOCKS2.md new file mode 100644 index 0000000000..250657f0a9 --- /dev/null +++ b/docs/docs/auto-docs/screens/MemberDetail/MemberDetailMocks/variables/MOCKS2.md @@ -0,0 +1,221 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [screens/MemberDetail/MemberDetailMocks](../README.md) / MOCKS2 + +# Variable: MOCKS2 + +> `const` **MOCKS2**: `object`[] + +Defined in: [src/screens/MemberDetail/MemberDetailMocks.ts:337](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/MemberDetail/MemberDetailMocks.ts#L337) + +## Type declaration + +### request + +> **request**: `object` + +#### request.query + +> **query**: `DocumentNode` = `USER_DETAILS` + +#### request.variables + +> **variables**: `object` + +#### request.variables.first + +> **first**: `number` = `TAGS_QUERY_DATA_CHUNK_SIZE` + +#### request.variables.id + +> **id**: `string` = `'rishav-jha-mech'` + +### result + +> **result**: `object` + +#### result.data + +> **data**: `object` + +#### result.data.user + +> **user**: `object` + +#### result.data.user.\_\_typename + +> **\_\_typename**: `string` = `'UserData'` + +#### result.data.user.appUserProfile + +> **appUserProfile**: `object` + +#### result.data.user.appUserProfile.\_\_typename + +> **\_\_typename**: `string` = `'AppUserProfile'` + +#### result.data.user.appUserProfile.\_id + +> **\_id**: `string` = `'1'` + +#### result.data.user.appUserProfile.adminFor + +> **adminFor**: `any`[] = `[]` + +#### result.data.user.appUserProfile.appLanguageCode + +> **appLanguageCode**: `string` = `'en'` + +#### result.data.user.appUserProfile.createdEvents + +> **createdEvents**: `object`[] + +#### result.data.user.appUserProfile.createdOrganizations + +> **createdOrganizations**: `object`[] + +#### result.data.user.appUserProfile.eventAdmin + +> **eventAdmin**: `object`[] + +#### result.data.user.appUserProfile.isSuperAdmin + +> **isSuperAdmin**: `boolean` = `false` + +#### result.data.user.appUserProfile.pluginCreationAllowed + +> **pluginCreationAllowed**: `boolean` = `true` + +#### result.data.user.user + +> **user**: `object` + +#### result.data.user.user.\_\_typename + +> **\_\_typename**: `string` = `'User'` + +#### result.data.user.user.\_id + +> **\_id**: `string` = `'1'` + +#### result.data.user.user.address + +> **address**: `object` + +#### result.data.user.user.address.city + +> **city**: `string` = `''` + +#### result.data.user.user.address.countryCode + +> **countryCode**: `string` = `''` + +#### result.data.user.user.address.line1 + +> **line1**: `string` = `''` + +#### result.data.user.user.address.state + +> **state**: `string` = `''` + +#### result.data.user.user.birthDate + +> **birthDate**: `string` = `'2024-03-14'` + +#### result.data.user.user.createdAt + +> **createdAt**: `string` = `'2024-02-26T10:36:33.098Z'` + +#### result.data.user.user.educationGrade + +> **educationGrade**: `string` = `''` + +#### result.data.user.user.email + +> **email**: `string` = `'adi790u@gmail.com'` + +#### result.data.user.user.employmentStatus + +> **employmentStatus**: `string` = `''` + +#### result.data.user.user.eventsAttended + +> **eventsAttended**: `object`[] + +#### result.data.user.user.firstName + +> **firstName**: `string` = `'Aditya'` + +#### result.data.user.user.gender + +> **gender**: `string` = `''` + +#### result.data.user.user.image + +> **image**: `string` = `'https://placeholder.com/200x200'` + +#### result.data.user.user.joinedOrganizations + +> **joinedOrganizations**: `object`[] + +#### result.data.user.user.lastName + +> **lastName**: `string` = `'Agarwal'` + +#### result.data.user.user.maritalStatus + +> **maritalStatus**: `string` = `''` + +#### result.data.user.user.membershipRequests + +> **membershipRequests**: `any`[] = `[]` + +#### result.data.user.user.organizationsBlockedBy + +> **organizationsBlockedBy**: `any`[] = `[]` + +#### result.data.user.user.phone + +> **phone**: `object` + +#### result.data.user.user.phone.mobile + +> **mobile**: `string` = `''` + +#### result.data.user.user.registeredEvents + +> **registeredEvents**: `object`[] + +#### result.data.user.user.tagsAssignedWith + +> **tagsAssignedWith**: `object` + +#### result.data.user.user.tagsAssignedWith.edges + +> **edges**: `any`[] = `[]` + +#### result.data.user.user.tagsAssignedWith.pageInfo + +> **pageInfo**: `object` + +#### result.data.user.user.tagsAssignedWith.pageInfo.endCursor + +> **endCursor**: `any` = `null` + +#### result.data.user.user.tagsAssignedWith.pageInfo.hasNextPage + +> **hasNextPage**: `boolean` = `false` + +#### result.data.user.user.tagsAssignedWith.pageInfo.hasPreviousPage + +> **hasPreviousPage**: `boolean` = `false` + +#### result.data.user.user.tagsAssignedWith.pageInfo.startCursor + +> **startCursor**: `any` = `null` + +#### result.data.user.user.tagsAssignedWith.totalCount + +> **totalCount**: `number` = `0` diff --git a/docs/docs/auto-docs/screens/MemberDetail/MemberDetailMocks/variables/MOCKS3.md b/docs/docs/auto-docs/screens/MemberDetail/MemberDetailMocks/variables/MOCKS3.md new file mode 100644 index 0000000000..ddbb642462 --- /dev/null +++ b/docs/docs/auto-docs/screens/MemberDetail/MemberDetailMocks/variables/MOCKS3.md @@ -0,0 +1,221 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [screens/MemberDetail/MemberDetailMocks](../README.md) / MOCKS3 + +# Variable: MOCKS3 + +> `const` **MOCKS3**: `object`[] + +Defined in: [src/screens/MemberDetail/MemberDetailMocks.ts:437](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/MemberDetail/MemberDetailMocks.ts#L437) + +## Type declaration + +### request + +> **request**: `object` + +#### request.query + +> **query**: `DocumentNode` = `USER_DETAILS` + +#### request.variables + +> **variables**: `object` + +#### request.variables.first + +> **first**: `number` = `TAGS_QUERY_DATA_CHUNK_SIZE` + +#### request.variables.id + +> **id**: `string` = `'rishav-jha-mech'` + +### result + +> **result**: `object` + +#### result.data + +> **data**: `object` + +#### result.data.user + +> **user**: `object` + +#### result.data.user.\_\_typename + +> **\_\_typename**: `string` = `'UserData'` + +#### result.data.user.appUserProfile + +> **appUserProfile**: `object` + +#### result.data.user.appUserProfile.\_\_typename + +> **\_\_typename**: `string` = `'AppUserProfile'` + +#### result.data.user.appUserProfile.\_id + +> **\_id**: `string` = `'1'` + +#### result.data.user.appUserProfile.adminFor + +> **adminFor**: `any`[] = `[]` + +#### result.data.user.appUserProfile.appLanguageCode + +> **appLanguageCode**: `string` = `'en'` + +#### result.data.user.appUserProfile.createdEvents + +> **createdEvents**: `object`[] + +#### result.data.user.appUserProfile.createdOrganizations + +> **createdOrganizations**: `object`[] + +#### result.data.user.appUserProfile.eventAdmin + +> **eventAdmin**: `object`[] + +#### result.data.user.appUserProfile.isSuperAdmin + +> **isSuperAdmin**: `boolean` = `true` + +#### result.data.user.appUserProfile.pluginCreationAllowed + +> **pluginCreationAllowed**: `boolean` = `true` + +#### result.data.user.user + +> **user**: `object` + +#### result.data.user.user.\_\_typename + +> **\_\_typename**: `string` = `'User'` + +#### result.data.user.user.\_id + +> **\_id**: `string` = `'1'` + +#### result.data.user.user.address + +> **address**: `object` + +#### result.data.user.user.address.city + +> **city**: `string` = `''` + +#### result.data.user.user.address.countryCode + +> **countryCode**: `string` = `''` + +#### result.data.user.user.address.line1 + +> **line1**: `string` = `''` + +#### result.data.user.user.address.state + +> **state**: `string` = `''` + +#### result.data.user.user.birthDate + +> **birthDate**: `string` = `'2024-03-14'` + +#### result.data.user.user.createdAt + +> **createdAt**: `string` = `'2024-02-26T10:36:33.098Z'` + +#### result.data.user.user.educationGrade + +> **educationGrade**: `string` = `''` + +#### result.data.user.user.email + +> **email**: `string` = `'adi790u@gmail.com'` + +#### result.data.user.user.employmentStatus + +> **employmentStatus**: `string` = `''` + +#### result.data.user.user.eventsAttended + +> **eventsAttended**: `any`[] = `[]` + +#### result.data.user.user.firstName + +> **firstName**: `string` = `'Aditya'` + +#### result.data.user.user.gender + +> **gender**: `string` = `''` + +#### result.data.user.user.image + +> **image**: `string` = `'https://placeholder.com/200x200'` + +#### result.data.user.user.joinedOrganizations + +> **joinedOrganizations**: `object`[] + +#### result.data.user.user.lastName + +> **lastName**: `string` = `'Agarwal'` + +#### result.data.user.user.maritalStatus + +> **maritalStatus**: `string` = `''` + +#### result.data.user.user.membershipRequests + +> **membershipRequests**: `any`[] = `[]` + +#### result.data.user.user.organizationsBlockedBy + +> **organizationsBlockedBy**: `any`[] = `[]` + +#### result.data.user.user.phone + +> **phone**: `object` + +#### result.data.user.user.phone.mobile + +> **mobile**: `string` = `''` + +#### result.data.user.user.registeredEvents + +> **registeredEvents**: `object`[] + +#### result.data.user.user.tagsAssignedWith + +> **tagsAssignedWith**: `object` + +#### result.data.user.user.tagsAssignedWith.edges + +> **edges**: `any`[] = `[]` + +#### result.data.user.user.tagsAssignedWith.pageInfo + +> **pageInfo**: `object` + +#### result.data.user.user.tagsAssignedWith.pageInfo.endCursor + +> **endCursor**: `any` = `null` + +#### result.data.user.user.tagsAssignedWith.pageInfo.hasNextPage + +> **hasNextPage**: `boolean` = `false` + +#### result.data.user.user.tagsAssignedWith.pageInfo.hasPreviousPage + +> **hasPreviousPage**: `boolean` = `false` + +#### result.data.user.user.tagsAssignedWith.pageInfo.startCursor + +> **startCursor**: `any` = `null` + +#### result.data.user.user.tagsAssignedWith.totalCount + +> **totalCount**: `number` = `0` diff --git a/docs/docs/auto-docs/screens/OrgContribution/OrgContribution/README.md b/docs/docs/auto-docs/screens/OrgContribution/OrgContribution/README.md new file mode 100644 index 0000000000..60e9af1bc2 --- /dev/null +++ b/docs/docs/auto-docs/screens/OrgContribution/OrgContribution/README.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / screens/OrgContribution/OrgContribution + +# screens/OrgContribution/OrgContribution + +## Functions + +- [default](functions/default.md) diff --git a/docs/docs/auto-docs/screens/OrgContribution/OrgContribution/functions/default.md b/docs/docs/auto-docs/screens/OrgContribution/OrgContribution/functions/default.md new file mode 100644 index 0000000000..c3a2ac9339 --- /dev/null +++ b/docs/docs/auto-docs/screens/OrgContribution/OrgContribution/functions/default.md @@ -0,0 +1,19 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [screens/OrgContribution/OrgContribution](../README.md) / default + +# Function: default() + +> **default**(): `JSX.Element` + +Defined in: [src/screens/OrgContribution/OrgContribution.tsx:16](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/OrgContribution/OrgContribution.tsx#L16) + +The `orgContribution` component displays the contributions to an organization. +It includes a sidebar for filtering contributions by organization name and transaction ID. +Additionally, it shows recent contribution statistics and a list of contribution cards. + +## Returns + +`JSX.Element` diff --git a/docs/docs/auto-docs/screens/OrgList/OrgList/README.md b/docs/docs/auto-docs/screens/OrgList/OrgList/README.md new file mode 100644 index 0000000000..9bd1f0b701 --- /dev/null +++ b/docs/docs/auto-docs/screens/OrgList/OrgList/README.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / screens/OrgList/OrgList + +# screens/OrgList/OrgList + +## Functions + +- [default](functions/default.md) diff --git a/docs/docs/auto-docs/screens/OrgList/OrgList/functions/default.md b/docs/docs/auto-docs/screens/OrgList/OrgList/functions/default.md new file mode 100644 index 0000000000..857b742ff9 --- /dev/null +++ b/docs/docs/auto-docs/screens/OrgList/OrgList/functions/default.md @@ -0,0 +1,15 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [screens/OrgList/OrgList](../README.md) / default + +# Function: default() + +> **default**(): `JSX.Element` + +Defined in: [src/screens/OrgList/OrgList.tsx:33](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/OrgList/OrgList.tsx#L33) + +## Returns + +`JSX.Element` diff --git a/docs/docs/auto-docs/screens/OrgList/OrgListMocks/README.md b/docs/docs/auto-docs/screens/OrgList/OrgListMocks/README.md new file mode 100644 index 0000000000..5b9d765f0d --- /dev/null +++ b/docs/docs/auto-docs/screens/OrgList/OrgListMocks/README.md @@ -0,0 +1,14 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / screens/OrgList/OrgListMocks + +# screens/OrgList/OrgListMocks + +## Variables + +- [MOCKS](variables/MOCKS.md) +- [MOCKS\_ADMIN](variables/MOCKS_ADMIN.md) +- [MOCKS\_EMPTY](variables/MOCKS_EMPTY.md) +- [MOCKS\_WITH\_ERROR](variables/MOCKS_WITH_ERROR.md) diff --git a/docs/docs/auto-docs/screens/OrgList/OrgListMocks/variables/MOCKS.md b/docs/docs/auto-docs/screens/OrgList/OrgListMocks/variables/MOCKS.md new file mode 100644 index 0000000000..46a851f89c --- /dev/null +++ b/docs/docs/auto-docs/screens/OrgList/OrgListMocks/variables/MOCKS.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [screens/OrgList/OrgListMocks](../README.md) / MOCKS + +# Variable: MOCKS + +> `const` **MOCKS**: (\{ `request`: \{ `notifyOnNetworkStatusChange`: `boolean`; `query`: `DocumentNode`; `variables`: \{ `address`: `undefined`; `description`: `undefined`; `filter`: `string`; `first`: `number`; `image`: `undefined`; `name`: `undefined`; `orderBy`: `string`; `skip`: `number`; `userId`: `undefined`; `userRegistrationRequired`: `undefined`; `visibleInSearch`: `undefined`; \}; \}; `result`: \{ `data`: \{ `createOrganization`: `undefined`; `createSampleOrganization`: `undefined`; `organizationsConnection`: [`InterfaceOrgConnectionInfoType`](../../../../utils/interfaces/interfaces/InterfaceOrgConnectionInfoType.md)[]; `user`: `undefined`; \}; \}; \} \| \{ `request`: \{ `notifyOnNetworkStatusChange`: `undefined`; `query`: `DocumentNode`; `variables`: \{ `address`: `undefined`; `description`: `undefined`; `filter`: `undefined`; `first`: `undefined`; `image`: `undefined`; `name`: `undefined`; `orderBy`: `undefined`; `skip`: `undefined`; `userId`: `string`; `userRegistrationRequired`: `undefined`; `visibleInSearch`: `undefined`; \}; \}; `result`: \{ `data`: \{ `createOrganization`: `undefined`; `createSampleOrganization`: `undefined`; `organizationsConnection`: `undefined`; `user`: [`InterfaceUserType`](../../../../utils/interfaces/interfaces/InterfaceUserType.md); \}; \}; \} \| \{ `request`: \{ `notifyOnNetworkStatusChange`: `undefined`; `query`: `DocumentNode`; `variables`: `undefined`; \}; `result`: \{ `data`: \{ `createOrganization`: `undefined`; `createSampleOrganization`: \{ `id`: `string`; `name`: `string`; \}; `organizationsConnection`: `undefined`; `user`: `undefined`; \}; \}; \} \| \{ `request`: \{ `notifyOnNetworkStatusChange`: `undefined`; `query`: `DocumentNode`; `variables`: \{ `address`: \{ `city`: `string`; `countryCode`: `string`; `dependentLocality`: `string`; `line1`: `string`; `line2`: `string`; `postalCode`: `string`; `sortingCode`: `string`; `state`: `string`; \}; `description`: `string`; `filter`: `undefined`; `first`: `undefined`; `image`: `string`; `name`: `string`; `orderBy`: `undefined`; `skip`: `undefined`; `userId`: `undefined`; `userRegistrationRequired`: `boolean`; `visibleInSearch`: `boolean`; \}; \}; `result`: \{ `data`: \{ `createOrganization`: \{ `_id`: `string`; \}; `createSampleOrganization`: `undefined`; `organizationsConnection`: `undefined`; `user`: `undefined`; \}; \}; \})[] + +Defined in: [src/screens/OrgList/OrgListMocks.ts:94](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/OrgList/OrgListMocks.ts#L94) diff --git a/docs/docs/auto-docs/screens/OrgList/OrgListMocks/variables/MOCKS_ADMIN.md b/docs/docs/auto-docs/screens/OrgList/OrgListMocks/variables/MOCKS_ADMIN.md new file mode 100644 index 0000000000..6cc377c08c --- /dev/null +++ b/docs/docs/auto-docs/screens/OrgList/OrgListMocks/variables/MOCKS_ADMIN.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [screens/OrgList/OrgListMocks](../README.md) / MOCKS\_ADMIN + +# Variable: MOCKS\_ADMIN + +> `const` **MOCKS\_ADMIN**: (\{ `request`: \{ `notifyOnNetworkStatusChange`: `boolean`; `query`: `DocumentNode`; `variables`: \{ `filter`: `string`; `first`: `number`; `orderBy`: `string`; `skip`: `number`; `userId`: `undefined`; \}; \}; `result`: \{ `data`: \{ `organizationsConnection`: [`InterfaceOrgConnectionInfoType`](../../../../utils/interfaces/interfaces/InterfaceOrgConnectionInfoType.md)[]; `user`: `undefined`; \}; \}; \} \| \{ `request`: \{ `notifyOnNetworkStatusChange`: `undefined`; `query`: `DocumentNode`; `variables`: \{ `filter`: `undefined`; `first`: `undefined`; `orderBy`: `undefined`; `skip`: `undefined`; `userId`: `string`; \}; \}; `result`: \{ `data`: \{ `organizationsConnection`: `undefined`; `user`: [`InterfaceUserType`](../../../../utils/interfaces/interfaces/InterfaceUserType.md); \}; \}; \})[] + +Defined in: [src/screens/OrgList/OrgListMocks.ts:228](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/OrgList/OrgListMocks.ts#L228) diff --git a/docs/docs/auto-docs/screens/OrgList/OrgListMocks/variables/MOCKS_EMPTY.md b/docs/docs/auto-docs/screens/OrgList/OrgListMocks/variables/MOCKS_EMPTY.md new file mode 100644 index 0000000000..d1404b4171 --- /dev/null +++ b/docs/docs/auto-docs/screens/OrgList/OrgListMocks/variables/MOCKS_EMPTY.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [screens/OrgList/OrgListMocks](../README.md) / MOCKS\_EMPTY + +# Variable: MOCKS\_EMPTY + +> `const` **MOCKS\_EMPTY**: (\{ `request`: \{ `notifyOnNetworkStatusChange`: `boolean`; `query`: `DocumentNode`; `variables`: \{ `filter`: `string`; `first`: `number`; `orderBy`: `string`; `skip`: `number`; `userId`: `undefined`; \}; \}; `result`: \{ `data`: \{ `organizationsConnection`: `any`[]; `user`: `undefined`; \}; \}; \} \| \{ `request`: \{ `notifyOnNetworkStatusChange`: `undefined`; `query`: `DocumentNode`; `variables`: \{ `filter`: `undefined`; `first`: `undefined`; `orderBy`: `undefined`; `skip`: `undefined`; `userId`: `string`; \}; \}; `result`: \{ `data`: \{ `organizationsConnection`: `undefined`; `user`: [`InterfaceUserType`](../../../../utils/interfaces/interfaces/InterfaceUserType.md); \}; \}; \})[] + +Defined in: [src/screens/OrgList/OrgListMocks.ts:164](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/OrgList/OrgListMocks.ts#L164) diff --git a/docs/docs/auto-docs/screens/OrgList/OrgListMocks/variables/MOCKS_WITH_ERROR.md b/docs/docs/auto-docs/screens/OrgList/OrgListMocks/variables/MOCKS_WITH_ERROR.md new file mode 100644 index 0000000000..b599b4a5e9 --- /dev/null +++ b/docs/docs/auto-docs/screens/OrgList/OrgListMocks/variables/MOCKS_WITH_ERROR.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [screens/OrgList/OrgListMocks](../README.md) / MOCKS\_WITH\_ERROR + +# Variable: MOCKS\_WITH\_ERROR + +> `const` **MOCKS\_WITH\_ERROR**: (\{ `error`: `undefined`; `request`: \{ `notifyOnNetworkStatusChange`: `boolean`; `query`: `DocumentNode`; `variables`: \{ `filter`: `string`; `first`: `number`; `orderBy`: `string`; `skip`: `number`; `userId`: `undefined`; \}; \}; `result`: \{ `data`: \{ `organizationsConnection`: [`InterfaceOrgConnectionInfoType`](../../../../utils/interfaces/interfaces/InterfaceOrgConnectionInfoType.md)[]; `user`: `undefined`; \}; \}; \} \| \{ `error`: `undefined`; `request`: \{ `notifyOnNetworkStatusChange`: `undefined`; `query`: `DocumentNode`; `variables`: \{ `filter`: `undefined`; `first`: `undefined`; `orderBy`: `undefined`; `skip`: `undefined`; `userId`: `string`; \}; \}; `result`: \{ `data`: \{ `organizationsConnection`: `undefined`; `user`: [`InterfaceUserType`](../../../../utils/interfaces/interfaces/InterfaceUserType.md); \}; \}; \} \| \{ `error`: `Error`; `request`: \{ `notifyOnNetworkStatusChange`: `undefined`; `query`: `DocumentNode`; `variables`: `undefined`; \}; `result`: `undefined`; \})[] + +Defined in: [src/screens/OrgList/OrgListMocks.ts:192](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/OrgList/OrgListMocks.ts#L192) diff --git a/docs/docs/auto-docs/screens/OrgList/OrganizationModal/README.md b/docs/docs/auto-docs/screens/OrgList/OrganizationModal/README.md new file mode 100644 index 0000000000..671448d22a --- /dev/null +++ b/docs/docs/auto-docs/screens/OrgList/OrganizationModal/README.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / screens/OrgList/OrganizationModal + +# screens/OrgList/OrganizationModal + +## Functions + +- [default](functions/default.md) diff --git a/docs/docs/auto-docs/screens/OrgList/OrganizationModal/functions/default.md b/docs/docs/auto-docs/screens/OrgList/OrganizationModal/functions/default.md new file mode 100644 index 0000000000..ded8f11065 --- /dev/null +++ b/docs/docs/auto-docs/screens/OrgList/OrganizationModal/functions/default.md @@ -0,0 +1,33 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [screens/OrgList/OrganizationModal](../README.md) / default + +# Function: default() + +> **default**(`props`, `deprecatedLegacyContext`?): `ReactNode` + +Defined in: [src/screens/OrgList/OrganizationModal.tsx:55](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/OrgList/OrganizationModal.tsx#L55) + +Represents the organization modal component. + +## Parameters + +### props + +`InterfaceOrganizationModalProps` + +### deprecatedLegacyContext? + +`any` + +**Deprecated** + +**See** + +[React Docs](https://legacy.reactjs.org/docs/legacy-context.html#referencing-context-in-lifecycle-methods) + +## Returns + +`ReactNode` diff --git a/docs/docs/auto-docs/screens/OrgPost/OrgPost/README.md b/docs/docs/auto-docs/screens/OrgPost/OrgPost/README.md new file mode 100644 index 0000000000..c6c7b0e66e --- /dev/null +++ b/docs/docs/auto-docs/screens/OrgPost/OrgPost/README.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / screens/OrgPost/OrgPost + +# screens/OrgPost/OrgPost + +## Functions + +- [default](functions/default.md) diff --git a/docs/docs/auto-docs/screens/OrgPost/OrgPost/functions/default.md b/docs/docs/auto-docs/screens/OrgPost/OrgPost/functions/default.md new file mode 100644 index 0000000000..8a8a785d9a --- /dev/null +++ b/docs/docs/auto-docs/screens/OrgPost/OrgPost/functions/default.md @@ -0,0 +1,21 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [screens/OrgPost/OrgPost](../README.md) / default + +# Function: default() + +> **default**(): `JSX.Element` + +Defined in: [src/screens/OrgPost/OrgPost.tsx:51](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/OrgPost/OrgPost.tsx#L51) + +This function is used to display the posts of the organization. It displays the posts in a card format. +It also provides the functionality to create a new post. The user can also sort the posts based on the date of creation. +The user can also search for a post based on the title of the post. + +## Returns + +`JSX.Element` + +JSX.Element which contains the posts of the organization. diff --git a/docs/docs/auto-docs/screens/OrgSettings/OrgSettings.mocks/README.md b/docs/docs/auto-docs/screens/OrgSettings/OrgSettings.mocks/README.md new file mode 100644 index 0000000000..bd267dc545 --- /dev/null +++ b/docs/docs/auto-docs/screens/OrgSettings/OrgSettings.mocks/README.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / screens/OrgSettings/OrgSettings.mocks + +# screens/OrgSettings/OrgSettings.mocks + +## Variables + +- [MOCKS](variables/MOCKS.md) diff --git a/docs/docs/auto-docs/screens/OrgSettings/OrgSettings.mocks/variables/MOCKS.md b/docs/docs/auto-docs/screens/OrgSettings/OrgSettings.mocks/variables/MOCKS.md new file mode 100644 index 0000000000..ea6f886322 --- /dev/null +++ b/docs/docs/auto-docs/screens/OrgSettings/OrgSettings.mocks/variables/MOCKS.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [screens/OrgSettings/OrgSettings.mocks](../README.md) / MOCKS + +# Variable: MOCKS + +> `const` **MOCKS**: (\{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `customFieldsByOrganizationId`: `undefined`; `id`: `string`; `isSampleOrganizationId`: `undefined`; `orderBy`: `undefined`; `organizationId`: `undefined`; `where`: `undefined`; \}; \}; `result`: \{ `data`: \{ `actionItemCategoriesByOrganization`: `undefined`; `agendaItemCategoriesByOrganization`: `undefined`; `customFieldsByOrganization`: `undefined`; `isSampleOrganization`: `undefined`; `organizations`: `object`[]; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `customFieldsByOrganizationId`: `string`; `id`: `undefined`; `isSampleOrganizationId`: `undefined`; `orderBy`: `undefined`; `organizationId`: `undefined`; `where`: `undefined`; \}; \}; `result`: \{ `data`: \{ `actionItemCategoriesByOrganization`: `undefined`; `agendaItemCategoriesByOrganization`: `undefined`; `customFieldsByOrganization`: `object`[]; `isSampleOrganization`: `undefined`; `organizations`: `undefined`; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `customFieldsByOrganizationId`: `undefined`; `id`: `undefined`; `isSampleOrganizationId`: `string`; `orderBy`: `undefined`; `organizationId`: `undefined`; `where`: `undefined`; \}; \}; `result`: \{ `data`: \{ `actionItemCategoriesByOrganization`: `undefined`; `agendaItemCategoriesByOrganization`: `undefined`; `customFieldsByOrganization`: `undefined`; `isSampleOrganization`: `boolean`; `organizations`: `undefined`; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `customFieldsByOrganizationId`: `undefined`; `id`: `undefined`; `isSampleOrganizationId`: `undefined`; `orderBy`: `undefined`; `organizationId`: `string`; `where`: `undefined`; \}; \}; `result`: \{ `data`: \{ `actionItemCategoriesByOrganization`: `undefined`; `agendaItemCategoriesByOrganization`: `any`[]; `customFieldsByOrganization`: `undefined`; `isSampleOrganization`: `undefined`; `organizations`: `undefined`; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `customFieldsByOrganizationId`: `undefined`; `id`: `undefined`; `isSampleOrganizationId`: `undefined`; `orderBy`: `string`; `organizationId`: `string`; `where`: \{ `name_contains`: `string`; \}; \}; \}; `result`: \{ `data`: \{ `actionItemCategoriesByOrganization`: `object`[]; `agendaItemCategoriesByOrganization`: `undefined`; `customFieldsByOrganization`: `undefined`; `isSampleOrganization`: `undefined`; `organizations`: `undefined`; \}; \}; \})[] + +Defined in: [src/screens/OrgSettings/OrgSettings.mocks.ts:9](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/OrgSettings/OrgSettings.mocks.ts#L9) diff --git a/docs/docs/auto-docs/screens/OrgSettings/OrgSettings/README.md b/docs/docs/auto-docs/screens/OrgSettings/OrgSettings/README.md new file mode 100644 index 0000000000..5957704391 --- /dev/null +++ b/docs/docs/auto-docs/screens/OrgSettings/OrgSettings/README.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / screens/OrgSettings/OrgSettings + +# screens/OrgSettings/OrgSettings + +## Functions + +- [default](functions/default.md) diff --git a/docs/docs/auto-docs/screens/OrgSettings/OrgSettings/functions/default.md b/docs/docs/auto-docs/screens/OrgSettings/OrgSettings/functions/default.md new file mode 100644 index 0000000000..1c255326a1 --- /dev/null +++ b/docs/docs/auto-docs/screens/OrgSettings/OrgSettings/functions/default.md @@ -0,0 +1,23 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [screens/OrgSettings/OrgSettings](../README.md) / default + +# Function: default() + +> **default**(): `JSX.Element` + +Defined in: [src/screens/OrgSettings/OrgSettings.tsx:29](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/OrgSettings/OrgSettings.tsx#L29) + +The `orgSettings` component provides a user interface for managing various settings related to an organization. +It includes options for updating organization details, deleting the organization, changing language preferences, +and managing custom fields and action item categories. + +The component renders different settings sections based on the user's selection from the tabs or dropdown menu. + +## Returns + +`JSX.Element` + +The rendered component displaying the organization settings. diff --git a/docs/docs/auto-docs/screens/OrganizationActionItems/ItemDeleteModal/README.md b/docs/docs/auto-docs/screens/OrganizationActionItems/ItemDeleteModal/README.md new file mode 100644 index 0000000000..0ff3318d38 --- /dev/null +++ b/docs/docs/auto-docs/screens/OrganizationActionItems/ItemDeleteModal/README.md @@ -0,0 +1,15 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / screens/OrganizationActionItems/ItemDeleteModal + +# screens/OrganizationActionItems/ItemDeleteModal + +## Interfaces + +- [InterfaceItemDeleteModalProps](interfaces/InterfaceItemDeleteModalProps.md) + +## Functions + +- [default](functions/default.md) diff --git a/docs/docs/auto-docs/screens/OrganizationActionItems/ItemDeleteModal/functions/default.md b/docs/docs/auto-docs/screens/OrganizationActionItems/ItemDeleteModal/functions/default.md new file mode 100644 index 0000000000..1015dbab20 --- /dev/null +++ b/docs/docs/auto-docs/screens/OrganizationActionItems/ItemDeleteModal/functions/default.md @@ -0,0 +1,37 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [screens/OrganizationActionItems/ItemDeleteModal](../README.md) / default + +# Function: default() + +> **default**(`props`, `deprecatedLegacyContext`?): `ReactNode` + +Defined in: [src/screens/OrganizationActionItems/ItemDeleteModal.tsx:26](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/OrganizationActionItems/ItemDeleteModal.tsx#L26) + +A modal component for confirming the deletion of an action item. + +## Parameters + +### props + +[`InterfaceItemDeleteModalProps`](../interfaces/InterfaceItemDeleteModalProps.md) + +The properties passed to the component. + +### deprecatedLegacyContext? + +`any` + +**Deprecated** + +**See** + +[React Docs](https://legacy.reactjs.org/docs/legacy-context.html#referencing-context-in-lifecycle-methods) + +## Returns + +`ReactNode` + +The `ItemDeleteModal` component. diff --git a/docs/docs/auto-docs/screens/OrganizationActionItems/ItemDeleteModal/interfaces/InterfaceItemDeleteModalProps.md b/docs/docs/auto-docs/screens/OrganizationActionItems/ItemDeleteModal/interfaces/InterfaceItemDeleteModalProps.md new file mode 100644 index 0000000000..a9779e91a3 --- /dev/null +++ b/docs/docs/auto-docs/screens/OrganizationActionItems/ItemDeleteModal/interfaces/InterfaceItemDeleteModalProps.md @@ -0,0 +1,51 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [screens/OrganizationActionItems/ItemDeleteModal](../README.md) / InterfaceItemDeleteModalProps + +# Interface: InterfaceItemDeleteModalProps + +Defined in: [src/screens/OrganizationActionItems/ItemDeleteModal.tsx:13](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/OrganizationActionItems/ItemDeleteModal.tsx#L13) + +Props for the `ItemDeleteModal` component. + +## Properties + +### actionItem + +> **actionItem**: [`InterfaceActionItemInfo`](../../../../utils/interfaces/interfaces/InterfaceActionItemInfo.md) + +Defined in: [src/screens/OrganizationActionItems/ItemDeleteModal.tsx:16](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/OrganizationActionItems/ItemDeleteModal.tsx#L16) + +*** + +### actionItemsRefetch() + +> **actionItemsRefetch**: () => `void` + +Defined in: [src/screens/OrganizationActionItems/ItemDeleteModal.tsx:17](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/OrganizationActionItems/ItemDeleteModal.tsx#L17) + +#### Returns + +`void` + +*** + +### hide() + +> **hide**: () => `void` + +Defined in: [src/screens/OrganizationActionItems/ItemDeleteModal.tsx:15](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/OrganizationActionItems/ItemDeleteModal.tsx#L15) + +#### Returns + +`void` + +*** + +### isOpen + +> **isOpen**: `boolean` + +Defined in: [src/screens/OrganizationActionItems/ItemDeleteModal.tsx:14](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/OrganizationActionItems/ItemDeleteModal.tsx#L14) diff --git a/docs/docs/auto-docs/screens/OrganizationActionItems/ItemModal/README.md b/docs/docs/auto-docs/screens/OrganizationActionItems/ItemModal/README.md new file mode 100644 index 0000000000..0f04181068 --- /dev/null +++ b/docs/docs/auto-docs/screens/OrganizationActionItems/ItemModal/README.md @@ -0,0 +1,15 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / screens/OrganizationActionItems/ItemModal + +# screens/OrganizationActionItems/ItemModal + +## Interfaces + +- [InterfaceItemModalProps](interfaces/InterfaceItemModalProps.md) + +## Functions + +- [default](functions/default.md) diff --git a/docs/docs/auto-docs/screens/OrganizationActionItems/ItemModal/functions/default.md b/docs/docs/auto-docs/screens/OrganizationActionItems/ItemModal/functions/default.md new file mode 100644 index 0000000000..9b7498ea12 --- /dev/null +++ b/docs/docs/auto-docs/screens/OrganizationActionItems/ItemModal/functions/default.md @@ -0,0 +1,37 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [screens/OrganizationActionItems/ItemModal](../README.md) / default + +# Function: default() + +> **default**(`props`, `deprecatedLegacyContext`?): `ReactNode` + +Defined in: [src/screens/OrganizationActionItems/ItemModal.tsx:92](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/OrganizationActionItems/ItemModal.tsx#L92) + +A modal component for creating action items. + +## Parameters + +### props + +[`InterfaceItemModalProps`](../interfaces/InterfaceItemModalProps.md) + +The properties passed to the component. + +### deprecatedLegacyContext? + +`any` + +**Deprecated** + +**See** + +[React Docs](https://legacy.reactjs.org/docs/legacy-context.html#referencing-context-in-lifecycle-methods) + +## Returns + +`ReactNode` + +The `ItemModal` component. diff --git a/docs/docs/auto-docs/screens/OrganizationActionItems/ItemModal/interfaces/InterfaceItemModalProps.md b/docs/docs/auto-docs/screens/OrganizationActionItems/ItemModal/interfaces/InterfaceItemModalProps.md new file mode 100644 index 0000000000..cc1f305fcd --- /dev/null +++ b/docs/docs/auto-docs/screens/OrganizationActionItems/ItemModal/interfaces/InterfaceItemModalProps.md @@ -0,0 +1,75 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [screens/OrganizationActionItems/ItemModal](../README.md) / InterfaceItemModalProps + +# Interface: InterfaceItemModalProps + +Defined in: [src/screens/OrganizationActionItems/ItemModal.tsx:52](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/OrganizationActionItems/ItemModal.tsx#L52) + +Props for the `ItemModal` component. + +## Properties + +### actionItem + +> **actionItem**: [`InterfaceActionItemInfo`](../../../../utils/interfaces/interfaces/InterfaceActionItemInfo.md) + +Defined in: [src/screens/OrganizationActionItems/ItemModal.tsx:58](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/OrganizationActionItems/ItemModal.tsx#L58) + +*** + +### actionItemsRefetch() + +> **actionItemsRefetch**: () => `void` + +Defined in: [src/screens/OrganizationActionItems/ItemModal.tsx:57](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/OrganizationActionItems/ItemModal.tsx#L57) + +#### Returns + +`void` + +*** + +### editMode + +> **editMode**: `boolean` + +Defined in: [src/screens/OrganizationActionItems/ItemModal.tsx:59](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/OrganizationActionItems/ItemModal.tsx#L59) + +*** + +### eventId + +> **eventId**: `string` + +Defined in: [src/screens/OrganizationActionItems/ItemModal.tsx:56](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/OrganizationActionItems/ItemModal.tsx#L56) + +*** + +### hide() + +> **hide**: () => `void` + +Defined in: [src/screens/OrganizationActionItems/ItemModal.tsx:54](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/OrganizationActionItems/ItemModal.tsx#L54) + +#### Returns + +`void` + +*** + +### isOpen + +> **isOpen**: `boolean` + +Defined in: [src/screens/OrganizationActionItems/ItemModal.tsx:53](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/OrganizationActionItems/ItemModal.tsx#L53) + +*** + +### orgId + +> **orgId**: `string` + +Defined in: [src/screens/OrganizationActionItems/ItemModal.tsx:55](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/OrganizationActionItems/ItemModal.tsx#L55) diff --git a/docs/docs/auto-docs/screens/OrganizationActionItems/ItemUpdateStatusModal/README.md b/docs/docs/auto-docs/screens/OrganizationActionItems/ItemUpdateStatusModal/README.md new file mode 100644 index 0000000000..411595c919 --- /dev/null +++ b/docs/docs/auto-docs/screens/OrganizationActionItems/ItemUpdateStatusModal/README.md @@ -0,0 +1,15 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / screens/OrganizationActionItems/ItemUpdateStatusModal + +# screens/OrganizationActionItems/ItemUpdateStatusModal + +## Interfaces + +- [InterfaceItemUpdateStatusModalProps](interfaces/InterfaceItemUpdateStatusModalProps.md) + +## Functions + +- [default](functions/default.md) diff --git a/docs/docs/auto-docs/screens/OrganizationActionItems/ItemUpdateStatusModal/functions/default.md b/docs/docs/auto-docs/screens/OrganizationActionItems/ItemUpdateStatusModal/functions/default.md new file mode 100644 index 0000000000..e60d1abcb1 --- /dev/null +++ b/docs/docs/auto-docs/screens/OrganizationActionItems/ItemUpdateStatusModal/functions/default.md @@ -0,0 +1,31 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [screens/OrganizationActionItems/ItemUpdateStatusModal](../README.md) / default + +# Function: default() + +> **default**(`props`, `deprecatedLegacyContext`?): `ReactNode` + +Defined in: [src/screens/OrganizationActionItems/ItemUpdateStatusModal.tsx:18](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/OrganizationActionItems/ItemUpdateStatusModal.tsx#L18) + +## Parameters + +### props + +[`InterfaceItemUpdateStatusModalProps`](../interfaces/InterfaceItemUpdateStatusModalProps.md) + +### deprecatedLegacyContext? + +`any` + +**Deprecated** + +**See** + +[React Docs](https://legacy.reactjs.org/docs/legacy-context.html#referencing-context-in-lifecycle-methods) + +## Returns + +`ReactNode` diff --git a/docs/docs/auto-docs/screens/OrganizationActionItems/ItemUpdateStatusModal/interfaces/InterfaceItemUpdateStatusModalProps.md b/docs/docs/auto-docs/screens/OrganizationActionItems/ItemUpdateStatusModal/interfaces/InterfaceItemUpdateStatusModalProps.md new file mode 100644 index 0000000000..4bf3f90d13 --- /dev/null +++ b/docs/docs/auto-docs/screens/OrganizationActionItems/ItemUpdateStatusModal/interfaces/InterfaceItemUpdateStatusModalProps.md @@ -0,0 +1,49 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [screens/OrganizationActionItems/ItemUpdateStatusModal](../README.md) / InterfaceItemUpdateStatusModalProps + +# Interface: InterfaceItemUpdateStatusModalProps + +Defined in: [src/screens/OrganizationActionItems/ItemUpdateStatusModal.tsx:11](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/OrganizationActionItems/ItemUpdateStatusModal.tsx#L11) + +## Properties + +### actionItem + +> **actionItem**: [`InterfaceActionItemInfo`](../../../../utils/interfaces/interfaces/InterfaceActionItemInfo.md) + +Defined in: [src/screens/OrganizationActionItems/ItemUpdateStatusModal.tsx:15](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/OrganizationActionItems/ItemUpdateStatusModal.tsx#L15) + +*** + +### actionItemsRefetch() + +> **actionItemsRefetch**: () => `void` + +Defined in: [src/screens/OrganizationActionItems/ItemUpdateStatusModal.tsx:14](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/OrganizationActionItems/ItemUpdateStatusModal.tsx#L14) + +#### Returns + +`void` + +*** + +### hide() + +> **hide**: () => `void` + +Defined in: [src/screens/OrganizationActionItems/ItemUpdateStatusModal.tsx:13](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/OrganizationActionItems/ItemUpdateStatusModal.tsx#L13) + +#### Returns + +`void` + +*** + +### isOpen + +> **isOpen**: `boolean` + +Defined in: [src/screens/OrganizationActionItems/ItemUpdateStatusModal.tsx:12](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/OrganizationActionItems/ItemUpdateStatusModal.tsx#L12) diff --git a/docs/docs/auto-docs/screens/OrganizationActionItems/ItemViewModal/README.md b/docs/docs/auto-docs/screens/OrganizationActionItems/ItemViewModal/README.md new file mode 100644 index 0000000000..cf8b41b016 --- /dev/null +++ b/docs/docs/auto-docs/screens/OrganizationActionItems/ItemViewModal/README.md @@ -0,0 +1,15 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / screens/OrganizationActionItems/ItemViewModal + +# screens/OrganizationActionItems/ItemViewModal + +## Interfaces + +- [InterfaceViewModalProps](interfaces/InterfaceViewModalProps.md) + +## Functions + +- [default](functions/default.md) diff --git a/docs/docs/auto-docs/screens/OrganizationActionItems/ItemViewModal/functions/default.md b/docs/docs/auto-docs/screens/OrganizationActionItems/ItemViewModal/functions/default.md new file mode 100644 index 0000000000..9b419f2243 --- /dev/null +++ b/docs/docs/auto-docs/screens/OrganizationActionItems/ItemViewModal/functions/default.md @@ -0,0 +1,38 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [screens/OrganizationActionItems/ItemViewModal](../README.md) / default + +# Function: default() + +> **default**(`props`, `deprecatedLegacyContext`?): `ReactNode` + +Defined in: [src/screens/OrganizationActionItems/ItemViewModal.tsx:32](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/OrganizationActionItems/ItemViewModal.tsx#L32) + +A modal dialog for viewing action item details. + +## Parameters + +### props + +[`InterfaceViewModalProps`](../interfaces/InterfaceViewModalProps.md) + +### deprecatedLegacyContext? + +`any` + +**Deprecated** + +**See** + +[React Docs](https://legacy.reactjs.org/docs/legacy-context.html#referencing-context-in-lifecycle-methods) + +## Returns + +`ReactNode` + +The rendered modal component. + +The `ItemViewModal` component displays all the fields of an action item in a modal dialog. +It includes fields for assignee, assigner, category, pre and post completion notes, assignment date, due date, completion date, and event. diff --git a/docs/docs/auto-docs/screens/OrganizationActionItems/ItemViewModal/interfaces/InterfaceViewModalProps.md b/docs/docs/auto-docs/screens/OrganizationActionItems/ItemViewModal/interfaces/InterfaceViewModalProps.md new file mode 100644 index 0000000000..681783a324 --- /dev/null +++ b/docs/docs/auto-docs/screens/OrganizationActionItems/ItemViewModal/interfaces/InterfaceViewModalProps.md @@ -0,0 +1,37 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [screens/OrganizationActionItems/ItemViewModal](../README.md) / InterfaceViewModalProps + +# Interface: InterfaceViewModalProps + +Defined in: [src/screens/OrganizationActionItems/ItemViewModal.tsx:13](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/OrganizationActionItems/ItemViewModal.tsx#L13) + +## Properties + +### hide() + +> **hide**: () => `void` + +Defined in: [src/screens/OrganizationActionItems/ItemViewModal.tsx:15](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/OrganizationActionItems/ItemViewModal.tsx#L15) + +#### Returns + +`void` + +*** + +### isOpen + +> **isOpen**: `boolean` + +Defined in: [src/screens/OrganizationActionItems/ItemViewModal.tsx:14](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/OrganizationActionItems/ItemViewModal.tsx#L14) + +*** + +### item + +> **item**: [`InterfaceActionItemInfo`](../../../../utils/interfaces/interfaces/InterfaceActionItemInfo.md) + +Defined in: [src/screens/OrganizationActionItems/ItemViewModal.tsx:16](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/OrganizationActionItems/ItemViewModal.tsx#L16) diff --git a/docs/docs/auto-docs/screens/OrganizationActionItems/OrganizationActionItem.mocks/README.md b/docs/docs/auto-docs/screens/OrganizationActionItems/OrganizationActionItem.mocks/README.md new file mode 100644 index 0000000000..876af623c0 --- /dev/null +++ b/docs/docs/auto-docs/screens/OrganizationActionItems/OrganizationActionItem.mocks/README.md @@ -0,0 +1,13 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / screens/OrganizationActionItems/OrganizationActionItem.mocks + +# screens/OrganizationActionItems/OrganizationActionItem.mocks + +## Variables + +- [MOCKS](variables/MOCKS.md) +- [MOCKS\_EMPTY](variables/MOCKS_EMPTY.md) +- [MOCKS\_ERROR](variables/MOCKS_ERROR.md) diff --git a/docs/docs/auto-docs/screens/OrganizationActionItems/OrganizationActionItem.mocks/variables/MOCKS.md b/docs/docs/auto-docs/screens/OrganizationActionItems/OrganizationActionItem.mocks/variables/MOCKS.md new file mode 100644 index 0000000000..71050d4528 --- /dev/null +++ b/docs/docs/auto-docs/screens/OrganizationActionItems/OrganizationActionItem.mocks/variables/MOCKS.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [screens/OrganizationActionItems/OrganizationActionItem.mocks](../README.md) / MOCKS + +# Variable: MOCKS + +> `const` **MOCKS**: (\{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `id`: `string`; \}; \}; `result`: \{ `data`: \{ `organizations`: `object`[]; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `organizationId`: `string`; `where`: \{ `is_disabled`: `boolean`; \}; \}; \}; `result`: \{ `data`: \{ `actionItemCategoriesByOrganization`: (\{ `_id`: `string`; `createdAt`: `string`; `creator`: \{ `_id`: `string`; `firstName`: `string`; `lastName`: `string`; \}; `isDisabled`: `boolean`; `name`: `string`; \} \| \{ `_id`: `undefined`; `createdAt`: `string`; `creator`: \{ `_id`: `undefined`; `firstName`: `string`; `lastName`: `string`; \}; `isDisabled`: `boolean`; `name`: `string`; \})[]; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `where`: \{ `eventId`: `string`; `hasAccepted`: `boolean`; \}; \}; \}; `result`: \{ `data`: \{ `getEventVolunteers`: (\{ `_id`: `string`; `assignments`: `any`[]; `groups`: `object`[]; `hasAccepted`: `boolean`; `hoursVolunteered`: `number`; `user`: \{ `_id`: `string`; `firstName`: `string`; `image`: `any`; `lastName`: `string`; \}; \} \| \{ `_id`: `undefined`; `assignments`: `any`[]; `groups`: `any`[]; `hasAccepted`: `boolean`; `hoursVolunteered`: `number`; `user`: \{ `_id`: `undefined`; `firstName`: `string`; `image`: `any`; `lastName`: `string`; \}; \})[]; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `where`: \{ `eventId`: `undefined`; `hasAccepted`: `boolean`; \}; \}; \}; `result`: \{ `data`: \{ `getEventVolunteers`: `any`[]; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `where`: \{ `eventId`: `string`; \}; \}; \}; `result`: \{ `data`: \{ `getEventVolunteerGroups`: (\{ `_id`: `string`; `assignments`: `any`[]; `createdAt`: `string`; `creator`: \{ `_id`: `string`; `firstName`: `string`; `image`: `any`; `lastName`: `string`; \}; `description`: `string`; `event`: \{ `_id`: `string`; \}; `leader`: \{ `_id`: `string`; `firstName`: `string`; `image`: `any`; `lastName`: `string`; \}; `name`: `string`; `volunteers`: `object`[]; `volunteersRequired`: `number`; \} \| \{ `_id`: `undefined`; `assignments`: `any`[]; `createdAt`: `string`; `creator`: \{ `_id`: `string`; `firstName`: `string`; `image`: `any`; `lastName`: `string`; \}; `description`: `string`; `event`: \{ `_id`: `string`; \}; `leader`: \{ `_id`: `string`; `firstName`: `string`; `image`: `any`; `lastName`: `string`; \}; `name`: `string`; `volunteers`: `any`[]; `volunteersRequired`: `number`; \})[]; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `actionItemCategoryId`: `undefined`; `actionItemId`: `undefined`; `allottedHours`: `undefined`; `assigneeId`: `undefined`; `assigneeType`: `undefined`; `dDate`: `undefined`; `dueDate`: `undefined`; `eventId`: `string`; `isCompleted`: `undefined`; `orderBy`: `any`; `organizationId`: `string`; `postCompletionNotes`: `undefined`; `preCompletionNotes`: `undefined`; `where`: \{ `assigneeName`: `undefined`; `categoryName`: `string`; `is_completed`: `undefined`; \}; \}; \}; `result`: \{ `data`: \{ `actionItemsByOrganization`: [`InterfaceActionItemInfo`](../../../../utils/interfaces/interfaces/InterfaceActionItemInfo.md)[]; `createActionItem`: `undefined`; `removeActionItem`: `undefined`; `updateActionItem`: `undefined`; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `actionItemCategoryId`: `undefined`; `actionItemId`: `undefined`; `allottedHours`: `undefined`; `assigneeId`: `undefined`; `assigneeType`: `undefined`; `dDate`: `undefined`; `dueDate`: `undefined`; `eventId`: `string`; `isCompleted`: `undefined`; `orderBy`: `string`; `organizationId`: `string`; `postCompletionNotes`: `undefined`; `preCompletionNotes`: `undefined`; `where`: \{ `assigneeName`: `string`; `categoryName`: `undefined`; `is_completed`: `undefined`; \}; \}; \}; `result`: \{ `data`: \{ `actionItemsByOrganization`: [`InterfaceActionItemInfo`](../../../../utils/interfaces/interfaces/InterfaceActionItemInfo.md)[]; `createActionItem`: `undefined`; `removeActionItem`: `undefined`; `updateActionItem`: `undefined`; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `actionItemCategoryId`: `undefined`; `actionItemId`: `undefined`; `allottedHours`: `undefined`; `assigneeId`: `undefined`; `assigneeType`: `undefined`; `dDate`: `undefined`; `dueDate`: `undefined`; `eventId`: `string`; `isCompleted`: `undefined`; `orderBy`: `any`; `organizationId`: `string`; `postCompletionNotes`: `undefined`; `preCompletionNotes`: `undefined`; `where`: \{ `assigneeName`: `string`; `categoryName`: `undefined`; `is_completed`: `boolean`; \}; \}; \}; `result`: \{ `data`: \{ `actionItemsByOrganization`: [`InterfaceActionItemInfo`](../../../../utils/interfaces/interfaces/InterfaceActionItemInfo.md)[]; `createActionItem`: `undefined`; `removeActionItem`: `undefined`; `updateActionItem`: `undefined`; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `actionItemCategoryId`: `undefined`; `actionItemId`: `string`; `allottedHours`: `undefined`; `assigneeId`: `undefined`; `assigneeType`: `undefined`; `dDate`: `undefined`; `dueDate`: `undefined`; `eventId`: `undefined`; `isCompleted`: `undefined`; `orderBy`: `undefined`; `organizationId`: `undefined`; `postCompletionNotes`: `undefined`; `preCompletionNotes`: `undefined`; `where`: `undefined`; \}; \}; `result`: \{ `data`: \{ `actionItemsByOrganization`: `undefined`; `createActionItem`: `undefined`; `removeActionItem`: \{ `_id`: `string`; \}; `updateActionItem`: `undefined`; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `actionItemCategoryId`: `undefined`; `actionItemId`: `string`; `allottedHours`: `undefined`; `assigneeId`: `string`; `assigneeType`: `string`; `dDate`: `undefined`; `dueDate`: `undefined`; `eventId`: `undefined`; `isCompleted`: `boolean`; `orderBy`: `undefined`; `organizationId`: `undefined`; `postCompletionNotes`: `string`; `preCompletionNotes`: `undefined`; `where`: `undefined`; \}; \}; `result`: \{ `data`: \{ `actionItemsByOrganization`: `undefined`; `createActionItem`: `undefined`; `removeActionItem`: `undefined`; `updateActionItem`: \{ `_id`: `string`; \}; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `actionItemCategoryId`: `string`; `actionItemId`: `string`; `allottedHours`: `number`; `assigneeId`: `string`; `assigneeType`: `string`; `dDate`: `undefined`; `dueDate`: `undefined`; `eventId`: `undefined`; `isCompleted`: `undefined`; `orderBy`: `undefined`; `organizationId`: `undefined`; `postCompletionNotes`: `string`; `preCompletionNotes`: `undefined`; `where`: `undefined`; \}; \}; `result`: \{ `data`: \{ `actionItemsByOrganization`: `undefined`; `createActionItem`: `undefined`; `removeActionItem`: `undefined`; `updateActionItem`: \{ `_id`: `string`; \}; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `actionItemCategoryId`: `string`; `actionItemId`: `string`; `allottedHours`: `number`; `assigneeId`: `string`; `assigneeType`: `string`; `dDate`: `undefined`; `dueDate`: `string`; `eventId`: `undefined`; `isCompleted`: `undefined`; `orderBy`: `undefined`; `organizationId`: `undefined`; `postCompletionNotes`: `undefined`; `preCompletionNotes`: `string`; `where`: `undefined`; \}; \}; `result`: \{ `data`: \{ `actionItemsByOrganization`: `undefined`; `createActionItem`: `undefined`; `removeActionItem`: `undefined`; `updateActionItem`: \{ `_id`: `string`; \}; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `actionItemCategoryId`: `undefined`; `actionItemId`: `string`; `allottedHours`: `undefined`; `assigneeId`: `string`; `assigneeType`: `undefined`; `dDate`: `undefined`; `dueDate`: `undefined`; `eventId`: `undefined`; `isCompleted`: `boolean`; `orderBy`: `undefined`; `organizationId`: `undefined`; `postCompletionNotes`: `string`; `preCompletionNotes`: `undefined`; `where`: `undefined`; \}; \}; `result`: \{ `data`: \{ `actionItemsByOrganization`: `undefined`; `createActionItem`: `undefined`; `removeActionItem`: `undefined`; `updateActionItem`: \{ `_id`: `string`; \}; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `actionItemCategoryId`: `string`; `actionItemId`: `string`; `allottedHours`: `number`; `assigneeId`: `string`; `assigneeType`: `string`; `dDate`: `undefined`; `dueDate`: `undefined`; `eventId`: `undefined`; `isCompleted`: `undefined`; `orderBy`: `undefined`; `organizationId`: `undefined`; `postCompletionNotes`: `undefined`; `preCompletionNotes`: `undefined`; `where`: `undefined`; \}; \}; `result`: \{ `data`: \{ `actionItemsByOrganization`: `undefined`; `createActionItem`: `undefined`; `removeActionItem`: `undefined`; `updateActionItem`: \{ `_id`: `string`; \}; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `actionItemCategoryId`: `string`; `actionItemId`: `undefined`; `allottedHours`: `number`; `assigneeId`: `string`; `assigneeType`: `string`; `dDate`: `string`; `dueDate`: `undefined`; `eventId`: `undefined`; `isCompleted`: `undefined`; `orderBy`: `undefined`; `organizationId`: `undefined`; `postCompletionNotes`: `undefined`; `preCompletionNotes`: `string`; `where`: `undefined`; \}; \}; `result`: \{ `data`: \{ `actionItemsByOrganization`: `undefined`; `createActionItem`: \{ `_id`: `string`; \}; `removeActionItem`: `undefined`; `updateActionItem`: `undefined`; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `actionItemCategoryId`: `string`; `actionItemId`: `undefined`; `allottedHours`: `number`; `assigneeId`: `string`; `assigneeType`: `string`; `dDate`: `string`; `dueDate`: `undefined`; `eventId`: `string`; `isCompleted`: `undefined`; `orderBy`: `undefined`; `organizationId`: `undefined`; `postCompletionNotes`: `undefined`; `preCompletionNotes`: `string`; `where`: `undefined`; \}; \}; `result`: \{ `data`: \{ `actionItemsByOrganization`: `undefined`; `createActionItem`: \{ `_id`: `string`; \}; `removeActionItem`: `undefined`; `updateActionItem`: `undefined`; \}; \}; \})[] + +Defined in: [src/screens/OrganizationActionItems/OrganizationActionItem.mocks.ts:21](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/OrganizationActionItems/OrganizationActionItem.mocks.ts#L21) diff --git a/docs/docs/auto-docs/screens/OrganizationActionItems/OrganizationActionItem.mocks/variables/MOCKS_EMPTY.md b/docs/docs/auto-docs/screens/OrganizationActionItems/OrganizationActionItem.mocks/variables/MOCKS_EMPTY.md new file mode 100644 index 0000000000..eb85951b06 --- /dev/null +++ b/docs/docs/auto-docs/screens/OrganizationActionItems/OrganizationActionItem.mocks/variables/MOCKS_EMPTY.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [screens/OrganizationActionItems/OrganizationActionItem.mocks](../README.md) / MOCKS\_EMPTY + +# Variable: MOCKS\_EMPTY + +> `const` **MOCKS\_EMPTY**: (\{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `id`: `string`; \}; \}; `result`: \{ `data`: \{ `organizations`: `object`[]; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `organizationId`: `string`; `where`: \{ `is_disabled`: `boolean`; \}; \}; \}; `result`: \{ `data`: \{ `actionItemCategoriesByOrganization`: (\{ `_id`: `string`; `createdAt`: `string`; `creator`: \{ `_id`: `string`; `firstName`: `string`; `lastName`: `string`; \}; `isDisabled`: `boolean`; `name`: `string`; \} \| \{ `_id`: `undefined`; `createdAt`: `string`; `creator`: \{ `_id`: `undefined`; `firstName`: `string`; `lastName`: `string`; \}; `isDisabled`: `boolean`; `name`: `string`; \})[]; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `where`: \{ `eventId`: `string`; `hasAccepted`: `boolean`; \}; \}; \}; `result`: \{ `data`: \{ `getEventVolunteers`: (\{ `_id`: `string`; `assignments`: `any`[]; `groups`: `object`[]; `hasAccepted`: `boolean`; `hoursVolunteered`: `number`; `user`: \{ `_id`: `string`; `firstName`: `string`; `image`: `any`; `lastName`: `string`; \}; \} \| \{ `_id`: `undefined`; `assignments`: `any`[]; `groups`: `any`[]; `hasAccepted`: `boolean`; `hoursVolunteered`: `number`; `user`: \{ `_id`: `undefined`; `firstName`: `string`; `image`: `any`; `lastName`: `string`; \}; \})[]; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `where`: \{ `eventId`: `undefined`; `hasAccepted`: `boolean`; \}; \}; \}; `result`: \{ `data`: \{ `getEventVolunteers`: `any`[]; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `where`: \{ `eventId`: `string`; \}; \}; \}; `result`: \{ `data`: \{ `getEventVolunteerGroups`: (\{ `_id`: `string`; `assignments`: `any`[]; `createdAt`: `string`; `creator`: \{ `_id`: `string`; `firstName`: `string`; `image`: `any`; `lastName`: `string`; \}; `description`: `string`; `event`: \{ `_id`: `string`; \}; `leader`: \{ `_id`: `string`; `firstName`: `string`; `image`: `any`; `lastName`: `string`; \}; `name`: `string`; `volunteers`: `object`[]; `volunteersRequired`: `number`; \} \| \{ `_id`: `undefined`; `assignments`: `any`[]; `createdAt`: `string`; `creator`: \{ `_id`: `string`; `firstName`: `string`; `image`: `any`; `lastName`: `string`; \}; `description`: `string`; `event`: \{ `_id`: `string`; \}; `leader`: \{ `_id`: `string`; `firstName`: `string`; `image`: `any`; `lastName`: `string`; \}; `name`: `string`; `volunteers`: `any`[]; `volunteersRequired`: `number`; \})[]; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `eventId`: `string`; `orderBy`: `any`; `organizationId`: `string`; `where`: \{ `assigneeName`: `string`; \}; \}; \}; `result`: \{ `data`: \{ `actionItemsByOrganization`: `any`[]; \}; \}; \})[] + +Defined in: [src/screens/OrganizationActionItems/OrganizationActionItem.mocks.ts:480](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/OrganizationActionItems/OrganizationActionItem.mocks.ts#L480) diff --git a/docs/docs/auto-docs/screens/OrganizationActionItems/OrganizationActionItem.mocks/variables/MOCKS_ERROR.md b/docs/docs/auto-docs/screens/OrganizationActionItems/OrganizationActionItem.mocks/variables/MOCKS_ERROR.md new file mode 100644 index 0000000000..fb197a5bdb --- /dev/null +++ b/docs/docs/auto-docs/screens/OrganizationActionItems/OrganizationActionItem.mocks/variables/MOCKS_ERROR.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [screens/OrganizationActionItems/OrganizationActionItem.mocks](../README.md) / MOCKS\_ERROR + +# Variable: MOCKS\_ERROR + +> `const` **MOCKS\_ERROR**: (\{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `id`: `string`; \}; \}; `result`: \{ `data`: \{ `organizations`: `object`[]; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `organizationId`: `string`; `where`: \{ `is_disabled`: `boolean`; \}; \}; \}; `result`: \{ `data`: \{ `actionItemCategoriesByOrganization`: (\{ `_id`: `string`; `createdAt`: `string`; `creator`: \{ `_id`: `string`; `firstName`: `string`; `lastName`: `string`; \}; `isDisabled`: `boolean`; `name`: `string`; \} \| \{ `_id`: `undefined`; `createdAt`: `string`; `creator`: \{ `_id`: `undefined`; `firstName`: `string`; `lastName`: `string`; \}; `isDisabled`: `boolean`; `name`: `string`; \})[]; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `where`: \{ `eventId`: `string`; `hasAccepted`: `boolean`; \}; \}; \}; `result`: \{ `data`: \{ `getEventVolunteers`: (\{ `_id`: `string`; `assignments`: `any`[]; `groups`: `object`[]; `hasAccepted`: `boolean`; `hoursVolunteered`: `number`; `user`: \{ `_id`: `string`; `firstName`: `string`; `image`: `any`; `lastName`: `string`; \}; \} \| \{ `_id`: `undefined`; `assignments`: `any`[]; `groups`: `any`[]; `hasAccepted`: `boolean`; `hoursVolunteered`: `number`; `user`: \{ `_id`: `undefined`; `firstName`: `string`; `image`: `any`; `lastName`: `string`; \}; \})[]; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `where`: \{ `eventId`: `undefined`; `hasAccepted`: `boolean`; \}; \}; \}; `result`: \{ `data`: \{ `getEventVolunteers`: `any`[]; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `where`: \{ `eventId`: `string`; \}; \}; \}; `result`: \{ `data`: \{ `getEventVolunteerGroups`: (\{ `_id`: `string`; `assignments`: `any`[]; `createdAt`: `string`; `creator`: \{ `_id`: `string`; `firstName`: `string`; `image`: `any`; `lastName`: `string`; \}; `description`: `string`; `event`: \{ `_id`: `string`; \}; `leader`: \{ `_id`: `string`; `firstName`: `string`; `image`: `any`; `lastName`: `string`; \}; `name`: `string`; `volunteers`: `object`[]; `volunteersRequired`: `number`; \} \| \{ `_id`: `undefined`; `assignments`: `any`[]; `createdAt`: `string`; `creator`: \{ `_id`: `string`; `firstName`: `string`; `image`: `any`; `lastName`: `string`; \}; `description`: `string`; `event`: \{ `_id`: `string`; \}; `leader`: \{ `_id`: `string`; `firstName`: `string`; `image`: `any`; `lastName`: `string`; \}; `name`: `string`; `volunteers`: `any`[]; `volunteersRequired`: `number`; \})[]; \}; \}; \} \| \{ `error`: `Error`; `request`: \{ `query`: `DocumentNode`; `variables`: \{ `actionItemId`: `undefined`; `allottedHours`: `undefined`; `assigneeId`: `undefined`; `assigneeType`: `undefined`; `dDate`: `undefined`; `eventId`: `string`; `isCompleted`: `undefined`; `orderBy`: `any`; `organizationId`: `string`; `postCompletionNotes`: `undefined`; `preCompletionNotes`: `undefined`; `where`: \{ `assigneeName`: `string`; \}; \}; \}; \} \| \{ `error`: `Error`; `request`: \{ `query`: `DocumentNode`; `variables`: \{ `actionItemId`: `string`; `allottedHours`: `undefined`; `assigneeId`: `undefined`; `assigneeType`: `undefined`; `dDate`: `undefined`; `eventId`: `undefined`; `isCompleted`: `undefined`; `orderBy`: `undefined`; `organizationId`: `undefined`; `postCompletionNotes`: `undefined`; `preCompletionNotes`: `undefined`; `where`: `undefined`; \}; \}; \} \| \{ `error`: `Error`; `request`: \{ `query`: `DocumentNode`; `variables`: \{ `actionItemId`: `string`; `allottedHours`: `undefined`; `assigneeId`: `string`; `assigneeType`: `string`; `dDate`: `undefined`; `eventId`: `undefined`; `isCompleted`: `boolean`; `orderBy`: `undefined`; `organizationId`: `undefined`; `postCompletionNotes`: `string`; `preCompletionNotes`: `undefined`; `where`: `undefined`; \}; \}; \} \| \{ `error`: `Error`; `request`: \{ `query`: `DocumentNode`; `variables`: \{ `actionItemId`: `undefined`; `allottedHours`: `any`; `assigneeId`: `string`; `assigneeType`: `string`; `dDate`: `string`; `eventId`: `undefined`; `isCompleted`: `undefined`; `orderBy`: `undefined`; `organizationId`: `undefined`; `postCompletionNotes`: `undefined`; `preCompletionNotes`: `string`; `where`: `undefined`; \}; \}; \} \| \{ `error`: `Error`; `request`: \{ `query`: `DocumentNode`; `variables`: \{ `actionItemId`: `string`; `allottedHours`: `undefined`; `assigneeId`: `string`; `assigneeType`: `string`; `dDate`: `undefined`; `eventId`: `undefined`; `isCompleted`: `undefined`; `orderBy`: `undefined`; `organizationId`: `undefined`; `postCompletionNotes`: `string`; `preCompletionNotes`: `undefined`; `where`: `undefined`; \}; \}; \})[] + +Defined in: [src/screens/OrganizationActionItems/OrganizationActionItem.mocks.ts:412](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/OrganizationActionItems/OrganizationActionItem.mocks.ts#L412) diff --git a/docs/docs/auto-docs/screens/OrganizationActionItems/OrganizationActionItems/README.md b/docs/docs/auto-docs/screens/OrganizationActionItems/OrganizationActionItems/README.md new file mode 100644 index 0000000000..4fd3908409 --- /dev/null +++ b/docs/docs/auto-docs/screens/OrganizationActionItems/OrganizationActionItems/README.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / screens/OrganizationActionItems/OrganizationActionItems + +# screens/OrganizationActionItems/OrganizationActionItems + +## Functions + +- [default](functions/default.md) diff --git a/docs/docs/auto-docs/screens/OrganizationActionItems/OrganizationActionItems/functions/default.md b/docs/docs/auto-docs/screens/OrganizationActionItems/OrganizationActionItems/functions/default.md new file mode 100644 index 0000000000..d909f097fd --- /dev/null +++ b/docs/docs/auto-docs/screens/OrganizationActionItems/OrganizationActionItems/functions/default.md @@ -0,0 +1,21 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [screens/OrganizationActionItems/OrganizationActionItems](../README.md) / default + +# Function: default() + +> **default**(): `JSX.Element` + +Defined in: [src/screens/OrganizationActionItems/OrganizationActionItems.tsx:51](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/OrganizationActionItems/OrganizationActionItems.tsx#L51) + +Component for managing and displaying action items within an organization. + +This component allows users to view, filter, sort, and create action items. It also handles fetching and displaying related data such as action item categories and members. + +## Returns + +`JSX.Element` + +The rendered component. diff --git a/docs/docs/auto-docs/screens/OrganizationActionItems/testObject.mocks/README.md b/docs/docs/auto-docs/screens/OrganizationActionItems/testObject.mocks/README.md new file mode 100644 index 0000000000..4bee2792a0 --- /dev/null +++ b/docs/docs/auto-docs/screens/OrganizationActionItems/testObject.mocks/README.md @@ -0,0 +1,22 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / screens/OrganizationActionItems/testObject.mocks + +# screens/OrganizationActionItems/testObject.mocks + +## Variables + +- [actionItemCategory1](variables/actionItemCategory1.md) +- [actionItemCategory2](variables/actionItemCategory2.md) +- [actionItemCategoryListQuery](variables/actionItemCategoryListQuery.md) +- [baseActionItem](variables/baseActionItem.md) +- [groupListQuery](variables/groupListQuery.md) +- [itemWithGroup](variables/itemWithGroup.md) +- [itemWithUser](variables/itemWithUser.md) +- [itemWithUserImage](variables/itemWithUserImage.md) +- [itemWithVolunteer](variables/itemWithVolunteer.md) +- [itemWithVolunteerImage](variables/itemWithVolunteerImage.md) +- [memberListQuery](variables/memberListQuery.md) +- [volunteerListQuery](variables/volunteerListQuery.md) diff --git a/docs/docs/auto-docs/screens/OrganizationActionItems/testObject.mocks/variables/actionItemCategory1.md b/docs/docs/auto-docs/screens/OrganizationActionItems/testObject.mocks/variables/actionItemCategory1.md new file mode 100644 index 0000000000..5012ae631c --- /dev/null +++ b/docs/docs/auto-docs/screens/OrganizationActionItems/testObject.mocks/variables/actionItemCategory1.md @@ -0,0 +1,21 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [screens/OrganizationActionItems/testObject.mocks](../README.md) / actionItemCategory1 + +# Variable: actionItemCategory1 + +> `const` **actionItemCategory1**: `object` + +Defined in: [src/screens/OrganizationActionItems/testObject.mocks.ts:11](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/OrganizationActionItems/testObject.mocks.ts#L11) + +## Type declaration + +### \_id + +> **\_id**: `string` = `'actionItemCategoryId1'` + +### name + +> **name**: `string` = `'Category 1'` diff --git a/docs/docs/auto-docs/screens/OrganizationActionItems/testObject.mocks/variables/actionItemCategory2.md b/docs/docs/auto-docs/screens/OrganizationActionItems/testObject.mocks/variables/actionItemCategory2.md new file mode 100644 index 0000000000..ab1a879baa --- /dev/null +++ b/docs/docs/auto-docs/screens/OrganizationActionItems/testObject.mocks/variables/actionItemCategory2.md @@ -0,0 +1,21 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [screens/OrganizationActionItems/testObject.mocks](../README.md) / actionItemCategory2 + +# Variable: actionItemCategory2 + +> `const` **actionItemCategory2**: `object` + +Defined in: [src/screens/OrganizationActionItems/testObject.mocks.ts:16](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/OrganizationActionItems/testObject.mocks.ts#L16) + +## Type declaration + +### \_id + +> **\_id**: `string` = `'actionItemCategoryId2'` + +### name + +> **name**: `string` = `'Category 2'` diff --git a/docs/docs/auto-docs/screens/OrganizationActionItems/testObject.mocks/variables/actionItemCategoryListQuery.md b/docs/docs/auto-docs/screens/OrganizationActionItems/testObject.mocks/variables/actionItemCategoryListQuery.md new file mode 100644 index 0000000000..5c7d9b2cb4 --- /dev/null +++ b/docs/docs/auto-docs/screens/OrganizationActionItems/testObject.mocks/variables/actionItemCategoryListQuery.md @@ -0,0 +1,49 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [screens/OrganizationActionItems/testObject.mocks](../README.md) / actionItemCategoryListQuery + +# Variable: actionItemCategoryListQuery + +> `const` **actionItemCategoryListQuery**: `object` + +Defined in: [src/screens/OrganizationActionItems/testObject.mocks.ts:408](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/OrganizationActionItems/testObject.mocks.ts#L408) + +## Type declaration + +### request + +> **request**: `object` + +#### request.query + +> **query**: `DocumentNode` = `ACTION_ITEM_CATEGORY_LIST` + +#### request.variables + +> **variables**: `object` + +#### request.variables.organizationId + +> **organizationId**: `string` = `'orgId'` + +#### request.variables.where + +> **where**: `object` + +#### request.variables.where.is\_disabled + +> **is\_disabled**: `boolean` = `false` + +### result + +> **result**: `object` + +#### result.data + +> **data**: `object` + +#### result.data.actionItemCategoriesByOrganization + +> **actionItemCategoriesByOrganization**: (\{ `_id`: `string`; `createdAt`: `string`; `creator`: \{ `_id`: `string`; `firstName`: `string`; `lastName`: `string`; \}; `isDisabled`: `boolean`; `name`: `string`; \} \| \{ `_id`: `undefined`; `createdAt`: `string`; `creator`: \{ `_id`: `undefined`; `firstName`: `string`; `lastName`: `string`; \}; `isDisabled`: `boolean`; `name`: `string`; \})[] diff --git a/docs/docs/auto-docs/screens/OrganizationActionItems/testObject.mocks/variables/baseActionItem.md b/docs/docs/auto-docs/screens/OrganizationActionItems/testObject.mocks/variables/baseActionItem.md new file mode 100644 index 0000000000..20471a9ac2 --- /dev/null +++ b/docs/docs/auto-docs/screens/OrganizationActionItems/testObject.mocks/variables/baseActionItem.md @@ -0,0 +1,57 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [screens/OrganizationActionItems/testObject.mocks](../README.md) / baseActionItem + +# Variable: baseActionItem + +> `const` **baseActionItem**: `object` + +Defined in: [src/screens/OrganizationActionItems/testObject.mocks.ts:21](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/OrganizationActionItems/testObject.mocks.ts#L21) + +## Type declaration + +### assigner + +> **assigner**: `object` + +#### assigner.\_id + +> **\_id**: `string` = `'userId'` + +#### assigner.firstName + +> **firstName**: `string` = `'Wilt'` + +#### assigner.image + +> **image**: `any` = `null` + +#### assigner.lastName + +> **lastName**: `string` = `'Shepherd'` + +### creator + +> **creator**: `object` + +#### creator.\_\_typename + +> **\_\_typename**: `string` = `'User'` + +#### creator.\_id + +> **\_id**: `string` = `'userId'` + +#### creator.firstName + +> **firstName**: `string` = `'Wilt'` + +#### creator.image + +> **image**: `any` = `null` + +#### creator.lastName + +> **lastName**: `string` = `'Shepherd'` diff --git a/docs/docs/auto-docs/screens/OrganizationActionItems/testObject.mocks/variables/groupListQuery.md b/docs/docs/auto-docs/screens/OrganizationActionItems/testObject.mocks/variables/groupListQuery.md new file mode 100644 index 0000000000..10a8b9a0b0 --- /dev/null +++ b/docs/docs/auto-docs/screens/OrganizationActionItems/testObject.mocks/variables/groupListQuery.md @@ -0,0 +1,45 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [screens/OrganizationActionItems/testObject.mocks](../README.md) / groupListQuery + +# Variable: groupListQuery + +> `const` **groupListQuery**: `object`[] + +Defined in: [src/screens/OrganizationActionItems/testObject.mocks.ts:301](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/OrganizationActionItems/testObject.mocks.ts#L301) + +## Type declaration + +### request + +> **request**: `object` + +#### request.query + +> **query**: `DocumentNode` = `EVENT_VOLUNTEER_GROUP_LIST` + +#### request.variables + +> **variables**: `object` + +#### request.variables.where + +> **where**: `object` + +#### request.variables.where.eventId + +> **eventId**: `string` = `'eventId'` + +### result + +> **result**: `object` + +#### result.data + +> **data**: `object` + +#### result.data.getEventVolunteerGroups + +> **getEventVolunteerGroups**: (\{ `_id`: `string`; `assignments`: `any`[]; `createdAt`: `string`; `creator`: \{ `_id`: `string`; `firstName`: `string`; `image`: `any`; `lastName`: `string`; \}; `description`: `string`; `event`: \{ `_id`: `string`; \}; `leader`: \{ `_id`: `string`; `firstName`: `string`; `image`: `any`; `lastName`: `string`; \}; `name`: `string`; `volunteers`: `object`[]; `volunteersRequired`: `number`; \} \| \{ `_id`: `undefined`; `assignments`: `any`[]; `createdAt`: `string`; `creator`: \{ `_id`: `string`; `firstName`: `string`; `image`: `any`; `lastName`: `string`; \}; `description`: `string`; `event`: \{ `_id`: `string`; \}; `leader`: \{ `_id`: `string`; `firstName`: `string`; `image`: `any`; `lastName`: `string`; \}; `name`: `string`; `volunteers`: `any`[]; `volunteersRequired`: `number`; \})[] diff --git a/docs/docs/auto-docs/screens/OrganizationActionItems/testObject.mocks/variables/itemWithGroup.md b/docs/docs/auto-docs/screens/OrganizationActionItems/testObject.mocks/variables/itemWithGroup.md new file mode 100644 index 0000000000..900ff0246c --- /dev/null +++ b/docs/docs/auto-docs/screens/OrganizationActionItems/testObject.mocks/variables/itemWithGroup.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [screens/OrganizationActionItems/testObject.mocks](../README.md) / itemWithGroup + +# Variable: itemWithGroup + +> `const` **itemWithGroup**: [`InterfaceActionItemInfo`](../../../../utils/interfaces/interfaces/InterfaceActionItemInfo.md) + +Defined in: [src/screens/OrganizationActionItems/testObject.mocks.ts:143](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/OrganizationActionItems/testObject.mocks.ts#L143) diff --git a/docs/docs/auto-docs/screens/OrganizationActionItems/testObject.mocks/variables/itemWithUser.md b/docs/docs/auto-docs/screens/OrganizationActionItems/testObject.mocks/variables/itemWithUser.md new file mode 100644 index 0000000000..e64fa742f0 --- /dev/null +++ b/docs/docs/auto-docs/screens/OrganizationActionItems/testObject.mocks/variables/itemWithUser.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [screens/OrganizationActionItems/testObject.mocks](../README.md) / itemWithUser + +# Variable: itemWithUser + +> `const` **itemWithUser**: [`InterfaceActionItemInfo`](../../../../utils/interfaces/interfaces/InterfaceActionItemInfo.md) + +Defined in: [src/screens/OrganizationActionItems/testObject.mocks.ts:97](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/OrganizationActionItems/testObject.mocks.ts#L97) diff --git a/docs/docs/auto-docs/screens/OrganizationActionItems/testObject.mocks/variables/itemWithUserImage.md b/docs/docs/auto-docs/screens/OrganizationActionItems/testObject.mocks/variables/itemWithUserImage.md new file mode 100644 index 0000000000..a61a00e767 --- /dev/null +++ b/docs/docs/auto-docs/screens/OrganizationActionItems/testObject.mocks/variables/itemWithUserImage.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [screens/OrganizationActionItems/testObject.mocks](../README.md) / itemWithUserImage + +# Variable: itemWithUserImage + +> `const` **itemWithUserImage**: [`InterfaceActionItemInfo`](../../../../utils/interfaces/interfaces/InterfaceActionItemInfo.md) + +Defined in: [src/screens/OrganizationActionItems/testObject.mocks.ts:120](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/OrganizationActionItems/testObject.mocks.ts#L120) diff --git a/docs/docs/auto-docs/screens/OrganizationActionItems/testObject.mocks/variables/itemWithVolunteer.md b/docs/docs/auto-docs/screens/OrganizationActionItems/testObject.mocks/variables/itemWithVolunteer.md new file mode 100644 index 0000000000..acffeb2d6f --- /dev/null +++ b/docs/docs/auto-docs/screens/OrganizationActionItems/testObject.mocks/variables/itemWithVolunteer.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [screens/OrganizationActionItems/testObject.mocks](../README.md) / itemWithVolunteer + +# Variable: itemWithVolunteer + +> `const` **itemWithVolunteer**: [`InterfaceActionItemInfo`](../../../../utils/interfaces/interfaces/InterfaceActionItemInfo.md) + +Defined in: [src/screens/OrganizationActionItems/testObject.mocks.ts:37](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/OrganizationActionItems/testObject.mocks.ts#L37) diff --git a/docs/docs/auto-docs/screens/OrganizationActionItems/testObject.mocks/variables/itemWithVolunteerImage.md b/docs/docs/auto-docs/screens/OrganizationActionItems/testObject.mocks/variables/itemWithVolunteerImage.md new file mode 100644 index 0000000000..4e5eabeba9 --- /dev/null +++ b/docs/docs/auto-docs/screens/OrganizationActionItems/testObject.mocks/variables/itemWithVolunteerImage.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [screens/OrganizationActionItems/testObject.mocks](../README.md) / itemWithVolunteerImage + +# Variable: itemWithVolunteerImage + +> `const` **itemWithVolunteerImage**: [`InterfaceActionItemInfo`](../../../../utils/interfaces/interfaces/InterfaceActionItemInfo.md) + +Defined in: [src/screens/OrganizationActionItems/testObject.mocks.ts:67](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/OrganizationActionItems/testObject.mocks.ts#L67) diff --git a/docs/docs/auto-docs/screens/OrganizationActionItems/testObject.mocks/variables/memberListQuery.md b/docs/docs/auto-docs/screens/OrganizationActionItems/testObject.mocks/variables/memberListQuery.md new file mode 100644 index 0000000000..e313c58bc9 --- /dev/null +++ b/docs/docs/auto-docs/screens/OrganizationActionItems/testObject.mocks/variables/memberListQuery.md @@ -0,0 +1,41 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [screens/OrganizationActionItems/testObject.mocks](../README.md) / memberListQuery + +# Variable: memberListQuery + +> `const` **memberListQuery**: `object` + +Defined in: [src/screens/OrganizationActionItems/testObject.mocks.ts:184](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/OrganizationActionItems/testObject.mocks.ts#L184) + +## Type declaration + +### request + +> **request**: `object` + +#### request.query + +> **query**: `DocumentNode` = `MEMBERS_LIST` + +#### request.variables + +> **variables**: `object` + +#### request.variables.id + +> **id**: `string` = `'orgId'` + +### result + +> **result**: `object` + +#### result.data + +> **data**: `object` + +#### result.data.organizations + +> **organizations**: `object`[] diff --git a/docs/docs/auto-docs/screens/OrganizationActionItems/testObject.mocks/variables/volunteerListQuery.md b/docs/docs/auto-docs/screens/OrganizationActionItems/testObject.mocks/variables/volunteerListQuery.md new file mode 100644 index 0000000000..cb7d7b4b48 --- /dev/null +++ b/docs/docs/auto-docs/screens/OrganizationActionItems/testObject.mocks/variables/volunteerListQuery.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [screens/OrganizationActionItems/testObject.mocks](../README.md) / volunteerListQuery + +# Variable: volunteerListQuery + +> `const` **volunteerListQuery**: (\{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `where`: \{ `eventId`: `string`; `hasAccepted`: `boolean`; \}; \}; \}; `result`: \{ `data`: \{ `getEventVolunteers`: (\{ `_id`: `string`; `assignments`: `any`[]; `groups`: `object`[]; `hasAccepted`: `boolean`; `hoursVolunteered`: `number`; `user`: \{ `_id`: `string`; `firstName`: `string`; `image`: `any`; `lastName`: `string`; \}; \} \| \{ `_id`: `undefined`; `assignments`: `any`[]; `groups`: `any`[]; `hasAccepted`: `boolean`; `hoursVolunteered`: `number`; `user`: \{ `_id`: `undefined`; `firstName`: `string`; `image`: `any`; `lastName`: `string`; \}; \})[]; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `where`: \{ `eventId`: `undefined`; `hasAccepted`: `boolean`; \}; \}; \}; `result`: \{ `data`: \{ `getEventVolunteers`: `any`[]; \}; \}; \})[] + +Defined in: [src/screens/OrganizationActionItems/testObject.mocks.ts:228](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/OrganizationActionItems/testObject.mocks.ts#L228) diff --git a/docs/docs/auto-docs/screens/OrganizationDashboard/OrganizationDashboard/README.md b/docs/docs/auto-docs/screens/OrganizationDashboard/OrganizationDashboard/README.md new file mode 100644 index 0000000000..c34bbb3e25 --- /dev/null +++ b/docs/docs/auto-docs/screens/OrganizationDashboard/OrganizationDashboard/README.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / screens/OrganizationDashboard/OrganizationDashboard + +# screens/OrganizationDashboard/OrganizationDashboard + +## Functions + +- [default](functions/default.md) diff --git a/docs/docs/auto-docs/screens/OrganizationDashboard/OrganizationDashboard/functions/default.md b/docs/docs/auto-docs/screens/OrganizationDashboard/OrganizationDashboard/functions/default.md new file mode 100644 index 0000000000..d727348d84 --- /dev/null +++ b/docs/docs/auto-docs/screens/OrganizationDashboard/OrganizationDashboard/functions/default.md @@ -0,0 +1,21 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [screens/OrganizationDashboard/OrganizationDashboard](../README.md) / default + +# Function: default() + +> **default**(): `JSX.Element` + +Defined in: [src/screens/OrganizationDashboard/OrganizationDashboard.tsx:44](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/OrganizationDashboard/OrganizationDashboard.tsx#L44) + +Component for displaying the organization dashboard. + +This component provides an overview of various statistics and information related to an organization, including members, admins, posts, events, blocked users, and membership requests. It also displays upcoming events and latest posts. + +## Returns + +`JSX.Element` + +The rendered component. diff --git a/docs/docs/auto-docs/screens/OrganizationDashboard/OrganizationDashboardMocks/README.md b/docs/docs/auto-docs/screens/OrganizationDashboard/OrganizationDashboardMocks/README.md new file mode 100644 index 0000000000..a56f4a1a9d --- /dev/null +++ b/docs/docs/auto-docs/screens/OrganizationDashboard/OrganizationDashboardMocks/README.md @@ -0,0 +1,13 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / screens/OrganizationDashboard/OrganizationDashboardMocks + +# screens/OrganizationDashboard/OrganizationDashboardMocks + +## Variables + +- [EMPTY\_MOCKS](variables/EMPTY_MOCKS.md) +- [ERROR\_MOCKS](variables/ERROR_MOCKS.md) +- [MOCKS](variables/MOCKS.md) diff --git a/docs/docs/auto-docs/screens/OrganizationDashboard/OrganizationDashboardMocks/variables/EMPTY_MOCKS.md b/docs/docs/auto-docs/screens/OrganizationDashboard/OrganizationDashboardMocks/variables/EMPTY_MOCKS.md new file mode 100644 index 0000000000..df578664d0 --- /dev/null +++ b/docs/docs/auto-docs/screens/OrganizationDashboard/OrganizationDashboardMocks/variables/EMPTY_MOCKS.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [screens/OrganizationDashboard/OrganizationDashboardMocks](../README.md) / EMPTY\_MOCKS + +# Variable: EMPTY\_MOCKS + +> `const` **EMPTY\_MOCKS**: (\{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `first`: `undefined`; `id`: `string`; `organization_id`: `undefined`; `orgId`: `undefined`; `where`: `undefined`; \}; \}; `result`: \{ `data`: \{ `eventsByOrganizationConnection`: `undefined`; `getVolunteerRanks`: `undefined`; `organizations`: `object`[]; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `first`: `number`; `id`: `string`; `organization_id`: `undefined`; `orgId`: `undefined`; `where`: `undefined`; \}; \}; `result`: \{ `data`: \{ `eventsByOrganizationConnection`: `undefined`; `getVolunteerRanks`: `undefined`; `organizations`: `object`[]; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `first`: `undefined`; `id`: `undefined`; `organization_id`: `string`; `orgId`: `undefined`; `where`: `undefined`; \}; \}; `result`: \{ `data`: \{ `eventsByOrganizationConnection`: `any`[]; `getVolunteerRanks`: `undefined`; `organizations`: `undefined`; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `first`: `undefined`; `id`: `undefined`; `organization_id`: `undefined`; `orgId`: `string`; `where`: \{ `limit`: `number`; `orderBy`: `string`; `timeFrame`: `string`; \}; \}; \}; `result`: \{ `data`: \{ `eventsByOrganizationConnection`: `undefined`; `getVolunteerRanks`: `any`[]; `organizations`: `undefined`; \}; \}; \})[] + +Defined in: [src/screens/OrganizationDashboard/OrganizationDashboardMocks.ts:329](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/OrganizationDashboard/OrganizationDashboardMocks.ts#L329) diff --git a/docs/docs/auto-docs/screens/OrganizationDashboard/OrganizationDashboardMocks/variables/ERROR_MOCKS.md b/docs/docs/auto-docs/screens/OrganizationDashboard/OrganizationDashboardMocks/variables/ERROR_MOCKS.md new file mode 100644 index 0000000000..607de50fbd --- /dev/null +++ b/docs/docs/auto-docs/screens/OrganizationDashboard/OrganizationDashboardMocks/variables/ERROR_MOCKS.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [screens/OrganizationDashboard/OrganizationDashboardMocks](../README.md) / ERROR\_MOCKS + +# Variable: ERROR\_MOCKS + +> `const` **ERROR\_MOCKS**: (\{ `error`: `Error`; `request`: \{ `query`: `DocumentNode`; `variables`: \{ `first`: `undefined`; `id`: `string`; `organization_id`: `undefined`; `orgId`: `undefined`; `where`: `undefined`; \}; \}; \} \| \{ `error`: `Error`; `request`: \{ `query`: `DocumentNode`; `variables`: \{ `first`: `number`; `id`: `string`; `organization_id`: `undefined`; `orgId`: `undefined`; `where`: `undefined`; \}; \}; \} \| \{ `error`: `Error`; `request`: \{ `query`: `DocumentNode`; `variables`: \{ `first`: `undefined`; `id`: `undefined`; `organization_id`: `string`; `orgId`: `undefined`; `where`: `undefined`; \}; \}; \} \| \{ `error`: `Error`; `request`: \{ `query`: `DocumentNode`; `variables`: \{ `first`: `undefined`; `id`: `undefined`; `organization_id`: `undefined`; `orgId`: `string`; `where`: \{ `limit`: `number`; `orderBy`: `string`; `timeFrame`: `string`; \}; \}; \}; \})[] + +Defined in: [src/screens/OrganizationDashboard/OrganizationDashboardMocks.ts:448](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/OrganizationDashboard/OrganizationDashboardMocks.ts#L448) diff --git a/docs/docs/auto-docs/screens/OrganizationDashboard/OrganizationDashboardMocks/variables/MOCKS.md b/docs/docs/auto-docs/screens/OrganizationDashboard/OrganizationDashboardMocks/variables/MOCKS.md new file mode 100644 index 0000000000..318e1f9709 --- /dev/null +++ b/docs/docs/auto-docs/screens/OrganizationDashboard/OrganizationDashboardMocks/variables/MOCKS.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [screens/OrganizationDashboard/OrganizationDashboardMocks](../README.md) / MOCKS + +# Variable: MOCKS + +> `const` **MOCKS**: (\{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `first`: `undefined`; `id`: `string`; `organization_id`: `undefined`; `orgId`: `undefined`; `where`: `undefined`; \}; \}; `result`: \{ `data`: \{ `eventsByOrganizationConnection`: `undefined`; `getVolunteerRanks`: `undefined`; `organizations`: `object`[]; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `first`: `number`; `id`: `string`; `organization_id`: `undefined`; `orgId`: `undefined`; `where`: `undefined`; \}; \}; `result`: \{ `data`: \{ `eventsByOrganizationConnection`: `undefined`; `getVolunteerRanks`: `undefined`; `organizations`: `object`[]; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `first`: `undefined`; `id`: `undefined`; `organization_id`: `string`; `orgId`: `undefined`; `where`: `undefined`; \}; \}; `result`: \{ `data`: \{ `eventsByOrganizationConnection`: `object`[]; `getVolunteerRanks`: `undefined`; `organizations`: `undefined`; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `first`: `undefined`; `id`: `undefined`; `organization_id`: `undefined`; `orgId`: `string`; `where`: \{ `limit`: `number`; `orderBy`: `string`; `timeFrame`: `string`; \}; \}; \}; `result`: \{ `data`: \{ `eventsByOrganizationConnection`: `undefined`; `getVolunteerRanks`: `object`[]; `organizations`: `undefined`; \}; \}; \})[] + +Defined in: [src/screens/OrganizationDashboard/OrganizationDashboardMocks.ts:8](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/OrganizationDashboard/OrganizationDashboardMocks.ts#L8) diff --git a/docs/docs/auto-docs/screens/OrganizationEvents/OrganizationEvents/README.md b/docs/docs/auto-docs/screens/OrganizationEvents/OrganizationEvents/README.md new file mode 100644 index 0000000000..9430947def --- /dev/null +++ b/docs/docs/auto-docs/screens/OrganizationEvents/OrganizationEvents/README.md @@ -0,0 +1,15 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / screens/OrganizationEvents/OrganizationEvents + +# screens/OrganizationEvents/OrganizationEvents + +## Enumerations + +- [ViewType](enumerations/ViewType.md) + +## Functions + +- [default](functions/default.md) diff --git a/docs/docs/auto-docs/screens/OrganizationEvents/OrganizationEvents/enumerations/ViewType.md b/docs/docs/auto-docs/screens/OrganizationEvents/OrganizationEvents/enumerations/ViewType.md new file mode 100644 index 0000000000..2d7cb2e94a --- /dev/null +++ b/docs/docs/auto-docs/screens/OrganizationEvents/OrganizationEvents/enumerations/ViewType.md @@ -0,0 +1,33 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [screens/OrganizationEvents/OrganizationEvents](../README.md) / ViewType + +# Enumeration: ViewType + +Defined in: [src/screens/OrganizationEvents/OrganizationEvents.tsx:37](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/OrganizationEvents/OrganizationEvents.tsx#L37) + +## Enumeration Members + +### DAY + +> **DAY**: `"Day"` + +Defined in: [src/screens/OrganizationEvents/OrganizationEvents.tsx:38](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/OrganizationEvents/OrganizationEvents.tsx#L38) + +*** + +### MONTH + +> **MONTH**: `"Month View"` + +Defined in: [src/screens/OrganizationEvents/OrganizationEvents.tsx:39](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/OrganizationEvents/OrganizationEvents.tsx#L39) + +*** + +### YEAR + +> **YEAR**: `"Year View"` + +Defined in: [src/screens/OrganizationEvents/OrganizationEvents.tsx:40](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/OrganizationEvents/OrganizationEvents.tsx#L40) diff --git a/docs/docs/auto-docs/screens/OrganizationEvents/OrganizationEvents/functions/default.md b/docs/docs/auto-docs/screens/OrganizationEvents/OrganizationEvents/functions/default.md new file mode 100644 index 0000000000..f2fd42784a --- /dev/null +++ b/docs/docs/auto-docs/screens/OrganizationEvents/OrganizationEvents/functions/default.md @@ -0,0 +1,27 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [screens/OrganizationEvents/OrganizationEvents](../README.md) / default + +# Function: default() + +> **default**(): `JSX.Element` + +Defined in: [src/screens/OrganizationEvents/OrganizationEvents.tsx:56](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/OrganizationEvents/OrganizationEvents.tsx#L56) + +Organization Events Page Component to display the events of an organization +and create new events for the organization by the admin or superadmin user. +The component uses the EventCalendar component to display the events and EventHeader component + to display the view type and create event button. + The component uses the RecurrenceOptions component to display the recurrence options for the event. + The component uses the CREATE_EVENT_MUTATION mutation to create a new event for the organization. + The component uses the ORGANIZATION_EVENT_CONNECTION_LIST and ORGANIZATIONS_LIST queries to fetch the events + and organization details. + The component uses the useLocalStorage hook to get the user details from the local storage. + +## Returns + +`JSX.Element` + +JSX.Element to display the Organization Events Page diff --git a/docs/docs/auto-docs/screens/OrganizationEvents/OrganizationEventsMocks/README.md b/docs/docs/auto-docs/screens/OrganizationEvents/OrganizationEventsMocks/README.md new file mode 100644 index 0000000000..706082f1d8 --- /dev/null +++ b/docs/docs/auto-docs/screens/OrganizationEvents/OrganizationEventsMocks/README.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / screens/OrganizationEvents/OrganizationEventsMocks + +# screens/OrganizationEvents/OrganizationEventsMocks + +## Variables + +- [MOCKS](variables/MOCKS.md) diff --git a/docs/docs/auto-docs/screens/OrganizationEvents/OrganizationEventsMocks/variables/MOCKS.md b/docs/docs/auto-docs/screens/OrganizationEvents/OrganizationEventsMocks/variables/MOCKS.md new file mode 100644 index 0000000000..f244738ea3 --- /dev/null +++ b/docs/docs/auto-docs/screens/OrganizationEvents/OrganizationEventsMocks/variables/MOCKS.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [screens/OrganizationEvents/OrganizationEventsMocks](../README.md) / MOCKS + +# Variable: MOCKS + +> `const` **MOCKS**: (\{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `allDay`: `undefined`; `count`: `undefined`; `description`: `undefined`; `description_contains`: `string`; `endDate`: `undefined`; `endTime`: `undefined`; `frequency`: `undefined`; `interval`: `undefined`; `isPublic`: `undefined`; `isRegisterable`: `undefined`; `location`: `undefined`; `location_contains`: `string`; `organization_id`: `any`; `organizationId`: `undefined`; `recurrenceEndDate`: `undefined`; `recurrenceStartDate`: `undefined`; `recurring`: `undefined`; `startDate`: `undefined`; `startTime`: `undefined`; `title`: `undefined`; `title_contains`: `string`; `weekDayOccurenceInMonth`: `undefined`; `weekDays`: `undefined`; \}; \}; `result`: \{ `data`: \{ `createEvent`: `undefined`; `eventsByOrganizationConnection`: `object`[]; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `allDay`: `undefined`; `count`: `undefined`; `description`: `undefined`; `description_contains`: `string`; `endDate`: `undefined`; `endTime`: `undefined`; `frequency`: `undefined`; `interval`: `undefined`; `isPublic`: `undefined`; `isRegisterable`: `undefined`; `location`: `undefined`; `location_contains`: `string`; `organization_id`: `any`; `organizationId`: `undefined`; `recurrenceEndDate`: `undefined`; `recurrenceStartDate`: `undefined`; `recurring`: `undefined`; `startDate`: `undefined`; `startTime`: `undefined`; `title`: `undefined`; `title_contains`: `string`; `weekDayOccurenceInMonth`: `undefined`; `weekDays`: `undefined`; \}; \}; `result`: \{ `data`: \{ `createEvent`: `undefined`; `eventsByOrganizationConnection`: `object`[]; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `allDay`: `boolean`; `count`: `undefined`; `description`: `string`; `description_contains`: `undefined`; `endDate`: `string`; `endTime`: `undefined`; `frequency`: `undefined`; `interval`: `undefined`; `isPublic`: `boolean`; `isRegisterable`: `boolean`; `location`: `string`; `location_contains`: `undefined`; `organization_id`: `undefined`; `organizationId`: `any`; `recurrenceEndDate`: `undefined`; `recurrenceStartDate`: `undefined`; `recurring`: `boolean`; `startDate`: `string`; `startTime`: `undefined`; `title`: `string`; `title_contains`: `undefined`; `weekDayOccurenceInMonth`: `undefined`; `weekDays`: `undefined`; \}; \}; `result`: \{ `data`: \{ `createEvent`: \{ `_id`: `string`; \}; `eventsByOrganizationConnection`: `undefined`; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `allDay`: `boolean`; `count`: `undefined`; `description`: `string`; `description_contains`: `undefined`; `endDate`: `string`; `endTime`: `string`; `frequency`: `undefined`; `interval`: `undefined`; `isPublic`: `boolean`; `isRegisterable`: `boolean`; `location`: `string`; `location_contains`: `undefined`; `organization_id`: `undefined`; `organizationId`: `any`; `recurrenceEndDate`: `undefined`; `recurrenceStartDate`: `undefined`; `recurring`: `boolean`; `startDate`: `string`; `startTime`: `string`; `title`: `string`; `title_contains`: `undefined`; `weekDayOccurenceInMonth`: `undefined`; `weekDays`: `undefined`; \}; \}; `result`: \{ `data`: \{ `createEvent`: \{ `_id`: `string`; \}; `eventsByOrganizationConnection`: `undefined`; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `allDay`: `boolean`; `count`: `undefined`; `description`: `string`; `description_contains`: `undefined`; `endDate`: `string`; `endTime`: `string`; `frequency`: `string`; `interval`: `number`; `isPublic`: `boolean`; `isRegisterable`: `boolean`; `location`: `string`; `location_contains`: `undefined`; `organization_id`: `undefined`; `organizationId`: `any`; `recurrenceEndDate`: `any`; `recurrenceStartDate`: `string`; `recurring`: `boolean`; `startDate`: `string`; `startTime`: `string`; `title`: `string`; `title_contains`: `undefined`; `weekDayOccurenceInMonth`: `undefined`; `weekDays`: `undefined`; \}; \}; `result`: \{ `data`: \{ `createEvent`: \{ `_id`: `string`; \}; `eventsByOrganizationConnection`: `undefined`; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `allDay`: `boolean`; `count`: `undefined`; `description`: `string`; `description_contains`: `undefined`; `endDate`: `string`; `endTime`: `string`; `frequency`: `string`; `interval`: `number`; `isPublic`: `boolean`; `isRegisterable`: `boolean`; `location`: `string`; `location_contains`: `undefined`; `organization_id`: `undefined`; `organizationId`: `any`; `recurrenceEndDate`: `any`; `recurrenceStartDate`: `string`; `recurring`: `boolean`; `startDate`: `string`; `startTime`: `string`; `title`: `string`; `title_contains`: `undefined`; `weekDayOccurenceInMonth`: `undefined`; `weekDays`: `string`[]; \}; \}; `result`: \{ `data`: \{ `createEvent`: \{ `_id`: `string`; \}; `eventsByOrganizationConnection`: `undefined`; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `allDay`: `boolean`; `count`: `undefined`; `description`: `string`; `description_contains`: `undefined`; `endDate`: `string`; `endTime`: `undefined`; `frequency`: `string`; `interval`: `number`; `isPublic`: `boolean`; `isRegisterable`: `boolean`; `location`: `string`; `location_contains`: `undefined`; `organization_id`: `undefined`; `organizationId`: `any`; `recurrenceEndDate`: `string`; `recurrenceStartDate`: `string`; `recurring`: `boolean`; `startDate`: `string`; `startTime`: `undefined`; `title`: `string`; `title_contains`: `undefined`; `weekDayOccurenceInMonth`: `number`; `weekDays`: `string`[]; \}; \}; `result`: \{ `data`: \{ `createEvent`: \{ `_id`: `string`; \}; `eventsByOrganizationConnection`: `undefined`; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `allDay`: `boolean`; `count`: `number`; `description`: `string`; `description_contains`: `undefined`; `endDate`: `string`; `endTime`: `undefined`; `frequency`: `string`; `interval`: `number`; `isPublic`: `boolean`; `isRegisterable`: `boolean`; `location`: `string`; `location_contains`: `undefined`; `organization_id`: `undefined`; `organizationId`: `any`; `recurrenceEndDate`: `any`; `recurrenceStartDate`: `string`; `recurring`: `boolean`; `startDate`: `string`; `startTime`: `undefined`; `title`: `string`; `title_contains`: `undefined`; `weekDayOccurenceInMonth`: `undefined`; `weekDays`: `undefined`; \}; \}; `result`: \{ `data`: \{ `createEvent`: \{ `_id`: `string`; \}; `eventsByOrganizationConnection`: `undefined`; \}; \}; \})[] + +Defined in: [src/screens/OrganizationEvents/OrganizationEventsMocks.ts:4](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/OrganizationEvents/OrganizationEventsMocks.ts#L4) diff --git a/docs/docs/auto-docs/screens/OrganizationFundCampaign/CampaignModal/README.md b/docs/docs/auto-docs/screens/OrganizationFundCampaign/CampaignModal/README.md new file mode 100644 index 0000000000..e36d0fe887 --- /dev/null +++ b/docs/docs/auto-docs/screens/OrganizationFundCampaign/CampaignModal/README.md @@ -0,0 +1,15 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / screens/OrganizationFundCampaign/CampaignModal + +# screens/OrganizationFundCampaign/CampaignModal + +## Interfaces + +- [InterfaceCampaignModal](interfaces/InterfaceCampaignModal.md) + +## Functions + +- [default](functions/default.md) diff --git a/docs/docs/auto-docs/screens/OrganizationFundCampaign/CampaignModal/functions/default.md b/docs/docs/auto-docs/screens/OrganizationFundCampaign/CampaignModal/functions/default.md new file mode 100644 index 0000000000..d1984cbf3c --- /dev/null +++ b/docs/docs/auto-docs/screens/OrganizationFundCampaign/CampaignModal/functions/default.md @@ -0,0 +1,37 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [screens/OrganizationFundCampaign/CampaignModal](../README.md) / default + +# Function: default() + +> **default**(`props`, `deprecatedLegacyContext`?): `ReactNode` + +Defined in: [src/screens/OrganizationFundCampaign/CampaignModal.tsx:44](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/OrganizationFundCampaign/CampaignModal.tsx#L44) + +Modal component for creating or editing a campaign. + +## Parameters + +### props + +[`InterfaceCampaignModal`](../interfaces/InterfaceCampaignModal.md) + +The props for the CampaignModal component. + +### deprecatedLegacyContext? + +`any` + +**Deprecated** + +**See** + +[React Docs](https://legacy.reactjs.org/docs/legacy-context.html#referencing-context-in-lifecycle-methods) + +## Returns + +`ReactNode` + +JSX.Element diff --git a/docs/docs/auto-docs/screens/OrganizationFundCampaign/CampaignModal/interfaces/InterfaceCampaignModal.md b/docs/docs/auto-docs/screens/OrganizationFundCampaign/CampaignModal/interfaces/InterfaceCampaignModal.md new file mode 100644 index 0000000000..dd22c32a70 --- /dev/null +++ b/docs/docs/auto-docs/screens/OrganizationFundCampaign/CampaignModal/interfaces/InterfaceCampaignModal.md @@ -0,0 +1,75 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [screens/OrganizationFundCampaign/CampaignModal](../README.md) / InterfaceCampaignModal + +# Interface: InterfaceCampaignModal + +Defined in: [src/screens/OrganizationFundCampaign/CampaignModal.tsx:28](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/OrganizationFundCampaign/CampaignModal.tsx#L28) + +Props for the CampaignModal component. + +## Properties + +### campaign + +> **campaign**: [`InterfaceCampaignInfo`](../../../../utils/interfaces/interfaces/InterfaceCampaignInfo.md) + +Defined in: [src/screens/OrganizationFundCampaign/CampaignModal.tsx:33](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/OrganizationFundCampaign/CampaignModal.tsx#L33) + +*** + +### fundId + +> **fundId**: `string` + +Defined in: [src/screens/OrganizationFundCampaign/CampaignModal.tsx:31](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/OrganizationFundCampaign/CampaignModal.tsx#L31) + +*** + +### hide() + +> **hide**: () => `void` + +Defined in: [src/screens/OrganizationFundCampaign/CampaignModal.tsx:30](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/OrganizationFundCampaign/CampaignModal.tsx#L30) + +#### Returns + +`void` + +*** + +### isOpen + +> **isOpen**: `boolean` + +Defined in: [src/screens/OrganizationFundCampaign/CampaignModal.tsx:29](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/OrganizationFundCampaign/CampaignModal.tsx#L29) + +*** + +### mode + +> **mode**: `"edit"` \| `"create"` + +Defined in: [src/screens/OrganizationFundCampaign/CampaignModal.tsx:35](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/OrganizationFundCampaign/CampaignModal.tsx#L35) + +*** + +### orgId + +> **orgId**: `string` + +Defined in: [src/screens/OrganizationFundCampaign/CampaignModal.tsx:32](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/OrganizationFundCampaign/CampaignModal.tsx#L32) + +*** + +### refetchCampaign() + +> **refetchCampaign**: () => `void` + +Defined in: [src/screens/OrganizationFundCampaign/CampaignModal.tsx:34](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/OrganizationFundCampaign/CampaignModal.tsx#L34) + +#### Returns + +`void` diff --git a/docs/docs/auto-docs/screens/OrganizationFundCampaign/OrganizationFundCampagins/README.md b/docs/docs/auto-docs/screens/OrganizationFundCampaign/OrganizationFundCampagins/README.md new file mode 100644 index 0000000000..abc8fb7652 --- /dev/null +++ b/docs/docs/auto-docs/screens/OrganizationFundCampaign/OrganizationFundCampagins/README.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / screens/OrganizationFundCampaign/OrganizationFundCampagins + +# screens/OrganizationFundCampaign/OrganizationFundCampagins + +## Functions + +- [default](functions/default.md) diff --git a/docs/docs/auto-docs/screens/OrganizationFundCampaign/OrganizationFundCampagins/functions/default.md b/docs/docs/auto-docs/screens/OrganizationFundCampaign/OrganizationFundCampagins/functions/default.md new file mode 100644 index 0000000000..c767b96d4e --- /dev/null +++ b/docs/docs/auto-docs/screens/OrganizationFundCampaign/OrganizationFundCampagins/functions/default.md @@ -0,0 +1,45 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [screens/OrganizationFundCampaign/OrganizationFundCampagins](../README.md) / default + +# Function: default() + +> **default**(): `Element` + +Defined in: [src/screens/OrganizationFundCampaign/OrganizationFundCampagins.tsx:78](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/OrganizationFundCampaign/OrganizationFundCampagins.tsx#L78) + +`orgFundCampaign` component displays a list of fundraising campaigns for a specific fund within an organization. +It allows users to search, sort, view and edit campaigns. + +### Functionality +- Displays a data grid with campaigns information, including their names, start and end dates, funding goals, and actions. +- Provides search functionality to filter campaigns by name. +- Offers sorting options based on funding goal and end date. +- Opens modals for creating or editing campaigns. + +### State +- `campaign`: The current campaign being edited or deleted. +- `searchTerm`: The term used for searching campaigns by name. +- `sortBy`: The current sorting criteria for campaigns. +- `modalState`: An object indicating the visibility of different modals (`same` for create/edit). +- `campaignModalMode`: Determines if the modal is in 'edit' or 'create' mode. + +### Methods +- `handleOpenModal(campaign: InterfaceCampaignInfo | null, mode: 'edit' | 'create')`: Opens the modal for creating or editing a campaign. +- `handleClick(campaignId: string)`: Navigates to the pledge details page for a specific campaign. + +### GraphQL Queries +- Uses `FUND_CAMPAIGN` query to fetch the list of campaigns based on the provided fund ID, search term, and sorting criteria. + +### Rendering +- Renders a `DataGrid` component with campaigns information. +- Displays modals for creating and editing campaigns. +- Shows error and loading states using `Loader` and error message components. + +## Returns + +`Element` + +The rendered component including breadcrumbs, search and filter controls, data grid, and modals. diff --git a/docs/docs/auto-docs/screens/OrganizationFundCampaign/OrganizationFundCampaignMocks/README.md b/docs/docs/auto-docs/screens/OrganizationFundCampaign/OrganizationFundCampaignMocks/README.md new file mode 100644 index 0000000000..a5f1934cd0 --- /dev/null +++ b/docs/docs/auto-docs/screens/OrganizationFundCampaign/OrganizationFundCampaignMocks/README.md @@ -0,0 +1,13 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / screens/OrganizationFundCampaign/OrganizationFundCampaignMocks + +# screens/OrganizationFundCampaign/OrganizationFundCampaignMocks + +## Variables + +- [EMPTY\_MOCKS](variables/EMPTY_MOCKS.md) +- [MOCK\_ERROR](variables/MOCK_ERROR.md) +- [MOCKS](variables/MOCKS.md) diff --git a/docs/docs/auto-docs/screens/OrganizationFundCampaign/OrganizationFundCampaignMocks/variables/EMPTY_MOCKS.md b/docs/docs/auto-docs/screens/OrganizationFundCampaign/OrganizationFundCampaignMocks/variables/EMPTY_MOCKS.md new file mode 100644 index 0000000000..f190100180 --- /dev/null +++ b/docs/docs/auto-docs/screens/OrganizationFundCampaign/OrganizationFundCampaignMocks/variables/EMPTY_MOCKS.md @@ -0,0 +1,65 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [screens/OrganizationFundCampaign/OrganizationFundCampaignMocks](../README.md) / EMPTY\_MOCKS + +# Variable: EMPTY\_MOCKS + +> `const` **EMPTY\_MOCKS**: `object`[] + +Defined in: [src/screens/OrganizationFundCampaign/OrganizationFundCampaignMocks.ts:300](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/OrganizationFundCampaign/OrganizationFundCampaignMocks.ts#L300) + +## Type declaration + +### request + +> **request**: `object` + +#### request.query + +> **query**: `DocumentNode` = `FUND_CAMPAIGN` + +#### request.variables + +> **variables**: `object` + +#### request.variables.id + +> **id**: `string` = `'fundId'` + +#### request.variables.orderBy + +> **orderBy**: `any` = `null` + +#### request.variables.where + +> **where**: `object` + +#### request.variables.where.name\_contains + +> **name\_contains**: `string` = `''` + +### result + +> **result**: `object` + +#### result.data + +> **data**: `object` + +#### result.data.getFundById + +> **getFundById**: `object` + +#### result.data.getFundById.campaigns + +> **campaigns**: `any`[] = `[]` + +#### result.data.getFundById.isArchived + +> **isArchived**: `boolean` = `false` + +#### result.data.getFundById.name + +> **name**: `string` = `'Fund 1'` diff --git a/docs/docs/auto-docs/screens/OrganizationFundCampaign/OrganizationFundCampaignMocks/variables/MOCKS.md b/docs/docs/auto-docs/screens/OrganizationFundCampaign/OrganizationFundCampaignMocks/variables/MOCKS.md new file mode 100644 index 0000000000..1df96ec96e --- /dev/null +++ b/docs/docs/auto-docs/screens/OrganizationFundCampaign/OrganizationFundCampaignMocks/variables/MOCKS.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [screens/OrganizationFundCampaign/OrganizationFundCampaignMocks](../README.md) / MOCKS + +# Variable: MOCKS + +> `const` **MOCKS**: (\{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `currency`: `undefined`; `endDate`: `undefined`; `fundId`: `undefined`; `fundingGoal`: `undefined`; `id`: `string`; `name`: `undefined`; `orderBy`: `string`; `organizationId`: `undefined`; `startDate`: `undefined`; `where`: \{ `name_contains`: `string`; \}; \}; \}; `result`: \{ `data`: \{ `createFundraisingCampaign`: `undefined`; `getFundById`: \{ `campaigns`: `object`[]; `isArchived`: `boolean`; `name`: `string`; \}; `updateFundraisingCampaign`: `undefined`; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `currency`: `string`; `endDate`: `string`; `fundId`: `string`; `fundingGoal`: `number`; `id`: `undefined`; `name`: `string`; `orderBy`: `undefined`; `organizationId`: `string`; `startDate`: `string`; `where`: `undefined`; \}; \}; `result`: \{ `data`: \{ `createFundraisingCampaign`: \{ `_id`: `string`; \}; `getFundById`: `undefined`; `updateFundraisingCampaign`: `undefined`; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `currency`: `undefined`; `endDate`: `string`; `fundId`: `undefined`; `fundingGoal`: `number`; `id`: `string`; `name`: `string`; `orderBy`: `undefined`; `organizationId`: `undefined`; `startDate`: `string`; `where`: `undefined`; \}; \}; `result`: \{ `data`: \{ `createFundraisingCampaign`: `undefined`; `getFundById`: `undefined`; `updateFundraisingCampaign`: \{ `_id`: `string`; \}; \}; \}; \})[] + +Defined in: [src/screens/OrganizationFundCampaign/OrganizationFundCampaignMocks.ts:7](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/OrganizationFundCampaign/OrganizationFundCampaignMocks.ts#L7) diff --git a/docs/docs/auto-docs/screens/OrganizationFundCampaign/OrganizationFundCampaignMocks/variables/MOCK_ERROR.md b/docs/docs/auto-docs/screens/OrganizationFundCampaign/OrganizationFundCampaignMocks/variables/MOCK_ERROR.md new file mode 100644 index 0000000000..5f963df065 --- /dev/null +++ b/docs/docs/auto-docs/screens/OrganizationFundCampaign/OrganizationFundCampaignMocks/variables/MOCK_ERROR.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [screens/OrganizationFundCampaign/OrganizationFundCampaignMocks](../README.md) / MOCK\_ERROR + +# Variable: MOCK\_ERROR + +> `const` **MOCK\_ERROR**: (\{ `error`: `Error`; `request`: \{ `query`: `DocumentNode`; `variables`: \{ `currency`: `undefined`; `endDate`: `undefined`; `fundId`: `undefined`; `fundingGoal`: `undefined`; `id`: `string`; `name`: `undefined`; `orderBy`: `any`; `organizationId`: `undefined`; `startDate`: `undefined`; `where`: \{ `name_contains`: `string`; \}; \}; \}; \} \| \{ `error`: `Error`; `request`: \{ `query`: `DocumentNode`; `variables`: \{ `currency`: `string`; `endDate`: `string`; `fundId`: `string`; `fundingGoal`: `number`; `id`: `undefined`; `name`: `string`; `orderBy`: `undefined`; `organizationId`: `string`; `startDate`: `string`; `where`: `undefined`; \}; \}; \} \| \{ `error`: `Error`; `request`: \{ `query`: `DocumentNode`; `variables`: \{ `currency`: `undefined`; `endDate`: `string`; `fundId`: `undefined`; `fundingGoal`: `number`; `id`: `string`; `name`: `string`; `orderBy`: `undefined`; `organizationId`: `undefined`; `startDate`: `string`; `where`: `undefined`; \}; \}; \})[] + +Defined in: [src/screens/OrganizationFundCampaign/OrganizationFundCampaignMocks.ts:258](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/OrganizationFundCampaign/OrganizationFundCampaignMocks.ts#L258) diff --git a/docs/docs/auto-docs/screens/OrganizationFunds/FundModal/README.md b/docs/docs/auto-docs/screens/OrganizationFunds/FundModal/README.md new file mode 100644 index 0000000000..02806e0e2b --- /dev/null +++ b/docs/docs/auto-docs/screens/OrganizationFunds/FundModal/README.md @@ -0,0 +1,15 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / screens/OrganizationFunds/FundModal + +# screens/OrganizationFunds/FundModal + +## Interfaces + +- [InterfaceFundModal](interfaces/InterfaceFundModal.md) + +## Functions + +- [default](functions/default.md) diff --git a/docs/docs/auto-docs/screens/OrganizationFunds/FundModal/functions/default.md b/docs/docs/auto-docs/screens/OrganizationFunds/FundModal/functions/default.md new file mode 100644 index 0000000000..d932deab14 --- /dev/null +++ b/docs/docs/auto-docs/screens/OrganizationFunds/FundModal/functions/default.md @@ -0,0 +1,59 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [screens/OrganizationFunds/FundModal](../README.md) / default + +# Function: default() + +> **default**(`props`, `deprecatedLegacyContext`?): `ReactNode` + +Defined in: [src/screens/OrganizationFunds/FundModal.tsx:52](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/OrganizationFunds/FundModal.tsx#L52) + +`FundModal` component provides a modal dialog for creating or editing a fund. +It allows users to input fund details and submit them to the server. + +This component handles both the creation of new funds and the editing of existing funds, +based on the `mode` prop. It displays a form with fields for the fund's name, description, +and other relevant details. Upon submission, it interacts with the GraphQL API to save +or update the fund details and triggers a refetch of the fund data. + +### Props +- `isOpen`: A boolean indicating whether the modal is open or closed. +- `hide`: A function to close the modal. +- `refetchFunds`: A function to refetch the fund list after a successful operation. +- `fund`: The current fund object being edited or `null` if creating a new fund. +- `orgId`: The ID of the organization to which the fund belongs. +- `mode`: The mode of the modal, either 'edit' or 'create'. + +### State +- `name`: The name of the fund. +- `description`: The description of the fund. +- `amount`: The amount associated with the fund. +- `status`: The status of the fund (e.g., active, archived). + +### Methods +- `handleSubmit()`: Handles form submission, creates or updates the fund, and triggers a refetch of the fund list. +- `handleChange(event: React.ChangeEvent)`: Updates the state based on user input. + +## Parameters + +### props + +[`InterfaceFundModal`](../interfaces/InterfaceFundModal.md) + +### deprecatedLegacyContext? + +`any` + +**Deprecated** + +**See** + +[React Docs](https://legacy.reactjs.org/docs/legacy-context.html#referencing-context-in-lifecycle-methods) + +## Returns + +`ReactNode` + +The rendered modal dialog. diff --git a/docs/docs/auto-docs/screens/OrganizationFunds/FundModal/interfaces/InterfaceFundModal.md b/docs/docs/auto-docs/screens/OrganizationFunds/FundModal/interfaces/InterfaceFundModal.md new file mode 100644 index 0000000000..320a281404 --- /dev/null +++ b/docs/docs/auto-docs/screens/OrganizationFunds/FundModal/interfaces/InterfaceFundModal.md @@ -0,0 +1,65 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [screens/OrganizationFunds/FundModal](../README.md) / InterfaceFundModal + +# Interface: InterfaceFundModal + +Defined in: [src/screens/OrganizationFunds/FundModal.tsx:15](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/OrganizationFunds/FundModal.tsx#L15) + +## Properties + +### fund + +> **fund**: [`InterfaceFundInfo`](../../../../utils/interfaces/interfaces/InterfaceFundInfo.md) + +Defined in: [src/screens/OrganizationFunds/FundModal.tsx:19](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/OrganizationFunds/FundModal.tsx#L19) + +*** + +### hide() + +> **hide**: () => `void` + +Defined in: [src/screens/OrganizationFunds/FundModal.tsx:17](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/OrganizationFunds/FundModal.tsx#L17) + +#### Returns + +`void` + +*** + +### isOpen + +> **isOpen**: `boolean` + +Defined in: [src/screens/OrganizationFunds/FundModal.tsx:16](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/OrganizationFunds/FundModal.tsx#L16) + +*** + +### mode + +> **mode**: `"edit"` \| `"create"` + +Defined in: [src/screens/OrganizationFunds/FundModal.tsx:21](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/OrganizationFunds/FundModal.tsx#L21) + +*** + +### orgId + +> **orgId**: `string` + +Defined in: [src/screens/OrganizationFunds/FundModal.tsx:20](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/OrganizationFunds/FundModal.tsx#L20) + +*** + +### refetchFunds() + +> **refetchFunds**: () => `void` + +Defined in: [src/screens/OrganizationFunds/FundModal.tsx:18](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/OrganizationFunds/FundModal.tsx#L18) + +#### Returns + +`void` diff --git a/docs/docs/auto-docs/screens/OrganizationFunds/OrganizationFunds/README.md b/docs/docs/auto-docs/screens/OrganizationFunds/OrganizationFunds/README.md new file mode 100644 index 0000000000..a719090f79 --- /dev/null +++ b/docs/docs/auto-docs/screens/OrganizationFunds/OrganizationFunds/README.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / screens/OrganizationFunds/OrganizationFunds + +# screens/OrganizationFunds/OrganizationFunds + +## Functions + +- [default](functions/default.md) diff --git a/docs/docs/auto-docs/screens/OrganizationFunds/OrganizationFunds/functions/default.md b/docs/docs/auto-docs/screens/OrganizationFunds/OrganizationFunds/functions/default.md new file mode 100644 index 0000000000..a4d39d1b4e --- /dev/null +++ b/docs/docs/auto-docs/screens/OrganizationFunds/OrganizationFunds/functions/default.md @@ -0,0 +1,48 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [screens/OrganizationFunds/OrganizationFunds](../README.md) / default + +# Function: default() + +> **default**(): `Element` + +Defined in: [src/screens/OrganizationFunds/OrganizationFunds.tsx:79](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/OrganizationFunds/OrganizationFunds.tsx#L79) + +`organizationFunds` component displays a list of funds for a specific organization, +allowing users to search, sort, view and edit funds. + +This component utilizes the `DataGrid` from Material-UI to present the list of funds in a tabular format, +and includes functionality for filtering and sorting. It also handles the opening and closing of modals +for creating and editing. + +It includes: +- A search input field to filter funds by name. +- A dropdown menu to sort funds by creation date. +- A button to create a new fund. +- A table to display the list of funds with columns for fund details and actions. +- Modals for creating and editing funds. + +### GraphQL Queries +- `FUND_LIST`: Fetches a list of funds for the given organization, filtered and sorted based on the provided parameters. + +### Props +- `orgId`: The ID of the organization whose funds are being managed. + +### State +- `fund`: The currently selected fund for editing or deletion. +- `searchTerm`: The current search term used for filtering funds. +- `sortBy`: The current sorting order for funds. +- `modalState`: The state of the modals (edit/create). +- `fundModalMode`: The mode of the fund modal (edit or create). + +### Methods +- `handleOpenModal(fund: InterfaceFundInfo | null, mode: 'edit' | 'create')`: Opens the fund modal with the given fund and mode. +- `handleClick(fundId: string)`: Navigates to the campaign page for the specified fund. + +## Returns + +`Element` + +The rendered component. diff --git a/docs/docs/auto-docs/screens/OrganizationFunds/OrganizationFundsMocks/README.md b/docs/docs/auto-docs/screens/OrganizationFunds/OrganizationFundsMocks/README.md new file mode 100644 index 0000000000..f62f2feafd --- /dev/null +++ b/docs/docs/auto-docs/screens/OrganizationFunds/OrganizationFundsMocks/README.md @@ -0,0 +1,13 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / screens/OrganizationFunds/OrganizationFundsMocks + +# screens/OrganizationFunds/OrganizationFundsMocks + +## Variables + +- [MOCKS](variables/MOCKS.md) +- [MOCKS\_ERROR](variables/MOCKS_ERROR.md) +- [NO\_FUNDS](variables/NO_FUNDS.md) diff --git a/docs/docs/auto-docs/screens/OrganizationFunds/OrganizationFundsMocks/variables/MOCKS.md b/docs/docs/auto-docs/screens/OrganizationFunds/OrganizationFundsMocks/variables/MOCKS.md new file mode 100644 index 0000000000..19b3f42844 --- /dev/null +++ b/docs/docs/auto-docs/screens/OrganizationFunds/OrganizationFundsMocks/variables/MOCKS.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [screens/OrganizationFunds/OrganizationFundsMocks](../README.md) / MOCKS + +# Variable: MOCKS + +> `const` **MOCKS**: (\{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `filter`: `string`; `id`: `undefined`; `isArchived`: `undefined`; `isDefault`: `undefined`; `name`: `undefined`; `orderBy`: `string`; `organizationId`: `string`; `refrenceNumber`: `undefined`; `taxDeductible`: `undefined`; \}; \}; `result`: \{ `data`: \{ `createFund`: `undefined`; `fundsByOrganization`: `object`[]; `updateFund`: `undefined`; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `filter`: `undefined`; `id`: `undefined`; `isArchived`: `boolean`; `isDefault`: `boolean`; `name`: `string`; `orderBy`: `undefined`; `organizationId`: `string`; `refrenceNumber`: `string`; `taxDeductible`: `boolean`; \}; \}; `result`: \{ `data`: \{ `createFund`: \{ `_id`: `string`; \}; `fundsByOrganization`: `undefined`; `updateFund`: `undefined`; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `filter`: `undefined`; `id`: `string`; `isArchived`: `boolean`; `isDefault`: `boolean`; `name`: `string`; `orderBy`: `undefined`; `organizationId`: `undefined`; `refrenceNumber`: `string`; `taxDeductible`: `boolean`; \}; \}; `result`: \{ `data`: \{ `createFund`: `undefined`; `fundsByOrganization`: `undefined`; `updateFund`: \{ `_id`: `string`; \}; \}; \}; \})[] + +Defined in: [src/screens/OrganizationFunds/OrganizationFundsMocks.ts:7](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/OrganizationFunds/OrganizationFundsMocks.ts#L7) diff --git a/docs/docs/auto-docs/screens/OrganizationFunds/OrganizationFundsMocks/variables/MOCKS_ERROR.md b/docs/docs/auto-docs/screens/OrganizationFunds/OrganizationFundsMocks/variables/MOCKS_ERROR.md new file mode 100644 index 0000000000..52cfa9a8b2 --- /dev/null +++ b/docs/docs/auto-docs/screens/OrganizationFunds/OrganizationFundsMocks/variables/MOCKS_ERROR.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [screens/OrganizationFunds/OrganizationFundsMocks](../README.md) / MOCKS\_ERROR + +# Variable: MOCKS\_ERROR + +> `const` **MOCKS\_ERROR**: (\{ `error`: `Error`; `request`: \{ `query`: `DocumentNode`; `variables`: \{ `filter`: `string`; `id`: `undefined`; `isArchived`: `undefined`; `isDefault`: `undefined`; `name`: `undefined`; `orderBy`: `string`; `organizationId`: `string`; `refrenceNumber`: `undefined`; `taxDeductible`: `undefined`; \}; \}; \} \| \{ `error`: `Error`; `request`: \{ `query`: `DocumentNode`; `variables`: \{ `filter`: `undefined`; `id`: `undefined`; `isArchived`: `boolean`; `isDefault`: `boolean`; `name`: `string`; `orderBy`: `undefined`; `organizationId`: `string`; `refrenceNumber`: `string`; `taxDeductible`: `boolean`; \}; \}; \} \| \{ `error`: `Error`; `request`: \{ `query`: `DocumentNode`; `variables`: \{ `filter`: `undefined`; `id`: `string`; `isArchived`: `boolean`; `isDefault`: `boolean`; `name`: `string`; `orderBy`: `undefined`; `organizationId`: `undefined`; `refrenceNumber`: `string`; `taxDeductible`: `boolean`; \}; \}; \})[] + +Defined in: [src/screens/OrganizationFunds/OrganizationFundsMocks.ts:191](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/OrganizationFunds/OrganizationFundsMocks.ts#L191) diff --git a/docs/docs/auto-docs/screens/OrganizationFunds/OrganizationFundsMocks/variables/NO_FUNDS.md b/docs/docs/auto-docs/screens/OrganizationFunds/OrganizationFundsMocks/variables/NO_FUNDS.md new file mode 100644 index 0000000000..e02038be81 --- /dev/null +++ b/docs/docs/auto-docs/screens/OrganizationFunds/OrganizationFundsMocks/variables/NO_FUNDS.md @@ -0,0 +1,49 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [screens/OrganizationFunds/OrganizationFundsMocks](../README.md) / NO\_FUNDS + +# Variable: NO\_FUNDS + +> `const` **NO\_FUNDS**: `object`[] + +Defined in: [src/screens/OrganizationFunds/OrganizationFundsMocks.ts:173](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/OrganizationFunds/OrganizationFundsMocks.ts#L173) + +## Type declaration + +### request + +> **request**: `object` + +#### request.query + +> **query**: `DocumentNode` = `FUND_LIST` + +#### request.variables + +> **variables**: `object` + +#### request.variables.filter + +> **filter**: `string` = `''` + +#### request.variables.orderBy + +> **orderBy**: `string` = `'createdAt_DESC'` + +#### request.variables.organizationId + +> **organizationId**: `string` = `'orgId'` + +### result + +> **result**: `object` + +#### result.data + +> **data**: `object` + +#### result.data.fundsByOrganization + +> **fundsByOrganization**: `any`[] = `[]` diff --git a/docs/docs/auto-docs/screens/OrganizationPeople/AddMember/README.md b/docs/docs/auto-docs/screens/OrganizationPeople/AddMember/README.md new file mode 100644 index 0000000000..df9c166c1f --- /dev/null +++ b/docs/docs/auto-docs/screens/OrganizationPeople/AddMember/README.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / screens/OrganizationPeople/AddMember + +# screens/OrganizationPeople/AddMember + +## Functions + +- [default](functions/default.md) diff --git a/docs/docs/auto-docs/screens/OrganizationPeople/AddMember/functions/default.md b/docs/docs/auto-docs/screens/OrganizationPeople/AddMember/functions/default.md new file mode 100644 index 0000000000..379041b661 --- /dev/null +++ b/docs/docs/auto-docs/screens/OrganizationPeople/AddMember/functions/default.md @@ -0,0 +1,23 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [screens/OrganizationPeople/AddMember](../README.md) / default + +# Function: default() + +> **default**(): `JSX.Element` + +Defined in: [src/screens/OrganizationPeople/AddMember.tsx:62](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/OrganizationPeople/AddMember.tsx#L62) + +AddMember component is used to add new members to the organization by selecting from +the existing users or creating a new user. +It uses the following queries and mutations: + ORGANIZATIONS_LIST, + ORGANIZATIONS_MEMBER_CONNECTION_LIST, + USERS_CONNECTION_LIST, + ADD_MEMBER_MUTATION,SIGNUP_MUTATION. + +## Returns + +`JSX.Element` diff --git a/docs/docs/auto-docs/screens/OrganizationPeople/MockDataTypes/README.md b/docs/docs/auto-docs/screens/OrganizationPeople/MockDataTypes/README.md new file mode 100644 index 0000000000..361f573582 --- /dev/null +++ b/docs/docs/auto-docs/screens/OrganizationPeople/MockDataTypes/README.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / screens/OrganizationPeople/MockDataTypes + +# screens/OrganizationPeople/MockDataTypes + +## Type Aliases + +- [TestMock](type-aliases/TestMock.md) diff --git a/docs/docs/auto-docs/screens/OrganizationPeople/MockDataTypes/type-aliases/TestMock.md b/docs/docs/auto-docs/screens/OrganizationPeople/MockDataTypes/type-aliases/TestMock.md new file mode 100644 index 0000000000..334cece0f2 --- /dev/null +++ b/docs/docs/auto-docs/screens/OrganizationPeople/MockDataTypes/type-aliases/TestMock.md @@ -0,0 +1,153 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [screens/OrganizationPeople/MockDataTypes](../README.md) / TestMock + +# Type Alias: TestMock + +> **TestMock**: `object` + +Defined in: [src/screens/OrganizationPeople/MockDataTypes.ts:34](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/OrganizationPeople/MockDataTypes.ts#L34) + +## Type declaration + +### newData()? + +> `optional` **newData**: () => [`TestMock`](TestMock.md)\[`"result"`\] + +#### Returns + +[`TestMock`](TestMock.md)\[`"result"`\] + +### request + +> **request**: `object` + +#### request.query + +> **query**: `DocumentNode` + +#### request.variables + +> **variables**: `object` + +#### request.variables.email? + +> `optional` **email**: `string` + +#### request.variables.firstName? + +> `optional` **firstName**: `string` + +#### request.variables.firstName\_contains? + +> `optional` **firstName\_contains**: `string` + +#### request.variables.firstNameContains? + +> `optional` **firstNameContains**: `string` + +#### request.variables.id? + +> `optional` **id**: `string` + +#### request.variables.id\_not\_in? + +> `optional` **id\_not\_in**: `string`[] + +#### request.variables.lastName? + +> `optional` **lastName**: `string` + +#### request.variables.lastName\_contains? + +> `optional` **lastName\_contains**: `string` + +#### request.variables.lastNameContains? + +> `optional` **lastNameContains**: `string` + +#### request.variables.orgid? + +> `optional` **orgid**: `string` + +#### request.variables.orgId? + +> `optional` **orgId**: `string` + +#### request.variables.password? + +> `optional` **password**: `string` + +#### request.variables.userid? + +> `optional` **userid**: `string` + +### result + +> **result**: `object` + +#### result.\_\_typename? + +> `optional` **\_\_typename**: `string` + +#### result.data + +> **data**: `object` + +#### result.data.\_\_typename? + +> `optional` **\_\_typename**: `string` + +#### result.data.createMember? + +> `optional` **createMember**: `object` + +#### result.data.createMember.\_\_typename + +> **\_\_typename**: `string` + +#### result.data.createMember.\_id + +> **\_id**: `string` + +#### result.data.organizations? + +> `optional` **organizations**: [`InterfaceQueryOrganizationsListObject`](../../../../utils/interfaces/interfaces/InterfaceQueryOrganizationsListObject.md)[] + +#### result.data.organizationsMemberConnection? + +> `optional` **organizationsMemberConnection**: `object` + +#### result.data.organizationsMemberConnection.edges? + +> `optional` **edges**: `Edge`[] + +#### result.data.organizationsMemberConnection.user? + +> `optional` **user**: `Edge`[] + +#### result.data.signUp? + +> `optional` **signUp**: `object` + +#### result.data.signUp.accessToken? + +> `optional` **accessToken**: `string` + +#### result.data.signUp.refreshToken? + +> `optional` **refreshToken**: `string` + +#### result.data.signUp.user? + +> `optional` **user**: `object` + +#### result.data.signUp.user.\_id + +> **\_id**: `string` + +#### result.data.users? + +> `optional` **users**: `object`[] diff --git a/docs/docs/auto-docs/screens/OrganizationPeople/OrganizationPeople/README.md b/docs/docs/auto-docs/screens/OrganizationPeople/OrganizationPeople/README.md new file mode 100644 index 0000000000..77578fc43c --- /dev/null +++ b/docs/docs/auto-docs/screens/OrganizationPeople/OrganizationPeople/README.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / screens/OrganizationPeople/OrganizationPeople + +# screens/OrganizationPeople/OrganizationPeople + +## Functions + +- [default](functions/default.md) diff --git a/docs/docs/auto-docs/screens/OrganizationPeople/OrganizationPeople/functions/default.md b/docs/docs/auto-docs/screens/OrganizationPeople/OrganizationPeople/functions/default.md new file mode 100644 index 0000000000..1a6aeb22ad --- /dev/null +++ b/docs/docs/auto-docs/screens/OrganizationPeople/OrganizationPeople/functions/default.md @@ -0,0 +1,21 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [screens/OrganizationPeople/OrganizationPeople](../README.md) / default + +# Function: default() + +> **default**(): `JSX.Element` + +Defined in: [src/screens/OrganizationPeople/OrganizationPeople.tsx:31](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/OrganizationPeople/OrganizationPeople.tsx#L31) + +OrganizationPeople component is used to display the list of members, admins and users of the organization. +It also provides the functionality to search the members, admins and users by their full name. +It also provides the functionality to remove the members and admins from the organization. + +## Returns + +`JSX.Element` + +JSX.Element which contains the list of members, admins and users of the organization. diff --git a/docs/docs/auto-docs/screens/OrganizationTags/OrganizationTags/README.md b/docs/docs/auto-docs/screens/OrganizationTags/OrganizationTags/README.md new file mode 100644 index 0000000000..baa960732c --- /dev/null +++ b/docs/docs/auto-docs/screens/OrganizationTags/OrganizationTags/README.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / screens/OrganizationTags/OrganizationTags + +# screens/OrganizationTags/OrganizationTags + +## Functions + +- [default](functions/default.md) diff --git a/docs/docs/auto-docs/screens/OrganizationTags/OrganizationTags/functions/default.md b/docs/docs/auto-docs/screens/OrganizationTags/OrganizationTags/functions/default.md new file mode 100644 index 0000000000..3c1370996d --- /dev/null +++ b/docs/docs/auto-docs/screens/OrganizationTags/OrganizationTags/functions/default.md @@ -0,0 +1,20 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [screens/OrganizationTags/OrganizationTags](../README.md) / default + +# Function: default() + +> **default**(): `JSX.Element` + +Defined in: [src/screens/OrganizationTags/OrganizationTags.tsx:39](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/OrganizationTags/OrganizationTags.tsx#L39) + +Component that renders the Organization Tags screen when the app navigates to '/orgtags/:orgId'. + +This component does not accept any props and is responsible for displaying +the content associated with the corresponding route. + +## Returns + +`JSX.Element` diff --git a/docs/docs/auto-docs/screens/OrganizationTags/OrganizationTagsMocks/README.md b/docs/docs/auto-docs/screens/OrganizationTags/OrganizationTagsMocks/README.md new file mode 100644 index 0000000000..493d797555 --- /dev/null +++ b/docs/docs/auto-docs/screens/OrganizationTags/OrganizationTagsMocks/README.md @@ -0,0 +1,12 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / screens/OrganizationTags/OrganizationTagsMocks + +# screens/OrganizationTags/OrganizationTagsMocks + +## Variables + +- [MOCKS](variables/MOCKS.md) +- [MOCKS\_ERROR](variables/MOCKS_ERROR.md) diff --git a/docs/docs/auto-docs/screens/OrganizationTags/OrganizationTagsMocks/variables/MOCKS.md b/docs/docs/auto-docs/screens/OrganizationTags/OrganizationTagsMocks/variables/MOCKS.md new file mode 100644 index 0000000000..c09878f1c2 --- /dev/null +++ b/docs/docs/auto-docs/screens/OrganizationTags/OrganizationTagsMocks/variables/MOCKS.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [screens/OrganizationTags/OrganizationTagsMocks](../README.md) / MOCKS + +# Variable: MOCKS + +> `const` **MOCKS**: (\{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `after`: `string`; `first`: `number`; `id`: `string`; `name`: `undefined`; `organizationId`: `undefined`; `sortedBy`: \{ `id`: `string`; \}; `where`: \{ `name`: \{ `starts_with`: `string`; \}; \}; \}; \}; `result`: \{ `data`: \{ `createUserTag`: `undefined`; `organizations`: `object`[]; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `after`: `undefined`; `first`: `number`; `id`: `string`; `name`: `undefined`; `organizationId`: `undefined`; `sortedBy`: \{ `id`: `string`; \}; `where`: \{ `name`: \{ `starts_with`: `string`; \}; \}; \}; \}; `result`: \{ `data`: \{ `createUserTag`: `undefined`; `organizations`: `object`[]; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `after`: `undefined`; `first`: `undefined`; `id`: `undefined`; `name`: `string`; `organizationId`: `string`; `sortedBy`: `undefined`; `where`: `undefined`; \}; \}; `result`: \{ `data`: \{ `createUserTag`: \{ `_id`: `string`; \}; `organizations`: `undefined`; \}; \}; \})[] + +Defined in: [src/screens/OrganizationTags/OrganizationTagsMocks.ts:5](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/OrganizationTags/OrganizationTagsMocks.ts#L5) diff --git a/docs/docs/auto-docs/screens/OrganizationTags/OrganizationTagsMocks/variables/MOCKS_ERROR.md b/docs/docs/auto-docs/screens/OrganizationTags/OrganizationTagsMocks/variables/MOCKS_ERROR.md new file mode 100644 index 0000000000..00a2cdf2e5 --- /dev/null +++ b/docs/docs/auto-docs/screens/OrganizationTags/OrganizationTagsMocks/variables/MOCKS_ERROR.md @@ -0,0 +1,57 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [screens/OrganizationTags/OrganizationTagsMocks](../README.md) / MOCKS\_ERROR + +# Variable: MOCKS\_ERROR + +> `const` **MOCKS\_ERROR**: `object`[] + +Defined in: [src/screens/OrganizationTags/OrganizationTagsMocks.ts:413](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/OrganizationTags/OrganizationTagsMocks.ts#L413) + +## Type declaration + +### error + +> **error**: `Error` + +### request + +> **request**: `object` + +#### request.query + +> **query**: `DocumentNode` = `ORGANIZATION_USER_TAGS_LIST` + +#### request.variables + +> **variables**: `object` + +#### request.variables.first + +> **first**: `number` = `TAGS_QUERY_DATA_CHUNK_SIZE` + +#### request.variables.id + +> **id**: `string` = `'orgId'` + +#### request.variables.sortedBy + +> **sortedBy**: `object` + +#### request.variables.sortedBy.id + +> **id**: `string` = `'DESCENDING'` + +#### request.variables.where + +> **where**: `object` + +#### request.variables.where.name + +> **name**: `object` + +#### request.variables.where.name.starts\_with + +> **starts\_with**: `string` = `''` diff --git a/docs/docs/auto-docs/screens/OrganizationVenues/OrganizationVenues/README.md b/docs/docs/auto-docs/screens/OrganizationVenues/OrganizationVenues/README.md new file mode 100644 index 0000000000..dfc4287d24 --- /dev/null +++ b/docs/docs/auto-docs/screens/OrganizationVenues/OrganizationVenues/README.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / screens/OrganizationVenues/OrganizationVenues + +# screens/OrganizationVenues/OrganizationVenues + +## Functions + +- [default](functions/default.md) diff --git a/docs/docs/auto-docs/screens/OrganizationVenues/OrganizationVenues/functions/default.md b/docs/docs/auto-docs/screens/OrganizationVenues/OrganizationVenues/functions/default.md new file mode 100644 index 0000000000..7ed9e5ef03 --- /dev/null +++ b/docs/docs/auto-docs/screens/OrganizationVenues/OrganizationVenues/functions/default.md @@ -0,0 +1,18 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [screens/OrganizationVenues/OrganizationVenues](../README.md) / default + +# Function: default() + +> **default**(): `JSX.Element` + +Defined in: [src/screens/OrganizationVenues/OrganizationVenues.tsx:23](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/OrganizationVenues/OrganizationVenues.tsx#L23) + +Component to manage and display the list of organization venues. +Handles searching, sorting, and CRUD operations for venues. + +## Returns + +`JSX.Element` diff --git a/docs/docs/auto-docs/screens/PageNotFound/PageNotFound/README.md b/docs/docs/auto-docs/screens/PageNotFound/PageNotFound/README.md new file mode 100644 index 0000000000..429e758991 --- /dev/null +++ b/docs/docs/auto-docs/screens/PageNotFound/PageNotFound/README.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / screens/PageNotFound/PageNotFound + +# screens/PageNotFound/PageNotFound + +## Functions + +- [default](functions/default.md) diff --git a/docs/docs/auto-docs/screens/PageNotFound/PageNotFound/functions/default.md b/docs/docs/auto-docs/screens/PageNotFound/PageNotFound/functions/default.md new file mode 100644 index 0000000000..2afaa42125 --- /dev/null +++ b/docs/docs/auto-docs/screens/PageNotFound/PageNotFound/functions/default.md @@ -0,0 +1,19 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [screens/PageNotFound/PageNotFound](../README.md) / default + +# Function: default() + +> **default**(): `Element` + +Defined in: [src/screens/PageNotFound/PageNotFound.tsx:15](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/PageNotFound/PageNotFound.tsx#L15) + +The `PageNotFound` component displays a 404 error page when a user navigates to a non-existent route. +It shows a message indicating that the page was not found and provides a link to redirect users back +to the appropriate home page based on their admin status. + +## Returns + +`Element` diff --git a/docs/docs/auto-docs/screens/Requests/Requests/README.md b/docs/docs/auto-docs/screens/Requests/Requests/README.md new file mode 100644 index 0000000000..b20e72c1ef --- /dev/null +++ b/docs/docs/auto-docs/screens/Requests/Requests/README.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / screens/Requests/Requests + +# screens/Requests/Requests + +## Functions + +- [default](functions/default.md) diff --git a/docs/docs/auto-docs/screens/Requests/Requests/functions/default.md b/docs/docs/auto-docs/screens/Requests/Requests/functions/default.md new file mode 100644 index 0000000000..b35509f275 --- /dev/null +++ b/docs/docs/auto-docs/screens/Requests/Requests/functions/default.md @@ -0,0 +1,18 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [screens/Requests/Requests](../README.md) / default + +# Function: default() + +> **default**(): `Element` + +Defined in: [src/screens/Requests/Requests.tsx:34](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/Requests/Requests.tsx#L34) + +The `Requests` component fetches and displays a paginated list of membership requests +for an organization, with functionality for searching, filtering, and infinite scrolling. + +## Returns + +`Element` diff --git a/docs/docs/auto-docs/screens/Requests/RequestsMocks/README.md b/docs/docs/auto-docs/screens/Requests/RequestsMocks/README.md new file mode 100644 index 0000000000..c463ae9308 --- /dev/null +++ b/docs/docs/auto-docs/screens/Requests/RequestsMocks/README.md @@ -0,0 +1,17 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / screens/Requests/RequestsMocks + +# screens/Requests/RequestsMocks + +## Variables + +- [EMPTY\_MOCKS](variables/EMPTY_MOCKS.md) +- [EMPTY\_REQUEST\_MOCKS](variables/EMPTY_REQUEST_MOCKS.md) +- [MOCKS](variables/MOCKS.md) +- [MOCKS\_WITH\_ERROR](variables/MOCKS_WITH_ERROR.md) +- [MOCKS2](variables/MOCKS2.md) +- [MOCKS3](variables/MOCKS3.md) +- [MOCKS4](variables/MOCKS4.md) diff --git a/docs/docs/auto-docs/screens/Requests/RequestsMocks/variables/EMPTY_MOCKS.md b/docs/docs/auto-docs/screens/Requests/RequestsMocks/variables/EMPTY_MOCKS.md new file mode 100644 index 0000000000..25504e9875 --- /dev/null +++ b/docs/docs/auto-docs/screens/Requests/RequestsMocks/variables/EMPTY_MOCKS.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [screens/Requests/RequestsMocks](../README.md) / EMPTY\_MOCKS + +# Variable: EMPTY\_MOCKS + +> `const` **EMPTY\_MOCKS**: (\{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `first`: `number`; `firstName_contains`: `string`; `id`: `string`; `skip`: `number`; \}; \}; `result`: \{ `data`: \{ `organizations`: `object`[]; `organizationsConnection`: `undefined`; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: `undefined`; \}; `result`: \{ `data`: \{ `organizations`: `undefined`; `organizationsConnection`: `any`[]; \}; \}; \})[] + +Defined in: [src/screens/Requests/RequestsMocks.ts:522](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/Requests/RequestsMocks.ts#L522) diff --git a/docs/docs/auto-docs/screens/Requests/RequestsMocks/variables/EMPTY_REQUEST_MOCKS.md b/docs/docs/auto-docs/screens/Requests/RequestsMocks/variables/EMPTY_REQUEST_MOCKS.md new file mode 100644 index 0000000000..d50347d4c5 --- /dev/null +++ b/docs/docs/auto-docs/screens/Requests/RequestsMocks/variables/EMPTY_REQUEST_MOCKS.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [screens/Requests/RequestsMocks](../README.md) / EMPTY\_REQUEST\_MOCKS + +# Variable: EMPTY\_REQUEST\_MOCKS + +> `const` **EMPTY\_REQUEST\_MOCKS**: (\{ `request`: \{ `query`: `DocumentNode`; `variables`: `undefined`; \}; `result`: \{ `data`: \{ `organizations`: `undefined`; `organizationsConnection`: `object`[]; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `first`: `number`; `firstName_contains`: `string`; `id`: `string`; `skip`: `number`; \}; \}; `result`: \{ `data`: \{ `organizations`: `object`[]; `organizationsConnection`: `undefined`; \}; \}; \})[] + +Defined in: [src/screens/Requests/RequestsMocks.ts:6](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/Requests/RequestsMocks.ts#L6) diff --git a/docs/docs/auto-docs/screens/Requests/RequestsMocks/variables/MOCKS.md b/docs/docs/auto-docs/screens/Requests/RequestsMocks/variables/MOCKS.md new file mode 100644 index 0000000000..3cdf4c651b --- /dev/null +++ b/docs/docs/auto-docs/screens/Requests/RequestsMocks/variables/MOCKS.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [screens/Requests/RequestsMocks](../README.md) / MOCKS + +# Variable: MOCKS + +> `const` **MOCKS**: (\{ `request`: \{ `query`: `DocumentNode`; `variables`: `undefined`; \}; `result`: \{ `data`: \{ `organizations`: `undefined`; `organizationsConnection`: `object`[]; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `first`: `number`; `firstName_contains`: `string`; `id`: `string`; `skip`: `number`; \}; \}; `result`: \{ `data`: \{ `organizations`: `object`[]; `organizationsConnection`: `undefined`; \}; \}; \})[] + +Defined in: [src/screens/Requests/RequestsMocks.ts:71](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/Requests/RequestsMocks.ts#L71) diff --git a/docs/docs/auto-docs/screens/Requests/RequestsMocks/variables/MOCKS2.md b/docs/docs/auto-docs/screens/Requests/RequestsMocks/variables/MOCKS2.md new file mode 100644 index 0000000000..211b0c2c62 --- /dev/null +++ b/docs/docs/auto-docs/screens/Requests/RequestsMocks/variables/MOCKS2.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [screens/Requests/RequestsMocks](../README.md) / MOCKS2 + +# Variable: MOCKS2 + +> `const` **MOCKS2**: (\{ `request`: \{ `query`: `DocumentNode`; `variables`: `undefined`; \}; `result`: \{ `data`: \{ `organizations`: `undefined`; `organizationsConnection`: `object`[]; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `first`: `number`; `firstName_contains`: `string`; `id`: `string`; `skip`: `number`; \}; \}; `result`: \{ `data`: \{ `organizations`: `object`[]; `organizationsConnection`: `undefined`; \}; \}; \})[] + +Defined in: [src/screens/Requests/RequestsMocks.ts:387](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/Requests/RequestsMocks.ts#L387) diff --git a/docs/docs/auto-docs/screens/Requests/RequestsMocks/variables/MOCKS3.md b/docs/docs/auto-docs/screens/Requests/RequestsMocks/variables/MOCKS3.md new file mode 100644 index 0000000000..a3337791f9 --- /dev/null +++ b/docs/docs/auto-docs/screens/Requests/RequestsMocks/variables/MOCKS3.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [screens/Requests/RequestsMocks](../README.md) / MOCKS3 + +# Variable: MOCKS3 + +> `const` **MOCKS3**: (\{ `request`: \{ `query`: `DocumentNode`; `variables`: `undefined`; \}; `result`: \{ `data`: \{ `organizations`: `undefined`; `organizationsConnection`: `object`[]; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `first`: `number`; `firstName_contains`: `string`; `id`: `string`; `skip`: `number`; \}; \}; `result`: \{ `data`: \{ `organizations`: `any`[]; `organizationsConnection`: `undefined`; \}; \}; \})[] + +Defined in: [src/screens/Requests/RequestsMocks.ts:462](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/Requests/RequestsMocks.ts#L462) diff --git a/docs/docs/auto-docs/screens/Requests/RequestsMocks/variables/MOCKS4.md b/docs/docs/auto-docs/screens/Requests/RequestsMocks/variables/MOCKS4.md new file mode 100644 index 0000000000..abd2c813bf --- /dev/null +++ b/docs/docs/auto-docs/screens/Requests/RequestsMocks/variables/MOCKS4.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [screens/Requests/RequestsMocks](../README.md) / MOCKS4 + +# Variable: MOCKS4 + +> `const` **MOCKS4**: (\{ `request`: \{ `query`: `DocumentNode`; `variables`: `undefined`; \}; `result`: \{ `data`: \{ `organizations`: `undefined`; `organizationsConnection`: `object`[]; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `first`: `number`; `firstName_contains`: `string`; `id`: `string`; `skip`: `number`; \}; \}; `result`: \{ `data`: \{ `organizations`: `object`[]; `organizationsConnection`: `undefined`; \}; \}; \})[] + +Defined in: [src/screens/Requests/RequestsMocks.ts:155](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/Requests/RequestsMocks.ts#L155) diff --git a/docs/docs/auto-docs/screens/Requests/RequestsMocks/variables/MOCKS_WITH_ERROR.md b/docs/docs/auto-docs/screens/Requests/RequestsMocks/variables/MOCKS_WITH_ERROR.md new file mode 100644 index 0000000000..0ba6939aea --- /dev/null +++ b/docs/docs/auto-docs/screens/Requests/RequestsMocks/variables/MOCKS_WITH_ERROR.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [screens/Requests/RequestsMocks](../README.md) / MOCKS\_WITH\_ERROR + +# Variable: MOCKS\_WITH\_ERROR + +> `const` **MOCKS\_WITH\_ERROR**: (\{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `first`: `number`; `firstName_contains`: `string`; `id`: `string`; `skip`: `number`; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: `undefined`; \}; \})[] + +Defined in: [src/screens/Requests/RequestsMocks.ts:556](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/Requests/RequestsMocks.ts#L556) diff --git a/docs/docs/auto-docs/screens/SubTags/SubTags/README.md b/docs/docs/auto-docs/screens/SubTags/SubTags/README.md new file mode 100644 index 0000000000..37ac77a0df --- /dev/null +++ b/docs/docs/auto-docs/screens/SubTags/SubTags/README.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / screens/SubTags/SubTags + +# screens/SubTags/SubTags + +## Functions + +- [default](functions/default.md) diff --git a/docs/docs/auto-docs/screens/SubTags/SubTags/functions/default.md b/docs/docs/auto-docs/screens/SubTags/SubTags/functions/default.md new file mode 100644 index 0000000000..dae63d53f4 --- /dev/null +++ b/docs/docs/auto-docs/screens/SubTags/SubTags/functions/default.md @@ -0,0 +1,20 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [screens/SubTags/SubTags](../README.md) / default + +# Function: default() + +> **default**(): `JSX.Element` + +Defined in: [src/screens/SubTags/SubTags.tsx:40](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/SubTags/SubTags.tsx#L40) + +Component that renders the SubTags screen when the app navigates to '/orgtags/:orgId/subtags/:tagId'. + +This component does not accept any props and is responsible for displaying +the content associated with the corresponding route. + +## Returns + +`JSX.Element` diff --git a/docs/docs/auto-docs/screens/SubTags/SubTagsMocks/README.md b/docs/docs/auto-docs/screens/SubTags/SubTagsMocks/README.md new file mode 100644 index 0000000000..1d55807317 --- /dev/null +++ b/docs/docs/auto-docs/screens/SubTags/SubTagsMocks/README.md @@ -0,0 +1,12 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / screens/SubTags/SubTagsMocks + +# screens/SubTags/SubTagsMocks + +## Variables + +- [MOCKS](variables/MOCKS.md) +- [MOCKS\_ERROR\_SUB\_TAGS](variables/MOCKS_ERROR_SUB_TAGS.md) diff --git a/docs/docs/auto-docs/screens/SubTags/SubTagsMocks/variables/MOCKS.md b/docs/docs/auto-docs/screens/SubTags/SubTagsMocks/variables/MOCKS.md new file mode 100644 index 0000000000..a8a8b058ad --- /dev/null +++ b/docs/docs/auto-docs/screens/SubTags/SubTagsMocks/variables/MOCKS.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [screens/SubTags/SubTagsMocks](../README.md) / MOCKS + +# Variable: MOCKS + +> `const` **MOCKS**: (\{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `after`: `string`; `first`: `number`; `id`: `string`; `name`: `undefined`; `organizationId`: `undefined`; `parentTagId`: `undefined`; `sortedBy`: \{ `id`: `string`; \}; `where`: \{ `name`: \{ `starts_with`: `string`; \}; \}; \}; \}; `result`: \{ `data`: \{ `createUserTag`: `undefined`; `getChildTags`: \{ `ancestorTags`: `any`[]; `childTags`: \{ `edges`: `object`[]; `pageInfo`: \{ `endCursor`: `string`; `hasNextPage`: `boolean`; `hasPreviousPage`: `boolean`; `startCursor`: `string`; \}; `totalCount`: `number`; \}; `name`: `string`; \}; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `after`: `undefined`; `first`: `number`; `id`: `string`; `name`: `undefined`; `organizationId`: `undefined`; `parentTagId`: `undefined`; `sortedBy`: \{ `id`: `string`; \}; `where`: \{ `name`: \{ `starts_with`: `string`; \}; \}; \}; \}; `result`: \{ `data`: \{ `createUserTag`: `undefined`; `getChildTags`: \{ `ancestorTags`: `object`[]; `childTags`: \{ `edges`: `object`[]; `pageInfo`: \{ `endCursor`: `string`; `hasNextPage`: `boolean`; `hasPreviousPage`: `boolean`; `startCursor`: `string`; \}; `totalCount`: `number`; \}; `name`: `string`; \}; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `after`: `undefined`; `first`: `undefined`; `id`: `undefined`; `name`: `string`; `organizationId`: `string`; `parentTagId`: `string`; `sortedBy`: `undefined`; `where`: `undefined`; \}; \}; `result`: \{ `data`: \{ `createUserTag`: \{ `_id`: `string`; \}; `getChildTags`: `undefined`; \}; \}; \})[] + +Defined in: [src/screens/SubTags/SubTagsMocks.ts:5](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/SubTags/SubTagsMocks.ts#L5) diff --git a/docs/docs/auto-docs/screens/SubTags/SubTagsMocks/variables/MOCKS_ERROR_SUB_TAGS.md b/docs/docs/auto-docs/screens/SubTags/SubTagsMocks/variables/MOCKS_ERROR_SUB_TAGS.md new file mode 100644 index 0000000000..836fac8173 --- /dev/null +++ b/docs/docs/auto-docs/screens/SubTags/SubTagsMocks/variables/MOCKS_ERROR_SUB_TAGS.md @@ -0,0 +1,57 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [screens/SubTags/SubTagsMocks](../README.md) / MOCKS\_ERROR\_SUB\_TAGS + +# Variable: MOCKS\_ERROR\_SUB\_TAGS + +> `const` **MOCKS\_ERROR\_SUB\_TAGS**: `object`[] + +Defined in: [src/screens/SubTags/SubTagsMocks.ts:489](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/SubTags/SubTagsMocks.ts#L489) + +## Type declaration + +### error + +> **error**: `Error` + +### request + +> **request**: `object` + +#### request.query + +> **query**: `DocumentNode` = `USER_TAG_SUB_TAGS` + +#### request.variables + +> **variables**: `object` + +#### request.variables.first + +> **first**: `number` = `TAGS_QUERY_DATA_CHUNK_SIZE` + +#### request.variables.id + +> **id**: `string` = `'1'` + +#### request.variables.sortedBy + +> **sortedBy**: `object` + +#### request.variables.sortedBy.id + +> **id**: `string` = `'DESCENDING'` + +#### request.variables.where + +> **where**: `object` + +#### request.variables.where.name + +> **name**: `object` + +#### request.variables.where.name.starts\_with + +> **starts\_with**: `string` = `''` diff --git a/docs/docs/auto-docs/screens/UserPortal/Campaigns/Campaigns/README.md b/docs/docs/auto-docs/screens/UserPortal/Campaigns/Campaigns/README.md new file mode 100644 index 0000000000..5807835f4b --- /dev/null +++ b/docs/docs/auto-docs/screens/UserPortal/Campaigns/Campaigns/README.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / screens/UserPortal/Campaigns/Campaigns + +# screens/UserPortal/Campaigns/Campaigns + +## Functions + +- [default](functions/default.md) diff --git a/docs/docs/auto-docs/screens/UserPortal/Campaigns/Campaigns/functions/default.md b/docs/docs/auto-docs/screens/UserPortal/Campaigns/Campaigns/functions/default.md new file mode 100644 index 0000000000..bf3c864c0a --- /dev/null +++ b/docs/docs/auto-docs/screens/UserPortal/Campaigns/Campaigns/functions/default.md @@ -0,0 +1,20 @@ +[**talawa-admin**](../../../../../README.md) + +*** + +[talawa-admin](../../../../../modules.md) / [screens/UserPortal/Campaigns/Campaigns](../README.md) / default + +# Function: default() + +> **default**(): `Element` + +Defined in: [src/screens/UserPortal/Campaigns/Campaigns.tsx:30](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/UserPortal/Campaigns/Campaigns.tsx#L30) + +The `Campaigns` component displays a list of fundraising campaigns for a specific organization. +It allows users to search, sort, and view details about each campaign. Users can also add pledges to active campaigns. + +## Returns + +`Element` + +The rendered component displaying the campaigns. diff --git a/docs/docs/auto-docs/screens/UserPortal/Campaigns/CampaignsMocks/README.md b/docs/docs/auto-docs/screens/UserPortal/Campaigns/CampaignsMocks/README.md new file mode 100644 index 0000000000..ca2d8df243 --- /dev/null +++ b/docs/docs/auto-docs/screens/UserPortal/Campaigns/CampaignsMocks/README.md @@ -0,0 +1,13 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / screens/UserPortal/Campaigns/CampaignsMocks + +# screens/UserPortal/Campaigns/CampaignsMocks + +## Variables + +- [EMPTY\_MOCKS](variables/EMPTY_MOCKS.md) +- [MOCKS](variables/MOCKS.md) +- [USER\_FUND\_CAMPAIGNS\_ERROR](variables/USER_FUND_CAMPAIGNS_ERROR.md) diff --git a/docs/docs/auto-docs/screens/UserPortal/Campaigns/CampaignsMocks/variables/EMPTY_MOCKS.md b/docs/docs/auto-docs/screens/UserPortal/Campaigns/CampaignsMocks/variables/EMPTY_MOCKS.md new file mode 100644 index 0000000000..cda21be513 --- /dev/null +++ b/docs/docs/auto-docs/screens/UserPortal/Campaigns/CampaignsMocks/variables/EMPTY_MOCKS.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../../../README.md) + +*** + +[talawa-admin](../../../../../modules.md) / [screens/UserPortal/Campaigns/CampaignsMocks](../README.md) / EMPTY\_MOCKS + +# Variable: EMPTY\_MOCKS + +> `const` **EMPTY\_MOCKS**: (\{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `id`: `string`; \}; \}; `result`: \{ `data`: \{ `user`: \{ `__typename`: `string`; `appUserProfile`: \{ `__typename`: `string`; `_id`: `string`; `adminFor`: `any`[]; `appLanguageCode`: `string`; `createdEvents`: `any`[]; `createdOrganizations`: `any`[]; `eventAdmin`: `any`[]; `isSuperAdmin`: `boolean`; `pluginCreationAllowed`: `boolean`; \}; `user`: \{ `__typename`: `string`; `_id`: `string`; `address`: \{ `__typename`: `string`; `city`: `string`; `countryCode`: `string`; `line1`: `string`; `state`: `string`; \}; `birthDate`: `any`; `createdAt`: `string`; `educationGrade`: `any`; `email`: `string`; `employmentStatus`: `any`; `firstName`: `string`; `gender`: `any`; `image`: `any`; `joinedOrganizations`: `object`[]; `lastName`: `string`; `maritalStatus`: `any`; `membershipRequests`: `any`[]; `phone`: `any`; `registeredEvents`: `any`[]; \}; \}; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `campaignOrderBy`: `string`; `where`: \{ `name_contains`: `string`; `organizationId`: `string`; \}; \}; \}; `result`: \{ `data`: \{ `getFundraisingCampaigns`: `any`[]; \}; \}; \})[] + +Defined in: [src/screens/UserPortal/Campaigns/CampaignsMocks.ts:236](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/UserPortal/Campaigns/CampaignsMocks.ts#L236) diff --git a/docs/docs/auto-docs/screens/UserPortal/Campaigns/CampaignsMocks/variables/MOCKS.md b/docs/docs/auto-docs/screens/UserPortal/Campaigns/CampaignsMocks/variables/MOCKS.md new file mode 100644 index 0000000000..7795f3d2b2 --- /dev/null +++ b/docs/docs/auto-docs/screens/UserPortal/Campaigns/CampaignsMocks/variables/MOCKS.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../../../README.md) + +*** + +[talawa-admin](../../../../../modules.md) / [screens/UserPortal/Campaigns/CampaignsMocks](../README.md) / MOCKS + +# Variable: MOCKS + +> `const` **MOCKS**: (\{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `id`: `string`; \}; \}; `result`: \{ `data`: \{ `user`: \{ `__typename`: `string`; `appUserProfile`: \{ `__typename`: `string`; `_id`: `string`; `adminFor`: `any`[]; `appLanguageCode`: `string`; `createdEvents`: `any`[]; `createdOrganizations`: `any`[]; `eventAdmin`: `any`[]; `isSuperAdmin`: `boolean`; `pluginCreationAllowed`: `boolean`; \}; `user`: \{ `__typename`: `string`; `_id`: `string`; `address`: \{ `__typename`: `string`; `city`: `string`; `countryCode`: `string`; `line1`: `string`; `state`: `string`; \}; `birthDate`: `any`; `createdAt`: `string`; `educationGrade`: `any`; `email`: `string`; `employmentStatus`: `any`; `firstName`: `string`; `gender`: `any`; `image`: `any`; `joinedOrganizations`: `object`[]; `lastName`: `string`; `maritalStatus`: `any`; `membershipRequests`: `any`[]; `phone`: `any`; `registeredEvents`: `any`[]; \}; \}; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `campaignOrderBy`: `string`; `where`: \{ `name_contains`: `string`; `organizationId`: `string`; \}; \}; \}; `result`: \{ `data`: \{ `getFundraisingCampaigns`: `object`[]; \}; \}; \})[] + +Defined in: [src/screens/UserPortal/Campaigns/CampaignsMocks.ts:61](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/UserPortal/Campaigns/CampaignsMocks.ts#L61) diff --git a/docs/docs/auto-docs/screens/UserPortal/Campaigns/CampaignsMocks/variables/USER_FUND_CAMPAIGNS_ERROR.md b/docs/docs/auto-docs/screens/UserPortal/Campaigns/CampaignsMocks/variables/USER_FUND_CAMPAIGNS_ERROR.md new file mode 100644 index 0000000000..7f54b8547b --- /dev/null +++ b/docs/docs/auto-docs/screens/UserPortal/Campaigns/CampaignsMocks/variables/USER_FUND_CAMPAIGNS_ERROR.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../../../README.md) + +*** + +[talawa-admin](../../../../../modules.md) / [screens/UserPortal/Campaigns/CampaignsMocks](../README.md) / USER\_FUND\_CAMPAIGNS\_ERROR + +# Variable: USER\_FUND\_CAMPAIGNS\_ERROR + +> `const` **USER\_FUND\_CAMPAIGNS\_ERROR**: (\{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `id`: `string`; \}; \}; `result`: \{ `data`: \{ `user`: \{ `__typename`: `string`; `appUserProfile`: \{ `__typename`: `string`; `_id`: `string`; `adminFor`: `any`[]; `appLanguageCode`: `string`; `createdEvents`: `any`[]; `createdOrganizations`: `any`[]; `eventAdmin`: `any`[]; `isSuperAdmin`: `boolean`; `pluginCreationAllowed`: `boolean`; \}; `user`: \{ `__typename`: `string`; `_id`: `string`; `address`: \{ `__typename`: `string`; `city`: `string`; `countryCode`: `string`; `line1`: `string`; `state`: `string`; \}; `birthDate`: `any`; `createdAt`: `string`; `educationGrade`: `any`; `email`: `string`; `employmentStatus`: `any`; `firstName`: `string`; `gender`: `any`; `image`: `any`; `joinedOrganizations`: `object`[]; `lastName`: `string`; `maritalStatus`: `any`; `membershipRequests`: `any`[]; `phone`: `any`; `registeredEvents`: `any`[]; \}; \}; \}; \}; \} \| \{ `error`: `Error`; `request`: \{ `query`: `DocumentNode`; `variables`: \{ `campaignOrderBy`: `string`; `where`: \{ `name_contains`: `string`; `organizationId`: `string`; \}; \}; \}; \})[] + +Defined in: [src/screens/UserPortal/Campaigns/CampaignsMocks.ts:257](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/UserPortal/Campaigns/CampaignsMocks.ts#L257) diff --git a/docs/docs/auto-docs/screens/UserPortal/Campaigns/PledgeModal/README.md b/docs/docs/auto-docs/screens/UserPortal/Campaigns/PledgeModal/README.md new file mode 100644 index 0000000000..ab50791109 --- /dev/null +++ b/docs/docs/auto-docs/screens/UserPortal/Campaigns/PledgeModal/README.md @@ -0,0 +1,15 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / screens/UserPortal/Campaigns/PledgeModal + +# screens/UserPortal/Campaigns/PledgeModal + +## Interfaces + +- [InterfacePledgeModal](interfaces/InterfacePledgeModal.md) + +## Functions + +- [default](functions/default.md) diff --git a/docs/docs/auto-docs/screens/UserPortal/Campaigns/PledgeModal/functions/default.md b/docs/docs/auto-docs/screens/UserPortal/Campaigns/PledgeModal/functions/default.md new file mode 100644 index 0000000000..a64f690ba0 --- /dev/null +++ b/docs/docs/auto-docs/screens/UserPortal/Campaigns/PledgeModal/functions/default.md @@ -0,0 +1,34 @@ +[**talawa-admin**](../../../../../README.md) + +*** + +[talawa-admin](../../../../../modules.md) / [screens/UserPortal/Campaigns/PledgeModal](../README.md) / default + +# Function: default() + +> **default**(`props`, `deprecatedLegacyContext`?): `ReactNode` + +Defined in: [src/screens/UserPortal/Campaigns/PledgeModal.tsx:54](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/UserPortal/Campaigns/PledgeModal.tsx#L54) + +`PledgeModal` is a React component that allows users to create or edit a pledge for a specific campaign. +It displays a form with inputs for pledge details such as amount, currency, dates, and users involved in the pledge. + +## Parameters + +### props + +[`InterfacePledgeModal`](../interfaces/InterfacePledgeModal.md) + +### deprecatedLegacyContext? + +`any` + +**Deprecated** + +**See** + +[React Docs](https://legacy.reactjs.org/docs/legacy-context.html#referencing-context-in-lifecycle-methods) + +## Returns + +`ReactNode` diff --git a/docs/docs/auto-docs/screens/UserPortal/Campaigns/PledgeModal/interfaces/InterfacePledgeModal.md b/docs/docs/auto-docs/screens/UserPortal/Campaigns/PledgeModal/interfaces/InterfacePledgeModal.md new file mode 100644 index 0000000000..ee1e76a4d4 --- /dev/null +++ b/docs/docs/auto-docs/screens/UserPortal/Campaigns/PledgeModal/interfaces/InterfacePledgeModal.md @@ -0,0 +1,83 @@ +[**talawa-admin**](../../../../../README.md) + +*** + +[talawa-admin](../../../../../modules.md) / [screens/UserPortal/Campaigns/PledgeModal](../README.md) / InterfacePledgeModal + +# Interface: InterfacePledgeModal + +Defined in: [src/screens/UserPortal/Campaigns/PledgeModal.tsx:30](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/UserPortal/Campaigns/PledgeModal.tsx#L30) + +Interface representing the properties for the `PledgeModal` component. + +## Properties + +### campaignId + +> **campaignId**: `string` + +Defined in: [src/screens/UserPortal/Campaigns/PledgeModal.tsx:33](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/UserPortal/Campaigns/PledgeModal.tsx#L33) + +*** + +### endDate + +> **endDate**: `Date` + +Defined in: [src/screens/UserPortal/Campaigns/PledgeModal.tsx:37](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/UserPortal/Campaigns/PledgeModal.tsx#L37) + +*** + +### hide() + +> **hide**: () => `void` + +Defined in: [src/screens/UserPortal/Campaigns/PledgeModal.tsx:32](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/UserPortal/Campaigns/PledgeModal.tsx#L32) + +#### Returns + +`void` + +*** + +### isOpen + +> **isOpen**: `boolean` + +Defined in: [src/screens/UserPortal/Campaigns/PledgeModal.tsx:31](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/UserPortal/Campaigns/PledgeModal.tsx#L31) + +*** + +### mode + +> **mode**: `"edit"` \| `"create"` + +Defined in: [src/screens/UserPortal/Campaigns/PledgeModal.tsx:38](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/UserPortal/Campaigns/PledgeModal.tsx#L38) + +*** + +### pledge + +> **pledge**: [`InterfacePledgeInfo`](../../../../../utils/interfaces/interfaces/InterfacePledgeInfo.md) + +Defined in: [src/screens/UserPortal/Campaigns/PledgeModal.tsx:35](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/UserPortal/Campaigns/PledgeModal.tsx#L35) + +*** + +### refetchPledge() + +> **refetchPledge**: () => `void` + +Defined in: [src/screens/UserPortal/Campaigns/PledgeModal.tsx:36](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/UserPortal/Campaigns/PledgeModal.tsx#L36) + +#### Returns + +`void` + +*** + +### userId + +> **userId**: `string` + +Defined in: [src/screens/UserPortal/Campaigns/PledgeModal.tsx:34](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/UserPortal/Campaigns/PledgeModal.tsx#L34) diff --git a/docs/docs/auto-docs/screens/UserPortal/Chat/Chat/README.md b/docs/docs/auto-docs/screens/UserPortal/Chat/Chat/README.md new file mode 100644 index 0000000000..00e857bbad --- /dev/null +++ b/docs/docs/auto-docs/screens/UserPortal/Chat/Chat/README.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / screens/UserPortal/Chat/Chat + +# screens/UserPortal/Chat/Chat + +## Functions + +- [default](functions/default.md) diff --git a/docs/docs/auto-docs/screens/UserPortal/Chat/Chat/functions/default.md b/docs/docs/auto-docs/screens/UserPortal/Chat/Chat/functions/default.md new file mode 100644 index 0000000000..4034afa231 --- /dev/null +++ b/docs/docs/auto-docs/screens/UserPortal/Chat/Chat/functions/default.md @@ -0,0 +1,15 @@ +[**talawa-admin**](../../../../../README.md) + +*** + +[talawa-admin](../../../../../modules.md) / [screens/UserPortal/Chat/Chat](../README.md) / default + +# Function: default() + +> **default**(): `JSX.Element` + +Defined in: [src/screens/UserPortal/Chat/Chat.tsx:102](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/UserPortal/Chat/Chat.tsx#L102) + +## Returns + +`JSX.Element` diff --git a/docs/docs/auto-docs/screens/UserPortal/Donate/Donate/README.md b/docs/docs/auto-docs/screens/UserPortal/Donate/Donate/README.md new file mode 100644 index 0000000000..fa9bf0a12b --- /dev/null +++ b/docs/docs/auto-docs/screens/UserPortal/Donate/Donate/README.md @@ -0,0 +1,15 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / screens/UserPortal/Donate/Donate + +# screens/UserPortal/Donate/Donate + +## Interfaces + +- [InterfaceDonationCardProps](interfaces/InterfaceDonationCardProps.md) + +## Functions + +- [default](functions/default.md) diff --git a/docs/docs/auto-docs/screens/UserPortal/Donate/Donate/functions/default.md b/docs/docs/auto-docs/screens/UserPortal/Donate/Donate/functions/default.md new file mode 100644 index 0000000000..7e48010ac4 --- /dev/null +++ b/docs/docs/auto-docs/screens/UserPortal/Donate/Donate/functions/default.md @@ -0,0 +1,38 @@ +[**talawa-admin**](../../../../../README.md) + +*** + +[talawa-admin](../../../../../modules.md) / [screens/UserPortal/Donate/Donate](../README.md) / default + +# Function: default() + +> **default**(): `JSX.Element` + +Defined in: [src/screens/UserPortal/Donate/Donate.tsx:65](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/UserPortal/Donate/Donate.tsx#L65) + +`donate` component allows users to make donations to an organization and view their previous donations. + +This component fetches donation-related data using GraphQL queries and allows users to make donations +using a mutation. It supports currency selection, donation amount input, and displays a paginated list +of previous donations. + +It includes: +- An input field for searching donations. +- A dropdown to select currency. +- An input field for entering donation amount. +- A button to submit the donation. +- A list of previous donations displayed in a paginated format. +- An organization sidebar for navigation. + +### GraphQL Queries +- `ORGANIZATION_DONATION_CONNECTION_LIST`: Fetches the list of donations for the organization. +- `USER_ORGANIZATION_CONNECTION`: Fetches organization details. + +### GraphQL Mutations +- `DONATE_TO_ORGANIZATION`: Performs the donation action. + +## Returns + +`JSX.Element` + +The rendered component. diff --git a/docs/docs/auto-docs/screens/UserPortal/Donate/Donate/interfaces/InterfaceDonationCardProps.md b/docs/docs/auto-docs/screens/UserPortal/Donate/Donate/interfaces/InterfaceDonationCardProps.md new file mode 100644 index 0000000000..6466fdf5f2 --- /dev/null +++ b/docs/docs/auto-docs/screens/UserPortal/Donate/Donate/interfaces/InterfaceDonationCardProps.md @@ -0,0 +1,57 @@ +[**talawa-admin**](../../../../../README.md) + +*** + +[talawa-admin](../../../../../modules.md) / [screens/UserPortal/Donate/Donate](../README.md) / InterfaceDonationCardProps + +# Interface: InterfaceDonationCardProps + +Defined in: [src/screens/UserPortal/Donate/Donate.tsx:23](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/UserPortal/Donate/Donate.tsx#L23) + +## Properties + +### amount + +> **amount**: `string` + +Defined in: [src/screens/UserPortal/Donate/Donate.tsx:26](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/UserPortal/Donate/Donate.tsx#L26) + +*** + +### id + +> **id**: `string` + +Defined in: [src/screens/UserPortal/Donate/Donate.tsx:24](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/UserPortal/Donate/Donate.tsx#L24) + +*** + +### name + +> **name**: `string` + +Defined in: [src/screens/UserPortal/Donate/Donate.tsx:25](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/UserPortal/Donate/Donate.tsx#L25) + +*** + +### payPalId + +> **payPalId**: `string` + +Defined in: [src/screens/UserPortal/Donate/Donate.tsx:28](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/UserPortal/Donate/Donate.tsx#L28) + +*** + +### updatedAt + +> **updatedAt**: `string` + +Defined in: [src/screens/UserPortal/Donate/Donate.tsx:29](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/UserPortal/Donate/Donate.tsx#L29) + +*** + +### userId + +> **userId**: `string` + +Defined in: [src/screens/UserPortal/Donate/Donate.tsx:27](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/UserPortal/Donate/Donate.tsx#L27) diff --git a/docs/docs/auto-docs/screens/UserPortal/Events/Events/README.md b/docs/docs/auto-docs/screens/UserPortal/Events/Events/README.md new file mode 100644 index 0000000000..b2d99da6f3 --- /dev/null +++ b/docs/docs/auto-docs/screens/UserPortal/Events/Events/README.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / screens/UserPortal/Events/Events + +# screens/UserPortal/Events/Events + +## Functions + +- [default](functions/default.md) diff --git a/docs/docs/auto-docs/screens/UserPortal/Events/Events/functions/default.md b/docs/docs/auto-docs/screens/UserPortal/Events/Events/functions/default.md new file mode 100644 index 0000000000..8932dd6bc6 --- /dev/null +++ b/docs/docs/auto-docs/screens/UserPortal/Events/Events/functions/default.md @@ -0,0 +1,22 @@ +[**talawa-admin**](../../../../../README.md) + +*** + +[talawa-admin](../../../../../modules.md) / [screens/UserPortal/Events/Events](../README.md) / default + +# Function: default() + +> **default**(): `JSX.Element` + +Defined in: [src/screens/UserPortal/Events/Events.tsx:43](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/UserPortal/Events/Events.tsx#L43) + +Component to manage and display events for an organization. + +This component allows users to view, create, and manage events within an organization. +It includes a calendar view, a form to create new events, and various filters and settings. + +## Returns + +`JSX.Element` + +The JSX element for the events management interface. diff --git a/docs/docs/auto-docs/screens/UserPortal/LeaveOrganization/LeaveOrganization/README.md b/docs/docs/auto-docs/screens/UserPortal/LeaveOrganization/LeaveOrganization/README.md new file mode 100644 index 0000000000..62ef0a8db2 --- /dev/null +++ b/docs/docs/auto-docs/screens/UserPortal/LeaveOrganization/LeaveOrganization/README.md @@ -0,0 +1,16 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / screens/UserPortal/LeaveOrganization/LeaveOrganization + +# screens/UserPortal/LeaveOrganization/LeaveOrganization + +## Variables + +- [userEmail](variables/userEmail.md) +- [userId](variables/userId.md) + +## Functions + +- [default](functions/default.md) diff --git a/docs/docs/auto-docs/screens/UserPortal/LeaveOrganization/LeaveOrganization/functions/default.md b/docs/docs/auto-docs/screens/UserPortal/LeaveOrganization/LeaveOrganization/functions/default.md new file mode 100644 index 0000000000..1048326ac6 --- /dev/null +++ b/docs/docs/auto-docs/screens/UserPortal/LeaveOrganization/LeaveOrganization/functions/default.md @@ -0,0 +1,15 @@ +[**talawa-admin**](../../../../../README.md) + +*** + +[talawa-admin](../../../../../modules.md) / [screens/UserPortal/LeaveOrganization/LeaveOrganization](../README.md) / default + +# Function: default() + +> **default**(): `Element` + +Defined in: [src/screens/UserPortal/LeaveOrganization/LeaveOrganization.tsx:32](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/UserPortal/LeaveOrganization/LeaveOrganization.tsx#L32) + +## Returns + +`Element` diff --git a/docs/docs/auto-docs/screens/UserPortal/LeaveOrganization/LeaveOrganization/variables/userEmail.md b/docs/docs/auto-docs/screens/UserPortal/LeaveOrganization/LeaveOrganization/variables/userEmail.md new file mode 100644 index 0000000000..fbb51fdce9 --- /dev/null +++ b/docs/docs/auto-docs/screens/UserPortal/LeaveOrganization/LeaveOrganization/variables/userEmail.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../../../README.md) + +*** + +[talawa-admin](../../../../../modules.md) / [screens/UserPortal/LeaveOrganization/LeaveOrganization](../README.md) / userEmail + +# Variable: userEmail + +> `const` **userEmail**: `any` + +Defined in: [src/screens/UserPortal/LeaveOrganization/LeaveOrganization.tsx:13](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/UserPortal/LeaveOrganization/LeaveOrganization.tsx#L13) diff --git a/docs/docs/auto-docs/screens/UserPortal/LeaveOrganization/LeaveOrganization/variables/userId.md b/docs/docs/auto-docs/screens/UserPortal/LeaveOrganization/LeaveOrganization/variables/userId.md new file mode 100644 index 0000000000..efe04fb2db --- /dev/null +++ b/docs/docs/auto-docs/screens/UserPortal/LeaveOrganization/LeaveOrganization/variables/userId.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../../../README.md) + +*** + +[talawa-admin](../../../../../modules.md) / [screens/UserPortal/LeaveOrganization/LeaveOrganization](../README.md) / userId + +# Variable: userId + +> `const` **userId**: `any` + +Defined in: [src/screens/UserPortal/LeaveOrganization/LeaveOrganization.tsx:21](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/UserPortal/LeaveOrganization/LeaveOrganization.tsx#L21) diff --git a/docs/docs/auto-docs/screens/UserPortal/Organizations/Organizations/README.md b/docs/docs/auto-docs/screens/UserPortal/Organizations/Organizations/README.md new file mode 100644 index 0000000000..01e01664f8 --- /dev/null +++ b/docs/docs/auto-docs/screens/UserPortal/Organizations/Organizations/README.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / screens/UserPortal/Organizations/Organizations + +# screens/UserPortal/Organizations/Organizations + +## Functions + +- [default](functions/default.md) diff --git a/docs/docs/auto-docs/screens/UserPortal/Organizations/Organizations/functions/default.md b/docs/docs/auto-docs/screens/UserPortal/Organizations/Organizations/functions/default.md new file mode 100644 index 0000000000..61fc2aa836 --- /dev/null +++ b/docs/docs/auto-docs/screens/UserPortal/Organizations/Organizations/functions/default.md @@ -0,0 +1,17 @@ +[**talawa-admin**](../../../../../README.md) + +*** + +[talawa-admin](../../../../../modules.md) / [screens/UserPortal/Organizations/Organizations](../README.md) / default + +# Function: default() + +> **default**(): `JSX.Element` + +Defined in: [src/screens/UserPortal/Organizations/Organizations.tsx:76](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/UserPortal/Organizations/Organizations.tsx#L76) + +Component for displaying and managing user organizations. + +## Returns + +`JSX.Element` diff --git a/docs/docs/auto-docs/screens/UserPortal/People/People/README.md b/docs/docs/auto-docs/screens/UserPortal/People/People/README.md new file mode 100644 index 0000000000..f2a032d34f --- /dev/null +++ b/docs/docs/auto-docs/screens/UserPortal/People/People/README.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / screens/UserPortal/People/People + +# screens/UserPortal/People/People + +## Functions + +- [default](functions/default.md) diff --git a/docs/docs/auto-docs/screens/UserPortal/People/People/functions/default.md b/docs/docs/auto-docs/screens/UserPortal/People/People/functions/default.md new file mode 100644 index 0000000000..afe5c5143c --- /dev/null +++ b/docs/docs/auto-docs/screens/UserPortal/People/People/functions/default.md @@ -0,0 +1,19 @@ +[**talawa-admin**](../../../../../README.md) + +*** + +[talawa-admin](../../../../../modules.md) / [screens/UserPortal/People/People](../README.md) / default + +# Function: default() + +> **default**(): `JSX.Element` + +Defined in: [src/screens/UserPortal/People/People.tsx:39](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/UserPortal/People/People.tsx#L39) + +`People` component displays a list of people associated with an organization. +It allows users to filter between all members and admins, search for members by their first name, +and paginate through the list. + +## Returns + +`JSX.Element` diff --git a/docs/docs/auto-docs/screens/UserPortal/Pledges/Pledges/README.md b/docs/docs/auto-docs/screens/UserPortal/Pledges/Pledges/README.md new file mode 100644 index 0000000000..a7ea6f45d9 --- /dev/null +++ b/docs/docs/auto-docs/screens/UserPortal/Pledges/Pledges/README.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / screens/UserPortal/Pledges/Pledges + +# screens/UserPortal/Pledges/Pledges + +## Functions + +- [default](functions/default.md) diff --git a/docs/docs/auto-docs/screens/UserPortal/Pledges/Pledges/functions/default.md b/docs/docs/auto-docs/screens/UserPortal/Pledges/Pledges/functions/default.md new file mode 100644 index 0000000000..233c67c3b2 --- /dev/null +++ b/docs/docs/auto-docs/screens/UserPortal/Pledges/Pledges/functions/default.md @@ -0,0 +1,32 @@ +[**talawa-admin**](../../../../../README.md) + +*** + +[talawa-admin](../../../../../modules.md) / [screens/UserPortal/Pledges/Pledges](../README.md) / default + +# Function: default() + +> **default**(): `Element` + +Defined in: [src/screens/UserPortal/Pledges/Pledges.tsx:70](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/UserPortal/Pledges/Pledges.tsx#L70) + +The `Pledges` component is responsible for rendering a user's pledges within a campaign. +It fetches pledges data using Apollo Client's `useQuery` hook and displays the data +in a DataGrid with various features such as search, sorting, and modal dialogs for updating +or deleting a pledge. The component also handles various UI interactions including opening +modals for editing or deleting a pledge, showing additional pledgers in a popup, and +applying filters for searching pledges by campaign or pledger name. + +Key functionalities include: +- Fetching pledges data from the backend using GraphQL query `USER_PLEDGES`. +- Displaying pledges in a table with columns for pledgers, associated campaigns, + end dates, pledged amounts, and actions. +- Handling search and sorting of pledges. +- Opening and closing modals for updating and deleting pledges. +- Displaying additional pledgers in a popup when the list of pledgers exceeds a certain limit. + +## Returns + +`Element` + +The rendered Pledges component. diff --git a/docs/docs/auto-docs/screens/UserPortal/Pledges/PledgesMocks/README.md b/docs/docs/auto-docs/screens/UserPortal/Pledges/PledgesMocks/README.md new file mode 100644 index 0000000000..bdab99fef9 --- /dev/null +++ b/docs/docs/auto-docs/screens/UserPortal/Pledges/PledgesMocks/README.md @@ -0,0 +1,13 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / screens/UserPortal/Pledges/PledgesMocks + +# screens/UserPortal/Pledges/PledgesMocks + +## Variables + +- [EMPTY\_MOCKS](variables/EMPTY_MOCKS.md) +- [MOCKS](variables/MOCKS.md) +- [USER\_PLEDGES\_ERROR](variables/USER_PLEDGES_ERROR.md) diff --git a/docs/docs/auto-docs/screens/UserPortal/Pledges/PledgesMocks/variables/EMPTY_MOCKS.md b/docs/docs/auto-docs/screens/UserPortal/Pledges/PledgesMocks/variables/EMPTY_MOCKS.md new file mode 100644 index 0000000000..676a2ed712 --- /dev/null +++ b/docs/docs/auto-docs/screens/UserPortal/Pledges/PledgesMocks/variables/EMPTY_MOCKS.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../../../README.md) + +*** + +[talawa-admin](../../../../../modules.md) / [screens/UserPortal/Pledges/PledgesMocks](../README.md) / EMPTY\_MOCKS + +# Variable: EMPTY\_MOCKS + +> `const` **EMPTY\_MOCKS**: (\{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `id`: `string`; \}; \}; `result`: \{ `data`: \{ `user`: \{ `__typename`: `string`; `appUserProfile`: \{ `__typename`: `string`; `_id`: `string`; `adminFor`: `any`[]; `appLanguageCode`: `string`; `createdEvents`: `any`[]; `createdOrganizations`: `any`[]; `eventAdmin`: `any`[]; `isSuperAdmin`: `boolean`; `pluginCreationAllowed`: `boolean`; \}; `user`: \{ `__typename`: `string`; `_id`: `string`; `address`: \{ `__typename`: `string`; `city`: `string`; `countryCode`: `string`; `line1`: `string`; `state`: `string`; \}; `birthDate`: `any`; `createdAt`: `string`; `educationGrade`: `any`; `email`: `string`; `employmentStatus`: `any`; `firstName`: `string`; `gender`: `any`; `image`: `any`; `joinedOrganizations`: `object`[]; `lastName`: `string`; `maritalStatus`: `any`; `membershipRequests`: `any`[]; `phone`: `any`; `registeredEvents`: `any`[]; \}; \}; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `orderBy`: `string`; `userId`: `string`; `where`: \{ `firstName_contains`: `string`; \}; \}; \}; `result`: \{ `data`: \{ `getPledgesByUserId`: `any`[]; \}; \}; \})[] + +Defined in: [src/screens/UserPortal/Pledges/PledgesMocks.ts:560](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/UserPortal/Pledges/PledgesMocks.ts#L560) diff --git a/docs/docs/auto-docs/screens/UserPortal/Pledges/PledgesMocks/variables/MOCKS.md b/docs/docs/auto-docs/screens/UserPortal/Pledges/PledgesMocks/variables/MOCKS.md new file mode 100644 index 0000000000..825569e7ab --- /dev/null +++ b/docs/docs/auto-docs/screens/UserPortal/Pledges/PledgesMocks/variables/MOCKS.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../../../README.md) + +*** + +[talawa-admin](../../../../../modules.md) / [screens/UserPortal/Pledges/PledgesMocks](../README.md) / MOCKS + +# Variable: MOCKS + +> `const` **MOCKS**: (\{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `id`: `string`; \}; \}; `result`: \{ `data`: \{ `user`: \{ `__typename`: `string`; `appUserProfile`: \{ `__typename`: `string`; `_id`: `string`; `adminFor`: `any`[]; `appLanguageCode`: `string`; `createdEvents`: `any`[]; `createdOrganizations`: `any`[]; `eventAdmin`: `any`[]; `isSuperAdmin`: `boolean`; `pluginCreationAllowed`: `boolean`; \}; `user`: \{ `__typename`: `string`; `_id`: `string`; `address`: \{ `__typename`: `string`; `city`: `string`; `countryCode`: `string`; `line1`: `string`; `state`: `string`; \}; `birthDate`: `any`; `createdAt`: `string`; `educationGrade`: `any`; `email`: `string`; `employmentStatus`: `any`; `firstName`: `string`; `gender`: `any`; `image`: `any`; `joinedOrganizations`: `object`[]; `lastName`: `string`; `maritalStatus`: `any`; `membershipRequests`: `any`[]; `phone`: `any`; `registeredEvents`: `any`[]; \}; \}; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `id`: `undefined`; `orderBy`: `string`; `userId`: `string`; `where`: \{ `firstName_contains`: `undefined`; `name_contains`: `string`; \}; \}; \}; `result`: \{ `data`: \{ `getPledgesByUserId`: `object`[]; `removeFundraisingCampaignPledge`: `undefined`; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `id`: `undefined`; `orderBy`: `string`; `userId`: `string`; `where`: \{ `firstName_contains`: `string`; `name_contains`: `undefined`; \}; \}; \}; `result`: \{ `data`: \{ `getPledgesByUserId`: `object`[]; `removeFundraisingCampaignPledge`: `undefined`; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `id`: `string`; `orderBy`: `undefined`; `userId`: `undefined`; `where`: `undefined`; \}; \}; `result`: \{ `data`: \{ `getPledgesByUserId`: `undefined`; `removeFundraisingCampaignPledge`: \{ `_id`: `string`; \}; \}; \}; \})[] + +Defined in: [src/screens/UserPortal/Pledges/PledgesMocks.ts:62](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/UserPortal/Pledges/PledgesMocks.ts#L62) diff --git a/docs/docs/auto-docs/screens/UserPortal/Pledges/PledgesMocks/variables/USER_PLEDGES_ERROR.md b/docs/docs/auto-docs/screens/UserPortal/Pledges/PledgesMocks/variables/USER_PLEDGES_ERROR.md new file mode 100644 index 0000000000..fd623ff343 --- /dev/null +++ b/docs/docs/auto-docs/screens/UserPortal/Pledges/PledgesMocks/variables/USER_PLEDGES_ERROR.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../../../README.md) + +*** + +[talawa-admin](../../../../../modules.md) / [screens/UserPortal/Pledges/PledgesMocks](../README.md) / USER\_PLEDGES\_ERROR + +# Variable: USER\_PLEDGES\_ERROR + +> `const` **USER\_PLEDGES\_ERROR**: (\{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `id`: `string`; \}; \}; `result`: \{ `data`: \{ `user`: \{ `__typename`: `string`; `appUserProfile`: \{ `__typename`: `string`; `_id`: `string`; `adminFor`: `any`[]; `appLanguageCode`: `string`; `createdEvents`: `any`[]; `createdOrganizations`: `any`[]; `eventAdmin`: `any`[]; `isSuperAdmin`: `boolean`; `pluginCreationAllowed`: `boolean`; \}; `user`: \{ `__typename`: `string`; `_id`: `string`; `address`: \{ `__typename`: `string`; `city`: `string`; `countryCode`: `string`; `line1`: `string`; `state`: `string`; \}; `birthDate`: `any`; `createdAt`: `string`; `educationGrade`: `any`; `email`: `string`; `employmentStatus`: `any`; `firstName`: `string`; `gender`: `any`; `image`: `any`; `joinedOrganizations`: `object`[]; `lastName`: `string`; `maritalStatus`: `any`; `membershipRequests`: `any`[]; `phone`: `any`; `registeredEvents`: `any`[]; \}; \}; \}; \}; \} \| \{ `error`: `Error`; `request`: \{ `query`: `DocumentNode`; `variables`: \{ `orderBy`: `string`; `userId`: `string`; `where`: \{ `firstName_contains`: `string`; \}; \}; \}; \})[] + +Defined in: [src/screens/UserPortal/Pledges/PledgesMocks.ts:581](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/UserPortal/Pledges/PledgesMocks.ts#L581) diff --git a/docs/docs/auto-docs/screens/UserPortal/Posts/Posts/README.md b/docs/docs/auto-docs/screens/UserPortal/Posts/Posts/README.md new file mode 100644 index 0000000000..d2590ccd5b --- /dev/null +++ b/docs/docs/auto-docs/screens/UserPortal/Posts/Posts/README.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / screens/UserPortal/Posts/Posts + +# screens/UserPortal/Posts/Posts + +## Functions + +- [default](functions/default.md) diff --git a/docs/docs/auto-docs/screens/UserPortal/Posts/Posts/functions/default.md b/docs/docs/auto-docs/screens/UserPortal/Posts/Posts/functions/default.md new file mode 100644 index 0000000000..c0aa2ab3a1 --- /dev/null +++ b/docs/docs/auto-docs/screens/UserPortal/Posts/Posts/functions/default.md @@ -0,0 +1,21 @@ +[**talawa-admin**](../../../../../README.md) + +*** + +[talawa-admin](../../../../../modules.md) / [screens/UserPortal/Posts/Posts](../README.md) / default + +# Function: default() + +> **default**(): `JSX.Element` + +Defined in: [src/screens/UserPortal/Posts/Posts.tsx:112](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/UserPortal/Posts/Posts.tsx#L112) + +`home` component displays the main feed for a user, including posts, promoted content, and options to create a new post. + +It utilizes Apollo Client for fetching and managing data through GraphQL queries. The component fetches and displays posts from an organization, promoted advertisements, and handles user interactions for creating new posts. It also manages state for displaying modal dialogs and handling file uploads for new posts. + +## Returns + +`JSX.Element` + +JSX.Element - The rendered `home` component. diff --git a/docs/docs/auto-docs/screens/UserPortal/Settings/Settings/README.md b/docs/docs/auto-docs/screens/UserPortal/Settings/Settings/README.md new file mode 100644 index 0000000000..4d0e925679 --- /dev/null +++ b/docs/docs/auto-docs/screens/UserPortal/Settings/Settings/README.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / screens/UserPortal/Settings/Settings + +# screens/UserPortal/Settings/Settings + +## Functions + +- [default](functions/default.md) diff --git a/docs/docs/auto-docs/screens/UserPortal/Settings/Settings/functions/default.md b/docs/docs/auto-docs/screens/UserPortal/Settings/Settings/functions/default.md new file mode 100644 index 0000000000..20cebefd16 --- /dev/null +++ b/docs/docs/auto-docs/screens/UserPortal/Settings/Settings/functions/default.md @@ -0,0 +1,20 @@ +[**talawa-admin**](../../../../../README.md) + +*** + +[talawa-admin](../../../../../modules.md) / [screens/UserPortal/Settings/Settings](../README.md) / default + +# Function: default() + +> **default**(): `JSX.Element` + +Defined in: [src/screens/UserPortal/Settings/Settings.tsx:33](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/UserPortal/Settings/Settings.tsx#L33) + +The Settings component allows users to view and update their profile settings. +It includes functionality to handle image uploads, reset changes, and save updated user details. + +## Returns + +`JSX.Element` + +The Settings component. diff --git a/docs/docs/auto-docs/screens/UserPortal/UserScreen/UserScreen/README.md b/docs/docs/auto-docs/screens/UserPortal/UserScreen/UserScreen/README.md new file mode 100644 index 0000000000..8ea3daaf80 --- /dev/null +++ b/docs/docs/auto-docs/screens/UserPortal/UserScreen/UserScreen/README.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / screens/UserPortal/UserScreen/UserScreen + +# screens/UserPortal/UserScreen/UserScreen + +## Functions + +- [default](functions/default.md) diff --git a/docs/docs/auto-docs/screens/UserPortal/UserScreen/UserScreen/functions/default.md b/docs/docs/auto-docs/screens/UserPortal/UserScreen/UserScreen/functions/default.md new file mode 100644 index 0000000000..3d477eae19 --- /dev/null +++ b/docs/docs/auto-docs/screens/UserPortal/UserScreen/UserScreen/functions/default.md @@ -0,0 +1,21 @@ +[**talawa-admin**](../../../../../README.md) + +*** + +[talawa-admin](../../../../../modules.md) / [screens/UserPortal/UserScreen/UserScreen](../README.md) / default + +# Function: default() + +> **default**(): `Element` + +Defined in: [src/screens/UserPortal/UserScreen/UserScreen.tsx:34](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/UserPortal/UserScreen/UserScreen.tsx#L34) + +The UserScreen component serves as a container for user-specific pages +within an organization context. It provides layout and sidebar navigation +functionality based on the current organization ID and user roles. + +## Returns + +`Element` + +The UserScreen component. diff --git a/docs/docs/auto-docs/screens/UserPortal/Volunteer/Actions/Actions.mocks/README.md b/docs/docs/auto-docs/screens/UserPortal/Volunteer/Actions/Actions.mocks/README.md new file mode 100644 index 0000000000..e7efc11aeb --- /dev/null +++ b/docs/docs/auto-docs/screens/UserPortal/Volunteer/Actions/Actions.mocks/README.md @@ -0,0 +1,13 @@ +[**talawa-admin**](../../../../../README.md) + +*** + +[talawa-admin](../../../../../modules.md) / screens/UserPortal/Volunteer/Actions/Actions.mocks + +# screens/UserPortal/Volunteer/Actions/Actions.mocks + +## Variables + +- [EMPTY\_MOCKS](variables/EMPTY_MOCKS.md) +- [ERROR\_MOCKS](variables/ERROR_MOCKS.md) +- [MOCKS](variables/MOCKS.md) diff --git a/docs/docs/auto-docs/screens/UserPortal/Volunteer/Actions/Actions.mocks/variables/EMPTY_MOCKS.md b/docs/docs/auto-docs/screens/UserPortal/Volunteer/Actions/Actions.mocks/variables/EMPTY_MOCKS.md new file mode 100644 index 0000000000..79f721d94c --- /dev/null +++ b/docs/docs/auto-docs/screens/UserPortal/Volunteer/Actions/Actions.mocks/variables/EMPTY_MOCKS.md @@ -0,0 +1,57 @@ +[**talawa-admin**](../../../../../../README.md) + +*** + +[talawa-admin](../../../../../../modules.md) / [screens/UserPortal/Volunteer/Actions/Actions.mocks](../README.md) / EMPTY\_MOCKS + +# Variable: EMPTY\_MOCKS + +> `const` **EMPTY\_MOCKS**: `object`[] + +Defined in: [src/screens/UserPortal/Volunteer/Actions/Actions.mocks.ts:232](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/UserPortal/Volunteer/Actions/Actions.mocks.ts#L232) + +## Type declaration + +### request + +> **request**: `object` + +#### request.query + +> **query**: `DocumentNode` = `ACTION_ITEMS_BY_USER` + +#### request.variables + +> **variables**: `object` + +#### request.variables.orderBy + +> **orderBy**: `any` = `null` + +#### request.variables.userId + +> **userId**: `string` = `'userId'` + +#### request.variables.where + +> **where**: `object` + +#### request.variables.where.assigneeName + +> **assigneeName**: `string` = `''` + +#### request.variables.where.orgId + +> **orgId**: `string` = `'orgId'` + +### result + +> **result**: `object` + +#### result.data + +> **data**: `object` + +#### result.data.actionItemsByUser + +> **actionItemsByUser**: `any`[] = `[]` diff --git a/docs/docs/auto-docs/screens/UserPortal/Volunteer/Actions/Actions.mocks/variables/ERROR_MOCKS.md b/docs/docs/auto-docs/screens/UserPortal/Volunteer/Actions/Actions.mocks/variables/ERROR_MOCKS.md new file mode 100644 index 0000000000..974fbfa495 --- /dev/null +++ b/docs/docs/auto-docs/screens/UserPortal/Volunteer/Actions/Actions.mocks/variables/ERROR_MOCKS.md @@ -0,0 +1,49 @@ +[**talawa-admin**](../../../../../../README.md) + +*** + +[talawa-admin](../../../../../../modules.md) / [screens/UserPortal/Volunteer/Actions/Actions.mocks](../README.md) / ERROR\_MOCKS + +# Variable: ERROR\_MOCKS + +> `const` **ERROR\_MOCKS**: `object`[] + +Defined in: [src/screens/UserPortal/Volunteer/Actions/Actions.mocks.ts:253](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/UserPortal/Volunteer/Actions/Actions.mocks.ts#L253) + +## Type declaration + +### error + +> **error**: `Error` + +### request + +> **request**: `object` + +#### request.query + +> **query**: `DocumentNode` = `ACTION_ITEMS_BY_USER` + +#### request.variables + +> **variables**: `object` + +#### request.variables.orderBy + +> **orderBy**: `any` = `null` + +#### request.variables.userId + +> **userId**: `string` = `'userId'` + +#### request.variables.where + +> **where**: `object` + +#### request.variables.where.assigneeName + +> **assigneeName**: `string` = `''` + +#### request.variables.where.orgId + +> **orgId**: `string` = `'orgId'` diff --git a/docs/docs/auto-docs/screens/UserPortal/Volunteer/Actions/Actions.mocks/variables/MOCKS.md b/docs/docs/auto-docs/screens/UserPortal/Volunteer/Actions/Actions.mocks/variables/MOCKS.md new file mode 100644 index 0000000000..8c6240c013 --- /dev/null +++ b/docs/docs/auto-docs/screens/UserPortal/Volunteer/Actions/Actions.mocks/variables/MOCKS.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../../../../README.md) + +*** + +[talawa-admin](../../../../../../modules.md) / [screens/UserPortal/Volunteer/Actions/Actions.mocks](../README.md) / MOCKS + +# Variable: MOCKS + +> `const` **MOCKS**: (\{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `orderBy`: `any`; `userId`: `string`; `where`: \{ `assigneeName`: `string`; `categoryName`: `undefined`; `orgId`: `string`; \}; \}; \}; `result`: \{ `data`: \{ `actionItemsByUser`: (\{ `_id`: `string`; `actionItemCategory`: \{ `_id`: `string`; `name`: `string`; \}; `allottedHours`: `number`; `assignee`: \{ `_id`: `string`; `user`: \{ `_id`: `string`; `firstName`: `string`; `image`: `any`; `lastName`: `string`; \}; \}; `assigneeGroup`: `any`; `assigneeType`: `string`; `assigner`: \{ `_id`: `string`; `firstName`: `string`; `image`: `any`; `lastName`: `string`; \}; `assignmentDate`: `string`; `completionDate`: `string`; `creator`: \{ `_id`: `string`; `firstName`: `string`; `lastName`: `string`; \}; `dueDate`: `string`; `event`: \{ `_id`: `string`; `title`: `string`; \}; `isCompleted`: `boolean`; `postCompletionNotes`: `string`; `preCompletionNotes`: `string`; \} \| \{ `_id`: `string`; `actionItemCategory`: \{ `_id`: `string`; `name`: `string`; \}; `allottedHours`: `number`; `assignee`: `any`; `assigneeGroup`: \{ `_id`: `string`; `name`: `string`; \}; `assigneeType`: `string`; `assigner`: \{ `_id`: `string`; `firstName`: `string`; `image`: `any`; `lastName`: `string`; \}; `assignmentDate`: `string`; `completionDate`: `string`; `creator`: \{ `_id`: `string`; `firstName`: `string`; `lastName`: `string`; \}; `dueDate`: `string`; `event`: \{ `_id`: `string`; `title`: `string`; \}; `isCompleted`: `boolean`; `postCompletionNotes`: `string`; `preCompletionNotes`: `string`; \} \| \{ `_id`: `string`; `actionItemCategory`: \{ `_id`: `string`; `name`: `string`; \}; `allottedHours`: `any`; `assignee`: \{ `_id`: `string`; `user`: \{ `_id`: `string`; `firstName`: `string`; `image`: `string`; `lastName`: `string`; \}; \}; `assigneeGroup`: `any`; `assigneeType`: `string`; `assigner`: \{ `_id`: `string`; `firstName`: `string`; `image`: `any`; `lastName`: `string`; \}; `assignmentDate`: `string`; `completionDate`: `string`; `creator`: \{ `_id`: `string`; `firstName`: `string`; `lastName`: `string`; \}; `dueDate`: `string`; `event`: \{ `_id`: `string`; `title`: `string`; \}; `isCompleted`: `boolean`; `postCompletionNotes`: `string`; `preCompletionNotes`: `string`; \})[]; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `orderBy`: `string`; `userId`: `string`; `where`: \{ `assigneeName`: `string`; `categoryName`: `undefined`; `orgId`: `string`; \}; \}; \}; `result`: \{ `data`: \{ `actionItemsByUser`: (\{ `_id`: `string`; `actionItemCategory`: \{ `_id`: `string`; `name`: `string`; \}; `allottedHours`: `number`; `assignee`: \{ `_id`: `string`; `user`: \{ `_id`: `string`; `firstName`: `string`; `image`: `any`; `lastName`: `string`; \}; \}; `assigneeGroup`: `any`; `assigneeType`: `string`; `assigner`: \{ `_id`: `string`; `firstName`: `string`; `image`: `any`; `lastName`: `string`; \}; `assignmentDate`: `string`; `completionDate`: `string`; `creator`: \{ `_id`: `string`; `firstName`: `string`; `lastName`: `string`; \}; `dueDate`: `string`; `event`: \{ `_id`: `string`; `title`: `string`; \}; `isCompleted`: `boolean`; `postCompletionNotes`: `string`; `preCompletionNotes`: `string`; \} \| \{ `_id`: `string`; `actionItemCategory`: \{ `_id`: `string`; `name`: `string`; \}; `allottedHours`: `number`; `assignee`: `any`; `assigneeGroup`: \{ `_id`: `string`; `name`: `string`; \}; `assigneeType`: `string`; `assigner`: \{ `_id`: `string`; `firstName`: `string`; `image`: `any`; `lastName`: `string`; \}; `assignmentDate`: `string`; `completionDate`: `string`; `creator`: \{ `_id`: `string`; `firstName`: `string`; `lastName`: `string`; \}; `dueDate`: `string`; `event`: \{ `_id`: `string`; `title`: `string`; \}; `isCompleted`: `boolean`; `postCompletionNotes`: `string`; `preCompletionNotes`: `string`; \})[]; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `orderBy`: `any`; `userId`: `string`; `where`: \{ `assigneeName`: `undefined`; `categoryName`: `string`; `orgId`: `string`; \}; \}; \}; `result`: \{ `data`: \{ `actionItemsByUser`: (\{ `_id`: `string`; `actionItemCategory`: \{ `_id`: `string`; `name`: `string`; \}; `allottedHours`: `number`; `assignee`: \{ `_id`: `string`; `user`: \{ `_id`: `string`; `firstName`: `string`; `image`: `any`; `lastName`: `string`; \}; \}; `assigneeGroup`: `any`; `assigneeType`: `string`; `assigner`: \{ `_id`: `string`; `firstName`: `string`; `image`: `any`; `lastName`: `string`; \}; `assignmentDate`: `string`; `completionDate`: `string`; `creator`: \{ `_id`: `string`; `firstName`: `string`; `lastName`: `string`; \}; `dueDate`: `string`; `event`: \{ `_id`: `string`; `title`: `string`; \}; `isCompleted`: `boolean`; `postCompletionNotes`: `string`; `preCompletionNotes`: `string`; \} \| \{ `_id`: `string`; `actionItemCategory`: \{ `_id`: `string`; `name`: `string`; \}; `allottedHours`: `number`; `assignee`: `any`; `assigneeGroup`: \{ `_id`: `string`; `name`: `string`; \}; `assigneeType`: `string`; `assigner`: \{ `_id`: `string`; `firstName`: `string`; `image`: `any`; `lastName`: `string`; \}; `assignmentDate`: `string`; `completionDate`: `string`; `creator`: \{ `_id`: `string`; `firstName`: `string`; `lastName`: `string`; \}; `dueDate`: `string`; `event`: \{ `_id`: `string`; `title`: `string`; \}; `isCompleted`: `boolean`; `postCompletionNotes`: `string`; `preCompletionNotes`: `string`; \})[]; \}; \}; \})[] + +Defined in: [src/screens/UserPortal/Volunteer/Actions/Actions.mocks.ts:121](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/UserPortal/Volunteer/Actions/Actions.mocks.ts#L121) diff --git a/docs/docs/auto-docs/screens/UserPortal/Volunteer/Actions/Actions/README.md b/docs/docs/auto-docs/screens/UserPortal/Volunteer/Actions/Actions/README.md new file mode 100644 index 0000000000..a1142db514 --- /dev/null +++ b/docs/docs/auto-docs/screens/UserPortal/Volunteer/Actions/Actions/README.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../../../README.md) + +*** + +[talawa-admin](../../../../../modules.md) / screens/UserPortal/Volunteer/Actions/Actions + +# screens/UserPortal/Volunteer/Actions/Actions + +## Functions + +- [default](functions/default.md) diff --git a/docs/docs/auto-docs/screens/UserPortal/Volunteer/Actions/Actions/functions/default.md b/docs/docs/auto-docs/screens/UserPortal/Volunteer/Actions/Actions/functions/default.md new file mode 100644 index 0000000000..ea4be835f4 --- /dev/null +++ b/docs/docs/auto-docs/screens/UserPortal/Volunteer/Actions/Actions/functions/default.md @@ -0,0 +1,21 @@ +[**talawa-admin**](../../../../../../README.md) + +*** + +[talawa-admin](../../../../../../modules.md) / [screens/UserPortal/Volunteer/Actions/Actions](../README.md) / default + +# Function: default() + +> **default**(): `JSX.Element` + +Defined in: [src/screens/UserPortal/Volunteer/Actions/Actions.tsx:60](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/UserPortal/Volunteer/Actions/Actions.tsx#L60) + +Component for managing and displaying action items within an organization. + +This component allows users to view, filter, sort, and create action items. It also handles fetching and displaying related data such as action item categories and members. + +## Returns + +`JSX.Element` + +The rendered component. diff --git a/docs/docs/auto-docs/screens/UserPortal/Volunteer/Groups/GroupModal/README.md b/docs/docs/auto-docs/screens/UserPortal/Volunteer/Groups/GroupModal/README.md new file mode 100644 index 0000000000..cda227a90a --- /dev/null +++ b/docs/docs/auto-docs/screens/UserPortal/Volunteer/Groups/GroupModal/README.md @@ -0,0 +1,15 @@ +[**talawa-admin**](../../../../../README.md) + +*** + +[talawa-admin](../../../../../modules.md) / screens/UserPortal/Volunteer/Groups/GroupModal + +# screens/UserPortal/Volunteer/Groups/GroupModal + +## Interfaces + +- [InterfaceGroupModal](interfaces/InterfaceGroupModal.md) + +## Functions + +- [default](functions/default.md) diff --git a/docs/docs/auto-docs/screens/UserPortal/Volunteer/Groups/GroupModal/functions/default.md b/docs/docs/auto-docs/screens/UserPortal/Volunteer/Groups/GroupModal/functions/default.md new file mode 100644 index 0000000000..937b8d2989 --- /dev/null +++ b/docs/docs/auto-docs/screens/UserPortal/Volunteer/Groups/GroupModal/functions/default.md @@ -0,0 +1,51 @@ +[**talawa-admin**](../../../../../../README.md) + +*** + +[talawa-admin](../../../../../../modules.md) / [screens/UserPortal/Volunteer/Groups/GroupModal](../README.md) / default + +# Function: default() + +> **default**(`props`, `deprecatedLegacyContext`?): `ReactNode` + +Defined in: [src/screens/UserPortal/Volunteer/Groups/GroupModal.tsx:71](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/UserPortal/Volunteer/Groups/GroupModal.tsx#L71) + +A modal dialog for creating or editing a volunteer group. + +## Parameters + +### props + +[`InterfaceGroupModal`](../interfaces/InterfaceGroupModal.md) + +### deprecatedLegacyContext? + +`any` + +**Deprecated** + +**See** + +[React Docs](https://legacy.reactjs.org/docs/legacy-context.html#referencing-context-in-lifecycle-methods) + +## Returns + +`ReactNode` + +The rendered modal component. + +The `VolunteerGroupModal` component displays a form within a modal dialog for creating or editing a Volunteer Group. +It includes fields for entering the group name, description, volunteersRequired, and selecting volunteers/leaders. + +The modal includes: +- A header with a title indicating the current mode (create or edit) and a close button. +- A form with: + - An input field for entering the group name. + - A textarea for entering the group description. + - An input field for entering the number of volunteers required. +- A submit button to create or update the pledge. + +On form submission, the component either: +- Calls `updateVoluneerGroup` mutation to update an existing group, or + +Success or error messages are displayed using toast notifications based on the result of the mutation. diff --git a/docs/docs/auto-docs/screens/UserPortal/Volunteer/Groups/GroupModal/interfaces/InterfaceGroupModal.md b/docs/docs/auto-docs/screens/UserPortal/Volunteer/Groups/GroupModal/interfaces/InterfaceGroupModal.md new file mode 100644 index 0000000000..6c4c12a238 --- /dev/null +++ b/docs/docs/auto-docs/screens/UserPortal/Volunteer/Groups/GroupModal/interfaces/InterfaceGroupModal.md @@ -0,0 +1,57 @@ +[**talawa-admin**](../../../../../../README.md) + +*** + +[talawa-admin](../../../../../../modules.md) / [screens/UserPortal/Volunteer/Groups/GroupModal](../README.md) / InterfaceGroupModal + +# Interface: InterfaceGroupModal + +Defined in: [src/screens/UserPortal/Volunteer/Groups/GroupModal.tsx:35](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/UserPortal/Volunteer/Groups/GroupModal.tsx#L35) + +## Properties + +### eventId + +> **eventId**: `string` + +Defined in: [src/screens/UserPortal/Volunteer/Groups/GroupModal.tsx:38](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/UserPortal/Volunteer/Groups/GroupModal.tsx#L38) + +*** + +### group + +> **group**: [`InterfaceVolunteerGroupInfo`](../../../../../../utils/interfaces/interfaces/InterfaceVolunteerGroupInfo.md) + +Defined in: [src/screens/UserPortal/Volunteer/Groups/GroupModal.tsx:39](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/UserPortal/Volunteer/Groups/GroupModal.tsx#L39) + +*** + +### hide() + +> **hide**: () => `void` + +Defined in: [src/screens/UserPortal/Volunteer/Groups/GroupModal.tsx:37](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/UserPortal/Volunteer/Groups/GroupModal.tsx#L37) + +#### Returns + +`void` + +*** + +### isOpen + +> **isOpen**: `boolean` + +Defined in: [src/screens/UserPortal/Volunteer/Groups/GroupModal.tsx:36](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/UserPortal/Volunteer/Groups/GroupModal.tsx#L36) + +*** + +### refetchGroups() + +> **refetchGroups**: () => `void` + +Defined in: [src/screens/UserPortal/Volunteer/Groups/GroupModal.tsx:40](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/UserPortal/Volunteer/Groups/GroupModal.tsx#L40) + +#### Returns + +`void` diff --git a/docs/docs/auto-docs/screens/UserPortal/Volunteer/Groups/Groups.mocks/README.md b/docs/docs/auto-docs/screens/UserPortal/Volunteer/Groups/Groups.mocks/README.md new file mode 100644 index 0000000000..fec7ae3f06 --- /dev/null +++ b/docs/docs/auto-docs/screens/UserPortal/Volunteer/Groups/Groups.mocks/README.md @@ -0,0 +1,14 @@ +[**talawa-admin**](../../../../../README.md) + +*** + +[talawa-admin](../../../../../modules.md) / screens/UserPortal/Volunteer/Groups/Groups.mocks + +# screens/UserPortal/Volunteer/Groups/Groups.mocks + +## Variables + +- [EMPTY\_MOCKS](variables/EMPTY_MOCKS.md) +- [ERROR\_MOCKS](variables/ERROR_MOCKS.md) +- [MOCKS](variables/MOCKS.md) +- [UPDATE\_ERROR\_MOCKS](variables/UPDATE_ERROR_MOCKS.md) diff --git a/docs/docs/auto-docs/screens/UserPortal/Volunteer/Groups/Groups.mocks/variables/EMPTY_MOCKS.md b/docs/docs/auto-docs/screens/UserPortal/Volunteer/Groups/Groups.mocks/variables/EMPTY_MOCKS.md new file mode 100644 index 0000000000..f06ce5db55 --- /dev/null +++ b/docs/docs/auto-docs/screens/UserPortal/Volunteer/Groups/Groups.mocks/variables/EMPTY_MOCKS.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../../../../README.md) + +*** + +[talawa-admin](../../../../../../modules.md) / [screens/UserPortal/Volunteer/Groups/Groups.mocks](../README.md) / EMPTY\_MOCKS + +# Variable: EMPTY\_MOCKS + +> `const` **EMPTY\_MOCKS**: (\{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `orderBy`: `any`; `where`: \{ `eventId`: `undefined`; `group`: `undefined`; `leaderName`: `any`; `name_contains`: `string`; `orgId`: `string`; `status`: `undefined`; `userId`: `string`; \}; \}; \}; `result`: \{ `data`: \{ `getEventVolunteerGroups`: `any`[]; `getVolunteerMembership`: `undefined`; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `orderBy`: `undefined`; `where`: \{ `eventId`: `string`; `group`: `string`; `leaderName`: `undefined`; `name_contains`: `undefined`; `orgId`: `undefined`; `status`: `string`; `userId`: `undefined`; \}; \}; \}; `result`: \{ `data`: \{ `getEventVolunteerGroups`: `undefined`; `getVolunteerMembership`: `any`[]; \}; \}; \})[] + +Defined in: [src/screens/UserPortal/Volunteer/Groups/Groups.mocks.ts:368](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/UserPortal/Volunteer/Groups/Groups.mocks.ts#L368) diff --git a/docs/docs/auto-docs/screens/UserPortal/Volunteer/Groups/Groups.mocks/variables/ERROR_MOCKS.md b/docs/docs/auto-docs/screens/UserPortal/Volunteer/Groups/Groups.mocks/variables/ERROR_MOCKS.md new file mode 100644 index 0000000000..3cf5d8fc70 --- /dev/null +++ b/docs/docs/auto-docs/screens/UserPortal/Volunteer/Groups/Groups.mocks/variables/ERROR_MOCKS.md @@ -0,0 +1,53 @@ +[**talawa-admin**](../../../../../../README.md) + +*** + +[talawa-admin](../../../../../../modules.md) / [screens/UserPortal/Volunteer/Groups/Groups.mocks](../README.md) / ERROR\_MOCKS + +# Variable: ERROR\_MOCKS + +> `const` **ERROR\_MOCKS**: `object`[] + +Defined in: [src/screens/UserPortal/Volunteer/Groups/Groups.mocks.ts:407](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/UserPortal/Volunteer/Groups/Groups.mocks.ts#L407) + +## Type declaration + +### error + +> **error**: `Error` + +### request + +> **request**: `object` + +#### request.query + +> **query**: `DocumentNode` = `EVENT_VOLUNTEER_GROUP_LIST` + +#### request.variables + +> **variables**: `object` + +#### request.variables.orderBy + +> **orderBy**: `any` = `null` + +#### request.variables.where + +> **where**: `object` + +#### request.variables.where.leaderName + +> **leaderName**: `any` = `null` + +#### request.variables.where.name\_contains + +> **name\_contains**: `string` = `''` + +#### request.variables.where.orgId + +> **orgId**: `string` = `'orgId'` + +#### request.variables.where.userId + +> **userId**: `string` = `'userId'` diff --git a/docs/docs/auto-docs/screens/UserPortal/Volunteer/Groups/Groups.mocks/variables/MOCKS.md b/docs/docs/auto-docs/screens/UserPortal/Volunteer/Groups/Groups.mocks/variables/MOCKS.md new file mode 100644 index 0000000000..30fc111ab6 --- /dev/null +++ b/docs/docs/auto-docs/screens/UserPortal/Volunteer/Groups/Groups.mocks/variables/MOCKS.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../../../../README.md) + +*** + +[talawa-admin](../../../../../../modules.md) / [screens/UserPortal/Volunteer/Groups/Groups.mocks](../README.md) / MOCKS + +# Variable: MOCKS + +> `const` **MOCKS**: (\{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `data`: `undefined`; `id`: `undefined`; `orderBy`: `string`; `status`: `undefined`; `where`: \{ `eventId`: `undefined`; `groupId`: `undefined`; `leaderName`: `any`; `name_contains`: `string`; `orgId`: `string`; `status`: `undefined`; `userId`: `string`; \}; \}; \}; `result`: \{ `data`: \{ `getEventVolunteerGroups`: `object`[]; `getVolunteerMembership`: `undefined`; `updateEventVolunteerGroup`: `undefined`; `updateVolunteerMembership`: `undefined`; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `data`: `undefined`; `id`: `undefined`; `orderBy`: `any`; `status`: `undefined`; `where`: \{ `eventId`: `undefined`; `groupId`: `undefined`; `leaderName`: `string`; `name_contains`: `any`; `orgId`: `string`; `status`: `undefined`; `userId`: `string`; \}; \}; \}; `result`: \{ `data`: \{ `getEventVolunteerGroups`: `object`[]; `getVolunteerMembership`: `undefined`; `updateEventVolunteerGroup`: `undefined`; `updateVolunteerMembership`: `undefined`; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `data`: `undefined`; `id`: `undefined`; `orderBy`: `undefined`; `status`: `undefined`; `where`: \{ `eventId`: `string`; `groupId`: `string`; `leaderName`: `undefined`; `name_contains`: `undefined`; `orgId`: `undefined`; `status`: `string`; `userId`: `undefined`; \}; \}; \}; `result`: \{ `data`: \{ `getEventVolunteerGroups`: `undefined`; `getVolunteerMembership`: `object`[]; `updateEventVolunteerGroup`: `undefined`; `updateVolunteerMembership`: `undefined`; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `data`: `undefined`; `id`: `string`; `orderBy`: `undefined`; `status`: `string`; `where`: `undefined`; \}; \}; `result`: \{ `data`: \{ `getEventVolunteerGroups`: `undefined`; `getVolunteerMembership`: `undefined`; `updateEventVolunteerGroup`: `undefined`; `updateVolunteerMembership`: \{ `_id`: `string`; \}; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `data`: \{ `description`: `string`; `eventId`: `string`; `name`: `string`; `volunteersRequired`: `number`; \}; `id`: `string`; `orderBy`: `undefined`; `status`: `undefined`; `where`: `undefined`; \}; \}; `result`: \{ `data`: \{ `getEventVolunteerGroups`: `undefined`; `getVolunteerMembership`: `undefined`; `updateEventVolunteerGroup`: \{ `_id`: `string`; \}; `updateVolunteerMembership`: `undefined`; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `data`: \{ `description`: `undefined`; `eventId`: `string`; `name`: `undefined`; `volunteersRequired`: `undefined`; \}; `id`: `string`; `orderBy`: `undefined`; `status`: `undefined`; `where`: `undefined`; \}; \}; `result`: \{ `data`: \{ `getEventVolunteerGroups`: `undefined`; `getVolunteerMembership`: `undefined`; `updateEventVolunteerGroup`: \{ `_id`: `string`; \}; `updateVolunteerMembership`: `undefined`; \}; \}; \})[] + +Defined in: [src/screens/UserPortal/Volunteer/Groups/Groups.mocks.ts:163](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/UserPortal/Volunteer/Groups/Groups.mocks.ts#L163) diff --git a/docs/docs/auto-docs/screens/UserPortal/Volunteer/Groups/Groups.mocks/variables/UPDATE_ERROR_MOCKS.md b/docs/docs/auto-docs/screens/UserPortal/Volunteer/Groups/Groups.mocks/variables/UPDATE_ERROR_MOCKS.md new file mode 100644 index 0000000000..0c9d1257a8 --- /dev/null +++ b/docs/docs/auto-docs/screens/UserPortal/Volunteer/Groups/Groups.mocks/variables/UPDATE_ERROR_MOCKS.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../../../../README.md) + +*** + +[talawa-admin](../../../../../../modules.md) / [screens/UserPortal/Volunteer/Groups/Groups.mocks](../README.md) / UPDATE\_ERROR\_MOCKS + +# Variable: UPDATE\_ERROR\_MOCKS + +> `const` **UPDATE\_ERROR\_MOCKS**: (\{ `error`: `undefined`; `request`: \{ `query`: `DocumentNode`; `variables`: \{ `data`: `undefined`; `id`: `undefined`; `status`: `undefined`; `where`: \{ `eventId`: `string`; `groupId`: `string`; `status`: `string`; \}; \}; \}; `result`: \{ `data`: \{ `getVolunteerMembership`: `object`[]; \}; \}; \} \| \{ `error`: `Error`; `request`: \{ `query`: `DocumentNode`; `variables`: \{ `data`: `undefined`; `id`: `string`; `status`: `string`; `where`: `undefined`; \}; \}; `result`: `undefined`; \} \| \{ `error`: `Error`; `request`: \{ `query`: `DocumentNode`; `variables`: \{ `data`: \{ `description`: `string`; `eventId`: `string`; `name`: `string`; `volunteersRequired`: `number`; \}; `id`: `string`; `status`: `undefined`; `where`: `undefined`; \}; \}; `result`: `undefined`; \})[] + +Defined in: [src/screens/UserPortal/Volunteer/Groups/Groups.mocks.ts:425](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/UserPortal/Volunteer/Groups/Groups.mocks.ts#L425) diff --git a/docs/docs/auto-docs/screens/UserPortal/Volunteer/Groups/Groups/README.md b/docs/docs/auto-docs/screens/UserPortal/Volunteer/Groups/Groups/README.md new file mode 100644 index 0000000000..b7f737ab07 --- /dev/null +++ b/docs/docs/auto-docs/screens/UserPortal/Volunteer/Groups/Groups/README.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../../../README.md) + +*** + +[talawa-admin](../../../../../modules.md) / screens/UserPortal/Volunteer/Groups/Groups + +# screens/UserPortal/Volunteer/Groups/Groups + +## Functions + +- [default](functions/default.md) diff --git a/docs/docs/auto-docs/screens/UserPortal/Volunteer/Groups/Groups/functions/default.md b/docs/docs/auto-docs/screens/UserPortal/Volunteer/Groups/Groups/functions/default.md new file mode 100644 index 0000000000..0268aeff32 --- /dev/null +++ b/docs/docs/auto-docs/screens/UserPortal/Volunteer/Groups/Groups/functions/default.md @@ -0,0 +1,20 @@ +[**talawa-admin**](../../../../../../README.md) + +*** + +[talawa-admin](../../../../../../modules.md) / [screens/UserPortal/Volunteer/Groups/Groups](../README.md) / default + +# Function: default() + +> **default**(): `JSX.Element` + +Defined in: [src/screens/UserPortal/Volunteer/Groups/Groups.tsx:55](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/UserPortal/Volunteer/Groups/Groups.tsx#L55) + +Component for managing volunteer groups for an event. +This component allows users to view, filter, sort, and create action items. It also provides a modal for creating and editing action items. + +## Returns + +`JSX.Element` + +The rendered component. diff --git a/docs/docs/auto-docs/screens/UserPortal/Volunteer/Invitations/Invitations.mocks/README.md b/docs/docs/auto-docs/screens/UserPortal/Volunteer/Invitations/Invitations.mocks/README.md new file mode 100644 index 0000000000..205f594b35 --- /dev/null +++ b/docs/docs/auto-docs/screens/UserPortal/Volunteer/Invitations/Invitations.mocks/README.md @@ -0,0 +1,14 @@ +[**talawa-admin**](../../../../../README.md) + +*** + +[talawa-admin](../../../../../modules.md) / screens/UserPortal/Volunteer/Invitations/Invitations.mocks + +# screens/UserPortal/Volunteer/Invitations/Invitations.mocks + +## Variables + +- [EMPTY\_MOCKS](variables/EMPTY_MOCKS.md) +- [ERROR\_MOCKS](variables/ERROR_MOCKS.md) +- [MOCKS](variables/MOCKS.md) +- [UPDATE\_ERROR\_MOCKS](variables/UPDATE_ERROR_MOCKS.md) diff --git a/docs/docs/auto-docs/screens/UserPortal/Volunteer/Invitations/Invitations.mocks/variables/EMPTY_MOCKS.md b/docs/docs/auto-docs/screens/UserPortal/Volunteer/Invitations/Invitations.mocks/variables/EMPTY_MOCKS.md new file mode 100644 index 0000000000..71818983f0 --- /dev/null +++ b/docs/docs/auto-docs/screens/UserPortal/Volunteer/Invitations/Invitations.mocks/variables/EMPTY_MOCKS.md @@ -0,0 +1,53 @@ +[**talawa-admin**](../../../../../../README.md) + +*** + +[talawa-admin](../../../../../../modules.md) / [screens/UserPortal/Volunteer/Invitations/Invitations.mocks](../README.md) / EMPTY\_MOCKS + +# Variable: EMPTY\_MOCKS + +> `const` **EMPTY\_MOCKS**: `object`[] + +Defined in: [src/screens/UserPortal/Volunteer/Invitations/Invitations.mocks.ts:189](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/UserPortal/Volunteer/Invitations/Invitations.mocks.ts#L189) + +## Type declaration + +### request + +> **request**: `object` + +#### request.query + +> **query**: `DocumentNode` = `USER_VOLUNTEER_MEMBERSHIP` + +#### request.variables + +> **variables**: `object` + +#### request.variables.where + +> **where**: `object` + +#### request.variables.where.filter + +> **filter**: `any` = `null` + +#### request.variables.where.status + +> **status**: `string` = `'invited'` + +#### request.variables.where.userId + +> **userId**: `string` = `'userId'` + +### result + +> **result**: `object` + +#### result.data + +> **data**: `object` + +#### result.data.getVolunteerMembership + +> **getVolunteerMembership**: `any`[] = `[]` diff --git a/docs/docs/auto-docs/screens/UserPortal/Volunteer/Invitations/Invitations.mocks/variables/ERROR_MOCKS.md b/docs/docs/auto-docs/screens/UserPortal/Volunteer/Invitations/Invitations.mocks/variables/ERROR_MOCKS.md new file mode 100644 index 0000000000..8c2bafed7e --- /dev/null +++ b/docs/docs/auto-docs/screens/UserPortal/Volunteer/Invitations/Invitations.mocks/variables/ERROR_MOCKS.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../../../../README.md) + +*** + +[talawa-admin](../../../../../../modules.md) / [screens/UserPortal/Volunteer/Invitations/Invitations.mocks](../README.md) / ERROR\_MOCKS + +# Variable: ERROR\_MOCKS + +> `const` **ERROR\_MOCKS**: (\{ `error`: `Error`; `request`: \{ `query`: `DocumentNode`; `variables`: \{ `id`: `undefined`; `status`: `undefined`; `where`: \{ `filter`: `any`; `status`: `string`; `userId`: `string`; \}; \}; \}; \} \| \{ `error`: `Error`; `request`: \{ `query`: `DocumentNode`; `variables`: \{ `id`: `string`; `status`: `string`; `where`: `undefined`; \}; \}; \})[] + +Defined in: [src/screens/UserPortal/Volunteer/Invitations/Invitations.mocks.ts:209](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/UserPortal/Volunteer/Invitations/Invitations.mocks.ts#L209) diff --git a/docs/docs/auto-docs/screens/UserPortal/Volunteer/Invitations/Invitations.mocks/variables/MOCKS.md b/docs/docs/auto-docs/screens/UserPortal/Volunteer/Invitations/Invitations.mocks/variables/MOCKS.md new file mode 100644 index 0000000000..2faaf1c1be --- /dev/null +++ b/docs/docs/auto-docs/screens/UserPortal/Volunteer/Invitations/Invitations.mocks/variables/MOCKS.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../../../../README.md) + +*** + +[talawa-admin](../../../../../../modules.md) / [screens/UserPortal/Volunteer/Invitations/Invitations.mocks](../README.md) / MOCKS + +# Variable: MOCKS + +> `const` **MOCKS**: (\{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `id`: `undefined`; `orderBy`: `undefined`; `status`: `undefined`; `where`: \{ `eventTitle`: `undefined`; `filter`: `any`; `status`: `string`; `userId`: `string`; \}; \}; \}; `result`: \{ `data`: \{ `getVolunteerMembership`: (\{ `_id`: `string`; `createdAt`: `string`; `event`: \{ `_id`: `string`; `startDate`: `string`; `title`: `string`; \}; `group`: `any`; `status`: `string`; `volunteer`: \{ `_id`: `string`; `user`: \{ `_id`: `string`; `firstName`: `string`; `image`: `string`; `lastName`: `string`; \}; \}; \} \| \{ `_id`: `string`; `createdAt`: `string`; `event`: \{ `_id`: `string`; `startDate`: `string`; `title`: `string`; \}; `group`: \{ `_id`: `string`; `name`: `string`; \}; `status`: `string`; `volunteer`: \{ `_id`: `string`; `user`: \{ `_id`: `string`; `firstName`: `string`; `image`: `any`; `lastName`: `string`; \}; \}; \})[]; `updateVolunteerMembership`: `undefined`; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `id`: `undefined`; `orderBy`: `string`; `status`: `undefined`; `where`: \{ `eventTitle`: `undefined`; `filter`: `any`; `status`: `string`; `userId`: `string`; \}; \}; \}; `result`: \{ `data`: \{ `getVolunteerMembership`: (\{ `_id`: `string`; `createdAt`: `string`; `event`: \{ `_id`: `string`; `startDate`: `string`; `title`: `string`; \}; `group`: `any`; `status`: `string`; `volunteer`: \{ `_id`: `string`; `user`: \{ `_id`: `string`; `firstName`: `string`; `image`: `string`; `lastName`: `string`; \}; \}; \} \| \{ `_id`: `string`; `createdAt`: `string`; `event`: \{ `_id`: `string`; `startDate`: `string`; `title`: `string`; \}; `group`: \{ `_id`: `string`; `name`: `string`; \}; `status`: `string`; `volunteer`: \{ `_id`: `string`; `user`: \{ `_id`: `string`; `firstName`: `string`; `image`: `any`; `lastName`: `string`; \}; \}; \})[]; `updateVolunteerMembership`: `undefined`; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `id`: `undefined`; `orderBy`: `undefined`; `status`: `undefined`; `where`: \{ `eventTitle`: `undefined`; `filter`: `string`; `status`: `string`; `userId`: `string`; \}; \}; \}; `result`: \{ `data`: \{ `getVolunteerMembership`: `object`[]; `updateVolunteerMembership`: `undefined`; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `id`: `undefined`; `orderBy`: `undefined`; `status`: `undefined`; `where`: \{ `eventTitle`: `undefined`; `filter`: `string`; `status`: `string`; `userId`: `string`; \}; \}; \}; `result`: \{ `data`: \{ `getVolunteerMembership`: `object`[]; `updateVolunteerMembership`: `undefined`; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `id`: `undefined`; `orderBy`: `undefined`; `status`: `undefined`; `where`: \{ `eventTitle`: `string`; `filter`: `any`; `status`: `string`; `userId`: `string`; \}; \}; \}; `result`: \{ `data`: \{ `getVolunteerMembership`: `object`[]; `updateVolunteerMembership`: `undefined`; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `id`: `string`; `orderBy`: `undefined`; `status`: `string`; `where`: `undefined`; \}; \}; `result`: \{ `data`: \{ `getVolunteerMembership`: `undefined`; `updateVolunteerMembership`: \{ `_id`: `string`; \}; \}; \}; \})[] + +Defined in: [src/screens/UserPortal/Volunteer/Invitations/Invitations.mocks.ts:49](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/UserPortal/Volunteer/Invitations/Invitations.mocks.ts#L49) diff --git a/docs/docs/auto-docs/screens/UserPortal/Volunteer/Invitations/Invitations.mocks/variables/UPDATE_ERROR_MOCKS.md b/docs/docs/auto-docs/screens/UserPortal/Volunteer/Invitations/Invitations.mocks/variables/UPDATE_ERROR_MOCKS.md new file mode 100644 index 0000000000..b1d3ede33d --- /dev/null +++ b/docs/docs/auto-docs/screens/UserPortal/Volunteer/Invitations/Invitations.mocks/variables/UPDATE_ERROR_MOCKS.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../../../../README.md) + +*** + +[talawa-admin](../../../../../../modules.md) / [screens/UserPortal/Volunteer/Invitations/Invitations.mocks](../README.md) / UPDATE\_ERROR\_MOCKS + +# Variable: UPDATE\_ERROR\_MOCKS + +> `const` **UPDATE\_ERROR\_MOCKS**: (\{ `error`: `undefined`; `request`: \{ `query`: `DocumentNode`; `variables`: \{ `id`: `undefined`; `status`: `undefined`; `where`: \{ `filter`: `any`; `status`: `string`; `userId`: `string`; \}; \}; \}; `result`: \{ `data`: \{ `getVolunteerMembership`: (\{ `_id`: `string`; `createdAt`: `string`; `event`: \{ `_id`: `string`; `startDate`: `string`; `title`: `string`; \}; `group`: `any`; `status`: `string`; `volunteer`: \{ `_id`: `string`; `user`: \{ `_id`: `string`; `firstName`: `string`; `image`: `string`; `lastName`: `string`; \}; \}; \} \| \{ `_id`: `string`; `createdAt`: `string`; `event`: \{ `_id`: `string`; `startDate`: `string`; `title`: `string`; \}; `group`: \{ `_id`: `string`; `name`: `string`; \}; `status`: `string`; `volunteer`: \{ `_id`: `string`; `user`: \{ `_id`: `string`; `firstName`: `string`; `image`: `any`; `lastName`: `string`; \}; \}; \})[]; \}; \}; \} \| \{ `error`: `Error`; `request`: \{ `query`: `DocumentNode`; `variables`: \{ `id`: `string`; `status`: `string`; `where`: `undefined`; \}; \}; `result`: `undefined`; \})[] + +Defined in: [src/screens/UserPortal/Volunteer/Invitations/Invitations.mocks.ts:235](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/UserPortal/Volunteer/Invitations/Invitations.mocks.ts#L235) diff --git a/docs/docs/auto-docs/screens/UserPortal/Volunteer/Invitations/Invitations/README.md b/docs/docs/auto-docs/screens/UserPortal/Volunteer/Invitations/Invitations/README.md new file mode 100644 index 0000000000..42bc4fdae1 --- /dev/null +++ b/docs/docs/auto-docs/screens/UserPortal/Volunteer/Invitations/Invitations/README.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../../../README.md) + +*** + +[talawa-admin](../../../../../modules.md) / screens/UserPortal/Volunteer/Invitations/Invitations + +# screens/UserPortal/Volunteer/Invitations/Invitations + +## Functions + +- [default](functions/default.md) diff --git a/docs/docs/auto-docs/screens/UserPortal/Volunteer/Invitations/Invitations/functions/default.md b/docs/docs/auto-docs/screens/UserPortal/Volunteer/Invitations/Invitations/functions/default.md new file mode 100644 index 0000000000..7960f2e9c9 --- /dev/null +++ b/docs/docs/auto-docs/screens/UserPortal/Volunteer/Invitations/Invitations/functions/default.md @@ -0,0 +1,20 @@ +[**talawa-admin**](../../../../../../README.md) + +*** + +[talawa-admin](../../../../../../modules.md) / [screens/UserPortal/Volunteer/Invitations/Invitations](../README.md) / default + +# Function: default() + +> **default**(): `Element` + +Defined in: [src/screens/UserPortal/Volunteer/Invitations/Invitations.tsx:32](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/UserPortal/Volunteer/Invitations/Invitations.tsx#L32) + +The `Invitations` component displays list of invites for the user to volunteer. +It allows the user to search, sort, and accept/reject invites. + +## Returns + +`Element` + +The rendered component displaying the upcoming events. diff --git a/docs/docs/auto-docs/screens/UserPortal/Volunteer/UpcomingEvents/UpcomingEvents.mocks/README.md b/docs/docs/auto-docs/screens/UserPortal/Volunteer/UpcomingEvents/UpcomingEvents.mocks/README.md new file mode 100644 index 0000000000..f5e969cd87 --- /dev/null +++ b/docs/docs/auto-docs/screens/UserPortal/Volunteer/UpcomingEvents/UpcomingEvents.mocks/README.md @@ -0,0 +1,14 @@ +[**talawa-admin**](../../../../../README.md) + +*** + +[talawa-admin](../../../../../modules.md) / screens/UserPortal/Volunteer/UpcomingEvents/UpcomingEvents.mocks + +# screens/UserPortal/Volunteer/UpcomingEvents/UpcomingEvents.mocks + +## Variables + +- [CREATE\_ERROR\_MOCKS](variables/CREATE_ERROR_MOCKS.md) +- [EMPTY\_MOCKS](variables/EMPTY_MOCKS.md) +- [ERROR\_MOCKS](variables/ERROR_MOCKS.md) +- [MOCKS](variables/MOCKS.md) diff --git a/docs/docs/auto-docs/screens/UserPortal/Volunteer/UpcomingEvents/UpcomingEvents.mocks/variables/CREATE_ERROR_MOCKS.md b/docs/docs/auto-docs/screens/UserPortal/Volunteer/UpcomingEvents/UpcomingEvents.mocks/variables/CREATE_ERROR_MOCKS.md new file mode 100644 index 0000000000..b126e405be --- /dev/null +++ b/docs/docs/auto-docs/screens/UserPortal/Volunteer/UpcomingEvents/UpcomingEvents.mocks/variables/CREATE_ERROR_MOCKS.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../../../../README.md) + +*** + +[talawa-admin](../../../../../../modules.md) / [screens/UserPortal/Volunteer/UpcomingEvents/UpcomingEvents.mocks](../README.md) / CREATE\_ERROR\_MOCKS + +# Variable: CREATE\_ERROR\_MOCKS + +> `const` **CREATE\_ERROR\_MOCKS**: (\{ `error`: `undefined`; `request`: \{ `query`: `DocumentNode`; `variables`: \{ `data`: `undefined`; `first`: `any`; `location_contains`: `string`; `organization_id`: `string`; `skip`: `any`; `title_contains`: `string`; `upcomingOnly`: `boolean`; \}; \}; `result`: \{ `data`: \{ `eventsByOrganizationConnection`: `object`[]; \}; \}; \} \| \{ `error`: `Error`; `request`: \{ `query`: `DocumentNode`; `variables`: \{ `data`: \{ `event`: `string`; `group`: `any`; `status`: `string`; `userId`: `string`; \}; `first`: `undefined`; `location_contains`: `undefined`; `organization_id`: `undefined`; `skip`: `undefined`; `title_contains`: `undefined`; `upcomingOnly`: `undefined`; \}; \}; `result`: `undefined`; \})[] + +Defined in: [src/screens/UserPortal/Volunteer/UpcomingEvents/UpcomingEvents.mocks.ts:248](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/UserPortal/Volunteer/UpcomingEvents/UpcomingEvents.mocks.ts#L248) diff --git a/docs/docs/auto-docs/screens/UserPortal/Volunteer/UpcomingEvents/UpcomingEvents.mocks/variables/EMPTY_MOCKS.md b/docs/docs/auto-docs/screens/UserPortal/Volunteer/UpcomingEvents/UpcomingEvents.mocks/variables/EMPTY_MOCKS.md new file mode 100644 index 0000000000..b62f711bbc --- /dev/null +++ b/docs/docs/auto-docs/screens/UserPortal/Volunteer/UpcomingEvents/UpcomingEvents.mocks/variables/EMPTY_MOCKS.md @@ -0,0 +1,61 @@ +[**talawa-admin**](../../../../../../README.md) + +*** + +[talawa-admin](../../../../../../modules.md) / [screens/UserPortal/Volunteer/UpcomingEvents/UpcomingEvents.mocks](../README.md) / EMPTY\_MOCKS + +# Variable: EMPTY\_MOCKS + +> `const` **EMPTY\_MOCKS**: `object`[] + +Defined in: [src/screens/UserPortal/Volunteer/UpcomingEvents/UpcomingEvents.mocks.ts:210](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/UserPortal/Volunteer/UpcomingEvents/UpcomingEvents.mocks.ts#L210) + +## Type declaration + +### request + +> **request**: `object` + +#### request.query + +> **query**: `DocumentNode` = `USER_EVENTS_VOLUNTEER` + +#### request.variables + +> **variables**: `object` + +#### request.variables.first + +> **first**: `any` = `null` + +#### request.variables.location\_contains + +> **location\_contains**: `string` = `''` + +#### request.variables.organization\_id + +> **organization\_id**: `string` = `'orgId'` + +#### request.variables.skip + +> **skip**: `any` = `null` + +#### request.variables.title\_contains + +> **title\_contains**: `string` = `''` + +#### request.variables.upcomingOnly + +> **upcomingOnly**: `boolean` = `true` + +### result + +> **result**: `object` + +#### result.data + +> **data**: `object` + +#### result.data.eventsByOrganizationConnection + +> **eventsByOrganizationConnection**: `any`[] = `[]` diff --git a/docs/docs/auto-docs/screens/UserPortal/Volunteer/UpcomingEvents/UpcomingEvents.mocks/variables/ERROR_MOCKS.md b/docs/docs/auto-docs/screens/UserPortal/Volunteer/UpcomingEvents/UpcomingEvents.mocks/variables/ERROR_MOCKS.md new file mode 100644 index 0000000000..9f9be734e4 --- /dev/null +++ b/docs/docs/auto-docs/screens/UserPortal/Volunteer/UpcomingEvents/UpcomingEvents.mocks/variables/ERROR_MOCKS.md @@ -0,0 +1,53 @@ +[**talawa-admin**](../../../../../../README.md) + +*** + +[talawa-admin](../../../../../../modules.md) / [screens/UserPortal/Volunteer/UpcomingEvents/UpcomingEvents.mocks](../README.md) / ERROR\_MOCKS + +# Variable: ERROR\_MOCKS + +> `const` **ERROR\_MOCKS**: `object`[] + +Defined in: [src/screens/UserPortal/Volunteer/UpcomingEvents/UpcomingEvents.mocks.ts:231](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/UserPortal/Volunteer/UpcomingEvents/UpcomingEvents.mocks.ts#L231) + +## Type declaration + +### error + +> **error**: `Error` + +### request + +> **request**: `object` + +#### request.query + +> **query**: `DocumentNode` = `USER_EVENTS_VOLUNTEER` + +#### request.variables + +> **variables**: `object` + +#### request.variables.first + +> **first**: `any` = `null` + +#### request.variables.location\_contains + +> **location\_contains**: `string` = `''` + +#### request.variables.organization\_id + +> **organization\_id**: `string` = `'orgId'` + +#### request.variables.skip + +> **skip**: `any` = `null` + +#### request.variables.title\_contains + +> **title\_contains**: `string` = `''` + +#### request.variables.upcomingOnly + +> **upcomingOnly**: `boolean` = `true` diff --git a/docs/docs/auto-docs/screens/UserPortal/Volunteer/UpcomingEvents/UpcomingEvents.mocks/variables/MOCKS.md b/docs/docs/auto-docs/screens/UserPortal/Volunteer/UpcomingEvents/UpcomingEvents.mocks/variables/MOCKS.md new file mode 100644 index 0000000000..f466a20de4 --- /dev/null +++ b/docs/docs/auto-docs/screens/UserPortal/Volunteer/UpcomingEvents/UpcomingEvents.mocks/variables/MOCKS.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../../../../README.md) + +*** + +[talawa-admin](../../../../../../modules.md) / [screens/UserPortal/Volunteer/UpcomingEvents/UpcomingEvents.mocks](../README.md) / MOCKS + +# Variable: MOCKS + +> `const` **MOCKS**: (\{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `data`: `undefined`; `first`: `any`; `location_contains`: `string`; `organization_id`: `string`; `skip`: `any`; `title_contains`: `string`; `upcomingOnly`: `boolean`; \}; \}; `result`: \{ `data`: \{ `createVolunteerMembership`: `undefined`; `eventsByOrganizationConnection`: `object`[]; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `data`: \{ `event`: `string`; `group`: `string`; `status`: `string`; `userId`: `string`; \}; `first`: `undefined`; `location_contains`: `undefined`; `organization_id`: `undefined`; `skip`: `undefined`; `title_contains`: `undefined`; `upcomingOnly`: `undefined`; \}; \}; `result`: \{ `data`: \{ `createVolunteerMembership`: \{ `_id`: `string`; \}; `eventsByOrganizationConnection`: `undefined`; \}; \}; \})[] + +Defined in: [src/screens/UserPortal/Volunteer/UpcomingEvents/UpcomingEvents.mocks.ts:113](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/UserPortal/Volunteer/UpcomingEvents/UpcomingEvents.mocks.ts#L113) diff --git a/docs/docs/auto-docs/screens/UserPortal/Volunteer/UpcomingEvents/UpcomingEvents/README.md b/docs/docs/auto-docs/screens/UserPortal/Volunteer/UpcomingEvents/UpcomingEvents/README.md new file mode 100644 index 0000000000..b1e26a9030 --- /dev/null +++ b/docs/docs/auto-docs/screens/UserPortal/Volunteer/UpcomingEvents/UpcomingEvents/README.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../../../README.md) + +*** + +[talawa-admin](../../../../../modules.md) / screens/UserPortal/Volunteer/UpcomingEvents/UpcomingEvents + +# screens/UserPortal/Volunteer/UpcomingEvents/UpcomingEvents + +## Functions + +- [default](functions/default.md) diff --git a/docs/docs/auto-docs/screens/UserPortal/Volunteer/UpcomingEvents/UpcomingEvents/functions/default.md b/docs/docs/auto-docs/screens/UserPortal/Volunteer/UpcomingEvents/UpcomingEvents/functions/default.md new file mode 100644 index 0000000000..350e909b0a --- /dev/null +++ b/docs/docs/auto-docs/screens/UserPortal/Volunteer/UpcomingEvents/UpcomingEvents/functions/default.md @@ -0,0 +1,20 @@ +[**talawa-admin**](../../../../../../README.md) + +*** + +[talawa-admin](../../../../../../modules.md) / [screens/UserPortal/Volunteer/UpcomingEvents/UpcomingEvents](../README.md) / default + +# Function: default() + +> **default**(): `Element` + +Defined in: [src/screens/UserPortal/Volunteer/UpcomingEvents/UpcomingEvents.tsx:42](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/UserPortal/Volunteer/UpcomingEvents/UpcomingEvents.tsx#L42) + +The `UpcomingEvents` component displays list of upcoming events for the user to volunteer. +It allows the user to search, sort, and volunteer for events/volunteer groups. + +## Returns + +`Element` + +The rendered component displaying the upcoming events. diff --git a/docs/docs/auto-docs/screens/UserPortal/Volunteer/VolunteerManagement/README.md b/docs/docs/auto-docs/screens/UserPortal/Volunteer/VolunteerManagement/README.md new file mode 100644 index 0000000000..0953d11021 --- /dev/null +++ b/docs/docs/auto-docs/screens/UserPortal/Volunteer/VolunteerManagement/README.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / screens/UserPortal/Volunteer/VolunteerManagement + +# screens/UserPortal/Volunteer/VolunteerManagement + +## Functions + +- [default](functions/default.md) diff --git a/docs/docs/auto-docs/screens/UserPortal/Volunteer/VolunteerManagement/functions/default.md b/docs/docs/auto-docs/screens/UserPortal/Volunteer/VolunteerManagement/functions/default.md new file mode 100644 index 0000000000..ad11a489a8 --- /dev/null +++ b/docs/docs/auto-docs/screens/UserPortal/Volunteer/VolunteerManagement/functions/default.md @@ -0,0 +1,25 @@ +[**talawa-admin**](../../../../../README.md) + +*** + +[talawa-admin](../../../../../modules.md) / [screens/UserPortal/Volunteer/VolunteerManagement](../README.md) / default + +# Function: default() + +> **default**(): `Element` + +Defined in: [src/screens/UserPortal/Volunteer/VolunteerManagement.tsx:58](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/UserPortal/Volunteer/VolunteerManagement.tsx#L58) + +`VolunteerManagement` component handles the display and navigation of different event management sections. + +It provides a tabbed interface for: +- Viewing upcoming events to volunteer +- Managing volunteer requests +- Managing volunteer invitations +- Managing volunteer groups + +## Returns + +`Element` + +JSX.Element - The `VolunteerManagement` component. diff --git a/docs/docs/auto-docs/screens/Users/Users/README.md b/docs/docs/auto-docs/screens/Users/Users/README.md new file mode 100644 index 0000000000..c5507d7ad8 --- /dev/null +++ b/docs/docs/auto-docs/screens/Users/Users/README.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / screens/Users/Users + +# screens/Users/Users + +## Functions + +- [default](functions/default.md) diff --git a/docs/docs/auto-docs/screens/Users/Users/functions/default.md b/docs/docs/auto-docs/screens/Users/Users/functions/default.md new file mode 100644 index 0000000000..e4b8bde37e --- /dev/null +++ b/docs/docs/auto-docs/screens/Users/Users/functions/default.md @@ -0,0 +1,55 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [screens/Users/Users](../README.md) / default + +# Function: default() + +> **default**(): `Element` + +Defined in: [src/screens/Users/Users.tsx:64](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/Users/Users.tsx#L64) + +The `Users` component is responsible for displaying a list of users in a paginated and sortable format. +It supports search functionality, filtering, and sorting of users. The component integrates with GraphQL +for fetching and managing user data and displays results with infinite scrolling. + +## Features: +- **Search:** Allows users to search for users by their first name. +- **Sorting:** Provides options to sort users by creation date (newest or oldest). +- **Filtering:** Enables filtering users based on their roles (admin, superadmin, user, etc.). +- **Pagination:** Utilizes infinite scrolling to load more users as the user scrolls down. + +## GraphQL Queries: +- `USER_LIST`: Fetches a list of users with specified search, sorting, and pagination parameters. +- `ORGANIZATION_CONNECTION_LIST`: Fetches a list of organizations to verify organization existence. + +## Component State: +- `isLoading`: Indicates whether the component is currently loading data. +- `hasMore`: Indicates if there are more users to load. +- `isLoadingMore`: Indicates if more users are currently being loaded. +- `searchByName`: The current search query for user names. +- `sortingOption`: The current sorting option (newest or oldest). +- `filteringOption`: The current filtering option (admin, superadmin, user, cancel). +- `displayedUsers`: The list of users currently displayed, filtered and sorted. + +## Event Handlers: +- `handleSearch`: Handles searching users by name and refetches the user list. +- `handleSearchByEnter`: Handles search input when the Enter key is pressed. +- `handleSearchByBtnClick`: Handles search input when the search button is clicked. +- `resetAndRefetch`: Resets search and refetches the user list with default parameters. +- `loadMoreUsers`: Loads more users when scrolling reaches the end of the list. +- `handleSorting`: Updates sorting option and refetches the user list. +- `handleFiltering`: Updates filtering option and refetches the user list. + +## Rendering: +- Displays a search input and button for searching users. +- Provides dropdowns for sorting and filtering users. +- Renders a table of users with infinite scrolling support. +- Shows appropriate messages when no users are found or when search yields no results. + +## Returns + +`Element` + +The rendered `Users` component. diff --git a/docs/docs/auto-docs/screens/Users/UsersMocks/README.md b/docs/docs/auto-docs/screens/Users/UsersMocks/README.md new file mode 100644 index 0000000000..b81d997236 --- /dev/null +++ b/docs/docs/auto-docs/screens/Users/UsersMocks/README.md @@ -0,0 +1,13 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / screens/Users/UsersMocks + +# screens/Users/UsersMocks + +## Variables + +- [EMPTY\_MOCKS](variables/EMPTY_MOCKS.md) +- [MOCKS](variables/MOCKS.md) +- [MOCKS2](variables/MOCKS2.md) diff --git a/docs/docs/auto-docs/screens/Users/UsersMocks/variables/EMPTY_MOCKS.md b/docs/docs/auto-docs/screens/Users/UsersMocks/variables/EMPTY_MOCKS.md new file mode 100644 index 0000000000..a2005fb05e --- /dev/null +++ b/docs/docs/auto-docs/screens/Users/UsersMocks/variables/EMPTY_MOCKS.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [screens/Users/UsersMocks](../README.md) / EMPTY\_MOCKS + +# Variable: EMPTY\_MOCKS + +> `const` **EMPTY\_MOCKS**: (\{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `first`: `number`; `firstName_contains`: `string`; `lastName_contains`: `string`; `skip`: `number`; \}; \}; `result`: \{ `data`: \{ `organizationsConnection`: `undefined`; `users`: `any`[]; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: `undefined`; \}; `result`: \{ `data`: \{ `organizationsConnection`: `any`[]; `users`: `undefined`; \}; \}; \})[] + +Defined in: [src/screens/Users/UsersMocks.ts:477](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/Users/UsersMocks.ts#L477) diff --git a/docs/docs/auto-docs/screens/Users/UsersMocks/variables/MOCKS.md b/docs/docs/auto-docs/screens/Users/UsersMocks/variables/MOCKS.md new file mode 100644 index 0000000000..8be94e695b --- /dev/null +++ b/docs/docs/auto-docs/screens/Users/UsersMocks/variables/MOCKS.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [screens/Users/UsersMocks](../README.md) / MOCKS + +# Variable: MOCKS + +> `const` **MOCKS**: (\{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `first`: `undefined`; `firstName_contains`: `undefined`; `id`: `string`; `lastName_contains`: `undefined`; `skip`: `undefined`; \}; \}; `result`: \{ `data`: \{ `organizationsConnection`: `undefined`; `user`: \{ `email`: `string`; `firstName`: `string`; `image`: `string`; `lastName`: `string`; \}; `users`: `undefined`; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `first`: `number`; `firstName_contains`: `string`; `id`: `undefined`; `lastName_contains`: `string`; `skip`: `number`; \}; \}; `result`: \{ `data`: \{ `organizationsConnection`: `undefined`; `user`: `undefined`; `users`: `object`[]; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: `undefined`; \}; `result`: \{ `data`: \{ `organizationsConnection`: `object`[]; `user`: `undefined`; `users`: `undefined`; \}; \}; \})[] + +Defined in: [src/screens/Users/UsersMocks.ts:7](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/Users/UsersMocks.ts#L7) diff --git a/docs/docs/auto-docs/screens/Users/UsersMocks/variables/MOCKS2.md b/docs/docs/auto-docs/screens/Users/UsersMocks/variables/MOCKS2.md new file mode 100644 index 0000000000..cd8533a65a --- /dev/null +++ b/docs/docs/auto-docs/screens/Users/UsersMocks/variables/MOCKS2.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [screens/Users/UsersMocks](../README.md) / MOCKS2 + +# Variable: MOCKS2 + +> `const` **MOCKS2**: (\{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `first`: `undefined`; `firstName_contains`: `undefined`; `id`: `string`; `lastName_contains`: `undefined`; `skip`: `undefined`; \}; \}; `result`: \{ `data`: \{ `organizationsConnection`: `undefined`; `user`: \{ `email`: `string`; `firstName`: `string`; `image`: `string`; `lastName`: `string`; \}; `users`: `undefined`; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `first`: `number`; `firstName_contains`: `string`; `id`: `undefined`; `lastName_contains`: `string`; `skip`: `number`; \}; \}; `result`: \{ `data`: \{ `organizationsConnection`: `undefined`; `user`: `undefined`; `users`: `object`[]; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: `undefined`; \}; `result`: \{ `data`: \{ `organizationsConnection`: `object`[]; `user`: `undefined`; `users`: `undefined`; \}; \}; \})[] + +Defined in: [src/screens/Users/UsersMocks.ts:242](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/Users/UsersMocks.ts#L242) diff --git a/docs/docs/auto-docs/setup/askAndSetDockerOption/askAndSetDockerOption/README.md b/docs/docs/auto-docs/setup/askAndSetDockerOption/askAndSetDockerOption/README.md new file mode 100644 index 0000000000..5bc0942e50 --- /dev/null +++ b/docs/docs/auto-docs/setup/askAndSetDockerOption/askAndSetDockerOption/README.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / setup/askAndSetDockerOption/askAndSetDockerOption + +# setup/askAndSetDockerOption/askAndSetDockerOption + +## Functions + +- [default](functions/default.md) diff --git a/docs/docs/auto-docs/setup/askAndSetDockerOption/askAndSetDockerOption/functions/default.md b/docs/docs/auto-docs/setup/askAndSetDockerOption/askAndSetDockerOption/functions/default.md new file mode 100644 index 0000000000..cf03440a84 --- /dev/null +++ b/docs/docs/auto-docs/setup/askAndSetDockerOption/askAndSetDockerOption/functions/default.md @@ -0,0 +1,15 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [setup/askAndSetDockerOption/askAndSetDockerOption](../README.md) / default + +# Function: default() + +> **default**(): `Promise`\<`void`\> + +Defined in: [src/setup/askAndSetDockerOption/askAndSetDockerOption.ts:6](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/setup/askAndSetDockerOption/askAndSetDockerOption.ts#L6) + +## Returns + +`Promise`\<`void`\> diff --git a/docs/docs/auto-docs/setup/askAndUpdatePort/askAndUpdatePort/README.md b/docs/docs/auto-docs/setup/askAndUpdatePort/askAndUpdatePort/README.md new file mode 100644 index 0000000000..4e2b85a2e9 --- /dev/null +++ b/docs/docs/auto-docs/setup/askAndUpdatePort/askAndUpdatePort/README.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / setup/askAndUpdatePort/askAndUpdatePort + +# setup/askAndUpdatePort/askAndUpdatePort + +## Functions + +- [default](functions/default.md) diff --git a/docs/docs/auto-docs/setup/askAndUpdatePort/askAndUpdatePort/functions/default.md b/docs/docs/auto-docs/setup/askAndUpdatePort/askAndUpdatePort/functions/default.md new file mode 100644 index 0000000000..bc7efe8fcf --- /dev/null +++ b/docs/docs/auto-docs/setup/askAndUpdatePort/askAndUpdatePort/functions/default.md @@ -0,0 +1,15 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [setup/askAndUpdatePort/askAndUpdatePort](../README.md) / default + +# Function: default() + +> **default**(): `Promise`\<`void`\> + +Defined in: [src/setup/askAndUpdatePort/askAndUpdatePort.ts:6](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/setup/askAndUpdatePort/askAndUpdatePort.ts#L6) + +## Returns + +`Promise`\<`void`\> diff --git a/docs/docs/auto-docs/setup/askForCustomPort/askForCustomPort/README.md b/docs/docs/auto-docs/setup/askForCustomPort/askForCustomPort/README.md new file mode 100644 index 0000000000..c8b95ca472 --- /dev/null +++ b/docs/docs/auto-docs/setup/askForCustomPort/askForCustomPort/README.md @@ -0,0 +1,13 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / setup/askForCustomPort/askForCustomPort + +# setup/askForCustomPort/askForCustomPort + +## Functions + +- [askForCustomPort](functions/askForCustomPort.md) +- [reservedPortWarning](functions/reservedPortWarning.md) +- [validatePort](functions/validatePort.md) diff --git a/docs/docs/auto-docs/setup/askForCustomPort/askForCustomPort/functions/askForCustomPort.md b/docs/docs/auto-docs/setup/askForCustomPort/askForCustomPort/functions/askForCustomPort.md new file mode 100644 index 0000000000..ef3141856f --- /dev/null +++ b/docs/docs/auto-docs/setup/askForCustomPort/askForCustomPort/functions/askForCustomPort.md @@ -0,0 +1,15 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [setup/askForCustomPort/askForCustomPort](../README.md) / askForCustomPort + +# Function: askForCustomPort() + +> **askForCustomPort**(): `Promise`\<`number`\> + +Defined in: [src/setup/askForCustomPort/askForCustomPort.ts:32](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/setup/askForCustomPort/askForCustomPort.ts#L32) + +## Returns + +`Promise`\<`number`\> diff --git a/docs/docs/auto-docs/setup/askForCustomPort/askForCustomPort/functions/reservedPortWarning.md b/docs/docs/auto-docs/setup/askForCustomPort/askForCustomPort/functions/reservedPortWarning.md new file mode 100644 index 0000000000..27fd610209 --- /dev/null +++ b/docs/docs/auto-docs/setup/askForCustomPort/askForCustomPort/functions/reservedPortWarning.md @@ -0,0 +1,21 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [setup/askForCustomPort/askForCustomPort](../README.md) / reservedPortWarning + +# Function: reservedPortWarning() + +> **reservedPortWarning**(`port`): `Promise`\<`boolean`\> + +Defined in: [src/setup/askForCustomPort/askForCustomPort.ts:19](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/setup/askForCustomPort/askForCustomPort.ts#L19) + +## Parameters + +### port + +`number` + +## Returns + +`Promise`\<`boolean`\> diff --git a/docs/docs/auto-docs/setup/askForCustomPort/askForCustomPort/functions/validatePort.md b/docs/docs/auto-docs/setup/askForCustomPort/askForCustomPort/functions/validatePort.md new file mode 100644 index 0000000000..6e147bae34 --- /dev/null +++ b/docs/docs/auto-docs/setup/askForCustomPort/askForCustomPort/functions/validatePort.md @@ -0,0 +1,21 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [setup/askForCustomPort/askForCustomPort](../README.md) / validatePort + +# Function: validatePort() + +> **validatePort**(`input`): `string` \| `boolean` + +Defined in: [src/setup/askForCustomPort/askForCustomPort.ts:6](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/setup/askForCustomPort/askForCustomPort.ts#L6) + +## Parameters + +### input + +`string` + +## Returns + +`string` \| `boolean` diff --git a/docs/docs/auto-docs/setup/askForDocker/askForDocker/README.md b/docs/docs/auto-docs/setup/askForDocker/askForDocker/README.md new file mode 100644 index 0000000000..b583b3e007 --- /dev/null +++ b/docs/docs/auto-docs/setup/askForDocker/askForDocker/README.md @@ -0,0 +1,12 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / setup/askForDocker/askForDocker + +# setup/askForDocker/askForDocker + +## Functions + +- [askAndUpdateTalawaApiUrl](functions/askAndUpdateTalawaApiUrl.md) +- [askForDocker](functions/askForDocker.md) diff --git a/docs/docs/auto-docs/setup/askForDocker/askForDocker/functions/askAndUpdateTalawaApiUrl.md b/docs/docs/auto-docs/setup/askForDocker/askForDocker/functions/askAndUpdateTalawaApiUrl.md new file mode 100644 index 0000000000..d4718f4fbb --- /dev/null +++ b/docs/docs/auto-docs/setup/askForDocker/askForDocker/functions/askAndUpdateTalawaApiUrl.md @@ -0,0 +1,15 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [setup/askForDocker/askForDocker](../README.md) / askAndUpdateTalawaApiUrl + +# Function: askAndUpdateTalawaApiUrl() + +> **askAndUpdateTalawaApiUrl**(): `Promise`\<`void`\> + +Defined in: [src/setup/askForDocker/askForDocker.ts:33](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/setup/askForDocker/askForDocker.ts#L33) + +## Returns + +`Promise`\<`void`\> diff --git a/docs/docs/auto-docs/setup/askForDocker/askForDocker/functions/askForDocker.md b/docs/docs/auto-docs/setup/askForDocker/askForDocker/functions/askForDocker.md new file mode 100644 index 0000000000..576cf24ae2 --- /dev/null +++ b/docs/docs/auto-docs/setup/askForDocker/askForDocker/functions/askForDocker.md @@ -0,0 +1,15 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [setup/askForDocker/askForDocker](../README.md) / askForDocker + +# Function: askForDocker() + +> **askForDocker**(): `Promise`\<`string`\> + +Defined in: [src/setup/askForDocker/askForDocker.ts:12](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/setup/askForDocker/askForDocker.ts#L12) + +## Returns + +`Promise`\<`string`\> diff --git a/docs/docs/auto-docs/setup/askForTalawaApiUrl/askForTalawaApiUrl/README.md b/docs/docs/auto-docs/setup/askForTalawaApiUrl/askForTalawaApiUrl/README.md new file mode 100644 index 0000000000..6dc585fbca --- /dev/null +++ b/docs/docs/auto-docs/setup/askForTalawaApiUrl/askForTalawaApiUrl/README.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / setup/askForTalawaApiUrl/askForTalawaApiUrl + +# setup/askForTalawaApiUrl/askForTalawaApiUrl + +## Functions + +- [askForTalawaApiUrl](functions/askForTalawaApiUrl.md) diff --git a/docs/docs/auto-docs/setup/askForTalawaApiUrl/askForTalawaApiUrl/functions/askForTalawaApiUrl.md b/docs/docs/auto-docs/setup/askForTalawaApiUrl/askForTalawaApiUrl/functions/askForTalawaApiUrl.md new file mode 100644 index 0000000000..bb7a9c19af --- /dev/null +++ b/docs/docs/auto-docs/setup/askForTalawaApiUrl/askForTalawaApiUrl/functions/askForTalawaApiUrl.md @@ -0,0 +1,15 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [setup/askForTalawaApiUrl/askForTalawaApiUrl](../README.md) / askForTalawaApiUrl + +# Function: askForTalawaApiUrl() + +> **askForTalawaApiUrl**(): `Promise`\<`string`\> + +Defined in: [src/setup/askForTalawaApiUrl/askForTalawaApiUrl.ts:3](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/setup/askForTalawaApiUrl/askForTalawaApiUrl.ts#L3) + +## Returns + +`Promise`\<`string`\> diff --git a/docs/docs/auto-docs/setup/checkConnection/checkConnection/README.md b/docs/docs/auto-docs/setup/checkConnection/checkConnection/README.md new file mode 100644 index 0000000000..fc95bee4c5 --- /dev/null +++ b/docs/docs/auto-docs/setup/checkConnection/checkConnection/README.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / setup/checkConnection/checkConnection + +# setup/checkConnection/checkConnection + +## Functions + +- [checkConnection](functions/checkConnection.md) diff --git a/docs/docs/auto-docs/setup/checkConnection/checkConnection/functions/checkConnection.md b/docs/docs/auto-docs/setup/checkConnection/checkConnection/functions/checkConnection.md new file mode 100644 index 0000000000..a7530db9f2 --- /dev/null +++ b/docs/docs/auto-docs/setup/checkConnection/checkConnection/functions/checkConnection.md @@ -0,0 +1,21 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [setup/checkConnection/checkConnection](../README.md) / checkConnection + +# Function: checkConnection() + +> **checkConnection**(`url`): `Promise`\<`any`\> + +Defined in: [src/setup/checkConnection/checkConnection.ts:1](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/setup/checkConnection/checkConnection.ts#L1) + +## Parameters + +### url + +`string` + +## Returns + +`Promise`\<`any`\> diff --git a/docs/docs/auto-docs/setup/checkEnvFile/checkEnvFile/README.md b/docs/docs/auto-docs/setup/checkEnvFile/checkEnvFile/README.md new file mode 100644 index 0000000000..d31ac84642 --- /dev/null +++ b/docs/docs/auto-docs/setup/checkEnvFile/checkEnvFile/README.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / setup/checkEnvFile/checkEnvFile + +# setup/checkEnvFile/checkEnvFile + +## Functions + +- [checkEnvFile](functions/checkEnvFile.md) diff --git a/docs/docs/auto-docs/setup/checkEnvFile/checkEnvFile/functions/checkEnvFile.md b/docs/docs/auto-docs/setup/checkEnvFile/checkEnvFile/functions/checkEnvFile.md new file mode 100644 index 0000000000..724579034b --- /dev/null +++ b/docs/docs/auto-docs/setup/checkEnvFile/checkEnvFile/functions/checkEnvFile.md @@ -0,0 +1,15 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [setup/checkEnvFile/checkEnvFile](../README.md) / checkEnvFile + +# Function: checkEnvFile() + +> **checkEnvFile**(): `void` + +Defined in: [src/setup/checkEnvFile/checkEnvFile.ts:6](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/setup/checkEnvFile/checkEnvFile.ts#L6) + +## Returns + +`void` diff --git a/docs/docs/auto-docs/setup/updateEnvFile/updateEnvFile/README.md b/docs/docs/auto-docs/setup/updateEnvFile/updateEnvFile/README.md new file mode 100644 index 0000000000..2737884456 --- /dev/null +++ b/docs/docs/auto-docs/setup/updateEnvFile/updateEnvFile/README.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / setup/updateEnvFile/updateEnvFile + +# setup/updateEnvFile/updateEnvFile + +## Functions + +- [default](functions/default.md) diff --git a/docs/docs/auto-docs/setup/updateEnvFile/updateEnvFile/functions/default.md b/docs/docs/auto-docs/setup/updateEnvFile/updateEnvFile/functions/default.md new file mode 100644 index 0000000000..32e56a9d63 --- /dev/null +++ b/docs/docs/auto-docs/setup/updateEnvFile/updateEnvFile/functions/default.md @@ -0,0 +1,25 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [setup/updateEnvFile/updateEnvFile](../README.md) / default + +# Function: default() + +> **default**(`key`, `value`): `void` + +Defined in: [src/setup/updateEnvFile/updateEnvFile.ts:3](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/setup/updateEnvFile/updateEnvFile.ts#L3) + +## Parameters + +### key + +`string` + +### value + +`string` + +## Returns + +`void` diff --git a/docs/docs/auto-docs/setup/validateRecaptcha/validateRecaptcha/README.md b/docs/docs/auto-docs/setup/validateRecaptcha/validateRecaptcha/README.md new file mode 100644 index 0000000000..0cd2f31bb8 --- /dev/null +++ b/docs/docs/auto-docs/setup/validateRecaptcha/validateRecaptcha/README.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / setup/validateRecaptcha/validateRecaptcha + +# setup/validateRecaptcha/validateRecaptcha + +## Functions + +- [validateRecaptcha](functions/validateRecaptcha.md) diff --git a/docs/docs/auto-docs/setup/validateRecaptcha/validateRecaptcha/functions/validateRecaptcha.md b/docs/docs/auto-docs/setup/validateRecaptcha/validateRecaptcha/functions/validateRecaptcha.md new file mode 100644 index 0000000000..0837a2957e --- /dev/null +++ b/docs/docs/auto-docs/setup/validateRecaptcha/validateRecaptcha/functions/validateRecaptcha.md @@ -0,0 +1,21 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [setup/validateRecaptcha/validateRecaptcha](../README.md) / validateRecaptcha + +# Function: validateRecaptcha() + +> **validateRecaptcha**(`string`): `boolean` + +Defined in: [src/setup/validateRecaptcha/validateRecaptcha.ts:1](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/setup/validateRecaptcha/validateRecaptcha.ts#L1) + +## Parameters + +### string + +`string` + +## Returns + +`boolean` diff --git a/docs/docs/auto-docs/setupTests/README.md b/docs/docs/auto-docs/setupTests/README.md new file mode 100644 index 0000000000..60ca3ade7d --- /dev/null +++ b/docs/docs/auto-docs/setupTests/README.md @@ -0,0 +1,7 @@ +[**talawa-admin**](../README.md) + +*** + +[talawa-admin](../modules.md) / setupTests + +# setupTests diff --git a/docs/docs/auto-docs/state/README.md b/docs/docs/auto-docs/state/README.md new file mode 100644 index 0000000000..cefc734da4 --- /dev/null +++ b/docs/docs/auto-docs/state/README.md @@ -0,0 +1,13 @@ +[**talawa-admin**](../README.md) + +*** + +[talawa-admin](../modules.md) / state + +# state + +## References + +### actionCreators + +Renames and re-exports [state/action-creators](action-creators/README.md) diff --git a/docs/docs/auto-docs/state/action-creators/README.md b/docs/docs/auto-docs/state/action-creators/README.md new file mode 100644 index 0000000000..f511ab1645 --- /dev/null +++ b/docs/docs/auto-docs/state/action-creators/README.md @@ -0,0 +1,15 @@ +[**talawa-admin**](../../README.md) + +*** + +[talawa-admin](../../modules.md) / state/action-creators + +# state/action-creators + +## Functions + +- [installPlugin](functions/installPlugin.md) +- [removePlugin](functions/removePlugin.md) +- [updateInstalled](functions/updateInstalled.md) +- [updatePluginLinks](functions/updatePluginLinks.md) +- [updateTargets](functions/updateTargets.md) diff --git a/docs/docs/auto-docs/state/action-creators/functions/installPlugin.md b/docs/docs/auto-docs/state/action-creators/functions/installPlugin.md new file mode 100644 index 0000000000..2c093e94a8 --- /dev/null +++ b/docs/docs/auto-docs/state/action-creators/functions/installPlugin.md @@ -0,0 +1,31 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / [state/action-creators](../README.md) / installPlugin + +# Function: installPlugin() + +> **installPlugin**(`plugin`): (`dispatch`) => `void` + +Defined in: [src/state/action-creators/index.ts:10](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/state/action-creators/index.ts#L10) + +## Parameters + +### plugin + +`any` + +## Returns + +`Function` + +### Parameters + +#### dispatch + +`any` + +### Returns + +`void` diff --git a/docs/docs/auto-docs/state/action-creators/functions/removePlugin.md b/docs/docs/auto-docs/state/action-creators/functions/removePlugin.md new file mode 100644 index 0000000000..8c8b5b8a32 --- /dev/null +++ b/docs/docs/auto-docs/state/action-creators/functions/removePlugin.md @@ -0,0 +1,31 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / [state/action-creators](../README.md) / removePlugin + +# Function: removePlugin() + +> **removePlugin**(`plugin`): (`dispatch`) => `void` + +Defined in: [src/state/action-creators/index.ts:19](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/state/action-creators/index.ts#L19) + +## Parameters + +### plugin + +`any` + +## Returns + +`Function` + +### Parameters + +#### dispatch + +`any` + +### Returns + +`void` diff --git a/docs/docs/auto-docs/state/action-creators/functions/updateInstalled.md b/docs/docs/auto-docs/state/action-creators/functions/updateInstalled.md new file mode 100644 index 0000000000..69f69fde55 --- /dev/null +++ b/docs/docs/auto-docs/state/action-creators/functions/updateInstalled.md @@ -0,0 +1,31 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / [state/action-creators](../README.md) / updateInstalled + +# Function: updateInstalled() + +> **updateInstalled**(`plugin`): (`dispatch`) => `void` + +Defined in: [src/state/action-creators/index.ts:1](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/state/action-creators/index.ts#L1) + +## Parameters + +### plugin + +`any` + +## Returns + +`Function` + +### Parameters + +#### dispatch + +`any` + +### Returns + +`void` diff --git a/docs/docs/auto-docs/state/action-creators/functions/updatePluginLinks.md b/docs/docs/auto-docs/state/action-creators/functions/updatePluginLinks.md new file mode 100644 index 0000000000..cb987c33c9 --- /dev/null +++ b/docs/docs/auto-docs/state/action-creators/functions/updatePluginLinks.md @@ -0,0 +1,31 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / [state/action-creators](../README.md) / updatePluginLinks + +# Function: updatePluginLinks() + +> **updatePluginLinks**(`plugins`): (`dispatch`) => `void` + +Defined in: [src/state/action-creators/index.ts:28](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/state/action-creators/index.ts#L28) + +## Parameters + +### plugins + +`any` + +## Returns + +`Function` + +### Parameters + +#### dispatch + +`any` + +### Returns + +`void` diff --git a/docs/docs/auto-docs/state/action-creators/functions/updateTargets.md b/docs/docs/auto-docs/state/action-creators/functions/updateTargets.md new file mode 100644 index 0000000000..0fe8b41978 --- /dev/null +++ b/docs/docs/auto-docs/state/action-creators/functions/updateTargets.md @@ -0,0 +1,31 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / [state/action-creators](../README.md) / updateTargets + +# Function: updateTargets() + +> **updateTargets**(`orgId`): (`dispatch`) => `void` + +Defined in: [src/state/action-creators/index.ts:37](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/state/action-creators/index.ts#L37) + +## Parameters + +### orgId + +`string` + +## Returns + +`Function` + +### Parameters + +#### dispatch + +`any` + +### Returns + +`void` diff --git a/docs/docs/auto-docs/state/helpers/Action/README.md b/docs/docs/auto-docs/state/helpers/Action/README.md new file mode 100644 index 0000000000..6fa88902cb --- /dev/null +++ b/docs/docs/auto-docs/state/helpers/Action/README.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / state/helpers/Action + +# state/helpers/Action + +## Interfaces + +- [InterfaceAction](interfaces/InterfaceAction.md) diff --git a/docs/docs/auto-docs/state/helpers/Action/interfaces/InterfaceAction.md b/docs/docs/auto-docs/state/helpers/Action/interfaces/InterfaceAction.md new file mode 100644 index 0000000000..94a9beb63d --- /dev/null +++ b/docs/docs/auto-docs/state/helpers/Action/interfaces/InterfaceAction.md @@ -0,0 +1,25 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [state/helpers/Action](../README.md) / InterfaceAction + +# Interface: InterfaceAction + +Defined in: [src/state/helpers/Action.ts:1](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/state/helpers/Action.ts#L1) + +## Properties + +### payload + +> **payload**: `any` + +Defined in: [src/state/helpers/Action.ts:3](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/state/helpers/Action.ts#L3) + +*** + +### type + +> **type**: `string` + +Defined in: [src/state/helpers/Action.ts:2](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/state/helpers/Action.ts#L2) diff --git a/docs/docs/auto-docs/state/hooks/README.md b/docs/docs/auto-docs/state/hooks/README.md new file mode 100644 index 0000000000..2f225831f2 --- /dev/null +++ b/docs/docs/auto-docs/state/hooks/README.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../README.md) + +*** + +[talawa-admin](../../modules.md) / state/hooks + +# state/hooks + +## Functions + +- [useAppDispatch](functions/useAppDispatch.md) diff --git a/docs/docs/auto-docs/state/hooks/functions/useAppDispatch.md b/docs/docs/auto-docs/state/hooks/functions/useAppDispatch.md new file mode 100644 index 0000000000..f1da5931f4 --- /dev/null +++ b/docs/docs/auto-docs/state/hooks/functions/useAppDispatch.md @@ -0,0 +1,25 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / [state/hooks](../README.md) / useAppDispatch + +# Function: useAppDispatch() + +> **useAppDispatch**\<`AppDispatch`\>(): `AppDispatch` + +Defined in: [src/state/hooks.ts:5](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/state/hooks.ts#L5) + +Returns the dispatch function from the Redux store. + +## Type Parameters + +• **AppDispatch** *extends* `ThunkDispatch`\<\{ `appRoutes`: \{ `components`: [`ComponentType`](../../reducers/routesReducer/type-aliases/ComponentType.md)[]; `targets`: [`TargetsType`](../../reducers/routesReducer/type-aliases/TargetsType.md)[]; \}; `plugins`: `any`; `userRoutes`: \{ `components`: [`ComponentType`](../../reducers/userRoutesReducer/type-aliases/ComponentType.md)[]; `targets`: [`TargetsType`](../../reducers/userRoutesReducer/type-aliases/TargetsType.md)[]; \}; \}, `undefined`, `UnknownAction`\> & `Dispatch`\<[`InterfaceAction`](../../helpers/Action/interfaces/InterfaceAction.md)\> = `ThunkDispatch`\<\{ `appRoutes`: \{ `components`: [`ComponentType`](../../reducers/routesReducer/type-aliases/ComponentType.md)[]; `targets`: [`TargetsType`](../../reducers/routesReducer/type-aliases/TargetsType.md)[]; \}; `plugins`: `any`; `userRoutes`: \{ `components`: [`ComponentType`](../../reducers/userRoutesReducer/type-aliases/ComponentType.md)[]; `targets`: [`TargetsType`](../../reducers/userRoutesReducer/type-aliases/TargetsType.md)[]; \}; \}, `undefined`, `UnknownAction`\> & `Dispatch`\<[`InterfaceAction`](../../helpers/Action/interfaces/InterfaceAction.md)\> + +The specific type of the dispatch function. + +## Returns + +`AppDispatch` + +The dispatch function from the Redux store. diff --git a/docs/docs/auto-docs/state/reducers/README.md b/docs/docs/auto-docs/state/reducers/README.md new file mode 100644 index 0000000000..72d86d2b9d --- /dev/null +++ b/docs/docs/auto-docs/state/reducers/README.md @@ -0,0 +1,15 @@ +[**talawa-admin**](../../README.md) + +*** + +[talawa-admin](../../modules.md) / state/reducers + +# state/reducers + +## Type Aliases + +- [RootState](type-aliases/RootState.md) + +## Functions + +- [reducers](functions/reducers.md) diff --git a/docs/docs/auto-docs/state/reducers/functions/reducers.md b/docs/docs/auto-docs/state/reducers/functions/reducers.md new file mode 100644 index 0000000000..5269810607 --- /dev/null +++ b/docs/docs/auto-docs/state/reducers/functions/reducers.md @@ -0,0 +1,53 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / [state/reducers](../README.md) / reducers + +# Function: reducers() + +> **reducers**(`state`, `action`): `object` + +Defined in: [src/state/reducers/index.ts:6](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/state/reducers/index.ts#L6) + +## Parameters + +### state + +\{ `appRoutes`: \{ `components`: [`ComponentType`](../routesReducer/type-aliases/ComponentType.md)[]; `targets`: [`TargetsType`](../routesReducer/type-aliases/TargetsType.md)[]; \}; `plugins`: `any`; `userRoutes`: \{ `components`: [`ComponentType`](../userRoutesReducer/type-aliases/ComponentType.md)[]; `targets`: [`TargetsType`](../userRoutesReducer/type-aliases/TargetsType.md)[]; \}; \} | `Partial`\<\{ `appRoutes`: `never`; `plugins`: `never`; `userRoutes`: `never`; \}\> + +### action + +[`InterfaceAction`](../../helpers/Action/interfaces/InterfaceAction.md) + +## Returns + +`object` + +### appRoutes + +> **appRoutes**: `object` = `routesReducer` + +#### appRoutes.components + +> **components**: [`ComponentType`](../routesReducer/type-aliases/ComponentType.md)[] + +#### appRoutes.targets + +> **targets**: [`TargetsType`](../routesReducer/type-aliases/TargetsType.md)[] + +### plugins + +> **plugins**: `any` = `pluginReducer` + +### userRoutes + +> **userRoutes**: `object` = `userRoutesReducer` + +#### userRoutes.components + +> **components**: [`ComponentType`](../userRoutesReducer/type-aliases/ComponentType.md)[] + +#### userRoutes.targets + +> **targets**: [`TargetsType`](../userRoutesReducer/type-aliases/TargetsType.md)[] diff --git a/docs/docs/auto-docs/state/reducers/pluginReducer/README.md b/docs/docs/auto-docs/state/reducers/pluginReducer/README.md new file mode 100644 index 0000000000..34b5b9734c --- /dev/null +++ b/docs/docs/auto-docs/state/reducers/pluginReducer/README.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / state/reducers/pluginReducer + +# state/reducers/pluginReducer + +## Functions + +- [default](functions/default.md) diff --git a/docs/docs/auto-docs/state/reducers/pluginReducer/functions/default.md b/docs/docs/auto-docs/state/reducers/pluginReducer/functions/default.md new file mode 100644 index 0000000000..db3a72cc4d --- /dev/null +++ b/docs/docs/auto-docs/state/reducers/pluginReducer/functions/default.md @@ -0,0 +1,25 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [state/reducers/pluginReducer](../README.md) / default + +# Function: default() + +> **default**(`state`, `action`): `any` + +Defined in: [src/state/reducers/pluginReducer.ts:3](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/state/reducers/pluginReducer.ts#L3) + +## Parameters + +### state + +`any` = `INITIAL_STATE` + +### action + +[`InterfaceAction`](../../../helpers/Action/interfaces/InterfaceAction.md) + +## Returns + +`any` diff --git a/docs/docs/auto-docs/state/reducers/routesReducer/README.md b/docs/docs/auto-docs/state/reducers/routesReducer/README.md new file mode 100644 index 0000000000..2448c6d427 --- /dev/null +++ b/docs/docs/auto-docs/state/reducers/routesReducer/README.md @@ -0,0 +1,17 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / state/reducers/routesReducer + +# state/reducers/routesReducer + +## Type Aliases + +- [ComponentType](type-aliases/ComponentType.md) +- [SubTargetType](type-aliases/SubTargetType.md) +- [TargetsType](type-aliases/TargetsType.md) + +## Functions + +- [default](functions/default.md) diff --git a/docs/docs/auto-docs/state/reducers/routesReducer/functions/default.md b/docs/docs/auto-docs/state/reducers/routesReducer/functions/default.md new file mode 100644 index 0000000000..e8343d8e51 --- /dev/null +++ b/docs/docs/auto-docs/state/reducers/routesReducer/functions/default.md @@ -0,0 +1,39 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [state/reducers/routesReducer](../README.md) / default + +# Function: default() + +> **default**(`state`, `action`): `object` + +Defined in: [src/state/reducers/routesReducer.ts:16](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/state/reducers/routesReducer.ts#L16) + +## Parameters + +### state + +#### components + +[`ComponentType`](../type-aliases/ComponentType.md)[] + +#### targets + +[`TargetsType`](../type-aliases/TargetsType.md)[] = `...` + +### action + +[`InterfaceAction`](../../../helpers/Action/interfaces/InterfaceAction.md) + +## Returns + +`object` + +### components + +> **components**: [`ComponentType`](../type-aliases/ComponentType.md)[] + +### targets + +> **targets**: [`TargetsType`](../type-aliases/TargetsType.md)[] diff --git a/docs/docs/auto-docs/state/reducers/routesReducer/type-aliases/ComponentType.md b/docs/docs/auto-docs/state/reducers/routesReducer/type-aliases/ComponentType.md new file mode 100644 index 0000000000..75a96d4a11 --- /dev/null +++ b/docs/docs/auto-docs/state/reducers/routesReducer/type-aliases/ComponentType.md @@ -0,0 +1,29 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [state/reducers/routesReducer](../README.md) / ComponentType + +# Type Alias: ComponentType + +> **ComponentType**: `object` + +Defined in: [src/state/reducers/routesReducer.ts:55](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/state/reducers/routesReducer.ts#L55) + +## Type declaration + +### comp\_id + +> **comp\_id**: `string` \| `null` + +### component + +> **component**: `string` \| `null` + +### name + +> **name**: `string` + +### subTargets? + +> `optional` **subTargets**: `object`[] diff --git a/docs/docs/auto-docs/state/reducers/routesReducer/type-aliases/SubTargetType.md b/docs/docs/auto-docs/state/reducers/routesReducer/type-aliases/SubTargetType.md new file mode 100644 index 0000000000..a57e520872 --- /dev/null +++ b/docs/docs/auto-docs/state/reducers/routesReducer/type-aliases/SubTargetType.md @@ -0,0 +1,29 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [state/reducers/routesReducer](../README.md) / SubTargetType + +# Type Alias: SubTargetType + +> **SubTargetType**: `object` + +Defined in: [src/state/reducers/routesReducer.ts:9](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/state/reducers/routesReducer.ts#L9) + +## Type declaration + +### comp\_id? + +> `optional` **comp\_id**: `string` + +### icon? + +> `optional` **icon**: `string` + +### name? + +> `optional` **name**: `string` + +### url + +> **url**: `string` diff --git a/docs/docs/auto-docs/state/reducers/routesReducer/type-aliases/TargetsType.md b/docs/docs/auto-docs/state/reducers/routesReducer/type-aliases/TargetsType.md new file mode 100644 index 0000000000..a5a9267589 --- /dev/null +++ b/docs/docs/auto-docs/state/reducers/routesReducer/type-aliases/TargetsType.md @@ -0,0 +1,25 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [state/reducers/routesReducer](../README.md) / TargetsType + +# Type Alias: TargetsType + +> **TargetsType**: `object` + +Defined in: [src/state/reducers/routesReducer.ts:3](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/state/reducers/routesReducer.ts#L3) + +## Type declaration + +### name + +> **name**: `string` + +### subTargets? + +> `optional` **subTargets**: [`SubTargetType`](SubTargetType.md)[] + +### url? + +> `optional` **url**: `string` diff --git a/docs/docs/auto-docs/state/reducers/type-aliases/RootState.md b/docs/docs/auto-docs/state/reducers/type-aliases/RootState.md new file mode 100644 index 0000000000..08dc7f1212 --- /dev/null +++ b/docs/docs/auto-docs/state/reducers/type-aliases/RootState.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / [state/reducers](../README.md) / RootState + +# Type Alias: RootState + +> **RootState**: `ReturnType`\<*typeof* [`reducers`](../functions/reducers.md)\> + +Defined in: [src/state/reducers/index.ts:12](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/state/reducers/index.ts#L12) diff --git a/docs/docs/auto-docs/state/reducers/userRoutesReducer/README.md b/docs/docs/auto-docs/state/reducers/userRoutesReducer/README.md new file mode 100644 index 0000000000..517d683035 --- /dev/null +++ b/docs/docs/auto-docs/state/reducers/userRoutesReducer/README.md @@ -0,0 +1,17 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / state/reducers/userRoutesReducer + +# state/reducers/userRoutesReducer + +## Type Aliases + +- [ComponentType](type-aliases/ComponentType.md) +- [SubTargetType](type-aliases/SubTargetType.md) +- [TargetsType](type-aliases/TargetsType.md) + +## Functions + +- [default](functions/default.md) diff --git a/docs/docs/auto-docs/state/reducers/userRoutesReducer/functions/default.md b/docs/docs/auto-docs/state/reducers/userRoutesReducer/functions/default.md new file mode 100644 index 0000000000..d670532ce1 --- /dev/null +++ b/docs/docs/auto-docs/state/reducers/userRoutesReducer/functions/default.md @@ -0,0 +1,39 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [state/reducers/userRoutesReducer](../README.md) / default + +# Function: default() + +> **default**(`state`, `action`): `object` + +Defined in: [src/state/reducers/userRoutesReducer.ts:16](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/state/reducers/userRoutesReducer.ts#L16) + +## Parameters + +### state + +#### components + +[`ComponentType`](../type-aliases/ComponentType.md)[] + +#### targets + +[`TargetsType`](../type-aliases/TargetsType.md)[] = `...` + +### action + +[`InterfaceAction`](../../../helpers/Action/interfaces/InterfaceAction.md) + +## Returns + +`object` + +### components + +> **components**: [`ComponentType`](../type-aliases/ComponentType.md)[] + +### targets + +> **targets**: [`TargetsType`](../type-aliases/TargetsType.md)[] diff --git a/docs/docs/auto-docs/state/reducers/userRoutesReducer/type-aliases/ComponentType.md b/docs/docs/auto-docs/state/reducers/userRoutesReducer/type-aliases/ComponentType.md new file mode 100644 index 0000000000..b730eb53e4 --- /dev/null +++ b/docs/docs/auto-docs/state/reducers/userRoutesReducer/type-aliases/ComponentType.md @@ -0,0 +1,29 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [state/reducers/userRoutesReducer](../README.md) / ComponentType + +# Type Alias: ComponentType + +> **ComponentType**: `object` + +Defined in: [src/state/reducers/userRoutesReducer.ts:32](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/state/reducers/userRoutesReducer.ts#L32) + +## Type declaration + +### comp\_id + +> **comp\_id**: `string` \| `null` + +### component + +> **component**: `string` \| `null` + +### name + +> **name**: `string` + +### subTargets? + +> `optional` **subTargets**: `object`[] diff --git a/docs/docs/auto-docs/state/reducers/userRoutesReducer/type-aliases/SubTargetType.md b/docs/docs/auto-docs/state/reducers/userRoutesReducer/type-aliases/SubTargetType.md new file mode 100644 index 0000000000..056c83d7d0 --- /dev/null +++ b/docs/docs/auto-docs/state/reducers/userRoutesReducer/type-aliases/SubTargetType.md @@ -0,0 +1,29 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [state/reducers/userRoutesReducer](../README.md) / SubTargetType + +# Type Alias: SubTargetType + +> **SubTargetType**: `object` + +Defined in: [src/state/reducers/userRoutesReducer.ts:9](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/state/reducers/userRoutesReducer.ts#L9) + +## Type declaration + +### comp\_id? + +> `optional` **comp\_id**: `string` + +### icon? + +> `optional` **icon**: `string` + +### name? + +> `optional` **name**: `string` + +### url + +> **url**: `string` diff --git a/docs/docs/auto-docs/state/reducers/userRoutesReducer/type-aliases/TargetsType.md b/docs/docs/auto-docs/state/reducers/userRoutesReducer/type-aliases/TargetsType.md new file mode 100644 index 0000000000..1dd6b0b1d4 --- /dev/null +++ b/docs/docs/auto-docs/state/reducers/userRoutesReducer/type-aliases/TargetsType.md @@ -0,0 +1,25 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [state/reducers/userRoutesReducer](../README.md) / TargetsType + +# Type Alias: TargetsType + +> **TargetsType**: `object` + +Defined in: [src/state/reducers/userRoutesReducer.ts:3](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/state/reducers/userRoutesReducer.ts#L3) + +## Type declaration + +### name + +> **name**: `string` + +### subTargets? + +> `optional` **subTargets**: [`SubTargetType`](SubTargetType.md)[] + +### url? + +> `optional` **url**: `string` diff --git a/docs/docs/auto-docs/state/store/README.md b/docs/docs/auto-docs/state/store/README.md new file mode 100644 index 0000000000..ff82f6a3f1 --- /dev/null +++ b/docs/docs/auto-docs/state/store/README.md @@ -0,0 +1,15 @@ +[**talawa-admin**](../../README.md) + +*** + +[talawa-admin](../../modules.md) / state/store + +# state/store + +## Type Aliases + +- [AppDispatch](type-aliases/AppDispatch.md) + +## Variables + +- [store](variables/store.md) diff --git a/docs/docs/auto-docs/state/store/type-aliases/AppDispatch.md b/docs/docs/auto-docs/state/store/type-aliases/AppDispatch.md new file mode 100644 index 0000000000..7723dd1273 --- /dev/null +++ b/docs/docs/auto-docs/state/store/type-aliases/AppDispatch.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / [state/store](../README.md) / AppDispatch + +# Type Alias: AppDispatch + +> **AppDispatch**: *typeof* `store.dispatch` + +Defined in: [src/state/store.ts:8](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/state/store.ts#L8) diff --git a/docs/docs/auto-docs/state/store/variables/store.md b/docs/docs/auto-docs/state/store/variables/store.md new file mode 100644 index 0000000000..c965972c3e --- /dev/null +++ b/docs/docs/auto-docs/state/store/variables/store.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / [state/store](../README.md) / store + +# Variable: store + +> `const` **store**: `EnhancedStore`\<\{ `appRoutes`: \{ `components`: [`ComponentType`](../../reducers/routesReducer/type-aliases/ComponentType.md)[]; `targets`: [`TargetsType`](../../reducers/routesReducer/type-aliases/TargetsType.md)[]; \}; `plugins`: `any`; `userRoutes`: \{ `components`: [`ComponentType`](../../reducers/userRoutesReducer/type-aliases/ComponentType.md)[]; `targets`: [`TargetsType`](../../reducers/userRoutesReducer/type-aliases/TargetsType.md)[]; \}; \}, [`InterfaceAction`](../../helpers/Action/interfaces/InterfaceAction.md), `Tuple`\<\[`StoreEnhancer`\<\{\}\>, `StoreEnhancer`\]\>\> + +Defined in: [src/state/store.ts:4](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/state/store.ts#L4) diff --git a/docs/docs/auto-docs/subComponents/SortingButton/README.md b/docs/docs/auto-docs/subComponents/SortingButton/README.md new file mode 100644 index 0000000000..7911c94d94 --- /dev/null +++ b/docs/docs/auto-docs/subComponents/SortingButton/README.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../README.md) + +*** + +[talawa-admin](../../modules.md) / subComponents/SortingButton + +# subComponents/SortingButton + +## Functions + +- [default](functions/default.md) diff --git a/docs/docs/auto-docs/subComponents/SortingButton/functions/default.md b/docs/docs/auto-docs/subComponents/SortingButton/functions/default.md new file mode 100644 index 0000000000..4b5f30094a --- /dev/null +++ b/docs/docs/auto-docs/subComponents/SortingButton/functions/default.md @@ -0,0 +1,38 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / [subComponents/SortingButton](../README.md) / default + +# Function: default() + +> **default**(`props`, `deprecatedLegacyContext`?): `ReactNode` + +Defined in: [src/subComponents/SortingButton.tsx:43](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/subComponents/SortingButton.tsx#L43) + +SortingButton component renders a Dropdown with sorting options. +It allows users to select a sorting option and triggers a callback on selection. + +## Parameters + +### props + +`InterfaceSortingButtonProps` + +The properties for the SortingButton component. + +### deprecatedLegacyContext? + +`any` + +**Deprecated** + +**See** + +[React Docs](https://legacy.reactjs.org/docs/legacy-context.html#referencing-context-in-lifecycle-methods) + +## Returns + +`ReactNode` + +The rendered SortingButton component. diff --git a/docs/docs/auto-docs/utils/StaticMockLink/README.md b/docs/docs/auto-docs/utils/StaticMockLink/README.md new file mode 100644 index 0000000000..b5e8d26b04 --- /dev/null +++ b/docs/docs/auto-docs/utils/StaticMockLink/README.md @@ -0,0 +1,19 @@ +[**talawa-admin**](../../README.md) + +*** + +[talawa-admin](../../modules.md) / utils/StaticMockLink + +# utils/StaticMockLink + +## Classes + +- [StaticMockLink](classes/StaticMockLink.md) + +## Interfaces + +- [InterfaceMockApolloLink](interfaces/InterfaceMockApolloLink.md) + +## Functions + +- [mockSingleLink](functions/mockSingleLink.md) diff --git a/docs/docs/auto-docs/utils/StaticMockLink/classes/StaticMockLink.md b/docs/docs/auto-docs/utils/StaticMockLink/classes/StaticMockLink.md new file mode 100644 index 0000000000..9c9f1c071b --- /dev/null +++ b/docs/docs/auto-docs/utils/StaticMockLink/classes/StaticMockLink.md @@ -0,0 +1,94 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / [utils/StaticMockLink](../README.md) / StaticMockLink + +# Class: StaticMockLink + +Defined in: [src/utils/StaticMockLink.ts:30](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/StaticMockLink.ts#L30) + +Similar to the standard Apollo MockLink, but doesn't consume a mock +when it is used allowing it to be used in places like Storybook. + +## Extends + +- `unknown` + +## Constructors + +### new StaticMockLink() + +> **new StaticMockLink**(`mockedResponses`, `addTypename`): [`StaticMockLink`](StaticMockLink.md) + +Defined in: [src/utils/StaticMockLink.ts:35](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/StaticMockLink.ts#L35) + +#### Parameters + +##### mockedResponses + +readonly `MockedResponse`[] + +##### addTypename + +`boolean` = `true` + +#### Returns + +[`StaticMockLink`](StaticMockLink.md) + +#### Overrides + +`ApolloLink.constructor` + +## Properties + +### addTypename + +> **addTypename**: `boolean` = `true` + +Defined in: [src/utils/StaticMockLink.ts:32](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/StaticMockLink.ts#L32) + +*** + +### operation? + +> `optional` **operation**: `Operation` + +Defined in: [src/utils/StaticMockLink.ts:31](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/StaticMockLink.ts#L31) + +## Methods + +### addMockedResponse() + +> **addMockedResponse**(`mockedResponse`): `void` + +Defined in: [src/utils/StaticMockLink.ts:45](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/StaticMockLink.ts#L45) + +#### Parameters + +##### mockedResponse + +`MockedResponse` + +#### Returns + +`void` + +*** + +### request() + +> **request**(`operation`): `any` + +Defined in: [src/utils/StaticMockLink.ts:60](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/StaticMockLink.ts#L60) + +#### Parameters + +##### operation + +`any` + +#### Returns + +`any` diff --git a/docs/docs/auto-docs/utils/StaticMockLink/functions/mockSingleLink.md b/docs/docs/auto-docs/utils/StaticMockLink/functions/mockSingleLink.md new file mode 100644 index 0000000000..203e9b97a4 --- /dev/null +++ b/docs/docs/auto-docs/utils/StaticMockLink/functions/mockSingleLink.md @@ -0,0 +1,21 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / [utils/StaticMockLink](../README.md) / mockSingleLink + +# Function: mockSingleLink() + +> **mockSingleLink**(...`mockedResponses`): [`InterfaceMockApolloLink`](../interfaces/InterfaceMockApolloLink.md) + +Defined in: [src/utils/StaticMockLink.ts:164](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/StaticMockLink.ts#L164) + +## Parameters + +### mockedResponses + +...`any`[] + +## Returns + +[`InterfaceMockApolloLink`](../interfaces/InterfaceMockApolloLink.md) diff --git a/docs/docs/auto-docs/utils/StaticMockLink/interfaces/InterfaceMockApolloLink.md b/docs/docs/auto-docs/utils/StaticMockLink/interfaces/InterfaceMockApolloLink.md new file mode 100644 index 0000000000..60ab0135f0 --- /dev/null +++ b/docs/docs/auto-docs/utils/StaticMockLink/interfaces/InterfaceMockApolloLink.md @@ -0,0 +1,21 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / [utils/StaticMockLink](../README.md) / InterfaceMockApolloLink + +# Interface: InterfaceMockApolloLink + +Defined in: [src/utils/StaticMockLink.ts:157](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/StaticMockLink.ts#L157) + +## Extends + +- `unknown` + +## Properties + +### operation? + +> `optional` **operation**: `Operation` + +Defined in: [src/utils/StaticMockLink.ts:158](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/StaticMockLink.ts#L158) diff --git a/docs/docs/auto-docs/utils/chartToPdf/README.md b/docs/docs/auto-docs/utils/chartToPdf/README.md new file mode 100644 index 0000000000..c2c888be7c --- /dev/null +++ b/docs/docs/auto-docs/utils/chartToPdf/README.md @@ -0,0 +1,13 @@ +[**talawa-admin**](../../README.md) + +*** + +[talawa-admin](../../modules.md) / utils/chartToPdf + +# utils/chartToPdf + +## Functions + +- [exportDemographicsToCSV](functions/exportDemographicsToCSV.md) +- [exportToCSV](functions/exportToCSV.md) +- [exportTrendsToCSV](functions/exportTrendsToCSV.md) diff --git a/docs/docs/auto-docs/utils/chartToPdf/functions/exportDemographicsToCSV.md b/docs/docs/auto-docs/utils/chartToPdf/functions/exportDemographicsToCSV.md new file mode 100644 index 0000000000..0551ed56e9 --- /dev/null +++ b/docs/docs/auto-docs/utils/chartToPdf/functions/exportDemographicsToCSV.md @@ -0,0 +1,29 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / [utils/chartToPdf](../README.md) / exportDemographicsToCSV + +# Function: exportDemographicsToCSV() + +> **exportDemographicsToCSV**(`selectedCategory`, `categoryLabels`, `categoryData`): `void` + +Defined in: [src/utils/chartToPdf.ts:80](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/chartToPdf.ts#L80) + +## Parameters + +### selectedCategory + +`string` + +### categoryLabels + +`string`[] + +### categoryData + +`number`[] + +## Returns + +`void` diff --git a/docs/docs/auto-docs/utils/chartToPdf/functions/exportToCSV.md b/docs/docs/auto-docs/utils/chartToPdf/functions/exportToCSV.md new file mode 100644 index 0000000000..b390c58af6 --- /dev/null +++ b/docs/docs/auto-docs/utils/chartToPdf/functions/exportToCSV.md @@ -0,0 +1,25 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / [utils/chartToPdf](../README.md) / exportToCSV + +# Function: exportToCSV() + +> **exportToCSV**(`data`, `filename`): `void` + +Defined in: [src/utils/chartToPdf.ts:3](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/chartToPdf.ts#L3) + +## Parameters + +### data + +`CSVData` + +### filename + +`string` + +## Returns + +`void` diff --git a/docs/docs/auto-docs/utils/chartToPdf/functions/exportTrendsToCSV.md b/docs/docs/auto-docs/utils/chartToPdf/functions/exportTrendsToCSV.md new file mode 100644 index 0000000000..26523599d0 --- /dev/null +++ b/docs/docs/auto-docs/utils/chartToPdf/functions/exportTrendsToCSV.md @@ -0,0 +1,37 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / [utils/chartToPdf](../README.md) / exportTrendsToCSV + +# Function: exportTrendsToCSV() + +> **exportTrendsToCSV**(`eventLabels`, `attendeeCounts`, `maleCounts`, `femaleCounts`, `otherCounts`): `void` + +Defined in: [src/utils/chartToPdf.ts:50](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/chartToPdf.ts#L50) + +## Parameters + +### eventLabels + +`string`[] + +### attendeeCounts + +`number`[] + +### maleCounts + +`number`[] + +### femaleCounts + +`number`[] + +### otherCounts + +`number`[] + +## Returns + +`void` diff --git a/docs/docs/auto-docs/utils/convertToBase64/README.md b/docs/docs/auto-docs/utils/convertToBase64/README.md new file mode 100644 index 0000000000..c1f44af7de --- /dev/null +++ b/docs/docs/auto-docs/utils/convertToBase64/README.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../README.md) + +*** + +[talawa-admin](../../modules.md) / utils/convertToBase64 + +# utils/convertToBase64 + +## Functions + +- [default](functions/default.md) diff --git a/docs/docs/auto-docs/utils/convertToBase64/functions/default.md b/docs/docs/auto-docs/utils/convertToBase64/functions/default.md new file mode 100644 index 0000000000..edd76ae76e --- /dev/null +++ b/docs/docs/auto-docs/utils/convertToBase64/functions/default.md @@ -0,0 +1,21 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / [utils/convertToBase64](../README.md) / default + +# Function: default() + +> **default**(`file`): `Promise`\<`string`\> + +Defined in: [src/utils/convertToBase64.ts:1](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/convertToBase64.ts#L1) + +## Parameters + +### file + +`File` + +## Returns + +`Promise`\<`string`\> diff --git a/docs/docs/auto-docs/utils/currency/README.md b/docs/docs/auto-docs/utils/currency/README.md new file mode 100644 index 0000000000..9ff14d9251 --- /dev/null +++ b/docs/docs/auto-docs/utils/currency/README.md @@ -0,0 +1,12 @@ +[**talawa-admin**](../../README.md) + +*** + +[talawa-admin](../../modules.md) / utils/currency + +# utils/currency + +## Variables + +- [currencyOptions](variables/currencyOptions.md) +- [currencySymbols](variables/currencySymbols.md) diff --git a/docs/docs/auto-docs/utils/currency/variables/currencyOptions.md b/docs/docs/auto-docs/utils/currency/variables/currencyOptions.md new file mode 100644 index 0000000000..f2eb30d128 --- /dev/null +++ b/docs/docs/auto-docs/utils/currency/variables/currencyOptions.md @@ -0,0 +1,21 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / [utils/currency](../README.md) / currencyOptions + +# Variable: currencyOptions + +> `const` **currencyOptions**: `object`[] + +Defined in: [src/utils/currency.ts:1](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/currency.ts#L1) + +## Type declaration + +### label + +> **label**: `string` = `'AED'` + +### value + +> **value**: `string` = `'AED'` diff --git a/docs/docs/auto-docs/utils/currency/variables/currencySymbols.md b/docs/docs/auto-docs/utils/currency/variables/currencySymbols.md new file mode 100644 index 0000000000..111f1dc386 --- /dev/null +++ b/docs/docs/auto-docs/utils/currency/variables/currencySymbols.md @@ -0,0 +1,15 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / [utils/currency](../README.md) / currencySymbols + +# Variable: currencySymbols + +> `const` **currencySymbols**: `object` + +Defined in: [src/utils/currency.ts:166](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/currency.ts#L166) + +## Index Signature + +\[`key`: `string`\]: `string` diff --git a/docs/docs/auto-docs/utils/dateFormatter/README.md b/docs/docs/auto-docs/utils/dateFormatter/README.md new file mode 100644 index 0000000000..43d7c90a59 --- /dev/null +++ b/docs/docs/auto-docs/utils/dateFormatter/README.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../README.md) + +*** + +[talawa-admin](../../modules.md) / utils/dateFormatter + +# utils/dateFormatter + +## Functions + +- [formatDate](functions/formatDate.md) diff --git a/docs/docs/auto-docs/utils/dateFormatter/functions/formatDate.md b/docs/docs/auto-docs/utils/dateFormatter/functions/formatDate.md new file mode 100644 index 0000000000..39f3f2795d --- /dev/null +++ b/docs/docs/auto-docs/utils/dateFormatter/functions/formatDate.md @@ -0,0 +1,21 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / [utils/dateFormatter](../README.md) / formatDate + +# Function: formatDate() + +> **formatDate**(`dateString`): `string` + +Defined in: [src/utils/dateFormatter.ts:1](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/dateFormatter.ts#L1) + +## Parameters + +### dateString + +`string` + +## Returns + +`string` diff --git a/docs/docs/auto-docs/utils/errorHandler/README.md b/docs/docs/auto-docs/utils/errorHandler/README.md new file mode 100644 index 0000000000..f3524157ba --- /dev/null +++ b/docs/docs/auto-docs/utils/errorHandler/README.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../README.md) + +*** + +[talawa-admin](../../modules.md) / utils/errorHandler + +# utils/errorHandler + +## Functions + +- [errorHandler](functions/errorHandler.md) diff --git a/docs/docs/auto-docs/utils/errorHandler/functions/errorHandler.md b/docs/docs/auto-docs/utils/errorHandler/functions/errorHandler.md new file mode 100644 index 0000000000..07defcae36 --- /dev/null +++ b/docs/docs/auto-docs/utils/errorHandler/functions/errorHandler.md @@ -0,0 +1,29 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / [utils/errorHandler](../README.md) / errorHandler + +# Function: errorHandler() + +> **errorHandler**(`a`, `error`): `void` + +Defined in: [src/utils/errorHandler.tsx:10](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/errorHandler.tsx#L10) + +This function is used to handle api errors in the application. +It takes in the error object and displays the error message to the user. +If the error is due to the Talawa API being unavailable, it displays a custom message. And for other error cases, it is using regular expression (case-insensitive) to match and show valid messages + +## Parameters + +### a + +`unknown` + +### error + +`unknown` + +## Returns + +`void` diff --git a/docs/docs/auto-docs/utils/fieldTypes/README.md b/docs/docs/auto-docs/utils/fieldTypes/README.md new file mode 100644 index 0000000000..e61e877617 --- /dev/null +++ b/docs/docs/auto-docs/utils/fieldTypes/README.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../README.md) + +*** + +[talawa-admin](../../modules.md) / utils/fieldTypes + +# utils/fieldTypes + +## Variables + +- [default](variables/default.md) diff --git a/docs/docs/auto-docs/utils/fieldTypes/variables/default.md b/docs/docs/auto-docs/utils/fieldTypes/variables/default.md new file mode 100644 index 0000000000..280948f76f --- /dev/null +++ b/docs/docs/auto-docs/utils/fieldTypes/variables/default.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / [utils/fieldTypes](../README.md) / default + +# Variable: default + +> `const` **default**: `string`[] + +Defined in: [src/utils/fieldTypes.ts:1](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/fieldTypes.ts#L1) diff --git a/docs/docs/auto-docs/utils/formEnumFields/README.md b/docs/docs/auto-docs/utils/formEnumFields/README.md new file mode 100644 index 0000000000..bf7f8e43f9 --- /dev/null +++ b/docs/docs/auto-docs/utils/formEnumFields/README.md @@ -0,0 +1,16 @@ +[**talawa-admin**](../../README.md) + +*** + +[talawa-admin](../../modules.md) / utils/formEnumFields + +# utils/formEnumFields + +## Variables + +- [countryOptions](variables/countryOptions.md) +- [educationGradeEnum](variables/educationGradeEnum.md) +- [employmentStatusEnum](variables/employmentStatusEnum.md) +- [genderEnum](variables/genderEnum.md) +- [maritalStatusEnum](variables/maritalStatusEnum.md) +- [userRoleEnum](variables/userRoleEnum.md) diff --git a/docs/docs/auto-docs/utils/formEnumFields/variables/countryOptions.md b/docs/docs/auto-docs/utils/formEnumFields/variables/countryOptions.md new file mode 100644 index 0000000000..69569d5789 --- /dev/null +++ b/docs/docs/auto-docs/utils/formEnumFields/variables/countryOptions.md @@ -0,0 +1,21 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / [utils/formEnumFields](../README.md) / countryOptions + +# Variable: countryOptions + +> `const` **countryOptions**: `object`[] + +Defined in: [src/utils/formEnumFields.ts:1](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/formEnumFields.ts#L1) + +## Type declaration + +### label + +> **label**: `string` = `'Afghanistan'` + +### value + +> **value**: `string` = `'af'` diff --git a/docs/docs/auto-docs/utils/formEnumFields/variables/educationGradeEnum.md b/docs/docs/auto-docs/utils/formEnumFields/variables/educationGradeEnum.md new file mode 100644 index 0000000000..62b222056f --- /dev/null +++ b/docs/docs/auto-docs/utils/formEnumFields/variables/educationGradeEnum.md @@ -0,0 +1,21 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / [utils/formEnumFields](../README.md) / educationGradeEnum + +# Variable: educationGradeEnum + +> `const` **educationGradeEnum**: `object`[] + +Defined in: [src/utils/formEnumFields.ts:202](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/formEnumFields.ts#L202) + +## Type declaration + +### label + +> **label**: `string` = `'No-Grade'` + +### value + +> **value**: `string` = `'NO_GRADE'` diff --git a/docs/docs/auto-docs/utils/formEnumFields/variables/employmentStatusEnum.md b/docs/docs/auto-docs/utils/formEnumFields/variables/employmentStatusEnum.md new file mode 100644 index 0000000000..d6491ca52a --- /dev/null +++ b/docs/docs/auto-docs/utils/formEnumFields/variables/employmentStatusEnum.md @@ -0,0 +1,21 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / [utils/formEnumFields](../README.md) / employmentStatusEnum + +# Variable: employmentStatusEnum + +> `const` **employmentStatusEnum**: `object`[] + +Defined in: [src/utils/formEnumFields.ts:311](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/formEnumFields.ts#L311) + +## Type declaration + +### label + +> **label**: `string` = `'Full-Time'` + +### value + +> **value**: `string` = `'FULL_TIME'` diff --git a/docs/docs/auto-docs/utils/formEnumFields/variables/genderEnum.md b/docs/docs/auto-docs/utils/formEnumFields/variables/genderEnum.md new file mode 100644 index 0000000000..105b900a7c --- /dev/null +++ b/docs/docs/auto-docs/utils/formEnumFields/variables/genderEnum.md @@ -0,0 +1,21 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / [utils/formEnumFields](../README.md) / genderEnum + +# Variable: genderEnum + +> `const` **genderEnum**: `object`[] + +Defined in: [src/utils/formEnumFields.ts:296](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/formEnumFields.ts#L296) + +## Type declaration + +### label + +> **label**: `string` = `'Male'` + +### value + +> **value**: `string` = `'MALE'` diff --git a/docs/docs/auto-docs/utils/formEnumFields/variables/maritalStatusEnum.md b/docs/docs/auto-docs/utils/formEnumFields/variables/maritalStatusEnum.md new file mode 100644 index 0000000000..a43a0c0238 --- /dev/null +++ b/docs/docs/auto-docs/utils/formEnumFields/variables/maritalStatusEnum.md @@ -0,0 +1,21 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / [utils/formEnumFields](../README.md) / maritalStatusEnum + +# Variable: maritalStatusEnum + +> `const` **maritalStatusEnum**: `object`[] + +Defined in: [src/utils/formEnumFields.ts:269](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/formEnumFields.ts#L269) + +## Type declaration + +### label + +> **label**: `string` = `'Single'` + +### value + +> **value**: `string` = `'SINGLE'` diff --git a/docs/docs/auto-docs/utils/formEnumFields/variables/userRoleEnum.md b/docs/docs/auto-docs/utils/formEnumFields/variables/userRoleEnum.md new file mode 100644 index 0000000000..c24a791eaa --- /dev/null +++ b/docs/docs/auto-docs/utils/formEnumFields/variables/userRoleEnum.md @@ -0,0 +1,21 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / [utils/formEnumFields](../README.md) / userRoleEnum + +# Variable: userRoleEnum + +> `const` **userRoleEnum**: `object`[] + +Defined in: [src/utils/formEnumFields.ts:326](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/formEnumFields.ts#L326) + +## Type declaration + +### label + +> **label**: `string` = `'User'` + +### value + +> **value**: `string` = `'USER'` diff --git a/docs/docs/auto-docs/utils/getOrganizationId/README.md b/docs/docs/auto-docs/utils/getOrganizationId/README.md new file mode 100644 index 0000000000..6b1d1d6da4 --- /dev/null +++ b/docs/docs/auto-docs/utils/getOrganizationId/README.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../README.md) + +*** + +[talawa-admin](../../modules.md) / utils/getOrganizationId + +# utils/getOrganizationId + +## Functions + +- [default](functions/default.md) diff --git a/docs/docs/auto-docs/utils/getOrganizationId/functions/default.md b/docs/docs/auto-docs/utils/getOrganizationId/functions/default.md new file mode 100644 index 0000000000..9c3574ad73 --- /dev/null +++ b/docs/docs/auto-docs/utils/getOrganizationId/functions/default.md @@ -0,0 +1,21 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / [utils/getOrganizationId](../README.md) / default + +# Function: default() + +> **default**(`url`): `string` + +Defined in: [src/utils/getOrganizationId.ts:2](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/getOrganizationId.ts#L2) + +## Parameters + +### url + +`string` + +## Returns + +`string` diff --git a/docs/docs/auto-docs/utils/getRefreshToken/README.md b/docs/docs/auto-docs/utils/getRefreshToken/README.md new file mode 100644 index 0000000000..8c60657a42 --- /dev/null +++ b/docs/docs/auto-docs/utils/getRefreshToken/README.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../README.md) + +*** + +[talawa-admin](../../modules.md) / utils/getRefreshToken + +# utils/getRefreshToken + +## Functions + +- [refreshToken](functions/refreshToken.md) diff --git a/docs/docs/auto-docs/utils/getRefreshToken/functions/refreshToken.md b/docs/docs/auto-docs/utils/getRefreshToken/functions/refreshToken.md new file mode 100644 index 0000000000..187e756984 --- /dev/null +++ b/docs/docs/auto-docs/utils/getRefreshToken/functions/refreshToken.md @@ -0,0 +1,15 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / [utils/getRefreshToken](../README.md) / refreshToken + +# Function: refreshToken() + +> **refreshToken**(): `Promise`\<`boolean`\> + +Defined in: [src/utils/getRefreshToken.ts:6](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/getRefreshToken.ts#L6) + +## Returns + +`Promise`\<`boolean`\> diff --git a/docs/docs/auto-docs/utils/i18n/README.md b/docs/docs/auto-docs/utils/i18n/README.md new file mode 100644 index 0000000000..155261730a --- /dev/null +++ b/docs/docs/auto-docs/utils/i18n/README.md @@ -0,0 +1,7 @@ +[**talawa-admin**](../../README.md) + +*** + +[talawa-admin](../../modules.md) / utils/i18n + +# utils/i18n diff --git a/docs/docs/auto-docs/utils/i18nForTest/README.md b/docs/docs/auto-docs/utils/i18nForTest/README.md new file mode 100644 index 0000000000..2c5825d093 --- /dev/null +++ b/docs/docs/auto-docs/utils/i18nForTest/README.md @@ -0,0 +1,7 @@ +[**talawa-admin**](../../README.md) + +*** + +[talawa-admin](../../modules.md) / utils/i18nForTest + +# utils/i18nForTest diff --git a/docs/docs/auto-docs/utils/interfaces/README.md b/docs/docs/auto-docs/utils/interfaces/README.md new file mode 100644 index 0000000000..0e3a96e48c --- /dev/null +++ b/docs/docs/auto-docs/utils/interfaces/README.md @@ -0,0 +1,60 @@ +[**talawa-admin**](../../README.md) + +*** + +[talawa-admin](../../modules.md) / utils/interfaces + +# utils/interfaces + +## Interfaces + +- [InterfaceActionItemCategoryInfo](interfaces/InterfaceActionItemCategoryInfo.md) +- [InterfaceActionItemCategoryList](interfaces/InterfaceActionItemCategoryList.md) +- [InterfaceActionItemInfo](interfaces/InterfaceActionItemInfo.md) +- [InterfaceActionItemList](interfaces/InterfaceActionItemList.md) +- [InterfaceAddOnSpotAttendeeProps](interfaces/InterfaceAddOnSpotAttendeeProps.md) +- [InterfaceAddress](interfaces/InterfaceAddress.md) +- [InterfaceAgendaItemCategoryInfo](interfaces/InterfaceAgendaItemCategoryInfo.md) +- [InterfaceAgendaItemCategoryList](interfaces/InterfaceAgendaItemCategoryList.md) +- [InterfaceAgendaItemInfo](interfaces/InterfaceAgendaItemInfo.md) +- [InterfaceAgendaItemList](interfaces/InterfaceAgendaItemList.md) +- [InterfaceBaseEvent](interfaces/InterfaceBaseEvent.md) +- [InterfaceCampaignInfo](interfaces/InterfaceCampaignInfo.md) +- [InterfaceCreateFund](interfaces/InterfaceCreateFund.md) +- [InterfaceCreatePledge](interfaces/InterfaceCreatePledge.md) +- [InterfaceCreateVolunteerGroup](interfaces/InterfaceCreateVolunteerGroup.md) +- [InterfaceCustomFieldData](interfaces/InterfaceCustomFieldData.md) +- [InterfaceEventVolunteerInfo](interfaces/InterfaceEventVolunteerInfo.md) +- [InterfaceFormData](interfaces/InterfaceFormData.md) +- [InterfaceFundInfo](interfaces/InterfaceFundInfo.md) +- [InterfaceMapType](interfaces/InterfaceMapType.md) +- [InterfaceMemberInfo](interfaces/InterfaceMemberInfo.md) +- [InterfaceMembersList](interfaces/InterfaceMembersList.md) +- [InterfaceOrgConnectionInfoType](interfaces/InterfaceOrgConnectionInfoType.md) +- [InterfaceOrgConnectionType](interfaces/InterfaceOrgConnectionType.md) +- [InterfacePledgeInfo](interfaces/InterfacePledgeInfo.md) +- [InterfacePostCard](interfaces/InterfacePostCard.md) +- [InterfacePostForm](interfaces/InterfacePostForm.md) +- [InterfaceQueryBlockPageMemberListItem](interfaces/InterfaceQueryBlockPageMemberListItem.md) +- [InterfaceQueryFundCampaignsPledges](interfaces/InterfaceQueryFundCampaignsPledges.md) +- [InterfaceQueryMembershipRequestsListItem](interfaces/InterfaceQueryMembershipRequestsListItem.md) +- [InterfaceQueryOrganizationAdvertisementListItem](interfaces/InterfaceQueryOrganizationAdvertisementListItem.md) +- [InterfaceQueryOrganizationEventListItem](interfaces/InterfaceQueryOrganizationEventListItem.md) +- [InterfaceQueryOrganizationFundCampaigns](interfaces/InterfaceQueryOrganizationFundCampaigns.md) +- [InterfaceQueryOrganizationListObject](interfaces/InterfaceQueryOrganizationListObject.md) +- [InterfaceQueryOrganizationPostListItem](interfaces/InterfaceQueryOrganizationPostListItem.md) +- [InterfaceQueryOrganizationsListObject](interfaces/InterfaceQueryOrganizationsListObject.md) +- [InterfaceQueryOrganizationUserTags](interfaces/InterfaceQueryOrganizationUserTags.md) +- [InterfaceQueryUserListItem](interfaces/InterfaceQueryUserListItem.md) +- [InterfaceQueryUserTagChildTags](interfaces/InterfaceQueryUserTagChildTags.md) +- [InterfaceQueryUserTagsAssignedMembers](interfaces/InterfaceQueryUserTagsAssignedMembers.md) +- [InterfaceQueryUserTagsMembersToAssignTo](interfaces/InterfaceQueryUserTagsMembersToAssignTo.md) +- [InterfaceQueryVenueListItem](interfaces/InterfaceQueryVenueListItem.md) +- [InterfaceTagData](interfaces/InterfaceTagData.md) +- [InterfaceUserCampaign](interfaces/InterfaceUserCampaign.md) +- [InterfaceUserEvents](interfaces/InterfaceUserEvents.md) +- [InterfaceUserInfo](interfaces/InterfaceUserInfo.md) +- [InterfaceUserType](interfaces/InterfaceUserType.md) +- [InterfaceVolunteerGroupInfo](interfaces/InterfaceVolunteerGroupInfo.md) +- [InterfaceVolunteerMembership](interfaces/InterfaceVolunteerMembership.md) +- [InterfaceVolunteerRank](interfaces/InterfaceVolunteerRank.md) diff --git a/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceActionItemCategoryInfo.md b/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceActionItemCategoryInfo.md new file mode 100644 index 0000000000..b363d0daec --- /dev/null +++ b/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceActionItemCategoryInfo.md @@ -0,0 +1,61 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / [utils/interfaces](../README.md) / InterfaceActionItemCategoryInfo + +# Interface: InterfaceActionItemCategoryInfo + +Defined in: [src/utils/interfaces.ts:31](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L31) + +## Properties + +### \_id + +> **\_id**: `string` + +Defined in: [src/utils/interfaces.ts:32](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L32) + +*** + +### createdAt + +> **createdAt**: `string` + +Defined in: [src/utils/interfaces.ts:35](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L35) + +*** + +### creator + +> **creator**: `object` + +Defined in: [src/utils/interfaces.ts:36](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L36) + +#### \_id + +> **\_id**: `string` + +#### firstName + +> **firstName**: `string` + +#### lastName + +> **lastName**: `string` + +*** + +### isDisabled + +> **isDisabled**: `boolean` + +Defined in: [src/utils/interfaces.ts:34](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L34) + +*** + +### name + +> **name**: `string` + +Defined in: [src/utils/interfaces.ts:33](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L33) diff --git a/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceActionItemCategoryList.md b/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceActionItemCategoryList.md new file mode 100644 index 0000000000..e685e7e002 --- /dev/null +++ b/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceActionItemCategoryList.md @@ -0,0 +1,17 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / [utils/interfaces](../README.md) / InterfaceActionItemCategoryList + +# Interface: InterfaceActionItemCategoryList + +Defined in: [src/utils/interfaces.ts:39](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L39) + +## Properties + +### actionItemCategoriesByOrganization + +> **actionItemCategoriesByOrganization**: [`InterfaceActionItemCategoryInfo`](InterfaceActionItemCategoryInfo.md)[] + +Defined in: [src/utils/interfaces.ts:40](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L40) diff --git a/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceActionItemInfo.md b/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceActionItemInfo.md new file mode 100644 index 0000000000..d3c61db23b --- /dev/null +++ b/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceActionItemInfo.md @@ -0,0 +1,153 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / [utils/interfaces](../README.md) / InterfaceActionItemInfo + +# Interface: InterfaceActionItemInfo + +Defined in: [src/utils/interfaces.ts:43](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L43) + +## Properties + +### \_id + +> **\_id**: `string` + +Defined in: [src/utils/interfaces.ts:44](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L44) + +*** + +### actionItemCategory + +> **actionItemCategory**: `object` + +Defined in: [src/utils/interfaces.ts:50](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L50) + +#### \_id + +> **\_id**: `string` + +#### name + +> **name**: `string` + +*** + +### allottedHours + +> **allottedHours**: `number` + +Defined in: [src/utils/interfaces.ts:65](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L65) + +*** + +### assignee + +> **assignee**: [`InterfaceEventVolunteerInfo`](InterfaceEventVolunteerInfo.md) + +Defined in: [src/utils/interfaces.ts:46](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L46) + +*** + +### assigneeGroup + +> **assigneeGroup**: [`InterfaceVolunteerGroupInfo`](InterfaceVolunteerGroupInfo.md) + +Defined in: [src/utils/interfaces.ts:47](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L47) + +*** + +### assigneeType + +> **assigneeType**: `"User"` \| `"EventVolunteer"` \| `"EventVolunteerGroup"` + +Defined in: [src/utils/interfaces.ts:45](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L45) + +*** + +### assigneeUser + +> **assigneeUser**: [`InterfaceUserInfo`](InterfaceUserInfo.md) + +Defined in: [src/utils/interfaces.ts:48](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L48) + +*** + +### assigner + +> **assigner**: [`InterfaceUserInfo`](InterfaceUserInfo.md) + +Defined in: [src/utils/interfaces.ts:49](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L49) + +*** + +### assignmentDate + +> **assignmentDate**: `Date` + +Defined in: [src/utils/interfaces.ts:56](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L56) + +*** + +### completionDate + +> **completionDate**: `Date` + +Defined in: [src/utils/interfaces.ts:58](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L58) + +*** + +### creator + +> **creator**: [`InterfaceUserInfo`](InterfaceUserInfo.md) + +Defined in: [src/utils/interfaces.ts:64](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L64) + +*** + +### dueDate + +> **dueDate**: `Date` + +Defined in: [src/utils/interfaces.ts:57](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L57) + +*** + +### event + +> **event**: `object` + +Defined in: [src/utils/interfaces.ts:60](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L60) + +#### \_id + +> **\_id**: `string` + +#### title + +> **title**: `string` + +*** + +### isCompleted + +> **isCompleted**: `boolean` + +Defined in: [src/utils/interfaces.ts:59](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L59) + +*** + +### postCompletionNotes + +> **postCompletionNotes**: `string` + +Defined in: [src/utils/interfaces.ts:55](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L55) + +*** + +### preCompletionNotes + +> **preCompletionNotes**: `string` + +Defined in: [src/utils/interfaces.ts:54](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L54) diff --git a/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceActionItemList.md b/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceActionItemList.md new file mode 100644 index 0000000000..3d605e0b1c --- /dev/null +++ b/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceActionItemList.md @@ -0,0 +1,17 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / [utils/interfaces](../README.md) / InterfaceActionItemList + +# Interface: InterfaceActionItemList + +Defined in: [src/utils/interfaces.ts:68](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L68) + +## Properties + +### actionItemsByOrganization + +> **actionItemsByOrganization**: [`InterfaceActionItemInfo`](InterfaceActionItemInfo.md)[] + +Defined in: [src/utils/interfaces.ts:69](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L69) diff --git a/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceAddOnSpotAttendeeProps.md b/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceAddOnSpotAttendeeProps.md new file mode 100644 index 0000000000..eba6666462 --- /dev/null +++ b/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceAddOnSpotAttendeeProps.md @@ -0,0 +1,41 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / [utils/interfaces](../README.md) / InterfaceAddOnSpotAttendeeProps + +# Interface: InterfaceAddOnSpotAttendeeProps + +Defined in: [src/utils/interfaces.ts:546](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L546) + +## Properties + +### handleClose() + +> **handleClose**: () => `void` + +Defined in: [src/utils/interfaces.ts:548](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L548) + +#### Returns + +`void` + +*** + +### reloadMembers() + +> **reloadMembers**: () => `void` + +Defined in: [src/utils/interfaces.ts:549](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L549) + +#### Returns + +`void` + +*** + +### show + +> **show**: `boolean` + +Defined in: [src/utils/interfaces.ts:547](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L547) diff --git a/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceAddress.md b/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceAddress.md new file mode 100644 index 0000000000..e1be9502cc --- /dev/null +++ b/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceAddress.md @@ -0,0 +1,73 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / [utils/interfaces](../README.md) / InterfaceAddress + +# Interface: InterfaceAddress + +Defined in: [src/utils/interfaces.ts:453](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L453) + +## Properties + +### city + +> **city**: `string` + +Defined in: [src/utils/interfaces.ts:454](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L454) + +*** + +### countryCode + +> **countryCode**: `string` + +Defined in: [src/utils/interfaces.ts:455](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L455) + +*** + +### dependentLocality + +> **dependentLocality**: `string` + +Defined in: [src/utils/interfaces.ts:456](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L456) + +*** + +### line1 + +> **line1**: `string` + +Defined in: [src/utils/interfaces.ts:457](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L457) + +*** + +### line2 + +> **line2**: `string` + +Defined in: [src/utils/interfaces.ts:458](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L458) + +*** + +### postalCode + +> **postalCode**: `string` + +Defined in: [src/utils/interfaces.ts:459](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L459) + +*** + +### sortingCode + +> **sortingCode**: `string` + +Defined in: [src/utils/interfaces.ts:460](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L460) + +*** + +### state + +> **state**: `string` + +Defined in: [src/utils/interfaces.ts:461](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L461) diff --git a/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceAgendaItemCategoryInfo.md b/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceAgendaItemCategoryInfo.md new file mode 100644 index 0000000000..a27dd7a27a --- /dev/null +++ b/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceAgendaItemCategoryInfo.md @@ -0,0 +1,53 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / [utils/interfaces](../README.md) / InterfaceAgendaItemCategoryInfo + +# Interface: InterfaceAgendaItemCategoryInfo + +Defined in: [src/utils/interfaces.ts:531](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L531) + +## Properties + +### \_id + +> **\_id**: `string` + +Defined in: [src/utils/interfaces.ts:532](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L532) + +*** + +### createdBy + +> **createdBy**: `object` + +Defined in: [src/utils/interfaces.ts:535](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L535) + +#### \_id + +> **\_id**: `string` + +#### firstName + +> **firstName**: `string` + +#### lastName + +> **lastName**: `string` + +*** + +### description + +> **description**: `string` + +Defined in: [src/utils/interfaces.ts:534](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L534) + +*** + +### name + +> **name**: `string` + +Defined in: [src/utils/interfaces.ts:533](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L533) diff --git a/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceAgendaItemCategoryList.md b/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceAgendaItemCategoryList.md new file mode 100644 index 0000000000..9208bfa769 --- /dev/null +++ b/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceAgendaItemCategoryList.md @@ -0,0 +1,17 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / [utils/interfaces](../README.md) / InterfaceAgendaItemCategoryList + +# Interface: InterfaceAgendaItemCategoryList + +Defined in: [src/utils/interfaces.ts:542](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L542) + +## Properties + +### agendaItemCategoriesByOrganization + +> **agendaItemCategoriesByOrganization**: [`InterfaceAgendaItemCategoryInfo`](InterfaceAgendaItemCategoryInfo.md)[] + +Defined in: [src/utils/interfaces.ts:543](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L543) diff --git a/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceAgendaItemInfo.md b/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceAgendaItemInfo.md new file mode 100644 index 0000000000..2d4170392d --- /dev/null +++ b/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceAgendaItemInfo.md @@ -0,0 +1,153 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / [utils/interfaces](../README.md) / InterfaceAgendaItemInfo + +# Interface: InterfaceAgendaItemInfo + +Defined in: [src/utils/interfaces.ts:560](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L560) + +## Properties + +### \_id + +> **\_id**: `string` + +Defined in: [src/utils/interfaces.ts:561](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L561) + +*** + +### attachments + +> **attachments**: `string`[] + +Defined in: [src/utils/interfaces.ts:565](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L565) + +*** + +### categories + +> **categories**: `object`[] + +Defined in: [src/utils/interfaces.ts:578](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L578) + +#### \_id + +> **\_id**: `string` + +#### name + +> **name**: `string` + +*** + +### createdBy + +> **createdBy**: `object` + +Defined in: [src/utils/interfaces.ts:566](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L566) + +#### \_id + +> **\_id**: `string` + +#### firstName + +> **firstName**: `string` + +#### lastName + +> **lastName**: `string` + +*** + +### description + +> **description**: `string` + +Defined in: [src/utils/interfaces.ts:563](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L563) + +*** + +### duration + +> **duration**: `string` + +Defined in: [src/utils/interfaces.ts:564](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L564) + +*** + +### organization + +> **organization**: `object` + +Defined in: [src/utils/interfaces.ts:582](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L582) + +#### \_id + +> **\_id**: `string` + +#### name + +> **name**: `string` + +*** + +### relatedEvent + +> **relatedEvent**: `object` + +Defined in: [src/utils/interfaces.ts:586](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L586) + +#### \_id + +> **\_id**: `string` + +#### title + +> **title**: `string` + +*** + +### sequence + +> **sequence**: `number` + +Defined in: [src/utils/interfaces.ts:577](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L577) + +*** + +### title + +> **title**: `string` + +Defined in: [src/utils/interfaces.ts:562](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L562) + +*** + +### urls + +> **urls**: `string`[] + +Defined in: [src/utils/interfaces.ts:571](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L571) + +*** + +### users + +> **users**: `object`[] + +Defined in: [src/utils/interfaces.ts:572](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L572) + +#### \_id + +> **\_id**: `string` + +#### firstName + +> **firstName**: `string` + +#### lastName + +> **lastName**: `string` diff --git a/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceAgendaItemList.md b/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceAgendaItemList.md new file mode 100644 index 0000000000..08955600e1 --- /dev/null +++ b/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceAgendaItemList.md @@ -0,0 +1,17 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / [utils/interfaces](../README.md) / InterfaceAgendaItemList + +# Interface: InterfaceAgendaItemList + +Defined in: [src/utils/interfaces.ts:592](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L592) + +## Properties + +### agendaItemByEvent + +> **agendaItemByEvent**: [`InterfaceAgendaItemInfo`](InterfaceAgendaItemInfo.md)[] + +Defined in: [src/utils/interfaces.ts:593](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L593) diff --git a/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceBaseEvent.md b/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceBaseEvent.md new file mode 100644 index 0000000000..fedb8ea220 --- /dev/null +++ b/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceBaseEvent.md @@ -0,0 +1,94 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / [utils/interfaces](../README.md) / InterfaceBaseEvent + +# Interface: InterfaceBaseEvent + +Defined in: [src/utils/interfaces.ts:18](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L18) + +## Extended by + +- [`InterfaceQueryOrganizationEventListItem`](InterfaceQueryOrganizationEventListItem.md) +- [`InterfaceUserEvents`](InterfaceUserEvents.md) + +## Properties + +### \_id + +> **\_id**: `string` + +Defined in: [src/utils/interfaces.ts:19](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L19) + +*** + +### allDay + +> **allDay**: `boolean` + +Defined in: [src/utils/interfaces.ts:27](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L27) + +*** + +### description + +> **description**: `string` + +Defined in: [src/utils/interfaces.ts:21](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L21) + +*** + +### endDate + +> **endDate**: `string` + +Defined in: [src/utils/interfaces.ts:23](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L23) + +*** + +### endTime + +> **endTime**: `string` + +Defined in: [src/utils/interfaces.ts:26](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L26) + +*** + +### location + +> **location**: `string` + +Defined in: [src/utils/interfaces.ts:24](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L24) + +*** + +### recurring + +> **recurring**: `boolean` + +Defined in: [src/utils/interfaces.ts:28](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L28) + +*** + +### startDate + +> **startDate**: `string` + +Defined in: [src/utils/interfaces.ts:22](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L22) + +*** + +### startTime + +> **startTime**: `string` + +Defined in: [src/utils/interfaces.ts:25](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L25) + +*** + +### title + +> **title**: `string` + +Defined in: [src/utils/interfaces.ts:20](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L20) diff --git a/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceCampaignInfo.md b/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceCampaignInfo.md new file mode 100644 index 0000000000..9a6cb0fac5 --- /dev/null +++ b/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceCampaignInfo.md @@ -0,0 +1,65 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / [utils/interfaces](../README.md) / InterfaceCampaignInfo + +# Interface: InterfaceCampaignInfo + +Defined in: [src/utils/interfaces.ts:362](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L362) + +## Properties + +### \_id + +> **\_id**: `string` + +Defined in: [src/utils/interfaces.ts:363](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L363) + +*** + +### createdAt + +> **createdAt**: `string` + +Defined in: [src/utils/interfaces.ts:368](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L368) + +*** + +### currency + +> **currency**: `string` + +Defined in: [src/utils/interfaces.ts:369](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L369) + +*** + +### endDate + +> **endDate**: `Date` + +Defined in: [src/utils/interfaces.ts:367](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L367) + +*** + +### fundingGoal + +> **fundingGoal**: `number` + +Defined in: [src/utils/interfaces.ts:365](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L365) + +*** + +### name + +> **name**: `string` + +Defined in: [src/utils/interfaces.ts:364](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L364) + +*** + +### startDate + +> **startDate**: `Date` + +Defined in: [src/utils/interfaces.ts:366](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L366) diff --git a/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceCreateFund.md b/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceCreateFund.md new file mode 100644 index 0000000000..5e0a8a39a8 --- /dev/null +++ b/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceCreateFund.md @@ -0,0 +1,49 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / [utils/interfaces](../README.md) / InterfaceCreateFund + +# Interface: InterfaceCreateFund + +Defined in: [src/utils/interfaces.ts:463](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L463) + +## Properties + +### fundName + +> **fundName**: `string` + +Defined in: [src/utils/interfaces.ts:464](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L464) + +*** + +### fundRef + +> **fundRef**: `string` + +Defined in: [src/utils/interfaces.ts:465](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L465) + +*** + +### isArchived + +> **isArchived**: `boolean` + +Defined in: [src/utils/interfaces.ts:467](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L467) + +*** + +### isDefault + +> **isDefault**: `boolean` + +Defined in: [src/utils/interfaces.ts:466](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L466) + +*** + +### taxDeductible + +> **taxDeductible**: `boolean` + +Defined in: [src/utils/interfaces.ts:468](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L468) diff --git a/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceCreatePledge.md b/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceCreatePledge.md new file mode 100644 index 0000000000..4a0deef43c --- /dev/null +++ b/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceCreatePledge.md @@ -0,0 +1,49 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / [utils/interfaces](../README.md) / InterfaceCreatePledge + +# Interface: InterfaceCreatePledge + +Defined in: [src/utils/interfaces.ts:508](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L508) + +## Properties + +### pledgeAmount + +> **pledgeAmount**: `number` + +Defined in: [src/utils/interfaces.ts:510](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L510) + +*** + +### pledgeCurrency + +> **pledgeCurrency**: `string` + +Defined in: [src/utils/interfaces.ts:511](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L511) + +*** + +### pledgeEndDate + +> **pledgeEndDate**: `Date` + +Defined in: [src/utils/interfaces.ts:513](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L513) + +*** + +### pledgeStartDate + +> **pledgeStartDate**: `Date` + +Defined in: [src/utils/interfaces.ts:512](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L512) + +*** + +### pledgeUsers + +> **pledgeUsers**: [`InterfaceUserInfo`](InterfaceUserInfo.md)[] + +Defined in: [src/utils/interfaces.ts:509](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L509) diff --git a/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceCreateVolunteerGroup.md b/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceCreateVolunteerGroup.md new file mode 100644 index 0000000000..40d6858ba6 --- /dev/null +++ b/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceCreateVolunteerGroup.md @@ -0,0 +1,49 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / [utils/interfaces](../README.md) / InterfaceCreateVolunteerGroup + +# Interface: InterfaceCreateVolunteerGroup + +Defined in: [src/utils/interfaces.ts:648](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L648) + +## Properties + +### description + +> **description**: `string` + +Defined in: [src/utils/interfaces.ts:650](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L650) + +*** + +### leader + +> **leader**: [`InterfaceUserInfo`](InterfaceUserInfo.md) + +Defined in: [src/utils/interfaces.ts:651](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L651) + +*** + +### name + +> **name**: `string` + +Defined in: [src/utils/interfaces.ts:649](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L649) + +*** + +### volunteersRequired + +> **volunteersRequired**: `number` + +Defined in: [src/utils/interfaces.ts:652](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L652) + +*** + +### volunteerUsers + +> **volunteerUsers**: [`InterfaceUserInfo`](InterfaceUserInfo.md)[] + +Defined in: [src/utils/interfaces.ts:653](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L653) diff --git a/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceCustomFieldData.md b/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceCustomFieldData.md new file mode 100644 index 0000000000..deb7cbd149 --- /dev/null +++ b/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceCustomFieldData.md @@ -0,0 +1,25 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / [utils/interfaces](../README.md) / InterfaceCustomFieldData + +# Interface: InterfaceCustomFieldData + +Defined in: [src/utils/interfaces.ts:600](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L600) + +## Properties + +### name + +> **name**: `string` + +Defined in: [src/utils/interfaces.ts:602](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L602) + +*** + +### type + +> **type**: `string` + +Defined in: [src/utils/interfaces.ts:601](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L601) diff --git a/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceEventVolunteerInfo.md b/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceEventVolunteerInfo.md new file mode 100644 index 0000000000..999d6f6915 --- /dev/null +++ b/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceEventVolunteerInfo.md @@ -0,0 +1,73 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / [utils/interfaces](../README.md) / InterfaceEventVolunteerInfo + +# Interface: InterfaceEventVolunteerInfo + +Defined in: [src/utils/interfaces.ts:605](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L605) + +## Properties + +### \_id + +> **\_id**: `string` + +Defined in: [src/utils/interfaces.ts:606](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L606) + +*** + +### assignments + +> **assignments**: `object`[] + +Defined in: [src/utils/interfaces.ts:610](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L610) + +#### \_id + +> **\_id**: `string` + +*** + +### groups + +> **groups**: `object`[] + +Defined in: [src/utils/interfaces.ts:613](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L613) + +#### \_id + +> **\_id**: `string` + +#### name + +> **name**: `string` + +#### volunteers + +> **volunteers**: `object`[] + +*** + +### hasAccepted + +> **hasAccepted**: `boolean` + +Defined in: [src/utils/interfaces.ts:607](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L607) + +*** + +### hoursVolunteered + +> **hoursVolunteered**: `number` + +Defined in: [src/utils/interfaces.ts:608](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L608) + +*** + +### user + +> **user**: [`InterfaceUserInfo`](InterfaceUserInfo.md) + +Defined in: [src/utils/interfaces.ts:609](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L609) diff --git a/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceFormData.md b/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceFormData.md new file mode 100644 index 0000000000..22d2d1edb6 --- /dev/null +++ b/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceFormData.md @@ -0,0 +1,49 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / [utils/interfaces](../README.md) / InterfaceFormData + +# Interface: InterfaceFormData + +Defined in: [src/utils/interfaces.ts:552](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L552) + +## Properties + +### email + +> **email**: `string` + +Defined in: [src/utils/interfaces.ts:555](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L555) + +*** + +### firstName + +> **firstName**: `string` + +Defined in: [src/utils/interfaces.ts:553](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L553) + +*** + +### gender + +> **gender**: `string` + +Defined in: [src/utils/interfaces.ts:557](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L557) + +*** + +### lastName + +> **lastName**: `string` + +Defined in: [src/utils/interfaces.ts:554](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L554) + +*** + +### phoneNo + +> **phoneNo**: `string` + +Defined in: [src/utils/interfaces.ts:556](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L556) diff --git a/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceFundInfo.md b/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceFundInfo.md new file mode 100644 index 0000000000..5efc1491dd --- /dev/null +++ b/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceFundInfo.md @@ -0,0 +1,93 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / [utils/interfaces](../README.md) / InterfaceFundInfo + +# Interface: InterfaceFundInfo + +Defined in: [src/utils/interfaces.ts:351](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L351) + +## Properties + +### \_id + +> **\_id**: `string` + +Defined in: [src/utils/interfaces.ts:352](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L352) + +*** + +### createdAt + +> **createdAt**: `string` + +Defined in: [src/utils/interfaces.ts:358](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L358) + +*** + +### creator + +> **creator**: `object` + +Defined in: [src/utils/interfaces.ts:360](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L360) + +#### \_id + +> **\_id**: `string` + +#### firstName + +> **firstName**: `string` + +#### lastName + +> **lastName**: `string` + +*** + +### isArchived + +> **isArchived**: `boolean` + +Defined in: [src/utils/interfaces.ts:356](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L356) + +*** + +### isDefault + +> **isDefault**: `boolean` + +Defined in: [src/utils/interfaces.ts:357](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L357) + +*** + +### name + +> **name**: `string` + +Defined in: [src/utils/interfaces.ts:353](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L353) + +*** + +### organizationId + +> **organizationId**: `string` + +Defined in: [src/utils/interfaces.ts:359](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L359) + +*** + +### refrenceNumber + +> **refrenceNumber**: `string` + +Defined in: [src/utils/interfaces.ts:354](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L354) + +*** + +### taxDeductible + +> **taxDeductible**: `boolean` + +Defined in: [src/utils/interfaces.ts:355](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L355) diff --git a/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceMapType.md b/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceMapType.md new file mode 100644 index 0000000000..501f7b4569 --- /dev/null +++ b/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceMapType.md @@ -0,0 +1,13 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / [utils/interfaces](../README.md) / InterfaceMapType + +# Interface: InterfaceMapType + +Defined in: [src/utils/interfaces.ts:596](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L596) + +## Indexable + +\[`key`: `string`\]: `string` diff --git a/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceMemberInfo.md b/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceMemberInfo.md new file mode 100644 index 0000000000..a18b78c9cd --- /dev/null +++ b/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceMemberInfo.md @@ -0,0 +1,69 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / [utils/interfaces](../README.md) / InterfaceMemberInfo + +# Interface: InterfaceMemberInfo + +Defined in: [src/utils/interfaces.ts:79](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L79) + +## Properties + +### \_id + +> **\_id**: `string` + +Defined in: [src/utils/interfaces.ts:80](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L80) + +*** + +### createdAt + +> **createdAt**: `string` + +Defined in: [src/utils/interfaces.ts:85](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L85) + +*** + +### email + +> **email**: `string` + +Defined in: [src/utils/interfaces.ts:83](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L83) + +*** + +### firstName + +> **firstName**: `string` + +Defined in: [src/utils/interfaces.ts:81](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L81) + +*** + +### image + +> **image**: `string` + +Defined in: [src/utils/interfaces.ts:84](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L84) + +*** + +### lastName + +> **lastName**: `string` + +Defined in: [src/utils/interfaces.ts:82](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L82) + +*** + +### organizationsBlockedBy + +> **organizationsBlockedBy**: `object`[] + +Defined in: [src/utils/interfaces.ts:86](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L86) + +#### \_id + +> **\_id**: `string` diff --git a/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceMembersList.md b/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceMembersList.md new file mode 100644 index 0000000000..502e9bd0a4 --- /dev/null +++ b/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceMembersList.md @@ -0,0 +1,25 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / [utils/interfaces](../README.md) / InterfaceMembersList + +# Interface: InterfaceMembersList + +Defined in: [src/utils/interfaces.ts:72](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L72) + +## Properties + +### organizations + +> **organizations**: `object`[] + +Defined in: [src/utils/interfaces.ts:73](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L73) + +#### \_id + +> **\_id**: `string` + +#### members + +> **members**: [`InterfaceMemberInfo`](InterfaceMemberInfo.md)[] diff --git a/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceOrgConnectionInfoType.md b/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceOrgConnectionInfoType.md new file mode 100644 index 0000000000..90ed8396be --- /dev/null +++ b/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceOrgConnectionInfoType.md @@ -0,0 +1,93 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / [utils/interfaces](../README.md) / InterfaceOrgConnectionInfoType + +# Interface: InterfaceOrgConnectionInfoType + +Defined in: [src/utils/interfaces.ts:91](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L91) + +## Properties + +### \_id + +> **\_id**: `string` + +Defined in: [src/utils/interfaces.ts:92](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L92) + +*** + +### address + +> **address**: [`InterfaceAddress`](InterfaceAddress.md) + +Defined in: [src/utils/interfaces.ts:107](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L107) + +*** + +### admins + +> **admins**: `object`[] + +Defined in: [src/utils/interfaces.ts:103](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L103) + +#### \_id + +> **\_id**: `string` + +*** + +### createdAt + +> **createdAt**: `string` + +Defined in: [src/utils/interfaces.ts:106](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L106) + +*** + +### creator + +> **creator**: `object` + +Defined in: [src/utils/interfaces.ts:94](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L94) + +#### \_id + +> **\_id**: `string` + +#### firstName + +> **firstName**: `string` + +#### lastName + +> **lastName**: `string` + +*** + +### image + +> **image**: `string` + +Defined in: [src/utils/interfaces.ts:93](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L93) + +*** + +### members + +> **members**: `object`[] + +Defined in: [src/utils/interfaces.ts:100](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L100) + +#### \_id + +> **\_id**: `string` + +*** + +### name + +> **name**: `string` + +Defined in: [src/utils/interfaces.ts:99](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L99) diff --git a/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceOrgConnectionType.md b/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceOrgConnectionType.md new file mode 100644 index 0000000000..46c8057fa2 --- /dev/null +++ b/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceOrgConnectionType.md @@ -0,0 +1,17 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / [utils/interfaces](../README.md) / InterfaceOrgConnectionType + +# Interface: InterfaceOrgConnectionType + +Defined in: [src/utils/interfaces.ts:109](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L109) + +## Properties + +### organizationsConnection + +> **organizationsConnection**: [`InterfaceOrgConnectionInfoType`](InterfaceOrgConnectionInfoType.md)[] + +Defined in: [src/utils/interfaces.ts:110](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L110) diff --git a/docs/docs/auto-docs/utils/interfaces/interfaces/InterfacePledgeInfo.md b/docs/docs/auto-docs/utils/interfaces/interfaces/InterfacePledgeInfo.md new file mode 100644 index 0000000000..877c7a7ba8 --- /dev/null +++ b/docs/docs/auto-docs/utils/interfaces/interfaces/InterfacePledgeInfo.md @@ -0,0 +1,77 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / [utils/interfaces](../README.md) / InterfacePledgeInfo + +# Interface: InterfacePledgeInfo + +Defined in: [src/utils/interfaces.ts:371](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L371) + +## Properties + +### \_id + +> **\_id**: `string` + +Defined in: [src/utils/interfaces.ts:372](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L372) + +*** + +### amount + +> **amount**: `number` + +Defined in: [src/utils/interfaces.ts:374](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L374) + +*** + +### campaign? + +> `optional` **campaign**: `object` + +Defined in: [src/utils/interfaces.ts:373](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L373) + +#### \_id + +> **\_id**: `string` + +#### endDate + +> **endDate**: `Date` + +#### name + +> **name**: `string` + +*** + +### currency + +> **currency**: `string` + +Defined in: [src/utils/interfaces.ts:375](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L375) + +*** + +### endDate + +> **endDate**: `string` + +Defined in: [src/utils/interfaces.ts:376](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L376) + +*** + +### startDate + +> **startDate**: `string` + +Defined in: [src/utils/interfaces.ts:377](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L377) + +*** + +### users + +> **users**: [`InterfaceUserInfo`](InterfaceUserInfo.md)[] + +Defined in: [src/utils/interfaces.ts:378](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L378) diff --git a/docs/docs/auto-docs/utils/interfaces/interfaces/InterfacePostCard.md b/docs/docs/auto-docs/utils/interfaces/interfaces/InterfacePostCard.md new file mode 100644 index 0000000000..16522989a9 --- /dev/null +++ b/docs/docs/auto-docs/utils/interfaces/interfaces/InterfacePostCard.md @@ -0,0 +1,173 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / [utils/interfaces](../README.md) / InterfacePostCard + +# Interface: InterfacePostCard + +Defined in: [src/utils/interfaces.ts:471](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L471) + +## Properties + +### commentCount + +> **commentCount**: `number` + +Defined in: [src/utils/interfaces.ts:485](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L485) + +*** + +### comments + +> **comments**: `object`[] + +Defined in: [src/utils/interfaces.ts:486](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L486) + +#### creator + +> **creator**: `object` + +##### creator.email + +> **email**: `string` + +##### creator.firstName + +> **firstName**: `string` + +##### creator.id + +> **id**: `string` + +##### creator.lastName + +> **lastName**: `string` + +#### id + +> **id**: `string` + +#### likeCount + +> **likeCount**: `number` + +#### likedBy + +> **likedBy**: `object`[] + +#### text + +> **text**: `string` + +*** + +### creator + +> **creator**: `object` + +Defined in: [src/utils/interfaces.ts:473](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L473) + +#### email + +> **email**: `string` + +#### firstName + +> **firstName**: `string` + +#### id + +> **id**: `string` + +#### lastName + +> **lastName**: `string` + +*** + +### fetchPosts() + +> **fetchPosts**: () => `void` + +Defined in: [src/utils/interfaces.ts:505](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L505) + +#### Returns + +`void` + +*** + +### id + +> **id**: `string` + +Defined in: [src/utils/interfaces.ts:472](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L472) + +*** + +### image + +> **image**: `string` + +Defined in: [src/utils/interfaces.ts:480](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L480) + +*** + +### likeCount + +> **likeCount**: `number` + +Defined in: [src/utils/interfaces.ts:484](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L484) + +*** + +### likedBy + +> **likedBy**: `object`[] + +Defined in: [src/utils/interfaces.ts:500](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L500) + +#### firstName + +> **firstName**: `string` + +#### id + +> **id**: `string` + +#### lastName + +> **lastName**: `string` + +*** + +### postedAt + +> **postedAt**: `string` + +Defined in: [src/utils/interfaces.ts:479](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L479) + +*** + +### text + +> **text**: `string` + +Defined in: [src/utils/interfaces.ts:482](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L482) + +*** + +### title + +> **title**: `string` + +Defined in: [src/utils/interfaces.ts:483](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L483) + +*** + +### video + +> **video**: `string` + +Defined in: [src/utils/interfaces.ts:481](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L481) diff --git a/docs/docs/auto-docs/utils/interfaces/interfaces/InterfacePostForm.md b/docs/docs/auto-docs/utils/interfaces/interfaces/InterfacePostForm.md new file mode 100644 index 0000000000..03b94961b2 --- /dev/null +++ b/docs/docs/auto-docs/utils/interfaces/interfaces/InterfacePostForm.md @@ -0,0 +1,49 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / [utils/interfaces](../README.md) / InterfacePostForm + +# Interface: InterfacePostForm + +Defined in: [src/utils/interfaces.ts:173](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L173) + +## Properties + +### pinned + +> **pinned**: `boolean` + +Defined in: [src/utils/interfaces.ts:178](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L178) + +*** + +### postinfo + +> **postinfo**: `string` + +Defined in: [src/utils/interfaces.ts:175](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L175) + +*** + +### postphoto + +> **postphoto**: `string` + +Defined in: [src/utils/interfaces.ts:176](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L176) + +*** + +### posttitle + +> **posttitle**: `string` + +Defined in: [src/utils/interfaces.ts:174](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L174) + +*** + +### postvideo + +> **postvideo**: `string` + +Defined in: [src/utils/interfaces.ts:177](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L177) diff --git a/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceQueryBlockPageMemberListItem.md b/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceQueryBlockPageMemberListItem.md new file mode 100644 index 0000000000..121d5bb3db --- /dev/null +++ b/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceQueryBlockPageMemberListItem.md @@ -0,0 +1,53 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / [utils/interfaces](../README.md) / InterfaceQueryBlockPageMemberListItem + +# Interface: InterfaceQueryBlockPageMemberListItem + +Defined in: [src/utils/interfaces.ts:386](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L386) + +## Properties + +### \_id + +> **\_id**: `string` + +Defined in: [src/utils/interfaces.ts:387](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L387) + +*** + +### email + +> **email**: `string` + +Defined in: [src/utils/interfaces.ts:390](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L390) + +*** + +### firstName + +> **firstName**: `string` + +Defined in: [src/utils/interfaces.ts:388](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L388) + +*** + +### lastName + +> **lastName**: `string` + +Defined in: [src/utils/interfaces.ts:389](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L389) + +*** + +### organizationsBlockedBy + +> **organizationsBlockedBy**: `object`[] + +Defined in: [src/utils/interfaces.ts:391](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L391) + +#### \_id + +> **\_id**: `string` diff --git a/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceQueryFundCampaignsPledges.md b/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceQueryFundCampaignsPledges.md new file mode 100644 index 0000000000..2fa6b70ae0 --- /dev/null +++ b/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceQueryFundCampaignsPledges.md @@ -0,0 +1,69 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / [utils/interfaces](../README.md) / InterfaceQueryFundCampaignsPledges + +# Interface: InterfaceQueryFundCampaignsPledges + +Defined in: [src/utils/interfaces.ts:340](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L340) + +## Properties + +### currency + +> **currency**: `string` + +Defined in: [src/utils/interfaces.ts:346](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L346) + +*** + +### endDate + +> **endDate**: `Date` + +Defined in: [src/utils/interfaces.ts:348](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L348) + +*** + +### fundId + +> **fundId**: `object` + +Defined in: [src/utils/interfaces.ts:341](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L341) + +#### name + +> **name**: `string` + +*** + +### fundingGoal + +> **fundingGoal**: `number` + +Defined in: [src/utils/interfaces.ts:345](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L345) + +*** + +### name + +> **name**: `string` + +Defined in: [src/utils/interfaces.ts:344](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L344) + +*** + +### pledges + +> **pledges**: [`InterfacePledgeInfo`](InterfacePledgeInfo.md)[] + +Defined in: [src/utils/interfaces.ts:349](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L349) + +*** + +### startDate + +> **startDate**: `Date` + +Defined in: [src/utils/interfaces.ts:347](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L347) diff --git a/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceQueryMembershipRequestsListItem.md b/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceQueryMembershipRequestsListItem.md new file mode 100644 index 0000000000..7e66eb2d3f --- /dev/null +++ b/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceQueryMembershipRequestsListItem.md @@ -0,0 +1,25 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / [utils/interfaces](../README.md) / InterfaceQueryMembershipRequestsListItem + +# Interface: InterfaceQueryMembershipRequestsListItem + +Defined in: [src/utils/interfaces.ts:516](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L516) + +## Properties + +### organizations + +> **organizations**: `object`[] + +Defined in: [src/utils/interfaces.ts:517](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L517) + +#### \_id + +> **\_id**: `string` + +#### membershipRequests + +> **membershipRequests**: `object`[] diff --git a/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceQueryOrganizationAdvertisementListItem.md b/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceQueryOrganizationAdvertisementListItem.md new file mode 100644 index 0000000000..b78289b982 --- /dev/null +++ b/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceQueryOrganizationAdvertisementListItem.md @@ -0,0 +1,45 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / [utils/interfaces](../README.md) / InterfaceQueryOrganizationAdvertisementListItem + +# Interface: InterfaceQueryOrganizationAdvertisementListItem + +Defined in: [src/utils/interfaces.ts:296](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L296) + +## Properties + +### advertisements + +> **advertisements**: `object` + +Defined in: [src/utils/interfaces.ts:297](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L297) + +#### edges + +> **edges**: `object`[] + +#### pageInfo + +> **pageInfo**: `object` + +##### pageInfo.endCursor + +> **endCursor**: `string` + +##### pageInfo.hasNextPage + +> **hasNextPage**: `boolean` + +##### pageInfo.hasPreviousPage + +> **hasPreviousPage**: `boolean` + +##### pageInfo.startCursor + +> **startCursor**: `string` + +#### totalCount + +> **totalCount**: `number` diff --git a/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceQueryOrganizationEventListItem.md b/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceQueryOrganizationEventListItem.md new file mode 100644 index 0000000000..d2c118930b --- /dev/null +++ b/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceQueryOrganizationEventListItem.md @@ -0,0 +1,149 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / [utils/interfaces](../README.md) / InterfaceQueryOrganizationEventListItem + +# Interface: InterfaceQueryOrganizationEventListItem + +Defined in: [src/utils/interfaces.ts:380](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L380) + +## Extends + +- [`InterfaceBaseEvent`](InterfaceBaseEvent.md) + +## Properties + +### \_id + +> **\_id**: `string` + +Defined in: [src/utils/interfaces.ts:19](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L19) + +#### Inherited from + +[`InterfaceBaseEvent`](InterfaceBaseEvent.md).[`_id`](InterfaceBaseEvent.md#_id) + +*** + +### allDay + +> **allDay**: `boolean` + +Defined in: [src/utils/interfaces.ts:27](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L27) + +#### Inherited from + +[`InterfaceBaseEvent`](InterfaceBaseEvent.md).[`allDay`](InterfaceBaseEvent.md#allday) + +*** + +### description + +> **description**: `string` + +Defined in: [src/utils/interfaces.ts:21](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L21) + +#### Inherited from + +[`InterfaceBaseEvent`](InterfaceBaseEvent.md).[`description`](InterfaceBaseEvent.md#description) + +*** + +### endDate + +> **endDate**: `string` + +Defined in: [src/utils/interfaces.ts:23](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L23) + +#### Inherited from + +[`InterfaceBaseEvent`](InterfaceBaseEvent.md).[`endDate`](InterfaceBaseEvent.md#enddate) + +*** + +### endTime + +> **endTime**: `string` + +Defined in: [src/utils/interfaces.ts:26](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L26) + +#### Inherited from + +[`InterfaceBaseEvent`](InterfaceBaseEvent.md).[`endTime`](InterfaceBaseEvent.md#endtime) + +*** + +### isPublic + +> **isPublic**: `boolean` + +Defined in: [src/utils/interfaces.ts:382](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L382) + +*** + +### isRegisterable + +> **isRegisterable**: `boolean` + +Defined in: [src/utils/interfaces.ts:383](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L383) + +*** + +### location + +> **location**: `string` + +Defined in: [src/utils/interfaces.ts:24](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L24) + +#### Inherited from + +[`InterfaceBaseEvent`](InterfaceBaseEvent.md).[`location`](InterfaceBaseEvent.md#location) + +*** + +### recurring + +> **recurring**: `boolean` + +Defined in: [src/utils/interfaces.ts:28](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L28) + +#### Inherited from + +[`InterfaceBaseEvent`](InterfaceBaseEvent.md).[`recurring`](InterfaceBaseEvent.md#recurring) + +*** + +### startDate + +> **startDate**: `string` + +Defined in: [src/utils/interfaces.ts:22](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L22) + +#### Inherited from + +[`InterfaceBaseEvent`](InterfaceBaseEvent.md).[`startDate`](InterfaceBaseEvent.md#startdate) + +*** + +### startTime + +> **startTime**: `string` + +Defined in: [src/utils/interfaces.ts:25](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L25) + +#### Inherited from + +[`InterfaceBaseEvent`](InterfaceBaseEvent.md).[`startTime`](InterfaceBaseEvent.md#starttime) + +*** + +### title + +> **title**: `string` + +Defined in: [src/utils/interfaces.ts:20](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L20) + +#### Inherited from + +[`InterfaceBaseEvent`](InterfaceBaseEvent.md).[`title`](InterfaceBaseEvent.md#title) diff --git a/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceQueryOrganizationFundCampaigns.md b/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceQueryOrganizationFundCampaigns.md new file mode 100644 index 0000000000..bc165b3d17 --- /dev/null +++ b/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceQueryOrganizationFundCampaigns.md @@ -0,0 +1,61 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / [utils/interfaces](../README.md) / InterfaceQueryOrganizationFundCampaigns + +# Interface: InterfaceQueryOrganizationFundCampaigns + +Defined in: [src/utils/interfaces.ts:319](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L319) + +## Properties + +### campaigns + +> **campaigns**: `object`[] + +Defined in: [src/utils/interfaces.ts:322](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L322) + +#### \_id + +> **\_id**: `string` + +#### createdAt + +> **createdAt**: `string` + +#### currency + +> **currency**: `string` + +#### endDate + +> **endDate**: `Date` + +#### fundingGoal + +> **fundingGoal**: `number` + +#### name + +> **name**: `string` + +#### startDate + +> **startDate**: `Date` + +*** + +### isArchived + +> **isArchived**: `boolean` + +Defined in: [src/utils/interfaces.ts:321](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L321) + +*** + +### name + +> **name**: `string` + +Defined in: [src/utils/interfaces.ts:320](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L320) diff --git a/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceQueryOrganizationListObject.md b/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceQueryOrganizationListObject.md new file mode 100644 index 0000000000..e12dd6baeb --- /dev/null +++ b/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceQueryOrganizationListObject.md @@ -0,0 +1,89 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / [utils/interfaces](../README.md) / InterfaceQueryOrganizationListObject + +# Interface: InterfaceQueryOrganizationListObject + +Defined in: [src/utils/interfaces.ts:155](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L155) + +## Properties + +### \_id + +> **\_id**: `string` + +Defined in: [src/utils/interfaces.ts:156](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L156) + +*** + +### address + +> **address**: [`InterfaceAddress`](InterfaceAddress.md) + +Defined in: [src/utils/interfaces.ts:170](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L170) + +*** + +### admins + +> **admins**: `object`[] + +Defined in: [src/utils/interfaces.ts:166](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L166) + +#### \_id + +> **\_id**: `string` + +*** + +### createdAt + +> **createdAt**: `string` + +Defined in: [src/utils/interfaces.ts:169](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L169) + +*** + +### creator + +> **creator**: `object` + +Defined in: [src/utils/interfaces.ts:158](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L158) + +#### firstName + +> **firstName**: `string` + +#### lastName + +> **lastName**: `string` + +*** + +### image + +> **image**: `string` + +Defined in: [src/utils/interfaces.ts:157](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L157) + +*** + +### members + +> **members**: `object`[] + +Defined in: [src/utils/interfaces.ts:163](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L163) + +#### \_id + +> **\_id**: `string` + +*** + +### name + +> **name**: `string` + +Defined in: [src/utils/interfaces.ts:162](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L162) diff --git a/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceQueryOrganizationPostListItem.md b/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceQueryOrganizationPostListItem.md new file mode 100644 index 0000000000..acef2a8df6 --- /dev/null +++ b/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceQueryOrganizationPostListItem.md @@ -0,0 +1,45 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / [utils/interfaces](../README.md) / InterfaceQueryOrganizationPostListItem + +# Interface: InterfaceQueryOrganizationPostListItem + +Defined in: [src/utils/interfaces.ts:180](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L180) + +## Properties + +### posts + +> **posts**: `object` + +Defined in: [src/utils/interfaces.ts:181](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L181) + +#### edges + +> **edges**: `object`[] + +#### pageInfo + +> **pageInfo**: `object` + +##### pageInfo.endCursor + +> **endCursor**: `string` + +##### pageInfo.hasNextPage + +> **hasNextPage**: `boolean` + +##### pageInfo.hasPreviousPage + +> **hasPreviousPage**: `boolean` + +##### pageInfo.startCursor + +> **startCursor**: `string` + +#### totalCount + +> **totalCount**: `number` diff --git a/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceQueryOrganizationUserTags.md b/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceQueryOrganizationUserTags.md new file mode 100644 index 0000000000..2e85b243fd --- /dev/null +++ b/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceQueryOrganizationUserTags.md @@ -0,0 +1,17 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / [utils/interfaces](../README.md) / InterfaceQueryOrganizationUserTags + +# Interface: InterfaceQueryOrganizationUserTags + +Defined in: [src/utils/interfaces.ts:269](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L269) + +## Properties + +### userTags + +> **userTags**: `InterfaceTagNodeData` + +Defined in: [src/utils/interfaces.ts:270](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L270) diff --git a/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceQueryOrganizationsListObject.md b/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceQueryOrganizationsListObject.md new file mode 100644 index 0000000000..a6b3624ecc --- /dev/null +++ b/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceQueryOrganizationsListObject.md @@ -0,0 +1,189 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / [utils/interfaces](../README.md) / InterfaceQueryOrganizationsListObject + +# Interface: InterfaceQueryOrganizationsListObject + +Defined in: [src/utils/interfaces.ts:113](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L113) + +## Properties + +### \_id + +> **\_id**: `string` + +Defined in: [src/utils/interfaces.ts:114](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L114) + +*** + +### address + +> **address**: [`InterfaceAddress`](InterfaceAddress.md) + +Defined in: [src/utils/interfaces.ts:123](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L123) + +*** + +### admins + +> **admins**: `object`[] + +Defined in: [src/utils/interfaces.ts:132](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L132) + +#### \_id + +> **\_id**: `string` + +#### createdAt + +> **createdAt**: `string` + +#### email + +> **email**: `string` + +#### firstName + +> **firstName**: `string` + +#### lastName + +> **lastName**: `string` + +*** + +### blockedUsers + +> **blockedUsers**: `object`[] + +Defined in: [src/utils/interfaces.ts:147](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L147) + +#### \_id + +> **\_id**: `string` + +#### email + +> **email**: `string` + +#### firstName + +> **firstName**: `string` + +#### lastName + +> **lastName**: `string` + +*** + +### creator + +> **creator**: `object` + +Defined in: [src/utils/interfaces.ts:116](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L116) + +#### email + +> **email**: `string` + +#### firstName + +> **firstName**: `string` + +#### lastName + +> **lastName**: `string` + +*** + +### description + +> **description**: `string` + +Defined in: [src/utils/interfaces.ts:122](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L122) + +*** + +### image + +> **image**: `string` + +Defined in: [src/utils/interfaces.ts:115](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L115) + +*** + +### members + +> **members**: `object`[] + +Defined in: [src/utils/interfaces.ts:126](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L126) + +#### \_id + +> **\_id**: `string` + +#### email + +> **email**: `string` + +#### firstName + +> **firstName**: `string` + +#### lastName + +> **lastName**: `string` + +*** + +### membershipRequests + +> **membershipRequests**: `object`[] + +Defined in: [src/utils/interfaces.ts:139](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L139) + +#### \_id + +> **\_id**: `string` + +#### user + +> **user**: `object` + +##### user.email + +> **email**: `string` + +##### user.firstName + +> **firstName**: `string` + +##### user.lastName + +> **lastName**: `string` + +*** + +### name + +> **name**: `string` + +Defined in: [src/utils/interfaces.ts:121](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L121) + +*** + +### userRegistrationRequired + +> **userRegistrationRequired**: `boolean` + +Defined in: [src/utils/interfaces.ts:124](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L124) + +*** + +### visibleInSearch + +> **visibleInSearch**: `boolean` + +Defined in: [src/utils/interfaces.ts:125](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L125) diff --git a/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceQueryUserListItem.md b/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceQueryUserListItem.md new file mode 100644 index 0000000000..59b2296d79 --- /dev/null +++ b/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceQueryUserListItem.md @@ -0,0 +1,89 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / [utils/interfaces](../README.md) / InterfaceQueryUserListItem + +# Interface: InterfaceQueryUserListItem + +Defined in: [src/utils/interfaces.ts:396](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L396) + +## Properties + +### appUserProfile + +> **appUserProfile**: `object` + +Defined in: [src/utils/interfaces.ts:435](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L435) + +#### \_id + +> **\_id**: `string` + +#### adminFor + +> **adminFor**: `object`[] + +#### createdEvents + +> **createdEvents**: `object`[] + +#### createdOrganizations + +> **createdOrganizations**: `object`[] + +#### eventAdmin + +> **eventAdmin**: `object`[] + +#### isSuperAdmin + +> **isSuperAdmin**: `boolean` + +*** + +### user + +> **user**: `object` + +Defined in: [src/utils/interfaces.ts:397](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L397) + +#### \_id + +> **\_id**: `string` + +#### createdAt + +> **createdAt**: `string` + +#### email + +> **email**: `string` + +#### firstName + +> **firstName**: `string` + +#### image + +> **image**: `string` + +#### joinedOrganizations + +> **joinedOrganizations**: `object`[] + +#### lastName + +> **lastName**: `string` + +#### membershipRequests + +> **membershipRequests**: `object`[] + +#### organizationsBlockedBy + +> **organizationsBlockedBy**: `object`[] + +#### registeredEvents + +> **registeredEvents**: `object`[] diff --git a/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceQueryUserTagChildTags.md b/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceQueryUserTagChildTags.md new file mode 100644 index 0000000000..ccdfa86de0 --- /dev/null +++ b/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceQueryUserTagChildTags.md @@ -0,0 +1,41 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / [utils/interfaces](../README.md) / InterfaceQueryUserTagChildTags + +# Interface: InterfaceQueryUserTagChildTags + +Defined in: [src/utils/interfaces.ts:273](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L273) + +## Properties + +### ancestorTags + +> **ancestorTags**: `object`[] + +Defined in: [src/utils/interfaces.ts:276](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L276) + +#### \_id + +> **\_id**: `string` + +#### name + +> **name**: `string` + +*** + +### childTags + +> **childTags**: `InterfaceTagNodeData` + +Defined in: [src/utils/interfaces.ts:275](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L275) + +*** + +### name + +> **name**: `string` + +Defined in: [src/utils/interfaces.ts:274](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L274) diff --git a/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceQueryUserTagsAssignedMembers.md b/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceQueryUserTagsAssignedMembers.md new file mode 100644 index 0000000000..4597be30b1 --- /dev/null +++ b/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceQueryUserTagsAssignedMembers.md @@ -0,0 +1,41 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / [utils/interfaces](../README.md) / InterfaceQueryUserTagsAssignedMembers + +# Interface: InterfaceQueryUserTagsAssignedMembers + +Defined in: [src/utils/interfaces.ts:282](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L282) + +## Properties + +### ancestorTags + +> **ancestorTags**: `object`[] + +Defined in: [src/utils/interfaces.ts:285](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L285) + +#### \_id + +> **\_id**: `string` + +#### name + +> **name**: `string` + +*** + +### name + +> **name**: `string` + +Defined in: [src/utils/interfaces.ts:283](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L283) + +*** + +### usersAssignedTo + +> **usersAssignedTo**: `InterfaceTagMembersData` + +Defined in: [src/utils/interfaces.ts:284](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L284) diff --git a/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceQueryUserTagsMembersToAssignTo.md b/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceQueryUserTagsMembersToAssignTo.md new file mode 100644 index 0000000000..0e79c67bd2 --- /dev/null +++ b/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceQueryUserTagsMembersToAssignTo.md @@ -0,0 +1,25 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / [utils/interfaces](../README.md) / InterfaceQueryUserTagsMembersToAssignTo + +# Interface: InterfaceQueryUserTagsMembersToAssignTo + +Defined in: [src/utils/interfaces.ts:291](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L291) + +## Properties + +### name + +> **name**: `string` + +Defined in: [src/utils/interfaces.ts:292](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L292) + +*** + +### usersToAssignTo + +> **usersToAssignTo**: `InterfaceTagMembersData` + +Defined in: [src/utils/interfaces.ts:293](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L293) diff --git a/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceQueryVenueListItem.md b/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceQueryVenueListItem.md new file mode 100644 index 0000000000..d647eab137 --- /dev/null +++ b/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceQueryVenueListItem.md @@ -0,0 +1,49 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / [utils/interfaces](../README.md) / InterfaceQueryVenueListItem + +# Interface: InterfaceQueryVenueListItem + +Defined in: [src/utils/interfaces.ts:445](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L445) + +## Properties + +### \_id + +> **\_id**: `string` + +Defined in: [src/utils/interfaces.ts:446](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L446) + +*** + +### capacity + +> **capacity**: `string` + +Defined in: [src/utils/interfaces.ts:450](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L450) + +*** + +### description + +> **description**: `string` + +Defined in: [src/utils/interfaces.ts:448](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L448) + +*** + +### image + +> **image**: `string` + +Defined in: [src/utils/interfaces.ts:449](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L449) + +*** + +### name + +> **name**: `string` + +Defined in: [src/utils/interfaces.ts:447](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L447) diff --git a/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceTagData.md b/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceTagData.md new file mode 100644 index 0000000000..a7d36735fe --- /dev/null +++ b/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceTagData.md @@ -0,0 +1,77 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / [utils/interfaces](../README.md) / InterfaceTagData + +# Interface: InterfaceTagData + +Defined in: [src/utils/interfaces.ts:222](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L222) + +## Properties + +### \_id + +> **\_id**: `string` + +Defined in: [src/utils/interfaces.ts:223](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L223) + +*** + +### ancestorTags + +> **ancestorTags**: `object`[] + +Defined in: [src/utils/interfaces.ts:232](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L232) + +#### \_id + +> **\_id**: `string` + +#### name + +> **name**: `string` + +*** + +### childTags + +> **childTags**: `object` + +Defined in: [src/utils/interfaces.ts:229](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L229) + +#### totalCount + +> **totalCount**: `number` + +*** + +### name + +> **name**: `string` + +Defined in: [src/utils/interfaces.ts:224](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L224) + +*** + +### parentTag + +> **parentTag**: `object` + +Defined in: [src/utils/interfaces.ts:225](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L225) + +#### \_id + +> **\_id**: `string` + +*** + +### usersAssignedTo + +> **usersAssignedTo**: `object` + +Defined in: [src/utils/interfaces.ts:226](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L226) + +#### totalCount + +> **totalCount**: `number` diff --git a/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceUserCampaign.md b/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceUserCampaign.md new file mode 100644 index 0000000000..e75249ee39 --- /dev/null +++ b/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceUserCampaign.md @@ -0,0 +1,57 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / [utils/interfaces](../README.md) / InterfaceUserCampaign + +# Interface: InterfaceUserCampaign + +Defined in: [src/utils/interfaces.ts:332](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L332) + +## Properties + +### \_id + +> **\_id**: `string` + +Defined in: [src/utils/interfaces.ts:333](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L333) + +*** + +### currency + +> **currency**: `string` + +Defined in: [src/utils/interfaces.ts:338](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L338) + +*** + +### endDate + +> **endDate**: `Date` + +Defined in: [src/utils/interfaces.ts:337](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L337) + +*** + +### fundingGoal + +> **fundingGoal**: `number` + +Defined in: [src/utils/interfaces.ts:335](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L335) + +*** + +### name + +> **name**: `string` + +Defined in: [src/utils/interfaces.ts:334](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L334) + +*** + +### startDate + +> **startDate**: `Date` + +Defined in: [src/utils/interfaces.ts:336](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L336) diff --git a/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceUserEvents.md b/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceUserEvents.md new file mode 100644 index 0000000000..fcf95fc82f --- /dev/null +++ b/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceUserEvents.md @@ -0,0 +1,181 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / [utils/interfaces](../README.md) / InterfaceUserEvents + +# Interface: InterfaceUserEvents + +Defined in: [src/utils/interfaces.ts:656](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L656) + +## Extends + +- [`InterfaceBaseEvent`](InterfaceBaseEvent.md) + +## Properties + +### \_id + +> **\_id**: `string` + +Defined in: [src/utils/interfaces.ts:19](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L19) + +#### Inherited from + +[`InterfaceBaseEvent`](InterfaceBaseEvent.md).[`_id`](InterfaceBaseEvent.md#_id) + +*** + +### allDay + +> **allDay**: `boolean` + +Defined in: [src/utils/interfaces.ts:27](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L27) + +#### Inherited from + +[`InterfaceBaseEvent`](InterfaceBaseEvent.md).[`allDay`](InterfaceBaseEvent.md#allday) + +*** + +### description + +> **description**: `string` + +Defined in: [src/utils/interfaces.ts:21](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L21) + +#### Inherited from + +[`InterfaceBaseEvent`](InterfaceBaseEvent.md).[`description`](InterfaceBaseEvent.md#description) + +*** + +### endDate + +> **endDate**: `string` + +Defined in: [src/utils/interfaces.ts:23](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L23) + +#### Inherited from + +[`InterfaceBaseEvent`](InterfaceBaseEvent.md).[`endDate`](InterfaceBaseEvent.md#enddate) + +*** + +### endTime + +> **endTime**: `string` + +Defined in: [src/utils/interfaces.ts:26](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L26) + +#### Inherited from + +[`InterfaceBaseEvent`](InterfaceBaseEvent.md).[`endTime`](InterfaceBaseEvent.md#endtime) + +*** + +### location + +> **location**: `string` + +Defined in: [src/utils/interfaces.ts:24](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L24) + +#### Inherited from + +[`InterfaceBaseEvent`](InterfaceBaseEvent.md).[`location`](InterfaceBaseEvent.md#location) + +*** + +### recurring + +> **recurring**: `boolean` + +Defined in: [src/utils/interfaces.ts:28](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L28) + +#### Inherited from + +[`InterfaceBaseEvent`](InterfaceBaseEvent.md).[`recurring`](InterfaceBaseEvent.md#recurring) + +*** + +### startDate + +> **startDate**: `string` + +Defined in: [src/utils/interfaces.ts:22](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L22) + +#### Inherited from + +[`InterfaceBaseEvent`](InterfaceBaseEvent.md).[`startDate`](InterfaceBaseEvent.md#startdate) + +*** + +### startTime + +> **startTime**: `string` + +Defined in: [src/utils/interfaces.ts:25](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L25) + +#### Inherited from + +[`InterfaceBaseEvent`](InterfaceBaseEvent.md).[`startTime`](InterfaceBaseEvent.md#starttime) + +*** + +### title + +> **title**: `string` + +Defined in: [src/utils/interfaces.ts:20](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L20) + +#### Inherited from + +[`InterfaceBaseEvent`](InterfaceBaseEvent.md).[`title`](InterfaceBaseEvent.md#title) + +*** + +### volunteerGroups + +> **volunteerGroups**: `object`[] + +Defined in: [src/utils/interfaces.ts:657](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L657) + +#### \_id + +> **\_id**: `string` + +#### description + +> **description**: `string` + +#### name + +> **name**: `string` + +#### volunteers + +> **volunteers**: `object`[] + +#### volunteersRequired + +> **volunteersRequired**: `number` + +*** + +### volunteers + +> **volunteers**: `object`[] + +Defined in: [src/utils/interfaces.ts:664](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L664) + +#### \_id + +> **\_id**: `string` + +#### user + +> **user**: `object` + +##### user.\_id + +> **\_id**: `string` diff --git a/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceUserInfo.md b/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceUserInfo.md new file mode 100644 index 0000000000..26ca712cc3 --- /dev/null +++ b/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceUserInfo.md @@ -0,0 +1,41 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / [utils/interfaces](../README.md) / InterfaceUserInfo + +# Interface: InterfaceUserInfo + +Defined in: [src/utils/interfaces.ts:10](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L10) + +## Properties + +### \_id + +> **\_id**: `string` + +Defined in: [src/utils/interfaces.ts:11](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L11) + +*** + +### firstName + +> **firstName**: `string` + +Defined in: [src/utils/interfaces.ts:12](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L12) + +*** + +### image? + +> `optional` **image**: `string` + +Defined in: [src/utils/interfaces.ts:14](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L14) + +*** + +### lastName + +> **lastName**: `string` + +Defined in: [src/utils/interfaces.ts:13](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L13) diff --git a/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceUserType.md b/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceUserType.md new file mode 100644 index 0000000000..c2e31ce14a --- /dev/null +++ b/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceUserType.md @@ -0,0 +1,33 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / [utils/interfaces](../README.md) / InterfaceUserType + +# Interface: InterfaceUserType + +Defined in: [src/utils/interfaces.ts:1](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L1) + +## Properties + +### user + +> **user**: `object` + +Defined in: [src/utils/interfaces.ts:2](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L2) + +#### email + +> **email**: `string` + +#### firstName + +> **firstName**: `string` + +#### image + +> **image**: `string` + +#### lastName + +> **lastName**: `string` diff --git a/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceVolunteerGroupInfo.md b/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceVolunteerGroupInfo.md new file mode 100644 index 0000000000..714b14505e --- /dev/null +++ b/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceVolunteerGroupInfo.md @@ -0,0 +1,125 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / [utils/interfaces](../README.md) / InterfaceVolunteerGroupInfo + +# Interface: InterfaceVolunteerGroupInfo + +Defined in: [src/utils/interfaces.ts:622](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L622) + +## Properties + +### \_id + +> **\_id**: `string` + +Defined in: [src/utils/interfaces.ts:623](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L623) + +*** + +### assignments + +> **assignments**: `object`[] + +Defined in: [src/utils/interfaces.ts:637](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L637) + +#### \_id + +> **\_id**: `string` + +#### actionItemCategory + +> **actionItemCategory**: `object` + +##### actionItemCategory.\_id + +> **\_id**: `string` + +##### actionItemCategory.name + +> **name**: `string` + +#### allottedHours + +> **allottedHours**: `number` + +#### isCompleted + +> **isCompleted**: `boolean` + +*** + +### createdAt + +> **createdAt**: `string` + +Defined in: [src/utils/interfaces.ts:630](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L630) + +*** + +### creator + +> **creator**: [`InterfaceUserInfo`](InterfaceUserInfo.md) + +Defined in: [src/utils/interfaces.ts:631](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L631) + +*** + +### description + +> **description**: `string` + +Defined in: [src/utils/interfaces.ts:625](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L625) + +*** + +### event + +> **event**: `object` + +Defined in: [src/utils/interfaces.ts:626](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L626) + +#### \_id + +> **\_id**: `string` + +*** + +### leader + +> **leader**: [`InterfaceUserInfo`](InterfaceUserInfo.md) + +Defined in: [src/utils/interfaces.ts:632](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L632) + +*** + +### name + +> **name**: `string` + +Defined in: [src/utils/interfaces.ts:624](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L624) + +*** + +### volunteers + +> **volunteers**: `object`[] + +Defined in: [src/utils/interfaces.ts:633](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L633) + +#### \_id + +> **\_id**: `string` + +#### user + +> **user**: [`InterfaceUserInfo`](InterfaceUserInfo.md) + +*** + +### volunteersRequired + +> **volunteersRequired**: `number` + +Defined in: [src/utils/interfaces.ts:629](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L629) diff --git a/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceVolunteerMembership.md b/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceVolunteerMembership.md new file mode 100644 index 0000000000..addd1b68ee --- /dev/null +++ b/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceVolunteerMembership.md @@ -0,0 +1,85 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / [utils/interfaces](../README.md) / InterfaceVolunteerMembership + +# Interface: InterfaceVolunteerMembership + +Defined in: [src/utils/interfaces.ts:672](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L672) + +## Properties + +### \_id + +> **\_id**: `string` + +Defined in: [src/utils/interfaces.ts:673](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L673) + +*** + +### createdAt + +> **createdAt**: `string` + +Defined in: [src/utils/interfaces.ts:675](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L675) + +*** + +### event + +> **event**: `object` + +Defined in: [src/utils/interfaces.ts:676](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L676) + +#### \_id + +> **\_id**: `string` + +#### startDate + +> **startDate**: `string` + +#### title + +> **title**: `string` + +*** + +### group + +> **group**: `object` + +Defined in: [src/utils/interfaces.ts:685](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L685) + +#### \_id + +> **\_id**: `string` + +#### name + +> **name**: `string` + +*** + +### status + +> **status**: `string` + +Defined in: [src/utils/interfaces.ts:674](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L674) + +*** + +### volunteer + +> **volunteer**: `object` + +Defined in: [src/utils/interfaces.ts:681](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L681) + +#### \_id + +> **\_id**: `string` + +#### user + +> **user**: [`InterfaceUserInfo`](InterfaceUserInfo.md) diff --git a/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceVolunteerRank.md b/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceVolunteerRank.md new file mode 100644 index 0000000000..76d34af664 --- /dev/null +++ b/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceVolunteerRank.md @@ -0,0 +1,53 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / [utils/interfaces](../README.md) / InterfaceVolunteerRank + +# Interface: InterfaceVolunteerRank + +Defined in: [src/utils/interfaces.ts:691](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L691) + +## Properties + +### hoursVolunteered + +> **hoursVolunteered**: `number` + +Defined in: [src/utils/interfaces.ts:693](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L693) + +*** + +### rank + +> **rank**: `number` + +Defined in: [src/utils/interfaces.ts:692](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L692) + +*** + +### user + +> **user**: `object` + +Defined in: [src/utils/interfaces.ts:694](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L694) + +#### \_id + +> **\_id**: `string` + +#### email + +> **email**: `string` + +#### firstName + +> **firstName**: `string` + +#### image + +> **image**: `string` + +#### lastName + +> **lastName**: `string` diff --git a/docs/docs/auto-docs/utils/languages/README.md b/docs/docs/auto-docs/utils/languages/README.md new file mode 100644 index 0000000000..0cd8ec1f27 --- /dev/null +++ b/docs/docs/auto-docs/utils/languages/README.md @@ -0,0 +1,12 @@ +[**talawa-admin**](../../README.md) + +*** + +[talawa-admin](../../modules.md) / utils/languages + +# utils/languages + +## Variables + +- [languageArray](variables/languageArray.md) +- [languages](variables/languages.md) diff --git a/docs/docs/auto-docs/utils/languages/variables/languageArray.md b/docs/docs/auto-docs/utils/languages/variables/languageArray.md new file mode 100644 index 0000000000..a48f985e01 --- /dev/null +++ b/docs/docs/auto-docs/utils/languages/variables/languageArray.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / [utils/languages](../README.md) / languageArray + +# Variable: languageArray + +> `const` **languageArray**: `string`[] + +Defined in: [src/utils/languages.ts:1](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/languages.ts#L1) diff --git a/docs/docs/auto-docs/utils/languages/variables/languages.md b/docs/docs/auto-docs/utils/languages/variables/languages.md new file mode 100644 index 0000000000..03ff2de05c --- /dev/null +++ b/docs/docs/auto-docs/utils/languages/variables/languages.md @@ -0,0 +1,25 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / [utils/languages](../README.md) / languages + +# Variable: languages + +> `const` **languages**: `object`[] + +Defined in: [src/utils/languages.ts:3](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/languages.ts#L3) + +## Type declaration + +### code + +> **code**: `string` = `'en'` + +### country\_code + +> **country\_code**: `string` = `'gb'` + +### name + +> **name**: `string` = `'English'` diff --git a/docs/docs/auto-docs/utils/linkValidator/README.md b/docs/docs/auto-docs/utils/linkValidator/README.md new file mode 100644 index 0000000000..873411eb0c --- /dev/null +++ b/docs/docs/auto-docs/utils/linkValidator/README.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../README.md) + +*** + +[talawa-admin](../../modules.md) / utils/linkValidator + +# utils/linkValidator + +## Functions + +- [isValidLink](functions/isValidLink.md) diff --git a/docs/docs/auto-docs/utils/linkValidator/functions/isValidLink.md b/docs/docs/auto-docs/utils/linkValidator/functions/isValidLink.md new file mode 100644 index 0000000000..9cfe71ad9b --- /dev/null +++ b/docs/docs/auto-docs/utils/linkValidator/functions/isValidLink.md @@ -0,0 +1,21 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / [utils/linkValidator](../README.md) / isValidLink + +# Function: isValidLink() + +> **isValidLink**(`link`): `boolean` + +Defined in: [src/utils/linkValidator.ts:1](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/linkValidator.ts#L1) + +## Parameters + +### link + +`string` + +## Returns + +`boolean` diff --git a/docs/docs/auto-docs/utils/organizationTagsUtils/README.md b/docs/docs/auto-docs/utils/organizationTagsUtils/README.md new file mode 100644 index 0000000000..5608ca2592 --- /dev/null +++ b/docs/docs/auto-docs/utils/organizationTagsUtils/README.md @@ -0,0 +1,24 @@ +[**talawa-admin**](../../README.md) + +*** + +[talawa-admin](../../modules.md) / utils/organizationTagsUtils + +# utils/organizationTagsUtils + +## Interfaces + +- [InterfaceOrganizationSubTagsQuery](interfaces/InterfaceOrganizationSubTagsQuery.md) +- [InterfaceOrganizationTagsQuery](interfaces/InterfaceOrganizationTagsQuery.md) +- [InterfaceTagAssignedMembersQuery](interfaces/InterfaceTagAssignedMembersQuery.md) +- [InterfaceTagUsersToAssignToQuery](interfaces/InterfaceTagUsersToAssignToQuery.md) + +## Type Aliases + +- [SortedByType](type-aliases/SortedByType.md) +- [TagActionType](type-aliases/TagActionType.md) + +## Variables + +- [dataGridStyle](variables/dataGridStyle.md) +- [TAGS\_QUERY\_DATA\_CHUNK\_SIZE](variables/TAGS_QUERY_DATA_CHUNK_SIZE.md) diff --git a/docs/docs/auto-docs/utils/organizationTagsUtils/interfaces/InterfaceOrganizationSubTagsQuery.md b/docs/docs/auto-docs/utils/organizationTagsUtils/interfaces/InterfaceOrganizationSubTagsQuery.md new file mode 100644 index 0000000000..1148162fea --- /dev/null +++ b/docs/docs/auto-docs/utils/organizationTagsUtils/interfaces/InterfaceOrganizationSubTagsQuery.md @@ -0,0 +1,83 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / [utils/organizationTagsUtils](../README.md) / InterfaceOrganizationSubTagsQuery + +# Interface: InterfaceOrganizationSubTagsQuery + +Defined in: [src/utils/organizationTagsUtils.ts:83](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/organizationTagsUtils.ts#L83) + +## Extends + +- `InterfaceBaseQueryResult` + +## Properties + +### data? + +> `optional` **data**: `object` + +Defined in: [src/utils/organizationTagsUtils.ts:85](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/organizationTagsUtils.ts#L85) + +#### getChildTags + +> **getChildTags**: [`InterfaceQueryUserTagChildTags`](../../interfaces/interfaces/InterfaceQueryUserTagChildTags.md) + +*** + +### error? + +> `optional` **error**: `ApolloError` + +Defined in: [src/utils/organizationTagsUtils.ts:54](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/organizationTagsUtils.ts#L54) + +#### Inherited from + +`InterfaceBaseQueryResult.error` + +*** + +### fetchMore() + +> **fetchMore**: (`options`) => `void` + +Defined in: [src/utils/organizationTagsUtils.ts:88](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/organizationTagsUtils.ts#L88) + +#### Parameters + +##### options + +`InterfaceBaseFetchMoreOptions`\<\{ `getChildTags`: [`InterfaceQueryUserTagChildTags`](../../interfaces/interfaces/InterfaceQueryUserTagChildTags.md); \}\> + +#### Returns + +`void` + +*** + +### loading + +> **loading**: `boolean` + +Defined in: [src/utils/organizationTagsUtils.ts:53](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/organizationTagsUtils.ts#L53) + +#### Inherited from + +`InterfaceBaseQueryResult.loading` + +*** + +### refetch()? + +> `optional` **refetch**: () => `void` + +Defined in: [src/utils/organizationTagsUtils.ts:55](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/organizationTagsUtils.ts#L55) + +#### Returns + +`void` + +#### Inherited from + +`InterfaceBaseQueryResult.refetch` diff --git a/docs/docs/auto-docs/utils/organizationTagsUtils/interfaces/InterfaceOrganizationTagsQuery.md b/docs/docs/auto-docs/utils/organizationTagsUtils/interfaces/InterfaceOrganizationTagsQuery.md new file mode 100644 index 0000000000..4d7682b8be --- /dev/null +++ b/docs/docs/auto-docs/utils/organizationTagsUtils/interfaces/InterfaceOrganizationTagsQuery.md @@ -0,0 +1,83 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / [utils/organizationTagsUtils](../README.md) / InterfaceOrganizationTagsQuery + +# Interface: InterfaceOrganizationTagsQuery + +Defined in: [src/utils/organizationTagsUtils.ts:71](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/organizationTagsUtils.ts#L71) + +## Extends + +- `InterfaceBaseQueryResult` + +## Properties + +### data? + +> `optional` **data**: `object` + +Defined in: [src/utils/organizationTagsUtils.ts:73](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/organizationTagsUtils.ts#L73) + +#### organizations + +> **organizations**: [`InterfaceQueryOrganizationUserTags`](../../interfaces/interfaces/InterfaceQueryOrganizationUserTags.md)[] + +*** + +### error? + +> `optional` **error**: `ApolloError` + +Defined in: [src/utils/organizationTagsUtils.ts:54](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/organizationTagsUtils.ts#L54) + +#### Inherited from + +`InterfaceBaseQueryResult.error` + +*** + +### fetchMore() + +> **fetchMore**: (`options`) => `void` + +Defined in: [src/utils/organizationTagsUtils.ts:76](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/organizationTagsUtils.ts#L76) + +#### Parameters + +##### options + +`InterfaceBaseFetchMoreOptions`\<\{ `organizations`: [`InterfaceQueryOrganizationUserTags`](../../interfaces/interfaces/InterfaceQueryOrganizationUserTags.md)[]; \}\> + +#### Returns + +`void` + +*** + +### loading + +> **loading**: `boolean` + +Defined in: [src/utils/organizationTagsUtils.ts:53](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/organizationTagsUtils.ts#L53) + +#### Inherited from + +`InterfaceBaseQueryResult.loading` + +*** + +### refetch()? + +> `optional` **refetch**: () => `void` + +Defined in: [src/utils/organizationTagsUtils.ts:55](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/organizationTagsUtils.ts#L55) + +#### Returns + +`void` + +#### Inherited from + +`InterfaceBaseQueryResult.refetch` diff --git a/docs/docs/auto-docs/utils/organizationTagsUtils/interfaces/InterfaceTagAssignedMembersQuery.md b/docs/docs/auto-docs/utils/organizationTagsUtils/interfaces/InterfaceTagAssignedMembersQuery.md new file mode 100644 index 0000000000..f78ea94f5a --- /dev/null +++ b/docs/docs/auto-docs/utils/organizationTagsUtils/interfaces/InterfaceTagAssignedMembersQuery.md @@ -0,0 +1,83 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / [utils/organizationTagsUtils](../README.md) / InterfaceTagAssignedMembersQuery + +# Interface: InterfaceTagAssignedMembersQuery + +Defined in: [src/utils/organizationTagsUtils.ts:95](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/organizationTagsUtils.ts#L95) + +## Extends + +- `InterfaceBaseQueryResult` + +## Properties + +### data? + +> `optional` **data**: `object` + +Defined in: [src/utils/organizationTagsUtils.ts:97](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/organizationTagsUtils.ts#L97) + +#### getAssignedUsers + +> **getAssignedUsers**: [`InterfaceQueryUserTagsAssignedMembers`](../../interfaces/interfaces/InterfaceQueryUserTagsAssignedMembers.md) + +*** + +### error? + +> `optional` **error**: `ApolloError` + +Defined in: [src/utils/organizationTagsUtils.ts:54](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/organizationTagsUtils.ts#L54) + +#### Inherited from + +`InterfaceBaseQueryResult.error` + +*** + +### fetchMore() + +> **fetchMore**: (`options`) => `void` + +Defined in: [src/utils/organizationTagsUtils.ts:100](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/organizationTagsUtils.ts#L100) + +#### Parameters + +##### options + +`InterfaceBaseFetchMoreOptions`\<\{ `getAssignedUsers`: [`InterfaceQueryUserTagsAssignedMembers`](../../interfaces/interfaces/InterfaceQueryUserTagsAssignedMembers.md); \}\> + +#### Returns + +`void` + +*** + +### loading + +> **loading**: `boolean` + +Defined in: [src/utils/organizationTagsUtils.ts:53](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/organizationTagsUtils.ts#L53) + +#### Inherited from + +`InterfaceBaseQueryResult.loading` + +*** + +### refetch()? + +> `optional` **refetch**: () => `void` + +Defined in: [src/utils/organizationTagsUtils.ts:55](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/organizationTagsUtils.ts#L55) + +#### Returns + +`void` + +#### Inherited from + +`InterfaceBaseQueryResult.refetch` diff --git a/docs/docs/auto-docs/utils/organizationTagsUtils/interfaces/InterfaceTagUsersToAssignToQuery.md b/docs/docs/auto-docs/utils/organizationTagsUtils/interfaces/InterfaceTagUsersToAssignToQuery.md new file mode 100644 index 0000000000..f91cfa726c --- /dev/null +++ b/docs/docs/auto-docs/utils/organizationTagsUtils/interfaces/InterfaceTagUsersToAssignToQuery.md @@ -0,0 +1,83 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / [utils/organizationTagsUtils](../README.md) / InterfaceTagUsersToAssignToQuery + +# Interface: InterfaceTagUsersToAssignToQuery + +Defined in: [src/utils/organizationTagsUtils.ts:107](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/organizationTagsUtils.ts#L107) + +## Extends + +- `InterfaceBaseQueryResult` + +## Properties + +### data? + +> `optional` **data**: `object` + +Defined in: [src/utils/organizationTagsUtils.ts:109](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/organizationTagsUtils.ts#L109) + +#### getUsersToAssignTo + +> **getUsersToAssignTo**: [`InterfaceQueryUserTagsMembersToAssignTo`](../../interfaces/interfaces/InterfaceQueryUserTagsMembersToAssignTo.md) + +*** + +### error? + +> `optional` **error**: `ApolloError` + +Defined in: [src/utils/organizationTagsUtils.ts:54](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/organizationTagsUtils.ts#L54) + +#### Inherited from + +`InterfaceBaseQueryResult.error` + +*** + +### fetchMore() + +> **fetchMore**: (`options`) => `void` + +Defined in: [src/utils/organizationTagsUtils.ts:112](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/organizationTagsUtils.ts#L112) + +#### Parameters + +##### options + +`InterfaceBaseFetchMoreOptions`\<\{ `getUsersToAssignTo`: [`InterfaceQueryUserTagsMembersToAssignTo`](../../interfaces/interfaces/InterfaceQueryUserTagsMembersToAssignTo.md); \}\> + +#### Returns + +`void` + +*** + +### loading + +> **loading**: `boolean` + +Defined in: [src/utils/organizationTagsUtils.ts:53](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/organizationTagsUtils.ts#L53) + +#### Inherited from + +`InterfaceBaseQueryResult.loading` + +*** + +### refetch()? + +> `optional` **refetch**: () => `void` + +Defined in: [src/utils/organizationTagsUtils.ts:55](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/organizationTagsUtils.ts#L55) + +#### Returns + +`void` + +#### Inherited from + +`InterfaceBaseQueryResult.refetch` diff --git a/docs/docs/auto-docs/utils/organizationTagsUtils/type-aliases/SortedByType.md b/docs/docs/auto-docs/utils/organizationTagsUtils/type-aliases/SortedByType.md new file mode 100644 index 0000000000..c9e35d36eb --- /dev/null +++ b/docs/docs/auto-docs/utils/organizationTagsUtils/type-aliases/SortedByType.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / [utils/organizationTagsUtils](../README.md) / SortedByType + +# Type Alias: SortedByType + +> **SortedByType**: `"ASCENDING"` \| `"DESCENDING"` + +Defined in: [src/utils/organizationTagsUtils.ts:48](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/organizationTagsUtils.ts#L48) diff --git a/docs/docs/auto-docs/utils/organizationTagsUtils/type-aliases/TagActionType.md b/docs/docs/auto-docs/utils/organizationTagsUtils/type-aliases/TagActionType.md new file mode 100644 index 0000000000..e163be36b4 --- /dev/null +++ b/docs/docs/auto-docs/utils/organizationTagsUtils/type-aliases/TagActionType.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / [utils/organizationTagsUtils](../README.md) / TagActionType + +# Type Alias: TagActionType + +> **TagActionType**: `"assignToTags"` \| `"removeFromTags"` + +Defined in: [src/utils/organizationTagsUtils.ts:45](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/organizationTagsUtils.ts#L45) diff --git a/docs/docs/auto-docs/utils/organizationTagsUtils/variables/TAGS_QUERY_DATA_CHUNK_SIZE.md b/docs/docs/auto-docs/utils/organizationTagsUtils/variables/TAGS_QUERY_DATA_CHUNK_SIZE.md new file mode 100644 index 0000000000..f6fbd7bc42 --- /dev/null +++ b/docs/docs/auto-docs/utils/organizationTagsUtils/variables/TAGS_QUERY_DATA_CHUNK_SIZE.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / [utils/organizationTagsUtils](../README.md) / TAGS\_QUERY\_DATA\_CHUNK\_SIZE + +# Variable: TAGS\_QUERY\_DATA\_CHUNK\_SIZE + +> `const` **TAGS\_QUERY\_DATA\_CHUNK\_SIZE**: `10` = `10` + +Defined in: [src/utils/organizationTagsUtils.ts:42](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/organizationTagsUtils.ts#L42) diff --git a/docs/docs/auto-docs/utils/organizationTagsUtils/variables/dataGridStyle.md b/docs/docs/auto-docs/utils/organizationTagsUtils/variables/dataGridStyle.md new file mode 100644 index 0000000000..64488a8307 --- /dev/null +++ b/docs/docs/auto-docs/utils/organizationTagsUtils/variables/dataGridStyle.md @@ -0,0 +1,85 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / [utils/organizationTagsUtils](../README.md) / dataGridStyle + +# Variable: dataGridStyle + +> `const` **dataGridStyle**: `object` + +Defined in: [src/utils/organizationTagsUtils.ts:12](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/organizationTagsUtils.ts#L12) + +## Type declaration + +#### & .MuiDataGrid-main + +> **MuiDataGrid-main**: `object` + +#### & .MuiDataGrid-main.borderRadius + +> **borderRadius**: `string` = `'0.1rem'` + +#### & .MuiDataGrid-root + +> **MuiDataGrid-root**: `object` + +#### & .MuiDataGrid-root.borderRadius + +> **borderRadius**: `string` = `'0.1rem'` + +#### & .MuiDataGrid-row:hover + +> **MuiDataGrid-row:hover**: `object` + +#### & .MuiDataGrid-row:hover.backgroundColor + +> **backgroundColor**: `string` = `'transparent'` + +#### & .MuiDataGrid-row.Mui-hovered + +> **Mui-hovered**: `object` + +#### & .MuiDataGrid-row.Mui-hovered.backgroundColor + +> **backgroundColor**: `string` = `'transparent'` + +#### & .MuiDataGrid-topContainer + +> **MuiDataGrid-topContainer**: `object` + +#### & .MuiDataGrid-topContainer.position + +> **position**: `string` = `'fixed'` + +#### & .MuiDataGrid-topContainer.top + +> **top**: `number` = `290` + +#### & .MuiDataGrid-topContainer.zIndex + +> **zIndex**: `number` = `1` + +#### & .MuiDataGrid-virtualScrollerContent + +> **MuiDataGrid-virtualScrollerContent**: `object` + +#### & .MuiDataGrid-virtualScrollerContent.marginTop + +> **marginTop**: `number` = `6.5` + +#### &.MuiDataGrid-root .MuiDataGrid-cell:focus-within + +> **MuiDataGrid-cell:focus-within**: `object` + +#### &.MuiDataGrid-root .MuiDataGrid-cell:focus-within.outline + +> **outline**: `string` = `'none !important'` + +#### &.MuiDataGrid-root .MuiDataGrid-columnHeader:focus-within + +> **MuiDataGrid-columnHeader:focus-within**: `object` + +#### &.MuiDataGrid-root .MuiDataGrid-columnHeader:focus-within.outline + +> **outline**: `string` = `'none'` diff --git a/docs/docs/auto-docs/utils/recurrenceUtils/README.md b/docs/docs/auto-docs/utils/recurrenceUtils/README.md new file mode 100644 index 0000000000..6b49ed3c40 --- /dev/null +++ b/docs/docs/auto-docs/utils/recurrenceUtils/README.md @@ -0,0 +1,163 @@ +[**talawa-admin**](../../README.md) + +*** + +[talawa-admin](../../modules.md) / utils/recurrenceUtils + +# utils/recurrenceUtils + +## References + +### allInstances + +Re-exports [allInstances](recurrenceConstants/variables/allInstances.md) + +*** + +### dayNames + +Re-exports [dayNames](recurrenceConstants/variables/dayNames.md) + +*** + +### Days + +Re-exports [Days](recurrenceConstants/variables/Days.md) + +*** + +### daysOptions + +Re-exports [daysOptions](recurrenceConstants/variables/daysOptions.md) + +*** + +### endsAfter + +Re-exports [endsAfter](recurrenceConstants/variables/endsAfter.md) + +*** + +### endsNever + +Re-exports [endsNever](recurrenceConstants/variables/endsNever.md) + +*** + +### endsOn + +Re-exports [endsOn](recurrenceConstants/variables/endsOn.md) + +*** + +### frequencies + +Re-exports [frequencies](recurrenceConstants/variables/frequencies.md) + +*** + +### Frequency + +Re-exports [Frequency](recurrenceTypes/enumerations/Frequency.md) + +*** + +### getRecurrenceRuleText + +Re-exports [getRecurrenceRuleText](recurrenceUtilityFunctions/functions/getRecurrenceRuleText.md) + +*** + +### getWeekDayOccurenceInMonth + +Re-exports [getWeekDayOccurenceInMonth](recurrenceUtilityFunctions/functions/getWeekDayOccurenceInMonth.md) + +*** + +### hasRecurrenceRuleChanged + +Re-exports [hasRecurrenceRuleChanged](recurrenceUtilityFunctions/functions/hasRecurrenceRuleChanged.md) + +*** + +### haveInstanceDatesChanged + +Re-exports [haveInstanceDatesChanged](recurrenceUtilityFunctions/functions/haveInstanceDatesChanged.md) + +*** + +### InterfaceRecurrenceRule + +Re-exports [InterfaceRecurrenceRule](recurrenceTypes/interfaces/InterfaceRecurrenceRule.md) + +*** + +### InterfaceRecurrenceRuleState + +Re-exports [InterfaceRecurrenceRuleState](recurrenceTypes/interfaces/InterfaceRecurrenceRuleState.md) + +*** + +### isLastOccurenceOfWeekDay + +Re-exports [isLastOccurenceOfWeekDay](recurrenceUtilityFunctions/functions/isLastOccurenceOfWeekDay.md) + +*** + +### mondayToFriday + +Re-exports [mondayToFriday](recurrenceConstants/variables/mondayToFriday.md) + +*** + +### monthNames + +Re-exports [monthNames](recurrenceConstants/variables/monthNames.md) + +*** + +### RecurrenceEndOption + +Re-exports [RecurrenceEndOption](recurrenceTypes/enumerations/RecurrenceEndOption.md) + +*** + +### recurrenceEndOptions + +Re-exports [recurrenceEndOptions](recurrenceConstants/variables/recurrenceEndOptions.md) + +*** + +### recurringEventMutationOptions + +Re-exports [recurringEventMutationOptions](recurrenceConstants/variables/recurringEventMutationOptions.md) + +*** + +### RecurringEventMutationType + +Re-exports [RecurringEventMutationType](recurrenceTypes/enumerations/RecurringEventMutationType.md) + +*** + +### thisAndFollowingInstances + +Re-exports [thisAndFollowingInstances](recurrenceConstants/variables/thisAndFollowingInstances.md) + +*** + +### thisInstance + +Re-exports [thisInstance](recurrenceConstants/variables/thisInstance.md) + +*** + +### weekDayOccurences + +Re-exports [weekDayOccurences](recurrenceConstants/variables/weekDayOccurences.md) + +*** + +### WeekDays + +Re-exports [WeekDays](recurrenceTypes/enumerations/WeekDays.md) diff --git a/docs/docs/auto-docs/utils/recurrenceUtils/recurrenceConstants/README.md b/docs/docs/auto-docs/utils/recurrenceUtils/recurrenceConstants/README.md new file mode 100644 index 0000000000..5f014f1c9c --- /dev/null +++ b/docs/docs/auto-docs/utils/recurrenceUtils/recurrenceConstants/README.md @@ -0,0 +1,25 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / utils/recurrenceUtils/recurrenceConstants + +# utils/recurrenceUtils/recurrenceConstants + +## Variables + +- [allInstances](variables/allInstances.md) +- [dayNames](variables/dayNames.md) +- [Days](variables/Days.md) +- [daysOptions](variables/daysOptions.md) +- [endsAfter](variables/endsAfter.md) +- [endsNever](variables/endsNever.md) +- [endsOn](variables/endsOn.md) +- [frequencies](variables/frequencies.md) +- [mondayToFriday](variables/mondayToFriday.md) +- [monthNames](variables/monthNames.md) +- [recurrenceEndOptions](variables/recurrenceEndOptions.md) +- [recurringEventMutationOptions](variables/recurringEventMutationOptions.md) +- [thisAndFollowingInstances](variables/thisAndFollowingInstances.md) +- [thisInstance](variables/thisInstance.md) +- [weekDayOccurences](variables/weekDayOccurences.md) diff --git a/docs/docs/auto-docs/utils/recurrenceUtils/recurrenceConstants/variables/Days.md b/docs/docs/auto-docs/utils/recurrenceUtils/recurrenceConstants/variables/Days.md new file mode 100644 index 0000000000..2636959da8 --- /dev/null +++ b/docs/docs/auto-docs/utils/recurrenceUtils/recurrenceConstants/variables/Days.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [utils/recurrenceUtils/recurrenceConstants](../README.md) / Days + +# Variable: Days + +> `const` **Days**: [`WeekDays`](../../recurrenceTypes/enumerations/WeekDays.md)[] + +Defined in: [src/utils/recurrenceUtils/recurrenceConstants.ts:24](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/recurrenceUtils/recurrenceConstants.ts#L24) diff --git a/docs/docs/auto-docs/utils/recurrenceUtils/recurrenceConstants/variables/allInstances.md b/docs/docs/auto-docs/utils/recurrenceUtils/recurrenceConstants/variables/allInstances.md new file mode 100644 index 0000000000..4cc48162fb --- /dev/null +++ b/docs/docs/auto-docs/utils/recurrenceUtils/recurrenceConstants/variables/allInstances.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [utils/recurrenceUtils/recurrenceConstants](../README.md) / allInstances + +# Variable: allInstances + +> `const` **allInstances**: [`allInstances`](../../recurrenceTypes/enumerations/RecurringEventMutationType.md#allinstances) = `RecurringEventMutationType.allInstances` + +Defined in: [src/utils/recurrenceUtils/recurrenceConstants.ts:46](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/recurrenceUtils/recurrenceConstants.ts#L46) diff --git a/docs/docs/auto-docs/utils/recurrenceUtils/recurrenceConstants/variables/dayNames.md b/docs/docs/auto-docs/utils/recurrenceUtils/recurrenceConstants/variables/dayNames.md new file mode 100644 index 0000000000..7c14efdf22 --- /dev/null +++ b/docs/docs/auto-docs/utils/recurrenceUtils/recurrenceConstants/variables/dayNames.md @@ -0,0 +1,41 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [utils/recurrenceUtils/recurrenceConstants](../README.md) / dayNames + +# Variable: dayNames + +> `const` **dayNames**: `object` + +Defined in: [src/utils/recurrenceUtils/recurrenceConstants.ts:60](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/recurrenceUtils/recurrenceConstants.ts#L60) + +## Type declaration + +### FRIDAY + +> **FRIDAY**: `string` = `'Friday'` + +### MONDAY + +> **MONDAY**: `string` = `'Monday'` + +### SATURDAY + +> **SATURDAY**: `string` = `'Saturday'` + +### SUNDAY + +> **SUNDAY**: `string` = `'Sunday'` + +### THURSDAY + +> **THURSDAY**: `string` = `'Thursday'` + +### TUESDAY + +> **TUESDAY**: `string` = `'Tuesday'` + +### WEDNESDAY + +> **WEDNESDAY**: `string` = `'Wednesday'` diff --git a/docs/docs/auto-docs/utils/recurrenceUtils/recurrenceConstants/variables/daysOptions.md b/docs/docs/auto-docs/utils/recurrenceUtils/recurrenceConstants/variables/daysOptions.md new file mode 100644 index 0000000000..b3e7d8e3d0 --- /dev/null +++ b/docs/docs/auto-docs/utils/recurrenceUtils/recurrenceConstants/variables/daysOptions.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [utils/recurrenceUtils/recurrenceConstants](../README.md) / daysOptions + +# Variable: daysOptions + +> `const` **daysOptions**: `string`[] + +Defined in: [src/utils/recurrenceUtils/recurrenceConstants.ts:21](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/recurrenceUtils/recurrenceConstants.ts#L21) diff --git a/docs/docs/auto-docs/utils/recurrenceUtils/recurrenceConstants/variables/endsAfter.md b/docs/docs/auto-docs/utils/recurrenceUtils/recurrenceConstants/variables/endsAfter.md new file mode 100644 index 0000000000..3b5a66cf25 --- /dev/null +++ b/docs/docs/auto-docs/utils/recurrenceUtils/recurrenceConstants/variables/endsAfter.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [utils/recurrenceUtils/recurrenceConstants](../README.md) / endsAfter + +# Variable: endsAfter + +> `const` **endsAfter**: [`after`](../../recurrenceTypes/enumerations/RecurrenceEndOption.md#after) = `RecurrenceEndOption.after` + +Defined in: [src/utils/recurrenceUtils/recurrenceConstants.ts:37](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/recurrenceUtils/recurrenceConstants.ts#L37) diff --git a/docs/docs/auto-docs/utils/recurrenceUtils/recurrenceConstants/variables/endsNever.md b/docs/docs/auto-docs/utils/recurrenceUtils/recurrenceConstants/variables/endsNever.md new file mode 100644 index 0000000000..c812f7f963 --- /dev/null +++ b/docs/docs/auto-docs/utils/recurrenceUtils/recurrenceConstants/variables/endsNever.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [utils/recurrenceUtils/recurrenceConstants](../README.md) / endsNever + +# Variable: endsNever + +> `const` **endsNever**: [`never`](../../recurrenceTypes/enumerations/RecurrenceEndOption.md#never) = `RecurrenceEndOption.never` + +Defined in: [src/utils/recurrenceUtils/recurrenceConstants.ts:35](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/recurrenceUtils/recurrenceConstants.ts#L35) diff --git a/docs/docs/auto-docs/utils/recurrenceUtils/recurrenceConstants/variables/endsOn.md b/docs/docs/auto-docs/utils/recurrenceUtils/recurrenceConstants/variables/endsOn.md new file mode 100644 index 0000000000..f635cd1b99 --- /dev/null +++ b/docs/docs/auto-docs/utils/recurrenceUtils/recurrenceConstants/variables/endsOn.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [utils/recurrenceUtils/recurrenceConstants](../README.md) / endsOn + +# Variable: endsOn + +> `const` **endsOn**: [`on`](../../recurrenceTypes/enumerations/RecurrenceEndOption.md#on) = `RecurrenceEndOption.on` + +Defined in: [src/utils/recurrenceUtils/recurrenceConstants.ts:36](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/recurrenceUtils/recurrenceConstants.ts#L36) diff --git a/docs/docs/auto-docs/utils/recurrenceUtils/recurrenceConstants/variables/frequencies.md b/docs/docs/auto-docs/utils/recurrenceUtils/recurrenceConstants/variables/frequencies.md new file mode 100644 index 0000000000..2bb70643bc --- /dev/null +++ b/docs/docs/auto-docs/utils/recurrenceUtils/recurrenceConstants/variables/frequencies.md @@ -0,0 +1,29 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [utils/recurrenceUtils/recurrenceConstants](../README.md) / frequencies + +# Variable: frequencies + +> `const` **frequencies**: `object` + +Defined in: [src/utils/recurrenceUtils/recurrenceConstants.ts:13](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/recurrenceUtils/recurrenceConstants.ts#L13) + +## Type declaration + +### DAILY + +> **DAILY**: `string` = `'Day'` + +### MONTHLY + +> **MONTHLY**: `string` = `'Month'` + +### WEEKLY + +> **WEEKLY**: `string` = `'Week'` + +### YEARLY + +> **YEARLY**: `string` = `'Year'` diff --git a/docs/docs/auto-docs/utils/recurrenceUtils/recurrenceConstants/variables/mondayToFriday.md b/docs/docs/auto-docs/utils/recurrenceUtils/recurrenceConstants/variables/mondayToFriday.md new file mode 100644 index 0000000000..6ca3580662 --- /dev/null +++ b/docs/docs/auto-docs/utils/recurrenceUtils/recurrenceConstants/variables/mondayToFriday.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [utils/recurrenceUtils/recurrenceConstants](../README.md) / mondayToFriday + +# Variable: mondayToFriday + +> `const` **mondayToFriday**: ([`MONDAY`](../../recurrenceTypes/enumerations/WeekDays.md#monday) \| [`TUESDAY`](../../recurrenceTypes/enumerations/WeekDays.md#tuesday) \| [`WEDNESDAY`](../../recurrenceTypes/enumerations/WeekDays.md#wednesday) \| [`THURSDAY`](../../recurrenceTypes/enumerations/WeekDays.md#thursday) \| [`FRIDAY`](../../recurrenceTypes/enumerations/WeekDays.md#friday))[] + +Defined in: [src/utils/recurrenceUtils/recurrenceConstants.ts:55](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/recurrenceUtils/recurrenceConstants.ts#L55) diff --git a/docs/docs/auto-docs/utils/recurrenceUtils/recurrenceConstants/variables/monthNames.md b/docs/docs/auto-docs/utils/recurrenceUtils/recurrenceConstants/variables/monthNames.md new file mode 100644 index 0000000000..a860f7f8bc --- /dev/null +++ b/docs/docs/auto-docs/utils/recurrenceUtils/recurrenceConstants/variables/monthNames.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [utils/recurrenceUtils/recurrenceConstants](../README.md) / monthNames + +# Variable: monthNames + +> `const` **monthNames**: `string`[] + +Defined in: [src/utils/recurrenceUtils/recurrenceConstants.ts:71](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/recurrenceUtils/recurrenceConstants.ts#L71) diff --git a/docs/docs/auto-docs/utils/recurrenceUtils/recurrenceConstants/variables/recurrenceEndOptions.md b/docs/docs/auto-docs/utils/recurrenceUtils/recurrenceConstants/variables/recurrenceEndOptions.md new file mode 100644 index 0000000000..1847cbf02b --- /dev/null +++ b/docs/docs/auto-docs/utils/recurrenceUtils/recurrenceConstants/variables/recurrenceEndOptions.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [utils/recurrenceUtils/recurrenceConstants](../README.md) / recurrenceEndOptions + +# Variable: recurrenceEndOptions + +> `const` **recurrenceEndOptions**: [`RecurrenceEndOption`](../../recurrenceTypes/enumerations/RecurrenceEndOption.md)[] + +Defined in: [src/utils/recurrenceUtils/recurrenceConstants.ts:40](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/recurrenceUtils/recurrenceConstants.ts#L40) diff --git a/docs/docs/auto-docs/utils/recurrenceUtils/recurrenceConstants/variables/recurringEventMutationOptions.md b/docs/docs/auto-docs/utils/recurrenceUtils/recurrenceConstants/variables/recurringEventMutationOptions.md new file mode 100644 index 0000000000..5e42a3ae47 --- /dev/null +++ b/docs/docs/auto-docs/utils/recurrenceUtils/recurrenceConstants/variables/recurringEventMutationOptions.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [utils/recurrenceUtils/recurrenceConstants](../README.md) / recurringEventMutationOptions + +# Variable: recurringEventMutationOptions + +> `const` **recurringEventMutationOptions**: [`RecurringEventMutationType`](../../recurrenceTypes/enumerations/RecurringEventMutationType.md)[] + +Defined in: [src/utils/recurrenceUtils/recurrenceConstants.ts:48](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/recurrenceUtils/recurrenceConstants.ts#L48) diff --git a/docs/docs/auto-docs/utils/recurrenceUtils/recurrenceConstants/variables/thisAndFollowingInstances.md b/docs/docs/auto-docs/utils/recurrenceUtils/recurrenceConstants/variables/thisAndFollowingInstances.md new file mode 100644 index 0000000000..4e8b497475 --- /dev/null +++ b/docs/docs/auto-docs/utils/recurrenceUtils/recurrenceConstants/variables/thisAndFollowingInstances.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [utils/recurrenceUtils/recurrenceConstants](../README.md) / thisAndFollowingInstances + +# Variable: thisAndFollowingInstances + +> `const` **thisAndFollowingInstances**: [`thisAndFollowingInstances`](../../recurrenceTypes/enumerations/RecurringEventMutationType.md#thisandfollowinginstances) = `RecurringEventMutationType.thisAndFollowingInstances` + +Defined in: [src/utils/recurrenceUtils/recurrenceConstants.ts:44](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/recurrenceUtils/recurrenceConstants.ts#L44) diff --git a/docs/docs/auto-docs/utils/recurrenceUtils/recurrenceConstants/variables/thisInstance.md b/docs/docs/auto-docs/utils/recurrenceUtils/recurrenceConstants/variables/thisInstance.md new file mode 100644 index 0000000000..a1ebb58482 --- /dev/null +++ b/docs/docs/auto-docs/utils/recurrenceUtils/recurrenceConstants/variables/thisInstance.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [utils/recurrenceUtils/recurrenceConstants](../README.md) / thisInstance + +# Variable: thisInstance + +> `const` **thisInstance**: [`thisInstance`](../../recurrenceTypes/enumerations/RecurringEventMutationType.md#thisinstance) = `RecurringEventMutationType.thisInstance` + +Defined in: [src/utils/recurrenceUtils/recurrenceConstants.ts:43](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/recurrenceUtils/recurrenceConstants.ts#L43) diff --git a/docs/docs/auto-docs/utils/recurrenceUtils/recurrenceConstants/variables/weekDayOccurences.md b/docs/docs/auto-docs/utils/recurrenceUtils/recurrenceConstants/variables/weekDayOccurences.md new file mode 100644 index 0000000000..78de3d8a8d --- /dev/null +++ b/docs/docs/auto-docs/utils/recurrenceUtils/recurrenceConstants/variables/weekDayOccurences.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [utils/recurrenceUtils/recurrenceConstants](../README.md) / weekDayOccurences + +# Variable: weekDayOccurences + +> `const` **weekDayOccurences**: `string`[] + +Defined in: [src/utils/recurrenceUtils/recurrenceConstants.ts:87](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/recurrenceUtils/recurrenceConstants.ts#L87) diff --git a/docs/docs/auto-docs/utils/recurrenceUtils/recurrenceTypes/README.md b/docs/docs/auto-docs/utils/recurrenceUtils/recurrenceTypes/README.md new file mode 100644 index 0000000000..9e054c6133 --- /dev/null +++ b/docs/docs/auto-docs/utils/recurrenceUtils/recurrenceTypes/README.md @@ -0,0 +1,19 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / utils/recurrenceUtils/recurrenceTypes + +# utils/recurrenceUtils/recurrenceTypes + +## Enumerations + +- [Frequency](enumerations/Frequency.md) +- [RecurrenceEndOption](enumerations/RecurrenceEndOption.md) +- [RecurringEventMutationType](enumerations/RecurringEventMutationType.md) +- [WeekDays](enumerations/WeekDays.md) + +## Interfaces + +- [InterfaceRecurrenceRule](interfaces/InterfaceRecurrenceRule.md) +- [InterfaceRecurrenceRuleState](interfaces/InterfaceRecurrenceRuleState.md) diff --git a/docs/docs/auto-docs/utils/recurrenceUtils/recurrenceTypes/enumerations/Frequency.md b/docs/docs/auto-docs/utils/recurrenceUtils/recurrenceTypes/enumerations/Frequency.md new file mode 100644 index 0000000000..46d340ce75 --- /dev/null +++ b/docs/docs/auto-docs/utils/recurrenceUtils/recurrenceTypes/enumerations/Frequency.md @@ -0,0 +1,41 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [utils/recurrenceUtils/recurrenceTypes](../README.md) / Frequency + +# Enumeration: Frequency + +Defined in: [src/utils/recurrenceUtils/recurrenceTypes.ts:28](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/recurrenceUtils/recurrenceTypes.ts#L28) + +## Enumeration Members + +### DAILY + +> **DAILY**: `"DAILY"` + +Defined in: [src/utils/recurrenceUtils/recurrenceTypes.ts:29](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/recurrenceUtils/recurrenceTypes.ts#L29) + +*** + +### MONTHLY + +> **MONTHLY**: `"MONTHLY"` + +Defined in: [src/utils/recurrenceUtils/recurrenceTypes.ts:31](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/recurrenceUtils/recurrenceTypes.ts#L31) + +*** + +### WEEKLY + +> **WEEKLY**: `"WEEKLY"` + +Defined in: [src/utils/recurrenceUtils/recurrenceTypes.ts:30](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/recurrenceUtils/recurrenceTypes.ts#L30) + +*** + +### YEARLY + +> **YEARLY**: `"YEARLY"` + +Defined in: [src/utils/recurrenceUtils/recurrenceTypes.ts:32](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/recurrenceUtils/recurrenceTypes.ts#L32) diff --git a/docs/docs/auto-docs/utils/recurrenceUtils/recurrenceTypes/enumerations/RecurrenceEndOption.md b/docs/docs/auto-docs/utils/recurrenceUtils/recurrenceTypes/enumerations/RecurrenceEndOption.md new file mode 100644 index 0000000000..a344d9df2d --- /dev/null +++ b/docs/docs/auto-docs/utils/recurrenceUtils/recurrenceTypes/enumerations/RecurrenceEndOption.md @@ -0,0 +1,33 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [utils/recurrenceUtils/recurrenceTypes](../README.md) / RecurrenceEndOption + +# Enumeration: RecurrenceEndOption + +Defined in: [src/utils/recurrenceUtils/recurrenceTypes.ts:48](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/recurrenceUtils/recurrenceTypes.ts#L48) + +## Enumeration Members + +### after + +> **after**: `"after"` + +Defined in: [src/utils/recurrenceUtils/recurrenceTypes.ts:51](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/recurrenceUtils/recurrenceTypes.ts#L51) + +*** + +### never + +> **never**: `"never"` + +Defined in: [src/utils/recurrenceUtils/recurrenceTypes.ts:49](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/recurrenceUtils/recurrenceTypes.ts#L49) + +*** + +### on + +> **on**: `"on"` + +Defined in: [src/utils/recurrenceUtils/recurrenceTypes.ts:50](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/recurrenceUtils/recurrenceTypes.ts#L50) diff --git a/docs/docs/auto-docs/utils/recurrenceUtils/recurrenceTypes/enumerations/RecurringEventMutationType.md b/docs/docs/auto-docs/utils/recurrenceUtils/recurrenceTypes/enumerations/RecurringEventMutationType.md new file mode 100644 index 0000000000..26f84d6059 --- /dev/null +++ b/docs/docs/auto-docs/utils/recurrenceUtils/recurrenceTypes/enumerations/RecurringEventMutationType.md @@ -0,0 +1,33 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [utils/recurrenceUtils/recurrenceTypes](../README.md) / RecurringEventMutationType + +# Enumeration: RecurringEventMutationType + +Defined in: [src/utils/recurrenceUtils/recurrenceTypes.ts:55](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/recurrenceUtils/recurrenceTypes.ts#L55) + +## Enumeration Members + +### allInstances + +> **allInstances**: `"allInstances"` + +Defined in: [src/utils/recurrenceUtils/recurrenceTypes.ts:58](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/recurrenceUtils/recurrenceTypes.ts#L58) + +*** + +### thisAndFollowingInstances + +> **thisAndFollowingInstances**: `"thisAndFollowingInstances"` + +Defined in: [src/utils/recurrenceUtils/recurrenceTypes.ts:57](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/recurrenceUtils/recurrenceTypes.ts#L57) + +*** + +### thisInstance + +> **thisInstance**: `"thisInstance"` + +Defined in: [src/utils/recurrenceUtils/recurrenceTypes.ts:56](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/recurrenceUtils/recurrenceTypes.ts#L56) diff --git a/docs/docs/auto-docs/utils/recurrenceUtils/recurrenceTypes/enumerations/WeekDays.md b/docs/docs/auto-docs/utils/recurrenceUtils/recurrenceTypes/enumerations/WeekDays.md new file mode 100644 index 0000000000..70932b82c5 --- /dev/null +++ b/docs/docs/auto-docs/utils/recurrenceUtils/recurrenceTypes/enumerations/WeekDays.md @@ -0,0 +1,65 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [utils/recurrenceUtils/recurrenceTypes](../README.md) / WeekDays + +# Enumeration: WeekDays + +Defined in: [src/utils/recurrenceUtils/recurrenceTypes.ts:36](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/recurrenceUtils/recurrenceTypes.ts#L36) + +## Enumeration Members + +### FRIDAY + +> **FRIDAY**: `"FRIDAY"` + +Defined in: [src/utils/recurrenceUtils/recurrenceTypes.ts:42](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/recurrenceUtils/recurrenceTypes.ts#L42) + +*** + +### MONDAY + +> **MONDAY**: `"MONDAY"` + +Defined in: [src/utils/recurrenceUtils/recurrenceTypes.ts:38](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/recurrenceUtils/recurrenceTypes.ts#L38) + +*** + +### SATURDAY + +> **SATURDAY**: `"SATURDAY"` + +Defined in: [src/utils/recurrenceUtils/recurrenceTypes.ts:43](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/recurrenceUtils/recurrenceTypes.ts#L43) + +*** + +### SUNDAY + +> **SUNDAY**: `"SUNDAY"` + +Defined in: [src/utils/recurrenceUtils/recurrenceTypes.ts:37](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/recurrenceUtils/recurrenceTypes.ts#L37) + +*** + +### THURSDAY + +> **THURSDAY**: `"THURSDAY"` + +Defined in: [src/utils/recurrenceUtils/recurrenceTypes.ts:41](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/recurrenceUtils/recurrenceTypes.ts#L41) + +*** + +### TUESDAY + +> **TUESDAY**: `"TUESDAY"` + +Defined in: [src/utils/recurrenceUtils/recurrenceTypes.ts:39](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/recurrenceUtils/recurrenceTypes.ts#L39) + +*** + +### WEDNESDAY + +> **WEDNESDAY**: `"WEDNESDAY"` + +Defined in: [src/utils/recurrenceUtils/recurrenceTypes.ts:40](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/recurrenceUtils/recurrenceTypes.ts#L40) diff --git a/docs/docs/auto-docs/utils/recurrenceUtils/recurrenceTypes/interfaces/InterfaceRecurrenceRule.md b/docs/docs/auto-docs/utils/recurrenceUtils/recurrenceTypes/interfaces/InterfaceRecurrenceRule.md new file mode 100644 index 0000000000..9c6a300992 --- /dev/null +++ b/docs/docs/auto-docs/utils/recurrenceUtils/recurrenceTypes/interfaces/InterfaceRecurrenceRule.md @@ -0,0 +1,65 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [utils/recurrenceUtils/recurrenceTypes](../README.md) / InterfaceRecurrenceRule + +# Interface: InterfaceRecurrenceRule + +Defined in: [src/utils/recurrenceUtils/recurrenceTypes.ts:17](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/recurrenceUtils/recurrenceTypes.ts#L17) + +## Properties + +### count + +> **count**: `number` + +Defined in: [src/utils/recurrenceUtils/recurrenceTypes.ts:23](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/recurrenceUtils/recurrenceTypes.ts#L23) + +*** + +### frequency + +> **frequency**: [`Frequency`](../enumerations/Frequency.md) + +Defined in: [src/utils/recurrenceUtils/recurrenceTypes.ts:20](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/recurrenceUtils/recurrenceTypes.ts#L20) + +*** + +### interval + +> **interval**: `number` + +Defined in: [src/utils/recurrenceUtils/recurrenceTypes.ts:22](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/recurrenceUtils/recurrenceTypes.ts#L22) + +*** + +### recurrenceEndDate + +> **recurrenceEndDate**: `string` + +Defined in: [src/utils/recurrenceUtils/recurrenceTypes.ts:19](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/recurrenceUtils/recurrenceTypes.ts#L19) + +*** + +### recurrenceStartDate + +> **recurrenceStartDate**: `string` + +Defined in: [src/utils/recurrenceUtils/recurrenceTypes.ts:18](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/recurrenceUtils/recurrenceTypes.ts#L18) + +*** + +### weekDayOccurenceInMonth + +> **weekDayOccurenceInMonth**: `number` + +Defined in: [src/utils/recurrenceUtils/recurrenceTypes.ts:24](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/recurrenceUtils/recurrenceTypes.ts#L24) + +*** + +### weekDays + +> **weekDays**: [`WeekDays`](../enumerations/WeekDays.md)[] + +Defined in: [src/utils/recurrenceUtils/recurrenceTypes.ts:21](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/recurrenceUtils/recurrenceTypes.ts#L21) diff --git a/docs/docs/auto-docs/utils/recurrenceUtils/recurrenceTypes/interfaces/InterfaceRecurrenceRuleState.md b/docs/docs/auto-docs/utils/recurrenceUtils/recurrenceTypes/interfaces/InterfaceRecurrenceRuleState.md new file mode 100644 index 0000000000..95304fbe19 --- /dev/null +++ b/docs/docs/auto-docs/utils/recurrenceUtils/recurrenceTypes/interfaces/InterfaceRecurrenceRuleState.md @@ -0,0 +1,65 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [utils/recurrenceUtils/recurrenceTypes](../README.md) / InterfaceRecurrenceRuleState + +# Interface: InterfaceRecurrenceRuleState + +Defined in: [src/utils/recurrenceUtils/recurrenceTypes.ts:6](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/recurrenceUtils/recurrenceTypes.ts#L6) + +## Properties + +### count + +> **count**: `number` + +Defined in: [src/utils/recurrenceUtils/recurrenceTypes.ts:12](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/recurrenceUtils/recurrenceTypes.ts#L12) + +*** + +### frequency + +> **frequency**: [`Frequency`](../enumerations/Frequency.md) + +Defined in: [src/utils/recurrenceUtils/recurrenceTypes.ts:9](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/recurrenceUtils/recurrenceTypes.ts#L9) + +*** + +### interval + +> **interval**: `number` + +Defined in: [src/utils/recurrenceUtils/recurrenceTypes.ts:11](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/recurrenceUtils/recurrenceTypes.ts#L11) + +*** + +### recurrenceEndDate + +> **recurrenceEndDate**: `Date` + +Defined in: [src/utils/recurrenceUtils/recurrenceTypes.ts:8](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/recurrenceUtils/recurrenceTypes.ts#L8) + +*** + +### recurrenceStartDate + +> **recurrenceStartDate**: `Date` + +Defined in: [src/utils/recurrenceUtils/recurrenceTypes.ts:7](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/recurrenceUtils/recurrenceTypes.ts#L7) + +*** + +### weekDayOccurenceInMonth + +> **weekDayOccurenceInMonth**: `number` + +Defined in: [src/utils/recurrenceUtils/recurrenceTypes.ts:13](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/recurrenceUtils/recurrenceTypes.ts#L13) + +*** + +### weekDays + +> **weekDays**: [`WeekDays`](../enumerations/WeekDays.md)[] + +Defined in: [src/utils/recurrenceUtils/recurrenceTypes.ts:10](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/recurrenceUtils/recurrenceTypes.ts#L10) diff --git a/docs/docs/auto-docs/utils/recurrenceUtils/recurrenceUtilityFunctions/README.md b/docs/docs/auto-docs/utils/recurrenceUtils/recurrenceUtilityFunctions/README.md new file mode 100644 index 0000000000..f4775336c8 --- /dev/null +++ b/docs/docs/auto-docs/utils/recurrenceUtils/recurrenceUtilityFunctions/README.md @@ -0,0 +1,15 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / utils/recurrenceUtils/recurrenceUtilityFunctions + +# utils/recurrenceUtils/recurrenceUtilityFunctions + +## Functions + +- [getRecurrenceRuleText](functions/getRecurrenceRuleText.md) +- [getWeekDayOccurenceInMonth](functions/getWeekDayOccurenceInMonth.md) +- [hasRecurrenceRuleChanged](functions/hasRecurrenceRuleChanged.md) +- [haveInstanceDatesChanged](functions/haveInstanceDatesChanged.md) +- [isLastOccurenceOfWeekDay](functions/isLastOccurenceOfWeekDay.md) diff --git a/docs/docs/auto-docs/utils/recurrenceUtils/recurrenceUtilityFunctions/functions/getRecurrenceRuleText.md b/docs/docs/auto-docs/utils/recurrenceUtils/recurrenceUtilityFunctions/functions/getRecurrenceRuleText.md new file mode 100644 index 0000000000..9827c0a26a --- /dev/null +++ b/docs/docs/auto-docs/utils/recurrenceUtils/recurrenceUtilityFunctions/functions/getRecurrenceRuleText.md @@ -0,0 +1,21 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [utils/recurrenceUtils/recurrenceUtilityFunctions](../README.md) / getRecurrenceRuleText + +# Function: getRecurrenceRuleText() + +> **getRecurrenceRuleText**(`recurrenceRuleState`): `string` + +Defined in: [src/utils/recurrenceUtils/recurrenceUtilityFunctions.ts:22](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/recurrenceUtils/recurrenceUtilityFunctions.ts#L22) + +## Parameters + +### recurrenceRuleState + +[`InterfaceRecurrenceRuleState`](../../recurrenceTypes/interfaces/InterfaceRecurrenceRuleState.md) + +## Returns + +`string` diff --git a/docs/docs/auto-docs/utils/recurrenceUtils/recurrenceUtilityFunctions/functions/getWeekDayOccurenceInMonth.md b/docs/docs/auto-docs/utils/recurrenceUtils/recurrenceUtilityFunctions/functions/getWeekDayOccurenceInMonth.md new file mode 100644 index 0000000000..babafcdf38 --- /dev/null +++ b/docs/docs/auto-docs/utils/recurrenceUtils/recurrenceUtilityFunctions/functions/getWeekDayOccurenceInMonth.md @@ -0,0 +1,21 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [utils/recurrenceUtils/recurrenceUtilityFunctions](../README.md) / getWeekDayOccurenceInMonth + +# Function: getWeekDayOccurenceInMonth() + +> **getWeekDayOccurenceInMonth**(`date`): `number` + +Defined in: [src/utils/recurrenceUtils/recurrenceUtilityFunctions.ts:126](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/recurrenceUtils/recurrenceUtilityFunctions.ts#L126) + +## Parameters + +### date + +`Date` + +## Returns + +`number` diff --git a/docs/docs/auto-docs/utils/recurrenceUtils/recurrenceUtilityFunctions/functions/hasRecurrenceRuleChanged.md b/docs/docs/auto-docs/utils/recurrenceUtils/recurrenceUtilityFunctions/functions/hasRecurrenceRuleChanged.md new file mode 100644 index 0000000000..4fcf0a0dc5 --- /dev/null +++ b/docs/docs/auto-docs/utils/recurrenceUtils/recurrenceUtilityFunctions/functions/hasRecurrenceRuleChanged.md @@ -0,0 +1,25 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [utils/recurrenceUtils/recurrenceUtilityFunctions](../README.md) / hasRecurrenceRuleChanged + +# Function: hasRecurrenceRuleChanged() + +> **hasRecurrenceRuleChanged**(`originalRecurrencerule`, `recurrenceRuleState`): `boolean` + +Defined in: [src/utils/recurrenceUtils/recurrenceUtilityFunctions.ts:167](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/recurrenceUtils/recurrenceUtilityFunctions.ts#L167) + +## Parameters + +### originalRecurrencerule + +[`InterfaceRecurrenceRule`](../../recurrenceTypes/interfaces/InterfaceRecurrenceRule.md) + +### recurrenceRuleState + +[`InterfaceRecurrenceRuleState`](../../recurrenceTypes/interfaces/InterfaceRecurrenceRuleState.md) + +## Returns + +`boolean` diff --git a/docs/docs/auto-docs/utils/recurrenceUtils/recurrenceUtilityFunctions/functions/haveInstanceDatesChanged.md b/docs/docs/auto-docs/utils/recurrenceUtils/recurrenceUtilityFunctions/functions/haveInstanceDatesChanged.md new file mode 100644 index 0000000000..2b5cb1febe --- /dev/null +++ b/docs/docs/auto-docs/utils/recurrenceUtils/recurrenceUtilityFunctions/functions/haveInstanceDatesChanged.md @@ -0,0 +1,33 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [utils/recurrenceUtils/recurrenceUtilityFunctions](../README.md) / haveInstanceDatesChanged + +# Function: haveInstanceDatesChanged() + +> **haveInstanceDatesChanged**(`instanceOriginalStartDate`, `instanceOriginalEndDate`, `instanceNewStartDate`, `instanceNewEndDate`): `boolean` + +Defined in: [src/utils/recurrenceUtils/recurrenceUtilityFunctions.ts:154](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/recurrenceUtils/recurrenceUtilityFunctions.ts#L154) + +## Parameters + +### instanceOriginalStartDate + +`string` + +### instanceOriginalEndDate + +`string` + +### instanceNewStartDate + +`string` + +### instanceNewEndDate + +`string` + +## Returns + +`boolean` diff --git a/docs/docs/auto-docs/utils/recurrenceUtils/recurrenceUtilityFunctions/functions/isLastOccurenceOfWeekDay.md b/docs/docs/auto-docs/utils/recurrenceUtils/recurrenceUtilityFunctions/functions/isLastOccurenceOfWeekDay.md new file mode 100644 index 0000000000..853c095350 --- /dev/null +++ b/docs/docs/auto-docs/utils/recurrenceUtils/recurrenceUtilityFunctions/functions/isLastOccurenceOfWeekDay.md @@ -0,0 +1,21 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [utils/recurrenceUtils/recurrenceUtilityFunctions](../README.md) / isLastOccurenceOfWeekDay + +# Function: isLastOccurenceOfWeekDay() + +> **isLastOccurenceOfWeekDay**(`date`): `boolean` + +Defined in: [src/utils/recurrenceUtils/recurrenceUtilityFunctions.ts:136](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/recurrenceUtils/recurrenceUtilityFunctions.ts#L136) + +## Parameters + +### date + +`Date` + +## Returns + +`boolean` diff --git a/docs/docs/auto-docs/utils/timezoneUtils/README.md b/docs/docs/auto-docs/utils/timezoneUtils/README.md new file mode 100644 index 0000000000..0ad5953d55 --- /dev/null +++ b/docs/docs/auto-docs/utils/timezoneUtils/README.md @@ -0,0 +1,25 @@ +[**talawa-admin**](../../README.md) + +*** + +[talawa-admin](../../modules.md) / utils/timezoneUtils + +# utils/timezoneUtils + +## References + +### dateTimeFields + +Re-exports [dateTimeFields](dateTimeConfig/variables/dateTimeFields.md) + +*** + +### requestMiddleware + +Re-exports [requestMiddleware](dateTimeMiddleware/variables/requestMiddleware.md) + +*** + +### responseMiddleware + +Re-exports [responseMiddleware](dateTimeMiddleware/variables/responseMiddleware.md) diff --git a/docs/docs/auto-docs/utils/timezoneUtils/dateTimeConfig/README.md b/docs/docs/auto-docs/utils/timezoneUtils/dateTimeConfig/README.md new file mode 100644 index 0000000000..52595efe84 --- /dev/null +++ b/docs/docs/auto-docs/utils/timezoneUtils/dateTimeConfig/README.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / utils/timezoneUtils/dateTimeConfig + +# utils/timezoneUtils/dateTimeConfig + +## Variables + +- [dateTimeFields](variables/dateTimeFields.md) diff --git a/docs/docs/auto-docs/utils/timezoneUtils/dateTimeConfig/variables/dateTimeFields.md b/docs/docs/auto-docs/utils/timezoneUtils/dateTimeConfig/variables/dateTimeFields.md new file mode 100644 index 0000000000..f478a5718d --- /dev/null +++ b/docs/docs/auto-docs/utils/timezoneUtils/dateTimeConfig/variables/dateTimeFields.md @@ -0,0 +1,21 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [utils/timezoneUtils/dateTimeConfig](../README.md) / dateTimeFields + +# Variable: dateTimeFields + +> `const` **dateTimeFields**: `object` + +Defined in: [src/utils/timezoneUtils/dateTimeConfig.ts:3](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/timezoneUtils/dateTimeConfig.ts#L3) + +## Type declaration + +### directFields + +> **directFields**: `string`[] + +### pairedFields + +> **pairedFields**: `object`[] diff --git a/docs/docs/auto-docs/utils/timezoneUtils/dateTimeMiddleware/README.md b/docs/docs/auto-docs/utils/timezoneUtils/dateTimeMiddleware/README.md new file mode 100644 index 0000000000..666abbffd4 --- /dev/null +++ b/docs/docs/auto-docs/utils/timezoneUtils/dateTimeMiddleware/README.md @@ -0,0 +1,12 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / utils/timezoneUtils/dateTimeMiddleware + +# utils/timezoneUtils/dateTimeMiddleware + +## Variables + +- [requestMiddleware](variables/requestMiddleware.md) +- [responseMiddleware](variables/responseMiddleware.md) diff --git a/docs/docs/auto-docs/utils/timezoneUtils/dateTimeMiddleware/variables/requestMiddleware.md b/docs/docs/auto-docs/utils/timezoneUtils/dateTimeMiddleware/variables/requestMiddleware.md new file mode 100644 index 0000000000..09b0bf9b59 --- /dev/null +++ b/docs/docs/auto-docs/utils/timezoneUtils/dateTimeMiddleware/variables/requestMiddleware.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [utils/timezoneUtils/dateTimeMiddleware](../README.md) / requestMiddleware + +# Variable: requestMiddleware + +> `const` **requestMiddleware**: `any` + +Defined in: [src/utils/timezoneUtils/dateTimeMiddleware.ts:84](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/timezoneUtils/dateTimeMiddleware.ts#L84) diff --git a/docs/docs/auto-docs/utils/timezoneUtils/dateTimeMiddleware/variables/responseMiddleware.md b/docs/docs/auto-docs/utils/timezoneUtils/dateTimeMiddleware/variables/responseMiddleware.md new file mode 100644 index 0000000000..caa6f87e21 --- /dev/null +++ b/docs/docs/auto-docs/utils/timezoneUtils/dateTimeMiddleware/variables/responseMiddleware.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [utils/timezoneUtils/dateTimeMiddleware](../README.md) / responseMiddleware + +# Variable: responseMiddleware + +> `const` **responseMiddleware**: `any` + +Defined in: [src/utils/timezoneUtils/dateTimeMiddleware.ts:94](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/timezoneUtils/dateTimeMiddleware.ts#L94) diff --git a/docs/docs/auto-docs/utils/useLocalstorage/README.md b/docs/docs/auto-docs/utils/useLocalstorage/README.md new file mode 100644 index 0000000000..9766800b4b --- /dev/null +++ b/docs/docs/auto-docs/utils/useLocalstorage/README.md @@ -0,0 +1,21 @@ +[**talawa-admin**](../../README.md) + +*** + +[talawa-admin](../../modules.md) / utils/useLocalstorage + +# utils/useLocalstorage + +## Functions + +- [getItem](functions/getItem.md) +- [getStorageKey](functions/getStorageKey.md) +- [removeItem](functions/removeItem.md) +- [setItem](functions/setItem.md) +- [useLocalStorage](functions/useLocalStorage.md) + +## References + +### default + +Renames and re-exports [useLocalStorage](functions/useLocalStorage.md) diff --git a/docs/docs/auto-docs/utils/useLocalstorage/functions/getItem.md b/docs/docs/auto-docs/utils/useLocalstorage/functions/getItem.md new file mode 100644 index 0000000000..3172cab223 --- /dev/null +++ b/docs/docs/auto-docs/utils/useLocalstorage/functions/getItem.md @@ -0,0 +1,33 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / [utils/useLocalstorage](../README.md) / getItem + +# Function: getItem() + +> **getItem**(`prefix`, `key`): `any` + +Defined in: [src/utils/useLocalstorage.ts:29](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/useLocalstorage.ts#L29) + +Retrieves the stored value for the given key from local storage. + +## Parameters + +### prefix + +`string` + +Prefix to be added to the key, common for all keys. + +### key + +`string` + +The unique name identifying the value. + +## Returns + +`any` + +- The stored value for the given key from local storage. diff --git a/docs/docs/auto-docs/utils/useLocalstorage/functions/getStorageKey.md b/docs/docs/auto-docs/utils/useLocalstorage/functions/getStorageKey.md new file mode 100644 index 0000000000..acd61344cc --- /dev/null +++ b/docs/docs/auto-docs/utils/useLocalstorage/functions/getStorageKey.md @@ -0,0 +1,33 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / [utils/useLocalstorage](../README.md) / getStorageKey + +# Function: getStorageKey() + +> **getStorageKey**(`prefix`, `key`): `string` + +Defined in: [src/utils/useLocalstorage.ts:19](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/useLocalstorage.ts#L19) + +Generates the prefixed key for storage. + +## Parameters + +### prefix + +`string` + +Prefix to be added to the key, common for all keys. + +### key + +`string` + +The unique name identifying the value. + +## Returns + +`string` + +- Prefixed key. diff --git a/docs/docs/auto-docs/utils/useLocalstorage/functions/removeItem.md b/docs/docs/auto-docs/utils/useLocalstorage/functions/removeItem.md new file mode 100644 index 0000000000..43cfd488ac --- /dev/null +++ b/docs/docs/auto-docs/utils/useLocalstorage/functions/removeItem.md @@ -0,0 +1,31 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / [utils/useLocalstorage](../README.md) / removeItem + +# Function: removeItem() + +> **removeItem**(`prefix`, `key`): `void` + +Defined in: [src/utils/useLocalstorage.ts:51](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/useLocalstorage.ts#L51) + +Removes the value associated with the given key from local storage. + +## Parameters + +### prefix + +`string` + +Prefix to be added to the key, common for all keys. + +### key + +`string` + +The unique name identifying the value. + +## Returns + +`void` diff --git a/docs/docs/auto-docs/utils/useLocalstorage/functions/setItem.md b/docs/docs/auto-docs/utils/useLocalstorage/functions/setItem.md new file mode 100644 index 0000000000..c15b708f37 --- /dev/null +++ b/docs/docs/auto-docs/utils/useLocalstorage/functions/setItem.md @@ -0,0 +1,37 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / [utils/useLocalstorage](../README.md) / setItem + +# Function: setItem() + +> **setItem**(`prefix`, `key`, `value`): `void` + +Defined in: [src/utils/useLocalstorage.ts:41](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/useLocalstorage.ts#L41) + +Sets the value for the given key in local storage. + +## Parameters + +### prefix + +`string` + +Prefix to be added to the key, common for all keys. + +### key + +`string` + +The unique name identifying the value. + +### value + +`any` + +The value for the key. + +## Returns + +`void` diff --git a/docs/docs/auto-docs/utils/useLocalstorage/functions/useLocalStorage.md b/docs/docs/auto-docs/utils/useLocalstorage/functions/useLocalStorage.md new file mode 100644 index 0000000000..b62d706972 --- /dev/null +++ b/docs/docs/auto-docs/utils/useLocalstorage/functions/useLocalStorage.md @@ -0,0 +1,27 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / [utils/useLocalstorage](../README.md) / useLocalStorage + +# Function: useLocalStorage() + +> **useLocalStorage**(`prefix`): `InterfaceStorageHelper` + +Defined in: [src/utils/useLocalstorage.ts:61](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/useLocalstorage.ts#L61) + +Custom hook for simplified localStorage operations. + +## Parameters + +### prefix + +`string` = `PREFIX` + +Prefix to be added to the key, common for all keys. Default is 'Talawa-admin'. + +## Returns + +`InterfaceStorageHelper` + +- Functions to getItem, setItem, removeItem, and getStorageKey. diff --git a/docs/docs/auto-docs/utils/useSession/README.md b/docs/docs/auto-docs/utils/useSession/README.md new file mode 100644 index 0000000000..ead72ee336 --- /dev/null +++ b/docs/docs/auto-docs/utils/useSession/README.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../README.md) + +*** + +[talawa-admin](../../modules.md) / utils/useSession + +# utils/useSession + +## Functions + +- [default](functions/default.md) diff --git a/docs/docs/auto-docs/utils/useSession/functions/default.md b/docs/docs/auto-docs/utils/useSession/functions/default.md new file mode 100644 index 0000000000..35aa62b61a --- /dev/null +++ b/docs/docs/auto-docs/utils/useSession/functions/default.md @@ -0,0 +1,26 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / [utils/useSession](../README.md) / default + +# Function: default() + +> **default**(): `UseSessionReturnType` + +Defined in: [src/utils/useSession.tsx:30](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/useSession.tsx#L30) + +Custom hook for managing user session timeouts in a React application. + +This hook handles: +- Starting and ending the user session. +- Displaying a warning toast at half of the session timeout duration. +- Logging the user out and displaying a session expiration toast when the session times out. +- Automatically resetting the timers when user activity is detected. +- Pausing session timers when the tab is inactive and resuming them when it becomes active again. + +## Returns + +`UseSessionReturnType` + +UseSessionReturnType - An object with methods to start and end the session, and to handle logout. diff --git a/docs/docs/auto-docs/vite-env/README.md b/docs/docs/auto-docs/vite-env/README.md new file mode 100644 index 0000000000..c86cac2cc7 --- /dev/null +++ b/docs/docs/auto-docs/vite-env/README.md @@ -0,0 +1,7 @@ +[**talawa-admin**](../README.md) + +*** + +[talawa-admin](../modules.md) / vite-env + +# vite-env diff --git a/package-lock.json b/package-lock.json index 3b7c816f00..ce44be7dfe 100644 --- a/package-lock.json +++ b/package-lock.json @@ -66,8 +66,6 @@ "redux": "^5.0.1", "redux-thunk": "^3.1.0", "sanitize-html": "^2.13.0", - "typedoc": "^0.26.10", - "typedoc-plugin-markdown": "^4.2.10", "typescript": "^5.6.3", "vite": "^5.4.8", "vite-plugin-environment": "^1.1.3", @@ -119,7 +117,10 @@ "lint-staged": "^15.3.0", "postcss-modules": "^6.0.1", "sass": "^1.80.7", + "shiki": "^1.26.1", "tsx": "^4.19.1", + "typedoc": "^0.27.6", + "typedoc-plugin-markdown": "^4.4.1", "vite-plugin-svgr": "^4.2.0", "vitest": "^2.1.5", "whatwg-fetch": "^3.6.20" @@ -156,141 +157,6 @@ "node": ">=6.0.0" } }, - "node_modules/@ant-design/colors": { - "version": "7.1.0", - "resolved": "https://registry.npmjs.org/@ant-design/colors/-/colors-7.1.0.tgz", - "integrity": "sha512-MMoDGWn1y9LdQJQSHiCC20x3uZ3CwQnv9QMz6pCmJOrqdgM9YxsoVVY0wtrdXbmfSgnV0KNk6zi09NAhMR2jvg==", - "license": "MIT", - "peer": true, - "dependencies": { - "@ctrl/tinycolor": "^3.6.1" - } - }, - "node_modules/@ant-design/cssinjs": { - "version": "1.22.1", - "resolved": "https://registry.npmjs.org/@ant-design/cssinjs/-/cssinjs-1.22.1.tgz", - "integrity": "sha512-SLuXM4wiEE1blOx94iXrkOgseMZHzdr4ngdFu3VVDq6AOWh7rlwqTkMAtJho3EsBF6x/eUGOtK53VZXGQG7+sQ==", - "license": "MIT", - "peer": true, - "dependencies": { - "@babel/runtime": "^7.11.1", - "@emotion/hash": "^0.8.0", - "@emotion/unitless": "^0.7.5", - "classnames": "^2.3.1", - "csstype": "^3.1.3", - "rc-util": "^5.35.0", - "stylis": "^4.3.4" - }, - "peerDependencies": { - "react": ">=16.0.0", - "react-dom": ">=16.0.0" - } - }, - "node_modules/@ant-design/cssinjs-utils": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/@ant-design/cssinjs-utils/-/cssinjs-utils-1.1.3.tgz", - "integrity": "sha512-nOoQMLW1l+xR1Co8NFVYiP8pZp3VjIIzqV6D6ShYF2ljtdwWJn5WSsH+7kvCktXL/yhEtWURKOfH5Xz/gzlwsg==", - "license": "MIT", - "peer": true, - "dependencies": { - "@ant-design/cssinjs": "^1.21.0", - "@babel/runtime": "^7.23.2", - "rc-util": "^5.38.0" - }, - "peerDependencies": { - "react": ">=16.9.0", - "react-dom": ">=16.9.0" - } - }, - "node_modules/@ant-design/cssinjs/node_modules/@emotion/hash": { - "version": "0.8.0", - "resolved": "https://registry.npmjs.org/@emotion/hash/-/hash-0.8.0.tgz", - "integrity": "sha512-kBJtf7PH6aWwZ6fka3zQ0p6SBYzx4fl1LoZXE2RrnYST9Xljm7WfKJrU4g/Xr3Beg72MLrp1AWNUmuYJTL7Cow==", - "license": "MIT", - "peer": true - }, - "node_modules/@ant-design/cssinjs/node_modules/@emotion/unitless": { - "version": "0.7.5", - "resolved": "https://registry.npmjs.org/@emotion/unitless/-/unitless-0.7.5.tgz", - "integrity": "sha512-OWORNpfjMsSSUBVrRBVGECkhWcULOAJz9ZW8uK9qgxD+87M7jHRcvh/A96XXNhXTLmKcoYSQtBEX7lHMO7YRwg==", - "license": "MIT", - "peer": true - }, - "node_modules/@ant-design/cssinjs/node_modules/stylis": { - "version": "4.3.4", - "resolved": "https://registry.npmjs.org/stylis/-/stylis-4.3.4.tgz", - "integrity": "sha512-osIBl6BGUmSfDkyH2mB7EFvCJntXDrLhKjHTRj/rK6xLH0yuPrHULDRQzKokSOD4VoorhtKpfcfW1GAntu8now==", - "license": "MIT", - "peer": true - }, - "node_modules/@ant-design/fast-color": { - "version": "2.0.6", - "resolved": "https://registry.npmjs.org/@ant-design/fast-color/-/fast-color-2.0.6.tgz", - "integrity": "sha512-y2217gk4NqL35giHl72o6Zzqji9O7vHh9YmhUVkPtAOpoTCH4uWxo/pr4VE8t0+ChEPs0qo4eJRC5Q1eXWo3vA==", - "license": "MIT", - "peer": true, - "dependencies": { - "@babel/runtime": "^7.24.7" - }, - "engines": { - "node": ">=8.x" - } - }, - "node_modules/@ant-design/icons": { - "version": "5.5.2", - "resolved": "https://registry.npmjs.org/@ant-design/icons/-/icons-5.5.2.tgz", - "integrity": "sha512-xc53rjVBl9v2BqFxUjZGti/RfdDeA8/6KYglmInM2PNqSXc/WfuGDTifJI/ZsokJK0aeKvOIbXc9y2g8ILAhEA==", - "license": "MIT", - "peer": true, - "dependencies": { - "@ant-design/colors": "^7.0.0", - "@ant-design/icons-svg": "^4.4.0", - "@babel/runtime": "^7.24.8", - "classnames": "^2.2.6", - "rc-util": "^5.31.1" - }, - "engines": { - "node": ">=8" - }, - "peerDependencies": { - "react": ">=16.0.0", - "react-dom": ">=16.0.0" - } - }, - "node_modules/@ant-design/icons-svg": { - "version": "4.4.2", - "resolved": "https://registry.npmjs.org/@ant-design/icons-svg/-/icons-svg-4.4.2.tgz", - "integrity": "sha512-vHbT+zJEVzllwP+CM+ul7reTEfBR0vgxFe7+lREAsAA7YGsYpboiq2sQNeQeRvh09GfQgs/GyFEvZpJ9cLXpXA==", - "license": "MIT", - "peer": true - }, - "node_modules/@ant-design/react-slick": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/@ant-design/react-slick/-/react-slick-1.1.2.tgz", - "integrity": "sha512-EzlvzE6xQUBrZuuhSAFTdsr4P2bBBHGZwKFemEfq8gIGyIQCxalYfZW/T2ORbtQx5rU69o+WycP3exY/7T1hGA==", - "license": "MIT", - "peer": true, - "dependencies": { - "@babel/runtime": "^7.10.4", - "classnames": "^2.2.5", - "json2mq": "^0.2.0", - "resize-observer-polyfill": "^1.5.1", - "throttle-debounce": "^5.0.0" - }, - "peerDependencies": { - "react": ">=16.9.0" - } - }, - "node_modules/@ant-design/react-slick/node_modules/throttle-debounce": { - "version": "5.0.2", - "resolved": "https://registry.npmjs.org/throttle-debounce/-/throttle-debounce-5.0.2.tgz", - "integrity": "sha512-B71/4oyj61iNH0KeCamLuE2rmKuTO5byTOSVwECM5FA7TiAiAW+UqTKZ9ERueC4qvgSttUhdmq1mXC3kJqGX7A==", - "license": "MIT", - "peer": true, - "engines": { - "node": ">=12.22" - } - }, "node_modules/@apollo/client": { "version": "3.11.8", "resolved": "https://registry.npmjs.org/@apollo/client/-/client-3.11.8.tgz", @@ -2200,16 +2066,6 @@ "integrity": "sha512-0hYQ8SB4Db5zvZB4axdMHGwEaQjkZzFjQiN9LVYvIFB2nSUHW9tYpxWriPrWDASIxiaXax83REcLxuSdnGPZtw==", "dev": true }, - "node_modules/@ctrl/tinycolor": { - "version": "3.6.1", - "resolved": "https://registry.npmjs.org/@ctrl/tinycolor/-/tinycolor-3.6.1.tgz", - "integrity": "sha512-SITSV6aIXsuVNV3f3O0f2n/cgyEDWoSqtZMYiAmcsYHydcKrOz3gUxB/iXd/Qf08+IZX4KpgNbvUdMBmWz+kcA==", - "license": "MIT", - "peer": true, - "engines": { - "node": ">=10" - } - }, "node_modules/@dicebear/adventurer": { "version": "9.2.2", "resolved": "https://registry.npmjs.org/@dicebear/adventurer/-/adventurer-9.2.2.tgz", @@ -3259,6 +3115,18 @@ "resolved": "https://registry.npmjs.org/@floating-ui/utils/-/utils-0.2.8.tgz", "integrity": "sha512-kym7SodPp8/wloecOpcmSnWJsK7M0E5Wg8UcFA+uO4B9s5d0ywXOEro/8HM9x0rW+TljRzul/14UYz3TleT3ig==" }, + "node_modules/@gerrit0/mini-shiki": { + "version": "1.26.1", + "resolved": "https://registry.npmjs.org/@gerrit0/mini-shiki/-/mini-shiki-1.26.1.tgz", + "integrity": "sha512-gHFUvv9f1fU2Piou/5Y7Sx5moYxcERbC7CXc6rkDLQTUBg5Dgg9L4u29/nHqfoQ3Y9R0h0BcOhd14uOEZIBP7Q==", + "dev": true, + "license": "MIT", + "dependencies": { + "@shikijs/engine-oniguruma": "^1.26.1", + "@shikijs/types": "^1.26.1", + "@shikijs/vscode-textmate": "^10.0.1" + } + }, "node_modules/@graphql-typed-document-node/core": { "version": "3.2.0", "resolved": "https://registry.npmjs.org/@graphql-typed-document-node/core/-/core-3.2.0.tgz", @@ -4605,6 +4473,7 @@ "version": "2.5.0", "resolved": "https://registry.npmjs.org/@parcel/watcher/-/watcher-2.5.0.tgz", "integrity": "sha512-i0GV1yJnm2n3Yq1qw6QrUrd/LI9bE8WEBOTtOkpCXHHdyN3TAGgqAK/DAT05z4fq2x04cARXt2pDmjWjL92iTQ==", + "dev": true, "hasInstallScript": true, "optional": true, "dependencies": { @@ -4643,6 +4512,7 @@ "cpu": [ "arm64" ], + "dev": true, "optional": true, "os": [ "android" @@ -4662,6 +4532,7 @@ "cpu": [ "arm64" ], + "dev": true, "optional": true, "os": [ "darwin" @@ -4681,6 +4552,7 @@ "cpu": [ "x64" ], + "dev": true, "optional": true, "os": [ "darwin" @@ -4700,6 +4572,7 @@ "cpu": [ "x64" ], + "dev": true, "optional": true, "os": [ "freebsd" @@ -4719,6 +4592,7 @@ "cpu": [ "arm" ], + "dev": true, "optional": true, "os": [ "linux" @@ -4738,6 +4612,7 @@ "cpu": [ "arm" ], + "dev": true, "optional": true, "os": [ "linux" @@ -4757,6 +4632,7 @@ "cpu": [ "arm64" ], + "dev": true, "optional": true, "os": [ "linux" @@ -4776,6 +4652,7 @@ "cpu": [ "arm64" ], + "dev": true, "optional": true, "os": [ "linux" @@ -4795,6 +4672,7 @@ "cpu": [ "x64" ], + "dev": true, "optional": true, "os": [ "linux" @@ -4814,6 +4692,7 @@ "cpu": [ "x64" ], + "dev": true, "optional": true, "os": [ "linux" @@ -4833,6 +4712,7 @@ "cpu": [ "arm64" ], + "dev": true, "optional": true, "os": [ "win32" @@ -4852,6 +4732,7 @@ "cpu": [ "ia32" ], + "dev": true, "optional": true, "os": [ "win32" @@ -4871,6 +4752,7 @@ "cpu": [ "x64" ], + "dev": true, "optional": true, "os": [ "win32" @@ -4998,164 +4880,6 @@ "url": "https://opencollective.com/popperjs" } }, - "node_modules/@rc-component/async-validator": { - "version": "5.0.4", - "resolved": "https://registry.npmjs.org/@rc-component/async-validator/-/async-validator-5.0.4.tgz", - "integrity": "sha512-qgGdcVIF604M9EqjNF0hbUTz42bz/RDtxWdWuU5EQe3hi7M8ob54B6B35rOsvX5eSvIHIzT9iH1R3n+hk3CGfg==", - "license": "MIT", - "peer": true, - "dependencies": { - "@babel/runtime": "^7.24.4" - }, - "engines": { - "node": ">=14.x" - } - }, - "node_modules/@rc-component/color-picker": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/@rc-component/color-picker/-/color-picker-2.0.1.tgz", - "integrity": "sha512-WcZYwAThV/b2GISQ8F+7650r5ZZJ043E57aVBFkQ+kSY4C6wdofXgB0hBx+GPGpIU0Z81eETNoDUJMr7oy/P8Q==", - "license": "MIT", - "peer": true, - "dependencies": { - "@ant-design/fast-color": "^2.0.6", - "@babel/runtime": "^7.23.6", - "classnames": "^2.2.6", - "rc-util": "^5.38.1" - }, - "peerDependencies": { - "react": ">=16.9.0", - "react-dom": ">=16.9.0" - } - }, - "node_modules/@rc-component/context": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/@rc-component/context/-/context-1.4.0.tgz", - "integrity": "sha512-kFcNxg9oLRMoL3qki0OMxK+7g5mypjgaaJp/pkOis/6rVxma9nJBF/8kCIuTYHUQNr0ii7MxqE33wirPZLJQ2w==", - "license": "MIT", - "peer": true, - "dependencies": { - "@babel/runtime": "^7.10.1", - "rc-util": "^5.27.0" - }, - "peerDependencies": { - "react": ">=16.9.0", - "react-dom": ">=16.9.0" - } - }, - "node_modules/@rc-component/mini-decimal": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/@rc-component/mini-decimal/-/mini-decimal-1.1.0.tgz", - "integrity": "sha512-jS4E7T9Li2GuYwI6PyiVXmxTiM6b07rlD9Ge8uGZSCz3WlzcG5ZK7g5bbuKNeZ9pgUuPK/5guV781ujdVpm4HQ==", - "license": "MIT", - "peer": true, - "dependencies": { - "@babel/runtime": "^7.18.0" - }, - "engines": { - "node": ">=8.x" - } - }, - "node_modules/@rc-component/mutate-observer": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/@rc-component/mutate-observer/-/mutate-observer-1.1.0.tgz", - "integrity": "sha512-QjrOsDXQusNwGZPf4/qRQasg7UFEj06XiCJ8iuiq/Io7CrHrgVi6Uuetw60WAMG1799v+aM8kyc+1L/GBbHSlw==", - "license": "MIT", - "peer": true, - "dependencies": { - "@babel/runtime": "^7.18.0", - "classnames": "^2.3.2", - "rc-util": "^5.24.4" - }, - "engines": { - "node": ">=8.x" - }, - "peerDependencies": { - "react": ">=16.9.0", - "react-dom": ">=16.9.0" - } - }, - "node_modules/@rc-component/portal": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/@rc-component/portal/-/portal-1.1.2.tgz", - "integrity": "sha512-6f813C0IsasTZms08kfA8kPAGxbbkYToa8ALaiDIGGECU4i9hj8Plgbx0sNJDrey3EtHO30hmdaxtT0138xZcg==", - "license": "MIT", - "peer": true, - "dependencies": { - "@babel/runtime": "^7.18.0", - "classnames": "^2.3.2", - "rc-util": "^5.24.4" - }, - "engines": { - "node": ">=8.x" - }, - "peerDependencies": { - "react": ">=16.9.0", - "react-dom": ">=16.9.0" - } - }, - "node_modules/@rc-component/qrcode": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/@rc-component/qrcode/-/qrcode-1.0.0.tgz", - "integrity": "sha512-L+rZ4HXP2sJ1gHMGHjsg9jlYBX/SLN2D6OxP9Zn3qgtpMWtO2vUfxVFwiogHpAIqs54FnALxraUy/BCO1yRIgg==", - "license": "MIT", - "peer": true, - "dependencies": { - "@babel/runtime": "^7.24.7", - "classnames": "^2.3.2", - "rc-util": "^5.38.0" - }, - "engines": { - "node": ">=8.x" - }, - "peerDependencies": { - "react": ">=16.9.0", - "react-dom": ">=16.9.0" - } - }, - "node_modules/@rc-component/tour": { - "version": "1.15.1", - "resolved": "https://registry.npmjs.org/@rc-component/tour/-/tour-1.15.1.tgz", - "integrity": "sha512-Tr2t7J1DKZUpfJuDZWHxyxWpfmj8EZrqSgyMZ+BCdvKZ6r1UDsfU46M/iWAAFBy961Ssfom2kv5f3UcjIL2CmQ==", - "license": "MIT", - "peer": true, - "dependencies": { - "@babel/runtime": "^7.18.0", - "@rc-component/portal": "^1.0.0-9", - "@rc-component/trigger": "^2.0.0", - "classnames": "^2.3.2", - "rc-util": "^5.24.4" - }, - "engines": { - "node": ">=8.x" - }, - "peerDependencies": { - "react": ">=16.9.0", - "react-dom": ">=16.9.0" - } - }, - "node_modules/@rc-component/trigger": { - "version": "2.2.6", - "resolved": "https://registry.npmjs.org/@rc-component/trigger/-/trigger-2.2.6.tgz", - "integrity": "sha512-/9zuTnWwhQ3S3WT1T8BubuFTT46kvnXgaERR9f4BTKyn61/wpf/BvbImzYBubzJibU707FxwbKszLlHjcLiv1Q==", - "license": "MIT", - "peer": true, - "dependencies": { - "@babel/runtime": "^7.23.2", - "@rc-component/portal": "^1.1.0", - "classnames": "^2.3.2", - "rc-motion": "^2.0.0", - "rc-resize-observer": "^1.3.1", - "rc-util": "^5.44.0" - }, - "engines": { - "node": ">=8.x" - }, - "peerDependencies": { - "react": ">=16.9.0", - "react-dom": ">=16.9.0" - } - }, "node_modules/@react-aria/ssr": { "version": "3.9.5", "resolved": "https://registry.npmjs.org/@react-aria/ssr/-/ssr-3.9.5.tgz", @@ -5565,49 +5289,80 @@ "dev": true }, "node_modules/@shikijs/core": { - "version": "1.17.6", - "resolved": "https://registry.npmjs.org/@shikijs/core/-/core-1.17.6.tgz", - "integrity": "sha512-9ztslig6/YmCg/XwESAXbKjAjOhaq6HVced9NY6qcbDz1X5g/S90Wco2vMjBNX/6V71ASkzri76JewSGPa7kiQ==", - "dependencies": { - "@shikijs/engine-javascript": "1.17.6", - "@shikijs/engine-oniguruma": "1.17.6", - "@shikijs/types": "1.17.6", - "@shikijs/vscode-textmate": "^9.2.2", + "version": "1.26.1", + "resolved": "https://registry.npmjs.org/@shikijs/core/-/core-1.26.1.tgz", + "integrity": "sha512-yeo7sG+WZQblKPclUOKRPwkv1PyoHYkJ4gP9DzhFJbTdueKR7wYTI1vfF/bFi1NTgc545yG/DzvVhZgueVOXMA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@shikijs/engine-javascript": "1.26.1", + "@shikijs/engine-oniguruma": "1.26.1", + "@shikijs/types": "1.26.1", + "@shikijs/vscode-textmate": "^10.0.1", "@types/hast": "^3.0.4", - "hast-util-to-html": "^9.0.2" + "hast-util-to-html": "^9.0.4" } }, "node_modules/@shikijs/engine-javascript": { - "version": "1.17.6", - "resolved": "https://registry.npmjs.org/@shikijs/engine-javascript/-/engine-javascript-1.17.6.tgz", - "integrity": "sha512-5EEZj8tVcierNxm4V0UMS2PVoflb0UJPalWWV8l9rRg+oOfnr5VivqBJbkyq5grltVPvByIXvVbY8GSM/356jQ==", + "version": "1.26.1", + "resolved": "https://registry.npmjs.org/@shikijs/engine-javascript/-/engine-javascript-1.26.1.tgz", + "integrity": "sha512-CRhA0b8CaSLxS0E9A4Bzcb3LKBNpykfo9F85ozlNyArxjo2NkijtiwrJZ6eHa+NT5I9Kox2IXVdjUsP4dilsmw==", + "dev": true, + "license": "MIT", "dependencies": { - "@shikijs/types": "1.17.6", - "oniguruma-to-js": "0.4.3" + "@shikijs/types": "1.26.1", + "@shikijs/vscode-textmate": "^10.0.1", + "oniguruma-to-es": "0.10.0" } }, "node_modules/@shikijs/engine-oniguruma": { - "version": "1.17.6", - "resolved": "https://registry.npmjs.org/@shikijs/engine-oniguruma/-/engine-oniguruma-1.17.6.tgz", - "integrity": "sha512-NLfWDMXFYe0nDHFbEoyZdz89aIIey3bTfF3zLYSUNTXks5s4uinZVmuPOFf1HfTeGqIn8uErJSBc3VnpJO7Alw==", + "version": "1.26.1", + "resolved": "https://registry.npmjs.org/@shikijs/engine-oniguruma/-/engine-oniguruma-1.26.1.tgz", + "integrity": "sha512-F5XuxN1HljLuvfXv7d+mlTkV7XukC1cawdtOo+7pKgPD83CAB1Sf8uHqP3PK0u7njFH0ZhoXE1r+0JzEgAQ+kg==", + "dev": true, + "license": "MIT", + "dependencies": { + "@shikijs/types": "1.26.1", + "@shikijs/vscode-textmate": "^10.0.1" + } + }, + "node_modules/@shikijs/langs": { + "version": "1.26.1", + "resolved": "https://registry.npmjs.org/@shikijs/langs/-/langs-1.26.1.tgz", + "integrity": "sha512-oz/TQiIqZejEIZbGtn68hbJijAOTtYH4TMMSWkWYozwqdpKR3EXgILneQy26WItmJjp3xVspHdiUxUCws4gtuw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@shikijs/types": "1.26.1" + } + }, + "node_modules/@shikijs/themes": { + "version": "1.26.1", + "resolved": "https://registry.npmjs.org/@shikijs/themes/-/themes-1.26.1.tgz", + "integrity": "sha512-JDxVn+z+wgLCiUhBGx2OQrLCkKZQGzNH3nAxFir4PjUcYiyD8Jdms9izyxIogYmSwmoPTatFTdzyrRKbKlSfPA==", + "dev": true, + "license": "MIT", "dependencies": { - "@shikijs/types": "1.17.6", - "@shikijs/vscode-textmate": "^9.2.2" + "@shikijs/types": "1.26.1" } }, "node_modules/@shikijs/types": { - "version": "1.17.6", - "resolved": "https://registry.npmjs.org/@shikijs/types/-/types-1.17.6.tgz", - "integrity": "sha512-ndTFa2TJi2w51ddKQDn3Jy8f6K4E5Q2x3dA3Hmsd3+YmxDQ10UWHjcw7VbVbKzv3VcUvYPLy+z9neqytSzUMUg==", + "version": "1.26.1", + "resolved": "https://registry.npmjs.org/@shikijs/types/-/types-1.26.1.tgz", + "integrity": "sha512-d4B00TKKAMaHuFYgRf3L0gwtvqpW4hVdVwKcZYbBfAAQXspgkbWqnFfuFl3MDH6gLbsubOcr+prcnsqah3ny7Q==", + "dev": true, + "license": "MIT", "dependencies": { - "@shikijs/vscode-textmate": "^9.2.2", + "@shikijs/vscode-textmate": "^10.0.1", "@types/hast": "^3.0.4" } }, "node_modules/@shikijs/vscode-textmate": { - "version": "9.2.2", - "resolved": "https://registry.npmjs.org/@shikijs/vscode-textmate/-/vscode-textmate-9.2.2.tgz", - "integrity": "sha512-TMp15K+GGYrWlZM8+Lnj9EaHEFmOen0WJBrfa17hF7taDOYthuPPV0GWzfd/9iMij0akS/8Yw2ikquH7uVi/fg==" + "version": "10.0.1", + "resolved": "https://registry.npmjs.org/@shikijs/vscode-textmate/-/vscode-textmate-10.0.1.tgz", + "integrity": "sha512-fTIQwLF+Qhuws31iw7Ncl1R3HUDtGwIipiJ9iU+UsDUwMhegFcQKQHd51nZjb7CArq0MvON8rbgCGQYWHUKAdg==", + "dev": true, + "license": "MIT" }, "node_modules/@sindresorhus/is": { "version": "0.14.0", @@ -6133,6 +5888,8 @@ "version": "3.0.4", "resolved": "https://registry.npmjs.org/@types/hast/-/hast-3.0.4.tgz", "integrity": "sha512-WPs+bbQw5aCj+x6laNGWLH3wviHtoCv/P3+otBhbOhJgG8qtpdAMlTCxLtsTWA7LH1Oh/bFCHsBn0TPS5m30EQ==", + "dev": true, + "license": "MIT", "dependencies": { "@types/unist": "*" } @@ -6217,6 +5974,8 @@ "version": "4.0.4", "resolved": "https://registry.npmjs.org/@types/mdast/-/mdast-4.0.4.tgz", "integrity": "sha512-kGaNbPh1k7AFzgpud/gMdvIm5xuECykRR+JnWKQno9TAXVa6WIVCGTPvYGekIDL4uwCZQSYbUxNBSb1aUo79oA==", + "dev": true, + "license": "MIT", "dependencies": { "@types/unist": "*" } @@ -6419,7 +6178,9 @@ "node_modules/@types/unist": { "version": "3.0.3", "resolved": "https://registry.npmjs.org/@types/unist/-/unist-3.0.3.tgz", - "integrity": "sha512-ko/gIFJRv177XgZsZcBwnqJN5x/Gien8qNOn0D5bQU/zAzVf9Zt3BlcUiLqhV9y4ARk0GbT3tnUiPNgnTXzc/Q==" + "integrity": "sha512-ko/gIFJRv177XgZsZcBwnqJN5x/Gien8qNOn0D5bQU/zAzVf9Zt3BlcUiLqhV9y4ARk0GbT3tnUiPNgnTXzc/Q==", + "dev": true, + "license": "MIT" }, "node_modules/@types/use-sync-external-store": { "version": "0.0.3", @@ -6768,6 +6529,7 @@ "version": "1.2.0", "resolved": "https://registry.npmjs.org/@ungap/structured-clone/-/structured-clone-1.2.0.tgz", "integrity": "sha512-zuVdFrMJiuCDQUMCzQaD6KL28MjnqqN8XnAqiEq9PNm/hCPTSGfrXCOfwj1ow4LFb/tNymJPwsNbVePc1xFqrQ==", + "dev": true, "license": "ISC" }, "node_modules/@vitejs/plugin-react": { @@ -7150,16 +6912,6 @@ "node": ">=0.4.0" } }, - "node_modules/add-dom-event-listener": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/add-dom-event-listener/-/add-dom-event-listener-1.1.0.tgz", - "integrity": "sha512-WCxx1ixHT0GQU9hb0KI/mhgRQhnU+U3GvwY6ZvVjYq8rsihIGoaIOUbY0yMPBxLH5MDtr0kz3fisWGNcbWW7Jw==", - "license": "MIT", - "peer": true, - "dependencies": { - "object-assign": "4.x" - } - }, "node_modules/agent-base": { "version": "6.0.2", "resolved": "https://registry.npmjs.org/agent-base/-/agent-base-6.0.2.tgz", @@ -7172,30 +6924,6 @@ "node": ">= 6.0.0" } }, - "node_modules/ahooks": { - "version": "3.8.4", - "resolved": "https://registry.npmjs.org/ahooks/-/ahooks-3.8.4.tgz", - "integrity": "sha512-39wDEw2ZHvypaT14EpMMk4AzosHWt0z9bulY0BeDsvc9PqJEV+Kjh/4TZfftSsotBMq52iYIOFPd3PR56e0ZJg==", - "license": "MIT", - "peer": true, - "dependencies": { - "@babel/runtime": "^7.21.0", - "dayjs": "^1.9.1", - "intersection-observer": "^0.12.0", - "js-cookie": "^3.0.5", - "lodash": "^4.17.21", - "react-fast-compare": "^3.2.2", - "resize-observer-polyfill": "^1.5.1", - "screenfull": "^5.0.0", - "tslib": "^2.4.1" - }, - "engines": { - "node": ">=8.0.0" - }, - "peerDependencies": { - "react": "^16.8.0 || ^17.0.0 || ^18.0.0" - } - }, "node_modules/air-datepicker": { "version": "3.5.3", "resolved": "https://registry.npmjs.org/air-datepicker/-/air-datepicker-3.5.3.tgz", @@ -7282,82 +7010,6 @@ "node": ">=0.10.0" } }, - "node_modules/antd": { - "version": "5.22.6", - "resolved": "https://registry.npmjs.org/antd/-/antd-5.22.6.tgz", - "integrity": "sha512-ZYURSV3FR8qQgbfpa554thlO07L6PeHwhAM0wmxnobOBogND/HqSnTU+UZTqT2b2y9MxSfAIu5Xn1uEM9UpceQ==", - "license": "MIT", - "peer": true, - "dependencies": { - "@ant-design/colors": "^7.1.0", - "@ant-design/cssinjs": "^1.21.1", - "@ant-design/cssinjs-utils": "^1.1.3", - "@ant-design/icons": "^5.5.2", - "@ant-design/react-slick": "~1.1.2", - "@babel/runtime": "^7.25.7", - "@ctrl/tinycolor": "^3.6.1", - "@rc-component/color-picker": "~2.0.1", - "@rc-component/mutate-observer": "^1.1.0", - "@rc-component/qrcode": "~1.0.0", - "@rc-component/tour": "~1.15.1", - "@rc-component/trigger": "^2.2.6", - "classnames": "^2.5.1", - "copy-to-clipboard": "^3.3.3", - "dayjs": "^1.11.11", - "rc-cascader": "~3.30.0", - "rc-checkbox": "~3.3.0", - "rc-collapse": "~3.9.0", - "rc-dialog": "~9.6.0", - "rc-drawer": "~7.2.0", - "rc-dropdown": "~4.2.1", - "rc-field-form": "~2.7.0", - "rc-image": "~7.11.0", - "rc-input": "~1.6.4", - "rc-input-number": "~9.3.0", - "rc-mentions": "~2.17.0", - "rc-menu": "~9.16.0", - "rc-motion": "^2.9.5", - "rc-notification": "~5.6.2", - "rc-pagination": "~5.0.0", - "rc-picker": "~4.8.3", - "rc-progress": "~4.0.0", - "rc-rate": "~2.13.0", - "rc-resize-observer": "^1.4.3", - "rc-segmented": "~2.5.0", - "rc-select": "~14.16.4", - "rc-slider": "~11.1.7", - "rc-steps": "~6.0.1", - "rc-switch": "~4.1.0", - "rc-table": "~7.49.0", - "rc-tabs": "~15.4.0", - "rc-textarea": "~1.8.2", - "rc-tooltip": "~6.2.1", - "rc-tree": "~5.10.1", - "rc-tree-select": "~5.24.5", - "rc-upload": "~4.8.1", - "rc-util": "^5.44.2", - "scroll-into-view-if-needed": "^3.1.0", - "throttle-debounce": "^5.0.2" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/ant-design" - }, - "peerDependencies": { - "react": ">=16.9.0", - "react-dom": ">=16.9.0" - } - }, - "node_modules/antd/node_modules/throttle-debounce": { - "version": "5.0.2", - "resolved": "https://registry.npmjs.org/throttle-debounce/-/throttle-debounce-5.0.2.tgz", - "integrity": "sha512-B71/4oyj61iNH0KeCamLuE2rmKuTO5byTOSVwECM5FA7TiAiAW+UqTKZ9ERueC4qvgSttUhdmq1mXC3kJqGX7A==", - "license": "MIT", - "peer": true, - "engines": { - "node": ">=12.22" - } - }, "node_modules/anymatch": { "version": "3.1.3", "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.3.tgz", @@ -7575,13 +7227,6 @@ "node": ">=12" } }, - "node_modules/async-validator": { - "version": "3.5.2", - "resolved": "https://registry.npmjs.org/async-validator/-/async-validator-3.5.2.tgz", - "integrity": "sha512-8eLCg00W9pIRZSB781UUX/H6Oskmm8xloZfr09lz5bikRpBVDlJ3hRVuxxP1SxcwsEYfJ4IU8Q19Y8/893r3rQ==", - "license": "MIT", - "peer": true - }, "node_modules/asynckit": { "version": "0.4.0", "resolved": "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz", @@ -7972,21 +7617,11 @@ "@babel/core": "^7.0.0" } }, - "node_modules/babel-runtime": { - "version": "6.26.0", - "resolved": "https://registry.npmjs.org/babel-runtime/-/babel-runtime-6.26.0.tgz", - "integrity": "sha512-ITKNuq2wKlW1fJg9sSW52eepoYgZBggvOAHC0u/CYu/qxQ9EVzThCgR69BnSXLHjy2f7SY5zaQ4yt7H9ZVxY2g==", - "license": "MIT", - "peer": true, - "dependencies": { - "core-js": "^2.4.0", - "regenerator-runtime": "^0.11.0" - } - }, "node_modules/balanced-match": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", - "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==" + "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==", + "dev": true }, "node_modules/base64-js": { "version": "1.5.1", @@ -8467,6 +8102,8 @@ "version": "2.0.1", "resolved": "https://registry.npmjs.org/ccount/-/ccount-2.0.1.tgz", "integrity": "sha512-eyrF0jiFpY+3drT6383f1qhkbGsLSifNAjA61IUjZjmLCWjItY6LB9ft9YhoDgwfmclB2zhu51Lc7+95b8NRAg==", + "dev": true, + "license": "MIT", "funding": { "type": "github", "url": "https://github.com/sponsors/wooorm" @@ -8515,6 +8152,8 @@ "version": "2.1.0", "resolved": "https://registry.npmjs.org/character-entities-html4/-/character-entities-html4-2.1.0.tgz", "integrity": "sha512-1v7fgQRj6hnSwFpq1Eu0ynr/CDEw0rXo2B61qXrLNdHZmPKgb7fqS1a2JwF0rISo9q77jDI8VMEHoApn8qDoZA==", + "dev": true, + "license": "MIT", "funding": { "type": "github", "url": "https://github.com/sponsors/wooorm" @@ -8524,6 +8163,8 @@ "version": "3.0.0", "resolved": "https://registry.npmjs.org/character-entities-legacy/-/character-entities-legacy-3.0.0.tgz", "integrity": "sha512-RpPp0asT/6ufRm//AJVwpViZbGM/MkjQFxJccQRHmISF/22NBtsHqAWmL+/pmkPWoIUJdWyeVleTl1wydHATVQ==", + "dev": true, + "license": "MIT", "funding": { "type": "github", "url": "https://github.com/sponsors/wooorm" @@ -8853,6 +8494,8 @@ "version": "2.0.3", "resolved": "https://registry.npmjs.org/comma-separated-tokens/-/comma-separated-tokens-2.0.3.tgz", "integrity": "sha512-Fu4hJdvzeylCfQPp9SGWidpzrMs7tTrlu6Vb8XGaRGck8QSNZJJp538Wrb60Lax4fPwR64ViY468OIUTbRlGZg==", + "dev": true, + "license": "MIT", "funding": { "type": "github", "url": "https://github.com/sponsors/wooorm" @@ -8867,29 +8510,6 @@ "node": "^12.20.0 || >=14" } }, - "node_modules/component-classes": { - "version": "1.2.6", - "resolved": "https://registry.npmjs.org/component-classes/-/component-classes-1.2.6.tgz", - "integrity": "sha512-hPFGULxdwugu1QWW3SvVOCUHLzO34+a2J6Wqy0c5ASQkfi9/8nZcBB0ZohaEbXOQlCflMAEMmEWk7u7BVs4koA==", - "license": "MIT", - "peer": true, - "dependencies": { - "component-indexof": "0.0.3" - } - }, - "node_modules/component-indexof": { - "version": "0.0.3", - "resolved": "https://registry.npmjs.org/component-indexof/-/component-indexof-0.0.3.tgz", - "integrity": "sha512-puDQKvx/64HZXb4hBwIcvQLaLgux8o1CbWl39s41hrIIZDl1lJiD5jc22gj3RBeGK0ovxALDYpIbyjqDUUl0rw==", - "peer": true - }, - "node_modules/compute-scroll-into-view": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/compute-scroll-into-view/-/compute-scroll-into-view-3.1.0.tgz", - "integrity": "sha512-rj8l8pD4bJ1nx+dAkMhV1xB5RuZEyVysfxJqB1pRchh1KVvwOv9b7CGB8ZfjTImVv2oF+sYMUkMZq6Na5Ftmbg==", - "license": "MIT", - "peer": true - }, "node_modules/concat-map": { "version": "0.0.1", "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", @@ -9020,25 +8640,6 @@ "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.9.0.tgz", "integrity": "sha512-ASFBup0Mz1uyiIjANan1jzLQami9z1PoYSZCiiYW2FczPbenXc45FZdBZLzOT+r6+iciuEModtmCti+hjaAk0A==" }, - "node_modules/copy-to-clipboard": { - "version": "3.3.3", - "resolved": "https://registry.npmjs.org/copy-to-clipboard/-/copy-to-clipboard-3.3.3.tgz", - "integrity": "sha512-2KV8NhB5JqC3ky0r9PMCAZKbUHSwtEo4CwCs0KXgruG43gX5PMqDEBbVU4OUzw2MuAWUfsuFmWvEKG5QRfSnJA==", - "license": "MIT", - "peer": true, - "dependencies": { - "toggle-selection": "^1.0.6" - } - }, - "node_modules/core-js": { - "version": "2.6.12", - "resolved": "https://registry.npmjs.org/core-js/-/core-js-2.6.12.tgz", - "integrity": "sha512-Kb2wC0fvsWfQrgk8HU5lW6U/Lcs8+9aaYcy4ZFc6DDlo4nZ7n70dEgE5rtR0oG6ufKDUnrwfWL1mXR5ljDatrQ==", - "deprecated": "core-js@<3.23.3 is no longer maintained and not recommended for usage due to the number of issues. Because of the V8 engine whims, feature detection in old core-js versions could cause a slowdown up to 100x even if nothing is polyfilled. Some versions have web compatibility issues. Please, upgrade your dependencies to the actual version of core-js.", - "hasInstallScript": true, - "license": "MIT", - "peer": true - }, "node_modules/core-js-compat": { "version": "3.38.1", "resolved": "https://registry.npmjs.org/core-js-compat/-/core-js-compat-3.38.1.tgz", @@ -9111,17 +8712,6 @@ "sha.js": "^2.4.8" } }, - "node_modules/create-react-class": { - "version": "15.7.0", - "resolved": "https://registry.npmjs.org/create-react-class/-/create-react-class-15.7.0.tgz", - "integrity": "sha512-QZv4sFWG9S5RUvkTYWbflxeZX+JG7Cz0Tn33rQBJ+WFQTqTfUTjMjiv9tnfXazjsO5r0KhPs+AqCjyrQX6h2ng==", - "license": "MIT", - "peer": true, - "dependencies": { - "loose-envify": "^1.3.1", - "object-assign": "^4.1.1" - } - }, "node_modules/create-require": { "version": "1.1.1", "resolved": "https://registry.npmjs.org/create-require/-/create-require-1.1.1.tgz", @@ -9201,17 +8791,6 @@ "node": ">=8" } }, - "node_modules/css-animation": { - "version": "1.6.1", - "resolved": "https://registry.npmjs.org/css-animation/-/css-animation-1.6.1.tgz", - "integrity": "sha512-/48+/BaEaHRY6kNQ2OIPzKf9A6g8WjZYjhiNDNuIVbsm5tXCGIAsHDjB4Xu1C4vXJtUWZo26O68OQkDpNBaPog==", - "license": "MIT", - "peer": true, - "dependencies": { - "babel-runtime": "6.x", - "component-classes": "^1.2.5" - } - }, "node_modules/css-box-model": { "version": "1.2.1", "resolved": "https://registry.npmjs.org/css-box-model/-/css-box-model-1.2.1.tgz", @@ -9627,6 +9206,7 @@ "version": "1.0.3", "resolved": "https://registry.npmjs.org/detect-libc/-/detect-libc-1.0.3.tgz", "integrity": "sha512-pGjwhsmsp4kL2RTz08wcOlGN83otlqHeD/Z5T8GXZB+/YcpQ/dgo+lbU8ZsGxV0HIvqqxo9l7mqYwyYMD9bKDg==", + "dev": true, "optional": true, "bin": { "detect-libc": "bin/detect-libc.js" @@ -9639,6 +9219,8 @@ "version": "1.1.0", "resolved": "https://registry.npmjs.org/devlop/-/devlop-1.1.0.tgz", "integrity": "sha512-RWmIqhcFf1lRYBvNmr7qTNuyCt/7/ns2jbpp1+PalgE/rDQcBT0fioSMUpJ93irlUhC5hrg4cYqe6U+0ImW0rA==", + "dev": true, + "license": "MIT", "dependencies": { "dequal": "^2.0.0" }, @@ -9702,13 +9284,6 @@ "integrity": "sha512-X7BJ2yElsnOJ30pZF4uIIDfBEVgF4XEBxL9Bxhy6dnrm5hkzqmsWHGTiHqRiITNhMyFLyAiWndIJP7Z1NTteDg==", "dev": true }, - "node_modules/dom-align": { - "version": "1.12.4", - "resolved": "https://registry.npmjs.org/dom-align/-/dom-align-1.12.4.tgz", - "integrity": "sha512-R8LUSEay/68zE5c8/3BDxiTEvgb4xZTF0RKmAHfiEVN3klfIpXfi2/QCoiWPccVQ0J/ZGdz9OjzL4uJEP/MRAw==", - "license": "MIT", - "peer": true - }, "node_modules/dom-helpers": { "version": "5.2.1", "resolved": "https://registry.npmjs.org/dom-helpers/-/dom-helpers-5.2.1.tgz", @@ -9893,6 +9468,13 @@ "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==" }, + "node_modules/emoji-regex-xs": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/emoji-regex-xs/-/emoji-regex-xs-1.0.0.tgz", + "integrity": "sha512-LRlerrMYoIDrT6jgpeZ2YYl/L8EulRTt5hQcYjy5AInh7HWXKimpqx68aknBFpGL2+/IcogTcaydJEgaTmOpDg==", + "dev": true, + "license": "MIT" + }, "node_modules/encodeurl": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/encodeurl/-/encodeurl-1.0.2.tgz", @@ -11295,129 +10877,6 @@ "node": ">= 6" } }, - "node_modules/form-render": { - "version": "2.5.1", - "resolved": "https://registry.npmjs.org/form-render/-/form-render-2.5.1.tgz", - "integrity": "sha512-oNbJ+McqB5h1yuyxYAT3ixJF8itmHlnKvqDgQhJT9Tw1c3yGwfRnVXboRxBV+Myz0dkf47zL6lyY1l74yQsWsg==", - "license": "MIT", - "peer": true, - "dependencies": { - "@ant-design/icons": "^4.0.2", - "ahooks": "^3.7.5", - "async-validator": "^3.5.1", - "classnames": "^2.3.1", - "color": "^3.1.2", - "dayjs": "^1.11.7", - "lodash-es": "^4.17.21", - "rc-color-picker": "^1.2.6", - "virtualizedtableforantd4": "^1.1.2", - "zustand": "^4.1.5" - }, - "peerDependencies": { - "antd": "4.x || 5.x", - "react": ">=16.9.0", - "react-dom": ">=16.9.0" - } - }, - "node_modules/form-render/node_modules/@ant-design/colors": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/@ant-design/colors/-/colors-6.0.0.tgz", - "integrity": "sha512-qAZRvPzfdWHtfameEGP2Qvuf838NhergR35o+EuVyB5XvSA98xod5r4utvi4TJ3ywmevm290g9nsCG5MryrdWQ==", - "license": "MIT", - "peer": true, - "dependencies": { - "@ctrl/tinycolor": "^3.4.0" - } - }, - "node_modules/form-render/node_modules/@ant-design/icons": { - "version": "4.8.3", - "resolved": "https://registry.npmjs.org/@ant-design/icons/-/icons-4.8.3.tgz", - "integrity": "sha512-HGlIQZzrEbAhpJR6+IGdzfbPym94Owr6JZkJ2QCCnOkPVIWMO2xgIVcOKnl8YcpijIo39V7l2qQL5fmtw56cMw==", - "license": "MIT", - "peer": true, - "dependencies": { - "@ant-design/colors": "^6.0.0", - "@ant-design/icons-svg": "^4.3.0", - "@babel/runtime": "^7.11.2", - "classnames": "^2.2.6", - "lodash": "^4.17.15", - "rc-util": "^5.9.4" - }, - "engines": { - "node": ">=8" - }, - "peerDependencies": { - "react": ">=16.0.0", - "react-dom": ">=16.0.0" - } - }, - "node_modules/form-render/node_modules/color": { - "version": "3.2.1", - "resolved": "https://registry.npmjs.org/color/-/color-3.2.1.tgz", - "integrity": "sha512-aBl7dZI9ENN6fUGC7mWpMTPNHmWUSNan9tuWN6ahh5ZLNk9baLJOnSMlrQkHcrfFgz2/RigjUVAjdx36VcemKA==", - "license": "MIT", - "peer": true, - "dependencies": { - "color-convert": "^1.9.3", - "color-string": "^1.6.0" - } - }, - "node_modules/form-render/node_modules/color-convert": { - "version": "1.9.3", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", - "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", - "license": "MIT", - "peer": true, - "dependencies": { - "color-name": "1.1.3" - } - }, - "node_modules/form-render/node_modules/color-name": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", - "integrity": "sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==", - "license": "MIT", - "peer": true - }, - "node_modules/form-render/node_modules/rc-color-picker": { - "version": "1.2.6", - "resolved": "https://registry.npmjs.org/rc-color-picker/-/rc-color-picker-1.2.6.tgz", - "integrity": "sha512-AaC9Pg7qCHSy5M4eVbqDIaNb2FC4SEw82GOHB2C4R/+vF2FVa/r5XA+Igg5+zLPmAvBLhz9tL4MAfkRA8yWNJw==", - "license": "MIT", - "peer": true, - "dependencies": { - "classnames": "^2.2.5", - "prop-types": "^15.5.8", - "rc-trigger": "1.x", - "rc-util": "^4.0.2", - "tinycolor2": "^1.4.1" - }, - "peerDependencies": { - "react": "16.x", - "react-dom": "16.x" - } - }, - "node_modules/form-render/node_modules/rc-color-picker/node_modules/rc-util": { - "version": "4.21.1", - "resolved": "https://registry.npmjs.org/rc-util/-/rc-util-4.21.1.tgz", - "integrity": "sha512-Z+vlkSQVc1l8O2UjR3WQ+XdWlhj5q9BMQNLk2iOBch75CqPfrJyGtcWMcnhRlNuDu0Ndtt4kLVO8JI8BrABobg==", - "license": "MIT", - "peer": true, - "dependencies": { - "add-dom-event-listener": "^1.1.0", - "prop-types": "^15.5.10", - "react-is": "^16.12.0", - "react-lifecycles-compat": "^3.0.4", - "shallowequal": "^1.1.0" - } - }, - "node_modules/form-render/node_modules/react-is": { - "version": "16.13.1", - "resolved": "https://registry.npmjs.org/react-is/-/react-is-16.13.1.tgz", - "integrity": "sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==", - "license": "MIT", - "peer": true - }, "node_modules/fs.realpath": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz", @@ -11908,9 +11367,11 @@ } }, "node_modules/hast-util-to-html": { - "version": "9.0.2", - "resolved": "https://registry.npmjs.org/hast-util-to-html/-/hast-util-to-html-9.0.2.tgz", - "integrity": "sha512-RP5wNpj5nm1Z8cloDv4Sl4RS8jH5HYa0v93YB6Wb4poEzgMo/dAAL0KcT4974dCjcNG5pkLqTImeFHHCwwfY3g==", + "version": "9.0.4", + "resolved": "https://registry.npmjs.org/hast-util-to-html/-/hast-util-to-html-9.0.4.tgz", + "integrity": "sha512-wxQzXtdbhiwGAUKrnQJXlOPmHnEehzphwkK7aluUPQ+lEc1xefC8pblMgpp2w5ldBTEfveRIrADcrhGIWrlTDA==", + "dev": true, + "license": "MIT", "dependencies": { "@types/hast": "^3.0.0", "@types/unist": "^3.0.0", @@ -11933,6 +11394,8 @@ "version": "3.0.0", "resolved": "https://registry.npmjs.org/hast-util-whitespace/-/hast-util-whitespace-3.0.0.tgz", "integrity": "sha512-88JUN06ipLwsnv+dVn+OIYOvAuvBMy/Qoi6O7mQHxdPXpjy+Cd6xRkWwux7DKO+4sYILtLBRIKgsdpS2gQc7qw==", + "dev": true, + "license": "MIT", "dependencies": { "@types/hast": "^3.0.0" }, @@ -12029,6 +11492,8 @@ "version": "3.0.0", "resolved": "https://registry.npmjs.org/html-void-elements/-/html-void-elements-3.0.0.tgz", "integrity": "sha512-bEqo66MRXsUGxWHV5IP0PUiAWwoEjba4VCzg0LjFJBpchPaTfyfCKTG6bc5F8ucKec3q5y6qOdGyYTSBEvhCrg==", + "dev": true, + "license": "MIT", "funding": { "type": "github", "url": "https://github.com/sponsors/wooorm" @@ -12219,7 +11684,7 @@ "version": "5.0.2", "resolved": "https://registry.npmjs.org/immutable/-/immutable-5.0.2.tgz", "integrity": "sha512-1NU7hWZDkV7hJ4PJ9dur9gTNQ4ePNPN4k9/0YhwjzykTi/+3Q5pF93YU5QoVj8BuOnhLgaY8gs0U2pj4kSYVcw==", - "devOptional": true + "dev": true }, "node_modules/import-fresh": { "version": "3.3.0", @@ -12344,13 +11809,6 @@ "node": ">=12" } }, - "node_modules/intersection-observer": { - "version": "0.12.2", - "resolved": "https://registry.npmjs.org/intersection-observer/-/intersection-observer-0.12.2.tgz", - "integrity": "sha512-7m1vEcPCxXYI8HqnL8CKI6siDyD+eIWSwgB3DZA+ZTogxk9I4CDnj4wilt9x/+/QbHI4YG5YZNmC6458/e9Ktg==", - "license": "Apache-2.0", - "peer": true - }, "node_modules/invariant": { "version": "2.2.4", "resolved": "https://registry.npmjs.org/invariant/-/invariant-2.2.4.tgz", @@ -14658,16 +14116,6 @@ "integrity": "sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==", "dev": true }, - "node_modules/json2mq": { - "version": "0.2.0", - "resolved": "https://registry.npmjs.org/json2mq/-/json2mq-0.2.0.tgz", - "integrity": "sha512-SzoRg7ux5DWTII9J2qkrZrqV1gt+rTaoufMxEzXbS26Uid0NwaJd123HcoB80TgubEppxxIGdNxCx50fEoEWQA==", - "license": "MIT", - "peer": true, - "dependencies": { - "string-convert": "^0.2.0" - } - }, "node_modules/json5": { "version": "2.2.3", "resolved": "https://registry.npmjs.org/json5/-/json5-2.2.3.tgz", @@ -14798,6 +14246,7 @@ "version": "5.0.0", "resolved": "https://registry.npmjs.org/linkify-it/-/linkify-it-5.0.0.tgz", "integrity": "sha512-5aHCbzQRADcdP+ATqnDuhhJ/MRIqDkZX5pyjFHRRysS8vZ5AbqGEoFIb6pYHPZ+L/OC2Lc+xT8uHVVR5CAK/wQ==", + "dev": true, "dependencies": { "uc.micro": "^2.0.0" } @@ -15183,14 +14632,8 @@ "node_modules/lodash": { "version": "4.17.21", "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz", - "integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==" - }, - "node_modules/lodash-es": { - "version": "4.17.21", - "resolved": "https://registry.npmjs.org/lodash-es/-/lodash-es-4.17.21.tgz", - "integrity": "sha512-mKnC+QJ9pWVzv+C4/U3rRsHapFfHvQFoFB92e52xeyGMcX6/OlIl78je1u8vePzYZSkkogMPJ2yjxxsb89cxyw==", - "license": "MIT", - "peer": true + "integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==", + "dev": true }, "node_modules/lodash._reinterpolate": { "version": "3.0.0", @@ -15428,7 +14871,8 @@ "node_modules/lunr": { "version": "2.3.9", "resolved": "https://registry.npmjs.org/lunr/-/lunr-2.3.9.tgz", - "integrity": "sha512-zTU3DaZaF3Rt9rhN3uBMGQD3dD2/vFQqnvZCDv4dl5iOzq2IZQqTxu90r4E5J+nP70J3ilqVCrbho2eWaeW8Ow==" + "integrity": "sha512-zTU3DaZaF3Rt9rhN3uBMGQD3dD2/vFQqnvZCDv4dl5iOzq2IZQqTxu90r4E5J+nP70J3ilqVCrbho2eWaeW8Ow==", + "dev": true }, "node_modules/lz-string": { "version": "1.5.0", @@ -15495,6 +14939,7 @@ "version": "14.1.0", "resolved": "https://registry.npmjs.org/markdown-it/-/markdown-it-14.1.0.tgz", "integrity": "sha512-a54IwgWPaeBCAAsv13YgmALOF1elABB08FxO9i+r4VFk5Vl4pKokRPeX8u5TCgSsPi6ec1otfLjdOpVcgbpshg==", + "dev": true, "dependencies": { "argparse": "^2.0.1", "entities": "^4.4.0", @@ -15510,7 +14955,8 @@ "node_modules/markdown-it/node_modules/argparse": { "version": "2.0.1", "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", - "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==" + "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==", + "dev": true }, "node_modules/markdown-link": { "version": "0.1.1", @@ -15564,6 +15010,8 @@ "version": "13.2.0", "resolved": "https://registry.npmjs.org/mdast-util-to-hast/-/mdast-util-to-hast-13.2.0.tgz", "integrity": "sha512-QGYKEuUsYT9ykKBCMOEDLsU5JRObWQusAolFMeko/tYPufNkRffBAQjIE+99jbA87xv6FgmjLtwjh9wBWajwAA==", + "dev": true, + "license": "MIT", "dependencies": { "@types/hast": "^3.0.0", "@types/mdast": "^4.0.0", @@ -15583,7 +15031,8 @@ "node_modules/mdurl": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/mdurl/-/mdurl-2.0.0.tgz", - "integrity": "sha512-Lf+9+2r+Tdp5wXDXC4PcIBjTDtq4UKjCPMQhKIuzpJNW0b96kVqSwW0bT7FhRSfmAiFYgP+SCRvdrDozfh0U5w==" + "integrity": "sha512-Lf+9+2r+Tdp5wXDXC4PcIBjTDtq4UKjCPMQhKIuzpJNW0b96kVqSwW0bT7FhRSfmAiFYgP+SCRvdrDozfh0U5w==", + "dev": true }, "node_modules/memoize-one": { "version": "5.2.1", @@ -15611,9 +15060,10 @@ } }, "node_modules/micromark-util-character": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/micromark-util-character/-/micromark-util-character-2.1.0.tgz", - "integrity": "sha512-KvOVV+X1yLBfs9dCBSopq/+G1PcgT3lAK07mC4BzXi5E7ahzMAF8oIupDDJ6mievI6F+lAATkbQQlQixJfT3aQ==", + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/micromark-util-character/-/micromark-util-character-2.1.1.tgz", + "integrity": "sha512-wv8tdUTJ3thSFFFJKtpYKOYiGP2+v96Hvk4Tu8KpCAsTMs6yi+nVmGh1syvSCsaxz45J6Jbw+9DD6g97+NV67Q==", + "dev": true, "funding": [ { "type": "GitHub Sponsors", @@ -15624,15 +15074,17 @@ "url": "https://opencollective.com/unified" } ], + "license": "MIT", "dependencies": { "micromark-util-symbol": "^2.0.0", "micromark-util-types": "^2.0.0" } }, "node_modules/micromark-util-encode": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/micromark-util-encode/-/micromark-util-encode-2.0.0.tgz", - "integrity": "sha512-pS+ROfCXAGLWCOc8egcBvT0kf27GoWMqtdarNfDcjb6YLuV5cM3ioG45Ys2qOVqeqSbjaKg72vU+Wby3eddPsA==", + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/micromark-util-encode/-/micromark-util-encode-2.0.1.tgz", + "integrity": "sha512-c3cVx2y4KqUnwopcO9b/SCdo2O67LwJJ/UyqGfbigahfegL9myoEFoDYZgkT7f36T0bLrM9hZTAaAyH+PCAXjw==", + "dev": true, "funding": [ { "type": "GitHub Sponsors", @@ -15642,12 +15094,14 @@ "type": "OpenCollective", "url": "https://opencollective.com/unified" } - ] + ], + "license": "MIT" }, "node_modules/micromark-util-sanitize-uri": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/micromark-util-sanitize-uri/-/micromark-util-sanitize-uri-2.0.0.tgz", - "integrity": "sha512-WhYv5UEcZrbAtlsnPuChHUAsu/iBPOVaEVsntLBIdpibO0ddy8OzavZz3iL2xVvBZOpolujSliP65Kq0/7KIYw==", + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/micromark-util-sanitize-uri/-/micromark-util-sanitize-uri-2.0.1.tgz", + "integrity": "sha512-9N9IomZ/YuGGZZmQec1MbgxtlgougxTodVwDzzEouPKo3qFWvymFHWcnDi2vzV1ff6kas9ucW+o3yzJK9YB1AQ==", + "dev": true, "funding": [ { "type": "GitHub Sponsors", @@ -15658,6 +15112,7 @@ "url": "https://opencollective.com/unified" } ], + "license": "MIT", "dependencies": { "micromark-util-character": "^2.0.0", "micromark-util-encode": "^2.0.0", @@ -15665,9 +15120,10 @@ } }, "node_modules/micromark-util-symbol": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/micromark-util-symbol/-/micromark-util-symbol-2.0.0.tgz", - "integrity": "sha512-8JZt9ElZ5kyTnO94muPxIGS8oyElRJaiJO8EzV6ZSyGQ1Is8xwl4Q45qU5UOg+bGH4AikWziz0iN4sFLWs8PGw==", + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/micromark-util-symbol/-/micromark-util-symbol-2.0.1.tgz", + "integrity": "sha512-vs5t8Apaud9N28kgCrRUdEed4UJ+wWNvicHLPxCa9ENlYuAY31M0ETy5y1vA33YoNPDFTghEbnh6efaE8h4x0Q==", + "dev": true, "funding": [ { "type": "GitHub Sponsors", @@ -15677,12 +15133,14 @@ "type": "OpenCollective", "url": "https://opencollective.com/unified" } - ] + ], + "license": "MIT" }, "node_modules/micromark-util-types": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/micromark-util-types/-/micromark-util-types-2.0.0.tgz", - "integrity": "sha512-oNh6S2WMHWRZrmutsRmDDfkzKtxF+bc2VxLC9dvtrDIRFln627VsFP6fLMgTryGDljgLPjkrzQSDcPrjPyDJ5w==", + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/micromark-util-types/-/micromark-util-types-2.0.1.tgz", + "integrity": "sha512-534m2WhVTddrcKVepwmVEVnUAmtrx9bfIjNoQHRqfnvdaHQiFytEhJoTgpWJvDEXCO5gLTQh3wYC1PgOJA4NSQ==", + "dev": true, "funding": [ { "type": "GitHub Sponsors", @@ -15692,7 +15150,8 @@ "type": "OpenCollective", "url": "https://opencollective.com/unified" } - ] + ], + "license": "MIT" }, "node_modules/micromatch": { "version": "4.0.8", @@ -15894,6 +15353,7 @@ "version": "7.1.1", "resolved": "https://registry.npmjs.org/node-addon-api/-/node-addon-api-7.1.1.tgz", "integrity": "sha512-5m3bsyrjFWE1xf7nz7YXdN4udnVtXK6/Yfgn5qnahL6bCkf2yKt4k3nuTKAtT4r3IG8JNR2ncsIMdZuAzJjHQQ==", + "dev": true, "optional": true }, "node_modules/node-fetch": { @@ -16280,15 +15740,16 @@ "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/oniguruma-to-js": { - "version": "0.4.3", - "resolved": "https://registry.npmjs.org/oniguruma-to-js/-/oniguruma-to-js-0.4.3.tgz", - "integrity": "sha512-X0jWUcAlxORhOqqBREgPMgnshB7ZGYszBNspP+tS9hPD3l13CdaXcHbgImoHUHlrvGx/7AvFEkTRhAGYh+jzjQ==", + "node_modules/oniguruma-to-es": { + "version": "0.10.0", + "resolved": "https://registry.npmjs.org/oniguruma-to-es/-/oniguruma-to-es-0.10.0.tgz", + "integrity": "sha512-zapyOUOCJxt+xhiNRPPMtfJkHGsZ98HHB9qJEkdT8BGytO/+kpe4m1Ngf0MzbzTmhacn11w9yGeDP6tzDhnCdg==", + "dev": true, + "license": "MIT", "dependencies": { - "regex": "^4.3.2" - }, - "funding": { - "url": "https://github.com/sponsors/antfu" + "emoji-regex-xs": "^1.0.0", + "regex": "^5.1.1", + "regex-recursion": "^5.1.1" } }, "node_modules/open": { @@ -16606,13 +16067,6 @@ "node": ">=0.12" } }, - "node_modules/performance-now": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/performance-now/-/performance-now-2.1.0.tgz", - "integrity": "sha512-7EAHlyLHI56VEIdK57uwHdHKIaAGbnXPiw0yWbarQZOKaKpvUIgW0jWRVLiatnM+XXlSwsanIBH/hzGMJulMow==", - "license": "MIT", - "peer": true - }, "node_modules/picocolors": { "version": "1.1.0", "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.1.0.tgz", @@ -17026,6 +16480,8 @@ "version": "6.5.0", "resolved": "https://registry.npmjs.org/property-information/-/property-information-6.5.0.tgz", "integrity": "sha512-PgTgs/BlvHxOu8QuEN7wi5A0OmXaBcHpmCSTehcs6Uuu9IkDIEo13Hy7n898RHfrQ49vKCoGeWZSaAK01nwVig==", + "dev": true, + "license": "MIT", "funding": { "type": "github", "url": "https://github.com/sponsors/wooorm" @@ -17078,6 +16534,7 @@ "version": "2.3.1", "resolved": "https://registry.npmjs.org/punycode.js/-/punycode.js-2.3.1.tgz", "integrity": "sha512-uxFIHU0YlHYhDQtV4R9J6a52SLx28BCjT+4ieh7IGbgwVJWO+km431c4yRlREUAsAmt/uMjQUyQHNEPf0M39CA==", + "dev": true, "engines": { "node": ">=6" } @@ -17141,16 +16598,6 @@ } ] }, - "node_modules/raf": { - "version": "3.4.1", - "resolved": "https://registry.npmjs.org/raf/-/raf-3.4.1.tgz", - "integrity": "sha512-Sq4CW4QhwOHE8ucn6J34MqtZCeWFP2aQSmrlroYgqAV1PjStIhJXxYuTgUIfkEk7zTLjmIjLmU5q+fbD1NnOJA==", - "license": "MIT", - "peer": true, - "dependencies": { - "performance-now": "^2.1.0" - } - }, "node_modules/raf-schd": { "version": "4.0.3", "resolved": "https://registry.npmjs.org/raf-schd/-/raf-schd-4.0.3.tgz", @@ -17209,855 +16656,110 @@ "rc": "cli.js" } }, - "node_modules/rc-align": { - "version": "2.4.5", - "resolved": "https://registry.npmjs.org/rc-align/-/rc-align-2.4.5.tgz", - "integrity": "sha512-nv9wYUYdfyfK+qskThf4BQUSIadeI/dCsfaMZfNEoxm9HwOIioQ+LyqmMK6jWHAZQgOzMLaqawhuBXlF63vgjw==", - "license": "MIT", - "peer": true, - "dependencies": { - "babel-runtime": "^6.26.0", - "dom-align": "^1.7.0", - "prop-types": "^15.5.8", - "rc-util": "^4.0.4" - } - }, - "node_modules/rc-align/node_modules/rc-util": { - "version": "4.21.1", - "resolved": "https://registry.npmjs.org/rc-util/-/rc-util-4.21.1.tgz", - "integrity": "sha512-Z+vlkSQVc1l8O2UjR3WQ+XdWlhj5q9BMQNLk2iOBch75CqPfrJyGtcWMcnhRlNuDu0Ndtt4kLVO8JI8BrABobg==", - "license": "MIT", - "peer": true, - "dependencies": { - "add-dom-event-listener": "^1.1.0", - "prop-types": "^15.5.10", - "react-is": "^16.12.0", - "react-lifecycles-compat": "^3.0.4", - "shallowequal": "^1.1.0" - } - }, - "node_modules/rc-align/node_modules/react-is": { - "version": "16.13.1", - "resolved": "https://registry.npmjs.org/react-is/-/react-is-16.13.1.tgz", - "integrity": "sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==", - "license": "MIT", - "peer": true - }, - "node_modules/rc-animate": { - "version": "2.11.1", - "resolved": "https://registry.npmjs.org/rc-animate/-/rc-animate-2.11.1.tgz", - "integrity": "sha512-1NyuCGFJG/0Y+9RKh5y/i/AalUCA51opyyS/jO2seELpgymZm2u9QV3xwODwEuzkmeQ1BDPxMLmYLcTJedPlkQ==", - "license": "MIT", - "peer": true, - "dependencies": { - "babel-runtime": "6.x", - "classnames": "^2.2.6", - "css-animation": "^1.3.2", - "prop-types": "15.x", - "raf": "^3.4.0", - "rc-util": "^4.15.3", - "react-lifecycles-compat": "^3.0.4" - } - }, - "node_modules/rc-animate/node_modules/rc-util": { - "version": "4.21.1", - "resolved": "https://registry.npmjs.org/rc-util/-/rc-util-4.21.1.tgz", - "integrity": "sha512-Z+vlkSQVc1l8O2UjR3WQ+XdWlhj5q9BMQNLk2iOBch75CqPfrJyGtcWMcnhRlNuDu0Ndtt4kLVO8JI8BrABobg==", - "license": "MIT", - "peer": true, - "dependencies": { - "add-dom-event-listener": "^1.1.0", - "prop-types": "^15.5.10", - "react-is": "^16.12.0", - "react-lifecycles-compat": "^3.0.4", - "shallowequal": "^1.1.0" + "node_modules/rc/node_modules/strip-json-comments": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-2.0.1.tgz", + "integrity": "sha512-4gB8na07fecVVkOI6Rs4e7T6NOTki5EmL7TUduTs6bu3EdnSycntVJ4re8kgZA+wx9IueI2Y11bfbgwtzuE0KQ==", + "dev": true, + "engines": { + "node": ">=0.10.0" } }, - "node_modules/rc-animate/node_modules/react-is": { - "version": "16.13.1", - "resolved": "https://registry.npmjs.org/react-is/-/react-is-16.13.1.tgz", - "integrity": "sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==", - "license": "MIT", - "peer": true - }, - "node_modules/rc-cascader": { - "version": "3.30.0", - "resolved": "https://registry.npmjs.org/rc-cascader/-/rc-cascader-3.30.0.tgz", - "integrity": "sha512-rrzSbk1Bdqbu+pDwiLCLHu72+lwX9BZ28+JKzoi0DWZ4N29QYFeip8Gctl33QVd2Xg3Rf14D3yAOG76ElJw16w==", - "license": "MIT", - "peer": true, + "node_modules/react": { + "version": "18.3.1", + "resolved": "https://registry.npmjs.org/react/-/react-18.3.1.tgz", + "integrity": "sha512-wS+hAgJShR0KhEvPJArfuPVN1+Hz1t0Y6n5jLrGQbkb4urgPE/0Rve+1kMB1v/oWgHgm4WIcV+i7F2pTVj+2iQ==", "dependencies": { - "@babel/runtime": "^7.25.7", - "classnames": "^2.3.1", - "rc-select": "~14.16.2", - "rc-tree": "~5.10.1", - "rc-util": "^5.43.0" + "loose-envify": "^1.1.0" }, - "peerDependencies": { - "react": ">=16.9.0", - "react-dom": ">=16.9.0" + "engines": { + "node": ">=0.10.0" } }, - "node_modules/rc-checkbox": { - "version": "3.3.0", - "resolved": "https://registry.npmjs.org/rc-checkbox/-/rc-checkbox-3.3.0.tgz", - "integrity": "sha512-Ih3ZaAcoAiFKJjifzwsGiT/f/quIkxJoklW4yKGho14Olulwn8gN7hOBve0/WGDg5o/l/5mL0w7ff7/YGvefVw==", - "license": "MIT", - "peer": true, + "node_modules/react-async-script": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/react-async-script/-/react-async-script-1.2.0.tgz", + "integrity": "sha512-bCpkbm9JiAuMGhkqoAiC0lLkb40DJ0HOEJIku+9JDjxX3Rcs+ztEOG13wbrOskt3n2DTrjshhaQ/iay+SnGg5Q==", "dependencies": { - "@babel/runtime": "^7.10.1", - "classnames": "^2.3.2", - "rc-util": "^5.25.2" + "hoist-non-react-statics": "^3.3.0", + "prop-types": "^15.5.0" }, "peerDependencies": { - "react": ">=16.9.0", - "react-dom": ">=16.9.0" + "react": ">=16.4.1" } }, - "node_modules/rc-collapse": { - "version": "3.9.0", - "resolved": "https://registry.npmjs.org/rc-collapse/-/rc-collapse-3.9.0.tgz", - "integrity": "sha512-swDdz4QZ4dFTo4RAUMLL50qP0EY62N2kvmk2We5xYdRwcRn8WcYtuetCJpwpaCbUfUt5+huLpVxhvmnK+PHrkA==", - "license": "MIT", - "peer": true, + "node_modules/react-beautiful-dnd": { + "version": "13.1.1", + "resolved": "https://registry.npmjs.org/react-beautiful-dnd/-/react-beautiful-dnd-13.1.1.tgz", + "integrity": "sha512-0Lvs4tq2VcrEjEgDXHjT98r+63drkKEgqyxdA7qD3mvKwga6a5SscbdLPO2IExotU1jW8L0Ksdl0Cj2AF67nPQ==", "dependencies": { - "@babel/runtime": "^7.10.1", - "classnames": "2.x", - "rc-motion": "^2.3.4", - "rc-util": "^5.27.0" + "@babel/runtime": "^7.9.2", + "css-box-model": "^1.2.0", + "memoize-one": "^5.1.1", + "raf-schd": "^4.0.2", + "react-redux": "^7.2.0", + "redux": "^4.0.4", + "use-memo-one": "^1.1.1" }, "peerDependencies": { - "react": ">=16.9.0", - "react-dom": ">=16.9.0" + "react": "^16.8.5 || ^17.0.0 || ^18.0.0", + "react-dom": "^16.8.5 || ^17.0.0 || ^18.0.0" } }, - "node_modules/rc-dialog": { - "version": "9.6.0", - "resolved": "https://registry.npmjs.org/rc-dialog/-/rc-dialog-9.6.0.tgz", - "integrity": "sha512-ApoVi9Z8PaCQg6FsUzS8yvBEQy0ZL2PkuvAgrmohPkN3okps5WZ5WQWPc1RNuiOKaAYv8B97ACdsFU5LizzCqg==", - "license": "MIT", - "peer": true, - "dependencies": { - "@babel/runtime": "^7.10.1", - "@rc-component/portal": "^1.0.0-8", - "classnames": "^2.2.6", - "rc-motion": "^2.3.0", - "rc-util": "^5.21.0" - }, - "peerDependencies": { - "react": ">=16.9.0", - "react-dom": ">=16.9.0" - } + "node_modules/react-beautiful-dnd/node_modules/react-is": { + "version": "17.0.2", + "resolved": "https://registry.npmjs.org/react-is/-/react-is-17.0.2.tgz", + "integrity": "sha512-w2GsyukL62IJnlaff/nRegPQR94C/XXamvMWmSHRJ4y7Ts/4ocGRmTHvOs8PSE6pB3dWOrD/nueuU5sduBsQ4w==" }, - "node_modules/rc-drawer": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/rc-drawer/-/rc-drawer-7.2.0.tgz", - "integrity": "sha512-9lOQ7kBekEJRdEpScHvtmEtXnAsy+NGDXiRWc2ZVC7QXAazNVbeT4EraQKYwCME8BJLa8Bxqxvs5swwyOepRwg==", - "license": "MIT", - "peer": true, + "node_modules/react-beautiful-dnd/node_modules/react-redux": { + "version": "7.2.9", + "resolved": "https://registry.npmjs.org/react-redux/-/react-redux-7.2.9.tgz", + "integrity": "sha512-Gx4L3uM182jEEayZfRbI/G11ZpYdNAnBs70lFVMNdHJI76XYtR+7m0MN+eAs7UHBPhWXcnFPaS+9owSCJQHNpQ==", "dependencies": { - "@babel/runtime": "^7.23.9", - "@rc-component/portal": "^1.1.1", - "classnames": "^2.2.6", - "rc-motion": "^2.6.1", - "rc-util": "^5.38.1" + "@babel/runtime": "^7.15.4", + "@types/react-redux": "^7.1.20", + "hoist-non-react-statics": "^3.3.2", + "loose-envify": "^1.4.0", + "prop-types": "^15.7.2", + "react-is": "^17.0.2" }, "peerDependencies": { - "react": ">=16.9.0", - "react-dom": ">=16.9.0" + "react": "^16.8.3 || ^17 || ^18" + }, + "peerDependenciesMeta": { + "react-dom": { + "optional": true + }, + "react-native": { + "optional": true + } } }, - "node_modules/rc-dropdown": { + "node_modules/react-beautiful-dnd/node_modules/redux": { "version": "4.2.1", - "resolved": "https://registry.npmjs.org/rc-dropdown/-/rc-dropdown-4.2.1.tgz", - "integrity": "sha512-YDAlXsPv3I1n42dv1JpdM7wJ+gSUBfeyPK59ZpBD9jQhK9jVuxpjj3NmWQHOBceA1zEPVX84T2wbdb2SD0UjmA==", - "license": "MIT", - "peer": true, + "resolved": "https://registry.npmjs.org/redux/-/redux-4.2.1.tgz", + "integrity": "sha512-LAUYz4lc+Do8/g7aeRa8JkyDErK6ekstQaqWQrNRW//MY1TvCEpMtpTWvlQ+FPbWCx+Xixu/6SHt5N0HR+SB4w==", "dependencies": { - "@babel/runtime": "^7.18.3", - "@rc-component/trigger": "^2.0.0", - "classnames": "^2.2.6", - "rc-util": "^5.44.1" - }, - "peerDependencies": { - "react": ">=16.11.0", - "react-dom": ">=16.11.0" + "@babel/runtime": "^7.9.2" } }, - "node_modules/rc-field-form": { - "version": "2.7.0", - "resolved": "https://registry.npmjs.org/rc-field-form/-/rc-field-form-2.7.0.tgz", - "integrity": "sha512-hgKsCay2taxzVnBPZl+1n4ZondsV78G++XVsMIJCAoioMjlMQR9YwAp7JZDIECzIu2Z66R+f4SFIRrO2DjDNAA==", - "license": "MIT", - "peer": true, + "node_modules/react-bootstrap": { + "version": "2.10.5", + "resolved": "https://registry.npmjs.org/react-bootstrap/-/react-bootstrap-2.10.5.tgz", + "integrity": "sha512-XueAOEn64RRkZ0s6yzUTdpFtdUXs5L5491QU//8ZcODKJNDLt/r01tNyriZccjgRImH1REynUc9pqjiRMpDLWQ==", "dependencies": { - "@babel/runtime": "^7.18.0", - "@rc-component/async-validator": "^5.0.3", - "rc-util": "^5.32.2" - }, - "engines": { - "node": ">=8.x" - }, - "peerDependencies": { - "react": ">=16.9.0", - "react-dom": ">=16.9.0" - } - }, - "node_modules/rc-image": { - "version": "7.11.0", - "resolved": "https://registry.npmjs.org/rc-image/-/rc-image-7.11.0.tgz", - "integrity": "sha512-aZkTEZXqeqfPZtnSdNUnKQA0N/3MbgR7nUnZ+/4MfSFWPFHZau4p5r5ShaI0KPEMnNjv4kijSCFq/9wtJpwykw==", - "license": "MIT", - "peer": true, - "dependencies": { - "@babel/runtime": "^7.11.2", - "@rc-component/portal": "^1.0.2", - "classnames": "^2.2.6", - "rc-dialog": "~9.6.0", - "rc-motion": "^2.6.2", - "rc-util": "^5.34.1" - }, - "peerDependencies": { - "react": ">=16.9.0", - "react-dom": ">=16.9.0" - } - }, - "node_modules/rc-input": { - "version": "1.6.4", - "resolved": "https://registry.npmjs.org/rc-input/-/rc-input-1.6.4.tgz", - "integrity": "sha512-lBZhfRD4NSAUW0zOKLUeI6GJuXkxeZYi0hr8VcJgJpyTNOvHw1ysrKWAHcEOAAHj7guxgmWYSi6xWrEdfrSAsA==", - "license": "MIT", - "peer": true, - "dependencies": { - "@babel/runtime": "^7.11.1", - "classnames": "^2.2.1", - "rc-util": "^5.18.1" - }, - "peerDependencies": { - "react": ">=16.0.0", - "react-dom": ">=16.0.0" - } - }, - "node_modules/rc-input-number": { - "version": "9.3.0", - "resolved": "https://registry.npmjs.org/rc-input-number/-/rc-input-number-9.3.0.tgz", - "integrity": "sha512-JQ363ywqRyxwgVxpg2z2kja3CehTpYdqR7emJ/6yJjRdbvo+RvfE83fcpBCIJRq3zLp8SakmEXq60qzWyZ7Usw==", - "license": "MIT", - "peer": true, - "dependencies": { - "@babel/runtime": "^7.10.1", - "@rc-component/mini-decimal": "^1.0.1", - "classnames": "^2.2.5", - "rc-input": "~1.6.0", - "rc-util": "^5.40.1" - }, - "peerDependencies": { - "react": ">=16.9.0", - "react-dom": ">=16.9.0" - } - }, - "node_modules/rc-mentions": { - "version": "2.17.0", - "resolved": "https://registry.npmjs.org/rc-mentions/-/rc-mentions-2.17.0.tgz", - "integrity": "sha512-sfHy+qLvc+p8jx8GUsujZWXDOIlIimp6YQz7N5ONQ6bHsa2kyG+BLa5k2wuxgebBbH97is33wxiyq5UkiXRpHA==", - "license": "MIT", - "peer": true, - "dependencies": { - "@babel/runtime": "^7.22.5", - "@rc-component/trigger": "^2.0.0", - "classnames": "^2.2.6", - "rc-input": "~1.6.0", - "rc-menu": "~9.16.0", - "rc-textarea": "~1.8.0", - "rc-util": "^5.34.1" - }, - "peerDependencies": { - "react": ">=16.9.0", - "react-dom": ">=16.9.0" - } - }, - "node_modules/rc-menu": { - "version": "9.16.0", - "resolved": "https://registry.npmjs.org/rc-menu/-/rc-menu-9.16.0.tgz", - "integrity": "sha512-vAL0yqPkmXWk3+YKRkmIR8TYj3RVdEt3ptG2jCJXWNAvQbT0VJJdRyHZ7kG/l1JsZlB+VJq/VcYOo69VR4oD+w==", - "license": "MIT", - "peer": true, - "dependencies": { - "@babel/runtime": "^7.10.1", - "@rc-component/trigger": "^2.0.0", - "classnames": "2.x", - "rc-motion": "^2.4.3", - "rc-overflow": "^1.3.1", - "rc-util": "^5.27.0" - }, - "peerDependencies": { - "react": ">=16.9.0", - "react-dom": ">=16.9.0" - } - }, - "node_modules/rc-motion": { - "version": "2.9.5", - "resolved": "https://registry.npmjs.org/rc-motion/-/rc-motion-2.9.5.tgz", - "integrity": "sha512-w+XTUrfh7ArbYEd2582uDrEhmBHwK1ZENJiSJVb7uRxdE7qJSYjbO2eksRXmndqyKqKoYPc9ClpPh5242mV1vA==", - "license": "MIT", - "peer": true, - "dependencies": { - "@babel/runtime": "^7.11.1", - "classnames": "^2.2.1", - "rc-util": "^5.44.0" - }, - "peerDependencies": { - "react": ">=16.9.0", - "react-dom": ">=16.9.0" - } - }, - "node_modules/rc-notification": { - "version": "5.6.2", - "resolved": "https://registry.npmjs.org/rc-notification/-/rc-notification-5.6.2.tgz", - "integrity": "sha512-Id4IYMoii3zzrG0lB0gD6dPgJx4Iu95Xu0BQrhHIbp7ZnAZbLqdqQ73aIWH0d0UFcElxwaKjnzNovTjo7kXz7g==", - "license": "MIT", - "peer": true, - "dependencies": { - "@babel/runtime": "^7.10.1", - "classnames": "2.x", - "rc-motion": "^2.9.0", - "rc-util": "^5.20.1" - }, - "engines": { - "node": ">=8.x" - }, - "peerDependencies": { - "react": ">=16.9.0", - "react-dom": ">=16.9.0" - } - }, - "node_modules/rc-overflow": { - "version": "1.3.2", - "resolved": "https://registry.npmjs.org/rc-overflow/-/rc-overflow-1.3.2.tgz", - "integrity": "sha512-nsUm78jkYAoPygDAcGZeC2VwIg/IBGSodtOY3pMof4W3M9qRJgqaDYm03ZayHlde3I6ipliAxbN0RUcGf5KOzw==", - "license": "MIT", - "peer": true, - "dependencies": { - "@babel/runtime": "^7.11.1", - "classnames": "^2.2.1", - "rc-resize-observer": "^1.0.0", - "rc-util": "^5.37.0" - }, - "peerDependencies": { - "react": ">=16.9.0", - "react-dom": ">=16.9.0" - } - }, - "node_modules/rc-pagination": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/rc-pagination/-/rc-pagination-5.0.0.tgz", - "integrity": "sha512-QjrPvbAQwps93iluvFM62AEYglGYhWW2q/nliQqmvkTi4PXP4HHoh00iC1Sa5LLVmtWQHmG73fBi2x6H6vFHRg==", - "license": "MIT", - "peer": true, - "dependencies": { - "@babel/runtime": "^7.10.1", - "classnames": "^2.3.2", - "rc-util": "^5.38.0" - }, - "peerDependencies": { - "react": ">=16.9.0", - "react-dom": ">=16.9.0" - } - }, - "node_modules/rc-picker": { - "version": "4.8.3", - "resolved": "https://registry.npmjs.org/rc-picker/-/rc-picker-4.8.3.tgz", - "integrity": "sha512-hJ45qoEs4mfxXPAJdp1n3sKwADul874Cd0/HwnsEOE60H+tgiJUGgbOD62As3EG/rFVNS5AWRfBCDJJfmRqOVQ==", - "license": "MIT", - "peer": true, - "dependencies": { - "@babel/runtime": "^7.24.7", - "@rc-component/trigger": "^2.0.0", - "classnames": "^2.2.1", - "rc-overflow": "^1.3.2", - "rc-resize-observer": "^1.4.0", - "rc-util": "^5.43.0" - }, - "engines": { - "node": ">=8.x" - }, - "peerDependencies": { - "date-fns": ">= 2.x", - "dayjs": ">= 1.x", - "luxon": ">= 3.x", - "moment": ">= 2.x", - "react": ">=16.9.0", - "react-dom": ">=16.9.0" - }, - "peerDependenciesMeta": { - "date-fns": { - "optional": true - }, - "dayjs": { - "optional": true - }, - "luxon": { - "optional": true - }, - "moment": { - "optional": true - } - } - }, - "node_modules/rc-progress": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/rc-progress/-/rc-progress-4.0.0.tgz", - "integrity": "sha512-oofVMMafOCokIUIBnZLNcOZFsABaUw8PPrf1/y0ZBvKZNpOiu5h4AO9vv11Sw0p4Hb3D0yGWuEattcQGtNJ/aw==", - "license": "MIT", - "peer": true, - "dependencies": { - "@babel/runtime": "^7.10.1", - "classnames": "^2.2.6", - "rc-util": "^5.16.1" - }, - "peerDependencies": { - "react": ">=16.9.0", - "react-dom": ">=16.9.0" - } - }, - "node_modules/rc-rate": { - "version": "2.13.0", - "resolved": "https://registry.npmjs.org/rc-rate/-/rc-rate-2.13.0.tgz", - "integrity": "sha512-oxvx1Q5k5wD30sjN5tqAyWTvJfLNNJn7Oq3IeS4HxWfAiC4BOXMITNAsw7u/fzdtO4MS8Ki8uRLOzcnEuoQiAw==", - "license": "MIT", - "peer": true, - "dependencies": { - "@babel/runtime": "^7.10.1", - "classnames": "^2.2.5", - "rc-util": "^5.0.1" - }, - "engines": { - "node": ">=8.x" - }, - "peerDependencies": { - "react": ">=16.9.0", - "react-dom": ">=16.9.0" - } - }, - "node_modules/rc-resize-observer": { - "version": "1.4.3", - "resolved": "https://registry.npmjs.org/rc-resize-observer/-/rc-resize-observer-1.4.3.tgz", - "integrity": "sha512-YZLjUbyIWox8E9i9C3Tm7ia+W7euPItNWSPX5sCcQTYbnwDb5uNpnLHQCG1f22oZWUhLw4Mv2tFmeWe68CDQRQ==", - "license": "MIT", - "peer": true, - "dependencies": { - "@babel/runtime": "^7.20.7", - "classnames": "^2.2.1", - "rc-util": "^5.44.1", - "resize-observer-polyfill": "^1.5.1" - }, - "peerDependencies": { - "react": ">=16.9.0", - "react-dom": ">=16.9.0" - } - }, - "node_modules/rc-segmented": { - "version": "2.5.0", - "resolved": "https://registry.npmjs.org/rc-segmented/-/rc-segmented-2.5.0.tgz", - "integrity": "sha512-B28Fe3J9iUFOhFJET3RoXAPFJ2u47QvLSYcZWC4tFYNGPEjug5LAxEasZlA/PpAxhdOPqGWsGbSj7ftneukJnw==", - "license": "MIT", - "peer": true, - "dependencies": { - "@babel/runtime": "^7.11.1", - "classnames": "^2.2.1", - "rc-motion": "^2.4.4", - "rc-util": "^5.17.0" - }, - "peerDependencies": { - "react": ">=16.0.0", - "react-dom": ">=16.0.0" - } - }, - "node_modules/rc-select": { - "version": "14.16.4", - "resolved": "https://registry.npmjs.org/rc-select/-/rc-select-14.16.4.tgz", - "integrity": "sha512-jP6qf7+vjnxGvPpfPWbGYfFlSl3h8L2XcD4O7g2GYXmEeBC0mw+nPD7i++OOE8v3YGqP8xtYjRKAWCMLfjgxlw==", - "license": "MIT", - "peer": true, - "dependencies": { - "@babel/runtime": "^7.10.1", - "@rc-component/trigger": "^2.1.1", - "classnames": "2.x", - "rc-motion": "^2.0.1", - "rc-overflow": "^1.3.1", - "rc-util": "^5.16.1", - "rc-virtual-list": "^3.5.2" - }, - "engines": { - "node": ">=8.x" - }, - "peerDependencies": { - "react": "*", - "react-dom": "*" - } - }, - "node_modules/rc-slider": { - "version": "11.1.7", - "resolved": "https://registry.npmjs.org/rc-slider/-/rc-slider-11.1.7.tgz", - "integrity": "sha512-ytYbZei81TX7otdC0QvoYD72XSlxvTihNth5OeZ6PMXyEDq/vHdWFulQmfDGyXK1NwKwSlKgpvINOa88uT5g2A==", - "license": "MIT", - "peer": true, - "dependencies": { - "@babel/runtime": "^7.10.1", - "classnames": "^2.2.5", - "rc-util": "^5.36.0" - }, - "engines": { - "node": ">=8.x" - }, - "peerDependencies": { - "react": ">=16.9.0", - "react-dom": ">=16.9.0" - } - }, - "node_modules/rc-steps": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/rc-steps/-/rc-steps-6.0.1.tgz", - "integrity": "sha512-lKHL+Sny0SeHkQKKDJlAjV5oZ8DwCdS2hFhAkIjuQt1/pB81M0cA0ErVFdHq9+jmPmFw1vJB2F5NBzFXLJxV+g==", - "license": "MIT", - "peer": true, - "dependencies": { - "@babel/runtime": "^7.16.7", - "classnames": "^2.2.3", - "rc-util": "^5.16.1" - }, - "engines": { - "node": ">=8.x" - }, - "peerDependencies": { - "react": ">=16.9.0", - "react-dom": ">=16.9.0" - } - }, - "node_modules/rc-switch": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/rc-switch/-/rc-switch-4.1.0.tgz", - "integrity": "sha512-TI8ufP2Az9oEbvyCeVE4+90PDSljGyuwix3fV58p7HV2o4wBnVToEyomJRVyTaZeqNPAp+vqeo4Wnj5u0ZZQBg==", - "license": "MIT", - "peer": true, - "dependencies": { - "@babel/runtime": "^7.21.0", - "classnames": "^2.2.1", - "rc-util": "^5.30.0" - }, - "peerDependencies": { - "react": ">=16.9.0", - "react-dom": ">=16.9.0" - } - }, - "node_modules/rc-table": { - "version": "7.49.0", - "resolved": "https://registry.npmjs.org/rc-table/-/rc-table-7.49.0.tgz", - "integrity": "sha512-/FoPLX94muAQOxVpi1jhnpKjOIqUbT81eELQPAzSXOke4ky4oCWYUXOcVpL31ZCO90xScwVSXRd7coqtgtB1Ng==", - "license": "MIT", - "peer": true, - "dependencies": { - "@babel/runtime": "^7.10.1", - "@rc-component/context": "^1.4.0", - "classnames": "^2.2.5", - "rc-resize-observer": "^1.1.0", - "rc-util": "^5.41.0", - "rc-virtual-list": "^3.14.2" - }, - "engines": { - "node": ">=8.x" - }, - "peerDependencies": { - "react": ">=16.9.0", - "react-dom": ">=16.9.0" - } - }, - "node_modules/rc-tabs": { - "version": "15.4.0", - "resolved": "https://registry.npmjs.org/rc-tabs/-/rc-tabs-15.4.0.tgz", - "integrity": "sha512-llKuyiAVqmXm2z7OrmhX5cNb2ueZaL8ZyA2P4R+6/72NYYcbEgOXibwHiQCFY2RiN3swXl53SIABi2CumUS02g==", - "license": "MIT", - "peer": true, - "dependencies": { - "@babel/runtime": "^7.11.2", - "classnames": "2.x", - "rc-dropdown": "~4.2.0", - "rc-menu": "~9.16.0", - "rc-motion": "^2.6.2", - "rc-resize-observer": "^1.0.0", - "rc-util": "^5.34.1" - }, - "engines": { - "node": ">=8.x" - }, - "peerDependencies": { - "react": ">=16.9.0", - "react-dom": ">=16.9.0" - } - }, - "node_modules/rc-textarea": { - "version": "1.8.2", - "resolved": "https://registry.npmjs.org/rc-textarea/-/rc-textarea-1.8.2.tgz", - "integrity": "sha512-UFAezAqltyR00a8Lf0IPAyTd29Jj9ee8wt8DqXyDMal7r/Cg/nDt3e1OOv3Th4W6mKaZijjgwuPXhAfVNTN8sw==", - "license": "MIT", - "peer": true, - "dependencies": { - "@babel/runtime": "^7.10.1", - "classnames": "^2.2.1", - "rc-input": "~1.6.0", - "rc-resize-observer": "^1.0.0", - "rc-util": "^5.27.0" - }, - "peerDependencies": { - "react": ">=16.9.0", - "react-dom": ">=16.9.0" - } - }, - "node_modules/rc-tooltip": { - "version": "6.2.1", - "resolved": "https://registry.npmjs.org/rc-tooltip/-/rc-tooltip-6.2.1.tgz", - "integrity": "sha512-rws0duD/3sHHsD905Nex7FvoUGy2UBQRhTkKxeEvr2FB+r21HsOxcDJI0TzyO8NHhnAA8ILr8pfbSBg5Jj5KBg==", - "license": "MIT", - "peer": true, - "dependencies": { - "@babel/runtime": "^7.11.2", - "@rc-component/trigger": "^2.0.0", - "classnames": "^2.3.1" - }, - "peerDependencies": { - "react": ">=16.9.0", - "react-dom": ">=16.9.0" - } - }, - "node_modules/rc-tree": { - "version": "5.10.1", - "resolved": "https://registry.npmjs.org/rc-tree/-/rc-tree-5.10.1.tgz", - "integrity": "sha512-FPXb3tT/u39mgjr6JNlHaUTYfHkVGW56XaGDahDpEFLGsnPxGcVLNTjcqoQb/GNbSCycl7tD7EvIymwOTP0+Yw==", - "license": "MIT", - "peer": true, - "dependencies": { - "@babel/runtime": "^7.10.1", - "classnames": "2.x", - "rc-motion": "^2.0.1", - "rc-util": "^5.16.1", - "rc-virtual-list": "^3.5.1" - }, - "engines": { - "node": ">=10.x" - }, - "peerDependencies": { - "react": "*", - "react-dom": "*" - } - }, - "node_modules/rc-tree-select": { - "version": "5.24.5", - "resolved": "https://registry.npmjs.org/rc-tree-select/-/rc-tree-select-5.24.5.tgz", - "integrity": "sha512-PnyR8LZJWaiEFw0SHRqo4MNQWyyZsyMs8eNmo68uXZWjxc7QqeWcjPPoONN0rc90c3HZqGF9z+Roz+GLzY5GXA==", - "license": "MIT", - "peer": true, - "dependencies": { - "@babel/runtime": "^7.25.7", - "classnames": "2.x", - "rc-select": "~14.16.2", - "rc-tree": "~5.10.1", - "rc-util": "^5.43.0" - }, - "peerDependencies": { - "react": "*", - "react-dom": "*" - } - }, - "node_modules/rc-trigger": { - "version": "1.11.5", - "resolved": "https://registry.npmjs.org/rc-trigger/-/rc-trigger-1.11.5.tgz", - "integrity": "sha512-MBuUPw1nFzA4K7jQOwb7uvFaZFjXGd00EofUYiZ+l/fgKVq8wnLC0lkv36kwqM7vfKyftRo2sh7cWVpdPuNnnw==", - "peer": true, - "dependencies": { - "babel-runtime": "6.x", - "create-react-class": "15.x", - "prop-types": "15.x", - "rc-align": "2.x", - "rc-animate": "2.x", - "rc-util": "4.x" - } - }, - "node_modules/rc-trigger/node_modules/rc-util": { - "version": "4.21.1", - "resolved": "https://registry.npmjs.org/rc-util/-/rc-util-4.21.1.tgz", - "integrity": "sha512-Z+vlkSQVc1l8O2UjR3WQ+XdWlhj5q9BMQNLk2iOBch75CqPfrJyGtcWMcnhRlNuDu0Ndtt4kLVO8JI8BrABobg==", - "license": "MIT", - "peer": true, - "dependencies": { - "add-dom-event-listener": "^1.1.0", - "prop-types": "^15.5.10", - "react-is": "^16.12.0", - "react-lifecycles-compat": "^3.0.4", - "shallowequal": "^1.1.0" - } - }, - "node_modules/rc-trigger/node_modules/react-is": { - "version": "16.13.1", - "resolved": "https://registry.npmjs.org/react-is/-/react-is-16.13.1.tgz", - "integrity": "sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==", - "license": "MIT", - "peer": true - }, - "node_modules/rc-upload": { - "version": "4.8.1", - "resolved": "https://registry.npmjs.org/rc-upload/-/rc-upload-4.8.1.tgz", - "integrity": "sha512-toEAhwl4hjLAI1u8/CgKWt30BR06ulPa4iGQSMvSXoHzO88gPCslxqV/mnn4gJU7PDoltGIC9Eh+wkeudqgHyw==", - "license": "MIT", - "peer": true, - "dependencies": { - "@babel/runtime": "^7.18.3", - "classnames": "^2.2.5", - "rc-util": "^5.2.0" - }, - "peerDependencies": { - "react": ">=16.9.0", - "react-dom": ">=16.9.0" - } - }, - "node_modules/rc-util": { - "version": "5.44.3", - "resolved": "https://registry.npmjs.org/rc-util/-/rc-util-5.44.3.tgz", - "integrity": "sha512-q6KCcOFk3rv/zD3MckhJteZxb0VjAIFuf622B7ElK4vfrZdAzs16XR5p3VTdy3+U5jfJU5ACz4QnhLSuAGe5dA==", - "license": "MIT", - "peer": true, - "dependencies": { - "@babel/runtime": "^7.18.3", - "react-is": "^18.2.0" - }, - "peerDependencies": { - "react": ">=16.9.0", - "react-dom": ">=16.9.0" - } - }, - "node_modules/rc-virtual-list": { - "version": "3.16.1", - "resolved": "https://registry.npmjs.org/rc-virtual-list/-/rc-virtual-list-3.16.1.tgz", - "integrity": "sha512-algM5UsB7vrlPNr9lsZEH8s9KHkP8XbT/Y0qylyPkiM8mIOlSJLjBNADcmbYPEQCm4zW82mZRJuVHNzqqN0EAQ==", - "license": "MIT", - "peer": true, - "dependencies": { - "@babel/runtime": "^7.20.0", - "classnames": "^2.2.6", - "rc-resize-observer": "^1.0.0", - "rc-util": "^5.36.0" - }, - "engines": { - "node": ">=8.x" - }, - "peerDependencies": { - "react": ">=16.9.0", - "react-dom": ">=16.9.0" - } - }, - "node_modules/rc/node_modules/strip-json-comments": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-2.0.1.tgz", - "integrity": "sha512-4gB8na07fecVVkOI6Rs4e7T6NOTki5EmL7TUduTs6bu3EdnSycntVJ4re8kgZA+wx9IueI2Y11bfbgwtzuE0KQ==", - "dev": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/react": { - "version": "18.3.1", - "resolved": "https://registry.npmjs.org/react/-/react-18.3.1.tgz", - "integrity": "sha512-wS+hAgJShR0KhEvPJArfuPVN1+Hz1t0Y6n5jLrGQbkb4urgPE/0Rve+1kMB1v/oWgHgm4WIcV+i7F2pTVj+2iQ==", - "dependencies": { - "loose-envify": "^1.1.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/react-async-script": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/react-async-script/-/react-async-script-1.2.0.tgz", - "integrity": "sha512-bCpkbm9JiAuMGhkqoAiC0lLkb40DJ0HOEJIku+9JDjxX3Rcs+ztEOG13wbrOskt3n2DTrjshhaQ/iay+SnGg5Q==", - "dependencies": { - "hoist-non-react-statics": "^3.3.0", - "prop-types": "^15.5.0" - }, - "peerDependencies": { - "react": ">=16.4.1" - } - }, - "node_modules/react-beautiful-dnd": { - "version": "13.1.1", - "resolved": "https://registry.npmjs.org/react-beautiful-dnd/-/react-beautiful-dnd-13.1.1.tgz", - "integrity": "sha512-0Lvs4tq2VcrEjEgDXHjT98r+63drkKEgqyxdA7qD3mvKwga6a5SscbdLPO2IExotU1jW8L0Ksdl0Cj2AF67nPQ==", - "dependencies": { - "@babel/runtime": "^7.9.2", - "css-box-model": "^1.2.0", - "memoize-one": "^5.1.1", - "raf-schd": "^4.0.2", - "react-redux": "^7.2.0", - "redux": "^4.0.4", - "use-memo-one": "^1.1.1" - }, - "peerDependencies": { - "react": "^16.8.5 || ^17.0.0 || ^18.0.0", - "react-dom": "^16.8.5 || ^17.0.0 || ^18.0.0" - } - }, - "node_modules/react-beautiful-dnd/node_modules/react-is": { - "version": "17.0.2", - "resolved": "https://registry.npmjs.org/react-is/-/react-is-17.0.2.tgz", - "integrity": "sha512-w2GsyukL62IJnlaff/nRegPQR94C/XXamvMWmSHRJ4y7Ts/4ocGRmTHvOs8PSE6pB3dWOrD/nueuU5sduBsQ4w==" - }, - "node_modules/react-beautiful-dnd/node_modules/react-redux": { - "version": "7.2.9", - "resolved": "https://registry.npmjs.org/react-redux/-/react-redux-7.2.9.tgz", - "integrity": "sha512-Gx4L3uM182jEEayZfRbI/G11ZpYdNAnBs70lFVMNdHJI76XYtR+7m0MN+eAs7UHBPhWXcnFPaS+9owSCJQHNpQ==", - "dependencies": { - "@babel/runtime": "^7.15.4", - "@types/react-redux": "^7.1.20", - "hoist-non-react-statics": "^3.3.2", - "loose-envify": "^1.4.0", - "prop-types": "^15.7.2", - "react-is": "^17.0.2" - }, - "peerDependencies": { - "react": "^16.8.3 || ^17 || ^18" - }, - "peerDependenciesMeta": { - "react-dom": { - "optional": true - }, - "react-native": { - "optional": true - } - } - }, - "node_modules/react-beautiful-dnd/node_modules/redux": { - "version": "4.2.1", - "resolved": "https://registry.npmjs.org/redux/-/redux-4.2.1.tgz", - "integrity": "sha512-LAUYz4lc+Do8/g7aeRa8JkyDErK6ekstQaqWQrNRW//MY1TvCEpMtpTWvlQ+FPbWCx+Xixu/6SHt5N0HR+SB4w==", - "dependencies": { - "@babel/runtime": "^7.9.2" - } - }, - "node_modules/react-bootstrap": { - "version": "2.10.5", - "resolved": "https://registry.npmjs.org/react-bootstrap/-/react-bootstrap-2.10.5.tgz", - "integrity": "sha512-XueAOEn64RRkZ0s6yzUTdpFtdUXs5L5491QU//8ZcODKJNDLt/r01tNyriZccjgRImH1REynUc9pqjiRMpDLWQ==", - "dependencies": { - "@babel/runtime": "^7.24.7", - "@restart/hooks": "^0.4.9", - "@restart/ui": "^1.6.9", - "@types/react-transition-group": "^4.4.6", - "classnames": "^2.3.2", - "dom-helpers": "^5.2.1", - "invariant": "^2.2.4", - "prop-types": "^15.8.1", - "prop-types-extra": "^1.1.0", - "react-transition-group": "^4.4.5", - "uncontrollable": "^7.2.1", - "warning": "^4.0.3" + "@babel/runtime": "^7.24.7", + "@restart/hooks": "^0.4.9", + "@restart/ui": "^1.6.9", + "@types/react-transition-group": "^4.4.6", + "classnames": "^2.3.2", + "dom-helpers": "^5.2.1", + "invariant": "^2.2.4", + "prop-types": "^15.8.1", + "prop-types-extra": "^1.1.0", + "react-transition-group": "^4.4.5", + "uncontrollable": "^7.2.1", + "warning": "^4.0.3" }, "peerDependencies": { "@types/react": ">=16.14.8", @@ -18116,13 +16818,6 @@ "react": "^18.3.1" } }, - "node_modules/react-fast-compare": { - "version": "3.2.2", - "resolved": "https://registry.npmjs.org/react-fast-compare/-/react-fast-compare-3.2.2.tgz", - "integrity": "sha512-nsO+KSNgo1SbJqJEYRE9ERzo7YtYbou/OqjSQKxV7jcKox7+usiUVZOAC+XnDOABXggQTno0Y1CpVnuWEc1boQ==", - "license": "MIT", - "peer": true - }, "node_modules/react-google-recaptcha": { "version": "3.1.0", "resolved": "https://registry.npmjs.org/react-google-recaptcha/-/react-google-recaptcha-3.1.0.tgz", @@ -18388,13 +17083,6 @@ "node": ">=4" } }, - "node_modules/regenerator-runtime": { - "version": "0.11.1", - "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.11.1.tgz", - "integrity": "sha512-MguG95oij0fC3QV3URf4V2SDYGJhJnJGqvIIgdECeODCT98wSWDAJ94SSuVpYQUoTcGUIL6L4yNB7j1DFFHSBg==", - "license": "MIT", - "peer": true - }, "node_modules/regenerator-transform": { "version": "0.15.2", "resolved": "https://registry.npmjs.org/regenerator-transform/-/regenerator-transform-0.15.2.tgz", @@ -18405,9 +17093,32 @@ } }, "node_modules/regex": { - "version": "4.3.2", - "resolved": "https://registry.npmjs.org/regex/-/regex-4.3.2.tgz", - "integrity": "sha512-kK/AA3A9K6q2js89+VMymcboLOlF5lZRCYJv3gzszXFHBr6kO6qLGzbm+UIugBEV8SMMKCTR59txoY6ctRHYVw==" + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/regex/-/regex-5.1.1.tgz", + "integrity": "sha512-dN5I359AVGPnwzJm2jN1k0W9LPZ+ePvoOeVMMfqIMFz53sSwXkxaJoxr50ptnsC771lK95BnTrVSZxq0b9yCGw==", + "dev": true, + "license": "MIT", + "dependencies": { + "regex-utilities": "^2.3.0" + } + }, + "node_modules/regex-recursion": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/regex-recursion/-/regex-recursion-5.1.1.tgz", + "integrity": "sha512-ae7SBCbzVNrIjgSbh7wMznPcQel1DNlDtzensnFxpiNpXt1U2ju/bHugH422r+4LAVS1FpW1YCwilmnNsjum9w==", + "dev": true, + "license": "MIT", + "dependencies": { + "regex": "^5.1.1", + "regex-utilities": "^2.3.0" + } + }, + "node_modules/regex-utilities": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/regex-utilities/-/regex-utilities-2.3.0.tgz", + "integrity": "sha512-8VhliFJAWRaUiVvREIiW2NXXTmHs4vMNnSzuJVhscgmGav3g9VDxLrQndI3dZZVVdp0ZO/5v0xmX516/7M9cng==", + "dev": true, + "license": "MIT" }, "node_modules/regexp.prototype.flags": { "version": "1.5.2", @@ -18562,13 +17273,6 @@ "resolved": "https://registry.npmjs.org/reselect/-/reselect-5.1.1.tgz", "integrity": "sha512-K/BG6eIky/SBpzfHZv/dd+9JBFiS4SWV7FIujVyJRux6e45+73RaUHXLmIR1f7WOMaQ0U1km6qwklRQxpJJY0w==" }, - "node_modules/resize-observer-polyfill": { - "version": "1.5.1", - "resolved": "https://registry.npmjs.org/resize-observer-polyfill/-/resize-observer-polyfill-1.5.1.tgz", - "integrity": "sha512-LwZrotdHOo12nQuZlHEmtuXdqGoOD0OhaxopaNFxWzInpEgaLWoVuAMbTzixuosCx2nEG58ngzW3vxdWoxIgdg==", - "license": "MIT", - "peer": true - }, "node_modules/resolve": { "version": "1.22.8", "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.8.tgz", @@ -18965,7 +17669,7 @@ "version": "1.80.7", "resolved": "https://registry.npmjs.org/sass/-/sass-1.80.7.tgz", "integrity": "sha512-MVWvN0u5meytrSjsU7AWsbhoXi1sc58zADXFllfZzbsBT1GHjjar6JwBINYPRrkx/zqnQ6uqbQuHgE95O+C+eQ==", - "devOptional": true, + "dev": true, "dependencies": { "chokidar": "^4.0.0", "immutable": "^5.0.2", @@ -18985,7 +17689,7 @@ "version": "4.0.1", "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-4.0.1.tgz", "integrity": "sha512-n8enUVCED/KVRQlab1hr3MVpcVMvxtZjmEa956u+4YijlmQED223XMSYj2tLuKvr4jcCTzNNMpQDUer72MMmzA==", - "devOptional": true, + "dev": true, "dependencies": { "readdirp": "^4.0.1" }, @@ -19000,7 +17704,7 @@ "version": "4.0.2", "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-4.0.2.tgz", "integrity": "sha512-yDMz9g+VaZkqBYS/ozoBJwaBhTbZo3UNYQHNRw1D3UFQB8oHB4uS/tAODO+ZLjGWmUbKnIlOWO+aaIiAxrUWHA==", - "devOptional": true, + "dev": true, "engines": { "node": ">= 14.16.0" }, @@ -19029,29 +17733,6 @@ "loose-envify": "^1.1.0" } }, - "node_modules/screenfull": { - "version": "5.2.0", - "resolved": "https://registry.npmjs.org/screenfull/-/screenfull-5.2.0.tgz", - "integrity": "sha512-9BakfsO2aUQN2K9Fdbj87RJIEZ82Q9IGim7FqM5OsebfoFC6ZHXgDq/KvniuLTPdeM8wY2o6Dj3WQ7KeQCj3cA==", - "license": "MIT", - "peer": true, - "engines": { - "node": ">=0.10.0" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/scroll-into-view-if-needed": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/scroll-into-view-if-needed/-/scroll-into-view-if-needed-3.1.0.tgz", - "integrity": "sha512-49oNpRjWRvnU8NyGVmUaYG4jtTkNonFZI86MmGRDqBphEK2EXT9gdEUoQPZhuBM8yWHxCWbobltqYO5M4XrUvQ==", - "license": "MIT", - "peer": true, - "dependencies": { - "compute-scroll-into-view": "^3.0.2" - } - }, "node_modules/semver": { "version": "7.6.3", "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.3.tgz", @@ -19145,13 +17826,6 @@ "sha.js": "bin.js" } }, - "node_modules/shallowequal": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/shallowequal/-/shallowequal-1.1.0.tgz", - "integrity": "sha512-y0m1JoUZSlPAjXVtPPW70aZWfIL/dSP7AFkRnniLCrK/8MDKog3TySTBmckD+RObVxH0v4Tox67+F14PdED2oQ==", - "license": "MIT", - "peer": true - }, "node_modules/shebang-command": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz", @@ -19174,15 +17848,19 @@ } }, "node_modules/shiki": { - "version": "1.17.6", - "resolved": "https://registry.npmjs.org/shiki/-/shiki-1.17.6.tgz", - "integrity": "sha512-RejGugKpDM75vh6YtF9R771acxHRDikC/01kxsUGW+Pnaz3pTY+c8aZB5CnD7p0vuFPs1HaoAIU/4E+NCfS+mQ==", - "dependencies": { - "@shikijs/core": "1.17.6", - "@shikijs/engine-javascript": "1.17.6", - "@shikijs/engine-oniguruma": "1.17.6", - "@shikijs/types": "1.17.6", - "@shikijs/vscode-textmate": "^9.2.2", + "version": "1.26.1", + "resolved": "https://registry.npmjs.org/shiki/-/shiki-1.26.1.tgz", + "integrity": "sha512-Gqg6DSTk3wYqaZ5OaYtzjcdxcBvX5kCy24yvRJEgjT5U+WHlmqCThLuBUx0juyxQBi+6ug53IGeuQS07DWwpcw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@shikijs/core": "1.26.1", + "@shikijs/engine-javascript": "1.26.1", + "@shikijs/engine-oniguruma": "1.26.1", + "@shikijs/langs": "1.26.1", + "@shikijs/themes": "1.26.1", + "@shikijs/types": "1.26.1", + "@shikijs/vscode-textmate": "^10.0.1", "@types/hast": "^3.0.4" } }, @@ -19348,6 +18026,8 @@ "version": "2.0.2", "resolved": "https://registry.npmjs.org/space-separated-tokens/-/space-separated-tokens-2.0.2.tgz", "integrity": "sha512-PEGlAwrG8yXGXRjW32fGbg66JAlOAwbObuqVoJpv/mRgoWDQfgH1wDPvtzWyUSNAXBGSk8h755YDbbcEy3SH2Q==", + "dev": true, + "license": "MIT", "funding": { "type": "github", "url": "https://github.com/sponsors/wooorm" @@ -19437,13 +18117,6 @@ "node": ">=0.6.19" } }, - "node_modules/string-convert": { - "version": "0.2.1", - "resolved": "https://registry.npmjs.org/string-convert/-/string-convert-0.2.1.tgz", - "integrity": "sha512-u/1tdPl4yQnPBjnVrmdLo9gtuLvELKsAoRapekWggdiQNvvvum+jYF329d84NAa660KQw7pB2n36KrIKVoXa3A==", - "license": "MIT", - "peer": true - }, "node_modules/string-hash": { "version": "1.1.3", "resolved": "https://registry.npmjs.org/string-hash/-/string-hash-1.1.3.tgz", @@ -19580,6 +18253,8 @@ "version": "4.0.4", "resolved": "https://registry.npmjs.org/stringify-entities/-/stringify-entities-4.0.4.tgz", "integrity": "sha512-IwfBptatlO+QCJUo19AqvrPNqlVMpW9YEL2LIVY+Rpv2qsjCGxaDLNRgeGsQWJhfItebuJhsGSLjaBbNSQ+ieg==", + "dev": true, + "license": "MIT", "dependencies": { "character-entities-html4": "^2.0.0", "character-entities-legacy": "^3.0.0" @@ -19869,13 +18544,6 @@ "integrity": "sha512-0+DUvqWMValLmha6lr4kD8iAMK1HzV0/aKnCtWb9v9641TnP/MFb7Pc2bxoxQjTXAErryXVgUOfv2YqNllqGeg==", "dev": true }, - "node_modules/tinycolor2": { - "version": "1.6.0", - "resolved": "https://registry.npmjs.org/tinycolor2/-/tinycolor2-1.6.0.tgz", - "integrity": "sha512-XPaBkWQJdsf3pLKJV9p4qN/S+fm2Oj8AIPo1BTUhg5oxkvm9+SVEGFdhyOz7tTdUTfvxMiAs4sp6/eZO2Ew+pw==", - "license": "MIT", - "peer": true - }, "node_modules/tinyexec": { "version": "0.3.1", "resolved": "https://registry.npmjs.org/tinyexec/-/tinyexec-0.3.1.tgz", @@ -19970,13 +18638,6 @@ "node": ">=8.0" } }, - "node_modules/toggle-selection": { - "version": "1.0.6", - "resolved": "https://registry.npmjs.org/toggle-selection/-/toggle-selection-1.0.6.tgz", - "integrity": "sha512-BiZS+C1OS8g/q2RRbJmy59xpyghNBqrr6k5L/uKBGRsTfxmu3ffiRnd8mlGPUVayg8pvfi5urfnu8TU7DVOkLQ==", - "license": "MIT", - "peer": true - }, "node_modules/toml": { "version": "2.3.6", "resolved": "https://registry.npmjs.org/toml/-/toml-2.3.6.tgz", @@ -20031,6 +18692,8 @@ "version": "3.0.1", "resolved": "https://registry.npmjs.org/trim-lines/-/trim-lines-3.0.1.tgz", "integrity": "sha512-kRj8B+YHZCc9kQYdWfJB2/oUl9rA99qbowYYBtr4ui4mZyAQ2JpvVBd/6U2YloATfqBhBTSMhTpgBHtU0Mf3Rg==", + "dev": true, + "license": "MIT", "funding": { "type": "github", "url": "https://github.com/sponsors/wooorm" @@ -20649,15 +19312,17 @@ } }, "node_modules/typedoc": { - "version": "0.26.10", - "resolved": "https://registry.npmjs.org/typedoc/-/typedoc-0.26.10.tgz", - "integrity": "sha512-xLmVKJ8S21t+JeuQLNueebEuTVphx6IrP06CdV7+0WVflUSW3SPmR+h1fnWVdAR/FQePEgsSWCUHXqKKjzuUAw==", + "version": "0.27.6", + "resolved": "https://registry.npmjs.org/typedoc/-/typedoc-0.27.6.tgz", + "integrity": "sha512-oBFRoh2Px6jFx366db0lLlihcalq/JzyCVp7Vaq1yphL/tbgx2e+bkpkCgJPunaPvPwoTOXSwasfklWHm7GfAw==", + "dev": true, + "license": "Apache-2.0", "dependencies": { + "@gerrit0/mini-shiki": "^1.24.0", "lunr": "^2.3.9", "markdown-it": "^14.1.0", "minimatch": "^9.0.5", - "shiki": "^1.16.2", - "yaml": "^2.5.1" + "yaml": "^2.6.1" }, "bin": { "typedoc": "bin/typedoc" @@ -20666,24 +19331,27 @@ "node": ">= 18" }, "peerDependencies": { - "typescript": "4.6.x || 4.7.x || 4.8.x || 4.9.x || 5.0.x || 5.1.x || 5.2.x || 5.3.x || 5.4.x || 5.5.x || 5.6.x" + "typescript": "5.0.x || 5.1.x || 5.2.x || 5.3.x || 5.4.x || 5.5.x || 5.6.x || 5.7.x" } }, "node_modules/typedoc-plugin-markdown": { - "version": "4.2.10", - "resolved": "https://registry.npmjs.org/typedoc-plugin-markdown/-/typedoc-plugin-markdown-4.2.10.tgz", - "integrity": "sha512-PLX3pc1/7z13UJm4TDE9vo9jWGcClFUErXXtd5LdnoLjV6mynPpqZLU992DwMGFSRqJFZeKbVyqlNNeNHnk2tQ==", + "version": "4.4.1", + "resolved": "https://registry.npmjs.org/typedoc-plugin-markdown/-/typedoc-plugin-markdown-4.4.1.tgz", + "integrity": "sha512-fx23nSCvewI9IR8lzIYtzDphETcgTDuxKcmHKGD4lo36oexC+B1k4NaCOY58Snqb4OlE8OXDAGVcQXYYuLRCNw==", + "dev": true, + "license": "MIT", "engines": { "node": ">= 18" }, "peerDependencies": { - "typedoc": "0.26.x" + "typedoc": "0.27.x" } }, "node_modules/typedoc/node_modules/brace-expansion": { "version": "2.0.1", "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==", + "dev": true, "dependencies": { "balanced-match": "^1.0.0" } @@ -20692,6 +19360,7 @@ "version": "9.0.5", "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.5.tgz", "integrity": "sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow==", + "dev": true, "dependencies": { "brace-expansion": "^2.0.1" }, @@ -20703,9 +19372,11 @@ } }, "node_modules/typedoc/node_modules/yaml": { - "version": "2.5.1", - "resolved": "https://registry.npmjs.org/yaml/-/yaml-2.5.1.tgz", - "integrity": "sha512-bLQOjaX/ADgQ20isPJRvF0iRUHIxVhYvr53Of7wGcWlO2jvtUlH5m87DsmulFVxRpNLOnI4tB6p/oh8D7kpn9Q==", + "version": "2.7.0", + "resolved": "https://registry.npmjs.org/yaml/-/yaml-2.7.0.tgz", + "integrity": "sha512-+hSoy/QHluxmC9kCIJyL/uyFmLmc+e5CFR5Wa+bpIhIj85LVb9ZH2nVnqrHoSvKogwODv0ClqZkmiSSaIH5LTA==", + "dev": true, + "license": "ISC", "bin": { "yaml": "bin.mjs" }, @@ -20728,7 +19399,8 @@ "node_modules/uc.micro": { "version": "2.1.0", "resolved": "https://registry.npmjs.org/uc.micro/-/uc.micro-2.1.0.tgz", - "integrity": "sha512-ARDJmphmdvUk6Glw7y9DQ2bFkKBHwQHLi2lsaH6PPmz/Ka9sFOBsBluozhDltWmnv9u/cF6Rt87znRTPV+yp/A==" + "integrity": "sha512-ARDJmphmdvUk6Glw7y9DQ2bFkKBHwQHLi2lsaH6PPmz/Ka9sFOBsBluozhDltWmnv9u/cF6Rt87znRTPV+yp/A==", + "dev": true }, "node_modules/unbox-primitive": { "version": "1.0.2", @@ -20843,6 +19515,8 @@ "version": "6.0.0", "resolved": "https://registry.npmjs.org/unist-util-is/-/unist-util-is-6.0.0.tgz", "integrity": "sha512-2qCTHimwdxLfz+YzdGfkqNlH0tLi9xjTnHddPmJwtIG9MGsdbutfTc4P+haPD7l7Cjxf/WZj+we5qfVPvvxfYw==", + "dev": true, + "license": "MIT", "dependencies": { "@types/unist": "^3.0.0" }, @@ -20855,6 +19529,8 @@ "version": "5.0.0", "resolved": "https://registry.npmjs.org/unist-util-position/-/unist-util-position-5.0.0.tgz", "integrity": "sha512-fucsC7HjXvkB5R3kTCO7kUjRdrS0BJt3M/FPxmHMBOm8JQi2BsHAHFsy27E0EolP8rp0NzXsJ+jNPyDWvOJZPA==", + "dev": true, + "license": "MIT", "dependencies": { "@types/unist": "^3.0.0" }, @@ -20867,6 +19543,8 @@ "version": "4.0.0", "resolved": "https://registry.npmjs.org/unist-util-stringify-position/-/unist-util-stringify-position-4.0.0.tgz", "integrity": "sha512-0ASV06AAoKCDkS2+xw5RXJywruurpbC4JZSm7nr7MOt1ojAzvyyaO+UxZf18j8FCF6kmzCZKcAgN/yu2gm2XgQ==", + "dev": true, + "license": "MIT", "dependencies": { "@types/unist": "^3.0.0" }, @@ -20879,6 +19557,8 @@ "version": "5.0.0", "resolved": "https://registry.npmjs.org/unist-util-visit/-/unist-util-visit-5.0.0.tgz", "integrity": "sha512-MR04uvD+07cwl/yhVuVWAtw+3GOR/knlL55Nd/wAdblk27GCVt3lqpTivy/tkJcZoNPzTwS1Y+KMojlLDhoTzg==", + "dev": true, + "license": "MIT", "dependencies": { "@types/unist": "^3.0.0", "unist-util-is": "^6.0.0", @@ -20893,6 +19573,8 @@ "version": "6.0.1", "resolved": "https://registry.npmjs.org/unist-util-visit-parents/-/unist-util-visit-parents-6.0.1.tgz", "integrity": "sha512-L/PqWzfTP9lzzEa6CKs0k2nARxTdZduw3zyh8d2NVBnsyvHjSX4TWse388YrrQKbvI8w20fGjGlhgT96WwKykw==", + "dev": true, + "license": "MIT", "dependencies": { "@types/unist": "^3.0.0", "unist-util-is": "^6.0.0" @@ -21101,6 +19783,8 @@ "version": "6.0.3", "resolved": "https://registry.npmjs.org/vfile/-/vfile-6.0.3.tgz", "integrity": "sha512-KzIbH/9tXat2u30jf+smMwFCsno4wHVdNmzFyL+T/L3UGqqk6JKfVqOFOZEpZSHADH1k40ab6NUIXZq422ov3Q==", + "dev": true, + "license": "MIT", "dependencies": { "@types/unist": "^3.0.0", "vfile-message": "^4.0.0" @@ -21114,6 +19798,8 @@ "version": "4.0.2", "resolved": "https://registry.npmjs.org/vfile-message/-/vfile-message-4.0.2.tgz", "integrity": "sha512-jRDZ1IMLttGj41KcZvlrYAaI3CfqpLpfpf+Mfig13viT6NKvRzWZ+lXz0Y5D60w6uJIBAOGq9mSHf0gktF0duw==", + "dev": true, + "license": "MIT", "dependencies": { "@types/unist": "^3.0.0", "unist-util-stringify-position": "^4.0.0" @@ -21123,18 +19809,6 @@ "url": "https://opencollective.com/unified" } }, - "node_modules/virtualizedtableforantd4": { - "version": "1.3.1", - "resolved": "https://registry.npmjs.org/virtualizedtableforantd4/-/virtualizedtableforantd4-1.3.1.tgz", - "integrity": "sha512-rW8KoToI2nt1jNtweXIUIiygi74XMzKLzUrrtZbGsQc7m3v68AaedPuf4CZcte+nosgYuPEWnAgjuI/KR8BVbg==", - "license": "MIT", - "peer": true, - "peerDependencies": { - "antd": "^4.0.0 || ^5.0.0", - "react": "^16.8.0 || ^17.0.0 || ^18.0.0", - "react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0" - } - }, "node_modules/vite": { "version": "5.4.8", "resolved": "https://registry.npmjs.org/vite/-/vite-5.4.8.tgz", @@ -22019,39 +20693,12 @@ "url": "https://github.com/sponsors/colinhacks" } }, - "node_modules/zustand": { - "version": "4.5.5", - "resolved": "https://registry.npmjs.org/zustand/-/zustand-4.5.5.tgz", - "integrity": "sha512-+0PALYNJNgK6hldkgDq2vLrw5f6g/jCInz52n9RTpropGgeAf/ioFUCdtsjCqu4gNhW9D01rUQBROoRjdzyn2Q==", - "license": "MIT", - "peer": true, - "dependencies": { - "use-sync-external-store": "1.2.2" - }, - "engines": { - "node": ">=12.7.0" - }, - "peerDependencies": { - "@types/react": ">=16.8", - "immer": ">=9.0.6", - "react": ">=16.8" - }, - "peerDependenciesMeta": { - "@types/react": { - "optional": true - }, - "immer": { - "optional": true - }, - "react": { - "optional": true - } - } - }, "node_modules/zwitch": { "version": "2.0.4", "resolved": "https://registry.npmjs.org/zwitch/-/zwitch-2.0.4.tgz", "integrity": "sha512-bXE4cR/kVZhKZX/RjPEflHaKVhUVl85noU3v6b8apfQEc1x4A+zBxjZ4lN8LqGd6WZ3dl98pY4o717VFmoPp+A==", + "dev": true, + "license": "MIT", "funding": { "type": "github", "url": "https://github.com/sponsors/wooorm" diff --git a/package.json b/package.json index 7fd2f550eb..4949705fe2 100644 --- a/package.json +++ b/package.json @@ -63,8 +63,6 @@ "redux": "^5.0.1", "redux-thunk": "^3.1.0", "sanitize-html": "^2.13.0", - "typedoc": "^0.26.10", - "typedoc-plugin-markdown": "^4.2.10", "typescript": "^5.6.3", "vite": "^5.4.8", "vite-plugin-environment": "^1.1.3", @@ -92,7 +90,8 @@ "update:toc": "node scripts/githooks/update-toc.js", "lint-staged": "lint-staged --concurrent false", "setup": "tsx setup.ts", - "check-localstorage": "node scripts/githooks/check-localstorage-usage.js" + "check-localstorage": "node scripts/githooks/check-localstorage-usage.js", + "generate-docs": "typedoc --out docs/docs/auto-docs --plugin typedoc-plugin-markdown --theme markdown --tsconfig tsconfig.docs.json --excludePrivate --excludeProtected --excludeExternals --hideGenerator --categorizeByGroup true --entryPointStrategy expand --entryPoints \"src/**/*.ts\" \"src/**/*.tsx\" --exclude \"**/*.{test,spec,stories}.{ts,tsx}\" --exclude \"**/__tests__/**\" --exclude \"**/__mocks__/**\" --exclude \"**/node_modules/**\" --cleanOutputDir true --skipErrorChecking --logLevel Warn" }, "eslintConfig": { "extends": [ @@ -117,10 +116,10 @@ "@babel/preset-env": "^7.26.0", "@babel/preset-react": "^7.25.7", "@babel/preset-typescript": "^7.26.0", + "@testing-library/dom": "^10.4.0", "@testing-library/jest-dom": "^6.6.3", "@testing-library/react": "^16.0.1", "@testing-library/user-event": "^12.1.10", - "@testing-library/dom": "^10.4.0", "@types/inquirer": "^9.0.7", "@types/jest": "^26.0.24", "@types/js-cookie": "^3.0.6", @@ -156,7 +155,10 @@ "lint-staged": "^15.3.0", "postcss-modules": "^6.0.1", "sass": "^1.80.7", + "shiki": "^1.26.1", "tsx": "^4.19.1", + "typedoc": "^0.27.6", + "typedoc-plugin-markdown": "^4.4.1", "vite-plugin-svgr": "^4.2.0", "vitest": "^2.1.5", "whatwg-fetch": "^3.6.20" diff --git a/tsconfig.docs.json b/tsconfig.docs.json new file mode 100644 index 0000000000..e017e0ef06 --- /dev/null +++ b/tsconfig.docs.json @@ -0,0 +1,23 @@ +{ + "extends": "./tsconfig.json", + "compilerOptions": { + "noEmit": true, + "noImplicitAny": false, + "skipLibCheck": true, + "noUnusedLocals": false, + "noUnusedParameters": false, + "strict": false, + "allowJs": true, + "checkJs": false + }, + "include": ["src/**/*.ts", "src/**/*.tsx"], + "exclude": [ + "node_modules", + "**/*.spec.ts", + "**/*.test.ts", + "**/*.spec.tsx", + "**/*.test.tsx", + "**/__tests__/**", + "**/__mocks__/**" + ] +} From 3ea1bc8148fd1f2efa92a17958ea5a5df0d9cc86 Mon Sep 17 00:00:00 2001 From: Rukh-Khan Date: Sun, 12 Jan 2025 17:15:32 +0530 Subject: [PATCH 04/42] doc: talawa-admin-autoGen-doc --- 3141 | 0 docs/docs/auto-docs/App/README.md | 11 - docs/docs/auto-docs/App/functions/default.md | 30 -- .../auto-docs/Constant/constant/README.md | 16 - .../Constant/constant/variables/AUTH_TOKEN.md | 11 - .../constant/variables/BACKEND_URL.md | 11 - .../REACT_APP_BACKEND_WEBSOCKET_URL.md | 11 - .../variables/REACT_APP_CUSTOM_PORT.md | 11 - .../variables/REACT_APP_USE_RECAPTCHA.md | 11 - .../constant/variables/RECAPTCHA_SITE_KEY.md | 11 - .../ActionItemCategoryMutations/README.md | 12 - .../CREATE_ACTION_ITEM_CATEGORY_MUTATION.md | 25 -- .../UPDATE_ACTION_ITEM_CATEGORY_MUTATION.md | 25 -- .../Mutations/ActionItemMutations/README.md | 13 - .../variables/CREATE_ACTION_ITEM_MUTATION.md | 37 -- .../variables/DELETE_ACTION_ITEM_MUTATION.md | 17 - .../variables/UPDATE_ACTION_ITEM_MUTATION.md | 41 -- .../AgendaCategoryMutations/README.md | 13 - .../CREATE_AGENDA_ITEM_CATEGORY_MUTATION.md | 17 - .../DELETE_AGENDA_ITEM_CATEGORY_MUTATION.md | 17 - .../UPDATE_AGENDA_ITEM_CATEGORY_MUTATION.md | 21 - .../Mutations/AgendaItemMutations/README.md | 13 - .../variables/CREATE_AGENDA_ITEM_MUTATION.md | 11 - .../variables/DELETE_AGENDA_ITEM_MUTATION.md | 11 - .../variables/UPDATE_AGENDA_ITEM_MUTATION.md | 11 - .../Mutations/CampaignMutation/README.md | 12 - .../variables/CREATE_CAMPAIGN_MUTATION.md | 41 -- .../variables/UPDATE_CAMPAIGN_MUTATION.md | 41 -- .../Mutations/CommentMutations/README.md | 13 - .../variables/CREATE_COMMENT_POST.md | 25 -- .../variables/LIKE_COMMENT.md | 21 - .../variables/UNLIKE_COMMENT.md | 21 - .../EventAttendeeMutations/README.md | 13 - .../variables/ADD_EVENT_ATTENDEE.md | 25 -- .../variables/MARK_CHECKIN.md | 25 -- .../variables/REMOVE_EVENT_ATTENDEE.md | 25 -- .../EventVolunteerMutation/README.md | 17 - .../variables/ADD_VOLUNTEER.md | 21 - .../variables/CREATE_VOLUNTEER_GROUP.md | 28 -- .../variables/CREATE_VOLUNTEER_MEMBERSHIP.md | 11 - .../variables/DELETE_VOLUNTEER.md | 21 - .../variables/DELETE_VOLUNTEER_GROUP.md | 21 - .../variables/UPDATE_VOLUNTEER_GROUP.md | 25 -- .../variables/UPDATE_VOLUNTEER_MEMBERSHIP.md | 25 -- .../GraphQl/Mutations/FundMutation/README.md | 12 - .../variables/CREATE_FUND_MUTATION.md | 41 -- .../variables/UPDATE_FUND_MUTATION.md | 41 -- .../Mutations/OrganizationMutations/README.md | 27 -- .../variables/ADD_CUSTOM_FIELD.md | 29 -- .../variables/ADD_USER_TO_GROUP_CHAT.md | 11 - .../variables/CANCEL_MEMBERSHIP_REQUEST.md | 11 - .../variables/CREATE_CHAT.md | 25 -- .../CREATE_SAMPLE_ORGANIZATION_MUTATION.md | 17 - .../variables/EDIT_CHAT_MESSAGE.md | 11 - .../variables/JOIN_PUBLIC_ORGANIZATION.md | 11 - .../variables/MARK_CHAT_MESSAGES_AS_READ.md | 11 - .../variables/MESSAGE_SENT_TO_CHAT.md | 11 - .../variables/PLUGIN_SUBSCRIPTION.md | 17 - .../variables/REMOVE_CUSTOM_FIELD.md | 25 -- .../REMOVE_SAMPLE_ORGANIZATION_MUTATION.md | 17 - .../variables/SEND_MEMBERSHIP_REQUEST.md | 11 - .../variables/SEND_MESSAGE_TO_CHAT.md | 11 - .../variables/TOGGLE_PINNED_POST.md | 21 - .../variables/UPDATE_CHAT.md | 11 - .../UPDATE_USER_ROLE_IN_ORG_MUTATION.md | 29 -- .../Mutations/PledgeMutation/README.md | 13 - .../PledgeMutation/variables/CREATE_PlEDGE.md | 41 -- .../PledgeMutation/variables/DELETE_PLEDGE.md | 21 - .../PledgeMutation/variables/UPDATE_PLEDGE.md | 37 -- .../GraphQl/Mutations/TagMutations/README.md | 17 - .../variables/ADD_PEOPLE_TO_TAG.md | 21 - .../TagMutations/variables/ASSIGN_TO_TAGS.md | 21 - .../TagMutations/variables/CREATE_USER_TAG.md | 29 -- .../variables/REMOVE_FROM_TAGS.md | 21 - .../TagMutations/variables/REMOVE_USER_TAG.md | 17 - .../variables/UNASSIGN_USER_TAG.md | 21 - .../TagMutations/variables/UPDATE_USER_TAG.md | 21 - .../Mutations/VenueMutations/README.md | 13 - .../variables/CREATE_VENUE_MUTATION.md | 33 -- .../variables/DELETE_VENUE_MUTATION.md | 17 - .../variables/UPDATE_VENUE_MUTATION.md | 33 -- .../GraphQl/Mutations/mutations/README.md | 224 ---------- .../ACCEPT_ORGANIZATION_REQUEST_MUTATION.md | 11 - .../variables/ADDRESS_DETAILS_FRAGMENT.md | 11 - .../mutations/variables/ADD_ADMIN_MUTATION.md | 11 - .../variables/ADD_ADVERTISEMENT_MUTATION.md | 11 - .../variables/ADD_MEMBER_MUTATION.md | 11 - .../variables/ADD_PLUGIN_MUTATION.md | 15 - .../variables/BLOCK_USER_MUTATION.md | 11 - .../variables/CREATE_EVENT_MUTATION.md | 11 - .../variables/CREATE_ORGANIZATION_MUTATION.md | 11 - .../variables/CREATE_POST_MUTATION.md | 11 - .../variables/DELETE_ADVERTISEMENT_BY_ID.md | 11 - .../variables/DELETE_EVENT_MUTATION.md | 11 - .../variables/DELETE_ORGANIZATION_MUTATION.md | 11 - .../variables/DELETE_POST_MUTATION.md | 11 - .../variables/DONATE_TO_ORGANIZATION.md | 11 - .../variables/FORGOT_PASSWORD_MUTATION.md | 11 - .../variables/GENERATE_OTP_MUTATION.md | 11 - .../mutations/variables/LIKE_POST.md | 11 - .../mutations/variables/LOGIN_MUTATION.md | 11 - .../mutations/variables/RECAPTCHA_MUTATION.md | 11 - .../variables/REFRESH_TOKEN_MUTATION.md | 11 - .../mutations/variables/REGISTER_EVENT.md | 11 - .../REJECT_ORGANIZATION_REQUEST_MUTATION.md | 11 - .../variables/REMOVE_ADMIN_MUTATION.md | 11 - .../variables/REMOVE_MEMBER_MUTATION.md | 11 - .../mutations/variables/RESET_COMMUNITY.md | 11 - .../variables/REVOKE_REFRESH_TOKEN.md | 11 - .../mutations/variables/SIGNUP_MUTATION.md | 11 - .../variables/UNBLOCK_USER_MUTATION.md | 11 - .../mutations/variables/UNLIKE_POST.md | 11 - .../UPDATE_ADVERTISEMENT_MUTATION.md | 11 - .../mutations/variables/UPDATE_COMMUNITY.md | 11 - .../variables/UPDATE_EVENT_MUTATION.md | 11 - .../UPDATE_INSTALL_STATUS_PLUGIN_MUTATION.md | 15 - .../variables/UPDATE_ORGANIZATION_MUTATION.md | 11 - .../UPDATE_ORG_STATUS_PLUGIN_MUTATION.md | 15 - .../variables/UPDATE_POST_MUTATION.md | 11 - .../variables/UPDATE_SESSION_TIMEOUT.md | 11 - .../variables/UPDATE_USER_MUTATION.md | 11 - .../UPDATE_USER_PASSWORD_MUTATION.md | 11 - .../ActionItemCategoryQueries/README.md | 11 - .../variables/ACTION_ITEM_CATEGORY_LIST.md | 21 - .../Queries/ActionItemQueries/README.md | 12 - .../variables/ACTION_ITEMS_BY_USER.md | 11 - .../variables/ACTION_ITEM_LIST.md | 37 -- .../Queries/AgendaCategoryQueries/README.md | 11 - .../variables/AGENDA_ITEM_CATEGORY_LIST.md | 21 - .../Queries/AgendaItemQueries/README.md | 12 - .../variables/AgendaItemByEvent.md | 11 - .../variables/AgendaItemByOrganization.md | 11 - .../Queries/EventVolunteerQueries/README.md | 14 - .../variables/EVENT_VOLUNTEER_GROUP_LIST.md | 11 - .../variables/EVENT_VOLUNTEER_LIST.md | 25 -- .../variables/USER_VOLUNTEER_MEMBERSHIP.md | 11 - .../variables/VOLUNTEER_RANKING.md | 11 - .../Queries/OrganizationQueries/README.md | 19 - .../variables/ORGANIZATION_ADMINS_LIST.md | 21 - .../ORGANIZATION_ADVERTISEMENT_LIST.md | 11 - .../variables/ORGANIZATION_FUNDS.md | 21 - .../variables/ORGANIZATION_POST_LIST.md | 33 -- .../variables/ORGANIZATION_USER_TAGS_LIST.md | 37 -- .../variables/USER_CREATED_ORGANIZATIONS.md | 21 - .../variables/USER_JOINED_ORGANIZATIONS.md | 21 - .../variables/USER_ORGANIZATION_CONNECTION.md | 33 -- .../variables/VENUE_LIST.md | 21 - .../GraphQl/Queries/PlugInQueries/README.md | 20 - .../variables/ADVERTISEMENTS_GET.md | 17 - .../PlugInQueries/variables/CHATS_LIST.md | 11 - .../PlugInQueries/variables/CHAT_BY_ID.md | 21 - .../variables/GROUP_CHAT_LIST.md | 11 - .../variables/IS_SAMPLE_ORGANIZATION_QUERY.md | 21 - .../variables/ORGANIZATION_CUSTOM_FIELDS.md | 21 - .../ORGANIZATION_EVENTS_CONNECTION.md | 41 -- .../PlugInQueries/variables/PLUGIN_GET.md | 17 - .../variables/UNREAD_CHAT_LIST.md | 11 - .../variables/USER_EVENTS_VOLUNTEER.md | 11 - .../GraphQl/Queries/Queries/README.md | 132 ------ .../Queries/Queries/variables/ADMIN_LIST.md | 11 - .../variables/BLOCK_PAGE_MEMBER_LIST.md | 11 - .../Queries/Queries/variables/CHECK_AUTH.md | 11 - .../Queries/variables/EVENT_ATTENDEES.md | 11 - .../Queries/variables/EVENT_CHECKINS.md | 11 - .../Queries/variables/EVENT_DETAILS.md | 11 - .../Queries/variables/EVENT_FEEDBACKS.md | 11 - .../Queries/variables/EVENT_REGISTRANTS.md | 11 - .../Queries/variables/GET_COMMUNITY_DATA.md | 11 - .../GET_COMMUNITY_SESSION_TIMEOUT_DATA.md | 11 - .../Queries/variables/MEMBERSHIP_REQUEST.md | 11 - .../Queries/Queries/variables/MEMBERS_LIST.md | 11 - .../Queries/variables/ORGANIZATIONS_LIST.md | 11 - .../ORGANIZATIONS_MEMBER_CONNECTION_LIST.md | 11 - .../variables/ORGANIZATION_CONNECTION_LIST.md | 11 - .../ORGANIZATION_DONATION_CONNECTION_LIST.md | 11 - .../ORGANIZATION_EVENT_CONNECTION_LIST.md | 11 - .../variables/ORGANIZATION_EVENT_LIST.md | 11 - .../Queries/variables/ORGANIZATION_LIST.md | 11 - .../Queries/variables/RECURRING_EVENTS.md | 11 - .../variables/USERS_CONNECTION_LIST.md | 11 - .../Queries/Queries/variables/USER_DETAILS.md | 11 - .../Queries/Queries/variables/USER_LIST.md | 11 - .../Queries/variables/USER_LIST_FOR_TABLE.md | 11 - .../Queries/variables/USER_LIST_REQUEST.md | 11 - .../variables/USER_ORGANIZATION_LIST.md | 11 - .../GraphQl/Queries/fundQueries/README.md | 15 - .../fundQueries/variables/FUND_CAMPAIGN.md | 11 - .../variables/FUND_CAMPAIGN_PLEDGE.md | 11 - .../fundQueries/variables/FUND_LIST.md | 25 -- .../variables/USER_FUND_CAMPAIGNS.md | 11 - .../fundQueries/variables/USER_PLEDGES.md | 11 - .../GraphQl/Queries/userTagQueries/README.md | 13 - .../variables/USER_TAGS_ASSIGNED_MEMBERS.md | 21 - .../USER_TAGS_MEMBERS_TO_ASSIGN_TO.md | 21 - .../variables/USER_TAG_SUB_TAGS.md | 21 - docs/docs/auto-docs/README.md | 60 --- docs/docs/auto-docs/_media/CODE_OF_CONDUCT.md | 150 ------- docs/docs/auto-docs/_media/CONTRIBUTING.md | 179 -------- docs/docs/auto-docs/_media/INSTALLATION.md | 382 ------------------ .../docs/auto-docs/_media/ISSUE_GUIDELINES.md | 59 --- docs/docs/auto-docs/_media/PR_GUIDELINES.md | 69 ---- .../assets/svgs/social-icons/README.md | 7 - .../components/AddOn/AddOn/README.md | 11 - .../AddOn/AddOn/functions/default.md | 27 -- .../core/AddOnEntry/AddOnEntry/README.md | 11 - .../AddOnEntry/functions/default.md | 43 -- .../core/AddOnEntry/AddOnEntryMocks/README.md | 11 - .../variables/ADD_ON_ENTRY_MOCK.md | 65 --- .../AddOnRegister/AddOnRegister/README.md | 11 - .../AddOnRegister/functions/default.md | 32 -- .../core/AddOnStore/AddOnStore/README.md | 11 - .../AddOnStore/functions/default.md | 25 -- .../components/Action/Action/README.md | 11 - .../Action/Action/functions/default.md | 35 -- .../MainContent/MainContent/README.md | 11 - .../MainContent/functions/default.md | 35 -- .../components/SidePanel/SidePanel/README.md | 11 - .../SidePanel/SidePanel/functions/default.md | 35 -- .../support/services/Plugin.helper/README.md | 11 - .../services/Plugin.helper/classes/default.md | 77 ---- .../support/services/Render.helper/README.md | 11 - .../services/Render.helper/classes/default.md | 19 - .../AddPeopleToTag/AddPeopleToTag/README.md | 15 - .../AddPeopleToTag/functions/default.md | 31 -- .../InterfaceAddPeopleToTagProps.md | 59 --- .../AddPeopleToTagsMocks/README.md | 12 - .../AddPeopleToTagsMocks/variables/MOCKS.md | 11 - .../variables/MOCKS_ERROR.md | 57 --- .../Advertisements/Advertisements/README.md | 11 - .../Advertisements/functions/default.md | 15 - .../AdvertisementEntry/README.md | 11 - .../AdvertisementEntry/functions/default.md | 28 -- .../AdvertisementRegister/README.md | 11 - .../functions/default.md | 36 -- .../AgendaCategoryContainer/README.md | 11 - .../functions/default.md | 47 --- .../AgendaCategoryContainerMocks/README.md | 12 - .../variables/MOCKS.md | 11 - .../variables/MOCKS_ERROR_MUTATIONS.md | 11 - .../AgendaCategoryContainerProps/README.md | 12 - .../variables/props.md | 25 -- .../variables/props2.md | 25 -- .../AgendaItemsContainer/README.md | 11 - .../AgendaItemsContainer/functions/default.md | 43 -- .../AgendaItemsContainerMocks/README.md | 12 - .../variables/MOCKS.md | 11 - .../variables/MOCKS_ERROR.md | 11 - .../AgendaItemsContainerProps/README.md | 12 - .../variables/props.md | 29 -- .../variables/props2.md | 29 -- .../AgendaItemsCreateModal/README.md | 11 - .../functions/default.md | 34 -- .../AgendaItemsDeleteModal/README.md | 11 - .../functions/default.md | 34 -- .../AgendaItemsPreviewModal/README.md | 11 - .../functions/default.md | 35 -- .../AgendaItemsUpdateModal/README.md | 11 - .../functions/default.md | 35 -- .../components/Avatar/Avatar/README.md | 11 - .../Avatar/Avatar/functions/default.md | 26 -- .../ChangeLanguageDropDown/README.md | 11 - .../functions/default.md | 28 -- .../components/CheckIn/CheckInModal/README.md | 11 - .../CheckInModal/functions/CheckInModal.md | 26 -- .../CheckIn/CheckInWrapper/README.md | 11 - .../functions/CheckInWrapper.md | 27 -- .../components/CheckIn/TableRow/README.md | 11 - .../CheckIn/TableRow/functions/TableRow.md | 32 -- .../components/CheckIn/mocks/README.md | 13 - .../mocks/variables/checkInMutationSuccess.md | 49 --- .../variables/checkInMutationUnsuccess.md | 37 -- .../mocks/variables/checkInQueryMock.md | 37 -- .../components/CheckIn/tagTemplate/README.md | 11 - .../tagTemplate/variables/tagTemplate.md | 11 - .../components/CheckIn/types/README.md | 16 - .../interfaces/InterfaceAttendeeCheckIn.md | 41 -- .../InterfaceAttendeeQueryResponse.md | 25 -- .../types/interfaces/InterfaceModalProp.md | 37 -- .../types/interfaces/InterfaceTableCheckIn.md | 57 --- .../types/interfaces/InterfaceTableData.md | 33 -- .../CheckIn/types/interfaces/InterfaceUser.md | 33 -- .../CollapsibleDropdown/README.md | 15 - .../CollapsibleDropdown/functions/default.md | 25 -- .../InterfaceCollapsibleDropdown.md | 33 -- .../ContriStats/ContriStats/README.md | 11 - .../ContriStats/functions/default.md | 25 -- .../CurrentHourIndicator/README.md | 11 - .../CurrentHourIndicator/functions/default.md | 19 - .../DynamicDropDown/DynamicDropDown/README.md | 11 - .../DynamicDropDown/functions/default.md | 32 -- .../EditCustomFieldDropDown/README.md | 11 - .../functions/default.md | 29 -- .../EventCalendar/EventCalendar/README.md | 11 - .../EventCalendar/functions/default.md | 31 -- .../EventCalendar/EventHeader/README.md | 11 - .../EventHeader/functions/default.md | 26 -- .../YearlyEventCalender/README.md | 11 - .../YearlyEventCalender/functions/default.md | 38 -- .../EventDashboardScreen/README.md | 11 - .../EventDashboardScreen/functions/default.md | 20 - .../EventListCard/EventListCard/README.md | 15 - .../EventListCard/functions/default.md | 27 -- .../interfaces/InterfaceEventListCardProps.md | 183 --------- .../EventListCardMocks/README.md | 12 - .../variables/ERROR_MOCKS.md | 33 -- .../EventListCardMocks/variables/MOCKS.md | 11 - .../EventListCardModals/README.md | 11 - .../EventListCardModals/functions/default.md | 28 -- .../EventListCardProps/README.md | 11 - .../EventListCardProps/variables/props.md | 11 - .../Dashboard/EventDashboard.mocks/README.md | 12 - .../variables/MOCKS_WITHOUT_TIME.md | 101 ----- .../variables/MOCKS_WITH_TIME.md | 101 ----- .../Dashboard/EventDashboard/README.md | 11 - .../EventDashboard/functions/default.md | 29 -- .../EventAgendaItems/README.md | 11 - .../EventAgendaItems/functions/default.md | 29 -- .../EventAgendaItemsMocks/README.md | 13 - .../EventAgendaItemsMocks/variables/MOCKS.md | 11 - .../variables/MOCKS_ERROR_MUTATION.md | 11 - .../variables/MOCKS_ERROR_QUERY.md | 11 - .../Attendance.mocks/README.md | 12 - .../Attendance.mocks/variables/MOCKS.md | 41 -- .../Attendance.mocks/variables/MOCKS_ERROR.md | 29 -- .../AttendedEventList/README.md | 11 - .../AttendedEventList/functions/default.md | 35 -- .../EventAttendance/EventAttendance/README.md | 11 - .../EventAttendance/functions/default.md | 20 - .../EventAttendance/EventStatistics/README.md | 11 - .../functions/AttendanceStatisticsModal.md | 36 -- .../EventAttendance/InterfaceEvents/README.md | 14 - ...InterfaceAttendanceStatisticsModalProps.md | 75 ---- .../interfaces/InterfaceEvent.md | 189 --------- .../interfaces/InterfaceMember.md | 97 ----- .../interfaces/InterfaceRecurringEvent.md | 89 ---- .../EventRegistrants/README.md | 11 - .../EventRegistrants/functions/default.md | 20 - .../Registrations.mocks/README.md | 12 - .../variables/REGISTRANTS_MOCKS.md | 11 - .../variables/REGISTRANTS_MOCKS_ERROR.md | 33 -- .../AddOnSpotAttendee/README.md | 11 - .../AddOnSpotAttendee/functions/default.md | 35 -- .../EventRegistrantsModal/README.md | 11 - .../functions/EventRegistrantsModal.md | 26 -- .../EventRegistrantsWrapper/README.md | 11 - .../functions/EventRegistrantsWrapper.md | 25 -- .../EventStats/EventStats/README.md | 11 - .../EventStats/functions/EventStats.md | 26 -- .../EventStats/EventStatsWrapper/README.md | 11 - .../functions/EventStatsWrapper.md | 27 -- .../Statistics/AverageRating/README.md | 11 - .../AverageRating/functions/AverageRating.md | 28 -- .../EventStats/Statistics/Feedback/README.md | 11 - .../Feedback/functions/FeedbackStats.md | 28 -- .../EventStats/Statistics/Review/README.md | 11 - .../Review/functions/ReviewStats.md | 28 -- .../GroupChatDetails/README.md | 11 - .../GroupChatDetails/functions/default.md | 25 -- .../HolidayCards/HolidayCard/README.md | 11 - .../HolidayCard/functions/default.md | 27 -- .../IconComponent/IconComponent/README.md | 15 - .../IconComponent/functions/default.md | 27 -- .../interfaces/InterfaceIconComponent.md | 41 -- .../InfiniteScrollLoader/README.md | 11 - .../InfiniteScrollLoader/functions/default.md | 17 - .../LeftDrawer/LeftDrawer/README.md | 15 - .../LeftDrawer/functions/default.md | 25 -- .../interfaces/InterfaceLeftDrawerProps.md | 25 -- .../LeftDrawerOrg/LeftDrawerOrg/README.md | 15 - .../LeftDrawerOrg/functions/default.md | 25 -- .../interfaces/InterfaceLeftDrawerProps.md | 41 -- .../components/Loader/Loader/README.md | 11 - .../Loader/Loader/functions/default.md | 25 -- .../LoginPortalToggle/README.md | 11 - .../LoginPortalToggle/functions/default.md | 27 -- .../EventsAttendedByMember/README.md | 11 - .../functions/default.md | 21 - .../EventsAttendedCardItem/README.md | 15 - .../functions/default.md | 21 - .../interfaces/InterfaceCardItem.md | 88 ---- .../EventsAttendedMemberModal/README.md | 11 - .../functions/default.md | 31 -- .../MemberDetail/customTableCell/README.md | 11 - .../functions/CustomTableCell.md | 37 -- .../MemberRequestCard/README.md | 11 - .../MemberRequestCard/functions/default.md | 27 -- .../components/NotFound/NotFound/README.md | 11 - .../NotFound/NotFound/functions/default.md | 25 -- .../OrgAdminListCard/README.md | 11 - .../OrgAdminListCard/functions/default.md | 25 -- .../OrgContriCards/OrgContriCards/README.md | 11 - .../OrgContriCards/functions/default.md | 30 -- .../components/OrgDelete/OrgDelete/README.md | 11 - .../OrgDelete/OrgDelete/functions/default.md | 21 - .../OrgListCard/OrgListCard/README.md | 15 - .../OrgListCard/functions/default.md | 31 -- .../interfaces/InterfaceOrgListCardProps.md | 19 - .../OrgListCard/TruncatedText/README.md | 11 - .../TruncatedText/functions/default.md | 47 --- .../OrgListCard/useDebounce/README.md | 11 - .../useDebounce/functions/default.md | 61 --- .../OrgPeopleListCard/README.md | 11 - .../OrgPeopleListCard/functions/default.md | 30 -- .../OrgPostCard/DeletePostModal/README.md | 11 - .../DeletePostModal/functions/default.md | 31 -- .../OrgPostCard/OrgPostCard/README.md | 11 - .../OrgPostCard/functions/default.md | 21 - .../CategoryModal/README.md | 15 - .../CategoryModal/functions/default.md | 37 -- .../InterfaceActionItemCategoryModal.md | 74 ---- .../OrgActionItemCategories/README.md | 11 - .../functions/default.md | 34 -- .../OrgActionItemCategoryMocks/README.md | 13 - .../variables/MOCKS.md | 11 - .../variables/MOCKS_EMPTY.md | 53 --- .../variables/MOCKS_ERROR.md | 11 - .../AgendaCategoryCreateModal/README.md | 11 - .../functions/default.md | 35 -- .../AgendaCategoryDeleteModal/README.md | 11 - .../functions/default.md | 35 -- .../AgendaCategoryPreviewModal/README.md | 11 - .../functions/default.md | 35 -- .../AgendaCategoryUpdateModal/README.md | 11 - .../functions/default.md | 35 -- .../OrganizationAgendaCategory/README.md | 11 - .../functions/default.md | 37 -- .../README.md | 12 - ...S_ERROR_AGENDA_ITEM_CATEGORY_LIST_QUERY.md | 41 -- .../variables/MOCKS_ERROR_MUTATION.md | 11 - .../OrganizationAgendaCategoryMocks/README.md | 11 - .../variables/MOCKS.md | 11 - .../General/DeleteOrg/DeleteOrg/README.md | 11 - .../DeleteOrg/DeleteOrg/functions/default.md | 24 -- .../General/GeneralSettings/README.md | 11 - .../GeneralSettings/functions/default.md | 37 -- .../OrgProfileFieldSettings/README.md | 11 - .../functions/default.md | 22 - .../General/OrgUpdate/OrgUpdate/README.md | 11 - .../OrgUpdate/OrgUpdate/functions/default.md | 31 -- .../OrgUpdate/OrgUpdateMocks/README.md | 13 - .../OrgUpdateMocks/variables/MOCKS.md | 11 - .../variables/MOCKS_ERROR_ORGLIST.md | 33 -- .../variables/MOCKS_ERROR_UPDATE_ORGLIST.md | 11 - .../OrganizationCard/README.md | 11 - .../OrganizationCard/functions/default.md | 27 -- .../OrganizationCardStart/README.md | 11 - .../functions/default.md | 25 -- .../OrganizationDashCards/CardItem/README.md | 15 - .../CardItem/functions/default.md | 27 -- .../CardItem/interfaces/InterfaceCardItem.md | 83 ---- .../CardItemLoading/README.md | 11 - .../CardItemLoading/functions/default.md | 19 - .../DashboardCard/README.md | 11 - .../DashboardCard/functions/default.md | 35 -- .../DashboardCardLoading/README.md | 11 - .../DashboardCardLoading/functions/default.md | 19 - .../OrganizationScreen/README.md | 11 - .../OrganizationScreen/functions/default.md | 24 -- .../Pagination/Pagination/README.md | 11 - .../Pagination/functions/default.md | 31 -- .../PaginationList/PaginationList/README.md | 11 - .../PaginationList/functions/default.md | 24 -- .../ProfileDropdown/ProfileDropdown/README.md | 11 - .../ProfileDropdown/functions/default.md | 26 -- .../CustomRecurrenceModal/README.md | 11 - .../functions/default.md | 41 -- .../RecurrenceOptions/README.md | 11 - .../RecurrenceOptions/functions/default.md | 49 --- .../RequestsTableItem/README.md | 15 - .../RequestsTableItem/functions/default.md | 31 -- .../interfaces/InterfaceRequestsListItem.md | 39 -- .../RequestsTableItemMocks/README.md | 11 - .../RequestsTableItemMocks/variables/MOCKS.md | 11 - .../SecuredRoute/SecuredRoute/README.md | 11 - .../SecuredRoute/functions/default.md | 22 - .../SuperAdminScreen/README.md | 11 - .../SuperAdminScreen/functions/default.md | 20 - .../TableLoader/TableLoader/README.md | 15 - .../TableLoader/functions/default.md | 29 -- .../interfaces/InterfaceTableLoader.md | 33 -- .../TagActions/TagActions/README.md | 15 - .../TagActions/functions/default.md | 31 -- .../interfaces/InterfaceTagActionsProps.md | 55 --- .../TagActions/TagActionsMocks/README.md | 13 - .../TagActionsMocks/variables/MOCKS.md | 11 - .../MOCKS_ERROR_ORGANIZATION_TAGS_QUERY.md | 49 --- .../variables/MOCKS_ERROR_SUBTAGS_QUERY.md | 11 - .../components/TagActions/TagNode/README.md | 11 - .../TagActions/TagNode/functions/default.md | 33 -- .../TagActions/TagNodeMocks/README.md | 12 - .../TagNodeMocks/variables/MOCKS1.md | 11 - .../variables/MOCKS_ERROR_SUBTAGS_QUERY1.md | 37 -- .../UpdateSession/UpdateSession/README.md | 11 - .../UpdateSession/functions/default.md | 31 -- .../UserListCard/UserListCard/README.md | 11 - .../UserListCard/functions/default.md | 28 -- .../UserPasswordUpdate/README.md | 11 - .../UserPasswordUpdate/functions/default.md | 38 -- .../UserPasswordUpdateMocks/README.md | 11 - .../variables/MOCKS.md | 11 - .../UserPortal/ChatRoom/ChatRoom/README.md | 11 - .../ChatRoom/ChatRoom/functions/default.md | 21 - .../CommentCard/CommentCard/README.md | 11 - .../CommentCard/functions/default.md | 30 -- .../ContactCard/ContactCard/README.md | 11 - .../ContactCard/functions/default.md | 31 -- .../CreateDirectChat/README.md | 11 - .../CreateDirectChat/functions/default.md | 21 - .../CreateGroupChat/CreateGroupChat/README.md | 11 - .../CreateGroupChat/functions/default.md | 21 - .../DonationCard/DonationCard/README.md | 11 - .../DonationCard/functions/default.md | 30 -- .../UserPortal/EventCard/EventCard/README.md | 11 - .../EventCard/EventCard/functions/default.md | 31 -- .../OrganizationCard/README.md | 11 - .../OrganizationCard/functions/default.md | 21 - .../OrganizationNavbar/README.md | 11 - .../OrganizationNavbar/functions/default.md | 33 -- .../OrganizationSidebar/README.md | 11 - .../OrganizationSidebar/functions/default.md | 29 -- .../PeopleCard/PeopleCard/README.md | 11 - .../PeopleCard/functions/default.md | 34 -- .../UserPortal/PostCard/PostCard/README.md | 11 - .../PostCard/PostCard/functions/default.md | 34 -- .../PromotedPost/PromotedPost/README.md | 11 - .../PromotedPost/functions/default.md | 32 -- .../UserPortal/Register/Register/README.md | 11 - .../Register/Register/functions/default.md | 21 - .../SecuredRouteForUser/README.md | 11 - .../SecuredRouteForUser/functions/default.md | 22 - .../StartPostModal/StartPostModal/README.md | 11 - .../StartPostModal/functions/default.md | 30 -- .../UserNavbar/UserNavbar/README.md | 11 - .../UserNavbar/functions/default.md | 24 -- .../EventsAttendedByUser/README.md | 17 - .../functions/EventsAttendedByUser.md | 31 -- .../UserProfile/UserAddressFields/README.md | 17 - .../functions/UserAddressFields.md | 38 -- .../UserSidebar/UserSidebar/README.md | 15 - .../UserSidebar/functions/default.md | 30 -- .../interfaces/InterfaceUserSidebarProps.md | 25 -- .../UserSidebarOrg/UserSidebarOrg/README.md | 15 - .../UserSidebarOrg/functions/default.md | 30 -- .../InterfaceUserSidebarOrgProps.md | 41 -- .../UserProfileSettings/DeleteUser/README.md | 11 - .../DeleteUser/functions/default.md | 34 -- .../OtherSettings/README.md | 11 - .../OtherSettings/functions/default.md | 34 -- .../UserProfileSettings/UserProfile/README.md | 11 - .../UserProfile/functions/default.md | 38 -- .../UserTableItemMocks/README.md | 13 - .../UserTableItemMocks/variables/MOCKS.md | 11 - .../UserTableItemMocks/variables/MOCKS2.md | 37 -- .../variables/MOCKS_UPDATE.md | 11 - .../UsersTableItem/UsersTableItem/README.md | 11 - .../UsersTableItem/functions/default.md | 21 - .../components/Venues/VenueCard/README.md | 11 - .../Venues/VenueCard/functions/default.md | 39 -- .../components/Venues/VenueModal/README.md | 15 - .../Venues/VenueModal/functions/default.md | 28 -- .../interfaces/InterfaceVenueModalProps.md | 65 --- .../plugins/DummyPlugin/DummyPlugin/README.md | 11 - .../DummyPlugin/functions/default.md | 22 - .../DummyPlugin2/DummyPlugin2/README.md | 11 - .../DummyPlugin2/functions/default.md | 21 - .../auto-docs/components/plugins/README.md | 19 - docs/docs/auto-docs/constants/README.md | 11 - .../constants/variables/socialMediaLinks.md | 25 -- docs/docs/auto-docs/index/README.md | 7 - docs/docs/auto-docs/modules.md | 337 --------------- docs/docs/auto-docs/reportWebVitals/README.md | 11 - .../reportWebVitals/functions/default.md | 21 - .../screens/BlockUser/BlockUser/README.md | 11 - .../BlockUser/BlockUser/functions/default.md | 28 -- .../CommunityProfile/README.md | 11 - .../CommunityProfile/functions/default.md | 30 -- .../EventManagement/EventManagement/README.md | 11 - .../EventManagement/functions/default.md | 34 -- .../Requests/Requests.mocks/README.md | 14 - .../Requests.mocks/variables/EMPTY_MOCKS.md | 49 --- .../Requests.mocks/variables/ERROR_MOCKS.md | 11 - .../Requests.mocks/variables/MOCKS.md | 11 - .../variables/UPDATE_ERROR_MOCKS.md | 11 - .../Requests/Requests/README.md | 11 - .../Requests/Requests/functions/default.md | 21 - .../VolunteerContainer/README.md | 11 - .../VolunteerContainer/functions/default.md | 21 - .../VolunteerGroupDeleteModal/README.md | 15 - .../functions/default.md | 48 --- .../InterfaceDeleteVolunteerGroupModal.md | 49 --- .../VolunteerGroupModal/README.md | 15 - .../VolunteerGroupModal/functions/default.md | 54 --- .../InterfaceVolunteerGroupModal.md | 73 ---- .../VolunteerGroupViewModal/README.md | 15 - .../functions/default.md | 41 -- .../InterfaceVolunteerGroupViewModal.md | 37 -- .../VolunteerGroups.mocks/README.md | 13 - .../VolunteerGroups.mocks/variables/MOCKS.md | 11 - .../variables/MOCKS_EMPTY.md | 57 --- .../variables/MOCKS_ERROR.md | 11 - .../VolunteerGroups/VolunteerGroups/README.md | 11 - .../VolunteerGroups/functions/default.md | 20 - .../Volunteers/VolunteerCreateModal/README.md | 15 - .../VolunteerCreateModal/functions/default.md | 49 --- .../InterfaceVolunteerCreateModal.md | 57 --- .../Volunteers/VolunteerDeleteModal/README.md | 15 - .../VolunteerDeleteModal/functions/default.md | 48 --- .../InterfaceDeleteVolunteerModal.md | 49 --- .../Volunteers/VolunteerViewModal/README.md | 15 - .../VolunteerViewModal/functions/default.md | 41 -- .../interfaces/InterfaceVolunteerViewModal.md | 37 -- .../Volunteers/Volunteers.mocks/README.md | 13 - .../Volunteers.mocks/variables/MOCKS.md | 11 - .../Volunteers.mocks/variables/MOCKS_EMPTY.md | 53 --- .../Volunteers.mocks/variables/MOCKS_ERROR.md | 11 - .../Volunteers/Volunteers/README.md | 11 - .../Volunteers/functions/default.md | 21 - .../ForgotPassword/ForgotPassword/README.md | 11 - .../ForgotPassword/functions/default.md | 29 -- .../FundCampaignPledge/README.md | 11 - .../FundCampaignPledge/functions/default.md | 15 - .../PledgeDeleteModal/README.md | 15 - .../PledgeDeleteModal/functions/default.md | 48 --- .../interfaces/InterfaceDeletePledgeModal.md | 49 --- .../FundCampaignPledge/PledgeModal/README.md | 15 - .../PledgeModal/functions/default.md | 53 --- .../interfaces/InterfacePledgeModal.md | 81 ---- .../FundCampaignPledge/PledgesMocks/README.md | 15 - .../PledgesMocks/variables/EMPTY_MOCKS.md | 11 - .../PledgesMocks/variables/MOCKS.md | 11 - .../variables/MOCKS_DELETE_PLEDGE_ERROR.md | 11 - .../MOCKS_FUND_CAMPAIGN_PLEDGE_ERROR.md | 11 - .../variables/PLEDGE_MODAL_MOCKS.md | 11 - .../Leaderboard/Leaderboard.mocks/README.md | 13 - .../variables/EMPTY_MOCKS.md | 57 --- .../variables/ERROR_MOCKS.md | 49 --- .../Leaderboard.mocks/variables/MOCKS.md | 57 --- .../screens/Leaderboard/Leaderboard/README.md | 11 - .../Leaderboard/functions/default.md | 23 -- .../screens/LoginPage/LoginPage/README.md | 11 - .../LoginPage/LoginPage/functions/default.md | 19 - .../ManageTag/EditUserTagModal/README.md | 15 - .../EditUserTagModal/functions/default.md | 31 -- .../InterfaceEditUserTagModalProps.md | 91 ----- .../screens/ManageTag/ManageTag/README.md | 11 - .../ManageTag/ManageTag/functions/default.md | 17 - .../MockAddPeopleToTag/README.md | 11 - .../MockAddPeopleToTag/functions/default.md | 31 -- .../MockTagActions/README.md | 11 - .../MockTagActions/functions/default.md | 33 -- .../ManageTag/ManageTagMocks/README.md | 12 - .../ManageTagMocks/variables/MOCKS.md | 11 - .../variables/MOCKS_ERROR_ASSIGNED_MEMBERS.md | 65 --- .../ManageTag/RemoveUserTagModal/README.md | 15 - .../RemoveUserTagModal/functions/default.md | 31 -- .../InterfaceRemoveUserTagModalProps.md | 59 --- .../ManageTag/UnassignUserTagModal/README.md | 15 - .../UnassignUserTagModal/functions/default.md | 31 -- .../InterfaceUnassignUserTagModalProps.md | 59 --- .../MemberDetail/MemberDetail/README.md | 13 - .../MemberDetail/functions/default.md | 38 -- .../MemberDetail/functions/getLanguageName.md | 21 - .../MemberDetail/functions/prettyDate.md | 21 - .../MemberDetail/MemberDetailMocks/README.md | 13 - .../MemberDetailMocks/variables/MOCKS1.md | 11 - .../MemberDetailMocks/variables/MOCKS2.md | 221 ---------- .../MemberDetailMocks/variables/MOCKS3.md | 221 ---------- .../OrgContribution/OrgContribution/README.md | 11 - .../OrgContribution/functions/default.md | 19 - .../screens/OrgList/OrgList/README.md | 11 - .../OrgList/OrgList/functions/default.md | 15 - .../screens/OrgList/OrgListMocks/README.md | 14 - .../OrgList/OrgListMocks/variables/MOCKS.md | 11 - .../OrgListMocks/variables/MOCKS_ADMIN.md | 11 - .../OrgListMocks/variables/MOCKS_EMPTY.md | 11 - .../variables/MOCKS_WITH_ERROR.md | 11 - .../OrgList/OrganizationModal/README.md | 11 - .../OrganizationModal/functions/default.md | 33 -- .../screens/OrgPost/OrgPost/README.md | 11 - .../OrgPost/OrgPost/functions/default.md | 21 - .../OrgSettings/OrgSettings.mocks/README.md | 11 - .../OrgSettings.mocks/variables/MOCKS.md | 11 - .../screens/OrgSettings/OrgSettings/README.md | 11 - .../OrgSettings/functions/default.md | 23 -- .../ItemDeleteModal/README.md | 15 - .../ItemDeleteModal/functions/default.md | 37 -- .../InterfaceItemDeleteModalProps.md | 51 --- .../ItemModal/README.md | 15 - .../ItemModal/functions/default.md | 37 -- .../interfaces/InterfaceItemModalProps.md | 75 ---- .../ItemUpdateStatusModal/README.md | 15 - .../functions/default.md | 31 -- .../InterfaceItemUpdateStatusModalProps.md | 49 --- .../ItemViewModal/README.md | 15 - .../ItemViewModal/functions/default.md | 38 -- .../interfaces/InterfaceViewModalProps.md | 37 -- .../OrganizationActionItem.mocks/README.md | 13 - .../variables/MOCKS.md | 11 - .../variables/MOCKS_EMPTY.md | 11 - .../variables/MOCKS_ERROR.md | 11 - .../OrganizationActionItems/README.md | 11 - .../functions/default.md | 21 - .../testObject.mocks/README.md | 22 - .../variables/actionItemCategory1.md | 21 - .../variables/actionItemCategory2.md | 21 - .../variables/actionItemCategoryListQuery.md | 49 --- .../variables/baseActionItem.md | 57 --- .../variables/groupListQuery.md | 45 --- .../variables/itemWithGroup.md | 11 - .../variables/itemWithUser.md | 11 - .../variables/itemWithUserImage.md | 11 - .../variables/itemWithVolunteer.md | 11 - .../variables/itemWithVolunteerImage.md | 11 - .../variables/memberListQuery.md | 41 -- .../variables/volunteerListQuery.md | 11 - .../OrganizationDashboard/README.md | 11 - .../functions/default.md | 21 - .../OrganizationDashboardMocks/README.md | 13 - .../variables/EMPTY_MOCKS.md | 11 - .../variables/ERROR_MOCKS.md | 11 - .../variables/MOCKS.md | 11 - .../OrganizationEvents/README.md | 15 - .../enumerations/ViewType.md | 33 -- .../OrganizationEvents/functions/default.md | 27 -- .../OrganizationEventsMocks/README.md | 11 - .../variables/MOCKS.md | 11 - .../CampaignModal/README.md | 15 - .../CampaignModal/functions/default.md | 37 -- .../interfaces/InterfaceCampaignModal.md | 75 ---- .../OrganizationFundCampagins/README.md | 11 - .../functions/default.md | 45 --- .../OrganizationFundCampaignMocks/README.md | 13 - .../variables/EMPTY_MOCKS.md | 65 --- .../variables/MOCKS.md | 11 - .../variables/MOCK_ERROR.md | 11 - .../OrganizationFunds/FundModal/README.md | 15 - .../FundModal/functions/default.md | 59 --- .../interfaces/InterfaceFundModal.md | 65 --- .../OrganizationFunds/README.md | 11 - .../OrganizationFunds/functions/default.md | 48 --- .../OrganizationFundsMocks/README.md | 13 - .../OrganizationFundsMocks/variables/MOCKS.md | 11 - .../variables/MOCKS_ERROR.md | 11 - .../variables/NO_FUNDS.md | 49 --- .../OrganizationPeople/AddMember/README.md | 11 - .../AddMember/functions/default.md | 23 -- .../MockDataTypes/README.md | 11 - .../MockDataTypes/type-aliases/TestMock.md | 153 ------- .../OrganizationPeople/README.md | 11 - .../OrganizationPeople/functions/default.md | 21 - .../OrganizationTags/README.md | 11 - .../OrganizationTags/functions/default.md | 20 - .../OrganizationTagsMocks/README.md | 12 - .../OrganizationTagsMocks/variables/MOCKS.md | 11 - .../variables/MOCKS_ERROR.md | 57 --- .../OrganizationVenues/README.md | 11 - .../OrganizationVenues/functions/default.md | 18 - .../PageNotFound/PageNotFound/README.md | 11 - .../PageNotFound/functions/default.md | 19 - .../screens/Requests/Requests/README.md | 11 - .../Requests/Requests/functions/default.md | 18 - .../screens/Requests/RequestsMocks/README.md | 17 - .../RequestsMocks/variables/EMPTY_MOCKS.md | 11 - .../variables/EMPTY_REQUEST_MOCKS.md | 11 - .../Requests/RequestsMocks/variables/MOCKS.md | 11 - .../RequestsMocks/variables/MOCKS2.md | 11 - .../RequestsMocks/variables/MOCKS3.md | 11 - .../RequestsMocks/variables/MOCKS4.md | 11 - .../variables/MOCKS_WITH_ERROR.md | 11 - .../screens/SubTags/SubTags/README.md | 11 - .../SubTags/SubTags/functions/default.md | 20 - .../screens/SubTags/SubTagsMocks/README.md | 12 - .../SubTags/SubTagsMocks/variables/MOCKS.md | 11 - .../variables/MOCKS_ERROR_SUB_TAGS.md | 57 --- .../UserPortal/Campaigns/Campaigns/README.md | 11 - .../Campaigns/Campaigns/functions/default.md | 20 - .../Campaigns/CampaignsMocks/README.md | 13 - .../CampaignsMocks/variables/EMPTY_MOCKS.md | 11 - .../CampaignsMocks/variables/MOCKS.md | 11 - .../variables/USER_FUND_CAMPAIGNS_ERROR.md | 11 - .../Campaigns/PledgeModal/README.md | 15 - .../PledgeModal/functions/default.md | 34 -- .../interfaces/InterfacePledgeModal.md | 83 ---- .../screens/UserPortal/Chat/Chat/README.md | 11 - .../UserPortal/Chat/Chat/functions/default.md | 15 - .../UserPortal/Donate/Donate/README.md | 15 - .../Donate/Donate/functions/default.md | 38 -- .../interfaces/InterfaceDonationCardProps.md | 57 --- .../UserPortal/Events/Events/README.md | 11 - .../Events/Events/functions/default.md | 22 - .../LeaveOrganization/README.md | 16 - .../LeaveOrganization/functions/default.md | 15 - .../LeaveOrganization/variables/userEmail.md | 11 - .../LeaveOrganization/variables/userId.md | 11 - .../Organizations/Organizations/README.md | 11 - .../Organizations/functions/default.md | 17 - .../UserPortal/People/People/README.md | 11 - .../People/People/functions/default.md | 19 - .../UserPortal/Pledges/Pledges/README.md | 11 - .../Pledges/Pledges/functions/default.md | 32 -- .../UserPortal/Pledges/PledgesMocks/README.md | 13 - .../PledgesMocks/variables/EMPTY_MOCKS.md | 11 - .../Pledges/PledgesMocks/variables/MOCKS.md | 11 - .../variables/USER_PLEDGES_ERROR.md | 11 - .../screens/UserPortal/Posts/Posts/README.md | 11 - .../Posts/Posts/functions/default.md | 21 - .../UserPortal/Settings/Settings/README.md | 11 - .../Settings/Settings/functions/default.md | 20 - .../UserScreen/UserScreen/README.md | 11 - .../UserScreen/functions/default.md | 21 - .../Volunteer/Actions/Actions.mocks/README.md | 13 - .../Actions.mocks/variables/EMPTY_MOCKS.md | 57 --- .../Actions.mocks/variables/ERROR_MOCKS.md | 49 --- .../Actions/Actions.mocks/variables/MOCKS.md | 11 - .../Volunteer/Actions/Actions/README.md | 11 - .../Actions/Actions/functions/default.md | 21 - .../Volunteer/Groups/GroupModal/README.md | 15 - .../Groups/GroupModal/functions/default.md | 51 --- .../interfaces/InterfaceGroupModal.md | 57 --- .../Volunteer/Groups/Groups.mocks/README.md | 14 - .../Groups.mocks/variables/EMPTY_MOCKS.md | 11 - .../Groups.mocks/variables/ERROR_MOCKS.md | 53 --- .../Groups/Groups.mocks/variables/MOCKS.md | 11 - .../variables/UPDATE_ERROR_MOCKS.md | 11 - .../Volunteer/Groups/Groups/README.md | 11 - .../Groups/Groups/functions/default.md | 20 - .../Invitations/Invitations.mocks/README.md | 14 - .../variables/EMPTY_MOCKS.md | 53 --- .../variables/ERROR_MOCKS.md | 11 - .../Invitations.mocks/variables/MOCKS.md | 11 - .../variables/UPDATE_ERROR_MOCKS.md | 11 - .../Invitations/Invitations/README.md | 11 - .../Invitations/functions/default.md | 20 - .../UpcomingEvents.mocks/README.md | 14 - .../variables/CREATE_ERROR_MOCKS.md | 11 - .../variables/EMPTY_MOCKS.md | 61 --- .../variables/ERROR_MOCKS.md | 53 --- .../UpcomingEvents.mocks/variables/MOCKS.md | 11 - .../UpcomingEvents/UpcomingEvents/README.md | 11 - .../UpcomingEvents/functions/default.md | 20 - .../Volunteer/VolunteerManagement/README.md | 11 - .../VolunteerManagement/functions/default.md | 25 -- .../auto-docs/screens/Users/Users/README.md | 11 - .../screens/Users/Users/functions/default.md | 55 --- .../screens/Users/UsersMocks/README.md | 13 - .../Users/UsersMocks/variables/EMPTY_MOCKS.md | 11 - .../Users/UsersMocks/variables/MOCKS.md | 11 - .../Users/UsersMocks/variables/MOCKS2.md | 11 - .../askAndSetDockerOption/README.md | 11 - .../functions/default.md | 15 - .../askAndUpdatePort/README.md | 11 - .../askAndUpdatePort/functions/default.md | 15 - .../askForCustomPort/README.md | 13 - .../functions/askForCustomPort.md | 15 - .../functions/reservedPortWarning.md | 21 - .../functions/validatePort.md | 21 - .../setup/askForDocker/askForDocker/README.md | 12 - .../functions/askAndUpdateTalawaApiUrl.md | 15 - .../askForDocker/functions/askForDocker.md | 15 - .../askForTalawaApiUrl/README.md | 11 - .../functions/askForTalawaApiUrl.md | 15 - .../checkConnection/checkConnection/README.md | 11 - .../functions/checkConnection.md | 21 - .../setup/checkEnvFile/checkEnvFile/README.md | 11 - .../checkEnvFile/functions/checkEnvFile.md | 15 - .../updateEnvFile/updateEnvFile/README.md | 11 - .../updateEnvFile/functions/default.md | 25 -- .../validateRecaptcha/README.md | 11 - .../functions/validateRecaptcha.md | 21 - docs/docs/auto-docs/setupTests/README.md | 7 - docs/docs/auto-docs/state/README.md | 13 - .../auto-docs/state/action-creators/README.md | 15 - .../functions/installPlugin.md | 31 -- .../action-creators/functions/removePlugin.md | 31 -- .../functions/updateInstalled.md | 31 -- .../functions/updatePluginLinks.md | 31 -- .../functions/updateTargets.md | 31 -- .../auto-docs/state/helpers/Action/README.md | 11 - .../Action/interfaces/InterfaceAction.md | 25 -- docs/docs/auto-docs/state/hooks/README.md | 11 - .../state/hooks/functions/useAppDispatch.md | 25 -- docs/docs/auto-docs/state/reducers/README.md | 15 - .../state/reducers/functions/reducers.md | 53 --- .../state/reducers/pluginReducer/README.md | 11 - .../pluginReducer/functions/default.md | 25 -- .../state/reducers/routesReducer/README.md | 17 - .../routesReducer/functions/default.md | 39 -- .../type-aliases/ComponentType.md | 29 -- .../type-aliases/SubTargetType.md | 29 -- .../routesReducer/type-aliases/TargetsType.md | 25 -- .../state/reducers/type-aliases/RootState.md | 11 - .../reducers/userRoutesReducer/README.md | 17 - .../userRoutesReducer/functions/default.md | 39 -- .../type-aliases/ComponentType.md | 29 -- .../type-aliases/SubTargetType.md | 29 -- .../type-aliases/TargetsType.md | 25 -- docs/docs/auto-docs/state/store/README.md | 15 - .../state/store/type-aliases/AppDispatch.md | 11 - .../auto-docs/state/store/variables/store.md | 11 - .../subComponents/SortingButton/README.md | 11 - .../SortingButton/functions/default.md | 38 -- .../auto-docs/utils/StaticMockLink/README.md | 19 - .../StaticMockLink/classes/StaticMockLink.md | 94 ----- .../functions/mockSingleLink.md | 21 - .../interfaces/InterfaceMockApolloLink.md | 21 - .../docs/auto-docs/utils/chartToPdf/README.md | 13 - .../functions/exportDemographicsToCSV.md | 29 -- .../utils/chartToPdf/functions/exportToCSV.md | 25 -- .../chartToPdf/functions/exportTrendsToCSV.md | 37 -- .../auto-docs/utils/convertToBase64/README.md | 11 - .../convertToBase64/functions/default.md | 21 - docs/docs/auto-docs/utils/currency/README.md | 12 - .../currency/variables/currencyOptions.md | 21 - .../currency/variables/currencySymbols.md | 15 - .../auto-docs/utils/dateFormatter/README.md | 11 - .../dateFormatter/functions/formatDate.md | 21 - .../auto-docs/utils/errorHandler/README.md | 11 - .../errorHandler/functions/errorHandler.md | 29 -- .../docs/auto-docs/utils/fieldTypes/README.md | 11 - .../utils/fieldTypes/variables/default.md | 11 - .../auto-docs/utils/formEnumFields/README.md | 16 - .../variables/countryOptions.md | 21 - .../variables/educationGradeEnum.md | 21 - .../variables/employmentStatusEnum.md | 21 - .../formEnumFields/variables/genderEnum.md | 21 - .../variables/maritalStatusEnum.md | 21 - .../formEnumFields/variables/userRoleEnum.md | 21 - .../utils/getOrganizationId/README.md | 11 - .../getOrganizationId/functions/default.md | 21 - .../auto-docs/utils/getRefreshToken/README.md | 11 - .../getRefreshToken/functions/refreshToken.md | 15 - docs/docs/auto-docs/utils/i18n/README.md | 7 - .../auto-docs/utils/i18nForTest/README.md | 7 - .../docs/auto-docs/utils/interfaces/README.md | 60 --- .../InterfaceActionItemCategoryInfo.md | 61 --- .../InterfaceActionItemCategoryList.md | 17 - .../interfaces/InterfaceActionItemInfo.md | 153 ------- .../interfaces/InterfaceActionItemList.md | 17 - .../InterfaceAddOnSpotAttendeeProps.md | 41 -- .../interfaces/interfaces/InterfaceAddress.md | 73 ---- .../InterfaceAgendaItemCategoryInfo.md | 53 --- .../InterfaceAgendaItemCategoryList.md | 17 - .../interfaces/InterfaceAgendaItemInfo.md | 153 ------- .../interfaces/InterfaceAgendaItemList.md | 17 - .../interfaces/InterfaceBaseEvent.md | 94 ----- .../interfaces/InterfaceCampaignInfo.md | 65 --- .../interfaces/InterfaceCreateFund.md | 49 --- .../interfaces/InterfaceCreatePledge.md | 49 --- .../InterfaceCreateVolunteerGroup.md | 49 --- .../interfaces/InterfaceCustomFieldData.md | 25 -- .../interfaces/InterfaceEventVolunteerInfo.md | 73 ---- .../interfaces/InterfaceFormData.md | 49 --- .../interfaces/InterfaceFundInfo.md | 93 ----- .../interfaces/interfaces/InterfaceMapType.md | 13 - .../interfaces/InterfaceMemberInfo.md | 69 ---- .../interfaces/InterfaceMembersList.md | 25 -- .../InterfaceOrgConnectionInfoType.md | 93 ----- .../interfaces/InterfaceOrgConnectionType.md | 17 - .../interfaces/InterfacePledgeInfo.md | 77 ---- .../interfaces/InterfacePostCard.md | 173 -------- .../interfaces/InterfacePostForm.md | 49 --- .../InterfaceQueryBlockPageMemberListItem.md | 53 --- .../InterfaceQueryFundCampaignsPledges.md | 69 ---- ...nterfaceQueryMembershipRequestsListItem.md | 25 -- ...eQueryOrganizationAdvertisementListItem.md | 45 --- ...InterfaceQueryOrganizationEventListItem.md | 149 ------- ...InterfaceQueryOrganizationFundCampaigns.md | 61 --- .../InterfaceQueryOrganizationListObject.md | 89 ---- .../InterfaceQueryOrganizationPostListItem.md | 45 --- .../InterfaceQueryOrganizationUserTags.md | 17 - .../InterfaceQueryOrganizationsListObject.md | 189 --------- .../interfaces/InterfaceQueryUserListItem.md | 89 ---- .../InterfaceQueryUserTagChildTags.md | 41 -- .../InterfaceQueryUserTagsAssignedMembers.md | 41 -- ...InterfaceQueryUserTagsMembersToAssignTo.md | 25 -- .../interfaces/InterfaceQueryVenueListItem.md | 49 --- .../interfaces/interfaces/InterfaceTagData.md | 77 ---- .../interfaces/InterfaceUserCampaign.md | 57 --- .../interfaces/InterfaceUserEvents.md | 181 --------- .../interfaces/InterfaceUserInfo.md | 41 -- .../interfaces/InterfaceUserType.md | 33 -- .../interfaces/InterfaceVolunteerGroupInfo.md | 125 ------ .../InterfaceVolunteerMembership.md | 85 ---- .../interfaces/InterfaceVolunteerRank.md | 53 --- docs/docs/auto-docs/utils/languages/README.md | 12 - .../languages/variables/languageArray.md | 11 - .../utils/languages/variables/languages.md | 25 -- .../auto-docs/utils/linkValidator/README.md | 11 - .../linkValidator/functions/isValidLink.md | 21 - .../utils/organizationTagsUtils/README.md | 24 -- .../InterfaceOrganizationSubTagsQuery.md | 83 ---- .../InterfaceOrganizationTagsQuery.md | 83 ---- .../InterfaceTagAssignedMembersQuery.md | 83 ---- .../InterfaceTagUsersToAssignToQuery.md | 83 ---- .../type-aliases/SortedByType.md | 11 - .../type-aliases/TagActionType.md | 11 - .../variables/TAGS_QUERY_DATA_CHUNK_SIZE.md | 11 - .../variables/dataGridStyle.md | 85 ---- .../auto-docs/utils/recurrenceUtils/README.md | 163 -------- .../recurrenceConstants/README.md | 25 -- .../recurrenceConstants/variables/Days.md | 11 - .../variables/allInstances.md | 11 - .../recurrenceConstants/variables/dayNames.md | 41 -- .../variables/daysOptions.md | 11 - .../variables/endsAfter.md | 11 - .../variables/endsNever.md | 11 - .../recurrenceConstants/variables/endsOn.md | 11 - .../variables/frequencies.md | 29 -- .../variables/mondayToFriday.md | 11 - .../variables/monthNames.md | 11 - .../variables/recurrenceEndOptions.md | 11 - .../recurringEventMutationOptions.md | 11 - .../variables/thisAndFollowingInstances.md | 11 - .../variables/thisInstance.md | 11 - .../variables/weekDayOccurences.md | 11 - .../recurrenceUtils/recurrenceTypes/README.md | 19 - .../recurrenceTypes/enumerations/Frequency.md | 41 -- .../enumerations/RecurrenceEndOption.md | 33 -- .../RecurringEventMutationType.md | 33 -- .../recurrenceTypes/enumerations/WeekDays.md | 65 --- .../interfaces/InterfaceRecurrenceRule.md | 65 --- .../InterfaceRecurrenceRuleState.md | 65 --- .../recurrenceUtilityFunctions/README.md | 15 - .../functions/getRecurrenceRuleText.md | 21 - .../functions/getWeekDayOccurenceInMonth.md | 21 - .../functions/hasRecurrenceRuleChanged.md | 25 -- .../functions/haveInstanceDatesChanged.md | 33 -- .../functions/isLastOccurenceOfWeekDay.md | 21 - .../auto-docs/utils/timezoneUtils/README.md | 25 -- .../timezoneUtils/dateTimeConfig/README.md | 11 - .../variables/dateTimeFields.md | 21 - .../dateTimeMiddleware/README.md | 12 - .../variables/requestMiddleware.md | 11 - .../variables/responseMiddleware.md | 11 - .../auto-docs/utils/useLocalstorage/README.md | 21 - .../useLocalstorage/functions/getItem.md | 33 -- .../functions/getStorageKey.md | 33 -- .../useLocalstorage/functions/removeItem.md | 31 -- .../useLocalstorage/functions/setItem.md | 37 -- .../functions/useLocalStorage.md | 27 -- .../docs/auto-docs/utils/useSession/README.md | 11 - .../utils/useSession/functions/default.md | 26 -- docs/docs/auto-docs/vite-env/README.md | 7 - docs/docs/intro.md | 47 --- docs/package.json | 8 +- package.json | 2 +- talawa-admin-docs/.nojekyll | 1 - talawa-admin-docs/Dockerfile | 0 talawa-admin-docs/README.md | 52 --- ..._support_services_Plugin_helper.default.md | 75 ---- ..._support_services_Render_helper.default.md | 21 - ...ts_EventCalendar_EventCalendar.ViewType.md | 32 -- ..._CheckIn_types.InterfaceAttendeeCheckIn.md | 43 -- ...In_types.InterfaceAttendeeQueryResponse.md | 28 -- ...onents_CheckIn_types.InterfaceModalProp.md | 51 --- ...nts_CheckIn_types.InterfaceTableCheckIn.md | 65 --- ...onents_CheckIn_types.InterfaceTableData.md | 43 -- .../components_CheckIn_types.InterfaceUser.md | 43 -- ...leDropdown.InterfaceCollapsibleDropdown.md | 32 -- ...nt_IconComponent.InterfaceIconComponent.md | 54 --- ...eftDrawerEvent.InterfaceLeftDrawerProps.md | 53 --- ...eftDrawerEventWrapper.InterfacePropType.md | 42 -- ..._LeftDrawerOrg.InterfaceLeftDrawerProps.md | 65 --- ...wer_LeftDrawer.InterfaceLeftDrawerProps.md | 43 -- ...d_OrgListCard.InterfaceOrgListCardProps.md | 21 - ...eFieldSettings.InterfaceCustomFieldData.md | 32 -- ...ionDashCards_CardItem.InterfaceCardItem.md | 87 ---- ...Screen.InterfaceOrganizationScreenProps.md | 43 -- ...inScreen.InterfaceSuperAdminScreenProps.md | 43 -- ...Loader_TableLoader.InterfaceTableLoader.md | 43 -- talawa-admin-docs/modules.md | 219 ---------- .../modules/components_AddOn_AddOn.md | 29 -- .../modules/components_AddOn_AddOn_test.md | 3 - ...onents_AddOn_core_AddOnEntry_AddOnEntry.md | 29 -- ...s_AddOn_core_AddOnEntry_AddOnEntryMocks.md | 19 - ...s_AddOn_core_AddOnEntry_AddOnEntry_test.md | 3 - ..._AddOn_core_AddOnRegister_AddOnRegister.md | 29 -- ...n_core_AddOnRegister_AddOnRegister_test.md | 3 - ...onents_AddOn_core_AddOnStore_AddOnStore.md | 23 -- ...s_AddOn_core_AddOnStore_AddOnStore_test.md | 3 - ..._AddOn_support_components_Action_Action.md | 29 -- ...n_support_components_Action_Action_test.md | 3 - ...port_components_MainContent_MainContent.md | 29 -- ...components_MainContent_MainContent_test.md | 3 - ..._support_components_SidePanel_SidePanel.md | 29 -- ...ort_components_SidePanel_SidePanel_test.md | 3 - ...ts_AddOn_support_services_Plugin_helper.md | 9 - ...ts_AddOn_support_services_Render_helper.md | 9 - ...omponents_Advertisements_Advertisements.md | 23 -- ...ents_Advertisements_Advertisements_test.md | 3 - ...e_AdvertisementEntry_AdvertisementEntry.md | 29 -- ...ertisementEntry_AdvertisementEntry_test.md | 3 - ...rtisementRegister_AdvertisementRegister.md | 29 -- ...mentRegister_AdvertisementRegister_test.md | 3 - ...LanguageDropdown_ChangeLanguageDropDown.md | 50 --- ...ageDropdown_ChangeLanguageDropdown_test.md | 3 - .../components_CheckIn_CheckInModal.md | 29 -- .../components_CheckIn_CheckInModal_test.md | 3 - .../components_CheckIn_CheckInWrapper.md | 29 -- .../components_CheckIn_CheckInWrapper_test.md | 3 - .../modules/components_CheckIn_TableRow.md | 31 -- .../components_CheckIn_TableRow_test.md | 3 - .../modules/components_CheckIn_mocks.md | 41 -- .../modules/components_CheckIn_tagTemplate.md | 19 - .../modules/components_CheckIn_types.md | 14 - ...CollapsibleDropdown_CollapsibleDropdown.md | 33 -- ...psibleDropdown_CollapsibleDropdown_test.md | 3 - .../components_ContriStats_ContriStats.md | 29 -- ...components_ContriStats_ContriStats_test.md | 3 - ...rrentHourIndicator_CurrentHourIndicator.md | 23 -- ...HourIndicator_CurrentHourIndicator_test.md | 3 - .../modules/components_DeleteOrg_DeleteOrg.md | 23 -- .../components_DeleteOrg_DeleteOrg_test.md | 3 - ...omFieldDropDown_EditCustomFieldDropDown.md | 29 -- ...ldDropDown_EditCustomFieldDropDown_test.md | 3 - .../components_EventCalendar_EventCalendar.md | 34 -- ...onents_EventCalendar_EventCalendar_test.md | 3 - .../components_EventListCard_EventListCard.md | 29 -- ...onents_EventListCard_EventListCard_test.md | 3 - ...tRegistrantsModal_EventRegistrantsModal.md | 29 -- ...strantsModal_EventRegistrantsModal_test.md | 3 - ...egistrantsModal_EventRegistrantsWrapper.md | 29 -- ...rantsModal_EventRegistrantsWrapper_test.md | 3 - .../components_EventStats_EventStats.md | 29 -- ...components_EventStats_EventStatsWrapper.md | 29 -- ...nents_EventStats_EventStatsWrapper_test.md | 3 - .../components_EventStats_EventStats_test.md | 3 - ...nts_EventStats_Statistics_AverageRating.md | 29 -- ...ventStats_Statistics_AverageRating_test.md | 3 - ...mponents_EventStats_Statistics_Feedback.md | 29 -- ...nts_EventStats_Statistics_Feedback_test.md | 3 - ...components_EventStats_Statistics_Review.md | 29 -- ...nents_EventStats_Statistics_Review_test.md | 3 - .../components_IconComponent_IconComponent.md | 33 -- ...onents_IconComponent_IconComponent_test.md | 3 - ...ponents_LeftDrawerEvent_LeftDrawerEvent.md | 33 -- ..._LeftDrawerEvent_LeftDrawerEventWrapper.md | 33 -- ...DrawerEvent_LeftDrawerEventWrapper_test.md | 3 - ...ts_LeftDrawerEvent_LeftDrawerEvent_test.md | 3 - .../components_LeftDrawerOrg_LeftDrawerOrg.md | 33 -- ...onents_LeftDrawerOrg_LeftDrawerOrg_test.md | 3 - .../components_LeftDrawer_LeftDrawer.md | 33 -- .../components_LeftDrawer_LeftDrawer_test.md | 3 - .../modules/components_Loader_Loader.md | 29 -- .../modules/components_Loader_Loader_test.md | 3 - ...nts_LoginPortalToggle_LoginPortalToggle.md | 23 -- ...oginPortalToggle_LoginPortalToggle_test.md | 3 - ...nts_MemberRequestCard_MemberRequestCard.md | 29 -- ...emberRequestCard_MemberRequestCard_test.md | 3 - .../modules/components_NotFound_NotFound.md | 29 -- .../components_NotFound_NotFound_test.md | 3 - ...nents_OrgAdminListCard_OrgAdminListCard.md | 29 -- ..._OrgAdminListCard_OrgAdminListCard_test.md | 3 - ...omponents_OrgContriCards_OrgContriCards.md | 29 -- ...ents_OrgContriCards_OrgContriCards_test.md | 3 - .../modules/components_OrgDelete_OrgDelete.md | 23 -- .../components_OrgDelete_OrgDelete_test.md | 3 - .../components_OrgListCard_OrgListCard.md | 33 -- ...components_OrgListCard_OrgListCard_test.md | 3 - ...nts_OrgPeopleListCard_OrgPeopleListCard.md | 29 -- ...rgPeopleListCard_OrgPeopleListCard_test.md | 3 - .../components_OrgPostCard_OrgPostCard.md | 29 -- ...components_OrgPostCard_OrgPostCard_test.md | 3 - ...leFieldSettings_OrgProfileFieldSettings.md | 27 -- ...ldSettings_OrgProfileFieldSettings_test.md | 3 - .../modules/components_OrgUpdate_OrgUpdate.md | 29 -- .../components_OrgUpdate_OrgUpdateMocks.md | 41 -- .../components_OrgUpdate_OrgUpdate_test.md | 3 - ...nizationCardStart_OrganizationCardStart.md | 29 -- ...ionCardStart_OrganizationCardStart_test.md | 3 - ...nents_OrganizationCard_OrganizationCard.md | 29 -- ..._OrganizationCard_OrganizationCard_test.md | 3 - ...mponents_OrganizationDashCards_CardItem.md | 33 -- ...s_OrganizationDashCards_CardItemLoading.md | 23 -- ...nts_OrganizationDashCards_CardItem_test.md | 3 - ...nts_OrganizationDashCards_DashboardCard.md | 32 -- ...anizationDashCards_DashboardCardLoading.md | 23 -- ...rganizationDashCards_DashboardCard_test.md | 3 - ...s_OrganizationScreen_OrganizationScreen.md | 33 -- ...anizationScreen_OrganizationScreen_test.md | 3 - ...omponents_PaginationList_PaginationList.md | 29 -- .../components_Pagination_Pagination.md | 29 -- .../components_Pagination_Pagination_test.md | 3 - .../components_SecuredRoute_SecuredRoute.md | 29 -- ...nents_SuperAdminScreen_SuperAdminScreen.md | 33 -- ..._SuperAdminScreen_SuperAdminScreen_test.md | 3 - .../components_TableLoader_TableLoader.md | 33 -- ...components_TableLoader_TableLoader_test.md | 3 - .../components_UserListCard_UserListCard.md | 29 -- ...mponents_UserListCard_UserListCard_test.md | 3 - ...s_UserPasswordUpdate_UserPasswordUpdate.md | 30 -- ...rPasswordUpdate_UserPasswordUpdate_test.md | 3 - ...components_UserPortal_ChatRoom_ChatRoom.md | 29 -- ...nents_UserPortal_ChatRoom_ChatRoom_test.md | 3 - ...ents_UserPortal_CommentCard_CommentCard.md | 29 -- ...UserPortal_CommentCard_CommentCard_test.md | 3 - ...ents_UserPortal_ContactCard_ContactCard.md | 29 -- ...UserPortal_ContactCard_ContactCard_test.md | 3 - ...ts_UserPortal_DonationCard_DonationCard.md | 29 -- ...mponents_UserPortal_EventCard_EventCard.md | 29 -- ...nts_UserPortal_EventCard_EventCard_test.md | 3 - .../components_UserPortal_Login_Login.md | 29 -- .../components_UserPortal_Login_Login_test.md | 3 - ...ortal_OrganizationCard_OrganizationCard.md | 29 -- ..._OrganizationCard_OrganizationCard_test.md | 3 - ...l_OrganizationNavbar_OrganizationNavbar.md | 29 -- ...anizationNavbar_OrganizationNavbar_test.md | 3 - ...OrganizationSidebar_OrganizationSidebar.md | 23 -- ...izationSidebar_OrganizationSidebar_test.md | 3 - ...onents_UserPortal_PeopleCard_PeopleCard.md | 29 -- ...s_UserPortal_PeopleCard_PeopleCard_test.md | 3 - ...components_UserPortal_PostCard_PostCard.md | 29 -- ...nents_UserPortal_PostCard_PostCard_test.md | 3 - ...ts_UserPortal_PromotedPost_PromotedPost.md | 29 -- ...erPortal_PromotedPost_PromotedPost_test.md | 3 - ...components_UserPortal_Register_Register.md | 29 -- ...nents_UserPortal_Register_Register_test.md | 3 - ...SecuredRouteForUser_SecuredRouteForUser.md | 29 -- ...edRouteForUser_SecuredRouteForUser_test.md | 3 - ...onents_UserPortal_UserNavbar_UserNavbar.md | 23 -- ...s_UserPortal_UserNavbar_UserNavbar_test.md | 3 - ...ents_UserPortal_UserSidebar_UserSidebar.md | 23 -- ...UserPortal_UserSidebar_UserSidebar_test.md | 3 - .../components_UserUpdate_UserUpdate.md | 30 -- .../components_UserUpdate_UserUpdate_test.md | 3 - ...nents_UsersTableItem_UserTableItemMocks.md | 19 - ...nents_UsersTableItem_UserTableItem_test.md | 3 - ...omponents_UsersTableItem_UsersTableItem.md | 29 -- .../modules/components_plugins.md | 22 - ...nents_plugins_DummyPlugin2_DummyPlugin2.md | 23 -- ..._plugins_DummyPlugin2_DummyPlugin2_test.md | 3 - ...ponents_plugins_DummyPlugin_DummyPlugin.md | 23 -- ...ts_plugins_DummyPlugin_DummyPlugin_test.md | 3 - .../modules/screens_BlockUser_BlockUser.md | 23 -- .../screens_BlockUser_BlockUser_test.md | 3 - .../screens_EventDashboard_EventDashboard.md | 23 -- ...ens_EventDashboard_EventDashboard_mocks.md | 30 -- ...eens_EventDashboard_EventDashboard_test.md | 3 - .../screens_ForgotPassword_ForgotPassword.md | 23 -- ...eens_ForgotPassword_ForgotPassword_test.md | 3 - .../modules/screens_LoginPage_LoginPage.md | 23 -- .../screens_LoginPage_LoginPage_test.md | 3 - .../screens_MemberDetail_MemberDetail.md | 72 ---- .../screens_MemberDetail_MemberDetail_test.md | 3 - ...screens_OrgContribution_OrgContribution.md | 23 -- ...ns_OrgContribution_OrgContribution_test.md | 3 - .../modules/screens_OrgList_OrgList.md | 23 -- .../modules/screens_OrgList_OrgListMocks.md | 52 --- .../modules/screens_OrgList_OrgList_test.md | 3 - .../screens_OrgList_OrganizationModal.md | 32 -- .../modules/screens_OrgPost_OrgPost.md | 23 -- .../modules/screens_OrgPost_OrgPost_test.md | 3 - .../screens_OrgSettings_OrgSettings.md | 23 -- .../screens_OrgSettings_OrgSettings_test.md | 3 - ...nizationDashboard_OrganizationDashboard.md | 23 -- ...ionDashboard_OrganizationDashboardMocks.md | 41 -- ...ionDashboard_OrganizationDashboard_test.md | 3 - ...s_OrganizationEvents_OrganizationEvents.md | 23 -- ...anizationEvents_OrganizationEvents_test.md | 3 - ...s_OrganizationPeople_OrganizationPeople.md | 23 -- ...anizationPeople_OrganizationPeople_test.md | 3 - .../screens_PageNotFound_PageNotFound.md | 23 -- .../screens_PageNotFound_PageNotFound_test.md | 3 - .../modules/screens_UserPortal_Chat_Chat.md | 23 -- .../screens_UserPortal_Chat_Chat_test.md | 3 - .../screens_UserPortal_Donate_Donate.md | 23 -- .../screens_UserPortal_Donate_Donate_test.md | 3 - .../screens_UserPortal_Events_Events.md | 23 -- .../screens_UserPortal_Events_Events_test.md | 3 - .../modules/screens_UserPortal_Home_Home.md | 23 -- .../screens_UserPortal_Home_Home_test.md | 3 - ..._UserPortal_Organizations_Organizations.md | 23 -- ...Portal_Organizations_Organizations_test.md | 3 - .../screens_UserPortal_People_People.md | 23 -- .../screens_UserPortal_People_People_test.md | 3 - .../screens_UserPortal_Settings_Settings.md | 23 -- ...reens_UserPortal_Settings_Settings_test.md | 3 - ..._UserPortal_UserLoginPage_UserLoginPage.md | 23 -- ...Portal_UserLoginPage_UserLoginPage_test.md | 3 - .../modules/screens_Users_Users.md | 23 -- .../modules/screens_Users_UsersMocks.md | 41 -- .../modules/screens_Users_Users_test.md | 3 - tsconfig.docs.json | 5 +- 1283 files changed, 9 insertions(+), 32003 deletions(-) delete mode 100644 3141 delete mode 100644 docs/docs/auto-docs/App/README.md delete mode 100644 docs/docs/auto-docs/App/functions/default.md delete mode 100644 docs/docs/auto-docs/Constant/constant/README.md delete mode 100644 docs/docs/auto-docs/Constant/constant/variables/AUTH_TOKEN.md delete mode 100644 docs/docs/auto-docs/Constant/constant/variables/BACKEND_URL.md delete mode 100644 docs/docs/auto-docs/Constant/constant/variables/REACT_APP_BACKEND_WEBSOCKET_URL.md delete mode 100644 docs/docs/auto-docs/Constant/constant/variables/REACT_APP_CUSTOM_PORT.md delete mode 100644 docs/docs/auto-docs/Constant/constant/variables/REACT_APP_USE_RECAPTCHA.md delete mode 100644 docs/docs/auto-docs/Constant/constant/variables/RECAPTCHA_SITE_KEY.md delete mode 100644 docs/docs/auto-docs/GraphQl/Mutations/ActionItemCategoryMutations/README.md delete mode 100644 docs/docs/auto-docs/GraphQl/Mutations/ActionItemCategoryMutations/variables/CREATE_ACTION_ITEM_CATEGORY_MUTATION.md delete mode 100644 docs/docs/auto-docs/GraphQl/Mutations/ActionItemCategoryMutations/variables/UPDATE_ACTION_ITEM_CATEGORY_MUTATION.md delete mode 100644 docs/docs/auto-docs/GraphQl/Mutations/ActionItemMutations/README.md delete mode 100644 docs/docs/auto-docs/GraphQl/Mutations/ActionItemMutations/variables/CREATE_ACTION_ITEM_MUTATION.md delete mode 100644 docs/docs/auto-docs/GraphQl/Mutations/ActionItemMutations/variables/DELETE_ACTION_ITEM_MUTATION.md delete mode 100644 docs/docs/auto-docs/GraphQl/Mutations/ActionItemMutations/variables/UPDATE_ACTION_ITEM_MUTATION.md delete mode 100644 docs/docs/auto-docs/GraphQl/Mutations/AgendaCategoryMutations/README.md delete mode 100644 docs/docs/auto-docs/GraphQl/Mutations/AgendaCategoryMutations/variables/CREATE_AGENDA_ITEM_CATEGORY_MUTATION.md delete mode 100644 docs/docs/auto-docs/GraphQl/Mutations/AgendaCategoryMutations/variables/DELETE_AGENDA_ITEM_CATEGORY_MUTATION.md delete mode 100644 docs/docs/auto-docs/GraphQl/Mutations/AgendaCategoryMutations/variables/UPDATE_AGENDA_ITEM_CATEGORY_MUTATION.md delete mode 100644 docs/docs/auto-docs/GraphQl/Mutations/AgendaItemMutations/README.md delete mode 100644 docs/docs/auto-docs/GraphQl/Mutations/AgendaItemMutations/variables/CREATE_AGENDA_ITEM_MUTATION.md delete mode 100644 docs/docs/auto-docs/GraphQl/Mutations/AgendaItemMutations/variables/DELETE_AGENDA_ITEM_MUTATION.md delete mode 100644 docs/docs/auto-docs/GraphQl/Mutations/AgendaItemMutations/variables/UPDATE_AGENDA_ITEM_MUTATION.md delete mode 100644 docs/docs/auto-docs/GraphQl/Mutations/CampaignMutation/README.md delete mode 100644 docs/docs/auto-docs/GraphQl/Mutations/CampaignMutation/variables/CREATE_CAMPAIGN_MUTATION.md delete mode 100644 docs/docs/auto-docs/GraphQl/Mutations/CampaignMutation/variables/UPDATE_CAMPAIGN_MUTATION.md delete mode 100644 docs/docs/auto-docs/GraphQl/Mutations/CommentMutations/README.md delete mode 100644 docs/docs/auto-docs/GraphQl/Mutations/CommentMutations/variables/CREATE_COMMENT_POST.md delete mode 100644 docs/docs/auto-docs/GraphQl/Mutations/CommentMutations/variables/LIKE_COMMENT.md delete mode 100644 docs/docs/auto-docs/GraphQl/Mutations/CommentMutations/variables/UNLIKE_COMMENT.md delete mode 100644 docs/docs/auto-docs/GraphQl/Mutations/EventAttendeeMutations/README.md delete mode 100644 docs/docs/auto-docs/GraphQl/Mutations/EventAttendeeMutations/variables/ADD_EVENT_ATTENDEE.md delete mode 100644 docs/docs/auto-docs/GraphQl/Mutations/EventAttendeeMutations/variables/MARK_CHECKIN.md delete mode 100644 docs/docs/auto-docs/GraphQl/Mutations/EventAttendeeMutations/variables/REMOVE_EVENT_ATTENDEE.md delete mode 100644 docs/docs/auto-docs/GraphQl/Mutations/EventVolunteerMutation/README.md delete mode 100644 docs/docs/auto-docs/GraphQl/Mutations/EventVolunteerMutation/variables/ADD_VOLUNTEER.md delete mode 100644 docs/docs/auto-docs/GraphQl/Mutations/EventVolunteerMutation/variables/CREATE_VOLUNTEER_GROUP.md delete mode 100644 docs/docs/auto-docs/GraphQl/Mutations/EventVolunteerMutation/variables/CREATE_VOLUNTEER_MEMBERSHIP.md delete mode 100644 docs/docs/auto-docs/GraphQl/Mutations/EventVolunteerMutation/variables/DELETE_VOLUNTEER.md delete mode 100644 docs/docs/auto-docs/GraphQl/Mutations/EventVolunteerMutation/variables/DELETE_VOLUNTEER_GROUP.md delete mode 100644 docs/docs/auto-docs/GraphQl/Mutations/EventVolunteerMutation/variables/UPDATE_VOLUNTEER_GROUP.md delete mode 100644 docs/docs/auto-docs/GraphQl/Mutations/EventVolunteerMutation/variables/UPDATE_VOLUNTEER_MEMBERSHIP.md delete mode 100644 docs/docs/auto-docs/GraphQl/Mutations/FundMutation/README.md delete mode 100644 docs/docs/auto-docs/GraphQl/Mutations/FundMutation/variables/CREATE_FUND_MUTATION.md delete mode 100644 docs/docs/auto-docs/GraphQl/Mutations/FundMutation/variables/UPDATE_FUND_MUTATION.md delete mode 100644 docs/docs/auto-docs/GraphQl/Mutations/OrganizationMutations/README.md delete mode 100644 docs/docs/auto-docs/GraphQl/Mutations/OrganizationMutations/variables/ADD_CUSTOM_FIELD.md delete mode 100644 docs/docs/auto-docs/GraphQl/Mutations/OrganizationMutations/variables/ADD_USER_TO_GROUP_CHAT.md delete mode 100644 docs/docs/auto-docs/GraphQl/Mutations/OrganizationMutations/variables/CANCEL_MEMBERSHIP_REQUEST.md delete mode 100644 docs/docs/auto-docs/GraphQl/Mutations/OrganizationMutations/variables/CREATE_CHAT.md delete mode 100644 docs/docs/auto-docs/GraphQl/Mutations/OrganizationMutations/variables/CREATE_SAMPLE_ORGANIZATION_MUTATION.md delete mode 100644 docs/docs/auto-docs/GraphQl/Mutations/OrganizationMutations/variables/EDIT_CHAT_MESSAGE.md delete mode 100644 docs/docs/auto-docs/GraphQl/Mutations/OrganizationMutations/variables/JOIN_PUBLIC_ORGANIZATION.md delete mode 100644 docs/docs/auto-docs/GraphQl/Mutations/OrganizationMutations/variables/MARK_CHAT_MESSAGES_AS_READ.md delete mode 100644 docs/docs/auto-docs/GraphQl/Mutations/OrganizationMutations/variables/MESSAGE_SENT_TO_CHAT.md delete mode 100644 docs/docs/auto-docs/GraphQl/Mutations/OrganizationMutations/variables/PLUGIN_SUBSCRIPTION.md delete mode 100644 docs/docs/auto-docs/GraphQl/Mutations/OrganizationMutations/variables/REMOVE_CUSTOM_FIELD.md delete mode 100644 docs/docs/auto-docs/GraphQl/Mutations/OrganizationMutations/variables/REMOVE_SAMPLE_ORGANIZATION_MUTATION.md delete mode 100644 docs/docs/auto-docs/GraphQl/Mutations/OrganizationMutations/variables/SEND_MEMBERSHIP_REQUEST.md delete mode 100644 docs/docs/auto-docs/GraphQl/Mutations/OrganizationMutations/variables/SEND_MESSAGE_TO_CHAT.md delete mode 100644 docs/docs/auto-docs/GraphQl/Mutations/OrganizationMutations/variables/TOGGLE_PINNED_POST.md delete mode 100644 docs/docs/auto-docs/GraphQl/Mutations/OrganizationMutations/variables/UPDATE_CHAT.md delete mode 100644 docs/docs/auto-docs/GraphQl/Mutations/OrganizationMutations/variables/UPDATE_USER_ROLE_IN_ORG_MUTATION.md delete mode 100644 docs/docs/auto-docs/GraphQl/Mutations/PledgeMutation/README.md delete mode 100644 docs/docs/auto-docs/GraphQl/Mutations/PledgeMutation/variables/CREATE_PlEDGE.md delete mode 100644 docs/docs/auto-docs/GraphQl/Mutations/PledgeMutation/variables/DELETE_PLEDGE.md delete mode 100644 docs/docs/auto-docs/GraphQl/Mutations/PledgeMutation/variables/UPDATE_PLEDGE.md delete mode 100644 docs/docs/auto-docs/GraphQl/Mutations/TagMutations/README.md delete mode 100644 docs/docs/auto-docs/GraphQl/Mutations/TagMutations/variables/ADD_PEOPLE_TO_TAG.md delete mode 100644 docs/docs/auto-docs/GraphQl/Mutations/TagMutations/variables/ASSIGN_TO_TAGS.md delete mode 100644 docs/docs/auto-docs/GraphQl/Mutations/TagMutations/variables/CREATE_USER_TAG.md delete mode 100644 docs/docs/auto-docs/GraphQl/Mutations/TagMutations/variables/REMOVE_FROM_TAGS.md delete mode 100644 docs/docs/auto-docs/GraphQl/Mutations/TagMutations/variables/REMOVE_USER_TAG.md delete mode 100644 docs/docs/auto-docs/GraphQl/Mutations/TagMutations/variables/UNASSIGN_USER_TAG.md delete mode 100644 docs/docs/auto-docs/GraphQl/Mutations/TagMutations/variables/UPDATE_USER_TAG.md delete mode 100644 docs/docs/auto-docs/GraphQl/Mutations/VenueMutations/README.md delete mode 100644 docs/docs/auto-docs/GraphQl/Mutations/VenueMutations/variables/CREATE_VENUE_MUTATION.md delete mode 100644 docs/docs/auto-docs/GraphQl/Mutations/VenueMutations/variables/DELETE_VENUE_MUTATION.md delete mode 100644 docs/docs/auto-docs/GraphQl/Mutations/VenueMutations/variables/UPDATE_VENUE_MUTATION.md delete mode 100644 docs/docs/auto-docs/GraphQl/Mutations/mutations/README.md delete mode 100644 docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/ACCEPT_ORGANIZATION_REQUEST_MUTATION.md delete mode 100644 docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/ADDRESS_DETAILS_FRAGMENT.md delete mode 100644 docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/ADD_ADMIN_MUTATION.md delete mode 100644 docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/ADD_ADVERTISEMENT_MUTATION.md delete mode 100644 docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/ADD_MEMBER_MUTATION.md delete mode 100644 docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/ADD_PLUGIN_MUTATION.md delete mode 100644 docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/BLOCK_USER_MUTATION.md delete mode 100644 docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/CREATE_EVENT_MUTATION.md delete mode 100644 docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/CREATE_ORGANIZATION_MUTATION.md delete mode 100644 docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/CREATE_POST_MUTATION.md delete mode 100644 docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/DELETE_ADVERTISEMENT_BY_ID.md delete mode 100644 docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/DELETE_EVENT_MUTATION.md delete mode 100644 docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/DELETE_ORGANIZATION_MUTATION.md delete mode 100644 docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/DELETE_POST_MUTATION.md delete mode 100644 docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/DONATE_TO_ORGANIZATION.md delete mode 100644 docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/FORGOT_PASSWORD_MUTATION.md delete mode 100644 docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/GENERATE_OTP_MUTATION.md delete mode 100644 docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/LIKE_POST.md delete mode 100644 docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/LOGIN_MUTATION.md delete mode 100644 docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/RECAPTCHA_MUTATION.md delete mode 100644 docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/REFRESH_TOKEN_MUTATION.md delete mode 100644 docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/REGISTER_EVENT.md delete mode 100644 docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/REJECT_ORGANIZATION_REQUEST_MUTATION.md delete mode 100644 docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/REMOVE_ADMIN_MUTATION.md delete mode 100644 docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/REMOVE_MEMBER_MUTATION.md delete mode 100644 docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/RESET_COMMUNITY.md delete mode 100644 docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/REVOKE_REFRESH_TOKEN.md delete mode 100644 docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/SIGNUP_MUTATION.md delete mode 100644 docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/UNBLOCK_USER_MUTATION.md delete mode 100644 docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/UNLIKE_POST.md delete mode 100644 docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/UPDATE_ADVERTISEMENT_MUTATION.md delete mode 100644 docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/UPDATE_COMMUNITY.md delete mode 100644 docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/UPDATE_EVENT_MUTATION.md delete mode 100644 docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/UPDATE_INSTALL_STATUS_PLUGIN_MUTATION.md delete mode 100644 docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/UPDATE_ORGANIZATION_MUTATION.md delete mode 100644 docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/UPDATE_ORG_STATUS_PLUGIN_MUTATION.md delete mode 100644 docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/UPDATE_POST_MUTATION.md delete mode 100644 docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/UPDATE_SESSION_TIMEOUT.md delete mode 100644 docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/UPDATE_USER_MUTATION.md delete mode 100644 docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/UPDATE_USER_PASSWORD_MUTATION.md delete mode 100644 docs/docs/auto-docs/GraphQl/Queries/ActionItemCategoryQueries/README.md delete mode 100644 docs/docs/auto-docs/GraphQl/Queries/ActionItemCategoryQueries/variables/ACTION_ITEM_CATEGORY_LIST.md delete mode 100644 docs/docs/auto-docs/GraphQl/Queries/ActionItemQueries/README.md delete mode 100644 docs/docs/auto-docs/GraphQl/Queries/ActionItemQueries/variables/ACTION_ITEMS_BY_USER.md delete mode 100644 docs/docs/auto-docs/GraphQl/Queries/ActionItemQueries/variables/ACTION_ITEM_LIST.md delete mode 100644 docs/docs/auto-docs/GraphQl/Queries/AgendaCategoryQueries/README.md delete mode 100644 docs/docs/auto-docs/GraphQl/Queries/AgendaCategoryQueries/variables/AGENDA_ITEM_CATEGORY_LIST.md delete mode 100644 docs/docs/auto-docs/GraphQl/Queries/AgendaItemQueries/README.md delete mode 100644 docs/docs/auto-docs/GraphQl/Queries/AgendaItemQueries/variables/AgendaItemByEvent.md delete mode 100644 docs/docs/auto-docs/GraphQl/Queries/AgendaItemQueries/variables/AgendaItemByOrganization.md delete mode 100644 docs/docs/auto-docs/GraphQl/Queries/EventVolunteerQueries/README.md delete mode 100644 docs/docs/auto-docs/GraphQl/Queries/EventVolunteerQueries/variables/EVENT_VOLUNTEER_GROUP_LIST.md delete mode 100644 docs/docs/auto-docs/GraphQl/Queries/EventVolunteerQueries/variables/EVENT_VOLUNTEER_LIST.md delete mode 100644 docs/docs/auto-docs/GraphQl/Queries/EventVolunteerQueries/variables/USER_VOLUNTEER_MEMBERSHIP.md delete mode 100644 docs/docs/auto-docs/GraphQl/Queries/EventVolunteerQueries/variables/VOLUNTEER_RANKING.md delete mode 100644 docs/docs/auto-docs/GraphQl/Queries/OrganizationQueries/README.md delete mode 100644 docs/docs/auto-docs/GraphQl/Queries/OrganizationQueries/variables/ORGANIZATION_ADMINS_LIST.md delete mode 100644 docs/docs/auto-docs/GraphQl/Queries/OrganizationQueries/variables/ORGANIZATION_ADVERTISEMENT_LIST.md delete mode 100644 docs/docs/auto-docs/GraphQl/Queries/OrganizationQueries/variables/ORGANIZATION_FUNDS.md delete mode 100644 docs/docs/auto-docs/GraphQl/Queries/OrganizationQueries/variables/ORGANIZATION_POST_LIST.md delete mode 100644 docs/docs/auto-docs/GraphQl/Queries/OrganizationQueries/variables/ORGANIZATION_USER_TAGS_LIST.md delete mode 100644 docs/docs/auto-docs/GraphQl/Queries/OrganizationQueries/variables/USER_CREATED_ORGANIZATIONS.md delete mode 100644 docs/docs/auto-docs/GraphQl/Queries/OrganizationQueries/variables/USER_JOINED_ORGANIZATIONS.md delete mode 100644 docs/docs/auto-docs/GraphQl/Queries/OrganizationQueries/variables/USER_ORGANIZATION_CONNECTION.md delete mode 100644 docs/docs/auto-docs/GraphQl/Queries/OrganizationQueries/variables/VENUE_LIST.md delete mode 100644 docs/docs/auto-docs/GraphQl/Queries/PlugInQueries/README.md delete mode 100644 docs/docs/auto-docs/GraphQl/Queries/PlugInQueries/variables/ADVERTISEMENTS_GET.md delete mode 100644 docs/docs/auto-docs/GraphQl/Queries/PlugInQueries/variables/CHATS_LIST.md delete mode 100644 docs/docs/auto-docs/GraphQl/Queries/PlugInQueries/variables/CHAT_BY_ID.md delete mode 100644 docs/docs/auto-docs/GraphQl/Queries/PlugInQueries/variables/GROUP_CHAT_LIST.md delete mode 100644 docs/docs/auto-docs/GraphQl/Queries/PlugInQueries/variables/IS_SAMPLE_ORGANIZATION_QUERY.md delete mode 100644 docs/docs/auto-docs/GraphQl/Queries/PlugInQueries/variables/ORGANIZATION_CUSTOM_FIELDS.md delete mode 100644 docs/docs/auto-docs/GraphQl/Queries/PlugInQueries/variables/ORGANIZATION_EVENTS_CONNECTION.md delete mode 100644 docs/docs/auto-docs/GraphQl/Queries/PlugInQueries/variables/PLUGIN_GET.md delete mode 100644 docs/docs/auto-docs/GraphQl/Queries/PlugInQueries/variables/UNREAD_CHAT_LIST.md delete mode 100644 docs/docs/auto-docs/GraphQl/Queries/PlugInQueries/variables/USER_EVENTS_VOLUNTEER.md delete mode 100644 docs/docs/auto-docs/GraphQl/Queries/Queries/README.md delete mode 100644 docs/docs/auto-docs/GraphQl/Queries/Queries/variables/ADMIN_LIST.md delete mode 100644 docs/docs/auto-docs/GraphQl/Queries/Queries/variables/BLOCK_PAGE_MEMBER_LIST.md delete mode 100644 docs/docs/auto-docs/GraphQl/Queries/Queries/variables/CHECK_AUTH.md delete mode 100644 docs/docs/auto-docs/GraphQl/Queries/Queries/variables/EVENT_ATTENDEES.md delete mode 100644 docs/docs/auto-docs/GraphQl/Queries/Queries/variables/EVENT_CHECKINS.md delete mode 100644 docs/docs/auto-docs/GraphQl/Queries/Queries/variables/EVENT_DETAILS.md delete mode 100644 docs/docs/auto-docs/GraphQl/Queries/Queries/variables/EVENT_FEEDBACKS.md delete mode 100644 docs/docs/auto-docs/GraphQl/Queries/Queries/variables/EVENT_REGISTRANTS.md delete mode 100644 docs/docs/auto-docs/GraphQl/Queries/Queries/variables/GET_COMMUNITY_DATA.md delete mode 100644 docs/docs/auto-docs/GraphQl/Queries/Queries/variables/GET_COMMUNITY_SESSION_TIMEOUT_DATA.md delete mode 100644 docs/docs/auto-docs/GraphQl/Queries/Queries/variables/MEMBERSHIP_REQUEST.md delete mode 100644 docs/docs/auto-docs/GraphQl/Queries/Queries/variables/MEMBERS_LIST.md delete mode 100644 docs/docs/auto-docs/GraphQl/Queries/Queries/variables/ORGANIZATIONS_LIST.md delete mode 100644 docs/docs/auto-docs/GraphQl/Queries/Queries/variables/ORGANIZATIONS_MEMBER_CONNECTION_LIST.md delete mode 100644 docs/docs/auto-docs/GraphQl/Queries/Queries/variables/ORGANIZATION_CONNECTION_LIST.md delete mode 100644 docs/docs/auto-docs/GraphQl/Queries/Queries/variables/ORGANIZATION_DONATION_CONNECTION_LIST.md delete mode 100644 docs/docs/auto-docs/GraphQl/Queries/Queries/variables/ORGANIZATION_EVENT_CONNECTION_LIST.md delete mode 100644 docs/docs/auto-docs/GraphQl/Queries/Queries/variables/ORGANIZATION_EVENT_LIST.md delete mode 100644 docs/docs/auto-docs/GraphQl/Queries/Queries/variables/ORGANIZATION_LIST.md delete mode 100644 docs/docs/auto-docs/GraphQl/Queries/Queries/variables/RECURRING_EVENTS.md delete mode 100644 docs/docs/auto-docs/GraphQl/Queries/Queries/variables/USERS_CONNECTION_LIST.md delete mode 100644 docs/docs/auto-docs/GraphQl/Queries/Queries/variables/USER_DETAILS.md delete mode 100644 docs/docs/auto-docs/GraphQl/Queries/Queries/variables/USER_LIST.md delete mode 100644 docs/docs/auto-docs/GraphQl/Queries/Queries/variables/USER_LIST_FOR_TABLE.md delete mode 100644 docs/docs/auto-docs/GraphQl/Queries/Queries/variables/USER_LIST_REQUEST.md delete mode 100644 docs/docs/auto-docs/GraphQl/Queries/Queries/variables/USER_ORGANIZATION_LIST.md delete mode 100644 docs/docs/auto-docs/GraphQl/Queries/fundQueries/README.md delete mode 100644 docs/docs/auto-docs/GraphQl/Queries/fundQueries/variables/FUND_CAMPAIGN.md delete mode 100644 docs/docs/auto-docs/GraphQl/Queries/fundQueries/variables/FUND_CAMPAIGN_PLEDGE.md delete mode 100644 docs/docs/auto-docs/GraphQl/Queries/fundQueries/variables/FUND_LIST.md delete mode 100644 docs/docs/auto-docs/GraphQl/Queries/fundQueries/variables/USER_FUND_CAMPAIGNS.md delete mode 100644 docs/docs/auto-docs/GraphQl/Queries/fundQueries/variables/USER_PLEDGES.md delete mode 100644 docs/docs/auto-docs/GraphQl/Queries/userTagQueries/README.md delete mode 100644 docs/docs/auto-docs/GraphQl/Queries/userTagQueries/variables/USER_TAGS_ASSIGNED_MEMBERS.md delete mode 100644 docs/docs/auto-docs/GraphQl/Queries/userTagQueries/variables/USER_TAGS_MEMBERS_TO_ASSIGN_TO.md delete mode 100644 docs/docs/auto-docs/GraphQl/Queries/userTagQueries/variables/USER_TAG_SUB_TAGS.md delete mode 100644 docs/docs/auto-docs/README.md delete mode 100644 docs/docs/auto-docs/_media/CODE_OF_CONDUCT.md delete mode 100644 docs/docs/auto-docs/_media/CONTRIBUTING.md delete mode 100644 docs/docs/auto-docs/_media/INSTALLATION.md delete mode 100644 docs/docs/auto-docs/_media/ISSUE_GUIDELINES.md delete mode 100644 docs/docs/auto-docs/_media/PR_GUIDELINES.md delete mode 100644 docs/docs/auto-docs/assets/svgs/social-icons/README.md delete mode 100644 docs/docs/auto-docs/components/AddOn/AddOn/README.md delete mode 100644 docs/docs/auto-docs/components/AddOn/AddOn/functions/default.md delete mode 100644 docs/docs/auto-docs/components/AddOn/core/AddOnEntry/AddOnEntry/README.md delete mode 100644 docs/docs/auto-docs/components/AddOn/core/AddOnEntry/AddOnEntry/functions/default.md delete mode 100644 docs/docs/auto-docs/components/AddOn/core/AddOnEntry/AddOnEntryMocks/README.md delete mode 100644 docs/docs/auto-docs/components/AddOn/core/AddOnEntry/AddOnEntryMocks/variables/ADD_ON_ENTRY_MOCK.md delete mode 100644 docs/docs/auto-docs/components/AddOn/core/AddOnRegister/AddOnRegister/README.md delete mode 100644 docs/docs/auto-docs/components/AddOn/core/AddOnRegister/AddOnRegister/functions/default.md delete mode 100644 docs/docs/auto-docs/components/AddOn/core/AddOnStore/AddOnStore/README.md delete mode 100644 docs/docs/auto-docs/components/AddOn/core/AddOnStore/AddOnStore/functions/default.md delete mode 100644 docs/docs/auto-docs/components/AddOn/support/components/Action/Action/README.md delete mode 100644 docs/docs/auto-docs/components/AddOn/support/components/Action/Action/functions/default.md delete mode 100644 docs/docs/auto-docs/components/AddOn/support/components/MainContent/MainContent/README.md delete mode 100644 docs/docs/auto-docs/components/AddOn/support/components/MainContent/MainContent/functions/default.md delete mode 100644 docs/docs/auto-docs/components/AddOn/support/components/SidePanel/SidePanel/README.md delete mode 100644 docs/docs/auto-docs/components/AddOn/support/components/SidePanel/SidePanel/functions/default.md delete mode 100644 docs/docs/auto-docs/components/AddOn/support/services/Plugin.helper/README.md delete mode 100644 docs/docs/auto-docs/components/AddOn/support/services/Plugin.helper/classes/default.md delete mode 100644 docs/docs/auto-docs/components/AddOn/support/services/Render.helper/README.md delete mode 100644 docs/docs/auto-docs/components/AddOn/support/services/Render.helper/classes/default.md delete mode 100644 docs/docs/auto-docs/components/AddPeopleToTag/AddPeopleToTag/README.md delete mode 100644 docs/docs/auto-docs/components/AddPeopleToTag/AddPeopleToTag/functions/default.md delete mode 100644 docs/docs/auto-docs/components/AddPeopleToTag/AddPeopleToTag/interfaces/InterfaceAddPeopleToTagProps.md delete mode 100644 docs/docs/auto-docs/components/AddPeopleToTag/AddPeopleToTagsMocks/README.md delete mode 100644 docs/docs/auto-docs/components/AddPeopleToTag/AddPeopleToTagsMocks/variables/MOCKS.md delete mode 100644 docs/docs/auto-docs/components/AddPeopleToTag/AddPeopleToTagsMocks/variables/MOCKS_ERROR.md delete mode 100644 docs/docs/auto-docs/components/Advertisements/Advertisements/README.md delete mode 100644 docs/docs/auto-docs/components/Advertisements/Advertisements/functions/default.md delete mode 100644 docs/docs/auto-docs/components/Advertisements/core/AdvertisementEntry/AdvertisementEntry/README.md delete mode 100644 docs/docs/auto-docs/components/Advertisements/core/AdvertisementEntry/AdvertisementEntry/functions/default.md delete mode 100644 docs/docs/auto-docs/components/Advertisements/core/AdvertisementRegister/AdvertisementRegister/README.md delete mode 100644 docs/docs/auto-docs/components/Advertisements/core/AdvertisementRegister/AdvertisementRegister/functions/default.md delete mode 100644 docs/docs/auto-docs/components/AgendaCategory/AgendaCategoryContainer/README.md delete mode 100644 docs/docs/auto-docs/components/AgendaCategory/AgendaCategoryContainer/functions/default.md delete mode 100644 docs/docs/auto-docs/components/AgendaCategory/AgendaCategoryContainerMocks/README.md delete mode 100644 docs/docs/auto-docs/components/AgendaCategory/AgendaCategoryContainerMocks/variables/MOCKS.md delete mode 100644 docs/docs/auto-docs/components/AgendaCategory/AgendaCategoryContainerMocks/variables/MOCKS_ERROR_MUTATIONS.md delete mode 100644 docs/docs/auto-docs/components/AgendaCategory/AgendaCategoryContainerProps/README.md delete mode 100644 docs/docs/auto-docs/components/AgendaCategory/AgendaCategoryContainerProps/variables/props.md delete mode 100644 docs/docs/auto-docs/components/AgendaCategory/AgendaCategoryContainerProps/variables/props2.md delete mode 100644 docs/docs/auto-docs/components/AgendaItems/AgendaItemsContainer/README.md delete mode 100644 docs/docs/auto-docs/components/AgendaItems/AgendaItemsContainer/functions/default.md delete mode 100644 docs/docs/auto-docs/components/AgendaItems/AgendaItemsContainerMocks/README.md delete mode 100644 docs/docs/auto-docs/components/AgendaItems/AgendaItemsContainerMocks/variables/MOCKS.md delete mode 100644 docs/docs/auto-docs/components/AgendaItems/AgendaItemsContainerMocks/variables/MOCKS_ERROR.md delete mode 100644 docs/docs/auto-docs/components/AgendaItems/AgendaItemsContainerProps/README.md delete mode 100644 docs/docs/auto-docs/components/AgendaItems/AgendaItemsContainerProps/variables/props.md delete mode 100644 docs/docs/auto-docs/components/AgendaItems/AgendaItemsContainerProps/variables/props2.md delete mode 100644 docs/docs/auto-docs/components/AgendaItems/AgendaItemsCreateModal/README.md delete mode 100644 docs/docs/auto-docs/components/AgendaItems/AgendaItemsCreateModal/functions/default.md delete mode 100644 docs/docs/auto-docs/components/AgendaItems/AgendaItemsDeleteModal/README.md delete mode 100644 docs/docs/auto-docs/components/AgendaItems/AgendaItemsDeleteModal/functions/default.md delete mode 100644 docs/docs/auto-docs/components/AgendaItems/AgendaItemsPreviewModal/README.md delete mode 100644 docs/docs/auto-docs/components/AgendaItems/AgendaItemsPreviewModal/functions/default.md delete mode 100644 docs/docs/auto-docs/components/AgendaItems/AgendaItemsUpdateModal/README.md delete mode 100644 docs/docs/auto-docs/components/AgendaItems/AgendaItemsUpdateModal/functions/default.md delete mode 100644 docs/docs/auto-docs/components/Avatar/Avatar/README.md delete mode 100644 docs/docs/auto-docs/components/Avatar/Avatar/functions/default.md delete mode 100644 docs/docs/auto-docs/components/ChangeLanguageDropdown/ChangeLanguageDropDown/README.md delete mode 100644 docs/docs/auto-docs/components/ChangeLanguageDropdown/ChangeLanguageDropDown/functions/default.md delete mode 100644 docs/docs/auto-docs/components/CheckIn/CheckInModal/README.md delete mode 100644 docs/docs/auto-docs/components/CheckIn/CheckInModal/functions/CheckInModal.md delete mode 100644 docs/docs/auto-docs/components/CheckIn/CheckInWrapper/README.md delete mode 100644 docs/docs/auto-docs/components/CheckIn/CheckInWrapper/functions/CheckInWrapper.md delete mode 100644 docs/docs/auto-docs/components/CheckIn/TableRow/README.md delete mode 100644 docs/docs/auto-docs/components/CheckIn/TableRow/functions/TableRow.md delete mode 100644 docs/docs/auto-docs/components/CheckIn/mocks/README.md delete mode 100644 docs/docs/auto-docs/components/CheckIn/mocks/variables/checkInMutationSuccess.md delete mode 100644 docs/docs/auto-docs/components/CheckIn/mocks/variables/checkInMutationUnsuccess.md delete mode 100644 docs/docs/auto-docs/components/CheckIn/mocks/variables/checkInQueryMock.md delete mode 100644 docs/docs/auto-docs/components/CheckIn/tagTemplate/README.md delete mode 100644 docs/docs/auto-docs/components/CheckIn/tagTemplate/variables/tagTemplate.md delete mode 100644 docs/docs/auto-docs/components/CheckIn/types/README.md delete mode 100644 docs/docs/auto-docs/components/CheckIn/types/interfaces/InterfaceAttendeeCheckIn.md delete mode 100644 docs/docs/auto-docs/components/CheckIn/types/interfaces/InterfaceAttendeeQueryResponse.md delete mode 100644 docs/docs/auto-docs/components/CheckIn/types/interfaces/InterfaceModalProp.md delete mode 100644 docs/docs/auto-docs/components/CheckIn/types/interfaces/InterfaceTableCheckIn.md delete mode 100644 docs/docs/auto-docs/components/CheckIn/types/interfaces/InterfaceTableData.md delete mode 100644 docs/docs/auto-docs/components/CheckIn/types/interfaces/InterfaceUser.md delete mode 100644 docs/docs/auto-docs/components/CollapsibleDropdown/CollapsibleDropdown/README.md delete mode 100644 docs/docs/auto-docs/components/CollapsibleDropdown/CollapsibleDropdown/functions/default.md delete mode 100644 docs/docs/auto-docs/components/CollapsibleDropdown/CollapsibleDropdown/interfaces/InterfaceCollapsibleDropdown.md delete mode 100644 docs/docs/auto-docs/components/ContriStats/ContriStats/README.md delete mode 100644 docs/docs/auto-docs/components/ContriStats/ContriStats/functions/default.md delete mode 100644 docs/docs/auto-docs/components/CurrentHourIndicator/CurrentHourIndicator/README.md delete mode 100644 docs/docs/auto-docs/components/CurrentHourIndicator/CurrentHourIndicator/functions/default.md delete mode 100644 docs/docs/auto-docs/components/DynamicDropDown/DynamicDropDown/README.md delete mode 100644 docs/docs/auto-docs/components/DynamicDropDown/DynamicDropDown/functions/default.md delete mode 100644 docs/docs/auto-docs/components/EditCustomFieldDropDown/EditCustomFieldDropDown/README.md delete mode 100644 docs/docs/auto-docs/components/EditCustomFieldDropDown/EditCustomFieldDropDown/functions/default.md delete mode 100644 docs/docs/auto-docs/components/EventCalendar/EventCalendar/README.md delete mode 100644 docs/docs/auto-docs/components/EventCalendar/EventCalendar/functions/default.md delete mode 100644 docs/docs/auto-docs/components/EventCalendar/EventHeader/README.md delete mode 100644 docs/docs/auto-docs/components/EventCalendar/EventHeader/functions/default.md delete mode 100644 docs/docs/auto-docs/components/EventCalendar/YearlyEventCalender/README.md delete mode 100644 docs/docs/auto-docs/components/EventCalendar/YearlyEventCalender/functions/default.md delete mode 100644 docs/docs/auto-docs/components/EventDashboardScreen/EventDashboardScreen/README.md delete mode 100644 docs/docs/auto-docs/components/EventDashboardScreen/EventDashboardScreen/functions/default.md delete mode 100644 docs/docs/auto-docs/components/EventListCard/EventListCard/README.md delete mode 100644 docs/docs/auto-docs/components/EventListCard/EventListCard/functions/default.md delete mode 100644 docs/docs/auto-docs/components/EventListCard/EventListCard/interfaces/InterfaceEventListCardProps.md delete mode 100644 docs/docs/auto-docs/components/EventListCard/EventListCardMocks/README.md delete mode 100644 docs/docs/auto-docs/components/EventListCard/EventListCardMocks/variables/ERROR_MOCKS.md delete mode 100644 docs/docs/auto-docs/components/EventListCard/EventListCardMocks/variables/MOCKS.md delete mode 100644 docs/docs/auto-docs/components/EventListCard/EventListCardModals/README.md delete mode 100644 docs/docs/auto-docs/components/EventListCard/EventListCardModals/functions/default.md delete mode 100644 docs/docs/auto-docs/components/EventListCard/EventListCardProps/README.md delete mode 100644 docs/docs/auto-docs/components/EventListCard/EventListCardProps/variables/props.md delete mode 100644 docs/docs/auto-docs/components/EventManagement/Dashboard/EventDashboard.mocks/README.md delete mode 100644 docs/docs/auto-docs/components/EventManagement/Dashboard/EventDashboard.mocks/variables/MOCKS_WITHOUT_TIME.md delete mode 100644 docs/docs/auto-docs/components/EventManagement/Dashboard/EventDashboard.mocks/variables/MOCKS_WITH_TIME.md delete mode 100644 docs/docs/auto-docs/components/EventManagement/Dashboard/EventDashboard/README.md delete mode 100644 docs/docs/auto-docs/components/EventManagement/Dashboard/EventDashboard/functions/default.md delete mode 100644 docs/docs/auto-docs/components/EventManagement/EventAgendaItems/EventAgendaItems/README.md delete mode 100644 docs/docs/auto-docs/components/EventManagement/EventAgendaItems/EventAgendaItems/functions/default.md delete mode 100644 docs/docs/auto-docs/components/EventManagement/EventAgendaItems/EventAgendaItemsMocks/README.md delete mode 100644 docs/docs/auto-docs/components/EventManagement/EventAgendaItems/EventAgendaItemsMocks/variables/MOCKS.md delete mode 100644 docs/docs/auto-docs/components/EventManagement/EventAgendaItems/EventAgendaItemsMocks/variables/MOCKS_ERROR_MUTATION.md delete mode 100644 docs/docs/auto-docs/components/EventManagement/EventAgendaItems/EventAgendaItemsMocks/variables/MOCKS_ERROR_QUERY.md delete mode 100644 docs/docs/auto-docs/components/EventManagement/EventAttendance/Attendance.mocks/README.md delete mode 100644 docs/docs/auto-docs/components/EventManagement/EventAttendance/Attendance.mocks/variables/MOCKS.md delete mode 100644 docs/docs/auto-docs/components/EventManagement/EventAttendance/Attendance.mocks/variables/MOCKS_ERROR.md delete mode 100644 docs/docs/auto-docs/components/EventManagement/EventAttendance/AttendedEventList/README.md delete mode 100644 docs/docs/auto-docs/components/EventManagement/EventAttendance/AttendedEventList/functions/default.md delete mode 100644 docs/docs/auto-docs/components/EventManagement/EventAttendance/EventAttendance/README.md delete mode 100644 docs/docs/auto-docs/components/EventManagement/EventAttendance/EventAttendance/functions/default.md delete mode 100644 docs/docs/auto-docs/components/EventManagement/EventAttendance/EventStatistics/README.md delete mode 100644 docs/docs/auto-docs/components/EventManagement/EventAttendance/EventStatistics/functions/AttendanceStatisticsModal.md delete mode 100644 docs/docs/auto-docs/components/EventManagement/EventAttendance/InterfaceEvents/README.md delete mode 100644 docs/docs/auto-docs/components/EventManagement/EventAttendance/InterfaceEvents/interfaces/InterfaceAttendanceStatisticsModalProps.md delete mode 100644 docs/docs/auto-docs/components/EventManagement/EventAttendance/InterfaceEvents/interfaces/InterfaceEvent.md delete mode 100644 docs/docs/auto-docs/components/EventManagement/EventAttendance/InterfaceEvents/interfaces/InterfaceMember.md delete mode 100644 docs/docs/auto-docs/components/EventManagement/EventAttendance/InterfaceEvents/interfaces/InterfaceRecurringEvent.md delete mode 100644 docs/docs/auto-docs/components/EventManagement/EventRegistrant/EventRegistrants/README.md delete mode 100644 docs/docs/auto-docs/components/EventManagement/EventRegistrant/EventRegistrants/functions/default.md delete mode 100644 docs/docs/auto-docs/components/EventManagement/EventRegistrant/Registrations.mocks/README.md delete mode 100644 docs/docs/auto-docs/components/EventManagement/EventRegistrant/Registrations.mocks/variables/REGISTRANTS_MOCKS.md delete mode 100644 docs/docs/auto-docs/components/EventManagement/EventRegistrant/Registrations.mocks/variables/REGISTRANTS_MOCKS_ERROR.md delete mode 100644 docs/docs/auto-docs/components/EventRegistrantsModal/AddOnSpotAttendee/README.md delete mode 100644 docs/docs/auto-docs/components/EventRegistrantsModal/AddOnSpotAttendee/functions/default.md delete mode 100644 docs/docs/auto-docs/components/EventRegistrantsModal/EventRegistrantsModal/README.md delete mode 100644 docs/docs/auto-docs/components/EventRegistrantsModal/EventRegistrantsModal/functions/EventRegistrantsModal.md delete mode 100644 docs/docs/auto-docs/components/EventRegistrantsModal/EventRegistrantsWrapper/README.md delete mode 100644 docs/docs/auto-docs/components/EventRegistrantsModal/EventRegistrantsWrapper/functions/EventRegistrantsWrapper.md delete mode 100644 docs/docs/auto-docs/components/EventStats/EventStats/README.md delete mode 100644 docs/docs/auto-docs/components/EventStats/EventStats/functions/EventStats.md delete mode 100644 docs/docs/auto-docs/components/EventStats/EventStatsWrapper/README.md delete mode 100644 docs/docs/auto-docs/components/EventStats/EventStatsWrapper/functions/EventStatsWrapper.md delete mode 100644 docs/docs/auto-docs/components/EventStats/Statistics/AverageRating/README.md delete mode 100644 docs/docs/auto-docs/components/EventStats/Statistics/AverageRating/functions/AverageRating.md delete mode 100644 docs/docs/auto-docs/components/EventStats/Statistics/Feedback/README.md delete mode 100644 docs/docs/auto-docs/components/EventStats/Statistics/Feedback/functions/FeedbackStats.md delete mode 100644 docs/docs/auto-docs/components/EventStats/Statistics/Review/README.md delete mode 100644 docs/docs/auto-docs/components/EventStats/Statistics/Review/functions/ReviewStats.md delete mode 100644 docs/docs/auto-docs/components/GroupChatDetails/GroupChatDetails/README.md delete mode 100644 docs/docs/auto-docs/components/GroupChatDetails/GroupChatDetails/functions/default.md delete mode 100644 docs/docs/auto-docs/components/HolidayCards/HolidayCard/README.md delete mode 100644 docs/docs/auto-docs/components/HolidayCards/HolidayCard/functions/default.md delete mode 100644 docs/docs/auto-docs/components/IconComponent/IconComponent/README.md delete mode 100644 docs/docs/auto-docs/components/IconComponent/IconComponent/functions/default.md delete mode 100644 docs/docs/auto-docs/components/IconComponent/IconComponent/interfaces/InterfaceIconComponent.md delete mode 100644 docs/docs/auto-docs/components/InfiniteScrollLoader/InfiniteScrollLoader/README.md delete mode 100644 docs/docs/auto-docs/components/InfiniteScrollLoader/InfiniteScrollLoader/functions/default.md delete mode 100644 docs/docs/auto-docs/components/LeftDrawer/LeftDrawer/README.md delete mode 100644 docs/docs/auto-docs/components/LeftDrawer/LeftDrawer/functions/default.md delete mode 100644 docs/docs/auto-docs/components/LeftDrawer/LeftDrawer/interfaces/InterfaceLeftDrawerProps.md delete mode 100644 docs/docs/auto-docs/components/LeftDrawerOrg/LeftDrawerOrg/README.md delete mode 100644 docs/docs/auto-docs/components/LeftDrawerOrg/LeftDrawerOrg/functions/default.md delete mode 100644 docs/docs/auto-docs/components/LeftDrawerOrg/LeftDrawerOrg/interfaces/InterfaceLeftDrawerProps.md delete mode 100644 docs/docs/auto-docs/components/Loader/Loader/README.md delete mode 100644 docs/docs/auto-docs/components/Loader/Loader/functions/default.md delete mode 100644 docs/docs/auto-docs/components/LoginPortalToggle/LoginPortalToggle/README.md delete mode 100644 docs/docs/auto-docs/components/LoginPortalToggle/LoginPortalToggle/functions/default.md delete mode 100644 docs/docs/auto-docs/components/MemberDetail/EventsAttendedByMember/README.md delete mode 100644 docs/docs/auto-docs/components/MemberDetail/EventsAttendedByMember/functions/default.md delete mode 100644 docs/docs/auto-docs/components/MemberDetail/EventsAttendedCardItem/README.md delete mode 100644 docs/docs/auto-docs/components/MemberDetail/EventsAttendedCardItem/functions/default.md delete mode 100644 docs/docs/auto-docs/components/MemberDetail/EventsAttendedCardItem/interfaces/InterfaceCardItem.md delete mode 100644 docs/docs/auto-docs/components/MemberDetail/EventsAttendedMemberModal/README.md delete mode 100644 docs/docs/auto-docs/components/MemberDetail/EventsAttendedMemberModal/functions/default.md delete mode 100644 docs/docs/auto-docs/components/MemberDetail/customTableCell/README.md delete mode 100644 docs/docs/auto-docs/components/MemberDetail/customTableCell/functions/CustomTableCell.md delete mode 100644 docs/docs/auto-docs/components/MemberRequestCard/MemberRequestCard/README.md delete mode 100644 docs/docs/auto-docs/components/MemberRequestCard/MemberRequestCard/functions/default.md delete mode 100644 docs/docs/auto-docs/components/NotFound/NotFound/README.md delete mode 100644 docs/docs/auto-docs/components/NotFound/NotFound/functions/default.md delete mode 100644 docs/docs/auto-docs/components/OrgAdminListCard/OrgAdminListCard/README.md delete mode 100644 docs/docs/auto-docs/components/OrgAdminListCard/OrgAdminListCard/functions/default.md delete mode 100644 docs/docs/auto-docs/components/OrgContriCards/OrgContriCards/README.md delete mode 100644 docs/docs/auto-docs/components/OrgContriCards/OrgContriCards/functions/default.md delete mode 100644 docs/docs/auto-docs/components/OrgDelete/OrgDelete/README.md delete mode 100644 docs/docs/auto-docs/components/OrgDelete/OrgDelete/functions/default.md delete mode 100644 docs/docs/auto-docs/components/OrgListCard/OrgListCard/README.md delete mode 100644 docs/docs/auto-docs/components/OrgListCard/OrgListCard/functions/default.md delete mode 100644 docs/docs/auto-docs/components/OrgListCard/OrgListCard/interfaces/InterfaceOrgListCardProps.md delete mode 100644 docs/docs/auto-docs/components/OrgListCard/TruncatedText/README.md delete mode 100644 docs/docs/auto-docs/components/OrgListCard/TruncatedText/functions/default.md delete mode 100644 docs/docs/auto-docs/components/OrgListCard/useDebounce/README.md delete mode 100644 docs/docs/auto-docs/components/OrgListCard/useDebounce/functions/default.md delete mode 100644 docs/docs/auto-docs/components/OrgPeopleListCard/OrgPeopleListCard/README.md delete mode 100644 docs/docs/auto-docs/components/OrgPeopleListCard/OrgPeopleListCard/functions/default.md delete mode 100644 docs/docs/auto-docs/components/OrgPostCard/DeletePostModal/README.md delete mode 100644 docs/docs/auto-docs/components/OrgPostCard/DeletePostModal/functions/default.md delete mode 100644 docs/docs/auto-docs/components/OrgPostCard/OrgPostCard/README.md delete mode 100644 docs/docs/auto-docs/components/OrgPostCard/OrgPostCard/functions/default.md delete mode 100644 docs/docs/auto-docs/components/OrgSettings/ActionItemCategories/CategoryModal/README.md delete mode 100644 docs/docs/auto-docs/components/OrgSettings/ActionItemCategories/CategoryModal/functions/default.md delete mode 100644 docs/docs/auto-docs/components/OrgSettings/ActionItemCategories/CategoryModal/interfaces/InterfaceActionItemCategoryModal.md delete mode 100644 docs/docs/auto-docs/components/OrgSettings/ActionItemCategories/OrgActionItemCategories/README.md delete mode 100644 docs/docs/auto-docs/components/OrgSettings/ActionItemCategories/OrgActionItemCategories/functions/default.md delete mode 100644 docs/docs/auto-docs/components/OrgSettings/ActionItemCategories/OrgActionItemCategoryMocks/README.md delete mode 100644 docs/docs/auto-docs/components/OrgSettings/ActionItemCategories/OrgActionItemCategoryMocks/variables/MOCKS.md delete mode 100644 docs/docs/auto-docs/components/OrgSettings/ActionItemCategories/OrgActionItemCategoryMocks/variables/MOCKS_EMPTY.md delete mode 100644 docs/docs/auto-docs/components/OrgSettings/ActionItemCategories/OrgActionItemCategoryMocks/variables/MOCKS_ERROR.md delete mode 100644 docs/docs/auto-docs/components/OrgSettings/AgendaItemCategories/AgendaCategoryCreateModal/README.md delete mode 100644 docs/docs/auto-docs/components/OrgSettings/AgendaItemCategories/AgendaCategoryCreateModal/functions/default.md delete mode 100644 docs/docs/auto-docs/components/OrgSettings/AgendaItemCategories/AgendaCategoryDeleteModal/README.md delete mode 100644 docs/docs/auto-docs/components/OrgSettings/AgendaItemCategories/AgendaCategoryDeleteModal/functions/default.md delete mode 100644 docs/docs/auto-docs/components/OrgSettings/AgendaItemCategories/AgendaCategoryPreviewModal/README.md delete mode 100644 docs/docs/auto-docs/components/OrgSettings/AgendaItemCategories/AgendaCategoryPreviewModal/functions/default.md delete mode 100644 docs/docs/auto-docs/components/OrgSettings/AgendaItemCategories/AgendaCategoryUpdateModal/README.md delete mode 100644 docs/docs/auto-docs/components/OrgSettings/AgendaItemCategories/AgendaCategoryUpdateModal/functions/default.md delete mode 100644 docs/docs/auto-docs/components/OrgSettings/AgendaItemCategories/OrganizationAgendaCategory/README.md delete mode 100644 docs/docs/auto-docs/components/OrgSettings/AgendaItemCategories/OrganizationAgendaCategory/functions/default.md delete mode 100644 docs/docs/auto-docs/components/OrgSettings/AgendaItemCategories/OrganizationAgendaCategoryErrorMocks/README.md delete mode 100644 docs/docs/auto-docs/components/OrgSettings/AgendaItemCategories/OrganizationAgendaCategoryErrorMocks/variables/MOCKS_ERROR_AGENDA_ITEM_CATEGORY_LIST_QUERY.md delete mode 100644 docs/docs/auto-docs/components/OrgSettings/AgendaItemCategories/OrganizationAgendaCategoryErrorMocks/variables/MOCKS_ERROR_MUTATION.md delete mode 100644 docs/docs/auto-docs/components/OrgSettings/AgendaItemCategories/OrganizationAgendaCategoryMocks/README.md delete mode 100644 docs/docs/auto-docs/components/OrgSettings/AgendaItemCategories/OrganizationAgendaCategoryMocks/variables/MOCKS.md delete mode 100644 docs/docs/auto-docs/components/OrgSettings/General/DeleteOrg/DeleteOrg/README.md delete mode 100644 docs/docs/auto-docs/components/OrgSettings/General/DeleteOrg/DeleteOrg/functions/default.md delete mode 100644 docs/docs/auto-docs/components/OrgSettings/General/GeneralSettings/README.md delete mode 100644 docs/docs/auto-docs/components/OrgSettings/General/GeneralSettings/functions/default.md delete mode 100644 docs/docs/auto-docs/components/OrgSettings/General/OrgProfileFieldSettings/OrgProfileFieldSettings/README.md delete mode 100644 docs/docs/auto-docs/components/OrgSettings/General/OrgProfileFieldSettings/OrgProfileFieldSettings/functions/default.md delete mode 100644 docs/docs/auto-docs/components/OrgSettings/General/OrgUpdate/OrgUpdate/README.md delete mode 100644 docs/docs/auto-docs/components/OrgSettings/General/OrgUpdate/OrgUpdate/functions/default.md delete mode 100644 docs/docs/auto-docs/components/OrgSettings/General/OrgUpdate/OrgUpdateMocks/README.md delete mode 100644 docs/docs/auto-docs/components/OrgSettings/General/OrgUpdate/OrgUpdateMocks/variables/MOCKS.md delete mode 100644 docs/docs/auto-docs/components/OrgSettings/General/OrgUpdate/OrgUpdateMocks/variables/MOCKS_ERROR_ORGLIST.md delete mode 100644 docs/docs/auto-docs/components/OrgSettings/General/OrgUpdate/OrgUpdateMocks/variables/MOCKS_ERROR_UPDATE_ORGLIST.md delete mode 100644 docs/docs/auto-docs/components/OrganizationCard/OrganizationCard/README.md delete mode 100644 docs/docs/auto-docs/components/OrganizationCard/OrganizationCard/functions/default.md delete mode 100644 docs/docs/auto-docs/components/OrganizationCardStart/OrganizationCardStart/README.md delete mode 100644 docs/docs/auto-docs/components/OrganizationCardStart/OrganizationCardStart/functions/default.md delete mode 100644 docs/docs/auto-docs/components/OrganizationDashCards/CardItem/README.md delete mode 100644 docs/docs/auto-docs/components/OrganizationDashCards/CardItem/functions/default.md delete mode 100644 docs/docs/auto-docs/components/OrganizationDashCards/CardItem/interfaces/InterfaceCardItem.md delete mode 100644 docs/docs/auto-docs/components/OrganizationDashCards/CardItemLoading/README.md delete mode 100644 docs/docs/auto-docs/components/OrganizationDashCards/CardItemLoading/functions/default.md delete mode 100644 docs/docs/auto-docs/components/OrganizationDashCards/DashboardCard/README.md delete mode 100644 docs/docs/auto-docs/components/OrganizationDashCards/DashboardCard/functions/default.md delete mode 100644 docs/docs/auto-docs/components/OrganizationDashCards/DashboardCardLoading/README.md delete mode 100644 docs/docs/auto-docs/components/OrganizationDashCards/DashboardCardLoading/functions/default.md delete mode 100644 docs/docs/auto-docs/components/OrganizationScreen/OrganizationScreen/README.md delete mode 100644 docs/docs/auto-docs/components/OrganizationScreen/OrganizationScreen/functions/default.md delete mode 100644 docs/docs/auto-docs/components/Pagination/Pagination/README.md delete mode 100644 docs/docs/auto-docs/components/Pagination/Pagination/functions/default.md delete mode 100644 docs/docs/auto-docs/components/PaginationList/PaginationList/README.md delete mode 100644 docs/docs/auto-docs/components/PaginationList/PaginationList/functions/default.md delete mode 100644 docs/docs/auto-docs/components/ProfileDropdown/ProfileDropdown/README.md delete mode 100644 docs/docs/auto-docs/components/ProfileDropdown/ProfileDropdown/functions/default.md delete mode 100644 docs/docs/auto-docs/components/RecurrenceOptions/CustomRecurrenceModal/README.md delete mode 100644 docs/docs/auto-docs/components/RecurrenceOptions/CustomRecurrenceModal/functions/default.md delete mode 100644 docs/docs/auto-docs/components/RecurrenceOptions/RecurrenceOptions/README.md delete mode 100644 docs/docs/auto-docs/components/RecurrenceOptions/RecurrenceOptions/functions/default.md delete mode 100644 docs/docs/auto-docs/components/RequestsTableItem/RequestsTableItem/README.md delete mode 100644 docs/docs/auto-docs/components/RequestsTableItem/RequestsTableItem/functions/default.md delete mode 100644 docs/docs/auto-docs/components/RequestsTableItem/RequestsTableItem/interfaces/InterfaceRequestsListItem.md delete mode 100644 docs/docs/auto-docs/components/RequestsTableItem/RequestsTableItemMocks/README.md delete mode 100644 docs/docs/auto-docs/components/RequestsTableItem/RequestsTableItemMocks/variables/MOCKS.md delete mode 100644 docs/docs/auto-docs/components/SecuredRoute/SecuredRoute/README.md delete mode 100644 docs/docs/auto-docs/components/SecuredRoute/SecuredRoute/functions/default.md delete mode 100644 docs/docs/auto-docs/components/SuperAdminScreen/SuperAdminScreen/README.md delete mode 100644 docs/docs/auto-docs/components/SuperAdminScreen/SuperAdminScreen/functions/default.md delete mode 100644 docs/docs/auto-docs/components/TableLoader/TableLoader/README.md delete mode 100644 docs/docs/auto-docs/components/TableLoader/TableLoader/functions/default.md delete mode 100644 docs/docs/auto-docs/components/TableLoader/TableLoader/interfaces/InterfaceTableLoader.md delete mode 100644 docs/docs/auto-docs/components/TagActions/TagActions/README.md delete mode 100644 docs/docs/auto-docs/components/TagActions/TagActions/functions/default.md delete mode 100644 docs/docs/auto-docs/components/TagActions/TagActions/interfaces/InterfaceTagActionsProps.md delete mode 100644 docs/docs/auto-docs/components/TagActions/TagActionsMocks/README.md delete mode 100644 docs/docs/auto-docs/components/TagActions/TagActionsMocks/variables/MOCKS.md delete mode 100644 docs/docs/auto-docs/components/TagActions/TagActionsMocks/variables/MOCKS_ERROR_ORGANIZATION_TAGS_QUERY.md delete mode 100644 docs/docs/auto-docs/components/TagActions/TagActionsMocks/variables/MOCKS_ERROR_SUBTAGS_QUERY.md delete mode 100644 docs/docs/auto-docs/components/TagActions/TagNode/README.md delete mode 100644 docs/docs/auto-docs/components/TagActions/TagNode/functions/default.md delete mode 100644 docs/docs/auto-docs/components/TagActions/TagNodeMocks/README.md delete mode 100644 docs/docs/auto-docs/components/TagActions/TagNodeMocks/variables/MOCKS1.md delete mode 100644 docs/docs/auto-docs/components/TagActions/TagNodeMocks/variables/MOCKS_ERROR_SUBTAGS_QUERY1.md delete mode 100644 docs/docs/auto-docs/components/UpdateSession/UpdateSession/README.md delete mode 100644 docs/docs/auto-docs/components/UpdateSession/UpdateSession/functions/default.md delete mode 100644 docs/docs/auto-docs/components/UserListCard/UserListCard/README.md delete mode 100644 docs/docs/auto-docs/components/UserListCard/UserListCard/functions/default.md delete mode 100644 docs/docs/auto-docs/components/UserPasswordUpdate/UserPasswordUpdate/README.md delete mode 100644 docs/docs/auto-docs/components/UserPasswordUpdate/UserPasswordUpdate/functions/default.md delete mode 100644 docs/docs/auto-docs/components/UserPasswordUpdate/UserPasswordUpdateMocks/README.md delete mode 100644 docs/docs/auto-docs/components/UserPasswordUpdate/UserPasswordUpdateMocks/variables/MOCKS.md delete mode 100644 docs/docs/auto-docs/components/UserPortal/ChatRoom/ChatRoom/README.md delete mode 100644 docs/docs/auto-docs/components/UserPortal/ChatRoom/ChatRoom/functions/default.md delete mode 100644 docs/docs/auto-docs/components/UserPortal/CommentCard/CommentCard/README.md delete mode 100644 docs/docs/auto-docs/components/UserPortal/CommentCard/CommentCard/functions/default.md delete mode 100644 docs/docs/auto-docs/components/UserPortal/ContactCard/ContactCard/README.md delete mode 100644 docs/docs/auto-docs/components/UserPortal/ContactCard/ContactCard/functions/default.md delete mode 100644 docs/docs/auto-docs/components/UserPortal/CreateDirectChat/CreateDirectChat/README.md delete mode 100644 docs/docs/auto-docs/components/UserPortal/CreateDirectChat/CreateDirectChat/functions/default.md delete mode 100644 docs/docs/auto-docs/components/UserPortal/CreateGroupChat/CreateGroupChat/README.md delete mode 100644 docs/docs/auto-docs/components/UserPortal/CreateGroupChat/CreateGroupChat/functions/default.md delete mode 100644 docs/docs/auto-docs/components/UserPortal/DonationCard/DonationCard/README.md delete mode 100644 docs/docs/auto-docs/components/UserPortal/DonationCard/DonationCard/functions/default.md delete mode 100644 docs/docs/auto-docs/components/UserPortal/EventCard/EventCard/README.md delete mode 100644 docs/docs/auto-docs/components/UserPortal/EventCard/EventCard/functions/default.md delete mode 100644 docs/docs/auto-docs/components/UserPortal/OrganizationCard/OrganizationCard/README.md delete mode 100644 docs/docs/auto-docs/components/UserPortal/OrganizationCard/OrganizationCard/functions/default.md delete mode 100644 docs/docs/auto-docs/components/UserPortal/OrganizationNavbar/OrganizationNavbar/README.md delete mode 100644 docs/docs/auto-docs/components/UserPortal/OrganizationNavbar/OrganizationNavbar/functions/default.md delete mode 100644 docs/docs/auto-docs/components/UserPortal/OrganizationSidebar/OrganizationSidebar/README.md delete mode 100644 docs/docs/auto-docs/components/UserPortal/OrganizationSidebar/OrganizationSidebar/functions/default.md delete mode 100644 docs/docs/auto-docs/components/UserPortal/PeopleCard/PeopleCard/README.md delete mode 100644 docs/docs/auto-docs/components/UserPortal/PeopleCard/PeopleCard/functions/default.md delete mode 100644 docs/docs/auto-docs/components/UserPortal/PostCard/PostCard/README.md delete mode 100644 docs/docs/auto-docs/components/UserPortal/PostCard/PostCard/functions/default.md delete mode 100644 docs/docs/auto-docs/components/UserPortal/PromotedPost/PromotedPost/README.md delete mode 100644 docs/docs/auto-docs/components/UserPortal/PromotedPost/PromotedPost/functions/default.md delete mode 100644 docs/docs/auto-docs/components/UserPortal/Register/Register/README.md delete mode 100644 docs/docs/auto-docs/components/UserPortal/Register/Register/functions/default.md delete mode 100644 docs/docs/auto-docs/components/UserPortal/SecuredRouteForUser/SecuredRouteForUser/README.md delete mode 100644 docs/docs/auto-docs/components/UserPortal/SecuredRouteForUser/SecuredRouteForUser/functions/default.md delete mode 100644 docs/docs/auto-docs/components/UserPortal/StartPostModal/StartPostModal/README.md delete mode 100644 docs/docs/auto-docs/components/UserPortal/StartPostModal/StartPostModal/functions/default.md delete mode 100644 docs/docs/auto-docs/components/UserPortal/UserNavbar/UserNavbar/README.md delete mode 100644 docs/docs/auto-docs/components/UserPortal/UserNavbar/UserNavbar/functions/default.md delete mode 100644 docs/docs/auto-docs/components/UserPortal/UserProfile/EventsAttendedByUser/README.md delete mode 100644 docs/docs/auto-docs/components/UserPortal/UserProfile/EventsAttendedByUser/functions/EventsAttendedByUser.md delete mode 100644 docs/docs/auto-docs/components/UserPortal/UserProfile/UserAddressFields/README.md delete mode 100644 docs/docs/auto-docs/components/UserPortal/UserProfile/UserAddressFields/functions/UserAddressFields.md delete mode 100644 docs/docs/auto-docs/components/UserPortal/UserSidebar/UserSidebar/README.md delete mode 100644 docs/docs/auto-docs/components/UserPortal/UserSidebar/UserSidebar/functions/default.md delete mode 100644 docs/docs/auto-docs/components/UserPortal/UserSidebar/UserSidebar/interfaces/InterfaceUserSidebarProps.md delete mode 100644 docs/docs/auto-docs/components/UserPortal/UserSidebarOrg/UserSidebarOrg/README.md delete mode 100644 docs/docs/auto-docs/components/UserPortal/UserSidebarOrg/UserSidebarOrg/functions/default.md delete mode 100644 docs/docs/auto-docs/components/UserPortal/UserSidebarOrg/UserSidebarOrg/interfaces/InterfaceUserSidebarOrgProps.md delete mode 100644 docs/docs/auto-docs/components/UserProfileSettings/DeleteUser/README.md delete mode 100644 docs/docs/auto-docs/components/UserProfileSettings/DeleteUser/functions/default.md delete mode 100644 docs/docs/auto-docs/components/UserProfileSettings/OtherSettings/README.md delete mode 100644 docs/docs/auto-docs/components/UserProfileSettings/OtherSettings/functions/default.md delete mode 100644 docs/docs/auto-docs/components/UserProfileSettings/UserProfile/README.md delete mode 100644 docs/docs/auto-docs/components/UserProfileSettings/UserProfile/functions/default.md delete mode 100644 docs/docs/auto-docs/components/UsersTableItem/UserTableItemMocks/README.md delete mode 100644 docs/docs/auto-docs/components/UsersTableItem/UserTableItemMocks/variables/MOCKS.md delete mode 100644 docs/docs/auto-docs/components/UsersTableItem/UserTableItemMocks/variables/MOCKS2.md delete mode 100644 docs/docs/auto-docs/components/UsersTableItem/UserTableItemMocks/variables/MOCKS_UPDATE.md delete mode 100644 docs/docs/auto-docs/components/UsersTableItem/UsersTableItem/README.md delete mode 100644 docs/docs/auto-docs/components/UsersTableItem/UsersTableItem/functions/default.md delete mode 100644 docs/docs/auto-docs/components/Venues/VenueCard/README.md delete mode 100644 docs/docs/auto-docs/components/Venues/VenueCard/functions/default.md delete mode 100644 docs/docs/auto-docs/components/Venues/VenueModal/README.md delete mode 100644 docs/docs/auto-docs/components/Venues/VenueModal/functions/default.md delete mode 100644 docs/docs/auto-docs/components/Venues/VenueModal/interfaces/InterfaceVenueModalProps.md delete mode 100644 docs/docs/auto-docs/components/plugins/DummyPlugin/DummyPlugin/README.md delete mode 100644 docs/docs/auto-docs/components/plugins/DummyPlugin/DummyPlugin/functions/default.md delete mode 100644 docs/docs/auto-docs/components/plugins/DummyPlugin2/DummyPlugin2/README.md delete mode 100644 docs/docs/auto-docs/components/plugins/DummyPlugin2/DummyPlugin2/functions/default.md delete mode 100644 docs/docs/auto-docs/components/plugins/README.md delete mode 100644 docs/docs/auto-docs/constants/README.md delete mode 100644 docs/docs/auto-docs/constants/variables/socialMediaLinks.md delete mode 100644 docs/docs/auto-docs/index/README.md delete mode 100644 docs/docs/auto-docs/modules.md delete mode 100644 docs/docs/auto-docs/reportWebVitals/README.md delete mode 100644 docs/docs/auto-docs/reportWebVitals/functions/default.md delete mode 100644 docs/docs/auto-docs/screens/BlockUser/BlockUser/README.md delete mode 100644 docs/docs/auto-docs/screens/BlockUser/BlockUser/functions/default.md delete mode 100644 docs/docs/auto-docs/screens/CommunityProfile/CommunityProfile/README.md delete mode 100644 docs/docs/auto-docs/screens/CommunityProfile/CommunityProfile/functions/default.md delete mode 100644 docs/docs/auto-docs/screens/EventManagement/EventManagement/README.md delete mode 100644 docs/docs/auto-docs/screens/EventManagement/EventManagement/functions/default.md delete mode 100644 docs/docs/auto-docs/screens/EventVolunteers/Requests/Requests.mocks/README.md delete mode 100644 docs/docs/auto-docs/screens/EventVolunteers/Requests/Requests.mocks/variables/EMPTY_MOCKS.md delete mode 100644 docs/docs/auto-docs/screens/EventVolunteers/Requests/Requests.mocks/variables/ERROR_MOCKS.md delete mode 100644 docs/docs/auto-docs/screens/EventVolunteers/Requests/Requests.mocks/variables/MOCKS.md delete mode 100644 docs/docs/auto-docs/screens/EventVolunteers/Requests/Requests.mocks/variables/UPDATE_ERROR_MOCKS.md delete mode 100644 docs/docs/auto-docs/screens/EventVolunteers/Requests/Requests/README.md delete mode 100644 docs/docs/auto-docs/screens/EventVolunteers/Requests/Requests/functions/default.md delete mode 100644 docs/docs/auto-docs/screens/EventVolunteers/VolunteerContainer/README.md delete mode 100644 docs/docs/auto-docs/screens/EventVolunteers/VolunteerContainer/functions/default.md delete mode 100644 docs/docs/auto-docs/screens/EventVolunteers/VolunteerGroups/VolunteerGroupDeleteModal/README.md delete mode 100644 docs/docs/auto-docs/screens/EventVolunteers/VolunteerGroups/VolunteerGroupDeleteModal/functions/default.md delete mode 100644 docs/docs/auto-docs/screens/EventVolunteers/VolunteerGroups/VolunteerGroupDeleteModal/interfaces/InterfaceDeleteVolunteerGroupModal.md delete mode 100644 docs/docs/auto-docs/screens/EventVolunteers/VolunteerGroups/VolunteerGroupModal/README.md delete mode 100644 docs/docs/auto-docs/screens/EventVolunteers/VolunteerGroups/VolunteerGroupModal/functions/default.md delete mode 100644 docs/docs/auto-docs/screens/EventVolunteers/VolunteerGroups/VolunteerGroupModal/interfaces/InterfaceVolunteerGroupModal.md delete mode 100644 docs/docs/auto-docs/screens/EventVolunteers/VolunteerGroups/VolunteerGroupViewModal/README.md delete mode 100644 docs/docs/auto-docs/screens/EventVolunteers/VolunteerGroups/VolunteerGroupViewModal/functions/default.md delete mode 100644 docs/docs/auto-docs/screens/EventVolunteers/VolunteerGroups/VolunteerGroupViewModal/interfaces/InterfaceVolunteerGroupViewModal.md delete mode 100644 docs/docs/auto-docs/screens/EventVolunteers/VolunteerGroups/VolunteerGroups.mocks/README.md delete mode 100644 docs/docs/auto-docs/screens/EventVolunteers/VolunteerGroups/VolunteerGroups.mocks/variables/MOCKS.md delete mode 100644 docs/docs/auto-docs/screens/EventVolunteers/VolunteerGroups/VolunteerGroups.mocks/variables/MOCKS_EMPTY.md delete mode 100644 docs/docs/auto-docs/screens/EventVolunteers/VolunteerGroups/VolunteerGroups.mocks/variables/MOCKS_ERROR.md delete mode 100644 docs/docs/auto-docs/screens/EventVolunteers/VolunteerGroups/VolunteerGroups/README.md delete mode 100644 docs/docs/auto-docs/screens/EventVolunteers/VolunteerGroups/VolunteerGroups/functions/default.md delete mode 100644 docs/docs/auto-docs/screens/EventVolunteers/Volunteers/VolunteerCreateModal/README.md delete mode 100644 docs/docs/auto-docs/screens/EventVolunteers/Volunteers/VolunteerCreateModal/functions/default.md delete mode 100644 docs/docs/auto-docs/screens/EventVolunteers/Volunteers/VolunteerCreateModal/interfaces/InterfaceVolunteerCreateModal.md delete mode 100644 docs/docs/auto-docs/screens/EventVolunteers/Volunteers/VolunteerDeleteModal/README.md delete mode 100644 docs/docs/auto-docs/screens/EventVolunteers/Volunteers/VolunteerDeleteModal/functions/default.md delete mode 100644 docs/docs/auto-docs/screens/EventVolunteers/Volunteers/VolunteerDeleteModal/interfaces/InterfaceDeleteVolunteerModal.md delete mode 100644 docs/docs/auto-docs/screens/EventVolunteers/Volunteers/VolunteerViewModal/README.md delete mode 100644 docs/docs/auto-docs/screens/EventVolunteers/Volunteers/VolunteerViewModal/functions/default.md delete mode 100644 docs/docs/auto-docs/screens/EventVolunteers/Volunteers/VolunteerViewModal/interfaces/InterfaceVolunteerViewModal.md delete mode 100644 docs/docs/auto-docs/screens/EventVolunteers/Volunteers/Volunteers.mocks/README.md delete mode 100644 docs/docs/auto-docs/screens/EventVolunteers/Volunteers/Volunteers.mocks/variables/MOCKS.md delete mode 100644 docs/docs/auto-docs/screens/EventVolunteers/Volunteers/Volunteers.mocks/variables/MOCKS_EMPTY.md delete mode 100644 docs/docs/auto-docs/screens/EventVolunteers/Volunteers/Volunteers.mocks/variables/MOCKS_ERROR.md delete mode 100644 docs/docs/auto-docs/screens/EventVolunteers/Volunteers/Volunteers/README.md delete mode 100644 docs/docs/auto-docs/screens/EventVolunteers/Volunteers/Volunteers/functions/default.md delete mode 100644 docs/docs/auto-docs/screens/ForgotPassword/ForgotPassword/README.md delete mode 100644 docs/docs/auto-docs/screens/ForgotPassword/ForgotPassword/functions/default.md delete mode 100644 docs/docs/auto-docs/screens/FundCampaignPledge/FundCampaignPledge/README.md delete mode 100644 docs/docs/auto-docs/screens/FundCampaignPledge/FundCampaignPledge/functions/default.md delete mode 100644 docs/docs/auto-docs/screens/FundCampaignPledge/PledgeDeleteModal/README.md delete mode 100644 docs/docs/auto-docs/screens/FundCampaignPledge/PledgeDeleteModal/functions/default.md delete mode 100644 docs/docs/auto-docs/screens/FundCampaignPledge/PledgeDeleteModal/interfaces/InterfaceDeletePledgeModal.md delete mode 100644 docs/docs/auto-docs/screens/FundCampaignPledge/PledgeModal/README.md delete mode 100644 docs/docs/auto-docs/screens/FundCampaignPledge/PledgeModal/functions/default.md delete mode 100644 docs/docs/auto-docs/screens/FundCampaignPledge/PledgeModal/interfaces/InterfacePledgeModal.md delete mode 100644 docs/docs/auto-docs/screens/FundCampaignPledge/PledgesMocks/README.md delete mode 100644 docs/docs/auto-docs/screens/FundCampaignPledge/PledgesMocks/variables/EMPTY_MOCKS.md delete mode 100644 docs/docs/auto-docs/screens/FundCampaignPledge/PledgesMocks/variables/MOCKS.md delete mode 100644 docs/docs/auto-docs/screens/FundCampaignPledge/PledgesMocks/variables/MOCKS_DELETE_PLEDGE_ERROR.md delete mode 100644 docs/docs/auto-docs/screens/FundCampaignPledge/PledgesMocks/variables/MOCKS_FUND_CAMPAIGN_PLEDGE_ERROR.md delete mode 100644 docs/docs/auto-docs/screens/FundCampaignPledge/PledgesMocks/variables/PLEDGE_MODAL_MOCKS.md delete mode 100644 docs/docs/auto-docs/screens/Leaderboard/Leaderboard.mocks/README.md delete mode 100644 docs/docs/auto-docs/screens/Leaderboard/Leaderboard.mocks/variables/EMPTY_MOCKS.md delete mode 100644 docs/docs/auto-docs/screens/Leaderboard/Leaderboard.mocks/variables/ERROR_MOCKS.md delete mode 100644 docs/docs/auto-docs/screens/Leaderboard/Leaderboard.mocks/variables/MOCKS.md delete mode 100644 docs/docs/auto-docs/screens/Leaderboard/Leaderboard/README.md delete mode 100644 docs/docs/auto-docs/screens/Leaderboard/Leaderboard/functions/default.md delete mode 100644 docs/docs/auto-docs/screens/LoginPage/LoginPage/README.md delete mode 100644 docs/docs/auto-docs/screens/LoginPage/LoginPage/functions/default.md delete mode 100644 docs/docs/auto-docs/screens/ManageTag/EditUserTagModal/README.md delete mode 100644 docs/docs/auto-docs/screens/ManageTag/EditUserTagModal/functions/default.md delete mode 100644 docs/docs/auto-docs/screens/ManageTag/EditUserTagModal/interfaces/InterfaceEditUserTagModalProps.md delete mode 100644 docs/docs/auto-docs/screens/ManageTag/ManageTag/README.md delete mode 100644 docs/docs/auto-docs/screens/ManageTag/ManageTag/functions/default.md delete mode 100644 docs/docs/auto-docs/screens/ManageTag/ManageTagMockComponents/MockAddPeopleToTag/README.md delete mode 100644 docs/docs/auto-docs/screens/ManageTag/ManageTagMockComponents/MockAddPeopleToTag/functions/default.md delete mode 100644 docs/docs/auto-docs/screens/ManageTag/ManageTagMockComponents/MockTagActions/README.md delete mode 100644 docs/docs/auto-docs/screens/ManageTag/ManageTagMockComponents/MockTagActions/functions/default.md delete mode 100644 docs/docs/auto-docs/screens/ManageTag/ManageTagMocks/README.md delete mode 100644 docs/docs/auto-docs/screens/ManageTag/ManageTagMocks/variables/MOCKS.md delete mode 100644 docs/docs/auto-docs/screens/ManageTag/ManageTagMocks/variables/MOCKS_ERROR_ASSIGNED_MEMBERS.md delete mode 100644 docs/docs/auto-docs/screens/ManageTag/RemoveUserTagModal/README.md delete mode 100644 docs/docs/auto-docs/screens/ManageTag/RemoveUserTagModal/functions/default.md delete mode 100644 docs/docs/auto-docs/screens/ManageTag/RemoveUserTagModal/interfaces/InterfaceRemoveUserTagModalProps.md delete mode 100644 docs/docs/auto-docs/screens/ManageTag/UnassignUserTagModal/README.md delete mode 100644 docs/docs/auto-docs/screens/ManageTag/UnassignUserTagModal/functions/default.md delete mode 100644 docs/docs/auto-docs/screens/ManageTag/UnassignUserTagModal/interfaces/InterfaceUnassignUserTagModalProps.md delete mode 100644 docs/docs/auto-docs/screens/MemberDetail/MemberDetail/README.md delete mode 100644 docs/docs/auto-docs/screens/MemberDetail/MemberDetail/functions/default.md delete mode 100644 docs/docs/auto-docs/screens/MemberDetail/MemberDetail/functions/getLanguageName.md delete mode 100644 docs/docs/auto-docs/screens/MemberDetail/MemberDetail/functions/prettyDate.md delete mode 100644 docs/docs/auto-docs/screens/MemberDetail/MemberDetailMocks/README.md delete mode 100644 docs/docs/auto-docs/screens/MemberDetail/MemberDetailMocks/variables/MOCKS1.md delete mode 100644 docs/docs/auto-docs/screens/MemberDetail/MemberDetailMocks/variables/MOCKS2.md delete mode 100644 docs/docs/auto-docs/screens/MemberDetail/MemberDetailMocks/variables/MOCKS3.md delete mode 100644 docs/docs/auto-docs/screens/OrgContribution/OrgContribution/README.md delete mode 100644 docs/docs/auto-docs/screens/OrgContribution/OrgContribution/functions/default.md delete mode 100644 docs/docs/auto-docs/screens/OrgList/OrgList/README.md delete mode 100644 docs/docs/auto-docs/screens/OrgList/OrgList/functions/default.md delete mode 100644 docs/docs/auto-docs/screens/OrgList/OrgListMocks/README.md delete mode 100644 docs/docs/auto-docs/screens/OrgList/OrgListMocks/variables/MOCKS.md delete mode 100644 docs/docs/auto-docs/screens/OrgList/OrgListMocks/variables/MOCKS_ADMIN.md delete mode 100644 docs/docs/auto-docs/screens/OrgList/OrgListMocks/variables/MOCKS_EMPTY.md delete mode 100644 docs/docs/auto-docs/screens/OrgList/OrgListMocks/variables/MOCKS_WITH_ERROR.md delete mode 100644 docs/docs/auto-docs/screens/OrgList/OrganizationModal/README.md delete mode 100644 docs/docs/auto-docs/screens/OrgList/OrganizationModal/functions/default.md delete mode 100644 docs/docs/auto-docs/screens/OrgPost/OrgPost/README.md delete mode 100644 docs/docs/auto-docs/screens/OrgPost/OrgPost/functions/default.md delete mode 100644 docs/docs/auto-docs/screens/OrgSettings/OrgSettings.mocks/README.md delete mode 100644 docs/docs/auto-docs/screens/OrgSettings/OrgSettings.mocks/variables/MOCKS.md delete mode 100644 docs/docs/auto-docs/screens/OrgSettings/OrgSettings/README.md delete mode 100644 docs/docs/auto-docs/screens/OrgSettings/OrgSettings/functions/default.md delete mode 100644 docs/docs/auto-docs/screens/OrganizationActionItems/ItemDeleteModal/README.md delete mode 100644 docs/docs/auto-docs/screens/OrganizationActionItems/ItemDeleteModal/functions/default.md delete mode 100644 docs/docs/auto-docs/screens/OrganizationActionItems/ItemDeleteModal/interfaces/InterfaceItemDeleteModalProps.md delete mode 100644 docs/docs/auto-docs/screens/OrganizationActionItems/ItemModal/README.md delete mode 100644 docs/docs/auto-docs/screens/OrganizationActionItems/ItemModal/functions/default.md delete mode 100644 docs/docs/auto-docs/screens/OrganizationActionItems/ItemModal/interfaces/InterfaceItemModalProps.md delete mode 100644 docs/docs/auto-docs/screens/OrganizationActionItems/ItemUpdateStatusModal/README.md delete mode 100644 docs/docs/auto-docs/screens/OrganizationActionItems/ItemUpdateStatusModal/functions/default.md delete mode 100644 docs/docs/auto-docs/screens/OrganizationActionItems/ItemUpdateStatusModal/interfaces/InterfaceItemUpdateStatusModalProps.md delete mode 100644 docs/docs/auto-docs/screens/OrganizationActionItems/ItemViewModal/README.md delete mode 100644 docs/docs/auto-docs/screens/OrganizationActionItems/ItemViewModal/functions/default.md delete mode 100644 docs/docs/auto-docs/screens/OrganizationActionItems/ItemViewModal/interfaces/InterfaceViewModalProps.md delete mode 100644 docs/docs/auto-docs/screens/OrganizationActionItems/OrganizationActionItem.mocks/README.md delete mode 100644 docs/docs/auto-docs/screens/OrganizationActionItems/OrganizationActionItem.mocks/variables/MOCKS.md delete mode 100644 docs/docs/auto-docs/screens/OrganizationActionItems/OrganizationActionItem.mocks/variables/MOCKS_EMPTY.md delete mode 100644 docs/docs/auto-docs/screens/OrganizationActionItems/OrganizationActionItem.mocks/variables/MOCKS_ERROR.md delete mode 100644 docs/docs/auto-docs/screens/OrganizationActionItems/OrganizationActionItems/README.md delete mode 100644 docs/docs/auto-docs/screens/OrganizationActionItems/OrganizationActionItems/functions/default.md delete mode 100644 docs/docs/auto-docs/screens/OrganizationActionItems/testObject.mocks/README.md delete mode 100644 docs/docs/auto-docs/screens/OrganizationActionItems/testObject.mocks/variables/actionItemCategory1.md delete mode 100644 docs/docs/auto-docs/screens/OrganizationActionItems/testObject.mocks/variables/actionItemCategory2.md delete mode 100644 docs/docs/auto-docs/screens/OrganizationActionItems/testObject.mocks/variables/actionItemCategoryListQuery.md delete mode 100644 docs/docs/auto-docs/screens/OrganizationActionItems/testObject.mocks/variables/baseActionItem.md delete mode 100644 docs/docs/auto-docs/screens/OrganizationActionItems/testObject.mocks/variables/groupListQuery.md delete mode 100644 docs/docs/auto-docs/screens/OrganizationActionItems/testObject.mocks/variables/itemWithGroup.md delete mode 100644 docs/docs/auto-docs/screens/OrganizationActionItems/testObject.mocks/variables/itemWithUser.md delete mode 100644 docs/docs/auto-docs/screens/OrganizationActionItems/testObject.mocks/variables/itemWithUserImage.md delete mode 100644 docs/docs/auto-docs/screens/OrganizationActionItems/testObject.mocks/variables/itemWithVolunteer.md delete mode 100644 docs/docs/auto-docs/screens/OrganizationActionItems/testObject.mocks/variables/itemWithVolunteerImage.md delete mode 100644 docs/docs/auto-docs/screens/OrganizationActionItems/testObject.mocks/variables/memberListQuery.md delete mode 100644 docs/docs/auto-docs/screens/OrganizationActionItems/testObject.mocks/variables/volunteerListQuery.md delete mode 100644 docs/docs/auto-docs/screens/OrganizationDashboard/OrganizationDashboard/README.md delete mode 100644 docs/docs/auto-docs/screens/OrganizationDashboard/OrganizationDashboard/functions/default.md delete mode 100644 docs/docs/auto-docs/screens/OrganizationDashboard/OrganizationDashboardMocks/README.md delete mode 100644 docs/docs/auto-docs/screens/OrganizationDashboard/OrganizationDashboardMocks/variables/EMPTY_MOCKS.md delete mode 100644 docs/docs/auto-docs/screens/OrganizationDashboard/OrganizationDashboardMocks/variables/ERROR_MOCKS.md delete mode 100644 docs/docs/auto-docs/screens/OrganizationDashboard/OrganizationDashboardMocks/variables/MOCKS.md delete mode 100644 docs/docs/auto-docs/screens/OrganizationEvents/OrganizationEvents/README.md delete mode 100644 docs/docs/auto-docs/screens/OrganizationEvents/OrganizationEvents/enumerations/ViewType.md delete mode 100644 docs/docs/auto-docs/screens/OrganizationEvents/OrganizationEvents/functions/default.md delete mode 100644 docs/docs/auto-docs/screens/OrganizationEvents/OrganizationEventsMocks/README.md delete mode 100644 docs/docs/auto-docs/screens/OrganizationEvents/OrganizationEventsMocks/variables/MOCKS.md delete mode 100644 docs/docs/auto-docs/screens/OrganizationFundCampaign/CampaignModal/README.md delete mode 100644 docs/docs/auto-docs/screens/OrganizationFundCampaign/CampaignModal/functions/default.md delete mode 100644 docs/docs/auto-docs/screens/OrganizationFundCampaign/CampaignModal/interfaces/InterfaceCampaignModal.md delete mode 100644 docs/docs/auto-docs/screens/OrganizationFundCampaign/OrganizationFundCampagins/README.md delete mode 100644 docs/docs/auto-docs/screens/OrganizationFundCampaign/OrganizationFundCampagins/functions/default.md delete mode 100644 docs/docs/auto-docs/screens/OrganizationFundCampaign/OrganizationFundCampaignMocks/README.md delete mode 100644 docs/docs/auto-docs/screens/OrganizationFundCampaign/OrganizationFundCampaignMocks/variables/EMPTY_MOCKS.md delete mode 100644 docs/docs/auto-docs/screens/OrganizationFundCampaign/OrganizationFundCampaignMocks/variables/MOCKS.md delete mode 100644 docs/docs/auto-docs/screens/OrganizationFundCampaign/OrganizationFundCampaignMocks/variables/MOCK_ERROR.md delete mode 100644 docs/docs/auto-docs/screens/OrganizationFunds/FundModal/README.md delete mode 100644 docs/docs/auto-docs/screens/OrganizationFunds/FundModal/functions/default.md delete mode 100644 docs/docs/auto-docs/screens/OrganizationFunds/FundModal/interfaces/InterfaceFundModal.md delete mode 100644 docs/docs/auto-docs/screens/OrganizationFunds/OrganizationFunds/README.md delete mode 100644 docs/docs/auto-docs/screens/OrganizationFunds/OrganizationFunds/functions/default.md delete mode 100644 docs/docs/auto-docs/screens/OrganizationFunds/OrganizationFundsMocks/README.md delete mode 100644 docs/docs/auto-docs/screens/OrganizationFunds/OrganizationFundsMocks/variables/MOCKS.md delete mode 100644 docs/docs/auto-docs/screens/OrganizationFunds/OrganizationFundsMocks/variables/MOCKS_ERROR.md delete mode 100644 docs/docs/auto-docs/screens/OrganizationFunds/OrganizationFundsMocks/variables/NO_FUNDS.md delete mode 100644 docs/docs/auto-docs/screens/OrganizationPeople/AddMember/README.md delete mode 100644 docs/docs/auto-docs/screens/OrganizationPeople/AddMember/functions/default.md delete mode 100644 docs/docs/auto-docs/screens/OrganizationPeople/MockDataTypes/README.md delete mode 100644 docs/docs/auto-docs/screens/OrganizationPeople/MockDataTypes/type-aliases/TestMock.md delete mode 100644 docs/docs/auto-docs/screens/OrganizationPeople/OrganizationPeople/README.md delete mode 100644 docs/docs/auto-docs/screens/OrganizationPeople/OrganizationPeople/functions/default.md delete mode 100644 docs/docs/auto-docs/screens/OrganizationTags/OrganizationTags/README.md delete mode 100644 docs/docs/auto-docs/screens/OrganizationTags/OrganizationTags/functions/default.md delete mode 100644 docs/docs/auto-docs/screens/OrganizationTags/OrganizationTagsMocks/README.md delete mode 100644 docs/docs/auto-docs/screens/OrganizationTags/OrganizationTagsMocks/variables/MOCKS.md delete mode 100644 docs/docs/auto-docs/screens/OrganizationTags/OrganizationTagsMocks/variables/MOCKS_ERROR.md delete mode 100644 docs/docs/auto-docs/screens/OrganizationVenues/OrganizationVenues/README.md delete mode 100644 docs/docs/auto-docs/screens/OrganizationVenues/OrganizationVenues/functions/default.md delete mode 100644 docs/docs/auto-docs/screens/PageNotFound/PageNotFound/README.md delete mode 100644 docs/docs/auto-docs/screens/PageNotFound/PageNotFound/functions/default.md delete mode 100644 docs/docs/auto-docs/screens/Requests/Requests/README.md delete mode 100644 docs/docs/auto-docs/screens/Requests/Requests/functions/default.md delete mode 100644 docs/docs/auto-docs/screens/Requests/RequestsMocks/README.md delete mode 100644 docs/docs/auto-docs/screens/Requests/RequestsMocks/variables/EMPTY_MOCKS.md delete mode 100644 docs/docs/auto-docs/screens/Requests/RequestsMocks/variables/EMPTY_REQUEST_MOCKS.md delete mode 100644 docs/docs/auto-docs/screens/Requests/RequestsMocks/variables/MOCKS.md delete mode 100644 docs/docs/auto-docs/screens/Requests/RequestsMocks/variables/MOCKS2.md delete mode 100644 docs/docs/auto-docs/screens/Requests/RequestsMocks/variables/MOCKS3.md delete mode 100644 docs/docs/auto-docs/screens/Requests/RequestsMocks/variables/MOCKS4.md delete mode 100644 docs/docs/auto-docs/screens/Requests/RequestsMocks/variables/MOCKS_WITH_ERROR.md delete mode 100644 docs/docs/auto-docs/screens/SubTags/SubTags/README.md delete mode 100644 docs/docs/auto-docs/screens/SubTags/SubTags/functions/default.md delete mode 100644 docs/docs/auto-docs/screens/SubTags/SubTagsMocks/README.md delete mode 100644 docs/docs/auto-docs/screens/SubTags/SubTagsMocks/variables/MOCKS.md delete mode 100644 docs/docs/auto-docs/screens/SubTags/SubTagsMocks/variables/MOCKS_ERROR_SUB_TAGS.md delete mode 100644 docs/docs/auto-docs/screens/UserPortal/Campaigns/Campaigns/README.md delete mode 100644 docs/docs/auto-docs/screens/UserPortal/Campaigns/Campaigns/functions/default.md delete mode 100644 docs/docs/auto-docs/screens/UserPortal/Campaigns/CampaignsMocks/README.md delete mode 100644 docs/docs/auto-docs/screens/UserPortal/Campaigns/CampaignsMocks/variables/EMPTY_MOCKS.md delete mode 100644 docs/docs/auto-docs/screens/UserPortal/Campaigns/CampaignsMocks/variables/MOCKS.md delete mode 100644 docs/docs/auto-docs/screens/UserPortal/Campaigns/CampaignsMocks/variables/USER_FUND_CAMPAIGNS_ERROR.md delete mode 100644 docs/docs/auto-docs/screens/UserPortal/Campaigns/PledgeModal/README.md delete mode 100644 docs/docs/auto-docs/screens/UserPortal/Campaigns/PledgeModal/functions/default.md delete mode 100644 docs/docs/auto-docs/screens/UserPortal/Campaigns/PledgeModal/interfaces/InterfacePledgeModal.md delete mode 100644 docs/docs/auto-docs/screens/UserPortal/Chat/Chat/README.md delete mode 100644 docs/docs/auto-docs/screens/UserPortal/Chat/Chat/functions/default.md delete mode 100644 docs/docs/auto-docs/screens/UserPortal/Donate/Donate/README.md delete mode 100644 docs/docs/auto-docs/screens/UserPortal/Donate/Donate/functions/default.md delete mode 100644 docs/docs/auto-docs/screens/UserPortal/Donate/Donate/interfaces/InterfaceDonationCardProps.md delete mode 100644 docs/docs/auto-docs/screens/UserPortal/Events/Events/README.md delete mode 100644 docs/docs/auto-docs/screens/UserPortal/Events/Events/functions/default.md delete mode 100644 docs/docs/auto-docs/screens/UserPortal/LeaveOrganization/LeaveOrganization/README.md delete mode 100644 docs/docs/auto-docs/screens/UserPortal/LeaveOrganization/LeaveOrganization/functions/default.md delete mode 100644 docs/docs/auto-docs/screens/UserPortal/LeaveOrganization/LeaveOrganization/variables/userEmail.md delete mode 100644 docs/docs/auto-docs/screens/UserPortal/LeaveOrganization/LeaveOrganization/variables/userId.md delete mode 100644 docs/docs/auto-docs/screens/UserPortal/Organizations/Organizations/README.md delete mode 100644 docs/docs/auto-docs/screens/UserPortal/Organizations/Organizations/functions/default.md delete mode 100644 docs/docs/auto-docs/screens/UserPortal/People/People/README.md delete mode 100644 docs/docs/auto-docs/screens/UserPortal/People/People/functions/default.md delete mode 100644 docs/docs/auto-docs/screens/UserPortal/Pledges/Pledges/README.md delete mode 100644 docs/docs/auto-docs/screens/UserPortal/Pledges/Pledges/functions/default.md delete mode 100644 docs/docs/auto-docs/screens/UserPortal/Pledges/PledgesMocks/README.md delete mode 100644 docs/docs/auto-docs/screens/UserPortal/Pledges/PledgesMocks/variables/EMPTY_MOCKS.md delete mode 100644 docs/docs/auto-docs/screens/UserPortal/Pledges/PledgesMocks/variables/MOCKS.md delete mode 100644 docs/docs/auto-docs/screens/UserPortal/Pledges/PledgesMocks/variables/USER_PLEDGES_ERROR.md delete mode 100644 docs/docs/auto-docs/screens/UserPortal/Posts/Posts/README.md delete mode 100644 docs/docs/auto-docs/screens/UserPortal/Posts/Posts/functions/default.md delete mode 100644 docs/docs/auto-docs/screens/UserPortal/Settings/Settings/README.md delete mode 100644 docs/docs/auto-docs/screens/UserPortal/Settings/Settings/functions/default.md delete mode 100644 docs/docs/auto-docs/screens/UserPortal/UserScreen/UserScreen/README.md delete mode 100644 docs/docs/auto-docs/screens/UserPortal/UserScreen/UserScreen/functions/default.md delete mode 100644 docs/docs/auto-docs/screens/UserPortal/Volunteer/Actions/Actions.mocks/README.md delete mode 100644 docs/docs/auto-docs/screens/UserPortal/Volunteer/Actions/Actions.mocks/variables/EMPTY_MOCKS.md delete mode 100644 docs/docs/auto-docs/screens/UserPortal/Volunteer/Actions/Actions.mocks/variables/ERROR_MOCKS.md delete mode 100644 docs/docs/auto-docs/screens/UserPortal/Volunteer/Actions/Actions.mocks/variables/MOCKS.md delete mode 100644 docs/docs/auto-docs/screens/UserPortal/Volunteer/Actions/Actions/README.md delete mode 100644 docs/docs/auto-docs/screens/UserPortal/Volunteer/Actions/Actions/functions/default.md delete mode 100644 docs/docs/auto-docs/screens/UserPortal/Volunteer/Groups/GroupModal/README.md delete mode 100644 docs/docs/auto-docs/screens/UserPortal/Volunteer/Groups/GroupModal/functions/default.md delete mode 100644 docs/docs/auto-docs/screens/UserPortal/Volunteer/Groups/GroupModal/interfaces/InterfaceGroupModal.md delete mode 100644 docs/docs/auto-docs/screens/UserPortal/Volunteer/Groups/Groups.mocks/README.md delete mode 100644 docs/docs/auto-docs/screens/UserPortal/Volunteer/Groups/Groups.mocks/variables/EMPTY_MOCKS.md delete mode 100644 docs/docs/auto-docs/screens/UserPortal/Volunteer/Groups/Groups.mocks/variables/ERROR_MOCKS.md delete mode 100644 docs/docs/auto-docs/screens/UserPortal/Volunteer/Groups/Groups.mocks/variables/MOCKS.md delete mode 100644 docs/docs/auto-docs/screens/UserPortal/Volunteer/Groups/Groups.mocks/variables/UPDATE_ERROR_MOCKS.md delete mode 100644 docs/docs/auto-docs/screens/UserPortal/Volunteer/Groups/Groups/README.md delete mode 100644 docs/docs/auto-docs/screens/UserPortal/Volunteer/Groups/Groups/functions/default.md delete mode 100644 docs/docs/auto-docs/screens/UserPortal/Volunteer/Invitations/Invitations.mocks/README.md delete mode 100644 docs/docs/auto-docs/screens/UserPortal/Volunteer/Invitations/Invitations.mocks/variables/EMPTY_MOCKS.md delete mode 100644 docs/docs/auto-docs/screens/UserPortal/Volunteer/Invitations/Invitations.mocks/variables/ERROR_MOCKS.md delete mode 100644 docs/docs/auto-docs/screens/UserPortal/Volunteer/Invitations/Invitations.mocks/variables/MOCKS.md delete mode 100644 docs/docs/auto-docs/screens/UserPortal/Volunteer/Invitations/Invitations.mocks/variables/UPDATE_ERROR_MOCKS.md delete mode 100644 docs/docs/auto-docs/screens/UserPortal/Volunteer/Invitations/Invitations/README.md delete mode 100644 docs/docs/auto-docs/screens/UserPortal/Volunteer/Invitations/Invitations/functions/default.md delete mode 100644 docs/docs/auto-docs/screens/UserPortal/Volunteer/UpcomingEvents/UpcomingEvents.mocks/README.md delete mode 100644 docs/docs/auto-docs/screens/UserPortal/Volunteer/UpcomingEvents/UpcomingEvents.mocks/variables/CREATE_ERROR_MOCKS.md delete mode 100644 docs/docs/auto-docs/screens/UserPortal/Volunteer/UpcomingEvents/UpcomingEvents.mocks/variables/EMPTY_MOCKS.md delete mode 100644 docs/docs/auto-docs/screens/UserPortal/Volunteer/UpcomingEvents/UpcomingEvents.mocks/variables/ERROR_MOCKS.md delete mode 100644 docs/docs/auto-docs/screens/UserPortal/Volunteer/UpcomingEvents/UpcomingEvents.mocks/variables/MOCKS.md delete mode 100644 docs/docs/auto-docs/screens/UserPortal/Volunteer/UpcomingEvents/UpcomingEvents/README.md delete mode 100644 docs/docs/auto-docs/screens/UserPortal/Volunteer/UpcomingEvents/UpcomingEvents/functions/default.md delete mode 100644 docs/docs/auto-docs/screens/UserPortal/Volunteer/VolunteerManagement/README.md delete mode 100644 docs/docs/auto-docs/screens/UserPortal/Volunteer/VolunteerManagement/functions/default.md delete mode 100644 docs/docs/auto-docs/screens/Users/Users/README.md delete mode 100644 docs/docs/auto-docs/screens/Users/Users/functions/default.md delete mode 100644 docs/docs/auto-docs/screens/Users/UsersMocks/README.md delete mode 100644 docs/docs/auto-docs/screens/Users/UsersMocks/variables/EMPTY_MOCKS.md delete mode 100644 docs/docs/auto-docs/screens/Users/UsersMocks/variables/MOCKS.md delete mode 100644 docs/docs/auto-docs/screens/Users/UsersMocks/variables/MOCKS2.md delete mode 100644 docs/docs/auto-docs/setup/askAndSetDockerOption/askAndSetDockerOption/README.md delete mode 100644 docs/docs/auto-docs/setup/askAndSetDockerOption/askAndSetDockerOption/functions/default.md delete mode 100644 docs/docs/auto-docs/setup/askAndUpdatePort/askAndUpdatePort/README.md delete mode 100644 docs/docs/auto-docs/setup/askAndUpdatePort/askAndUpdatePort/functions/default.md delete mode 100644 docs/docs/auto-docs/setup/askForCustomPort/askForCustomPort/README.md delete mode 100644 docs/docs/auto-docs/setup/askForCustomPort/askForCustomPort/functions/askForCustomPort.md delete mode 100644 docs/docs/auto-docs/setup/askForCustomPort/askForCustomPort/functions/reservedPortWarning.md delete mode 100644 docs/docs/auto-docs/setup/askForCustomPort/askForCustomPort/functions/validatePort.md delete mode 100644 docs/docs/auto-docs/setup/askForDocker/askForDocker/README.md delete mode 100644 docs/docs/auto-docs/setup/askForDocker/askForDocker/functions/askAndUpdateTalawaApiUrl.md delete mode 100644 docs/docs/auto-docs/setup/askForDocker/askForDocker/functions/askForDocker.md delete mode 100644 docs/docs/auto-docs/setup/askForTalawaApiUrl/askForTalawaApiUrl/README.md delete mode 100644 docs/docs/auto-docs/setup/askForTalawaApiUrl/askForTalawaApiUrl/functions/askForTalawaApiUrl.md delete mode 100644 docs/docs/auto-docs/setup/checkConnection/checkConnection/README.md delete mode 100644 docs/docs/auto-docs/setup/checkConnection/checkConnection/functions/checkConnection.md delete mode 100644 docs/docs/auto-docs/setup/checkEnvFile/checkEnvFile/README.md delete mode 100644 docs/docs/auto-docs/setup/checkEnvFile/checkEnvFile/functions/checkEnvFile.md delete mode 100644 docs/docs/auto-docs/setup/updateEnvFile/updateEnvFile/README.md delete mode 100644 docs/docs/auto-docs/setup/updateEnvFile/updateEnvFile/functions/default.md delete mode 100644 docs/docs/auto-docs/setup/validateRecaptcha/validateRecaptcha/README.md delete mode 100644 docs/docs/auto-docs/setup/validateRecaptcha/validateRecaptcha/functions/validateRecaptcha.md delete mode 100644 docs/docs/auto-docs/setupTests/README.md delete mode 100644 docs/docs/auto-docs/state/README.md delete mode 100644 docs/docs/auto-docs/state/action-creators/README.md delete mode 100644 docs/docs/auto-docs/state/action-creators/functions/installPlugin.md delete mode 100644 docs/docs/auto-docs/state/action-creators/functions/removePlugin.md delete mode 100644 docs/docs/auto-docs/state/action-creators/functions/updateInstalled.md delete mode 100644 docs/docs/auto-docs/state/action-creators/functions/updatePluginLinks.md delete mode 100644 docs/docs/auto-docs/state/action-creators/functions/updateTargets.md delete mode 100644 docs/docs/auto-docs/state/helpers/Action/README.md delete mode 100644 docs/docs/auto-docs/state/helpers/Action/interfaces/InterfaceAction.md delete mode 100644 docs/docs/auto-docs/state/hooks/README.md delete mode 100644 docs/docs/auto-docs/state/hooks/functions/useAppDispatch.md delete mode 100644 docs/docs/auto-docs/state/reducers/README.md delete mode 100644 docs/docs/auto-docs/state/reducers/functions/reducers.md delete mode 100644 docs/docs/auto-docs/state/reducers/pluginReducer/README.md delete mode 100644 docs/docs/auto-docs/state/reducers/pluginReducer/functions/default.md delete mode 100644 docs/docs/auto-docs/state/reducers/routesReducer/README.md delete mode 100644 docs/docs/auto-docs/state/reducers/routesReducer/functions/default.md delete mode 100644 docs/docs/auto-docs/state/reducers/routesReducer/type-aliases/ComponentType.md delete mode 100644 docs/docs/auto-docs/state/reducers/routesReducer/type-aliases/SubTargetType.md delete mode 100644 docs/docs/auto-docs/state/reducers/routesReducer/type-aliases/TargetsType.md delete mode 100644 docs/docs/auto-docs/state/reducers/type-aliases/RootState.md delete mode 100644 docs/docs/auto-docs/state/reducers/userRoutesReducer/README.md delete mode 100644 docs/docs/auto-docs/state/reducers/userRoutesReducer/functions/default.md delete mode 100644 docs/docs/auto-docs/state/reducers/userRoutesReducer/type-aliases/ComponentType.md delete mode 100644 docs/docs/auto-docs/state/reducers/userRoutesReducer/type-aliases/SubTargetType.md delete mode 100644 docs/docs/auto-docs/state/reducers/userRoutesReducer/type-aliases/TargetsType.md delete mode 100644 docs/docs/auto-docs/state/store/README.md delete mode 100644 docs/docs/auto-docs/state/store/type-aliases/AppDispatch.md delete mode 100644 docs/docs/auto-docs/state/store/variables/store.md delete mode 100644 docs/docs/auto-docs/subComponents/SortingButton/README.md delete mode 100644 docs/docs/auto-docs/subComponents/SortingButton/functions/default.md delete mode 100644 docs/docs/auto-docs/utils/StaticMockLink/README.md delete mode 100644 docs/docs/auto-docs/utils/StaticMockLink/classes/StaticMockLink.md delete mode 100644 docs/docs/auto-docs/utils/StaticMockLink/functions/mockSingleLink.md delete mode 100644 docs/docs/auto-docs/utils/StaticMockLink/interfaces/InterfaceMockApolloLink.md delete mode 100644 docs/docs/auto-docs/utils/chartToPdf/README.md delete mode 100644 docs/docs/auto-docs/utils/chartToPdf/functions/exportDemographicsToCSV.md delete mode 100644 docs/docs/auto-docs/utils/chartToPdf/functions/exportToCSV.md delete mode 100644 docs/docs/auto-docs/utils/chartToPdf/functions/exportTrendsToCSV.md delete mode 100644 docs/docs/auto-docs/utils/convertToBase64/README.md delete mode 100644 docs/docs/auto-docs/utils/convertToBase64/functions/default.md delete mode 100644 docs/docs/auto-docs/utils/currency/README.md delete mode 100644 docs/docs/auto-docs/utils/currency/variables/currencyOptions.md delete mode 100644 docs/docs/auto-docs/utils/currency/variables/currencySymbols.md delete mode 100644 docs/docs/auto-docs/utils/dateFormatter/README.md delete mode 100644 docs/docs/auto-docs/utils/dateFormatter/functions/formatDate.md delete mode 100644 docs/docs/auto-docs/utils/errorHandler/README.md delete mode 100644 docs/docs/auto-docs/utils/errorHandler/functions/errorHandler.md delete mode 100644 docs/docs/auto-docs/utils/fieldTypes/README.md delete mode 100644 docs/docs/auto-docs/utils/fieldTypes/variables/default.md delete mode 100644 docs/docs/auto-docs/utils/formEnumFields/README.md delete mode 100644 docs/docs/auto-docs/utils/formEnumFields/variables/countryOptions.md delete mode 100644 docs/docs/auto-docs/utils/formEnumFields/variables/educationGradeEnum.md delete mode 100644 docs/docs/auto-docs/utils/formEnumFields/variables/employmentStatusEnum.md delete mode 100644 docs/docs/auto-docs/utils/formEnumFields/variables/genderEnum.md delete mode 100644 docs/docs/auto-docs/utils/formEnumFields/variables/maritalStatusEnum.md delete mode 100644 docs/docs/auto-docs/utils/formEnumFields/variables/userRoleEnum.md delete mode 100644 docs/docs/auto-docs/utils/getOrganizationId/README.md delete mode 100644 docs/docs/auto-docs/utils/getOrganizationId/functions/default.md delete mode 100644 docs/docs/auto-docs/utils/getRefreshToken/README.md delete mode 100644 docs/docs/auto-docs/utils/getRefreshToken/functions/refreshToken.md delete mode 100644 docs/docs/auto-docs/utils/i18n/README.md delete mode 100644 docs/docs/auto-docs/utils/i18nForTest/README.md delete mode 100644 docs/docs/auto-docs/utils/interfaces/README.md delete mode 100644 docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceActionItemCategoryInfo.md delete mode 100644 docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceActionItemCategoryList.md delete mode 100644 docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceActionItemInfo.md delete mode 100644 docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceActionItemList.md delete mode 100644 docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceAddOnSpotAttendeeProps.md delete mode 100644 docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceAddress.md delete mode 100644 docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceAgendaItemCategoryInfo.md delete mode 100644 docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceAgendaItemCategoryList.md delete mode 100644 docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceAgendaItemInfo.md delete mode 100644 docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceAgendaItemList.md delete mode 100644 docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceBaseEvent.md delete mode 100644 docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceCampaignInfo.md delete mode 100644 docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceCreateFund.md delete mode 100644 docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceCreatePledge.md delete mode 100644 docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceCreateVolunteerGroup.md delete mode 100644 docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceCustomFieldData.md delete mode 100644 docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceEventVolunteerInfo.md delete mode 100644 docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceFormData.md delete mode 100644 docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceFundInfo.md delete mode 100644 docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceMapType.md delete mode 100644 docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceMemberInfo.md delete mode 100644 docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceMembersList.md delete mode 100644 docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceOrgConnectionInfoType.md delete mode 100644 docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceOrgConnectionType.md delete mode 100644 docs/docs/auto-docs/utils/interfaces/interfaces/InterfacePledgeInfo.md delete mode 100644 docs/docs/auto-docs/utils/interfaces/interfaces/InterfacePostCard.md delete mode 100644 docs/docs/auto-docs/utils/interfaces/interfaces/InterfacePostForm.md delete mode 100644 docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceQueryBlockPageMemberListItem.md delete mode 100644 docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceQueryFundCampaignsPledges.md delete mode 100644 docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceQueryMembershipRequestsListItem.md delete mode 100644 docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceQueryOrganizationAdvertisementListItem.md delete mode 100644 docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceQueryOrganizationEventListItem.md delete mode 100644 docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceQueryOrganizationFundCampaigns.md delete mode 100644 docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceQueryOrganizationListObject.md delete mode 100644 docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceQueryOrganizationPostListItem.md delete mode 100644 docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceQueryOrganizationUserTags.md delete mode 100644 docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceQueryOrganizationsListObject.md delete mode 100644 docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceQueryUserListItem.md delete mode 100644 docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceQueryUserTagChildTags.md delete mode 100644 docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceQueryUserTagsAssignedMembers.md delete mode 100644 docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceQueryUserTagsMembersToAssignTo.md delete mode 100644 docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceQueryVenueListItem.md delete mode 100644 docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceTagData.md delete mode 100644 docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceUserCampaign.md delete mode 100644 docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceUserEvents.md delete mode 100644 docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceUserInfo.md delete mode 100644 docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceUserType.md delete mode 100644 docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceVolunteerGroupInfo.md delete mode 100644 docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceVolunteerMembership.md delete mode 100644 docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceVolunteerRank.md delete mode 100644 docs/docs/auto-docs/utils/languages/README.md delete mode 100644 docs/docs/auto-docs/utils/languages/variables/languageArray.md delete mode 100644 docs/docs/auto-docs/utils/languages/variables/languages.md delete mode 100644 docs/docs/auto-docs/utils/linkValidator/README.md delete mode 100644 docs/docs/auto-docs/utils/linkValidator/functions/isValidLink.md delete mode 100644 docs/docs/auto-docs/utils/organizationTagsUtils/README.md delete mode 100644 docs/docs/auto-docs/utils/organizationTagsUtils/interfaces/InterfaceOrganizationSubTagsQuery.md delete mode 100644 docs/docs/auto-docs/utils/organizationTagsUtils/interfaces/InterfaceOrganizationTagsQuery.md delete mode 100644 docs/docs/auto-docs/utils/organizationTagsUtils/interfaces/InterfaceTagAssignedMembersQuery.md delete mode 100644 docs/docs/auto-docs/utils/organizationTagsUtils/interfaces/InterfaceTagUsersToAssignToQuery.md delete mode 100644 docs/docs/auto-docs/utils/organizationTagsUtils/type-aliases/SortedByType.md delete mode 100644 docs/docs/auto-docs/utils/organizationTagsUtils/type-aliases/TagActionType.md delete mode 100644 docs/docs/auto-docs/utils/organizationTagsUtils/variables/TAGS_QUERY_DATA_CHUNK_SIZE.md delete mode 100644 docs/docs/auto-docs/utils/organizationTagsUtils/variables/dataGridStyle.md delete mode 100644 docs/docs/auto-docs/utils/recurrenceUtils/README.md delete mode 100644 docs/docs/auto-docs/utils/recurrenceUtils/recurrenceConstants/README.md delete mode 100644 docs/docs/auto-docs/utils/recurrenceUtils/recurrenceConstants/variables/Days.md delete mode 100644 docs/docs/auto-docs/utils/recurrenceUtils/recurrenceConstants/variables/allInstances.md delete mode 100644 docs/docs/auto-docs/utils/recurrenceUtils/recurrenceConstants/variables/dayNames.md delete mode 100644 docs/docs/auto-docs/utils/recurrenceUtils/recurrenceConstants/variables/daysOptions.md delete mode 100644 docs/docs/auto-docs/utils/recurrenceUtils/recurrenceConstants/variables/endsAfter.md delete mode 100644 docs/docs/auto-docs/utils/recurrenceUtils/recurrenceConstants/variables/endsNever.md delete mode 100644 docs/docs/auto-docs/utils/recurrenceUtils/recurrenceConstants/variables/endsOn.md delete mode 100644 docs/docs/auto-docs/utils/recurrenceUtils/recurrenceConstants/variables/frequencies.md delete mode 100644 docs/docs/auto-docs/utils/recurrenceUtils/recurrenceConstants/variables/mondayToFriday.md delete mode 100644 docs/docs/auto-docs/utils/recurrenceUtils/recurrenceConstants/variables/monthNames.md delete mode 100644 docs/docs/auto-docs/utils/recurrenceUtils/recurrenceConstants/variables/recurrenceEndOptions.md delete mode 100644 docs/docs/auto-docs/utils/recurrenceUtils/recurrenceConstants/variables/recurringEventMutationOptions.md delete mode 100644 docs/docs/auto-docs/utils/recurrenceUtils/recurrenceConstants/variables/thisAndFollowingInstances.md delete mode 100644 docs/docs/auto-docs/utils/recurrenceUtils/recurrenceConstants/variables/thisInstance.md delete mode 100644 docs/docs/auto-docs/utils/recurrenceUtils/recurrenceConstants/variables/weekDayOccurences.md delete mode 100644 docs/docs/auto-docs/utils/recurrenceUtils/recurrenceTypes/README.md delete mode 100644 docs/docs/auto-docs/utils/recurrenceUtils/recurrenceTypes/enumerations/Frequency.md delete mode 100644 docs/docs/auto-docs/utils/recurrenceUtils/recurrenceTypes/enumerations/RecurrenceEndOption.md delete mode 100644 docs/docs/auto-docs/utils/recurrenceUtils/recurrenceTypes/enumerations/RecurringEventMutationType.md delete mode 100644 docs/docs/auto-docs/utils/recurrenceUtils/recurrenceTypes/enumerations/WeekDays.md delete mode 100644 docs/docs/auto-docs/utils/recurrenceUtils/recurrenceTypes/interfaces/InterfaceRecurrenceRule.md delete mode 100644 docs/docs/auto-docs/utils/recurrenceUtils/recurrenceTypes/interfaces/InterfaceRecurrenceRuleState.md delete mode 100644 docs/docs/auto-docs/utils/recurrenceUtils/recurrenceUtilityFunctions/README.md delete mode 100644 docs/docs/auto-docs/utils/recurrenceUtils/recurrenceUtilityFunctions/functions/getRecurrenceRuleText.md delete mode 100644 docs/docs/auto-docs/utils/recurrenceUtils/recurrenceUtilityFunctions/functions/getWeekDayOccurenceInMonth.md delete mode 100644 docs/docs/auto-docs/utils/recurrenceUtils/recurrenceUtilityFunctions/functions/hasRecurrenceRuleChanged.md delete mode 100644 docs/docs/auto-docs/utils/recurrenceUtils/recurrenceUtilityFunctions/functions/haveInstanceDatesChanged.md delete mode 100644 docs/docs/auto-docs/utils/recurrenceUtils/recurrenceUtilityFunctions/functions/isLastOccurenceOfWeekDay.md delete mode 100644 docs/docs/auto-docs/utils/timezoneUtils/README.md delete mode 100644 docs/docs/auto-docs/utils/timezoneUtils/dateTimeConfig/README.md delete mode 100644 docs/docs/auto-docs/utils/timezoneUtils/dateTimeConfig/variables/dateTimeFields.md delete mode 100644 docs/docs/auto-docs/utils/timezoneUtils/dateTimeMiddleware/README.md delete mode 100644 docs/docs/auto-docs/utils/timezoneUtils/dateTimeMiddleware/variables/requestMiddleware.md delete mode 100644 docs/docs/auto-docs/utils/timezoneUtils/dateTimeMiddleware/variables/responseMiddleware.md delete mode 100644 docs/docs/auto-docs/utils/useLocalstorage/README.md delete mode 100644 docs/docs/auto-docs/utils/useLocalstorage/functions/getItem.md delete mode 100644 docs/docs/auto-docs/utils/useLocalstorage/functions/getStorageKey.md delete mode 100644 docs/docs/auto-docs/utils/useLocalstorage/functions/removeItem.md delete mode 100644 docs/docs/auto-docs/utils/useLocalstorage/functions/setItem.md delete mode 100644 docs/docs/auto-docs/utils/useLocalstorage/functions/useLocalStorage.md delete mode 100644 docs/docs/auto-docs/utils/useSession/README.md delete mode 100644 docs/docs/auto-docs/utils/useSession/functions/default.md delete mode 100644 docs/docs/auto-docs/vite-env/README.md delete mode 100644 docs/docs/intro.md delete mode 100644 talawa-admin-docs/.nojekyll delete mode 100644 talawa-admin-docs/Dockerfile delete mode 100644 talawa-admin-docs/README.md delete mode 100644 talawa-admin-docs/classes/components_AddOn_support_services_Plugin_helper.default.md delete mode 100644 talawa-admin-docs/classes/components_AddOn_support_services_Render_helper.default.md delete mode 100644 talawa-admin-docs/enums/components_EventCalendar_EventCalendar.ViewType.md delete mode 100644 talawa-admin-docs/interfaces/components_CheckIn_types.InterfaceAttendeeCheckIn.md delete mode 100644 talawa-admin-docs/interfaces/components_CheckIn_types.InterfaceAttendeeQueryResponse.md delete mode 100644 talawa-admin-docs/interfaces/components_CheckIn_types.InterfaceModalProp.md delete mode 100644 talawa-admin-docs/interfaces/components_CheckIn_types.InterfaceTableCheckIn.md delete mode 100644 talawa-admin-docs/interfaces/components_CheckIn_types.InterfaceTableData.md delete mode 100644 talawa-admin-docs/interfaces/components_CheckIn_types.InterfaceUser.md delete mode 100644 talawa-admin-docs/interfaces/components_CollapsibleDropdown_CollapsibleDropdown.InterfaceCollapsibleDropdown.md delete mode 100644 talawa-admin-docs/interfaces/components_IconComponent_IconComponent.InterfaceIconComponent.md delete mode 100644 talawa-admin-docs/interfaces/components_LeftDrawerEvent_LeftDrawerEvent.InterfaceLeftDrawerProps.md delete mode 100644 talawa-admin-docs/interfaces/components_LeftDrawerEvent_LeftDrawerEventWrapper.InterfacePropType.md delete mode 100644 talawa-admin-docs/interfaces/components_LeftDrawerOrg_LeftDrawerOrg.InterfaceLeftDrawerProps.md delete mode 100644 talawa-admin-docs/interfaces/components_LeftDrawer_LeftDrawer.InterfaceLeftDrawerProps.md delete mode 100644 talawa-admin-docs/interfaces/components_OrgListCard_OrgListCard.InterfaceOrgListCardProps.md delete mode 100644 talawa-admin-docs/interfaces/components_OrgProfileFieldSettings_OrgProfileFieldSettings.InterfaceCustomFieldData.md delete mode 100644 talawa-admin-docs/interfaces/components_OrganizationDashCards_CardItem.InterfaceCardItem.md delete mode 100644 talawa-admin-docs/interfaces/components_OrganizationScreen_OrganizationScreen.InterfaceOrganizationScreenProps.md delete mode 100644 talawa-admin-docs/interfaces/components_SuperAdminScreen_SuperAdminScreen.InterfaceSuperAdminScreenProps.md delete mode 100644 talawa-admin-docs/interfaces/components_TableLoader_TableLoader.InterfaceTableLoader.md delete mode 100644 talawa-admin-docs/modules.md delete mode 100644 talawa-admin-docs/modules/components_AddOn_AddOn.md delete mode 100644 talawa-admin-docs/modules/components_AddOn_AddOn_test.md delete mode 100644 talawa-admin-docs/modules/components_AddOn_core_AddOnEntry_AddOnEntry.md delete mode 100644 talawa-admin-docs/modules/components_AddOn_core_AddOnEntry_AddOnEntryMocks.md delete mode 100644 talawa-admin-docs/modules/components_AddOn_core_AddOnEntry_AddOnEntry_test.md delete mode 100644 talawa-admin-docs/modules/components_AddOn_core_AddOnRegister_AddOnRegister.md delete mode 100644 talawa-admin-docs/modules/components_AddOn_core_AddOnRegister_AddOnRegister_test.md delete mode 100644 talawa-admin-docs/modules/components_AddOn_core_AddOnStore_AddOnStore.md delete mode 100644 talawa-admin-docs/modules/components_AddOn_core_AddOnStore_AddOnStore_test.md delete mode 100644 talawa-admin-docs/modules/components_AddOn_support_components_Action_Action.md delete mode 100644 talawa-admin-docs/modules/components_AddOn_support_components_Action_Action_test.md delete mode 100644 talawa-admin-docs/modules/components_AddOn_support_components_MainContent_MainContent.md delete mode 100644 talawa-admin-docs/modules/components_AddOn_support_components_MainContent_MainContent_test.md delete mode 100644 talawa-admin-docs/modules/components_AddOn_support_components_SidePanel_SidePanel.md delete mode 100644 talawa-admin-docs/modules/components_AddOn_support_components_SidePanel_SidePanel_test.md delete mode 100644 talawa-admin-docs/modules/components_AddOn_support_services_Plugin_helper.md delete mode 100644 talawa-admin-docs/modules/components_AddOn_support_services_Render_helper.md delete mode 100644 talawa-admin-docs/modules/components_Advertisements_Advertisements.md delete mode 100644 talawa-admin-docs/modules/components_Advertisements_Advertisements_test.md delete mode 100644 talawa-admin-docs/modules/components_Advertisements_core_AdvertisementEntry_AdvertisementEntry.md delete mode 100644 talawa-admin-docs/modules/components_Advertisements_core_AdvertisementEntry_AdvertisementEntry_test.md delete mode 100644 talawa-admin-docs/modules/components_Advertisements_core_AdvertisementRegister_AdvertisementRegister.md delete mode 100644 talawa-admin-docs/modules/components_Advertisements_core_AdvertisementRegister_AdvertisementRegister_test.md delete mode 100644 talawa-admin-docs/modules/components_ChangeLanguageDropdown_ChangeLanguageDropDown.md delete mode 100644 talawa-admin-docs/modules/components_ChangeLanguageDropdown_ChangeLanguageDropdown_test.md delete mode 100644 talawa-admin-docs/modules/components_CheckIn_CheckInModal.md delete mode 100644 talawa-admin-docs/modules/components_CheckIn_CheckInModal_test.md delete mode 100644 talawa-admin-docs/modules/components_CheckIn_CheckInWrapper.md delete mode 100644 talawa-admin-docs/modules/components_CheckIn_CheckInWrapper_test.md delete mode 100644 talawa-admin-docs/modules/components_CheckIn_TableRow.md delete mode 100644 talawa-admin-docs/modules/components_CheckIn_TableRow_test.md delete mode 100644 talawa-admin-docs/modules/components_CheckIn_mocks.md delete mode 100644 talawa-admin-docs/modules/components_CheckIn_tagTemplate.md delete mode 100644 talawa-admin-docs/modules/components_CheckIn_types.md delete mode 100644 talawa-admin-docs/modules/components_CollapsibleDropdown_CollapsibleDropdown.md delete mode 100644 talawa-admin-docs/modules/components_CollapsibleDropdown_CollapsibleDropdown_test.md delete mode 100644 talawa-admin-docs/modules/components_ContriStats_ContriStats.md delete mode 100644 talawa-admin-docs/modules/components_ContriStats_ContriStats_test.md delete mode 100644 talawa-admin-docs/modules/components_CurrentHourIndicator_CurrentHourIndicator.md delete mode 100644 talawa-admin-docs/modules/components_CurrentHourIndicator_CurrentHourIndicator_test.md delete mode 100644 talawa-admin-docs/modules/components_DeleteOrg_DeleteOrg.md delete mode 100644 talawa-admin-docs/modules/components_DeleteOrg_DeleteOrg_test.md delete mode 100644 talawa-admin-docs/modules/components_EditCustomFieldDropDown_EditCustomFieldDropDown.md delete mode 100644 talawa-admin-docs/modules/components_EditCustomFieldDropDown_EditCustomFieldDropDown_test.md delete mode 100644 talawa-admin-docs/modules/components_EventCalendar_EventCalendar.md delete mode 100644 talawa-admin-docs/modules/components_EventCalendar_EventCalendar_test.md delete mode 100644 talawa-admin-docs/modules/components_EventListCard_EventListCard.md delete mode 100644 talawa-admin-docs/modules/components_EventListCard_EventListCard_test.md delete mode 100644 talawa-admin-docs/modules/components_EventRegistrantsModal_EventRegistrantsModal.md delete mode 100644 talawa-admin-docs/modules/components_EventRegistrantsModal_EventRegistrantsModal_test.md delete mode 100644 talawa-admin-docs/modules/components_EventRegistrantsModal_EventRegistrantsWrapper.md delete mode 100644 talawa-admin-docs/modules/components_EventRegistrantsModal_EventRegistrantsWrapper_test.md delete mode 100644 talawa-admin-docs/modules/components_EventStats_EventStats.md delete mode 100644 talawa-admin-docs/modules/components_EventStats_EventStatsWrapper.md delete mode 100644 talawa-admin-docs/modules/components_EventStats_EventStatsWrapper_test.md delete mode 100644 talawa-admin-docs/modules/components_EventStats_EventStats_test.md delete mode 100644 talawa-admin-docs/modules/components_EventStats_Statistics_AverageRating.md delete mode 100644 talawa-admin-docs/modules/components_EventStats_Statistics_AverageRating_test.md delete mode 100644 talawa-admin-docs/modules/components_EventStats_Statistics_Feedback.md delete mode 100644 talawa-admin-docs/modules/components_EventStats_Statistics_Feedback_test.md delete mode 100644 talawa-admin-docs/modules/components_EventStats_Statistics_Review.md delete mode 100644 talawa-admin-docs/modules/components_EventStats_Statistics_Review_test.md delete mode 100644 talawa-admin-docs/modules/components_IconComponent_IconComponent.md delete mode 100644 talawa-admin-docs/modules/components_IconComponent_IconComponent_test.md delete mode 100644 talawa-admin-docs/modules/components_LeftDrawerEvent_LeftDrawerEvent.md delete mode 100644 talawa-admin-docs/modules/components_LeftDrawerEvent_LeftDrawerEventWrapper.md delete mode 100644 talawa-admin-docs/modules/components_LeftDrawerEvent_LeftDrawerEventWrapper_test.md delete mode 100644 talawa-admin-docs/modules/components_LeftDrawerEvent_LeftDrawerEvent_test.md delete mode 100644 talawa-admin-docs/modules/components_LeftDrawerOrg_LeftDrawerOrg.md delete mode 100644 talawa-admin-docs/modules/components_LeftDrawerOrg_LeftDrawerOrg_test.md delete mode 100644 talawa-admin-docs/modules/components_LeftDrawer_LeftDrawer.md delete mode 100644 talawa-admin-docs/modules/components_LeftDrawer_LeftDrawer_test.md delete mode 100644 talawa-admin-docs/modules/components_Loader_Loader.md delete mode 100644 talawa-admin-docs/modules/components_Loader_Loader_test.md delete mode 100644 talawa-admin-docs/modules/components_LoginPortalToggle_LoginPortalToggle.md delete mode 100644 talawa-admin-docs/modules/components_LoginPortalToggle_LoginPortalToggle_test.md delete mode 100644 talawa-admin-docs/modules/components_MemberRequestCard_MemberRequestCard.md delete mode 100644 talawa-admin-docs/modules/components_MemberRequestCard_MemberRequestCard_test.md delete mode 100644 talawa-admin-docs/modules/components_NotFound_NotFound.md delete mode 100644 talawa-admin-docs/modules/components_NotFound_NotFound_test.md delete mode 100644 talawa-admin-docs/modules/components_OrgAdminListCard_OrgAdminListCard.md delete mode 100644 talawa-admin-docs/modules/components_OrgAdminListCard_OrgAdminListCard_test.md delete mode 100644 talawa-admin-docs/modules/components_OrgContriCards_OrgContriCards.md delete mode 100644 talawa-admin-docs/modules/components_OrgContriCards_OrgContriCards_test.md delete mode 100644 talawa-admin-docs/modules/components_OrgDelete_OrgDelete.md delete mode 100644 talawa-admin-docs/modules/components_OrgDelete_OrgDelete_test.md delete mode 100644 talawa-admin-docs/modules/components_OrgListCard_OrgListCard.md delete mode 100644 talawa-admin-docs/modules/components_OrgListCard_OrgListCard_test.md delete mode 100644 talawa-admin-docs/modules/components_OrgPeopleListCard_OrgPeopleListCard.md delete mode 100644 talawa-admin-docs/modules/components_OrgPeopleListCard_OrgPeopleListCard_test.md delete mode 100644 talawa-admin-docs/modules/components_OrgPostCard_OrgPostCard.md delete mode 100644 talawa-admin-docs/modules/components_OrgPostCard_OrgPostCard_test.md delete mode 100644 talawa-admin-docs/modules/components_OrgProfileFieldSettings_OrgProfileFieldSettings.md delete mode 100644 talawa-admin-docs/modules/components_OrgProfileFieldSettings_OrgProfileFieldSettings_test.md delete mode 100644 talawa-admin-docs/modules/components_OrgUpdate_OrgUpdate.md delete mode 100644 talawa-admin-docs/modules/components_OrgUpdate_OrgUpdateMocks.md delete mode 100644 talawa-admin-docs/modules/components_OrgUpdate_OrgUpdate_test.md delete mode 100644 talawa-admin-docs/modules/components_OrganizationCardStart_OrganizationCardStart.md delete mode 100644 talawa-admin-docs/modules/components_OrganizationCardStart_OrganizationCardStart_test.md delete mode 100644 talawa-admin-docs/modules/components_OrganizationCard_OrganizationCard.md delete mode 100644 talawa-admin-docs/modules/components_OrganizationCard_OrganizationCard_test.md delete mode 100644 talawa-admin-docs/modules/components_OrganizationDashCards_CardItem.md delete mode 100644 talawa-admin-docs/modules/components_OrganizationDashCards_CardItemLoading.md delete mode 100644 talawa-admin-docs/modules/components_OrganizationDashCards_CardItem_test.md delete mode 100644 talawa-admin-docs/modules/components_OrganizationDashCards_DashboardCard.md delete mode 100644 talawa-admin-docs/modules/components_OrganizationDashCards_DashboardCardLoading.md delete mode 100644 talawa-admin-docs/modules/components_OrganizationDashCards_DashboardCard_test.md delete mode 100644 talawa-admin-docs/modules/components_OrganizationScreen_OrganizationScreen.md delete mode 100644 talawa-admin-docs/modules/components_OrganizationScreen_OrganizationScreen_test.md delete mode 100644 talawa-admin-docs/modules/components_PaginationList_PaginationList.md delete mode 100644 talawa-admin-docs/modules/components_Pagination_Pagination.md delete mode 100644 talawa-admin-docs/modules/components_Pagination_Pagination_test.md delete mode 100644 talawa-admin-docs/modules/components_SecuredRoute_SecuredRoute.md delete mode 100644 talawa-admin-docs/modules/components_SuperAdminScreen_SuperAdminScreen.md delete mode 100644 talawa-admin-docs/modules/components_SuperAdminScreen_SuperAdminScreen_test.md delete mode 100644 talawa-admin-docs/modules/components_TableLoader_TableLoader.md delete mode 100644 talawa-admin-docs/modules/components_TableLoader_TableLoader_test.md delete mode 100644 talawa-admin-docs/modules/components_UserListCard_UserListCard.md delete mode 100644 talawa-admin-docs/modules/components_UserListCard_UserListCard_test.md delete mode 100644 talawa-admin-docs/modules/components_UserPasswordUpdate_UserPasswordUpdate.md delete mode 100644 talawa-admin-docs/modules/components_UserPasswordUpdate_UserPasswordUpdate_test.md delete mode 100644 talawa-admin-docs/modules/components_UserPortal_ChatRoom_ChatRoom.md delete mode 100644 talawa-admin-docs/modules/components_UserPortal_ChatRoom_ChatRoom_test.md delete mode 100644 talawa-admin-docs/modules/components_UserPortal_CommentCard_CommentCard.md delete mode 100644 talawa-admin-docs/modules/components_UserPortal_CommentCard_CommentCard_test.md delete mode 100644 talawa-admin-docs/modules/components_UserPortal_ContactCard_ContactCard.md delete mode 100644 talawa-admin-docs/modules/components_UserPortal_ContactCard_ContactCard_test.md delete mode 100644 talawa-admin-docs/modules/components_UserPortal_DonationCard_DonationCard.md delete mode 100644 talawa-admin-docs/modules/components_UserPortal_EventCard_EventCard.md delete mode 100644 talawa-admin-docs/modules/components_UserPortal_EventCard_EventCard_test.md delete mode 100644 talawa-admin-docs/modules/components_UserPortal_Login_Login.md delete mode 100644 talawa-admin-docs/modules/components_UserPortal_Login_Login_test.md delete mode 100644 talawa-admin-docs/modules/components_UserPortal_OrganizationCard_OrganizationCard.md delete mode 100644 talawa-admin-docs/modules/components_UserPortal_OrganizationCard_OrganizationCard_test.md delete mode 100644 talawa-admin-docs/modules/components_UserPortal_OrganizationNavbar_OrganizationNavbar.md delete mode 100644 talawa-admin-docs/modules/components_UserPortal_OrganizationNavbar_OrganizationNavbar_test.md delete mode 100644 talawa-admin-docs/modules/components_UserPortal_OrganizationSidebar_OrganizationSidebar.md delete mode 100644 talawa-admin-docs/modules/components_UserPortal_OrganizationSidebar_OrganizationSidebar_test.md delete mode 100644 talawa-admin-docs/modules/components_UserPortal_PeopleCard_PeopleCard.md delete mode 100644 talawa-admin-docs/modules/components_UserPortal_PeopleCard_PeopleCard_test.md delete mode 100644 talawa-admin-docs/modules/components_UserPortal_PostCard_PostCard.md delete mode 100644 talawa-admin-docs/modules/components_UserPortal_PostCard_PostCard_test.md delete mode 100644 talawa-admin-docs/modules/components_UserPortal_PromotedPost_PromotedPost.md delete mode 100644 talawa-admin-docs/modules/components_UserPortal_PromotedPost_PromotedPost_test.md delete mode 100644 talawa-admin-docs/modules/components_UserPortal_Register_Register.md delete mode 100644 talawa-admin-docs/modules/components_UserPortal_Register_Register_test.md delete mode 100644 talawa-admin-docs/modules/components_UserPortal_SecuredRouteForUser_SecuredRouteForUser.md delete mode 100644 talawa-admin-docs/modules/components_UserPortal_SecuredRouteForUser_SecuredRouteForUser_test.md delete mode 100644 talawa-admin-docs/modules/components_UserPortal_UserNavbar_UserNavbar.md delete mode 100644 talawa-admin-docs/modules/components_UserPortal_UserNavbar_UserNavbar_test.md delete mode 100644 talawa-admin-docs/modules/components_UserPortal_UserSidebar_UserSidebar.md delete mode 100644 talawa-admin-docs/modules/components_UserPortal_UserSidebar_UserSidebar_test.md delete mode 100644 talawa-admin-docs/modules/components_UserUpdate_UserUpdate.md delete mode 100644 talawa-admin-docs/modules/components_UserUpdate_UserUpdate_test.md delete mode 100644 talawa-admin-docs/modules/components_UsersTableItem_UserTableItemMocks.md delete mode 100644 talawa-admin-docs/modules/components_UsersTableItem_UserTableItem_test.md delete mode 100644 talawa-admin-docs/modules/components_UsersTableItem_UsersTableItem.md delete mode 100644 talawa-admin-docs/modules/components_plugins.md delete mode 100644 talawa-admin-docs/modules/components_plugins_DummyPlugin2_DummyPlugin2.md delete mode 100644 talawa-admin-docs/modules/components_plugins_DummyPlugin2_DummyPlugin2_test.md delete mode 100644 talawa-admin-docs/modules/components_plugins_DummyPlugin_DummyPlugin.md delete mode 100644 talawa-admin-docs/modules/components_plugins_DummyPlugin_DummyPlugin_test.md delete mode 100644 talawa-admin-docs/modules/screens_BlockUser_BlockUser.md delete mode 100644 talawa-admin-docs/modules/screens_BlockUser_BlockUser_test.md delete mode 100644 talawa-admin-docs/modules/screens_EventDashboard_EventDashboard.md delete mode 100644 talawa-admin-docs/modules/screens_EventDashboard_EventDashboard_mocks.md delete mode 100644 talawa-admin-docs/modules/screens_EventDashboard_EventDashboard_test.md delete mode 100644 talawa-admin-docs/modules/screens_ForgotPassword_ForgotPassword.md delete mode 100644 talawa-admin-docs/modules/screens_ForgotPassword_ForgotPassword_test.md delete mode 100644 talawa-admin-docs/modules/screens_LoginPage_LoginPage.md delete mode 100644 talawa-admin-docs/modules/screens_LoginPage_LoginPage_test.md delete mode 100644 talawa-admin-docs/modules/screens_MemberDetail_MemberDetail.md delete mode 100644 talawa-admin-docs/modules/screens_MemberDetail_MemberDetail_test.md delete mode 100644 talawa-admin-docs/modules/screens_OrgContribution_OrgContribution.md delete mode 100644 talawa-admin-docs/modules/screens_OrgContribution_OrgContribution_test.md delete mode 100644 talawa-admin-docs/modules/screens_OrgList_OrgList.md delete mode 100644 talawa-admin-docs/modules/screens_OrgList_OrgListMocks.md delete mode 100644 talawa-admin-docs/modules/screens_OrgList_OrgList_test.md delete mode 100644 talawa-admin-docs/modules/screens_OrgList_OrganizationModal.md delete mode 100644 talawa-admin-docs/modules/screens_OrgPost_OrgPost.md delete mode 100644 talawa-admin-docs/modules/screens_OrgPost_OrgPost_test.md delete mode 100644 talawa-admin-docs/modules/screens_OrgSettings_OrgSettings.md delete mode 100644 talawa-admin-docs/modules/screens_OrgSettings_OrgSettings_test.md delete mode 100644 talawa-admin-docs/modules/screens_OrganizationDashboard_OrganizationDashboard.md delete mode 100644 talawa-admin-docs/modules/screens_OrganizationDashboard_OrganizationDashboardMocks.md delete mode 100644 talawa-admin-docs/modules/screens_OrganizationDashboard_OrganizationDashboard_test.md delete mode 100644 talawa-admin-docs/modules/screens_OrganizationEvents_OrganizationEvents.md delete mode 100644 talawa-admin-docs/modules/screens_OrganizationEvents_OrganizationEvents_test.md delete mode 100644 talawa-admin-docs/modules/screens_OrganizationPeople_OrganizationPeople.md delete mode 100644 talawa-admin-docs/modules/screens_OrganizationPeople_OrganizationPeople_test.md delete mode 100644 talawa-admin-docs/modules/screens_PageNotFound_PageNotFound.md delete mode 100644 talawa-admin-docs/modules/screens_PageNotFound_PageNotFound_test.md delete mode 100644 talawa-admin-docs/modules/screens_UserPortal_Chat_Chat.md delete mode 100644 talawa-admin-docs/modules/screens_UserPortal_Chat_Chat_test.md delete mode 100644 talawa-admin-docs/modules/screens_UserPortal_Donate_Donate.md delete mode 100644 talawa-admin-docs/modules/screens_UserPortal_Donate_Donate_test.md delete mode 100644 talawa-admin-docs/modules/screens_UserPortal_Events_Events.md delete mode 100644 talawa-admin-docs/modules/screens_UserPortal_Events_Events_test.md delete mode 100644 talawa-admin-docs/modules/screens_UserPortal_Home_Home.md delete mode 100644 talawa-admin-docs/modules/screens_UserPortal_Home_Home_test.md delete mode 100644 talawa-admin-docs/modules/screens_UserPortal_Organizations_Organizations.md delete mode 100644 talawa-admin-docs/modules/screens_UserPortal_Organizations_Organizations_test.md delete mode 100644 talawa-admin-docs/modules/screens_UserPortal_People_People.md delete mode 100644 talawa-admin-docs/modules/screens_UserPortal_People_People_test.md delete mode 100644 talawa-admin-docs/modules/screens_UserPortal_Settings_Settings.md delete mode 100644 talawa-admin-docs/modules/screens_UserPortal_Settings_Settings_test.md delete mode 100644 talawa-admin-docs/modules/screens_UserPortal_UserLoginPage_UserLoginPage.md delete mode 100644 talawa-admin-docs/modules/screens_UserPortal_UserLoginPage_UserLoginPage_test.md delete mode 100644 talawa-admin-docs/modules/screens_Users_Users.md delete mode 100644 talawa-admin-docs/modules/screens_Users_UsersMocks.md delete mode 100644 talawa-admin-docs/modules/screens_Users_Users_test.md diff --git a/3141 b/3141 deleted file mode 100644 index e69de29bb2..0000000000 diff --git a/docs/docs/auto-docs/App/README.md b/docs/docs/auto-docs/App/README.md deleted file mode 100644 index 9e85ae6693..0000000000 --- a/docs/docs/auto-docs/App/README.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../README.md) - -*** - -[talawa-admin](../modules.md) / App - -# App - -## Functions - -- [default](functions/default.md) diff --git a/docs/docs/auto-docs/App/functions/default.md b/docs/docs/auto-docs/App/functions/default.md deleted file mode 100644 index e3736aae90..0000000000 --- a/docs/docs/auto-docs/App/functions/default.md +++ /dev/null @@ -1,30 +0,0 @@ -[**talawa-admin**](../../README.md) - -*** - -[talawa-admin](../../modules.md) / [App](../README.md) / default - -# Function: default() - -> **default**(): `JSX.Element` - -Defined in: [src/App.tsx:74](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/App.tsx#L74) - -This is the main function for our application. It sets up all the routes and components, -defining how the user can navigate through the app. The function uses React Router's `Routes` -and `Route` components to map different URL paths to corresponding screens and components. - -## Important Details -- **UseEffect Hook**: This hook checks user authentication status using the `CHECK_AUTH` GraphQL query. -- **Plugins**: It dynamically loads additional routes for any installed plugins. -- **Routes**: - - The root route ("/") takes the user to the `LoginPage`. - - Protected routes are wrapped with the `SecuredRoute` component to ensure they are only accessible to authenticated users. - - Admin and Super Admin routes allow access to organization and user management screens. - - User portal routes allow end-users to interact with organizations, settings, chat, events, etc. - -## Returns - -`JSX.Element` - -The rendered routes and components of the application. diff --git a/docs/docs/auto-docs/Constant/constant/README.md b/docs/docs/auto-docs/Constant/constant/README.md deleted file mode 100644 index db1085e257..0000000000 --- a/docs/docs/auto-docs/Constant/constant/README.md +++ /dev/null @@ -1,16 +0,0 @@ -[**talawa-admin**](../../README.md) - -*** - -[talawa-admin](../../modules.md) / Constant/constant - -# Constant/constant - -## Variables - -- [AUTH\_TOKEN](variables/AUTH_TOKEN.md) -- [BACKEND\_URL](variables/BACKEND_URL.md) -- [REACT\_APP\_BACKEND\_WEBSOCKET\_URL](variables/REACT_APP_BACKEND_WEBSOCKET_URL.md) -- [REACT\_APP\_CUSTOM\_PORT](variables/REACT_APP_CUSTOM_PORT.md) -- [REACT\_APP\_USE\_RECAPTCHA](variables/REACT_APP_USE_RECAPTCHA.md) -- [RECAPTCHA\_SITE\_KEY](variables/RECAPTCHA_SITE_KEY.md) diff --git a/docs/docs/auto-docs/Constant/constant/variables/AUTH_TOKEN.md b/docs/docs/auto-docs/Constant/constant/variables/AUTH_TOKEN.md deleted file mode 100644 index d8c53b97f5..0000000000 --- a/docs/docs/auto-docs/Constant/constant/variables/AUTH_TOKEN.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / [Constant/constant](../README.md) / AUTH\_TOKEN - -# Variable: AUTH\_TOKEN - -> `const` **AUTH\_TOKEN**: `""` = `''` - -Defined in: [src/Constant/constant.ts:1](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/Constant/constant.ts#L1) diff --git a/docs/docs/auto-docs/Constant/constant/variables/BACKEND_URL.md b/docs/docs/auto-docs/Constant/constant/variables/BACKEND_URL.md deleted file mode 100644 index c2525d9ef8..0000000000 --- a/docs/docs/auto-docs/Constant/constant/variables/BACKEND_URL.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / [Constant/constant](../README.md) / BACKEND\_URL - -# Variable: BACKEND\_URL - -> `const` **BACKEND\_URL**: `string` = `process.env.REACT_APP_TALAWA_URL` - -Defined in: [src/Constant/constant.ts:2](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/Constant/constant.ts#L2) diff --git a/docs/docs/auto-docs/Constant/constant/variables/REACT_APP_BACKEND_WEBSOCKET_URL.md b/docs/docs/auto-docs/Constant/constant/variables/REACT_APP_BACKEND_WEBSOCKET_URL.md deleted file mode 100644 index 6e5fb458a6..0000000000 --- a/docs/docs/auto-docs/Constant/constant/variables/REACT_APP_BACKEND_WEBSOCKET_URL.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / [Constant/constant](../README.md) / REACT\_APP\_BACKEND\_WEBSOCKET\_URL - -# Variable: REACT\_APP\_BACKEND\_WEBSOCKET\_URL - -> `const` **REACT\_APP\_BACKEND\_WEBSOCKET\_URL**: `string` - -Defined in: [src/Constant/constant.ts:6](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/Constant/constant.ts#L6) diff --git a/docs/docs/auto-docs/Constant/constant/variables/REACT_APP_CUSTOM_PORT.md b/docs/docs/auto-docs/Constant/constant/variables/REACT_APP_CUSTOM_PORT.md deleted file mode 100644 index b4f9fd6fa7..0000000000 --- a/docs/docs/auto-docs/Constant/constant/variables/REACT_APP_CUSTOM_PORT.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / [Constant/constant](../README.md) / REACT\_APP\_CUSTOM\_PORT - -# Variable: REACT\_APP\_CUSTOM\_PORT - -> `const` **REACT\_APP\_CUSTOM\_PORT**: `string` = `process.env.PORT` - -Defined in: [src/Constant/constant.ts:5](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/Constant/constant.ts#L5) diff --git a/docs/docs/auto-docs/Constant/constant/variables/REACT_APP_USE_RECAPTCHA.md b/docs/docs/auto-docs/Constant/constant/variables/REACT_APP_USE_RECAPTCHA.md deleted file mode 100644 index ff2fc2cf2a..0000000000 --- a/docs/docs/auto-docs/Constant/constant/variables/REACT_APP_USE_RECAPTCHA.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / [Constant/constant](../README.md) / REACT\_APP\_USE\_RECAPTCHA - -# Variable: REACT\_APP\_USE\_RECAPTCHA - -> `const` **REACT\_APP\_USE\_RECAPTCHA**: `string` = `process.env.REACT_APP_USE_RECAPTCHA` - -Defined in: [src/Constant/constant.ts:4](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/Constant/constant.ts#L4) diff --git a/docs/docs/auto-docs/Constant/constant/variables/RECAPTCHA_SITE_KEY.md b/docs/docs/auto-docs/Constant/constant/variables/RECAPTCHA_SITE_KEY.md deleted file mode 100644 index 39c5097780..0000000000 --- a/docs/docs/auto-docs/Constant/constant/variables/RECAPTCHA_SITE_KEY.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / [Constant/constant](../README.md) / RECAPTCHA\_SITE\_KEY - -# Variable: RECAPTCHA\_SITE\_KEY - -> `const` **RECAPTCHA\_SITE\_KEY**: `string` = `process.env.REACT_APP_RECAPTCHA_SITE_KEY` - -Defined in: [src/Constant/constant.ts:3](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/Constant/constant.ts#L3) diff --git a/docs/docs/auto-docs/GraphQl/Mutations/ActionItemCategoryMutations/README.md b/docs/docs/auto-docs/GraphQl/Mutations/ActionItemCategoryMutations/README.md deleted file mode 100644 index 7a45a9c28a..0000000000 --- a/docs/docs/auto-docs/GraphQl/Mutations/ActionItemCategoryMutations/README.md +++ /dev/null @@ -1,12 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / GraphQl/Mutations/ActionItemCategoryMutations - -# GraphQl/Mutations/ActionItemCategoryMutations - -## Variables - -- [CREATE\_ACTION\_ITEM\_CATEGORY\_MUTATION](variables/CREATE_ACTION_ITEM_CATEGORY_MUTATION.md) -- [UPDATE\_ACTION\_ITEM\_CATEGORY\_MUTATION](variables/UPDATE_ACTION_ITEM_CATEGORY_MUTATION.md) diff --git a/docs/docs/auto-docs/GraphQl/Mutations/ActionItemCategoryMutations/variables/CREATE_ACTION_ITEM_CATEGORY_MUTATION.md b/docs/docs/auto-docs/GraphQl/Mutations/ActionItemCategoryMutations/variables/CREATE_ACTION_ITEM_CATEGORY_MUTATION.md deleted file mode 100644 index c6bbddc2ad..0000000000 --- a/docs/docs/auto-docs/GraphQl/Mutations/ActionItemCategoryMutations/variables/CREATE_ACTION_ITEM_CATEGORY_MUTATION.md +++ /dev/null @@ -1,25 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [GraphQl/Mutations/ActionItemCategoryMutations](../README.md) / CREATE\_ACTION\_ITEM\_CATEGORY\_MUTATION - -# Variable: CREATE\_ACTION\_ITEM\_CATEGORY\_MUTATION - -> `const` **CREATE\_ACTION\_ITEM\_CATEGORY\_MUTATION**: `DocumentNode` - -Defined in: [src/GraphQl/Mutations/ActionItemCategoryMutations.ts:11](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/GraphQl/Mutations/ActionItemCategoryMutations.ts#L11) - -GraphQL mutation to create an action item category. - -## Param - -Name of the ActionItemCategory. - -## Param - -Disabled status of the ActionItemCategory. - -## Param - -Organization to which the ActionItemCategory belongs. diff --git a/docs/docs/auto-docs/GraphQl/Mutations/ActionItemCategoryMutations/variables/UPDATE_ACTION_ITEM_CATEGORY_MUTATION.md b/docs/docs/auto-docs/GraphQl/Mutations/ActionItemCategoryMutations/variables/UPDATE_ACTION_ITEM_CATEGORY_MUTATION.md deleted file mode 100644 index f034fb9763..0000000000 --- a/docs/docs/auto-docs/GraphQl/Mutations/ActionItemCategoryMutations/variables/UPDATE_ACTION_ITEM_CATEGORY_MUTATION.md +++ /dev/null @@ -1,25 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [GraphQl/Mutations/ActionItemCategoryMutations](../README.md) / UPDATE\_ACTION\_ITEM\_CATEGORY\_MUTATION - -# Variable: UPDATE\_ACTION\_ITEM\_CATEGORY\_MUTATION - -> `const` **UPDATE\_ACTION\_ITEM\_CATEGORY\_MUTATION**: `DocumentNode` - -Defined in: [src/GraphQl/Mutations/ActionItemCategoryMutations.ts:35](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/GraphQl/Mutations/ActionItemCategoryMutations.ts#L35) - -GraphQL mutation to update an action item category. - -## Param - -The id of the ActionItemCategory to be updated. - -## Param - -Updated name of the ActionItemCategory. - -## Param - -Updated disabled status of the ActionItemCategory. diff --git a/docs/docs/auto-docs/GraphQl/Mutations/ActionItemMutations/README.md b/docs/docs/auto-docs/GraphQl/Mutations/ActionItemMutations/README.md deleted file mode 100644 index 999442ffe6..0000000000 --- a/docs/docs/auto-docs/GraphQl/Mutations/ActionItemMutations/README.md +++ /dev/null @@ -1,13 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / GraphQl/Mutations/ActionItemMutations - -# GraphQl/Mutations/ActionItemMutations - -## Variables - -- [CREATE\_ACTION\_ITEM\_MUTATION](variables/CREATE_ACTION_ITEM_MUTATION.md) -- [DELETE\_ACTION\_ITEM\_MUTATION](variables/DELETE_ACTION_ITEM_MUTATION.md) -- [UPDATE\_ACTION\_ITEM\_MUTATION](variables/UPDATE_ACTION_ITEM_MUTATION.md) diff --git a/docs/docs/auto-docs/GraphQl/Mutations/ActionItemMutations/variables/CREATE_ACTION_ITEM_MUTATION.md b/docs/docs/auto-docs/GraphQl/Mutations/ActionItemMutations/variables/CREATE_ACTION_ITEM_MUTATION.md deleted file mode 100644 index dcb8f69999..0000000000 --- a/docs/docs/auto-docs/GraphQl/Mutations/ActionItemMutations/variables/CREATE_ACTION_ITEM_MUTATION.md +++ /dev/null @@ -1,37 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [GraphQl/Mutations/ActionItemMutations](../README.md) / CREATE\_ACTION\_ITEM\_MUTATION - -# Variable: CREATE\_ACTION\_ITEM\_MUTATION - -> `const` **CREATE\_ACTION\_ITEM\_MUTATION**: `DocumentNode` - -Defined in: [src/GraphQl/Mutations/ActionItemMutations.ts:14](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/GraphQl/Mutations/ActionItemMutations.ts#L14) - -GraphQL mutation to create an action item. - -## Param - -ActionItemCategory to which the ActionItem is related. - -## Param - -User to whom the ActionItem is assigned. - -## Param - -Notes prior to completion. - -## Param - -Due date. - -## Param - -Event to which the ActionItem is related. - -## Param - -Hours allotted for the ActionItem. diff --git a/docs/docs/auto-docs/GraphQl/Mutations/ActionItemMutations/variables/DELETE_ACTION_ITEM_MUTATION.md b/docs/docs/auto-docs/GraphQl/Mutations/ActionItemMutations/variables/DELETE_ACTION_ITEM_MUTATION.md deleted file mode 100644 index 6818853ac7..0000000000 --- a/docs/docs/auto-docs/GraphQl/Mutations/ActionItemMutations/variables/DELETE_ACTION_ITEM_MUTATION.md +++ /dev/null @@ -1,17 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [GraphQl/Mutations/ActionItemMutations](../README.md) / DELETE\_ACTION\_ITEM\_MUTATION - -# Variable: DELETE\_ACTION\_ITEM\_MUTATION - -> `const` **DELETE\_ACTION\_ITEM\_MUTATION**: `DocumentNode` - -Defined in: [src/GraphQl/Mutations/ActionItemMutations.ts:88](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/GraphQl/Mutations/ActionItemMutations.ts#L88) - -GraphQL mutation to delete an action item. - -## Param - -Id of the ActionItem to be updated. diff --git a/docs/docs/auto-docs/GraphQl/Mutations/ActionItemMutations/variables/UPDATE_ACTION_ITEM_MUTATION.md b/docs/docs/auto-docs/GraphQl/Mutations/ActionItemMutations/variables/UPDATE_ACTION_ITEM_MUTATION.md deleted file mode 100644 index 8919c47ab4..0000000000 --- a/docs/docs/auto-docs/GraphQl/Mutations/ActionItemMutations/variables/UPDATE_ACTION_ITEM_MUTATION.md +++ /dev/null @@ -1,41 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [GraphQl/Mutations/ActionItemMutations](../README.md) / UPDATE\_ACTION\_ITEM\_MUTATION - -# Variable: UPDATE\_ACTION\_ITEM\_MUTATION - -> `const` **UPDATE\_ACTION\_ITEM\_MUTATION**: `DocumentNode` - -Defined in: [src/GraphQl/Mutations/ActionItemMutations.ts:52](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/GraphQl/Mutations/ActionItemMutations.ts#L52) - -GraphQL mutation to update an action item. - -## Param - -Id of the ActionItem to be updated. - -## Param - -User to whom the ActionItem is assigned. - -## Param - -Notes prior to completion. - -## Param - -Notes on completion. - -## Param - -Due date. - -## Param - -Completion date. - -## Param - -Whether the ActionItem has been completed. diff --git a/docs/docs/auto-docs/GraphQl/Mutations/AgendaCategoryMutations/README.md b/docs/docs/auto-docs/GraphQl/Mutations/AgendaCategoryMutations/README.md deleted file mode 100644 index 73883a2355..0000000000 --- a/docs/docs/auto-docs/GraphQl/Mutations/AgendaCategoryMutations/README.md +++ /dev/null @@ -1,13 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / GraphQl/Mutations/AgendaCategoryMutations - -# GraphQl/Mutations/AgendaCategoryMutations - -## Variables - -- [CREATE\_AGENDA\_ITEM\_CATEGORY\_MUTATION](variables/CREATE_AGENDA_ITEM_CATEGORY_MUTATION.md) -- [DELETE\_AGENDA\_ITEM\_CATEGORY\_MUTATION](variables/DELETE_AGENDA_ITEM_CATEGORY_MUTATION.md) -- [UPDATE\_AGENDA\_ITEM\_CATEGORY\_MUTATION](variables/UPDATE_AGENDA_ITEM_CATEGORY_MUTATION.md) diff --git a/docs/docs/auto-docs/GraphQl/Mutations/AgendaCategoryMutations/variables/CREATE_AGENDA_ITEM_CATEGORY_MUTATION.md b/docs/docs/auto-docs/GraphQl/Mutations/AgendaCategoryMutations/variables/CREATE_AGENDA_ITEM_CATEGORY_MUTATION.md deleted file mode 100644 index 63a322fa5e..0000000000 --- a/docs/docs/auto-docs/GraphQl/Mutations/AgendaCategoryMutations/variables/CREATE_AGENDA_ITEM_CATEGORY_MUTATION.md +++ /dev/null @@ -1,17 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [GraphQl/Mutations/AgendaCategoryMutations](../README.md) / CREATE\_AGENDA\_ITEM\_CATEGORY\_MUTATION - -# Variable: CREATE\_AGENDA\_ITEM\_CATEGORY\_MUTATION - -> `const` **CREATE\_AGENDA\_ITEM\_CATEGORY\_MUTATION**: `DocumentNode` - -Defined in: [src/GraphQl/Mutations/AgendaCategoryMutations.ts:9](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/GraphQl/Mutations/AgendaCategoryMutations.ts#L9) - -GraphQL mutation to create an agenda category. - -## Param - -Name, Description, OrganizationID of the AgendaCategory. diff --git a/docs/docs/auto-docs/GraphQl/Mutations/AgendaCategoryMutations/variables/DELETE_AGENDA_ITEM_CATEGORY_MUTATION.md b/docs/docs/auto-docs/GraphQl/Mutations/AgendaCategoryMutations/variables/DELETE_AGENDA_ITEM_CATEGORY_MUTATION.md deleted file mode 100644 index 1254947927..0000000000 --- a/docs/docs/auto-docs/GraphQl/Mutations/AgendaCategoryMutations/variables/DELETE_AGENDA_ITEM_CATEGORY_MUTATION.md +++ /dev/null @@ -1,17 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [GraphQl/Mutations/AgendaCategoryMutations](../README.md) / DELETE\_AGENDA\_ITEM\_CATEGORY\_MUTATION - -# Variable: DELETE\_AGENDA\_ITEM\_CATEGORY\_MUTATION - -> `const` **DELETE\_AGENDA\_ITEM\_CATEGORY\_MUTATION**: `DocumentNode` - -Defined in: [src/GraphQl/Mutations/AgendaCategoryMutations.ts:23](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/GraphQl/Mutations/AgendaCategoryMutations.ts#L23) - -GraphQL mutation to delete an agenda category. - -## Param - -The ID of the AgendaCategory to be deleted. diff --git a/docs/docs/auto-docs/GraphQl/Mutations/AgendaCategoryMutations/variables/UPDATE_AGENDA_ITEM_CATEGORY_MUTATION.md b/docs/docs/auto-docs/GraphQl/Mutations/AgendaCategoryMutations/variables/UPDATE_AGENDA_ITEM_CATEGORY_MUTATION.md deleted file mode 100644 index f1fcea8a9c..0000000000 --- a/docs/docs/auto-docs/GraphQl/Mutations/AgendaCategoryMutations/variables/UPDATE_AGENDA_ITEM_CATEGORY_MUTATION.md +++ /dev/null @@ -1,21 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [GraphQl/Mutations/AgendaCategoryMutations](../README.md) / UPDATE\_AGENDA\_ITEM\_CATEGORY\_MUTATION - -# Variable: UPDATE\_AGENDA\_ITEM\_CATEGORY\_MUTATION - -> `const` **UPDATE\_AGENDA\_ITEM\_CATEGORY\_MUTATION**: `DocumentNode` - -Defined in: [src/GraphQl/Mutations/AgendaCategoryMutations.ts:36](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/GraphQl/Mutations/AgendaCategoryMutations.ts#L36) - -GraphQL mutation to update an agenda category. - -## Param - -The ID of the AgendaCategory to be updated. - -## Param - -Updated Name, Description, OrganizationID of the AgendaCategory. diff --git a/docs/docs/auto-docs/GraphQl/Mutations/AgendaItemMutations/README.md b/docs/docs/auto-docs/GraphQl/Mutations/AgendaItemMutations/README.md deleted file mode 100644 index 2613bd3cdb..0000000000 --- a/docs/docs/auto-docs/GraphQl/Mutations/AgendaItemMutations/README.md +++ /dev/null @@ -1,13 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / GraphQl/Mutations/AgendaItemMutations - -# GraphQl/Mutations/AgendaItemMutations - -## Variables - -- [CREATE\_AGENDA\_ITEM\_MUTATION](variables/CREATE_AGENDA_ITEM_MUTATION.md) -- [DELETE\_AGENDA\_ITEM\_MUTATION](variables/DELETE_AGENDA_ITEM_MUTATION.md) -- [UPDATE\_AGENDA\_ITEM\_MUTATION](variables/UPDATE_AGENDA_ITEM_MUTATION.md) diff --git a/docs/docs/auto-docs/GraphQl/Mutations/AgendaItemMutations/variables/CREATE_AGENDA_ITEM_MUTATION.md b/docs/docs/auto-docs/GraphQl/Mutations/AgendaItemMutations/variables/CREATE_AGENDA_ITEM_MUTATION.md deleted file mode 100644 index 9ceca1b551..0000000000 --- a/docs/docs/auto-docs/GraphQl/Mutations/AgendaItemMutations/variables/CREATE_AGENDA_ITEM_MUTATION.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [GraphQl/Mutations/AgendaItemMutations](../README.md) / CREATE\_AGENDA\_ITEM\_MUTATION - -# Variable: CREATE\_AGENDA\_ITEM\_MUTATION - -> `const` **CREATE\_AGENDA\_ITEM\_MUTATION**: `DocumentNode` - -Defined in: [src/GraphQl/Mutations/AgendaItemMutations.ts:3](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/GraphQl/Mutations/AgendaItemMutations.ts#L3) diff --git a/docs/docs/auto-docs/GraphQl/Mutations/AgendaItemMutations/variables/DELETE_AGENDA_ITEM_MUTATION.md b/docs/docs/auto-docs/GraphQl/Mutations/AgendaItemMutations/variables/DELETE_AGENDA_ITEM_MUTATION.md deleted file mode 100644 index e3d064d060..0000000000 --- a/docs/docs/auto-docs/GraphQl/Mutations/AgendaItemMutations/variables/DELETE_AGENDA_ITEM_MUTATION.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [GraphQl/Mutations/AgendaItemMutations](../README.md) / DELETE\_AGENDA\_ITEM\_MUTATION - -# Variable: DELETE\_AGENDA\_ITEM\_MUTATION - -> `const` **DELETE\_AGENDA\_ITEM\_MUTATION**: `DocumentNode` - -Defined in: [src/GraphQl/Mutations/AgendaItemMutations.ts:12](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/GraphQl/Mutations/AgendaItemMutations.ts#L12) diff --git a/docs/docs/auto-docs/GraphQl/Mutations/AgendaItemMutations/variables/UPDATE_AGENDA_ITEM_MUTATION.md b/docs/docs/auto-docs/GraphQl/Mutations/AgendaItemMutations/variables/UPDATE_AGENDA_ITEM_MUTATION.md deleted file mode 100644 index 639914e569..0000000000 --- a/docs/docs/auto-docs/GraphQl/Mutations/AgendaItemMutations/variables/UPDATE_AGENDA_ITEM_MUTATION.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [GraphQl/Mutations/AgendaItemMutations](../README.md) / UPDATE\_AGENDA\_ITEM\_MUTATION - -# Variable: UPDATE\_AGENDA\_ITEM\_MUTATION - -> `const` **UPDATE\_AGENDA\_ITEM\_MUTATION**: `DocumentNode` - -Defined in: [src/GraphQl/Mutations/AgendaItemMutations.ts:20](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/GraphQl/Mutations/AgendaItemMutations.ts#L20) diff --git a/docs/docs/auto-docs/GraphQl/Mutations/CampaignMutation/README.md b/docs/docs/auto-docs/GraphQl/Mutations/CampaignMutation/README.md deleted file mode 100644 index 0927d577f0..0000000000 --- a/docs/docs/auto-docs/GraphQl/Mutations/CampaignMutation/README.md +++ /dev/null @@ -1,12 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / GraphQl/Mutations/CampaignMutation - -# GraphQl/Mutations/CampaignMutation - -## Variables - -- [CREATE\_CAMPAIGN\_MUTATION](variables/CREATE_CAMPAIGN_MUTATION.md) -- [UPDATE\_CAMPAIGN\_MUTATION](variables/UPDATE_CAMPAIGN_MUTATION.md) diff --git a/docs/docs/auto-docs/GraphQl/Mutations/CampaignMutation/variables/CREATE_CAMPAIGN_MUTATION.md b/docs/docs/auto-docs/GraphQl/Mutations/CampaignMutation/variables/CREATE_CAMPAIGN_MUTATION.md deleted file mode 100644 index 84120c38d2..0000000000 --- a/docs/docs/auto-docs/GraphQl/Mutations/CampaignMutation/variables/CREATE_CAMPAIGN_MUTATION.md +++ /dev/null @@ -1,41 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [GraphQl/Mutations/CampaignMutation](../README.md) / CREATE\_CAMPAIGN\_MUTATION - -# Variable: CREATE\_CAMPAIGN\_MUTATION - -> `const` **CREATE\_CAMPAIGN\_MUTATION**: `DocumentNode` - -Defined in: [src/GraphQl/Mutations/CampaignMutation.ts:15](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/GraphQl/Mutations/CampaignMutation.ts#L15) - -GraphQL mutation to create a new fund Campaign. - -## Param - -The name of the fund. - -## Param - -The fund ID the campaign is associated with. - -## Param - -The funding goal of the campaign. - -## Param - -The start date of the campaign. - -## Param - -The end date of the campaign. - -## Param - -The currency of the campaign. - -## Returns - -The ID of the created campaign. diff --git a/docs/docs/auto-docs/GraphQl/Mutations/CampaignMutation/variables/UPDATE_CAMPAIGN_MUTATION.md b/docs/docs/auto-docs/GraphQl/Mutations/CampaignMutation/variables/UPDATE_CAMPAIGN_MUTATION.md deleted file mode 100644 index e6d1c22145..0000000000 --- a/docs/docs/auto-docs/GraphQl/Mutations/CampaignMutation/variables/UPDATE_CAMPAIGN_MUTATION.md +++ /dev/null @@ -1,41 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [GraphQl/Mutations/CampaignMutation](../README.md) / UPDATE\_CAMPAIGN\_MUTATION - -# Variable: UPDATE\_CAMPAIGN\_MUTATION - -> `const` **UPDATE\_CAMPAIGN\_MUTATION**: `DocumentNode` - -Defined in: [src/GraphQl/Mutations/CampaignMutation.ts:53](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/GraphQl/Mutations/CampaignMutation.ts#L53) - -GraphQL mutation to update a fund Campaign. - -## Param - -The ID of the campaign being updated. - -## Param - -The name of the campaign. - -## Param - -The funding goal of the campaign. - -## Param - -The start date of the campaign. - -## Param - -The end date of the campaign. - -## Param - -The currency of the campaign. - -## Returns - -The ID of the updated campaign. diff --git a/docs/docs/auto-docs/GraphQl/Mutations/CommentMutations/README.md b/docs/docs/auto-docs/GraphQl/Mutations/CommentMutations/README.md deleted file mode 100644 index ca74abe9d3..0000000000 --- a/docs/docs/auto-docs/GraphQl/Mutations/CommentMutations/README.md +++ /dev/null @@ -1,13 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / GraphQl/Mutations/CommentMutations - -# GraphQl/Mutations/CommentMutations - -## Variables - -- [CREATE\_COMMENT\_POST](variables/CREATE_COMMENT_POST.md) -- [LIKE\_COMMENT](variables/LIKE_COMMENT.md) -- [UNLIKE\_COMMENT](variables/UNLIKE_COMMENT.md) diff --git a/docs/docs/auto-docs/GraphQl/Mutations/CommentMutations/variables/CREATE_COMMENT_POST.md b/docs/docs/auto-docs/GraphQl/Mutations/CommentMutations/variables/CREATE_COMMENT_POST.md deleted file mode 100644 index 58069361e8..0000000000 --- a/docs/docs/auto-docs/GraphQl/Mutations/CommentMutations/variables/CREATE_COMMENT_POST.md +++ /dev/null @@ -1,25 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [GraphQl/Mutations/CommentMutations](../README.md) / CREATE\_COMMENT\_POST - -# Variable: CREATE\_COMMENT\_POST - -> `const` **CREATE\_COMMENT\_POST**: `DocumentNode` - -Defined in: [src/GraphQl/Mutations/CommentMutations.ts:11](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/GraphQl/Mutations/CommentMutations.ts#L11) - -GraphQL mutation to create a new comment on a post. - -## Param - -The text content of the comment. - -## Param - -The ID of the post to which the comment is being added. - -## Returns - -The created comment object. diff --git a/docs/docs/auto-docs/GraphQl/Mutations/CommentMutations/variables/LIKE_COMMENT.md b/docs/docs/auto-docs/GraphQl/Mutations/CommentMutations/variables/LIKE_COMMENT.md deleted file mode 100644 index d430c1f9a9..0000000000 --- a/docs/docs/auto-docs/GraphQl/Mutations/CommentMutations/variables/LIKE_COMMENT.md +++ /dev/null @@ -1,21 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [GraphQl/Mutations/CommentMutations](../README.md) / LIKE\_COMMENT - -# Variable: LIKE\_COMMENT - -> `const` **LIKE\_COMMENT**: `DocumentNode` - -Defined in: [src/GraphQl/Mutations/CommentMutations.ts:37](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/GraphQl/Mutations/CommentMutations.ts#L37) - -GraphQL mutation to like a comment. - -## Param - -The ID of the comment to be liked. - -## Returns - -The liked comment object. diff --git a/docs/docs/auto-docs/GraphQl/Mutations/CommentMutations/variables/UNLIKE_COMMENT.md b/docs/docs/auto-docs/GraphQl/Mutations/CommentMutations/variables/UNLIKE_COMMENT.md deleted file mode 100644 index d3d8d0447e..0000000000 --- a/docs/docs/auto-docs/GraphQl/Mutations/CommentMutations/variables/UNLIKE_COMMENT.md +++ /dev/null @@ -1,21 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [GraphQl/Mutations/CommentMutations](../README.md) / UNLIKE\_COMMENT - -# Variable: UNLIKE\_COMMENT - -> `const` **UNLIKE\_COMMENT**: `DocumentNode` - -Defined in: [src/GraphQl/Mutations/CommentMutations.ts:52](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/GraphQl/Mutations/CommentMutations.ts#L52) - -GraphQL mutation to unlike a comment. - -## Param - -The ID of the comment to be unliked. - -## Returns - -The unliked comment object. diff --git a/docs/docs/auto-docs/GraphQl/Mutations/EventAttendeeMutations/README.md b/docs/docs/auto-docs/GraphQl/Mutations/EventAttendeeMutations/README.md deleted file mode 100644 index 7ab9483240..0000000000 --- a/docs/docs/auto-docs/GraphQl/Mutations/EventAttendeeMutations/README.md +++ /dev/null @@ -1,13 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / GraphQl/Mutations/EventAttendeeMutations - -# GraphQl/Mutations/EventAttendeeMutations - -## Variables - -- [ADD\_EVENT\_ATTENDEE](variables/ADD_EVENT_ATTENDEE.md) -- [MARK\_CHECKIN](variables/MARK_CHECKIN.md) -- [REMOVE\_EVENT\_ATTENDEE](variables/REMOVE_EVENT_ATTENDEE.md) diff --git a/docs/docs/auto-docs/GraphQl/Mutations/EventAttendeeMutations/variables/ADD_EVENT_ATTENDEE.md b/docs/docs/auto-docs/GraphQl/Mutations/EventAttendeeMutations/variables/ADD_EVENT_ATTENDEE.md deleted file mode 100644 index 80d6a79d57..0000000000 --- a/docs/docs/auto-docs/GraphQl/Mutations/EventAttendeeMutations/variables/ADD_EVENT_ATTENDEE.md +++ /dev/null @@ -1,25 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [GraphQl/Mutations/EventAttendeeMutations](../README.md) / ADD\_EVENT\_ATTENDEE - -# Variable: ADD\_EVENT\_ATTENDEE - -> `const` **ADD\_EVENT\_ATTENDEE**: `DocumentNode` - -Defined in: [src/GraphQl/Mutations/EventAttendeeMutations.ts:11](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/GraphQl/Mutations/EventAttendeeMutations.ts#L11) - -GraphQL mutation to add an attendee to an event. - -## Param - -The ID of the user being added as an attendee. - -## Param - -The ID of the event to which the user is being added as an attendee. - -## Returns - -The updated event object with the added attendee. diff --git a/docs/docs/auto-docs/GraphQl/Mutations/EventAttendeeMutations/variables/MARK_CHECKIN.md b/docs/docs/auto-docs/GraphQl/Mutations/EventAttendeeMutations/variables/MARK_CHECKIN.md deleted file mode 100644 index 558aec70f7..0000000000 --- a/docs/docs/auto-docs/GraphQl/Mutations/EventAttendeeMutations/variables/MARK_CHECKIN.md +++ /dev/null @@ -1,25 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [GraphQl/Mutations/EventAttendeeMutations](../README.md) / MARK\_CHECKIN - -# Variable: MARK\_CHECKIN - -> `const` **MARK\_CHECKIN**: `DocumentNode` - -Defined in: [src/GraphQl/Mutations/EventAttendeeMutations.ts:43](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/GraphQl/Mutations/EventAttendeeMutations.ts#L43) - -GraphQL mutation to mark a user's check-in at an event. - -## Param - -The ID of the user checking in. - -## Param - -The ID of the event at which the user is checking in. - -## Returns - -The updated event object with the user's check-in information. diff --git a/docs/docs/auto-docs/GraphQl/Mutations/EventAttendeeMutations/variables/REMOVE_EVENT_ATTENDEE.md b/docs/docs/auto-docs/GraphQl/Mutations/EventAttendeeMutations/variables/REMOVE_EVENT_ATTENDEE.md deleted file mode 100644 index ba01a01701..0000000000 --- a/docs/docs/auto-docs/GraphQl/Mutations/EventAttendeeMutations/variables/REMOVE_EVENT_ATTENDEE.md +++ /dev/null @@ -1,25 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [GraphQl/Mutations/EventAttendeeMutations](../README.md) / REMOVE\_EVENT\_ATTENDEE - -# Variable: REMOVE\_EVENT\_ATTENDEE - -> `const` **REMOVE\_EVENT\_ATTENDEE**: `DocumentNode` - -Defined in: [src/GraphQl/Mutations/EventAttendeeMutations.ts:27](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/GraphQl/Mutations/EventAttendeeMutations.ts#L27) - -GraphQL mutation to remove an attendee from an event. - -## Param - -The ID of the user being removed as an attendee. - -## Param - -The ID of the event from which the user is being removed as an attendee. - -## Returns - -The updated event object without the removed attendee. diff --git a/docs/docs/auto-docs/GraphQl/Mutations/EventVolunteerMutation/README.md b/docs/docs/auto-docs/GraphQl/Mutations/EventVolunteerMutation/README.md deleted file mode 100644 index 0d6a8f928c..0000000000 --- a/docs/docs/auto-docs/GraphQl/Mutations/EventVolunteerMutation/README.md +++ /dev/null @@ -1,17 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / GraphQl/Mutations/EventVolunteerMutation - -# GraphQl/Mutations/EventVolunteerMutation - -## Variables - -- [ADD\_VOLUNTEER](variables/ADD_VOLUNTEER.md) -- [CREATE\_VOLUNTEER\_GROUP](variables/CREATE_VOLUNTEER_GROUP.md) -- [CREATE\_VOLUNTEER\_MEMBERSHIP](variables/CREATE_VOLUNTEER_MEMBERSHIP.md) -- [DELETE\_VOLUNTEER](variables/DELETE_VOLUNTEER.md) -- [DELETE\_VOLUNTEER\_GROUP](variables/DELETE_VOLUNTEER_GROUP.md) -- [UPDATE\_VOLUNTEER\_GROUP](variables/UPDATE_VOLUNTEER_GROUP.md) -- [UPDATE\_VOLUNTEER\_MEMBERSHIP](variables/UPDATE_VOLUNTEER_MEMBERSHIP.md) diff --git a/docs/docs/auto-docs/GraphQl/Mutations/EventVolunteerMutation/variables/ADD_VOLUNTEER.md b/docs/docs/auto-docs/GraphQl/Mutations/EventVolunteerMutation/variables/ADD_VOLUNTEER.md deleted file mode 100644 index 0ed6b5e908..0000000000 --- a/docs/docs/auto-docs/GraphQl/Mutations/EventVolunteerMutation/variables/ADD_VOLUNTEER.md +++ /dev/null @@ -1,21 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [GraphQl/Mutations/EventVolunteerMutation](../README.md) / ADD\_VOLUNTEER - -# Variable: ADD\_VOLUNTEER - -> `const` **ADD\_VOLUNTEER**: `DocumentNode` - -Defined in: [src/GraphQl/Mutations/EventVolunteerMutation.ts:11](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/GraphQl/Mutations/EventVolunteerMutation.ts#L11) - -GraphQL mutation to create an event volunteer. - -## Param - -The data required to create an event volunteer. - -## Returns - -The ID of the created event volunteer. diff --git a/docs/docs/auto-docs/GraphQl/Mutations/EventVolunteerMutation/variables/CREATE_VOLUNTEER_GROUP.md b/docs/docs/auto-docs/GraphQl/Mutations/EventVolunteerMutation/variables/CREATE_VOLUNTEER_GROUP.md deleted file mode 100644 index 542e793c52..0000000000 --- a/docs/docs/auto-docs/GraphQl/Mutations/EventVolunteerMutation/variables/CREATE_VOLUNTEER_GROUP.md +++ /dev/null @@ -1,28 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [GraphQl/Mutations/EventVolunteerMutation](../README.md) / CREATE\_VOLUNTEER\_GROUP - -# Variable: CREATE\_VOLUNTEER\_GROUP - -> `const` **CREATE\_VOLUNTEER\_GROUP**: `DocumentNode` - -Defined in: [src/GraphQl/Mutations/EventVolunteerMutation.ts:48](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/GraphQl/Mutations/EventVolunteerMutation.ts#L48) - -GraphQL mutation to create an event volunteer group. - -## Param - -The data required to create an event volunteer group. - - data contains following fileds: - - eventId: string - - leaderId: string - - name: string - - description?: string - - volunteers: [string] - - volunteersRequired?: number - -## Returns - -The ID of the created event volunteer group. diff --git a/docs/docs/auto-docs/GraphQl/Mutations/EventVolunteerMutation/variables/CREATE_VOLUNTEER_MEMBERSHIP.md b/docs/docs/auto-docs/GraphQl/Mutations/EventVolunteerMutation/variables/CREATE_VOLUNTEER_MEMBERSHIP.md deleted file mode 100644 index 2c61b2385b..0000000000 --- a/docs/docs/auto-docs/GraphQl/Mutations/EventVolunteerMutation/variables/CREATE_VOLUNTEER_MEMBERSHIP.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [GraphQl/Mutations/EventVolunteerMutation](../README.md) / CREATE\_VOLUNTEER\_MEMBERSHIP - -# Variable: CREATE\_VOLUNTEER\_MEMBERSHIP - -> `const` **CREATE\_VOLUNTEER\_MEMBERSHIP**: `DocumentNode` - -Defined in: [src/GraphQl/Mutations/EventVolunteerMutation.ts:90](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/GraphQl/Mutations/EventVolunteerMutation.ts#L90) diff --git a/docs/docs/auto-docs/GraphQl/Mutations/EventVolunteerMutation/variables/DELETE_VOLUNTEER.md b/docs/docs/auto-docs/GraphQl/Mutations/EventVolunteerMutation/variables/DELETE_VOLUNTEER.md deleted file mode 100644 index 6a1b30fb86..0000000000 --- a/docs/docs/auto-docs/GraphQl/Mutations/EventVolunteerMutation/variables/DELETE_VOLUNTEER.md +++ /dev/null @@ -1,21 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [GraphQl/Mutations/EventVolunteerMutation](../README.md) / DELETE\_VOLUNTEER - -# Variable: DELETE\_VOLUNTEER - -> `const` **DELETE\_VOLUNTEER**: `DocumentNode` - -Defined in: [src/GraphQl/Mutations/EventVolunteerMutation.ts:26](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/GraphQl/Mutations/EventVolunteerMutation.ts#L26) - -GraphQL mutation to delete an event volunteer. - -## Param - -The ID of the event volunteer being deleted. - -## Returns - -The ID of the deleted event volunteer. diff --git a/docs/docs/auto-docs/GraphQl/Mutations/EventVolunteerMutation/variables/DELETE_VOLUNTEER_GROUP.md b/docs/docs/auto-docs/GraphQl/Mutations/EventVolunteerMutation/variables/DELETE_VOLUNTEER_GROUP.md deleted file mode 100644 index d21484cf3b..0000000000 --- a/docs/docs/auto-docs/GraphQl/Mutations/EventVolunteerMutation/variables/DELETE_VOLUNTEER_GROUP.md +++ /dev/null @@ -1,21 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [GraphQl/Mutations/EventVolunteerMutation](../README.md) / DELETE\_VOLUNTEER\_GROUP - -# Variable: DELETE\_VOLUNTEER\_GROUP - -> `const` **DELETE\_VOLUNTEER\_GROUP**: `DocumentNode` - -Defined in: [src/GraphQl/Mutations/EventVolunteerMutation.ts:82](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/GraphQl/Mutations/EventVolunteerMutation.ts#L82) - -GraphQL mutation to delete an event volunteer group. - -## Param - -The ID of the event volunteer group being deleted. - -## Returns - -The ID of the deleted event volunteer group. diff --git a/docs/docs/auto-docs/GraphQl/Mutations/EventVolunteerMutation/variables/UPDATE_VOLUNTEER_GROUP.md b/docs/docs/auto-docs/GraphQl/Mutations/EventVolunteerMutation/variables/UPDATE_VOLUNTEER_GROUP.md deleted file mode 100644 index 92b19ad143..0000000000 --- a/docs/docs/auto-docs/GraphQl/Mutations/EventVolunteerMutation/variables/UPDATE_VOLUNTEER_GROUP.md +++ /dev/null @@ -1,25 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [GraphQl/Mutations/EventVolunteerMutation](../README.md) / UPDATE\_VOLUNTEER\_GROUP - -# Variable: UPDATE\_VOLUNTEER\_GROUP - -> `const` **UPDATE\_VOLUNTEER\_GROUP**: `DocumentNode` - -Defined in: [src/GraphQl/Mutations/EventVolunteerMutation.ts:64](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/GraphQl/Mutations/EventVolunteerMutation.ts#L64) - -GraphQL mutation to update an event volunteer group. - -## Param - -The ID of the event volunteer group being updated. - -## Param - -The data required to update an event volunteer group. - -## Returns - -The ID of the updated event volunteer group. diff --git a/docs/docs/auto-docs/GraphQl/Mutations/EventVolunteerMutation/variables/UPDATE_VOLUNTEER_MEMBERSHIP.md b/docs/docs/auto-docs/GraphQl/Mutations/EventVolunteerMutation/variables/UPDATE_VOLUNTEER_MEMBERSHIP.md deleted file mode 100644 index c416913a6b..0000000000 --- a/docs/docs/auto-docs/GraphQl/Mutations/EventVolunteerMutation/variables/UPDATE_VOLUNTEER_MEMBERSHIP.md +++ /dev/null @@ -1,25 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [GraphQl/Mutations/EventVolunteerMutation](../README.md) / UPDATE\_VOLUNTEER\_MEMBERSHIP - -# Variable: UPDATE\_VOLUNTEER\_MEMBERSHIP - -> `const` **UPDATE\_VOLUNTEER\_MEMBERSHIP**: `DocumentNode` - -Defined in: [src/GraphQl/Mutations/EventVolunteerMutation.ts:106](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/GraphQl/Mutations/EventVolunteerMutation.ts#L106) - -GraphQL mutation to update an event volunteer group. - -## Param - -The ID of the event volunteer group being updated. - -## Param - -The data required to update an event volunteer group. - -## Returns - -The ID of the updated event volunteer group. diff --git a/docs/docs/auto-docs/GraphQl/Mutations/FundMutation/README.md b/docs/docs/auto-docs/GraphQl/Mutations/FundMutation/README.md deleted file mode 100644 index b44cfe6f2c..0000000000 --- a/docs/docs/auto-docs/GraphQl/Mutations/FundMutation/README.md +++ /dev/null @@ -1,12 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / GraphQl/Mutations/FundMutation - -# GraphQl/Mutations/FundMutation - -## Variables - -- [CREATE\_FUND\_MUTATION](variables/CREATE_FUND_MUTATION.md) -- [UPDATE\_FUND\_MUTATION](variables/UPDATE_FUND_MUTATION.md) diff --git a/docs/docs/auto-docs/GraphQl/Mutations/FundMutation/variables/CREATE_FUND_MUTATION.md b/docs/docs/auto-docs/GraphQl/Mutations/FundMutation/variables/CREATE_FUND_MUTATION.md deleted file mode 100644 index b6a523e929..0000000000 --- a/docs/docs/auto-docs/GraphQl/Mutations/FundMutation/variables/CREATE_FUND_MUTATION.md +++ /dev/null @@ -1,41 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [GraphQl/Mutations/FundMutation](../README.md) / CREATE\_FUND\_MUTATION - -# Variable: CREATE\_FUND\_MUTATION - -> `const` **CREATE\_FUND\_MUTATION**: `DocumentNode` - -Defined in: [src/GraphQl/Mutations/FundMutation.ts:14](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/GraphQl/Mutations/FundMutation.ts#L14) - -GraphQL mutation to create a new fund. - -## Param - -The name of the fund. - -## Param - -The organization ID the fund is associated with. - -## Param - -The reference number of the fund. - -## Param - -Whether the fund is tax deductible. - -## Param - -Whether the fund is archived. - -## Param - -Whether the fund is the default. - -## Returns - -The ID of the created fund. diff --git a/docs/docs/auto-docs/GraphQl/Mutations/FundMutation/variables/UPDATE_FUND_MUTATION.md b/docs/docs/auto-docs/GraphQl/Mutations/FundMutation/variables/UPDATE_FUND_MUTATION.md deleted file mode 100644 index 98dc36ac86..0000000000 --- a/docs/docs/auto-docs/GraphQl/Mutations/FundMutation/variables/UPDATE_FUND_MUTATION.md +++ /dev/null @@ -1,41 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [GraphQl/Mutations/FundMutation](../README.md) / UPDATE\_FUND\_MUTATION - -# Variable: UPDATE\_FUND\_MUTATION - -> `const` **UPDATE\_FUND\_MUTATION**: `DocumentNode` - -Defined in: [src/GraphQl/Mutations/FundMutation.ts:49](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/GraphQl/Mutations/FundMutation.ts#L49) - -GraphQL mutation to update a fund. - -## Param - -The ID of the fund being updated. - -## Param - -The name of the fund. - -## Param - -The reference number of the fund. - -## Param - -Whether the fund is tax deductible. - -## Param - -Whether the fund is archived. - -## Param - -Whether the fund is the default. - -## Returns - -The ID of the updated fund. diff --git a/docs/docs/auto-docs/GraphQl/Mutations/OrganizationMutations/README.md b/docs/docs/auto-docs/GraphQl/Mutations/OrganizationMutations/README.md deleted file mode 100644 index 6957aa030d..0000000000 --- a/docs/docs/auto-docs/GraphQl/Mutations/OrganizationMutations/README.md +++ /dev/null @@ -1,27 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / GraphQl/Mutations/OrganizationMutations - -# GraphQl/Mutations/OrganizationMutations - -## Variables - -- [ADD\_CUSTOM\_FIELD](variables/ADD_CUSTOM_FIELD.md) -- [ADD\_USER\_TO\_GROUP\_CHAT](variables/ADD_USER_TO_GROUP_CHAT.md) -- [CANCEL\_MEMBERSHIP\_REQUEST](variables/CANCEL_MEMBERSHIP_REQUEST.md) -- [CREATE\_CHAT](variables/CREATE_CHAT.md) -- [CREATE\_SAMPLE\_ORGANIZATION\_MUTATION](variables/CREATE_SAMPLE_ORGANIZATION_MUTATION.md) -- [EDIT\_CHAT\_MESSAGE](variables/EDIT_CHAT_MESSAGE.md) -- [JOIN\_PUBLIC\_ORGANIZATION](variables/JOIN_PUBLIC_ORGANIZATION.md) -- [MARK\_CHAT\_MESSAGES\_AS\_READ](variables/MARK_CHAT_MESSAGES_AS_READ.md) -- [MESSAGE\_SENT\_TO\_CHAT](variables/MESSAGE_SENT_TO_CHAT.md) -- [PLUGIN\_SUBSCRIPTION](variables/PLUGIN_SUBSCRIPTION.md) -- [REMOVE\_CUSTOM\_FIELD](variables/REMOVE_CUSTOM_FIELD.md) -- [REMOVE\_SAMPLE\_ORGANIZATION\_MUTATION](variables/REMOVE_SAMPLE_ORGANIZATION_MUTATION.md) -- [SEND\_MEMBERSHIP\_REQUEST](variables/SEND_MEMBERSHIP_REQUEST.md) -- [SEND\_MESSAGE\_TO\_CHAT](variables/SEND_MESSAGE_TO_CHAT.md) -- [TOGGLE\_PINNED\_POST](variables/TOGGLE_PINNED_POST.md) -- [UPDATE\_CHAT](variables/UPDATE_CHAT.md) -- [UPDATE\_USER\_ROLE\_IN\_ORG\_MUTATION](variables/UPDATE_USER_ROLE_IN_ORG_MUTATION.md) diff --git a/docs/docs/auto-docs/GraphQl/Mutations/OrganizationMutations/variables/ADD_CUSTOM_FIELD.md b/docs/docs/auto-docs/GraphQl/Mutations/OrganizationMutations/variables/ADD_CUSTOM_FIELD.md deleted file mode 100644 index 934541cba8..0000000000 --- a/docs/docs/auto-docs/GraphQl/Mutations/OrganizationMutations/variables/ADD_CUSTOM_FIELD.md +++ /dev/null @@ -1,29 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [GraphQl/Mutations/OrganizationMutations](../README.md) / ADD\_CUSTOM\_FIELD - -# Variable: ADD\_CUSTOM\_FIELD - -> `const` **ADD\_CUSTOM\_FIELD**: `DocumentNode` - -Defined in: [src/GraphQl/Mutations/OrganizationMutations.ts:237](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/GraphQl/Mutations/OrganizationMutations.ts#L237) - -GraphQL mutation to add a custom field to an organization. - -## Param - -The ID of the organization where the custom field is being added. - -## Param - -The type of the custom field (e.g., String, Number). - -## Param - -The name of the custom field. - -## Returns - -The added organization custom field object. diff --git a/docs/docs/auto-docs/GraphQl/Mutations/OrganizationMutations/variables/ADD_USER_TO_GROUP_CHAT.md b/docs/docs/auto-docs/GraphQl/Mutations/OrganizationMutations/variables/ADD_USER_TO_GROUP_CHAT.md deleted file mode 100644 index 7ac08132e7..0000000000 --- a/docs/docs/auto-docs/GraphQl/Mutations/OrganizationMutations/variables/ADD_USER_TO_GROUP_CHAT.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [GraphQl/Mutations/OrganizationMutations](../README.md) / ADD\_USER\_TO\_GROUP\_CHAT - -# Variable: ADD\_USER\_TO\_GROUP\_CHAT - -> `const` **ADD\_USER\_TO\_GROUP\_CHAT**: `DocumentNode` - -Defined in: [src/GraphQl/Mutations/OrganizationMutations.ts:82](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/GraphQl/Mutations/OrganizationMutations.ts#L82) diff --git a/docs/docs/auto-docs/GraphQl/Mutations/OrganizationMutations/variables/CANCEL_MEMBERSHIP_REQUEST.md b/docs/docs/auto-docs/GraphQl/Mutations/OrganizationMutations/variables/CANCEL_MEMBERSHIP_REQUEST.md deleted file mode 100644 index 1250aa1de0..0000000000 --- a/docs/docs/auto-docs/GraphQl/Mutations/OrganizationMutations/variables/CANCEL_MEMBERSHIP_REQUEST.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [GraphQl/Mutations/OrganizationMutations](../README.md) / CANCEL\_MEMBERSHIP\_REQUEST - -# Variable: CANCEL\_MEMBERSHIP\_REQUEST - -> `const` **CANCEL\_MEMBERSHIP\_REQUEST**: `DocumentNode` - -Defined in: [src/GraphQl/Mutations/OrganizationMutations.ts:295](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/GraphQl/Mutations/OrganizationMutations.ts#L295) diff --git a/docs/docs/auto-docs/GraphQl/Mutations/OrganizationMutations/variables/CREATE_CHAT.md b/docs/docs/auto-docs/GraphQl/Mutations/OrganizationMutations/variables/CREATE_CHAT.md deleted file mode 100644 index d7f66729e1..0000000000 --- a/docs/docs/auto-docs/GraphQl/Mutations/OrganizationMutations/variables/CREATE_CHAT.md +++ /dev/null @@ -1,25 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [GraphQl/Mutations/OrganizationMutations](../README.md) / CREATE\_CHAT - -# Variable: CREATE\_CHAT - -> `const` **CREATE\_CHAT**: `DocumentNode` - -Defined in: [src/GraphQl/Mutations/OrganizationMutations.ts:60](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/GraphQl/Mutations/OrganizationMutations.ts#L60) - -GraphQL mutation to create a chat between users in an organization. - -## Param - -An array of user IDs participating in the direct chat. - -## Param - -The ID of the organization where the direct chat is created. - -## Returns - -The created direct chat object. diff --git a/docs/docs/auto-docs/GraphQl/Mutations/OrganizationMutations/variables/CREATE_SAMPLE_ORGANIZATION_MUTATION.md b/docs/docs/auto-docs/GraphQl/Mutations/OrganizationMutations/variables/CREATE_SAMPLE_ORGANIZATION_MUTATION.md deleted file mode 100644 index b72af166f8..0000000000 --- a/docs/docs/auto-docs/GraphQl/Mutations/OrganizationMutations/variables/CREATE_SAMPLE_ORGANIZATION_MUTATION.md +++ /dev/null @@ -1,17 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [GraphQl/Mutations/OrganizationMutations](../README.md) / CREATE\_SAMPLE\_ORGANIZATION\_MUTATION - -# Variable: CREATE\_SAMPLE\_ORGANIZATION\_MUTATION - -> `const` **CREATE\_SAMPLE\_ORGANIZATION\_MUTATION**: `DocumentNode` - -Defined in: [src/GraphQl/Mutations/OrganizationMutations.ts:34](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/GraphQl/Mutations/OrganizationMutations.ts#L34) - -GraphQL mutation to create a sample organization. - -## Returns - -The created sample organization object. diff --git a/docs/docs/auto-docs/GraphQl/Mutations/OrganizationMutations/variables/EDIT_CHAT_MESSAGE.md b/docs/docs/auto-docs/GraphQl/Mutations/OrganizationMutations/variables/EDIT_CHAT_MESSAGE.md deleted file mode 100644 index 2b602547e5..0000000000 --- a/docs/docs/auto-docs/GraphQl/Mutations/OrganizationMutations/variables/EDIT_CHAT_MESSAGE.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [GraphQl/Mutations/OrganizationMutations](../README.md) / EDIT\_CHAT\_MESSAGE - -# Variable: EDIT\_CHAT\_MESSAGE - -> `const` **EDIT\_CHAT\_MESSAGE**: `DocumentNode` - -Defined in: [src/GraphQl/Mutations/OrganizationMutations.ts:106](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/GraphQl/Mutations/OrganizationMutations.ts#L106) diff --git a/docs/docs/auto-docs/GraphQl/Mutations/OrganizationMutations/variables/JOIN_PUBLIC_ORGANIZATION.md b/docs/docs/auto-docs/GraphQl/Mutations/OrganizationMutations/variables/JOIN_PUBLIC_ORGANIZATION.md deleted file mode 100644 index 6d51a90b2a..0000000000 --- a/docs/docs/auto-docs/GraphQl/Mutations/OrganizationMutations/variables/JOIN_PUBLIC_ORGANIZATION.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [GraphQl/Mutations/OrganizationMutations](../README.md) / JOIN\_PUBLIC\_ORGANIZATION - -# Variable: JOIN\_PUBLIC\_ORGANIZATION - -> `const` **JOIN\_PUBLIC\_ORGANIZATION**: `DocumentNode` - -Defined in: [src/GraphQl/Mutations/OrganizationMutations.ts:287](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/GraphQl/Mutations/OrganizationMutations.ts#L287) diff --git a/docs/docs/auto-docs/GraphQl/Mutations/OrganizationMutations/variables/MARK_CHAT_MESSAGES_AS_READ.md b/docs/docs/auto-docs/GraphQl/Mutations/OrganizationMutations/variables/MARK_CHAT_MESSAGES_AS_READ.md deleted file mode 100644 index b48892d0a1..0000000000 --- a/docs/docs/auto-docs/GraphQl/Mutations/OrganizationMutations/variables/MARK_CHAT_MESSAGES_AS_READ.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [GraphQl/Mutations/OrganizationMutations](../README.md) / MARK\_CHAT\_MESSAGES\_AS\_READ - -# Variable: MARK\_CHAT\_MESSAGES\_AS\_READ - -> `const` **MARK\_CHAT\_MESSAGES\_AS\_READ**: `DocumentNode` - -Defined in: [src/GraphQl/Mutations/OrganizationMutations.ts:90](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/GraphQl/Mutations/OrganizationMutations.ts#L90) diff --git a/docs/docs/auto-docs/GraphQl/Mutations/OrganizationMutations/variables/MESSAGE_SENT_TO_CHAT.md b/docs/docs/auto-docs/GraphQl/Mutations/OrganizationMutations/variables/MESSAGE_SENT_TO_CHAT.md deleted file mode 100644 index 37f4a2fa42..0000000000 --- a/docs/docs/auto-docs/GraphQl/Mutations/OrganizationMutations/variables/MESSAGE_SENT_TO_CHAT.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [GraphQl/Mutations/OrganizationMutations](../README.md) / MESSAGE\_SENT\_TO\_CHAT - -# Variable: MESSAGE\_SENT\_TO\_CHAT - -> `const` **MESSAGE\_SENT\_TO\_CHAT**: `DocumentNode` - -Defined in: [src/GraphQl/Mutations/OrganizationMutations.ts:164](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/GraphQl/Mutations/OrganizationMutations.ts#L164) diff --git a/docs/docs/auto-docs/GraphQl/Mutations/OrganizationMutations/variables/PLUGIN_SUBSCRIPTION.md b/docs/docs/auto-docs/GraphQl/Mutations/OrganizationMutations/variables/PLUGIN_SUBSCRIPTION.md deleted file mode 100644 index 1e7fac9ae2..0000000000 --- a/docs/docs/auto-docs/GraphQl/Mutations/OrganizationMutations/variables/PLUGIN_SUBSCRIPTION.md +++ /dev/null @@ -1,17 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [GraphQl/Mutations/OrganizationMutations](../README.md) / PLUGIN\_SUBSCRIPTION - -# Variable: PLUGIN\_SUBSCRIPTION - -> `const` **PLUGIN\_SUBSCRIPTION**: `DocumentNode` - -Defined in: [src/GraphQl/Mutations/OrganizationMutations.ts:202](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/GraphQl/Mutations/OrganizationMutations.ts#L202) - -GraphQL subscription to listen for updates on plugins. - -## Returns - -An object containing information about the updated plugin. diff --git a/docs/docs/auto-docs/GraphQl/Mutations/OrganizationMutations/variables/REMOVE_CUSTOM_FIELD.md b/docs/docs/auto-docs/GraphQl/Mutations/OrganizationMutations/variables/REMOVE_CUSTOM_FIELD.md deleted file mode 100644 index 56a293f29d..0000000000 --- a/docs/docs/auto-docs/GraphQl/Mutations/OrganizationMutations/variables/REMOVE_CUSTOM_FIELD.md +++ /dev/null @@ -1,25 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [GraphQl/Mutations/OrganizationMutations](../README.md) / REMOVE\_CUSTOM\_FIELD - -# Variable: REMOVE\_CUSTOM\_FIELD - -> `const` **REMOVE\_CUSTOM\_FIELD**: `DocumentNode` - -Defined in: [src/GraphQl/Mutations/OrganizationMutations.ts:260](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/GraphQl/Mutations/OrganizationMutations.ts#L260) - -GraphQL mutation to remove a custom field from an organization. - -## Param - -The ID of the organization from which the custom field is being removed. - -## Param - -The ID of the custom field to be removed. - -## Returns - -The removed organization custom field object. diff --git a/docs/docs/auto-docs/GraphQl/Mutations/OrganizationMutations/variables/REMOVE_SAMPLE_ORGANIZATION_MUTATION.md b/docs/docs/auto-docs/GraphQl/Mutations/OrganizationMutations/variables/REMOVE_SAMPLE_ORGANIZATION_MUTATION.md deleted file mode 100644 index 8fe5ddafee..0000000000 --- a/docs/docs/auto-docs/GraphQl/Mutations/OrganizationMutations/variables/REMOVE_SAMPLE_ORGANIZATION_MUTATION.md +++ /dev/null @@ -1,17 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [GraphQl/Mutations/OrganizationMutations](../README.md) / REMOVE\_SAMPLE\_ORGANIZATION\_MUTATION - -# Variable: REMOVE\_SAMPLE\_ORGANIZATION\_MUTATION - -> `const` **REMOVE\_SAMPLE\_ORGANIZATION\_MUTATION**: `DocumentNode` - -Defined in: [src/GraphQl/Mutations/OrganizationMutations.ts:46](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/GraphQl/Mutations/OrganizationMutations.ts#L46) - -GraphQL mutation to remove a sample organization. - -## Returns - -The removed sample organization object. diff --git a/docs/docs/auto-docs/GraphQl/Mutations/OrganizationMutations/variables/SEND_MEMBERSHIP_REQUEST.md b/docs/docs/auto-docs/GraphQl/Mutations/OrganizationMutations/variables/SEND_MEMBERSHIP_REQUEST.md deleted file mode 100644 index 58d754f23b..0000000000 --- a/docs/docs/auto-docs/GraphQl/Mutations/OrganizationMutations/variables/SEND_MEMBERSHIP_REQUEST.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [GraphQl/Mutations/OrganizationMutations](../README.md) / SEND\_MEMBERSHIP\_REQUEST - -# Variable: SEND\_MEMBERSHIP\_REQUEST - -> `const` **SEND\_MEMBERSHIP\_REQUEST**: `DocumentNode` - -Defined in: [src/GraphQl/Mutations/OrganizationMutations.ts:272](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/GraphQl/Mutations/OrganizationMutations.ts#L272) diff --git a/docs/docs/auto-docs/GraphQl/Mutations/OrganizationMutations/variables/SEND_MESSAGE_TO_CHAT.md b/docs/docs/auto-docs/GraphQl/Mutations/OrganizationMutations/variables/SEND_MESSAGE_TO_CHAT.md deleted file mode 100644 index 2bd81bcf40..0000000000 --- a/docs/docs/auto-docs/GraphQl/Mutations/OrganizationMutations/variables/SEND_MESSAGE_TO_CHAT.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [GraphQl/Mutations/OrganizationMutations](../README.md) / SEND\_MESSAGE\_TO\_CHAT - -# Variable: SEND\_MESSAGE\_TO\_CHAT - -> `const` **SEND\_MESSAGE\_TO\_CHAT**: `DocumentNode` - -Defined in: [src/GraphQl/Mutations/OrganizationMutations.ts:126](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/GraphQl/Mutations/OrganizationMutations.ts#L126) diff --git a/docs/docs/auto-docs/GraphQl/Mutations/OrganizationMutations/variables/TOGGLE_PINNED_POST.md b/docs/docs/auto-docs/GraphQl/Mutations/OrganizationMutations/variables/TOGGLE_PINNED_POST.md deleted file mode 100644 index d50f215d34..0000000000 --- a/docs/docs/auto-docs/GraphQl/Mutations/OrganizationMutations/variables/TOGGLE_PINNED_POST.md +++ /dev/null @@ -1,21 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [GraphQl/Mutations/OrganizationMutations](../README.md) / TOGGLE\_PINNED\_POST - -# Variable: TOGGLE\_PINNED\_POST - -> `const` **TOGGLE\_PINNED\_POST**: `DocumentNode` - -Defined in: [src/GraphQl/Mutations/OrganizationMutations.ts:220](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/GraphQl/Mutations/OrganizationMutations.ts#L220) - -GraphQL mutation to toggle the pinned status of a post. - -## Param - -The ID of the post to be toggled. - -## Returns - -The updated post object with the new pinned status. diff --git a/docs/docs/auto-docs/GraphQl/Mutations/OrganizationMutations/variables/UPDATE_CHAT.md b/docs/docs/auto-docs/GraphQl/Mutations/OrganizationMutations/variables/UPDATE_CHAT.md deleted file mode 100644 index 958641cb26..0000000000 --- a/docs/docs/auto-docs/GraphQl/Mutations/OrganizationMutations/variables/UPDATE_CHAT.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [GraphQl/Mutations/OrganizationMutations](../README.md) / UPDATE\_CHAT - -# Variable: UPDATE\_CHAT - -> `const` **UPDATE\_CHAT**: `DocumentNode` - -Defined in: [src/GraphQl/Mutations/OrganizationMutations.ts:98](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/GraphQl/Mutations/OrganizationMutations.ts#L98) diff --git a/docs/docs/auto-docs/GraphQl/Mutations/OrganizationMutations/variables/UPDATE_USER_ROLE_IN_ORG_MUTATION.md b/docs/docs/auto-docs/GraphQl/Mutations/OrganizationMutations/variables/UPDATE_USER_ROLE_IN_ORG_MUTATION.md deleted file mode 100644 index dd17ae9305..0000000000 --- a/docs/docs/auto-docs/GraphQl/Mutations/OrganizationMutations/variables/UPDATE_USER_ROLE_IN_ORG_MUTATION.md +++ /dev/null @@ -1,29 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [GraphQl/Mutations/OrganizationMutations](../README.md) / UPDATE\_USER\_ROLE\_IN\_ORG\_MUTATION - -# Variable: UPDATE\_USER\_ROLE\_IN\_ORG\_MUTATION - -> `const` **UPDATE\_USER\_ROLE\_IN\_ORG\_MUTATION**: `DocumentNode` - -Defined in: [src/GraphQl/Mutations/OrganizationMutations.ts:12](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/GraphQl/Mutations/OrganizationMutations.ts#L12) - -GraphQL mutation to update the role of a user in an organization. - -## Param - -The ID of the organization in which the user's role is being updated. - -## Param - -The ID of the user whose role is being updated. - -## Param - -The new role to be assigned to the user in the organization. - -## Returns - -The updated user object with the new role in the organization. diff --git a/docs/docs/auto-docs/GraphQl/Mutations/PledgeMutation/README.md b/docs/docs/auto-docs/GraphQl/Mutations/PledgeMutation/README.md deleted file mode 100644 index 2a7b674f0c..0000000000 --- a/docs/docs/auto-docs/GraphQl/Mutations/PledgeMutation/README.md +++ /dev/null @@ -1,13 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / GraphQl/Mutations/PledgeMutation - -# GraphQl/Mutations/PledgeMutation - -## Variables - -- [CREATE\_PlEDGE](variables/CREATE_PlEDGE.md) -- [DELETE\_PLEDGE](variables/DELETE_PLEDGE.md) -- [UPDATE\_PLEDGE](variables/UPDATE_PLEDGE.md) diff --git a/docs/docs/auto-docs/GraphQl/Mutations/PledgeMutation/variables/CREATE_PlEDGE.md b/docs/docs/auto-docs/GraphQl/Mutations/PledgeMutation/variables/CREATE_PlEDGE.md deleted file mode 100644 index e9c03698ac..0000000000 --- a/docs/docs/auto-docs/GraphQl/Mutations/PledgeMutation/variables/CREATE_PlEDGE.md +++ /dev/null @@ -1,41 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [GraphQl/Mutations/PledgeMutation](../README.md) / CREATE\_PlEDGE - -# Variable: CREATE\_PlEDGE - -> `const` **CREATE\_PlEDGE**: `DocumentNode` - -Defined in: [src/GraphQl/Mutations/PledgeMutation.ts:14](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/GraphQl/Mutations/PledgeMutation.ts#L14) - -GraphQL mutation to create a pledge. - -## Param - -The ID of the campaign the pledge is associated with. - -## Param - -The amount of the pledge. - -## Param - -The currency of the pledge. - -## Param - -The start date of the pledge. - -## Param - -The end date of the pledge. - -## Param - -The IDs of the users associated with the pledge. - -## Returns - -The ID of the created pledge. diff --git a/docs/docs/auto-docs/GraphQl/Mutations/PledgeMutation/variables/DELETE_PLEDGE.md b/docs/docs/auto-docs/GraphQl/Mutations/PledgeMutation/variables/DELETE_PLEDGE.md deleted file mode 100644 index 3098ac04d9..0000000000 --- a/docs/docs/auto-docs/GraphQl/Mutations/PledgeMutation/variables/DELETE_PLEDGE.md +++ /dev/null @@ -1,21 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [GraphQl/Mutations/PledgeMutation](../README.md) / DELETE\_PLEDGE - -# Variable: DELETE\_PLEDGE - -> `const` **DELETE\_PLEDGE**: `DocumentNode` - -Defined in: [src/GraphQl/Mutations/PledgeMutation.ts:78](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/GraphQl/Mutations/PledgeMutation.ts#L78) - -GraphQL mutation to delete a pledge. - -## Param - -The ID of the pledge being deleted. - -## Returns - -Whether the pledge was successfully deleted. diff --git a/docs/docs/auto-docs/GraphQl/Mutations/PledgeMutation/variables/UPDATE_PLEDGE.md b/docs/docs/auto-docs/GraphQl/Mutations/PledgeMutation/variables/UPDATE_PLEDGE.md deleted file mode 100644 index f4ebfe04cf..0000000000 --- a/docs/docs/auto-docs/GraphQl/Mutations/PledgeMutation/variables/UPDATE_PLEDGE.md +++ /dev/null @@ -1,37 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [GraphQl/Mutations/PledgeMutation](../README.md) / UPDATE\_PLEDGE - -# Variable: UPDATE\_PLEDGE - -> `const` **UPDATE\_PLEDGE**: `DocumentNode` - -Defined in: [src/GraphQl/Mutations/PledgeMutation.ts:48](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/GraphQl/Mutations/PledgeMutation.ts#L48) - -GraphQL mutation to update a pledge. - -## Param - -The ID of the pledge being updated. - -## Param - -The amount of the pledge. - -## Param - -The currency of the pledge. - -## Param - -The start date of the pledge. - -## Param - -The end date of the pledge. - -## Returns - -The ID of the updated pledge. diff --git a/docs/docs/auto-docs/GraphQl/Mutations/TagMutations/README.md b/docs/docs/auto-docs/GraphQl/Mutations/TagMutations/README.md deleted file mode 100644 index e3328dd710..0000000000 --- a/docs/docs/auto-docs/GraphQl/Mutations/TagMutations/README.md +++ /dev/null @@ -1,17 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / GraphQl/Mutations/TagMutations - -# GraphQl/Mutations/TagMutations - -## Variables - -- [ADD\_PEOPLE\_TO\_TAG](variables/ADD_PEOPLE_TO_TAG.md) -- [ASSIGN\_TO\_TAGS](variables/ASSIGN_TO_TAGS.md) -- [CREATE\_USER\_TAG](variables/CREATE_USER_TAG.md) -- [REMOVE\_FROM\_TAGS](variables/REMOVE_FROM_TAGS.md) -- [REMOVE\_USER\_TAG](variables/REMOVE_USER_TAG.md) -- [UNASSIGN\_USER\_TAG](variables/UNASSIGN_USER_TAG.md) -- [UPDATE\_USER\_TAG](variables/UPDATE_USER_TAG.md) diff --git a/docs/docs/auto-docs/GraphQl/Mutations/TagMutations/variables/ADD_PEOPLE_TO_TAG.md b/docs/docs/auto-docs/GraphQl/Mutations/TagMutations/variables/ADD_PEOPLE_TO_TAG.md deleted file mode 100644 index 6804375220..0000000000 --- a/docs/docs/auto-docs/GraphQl/Mutations/TagMutations/variables/ADD_PEOPLE_TO_TAG.md +++ /dev/null @@ -1,21 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [GraphQl/Mutations/TagMutations](../README.md) / ADD\_PEOPLE\_TO\_TAG - -# Variable: ADD\_PEOPLE\_TO\_TAG - -> `const` **ADD\_PEOPLE\_TO\_TAG**: `DocumentNode` - -Defined in: [src/GraphQl/Mutations/TagMutations.ts:83](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/GraphQl/Mutations/TagMutations.ts#L83) - -GraphQL mutation to add people to tag. - -## Param - -Id of the tag to be assigned. - -## Param - -Ids of the users to assign to. diff --git a/docs/docs/auto-docs/GraphQl/Mutations/TagMutations/variables/ASSIGN_TO_TAGS.md b/docs/docs/auto-docs/GraphQl/Mutations/TagMutations/variables/ASSIGN_TO_TAGS.md deleted file mode 100644 index b7b0c52c36..0000000000 --- a/docs/docs/auto-docs/GraphQl/Mutations/TagMutations/variables/ASSIGN_TO_TAGS.md +++ /dev/null @@ -1,21 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [GraphQl/Mutations/TagMutations](../README.md) / ASSIGN\_TO\_TAGS - -# Variable: ASSIGN\_TO\_TAGS - -> `const` **ASSIGN\_TO\_TAGS**: `DocumentNode` - -Defined in: [src/GraphQl/Mutations/TagMutations.ts:98](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/GraphQl/Mutations/TagMutations.ts#L98) - -GraphQL mutation to assign people to multiple tags. - -## Param - -Id of the current tag. - -## Param - -Ids of the selected tags to be assined. diff --git a/docs/docs/auto-docs/GraphQl/Mutations/TagMutations/variables/CREATE_USER_TAG.md b/docs/docs/auto-docs/GraphQl/Mutations/TagMutations/variables/CREATE_USER_TAG.md deleted file mode 100644 index f03af162c4..0000000000 --- a/docs/docs/auto-docs/GraphQl/Mutations/TagMutations/variables/CREATE_USER_TAG.md +++ /dev/null @@ -1,29 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [GraphQl/Mutations/TagMutations](../README.md) / CREATE\_USER\_TAG - -# Variable: CREATE\_USER\_TAG - -> `const` **CREATE\_USER\_TAG**: `DocumentNode` - -Defined in: [src/GraphQl/Mutations/TagMutations.ts:12](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/GraphQl/Mutations/TagMutations.ts#L12) - -GraphQL mutation to create a user tag. - -## Param - -Name of the tag. - -## Param - -Color of the tag. - -## Param - -Id of the parent tag. - -## Param - -Organization to which the tag belongs. diff --git a/docs/docs/auto-docs/GraphQl/Mutations/TagMutations/variables/REMOVE_FROM_TAGS.md b/docs/docs/auto-docs/GraphQl/Mutations/TagMutations/variables/REMOVE_FROM_TAGS.md deleted file mode 100644 index 027d1d5f5b..0000000000 --- a/docs/docs/auto-docs/GraphQl/Mutations/TagMutations/variables/REMOVE_FROM_TAGS.md +++ /dev/null @@ -1,21 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [GraphQl/Mutations/TagMutations](../README.md) / REMOVE\_FROM\_TAGS - -# Variable: REMOVE\_FROM\_TAGS - -> `const` **REMOVE\_FROM\_TAGS**: `DocumentNode` - -Defined in: [src/GraphQl/Mutations/TagMutations.ts:115](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/GraphQl/Mutations/TagMutations.ts#L115) - -GraphQL mutation to remove people from multiple tags. - -## Param - -Id of the current tag. - -## Param - -Ids of the selected tags to be removed from. diff --git a/docs/docs/auto-docs/GraphQl/Mutations/TagMutations/variables/REMOVE_USER_TAG.md b/docs/docs/auto-docs/GraphQl/Mutations/TagMutations/variables/REMOVE_USER_TAG.md deleted file mode 100644 index c74397c1be..0000000000 --- a/docs/docs/auto-docs/GraphQl/Mutations/TagMutations/variables/REMOVE_USER_TAG.md +++ /dev/null @@ -1,17 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [GraphQl/Mutations/TagMutations](../README.md) / REMOVE\_USER\_TAG - -# Variable: REMOVE\_USER\_TAG - -> `const` **REMOVE\_USER\_TAG**: `DocumentNode` - -Defined in: [src/GraphQl/Mutations/TagMutations.ts:68](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/GraphQl/Mutations/TagMutations.ts#L68) - -GraphQL mutation to remove a user tag. - -## Param - -Id of the tag to be removed . diff --git a/docs/docs/auto-docs/GraphQl/Mutations/TagMutations/variables/UNASSIGN_USER_TAG.md b/docs/docs/auto-docs/GraphQl/Mutations/TagMutations/variables/UNASSIGN_USER_TAG.md deleted file mode 100644 index 7aa73ad496..0000000000 --- a/docs/docs/auto-docs/GraphQl/Mutations/TagMutations/variables/UNASSIGN_USER_TAG.md +++ /dev/null @@ -1,21 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [GraphQl/Mutations/TagMutations](../README.md) / UNASSIGN\_USER\_TAG - -# Variable: UNASSIGN\_USER\_TAG - -> `const` **UNASSIGN\_USER\_TAG**: `DocumentNode` - -Defined in: [src/GraphQl/Mutations/TagMutations.ts:39](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/GraphQl/Mutations/TagMutations.ts#L39) - -GraphQL mutation to unsssign a user tag from a user. - -## Param - -Id the tag. - -## Param - -Id of the user to be unassigned. diff --git a/docs/docs/auto-docs/GraphQl/Mutations/TagMutations/variables/UPDATE_USER_TAG.md b/docs/docs/auto-docs/GraphQl/Mutations/TagMutations/variables/UPDATE_USER_TAG.md deleted file mode 100644 index 6ec39445ba..0000000000 --- a/docs/docs/auto-docs/GraphQl/Mutations/TagMutations/variables/UPDATE_USER_TAG.md +++ /dev/null @@ -1,21 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [GraphQl/Mutations/TagMutations](../README.md) / UPDATE\_USER\_TAG - -# Variable: UPDATE\_USER\_TAG - -> `const` **UPDATE\_USER\_TAG**: `DocumentNode` - -Defined in: [src/GraphQl/Mutations/TagMutations.ts:54](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/GraphQl/Mutations/TagMutations.ts#L54) - -GraphQL mutation to update a user tag. - -## Param - -Id the tag. - -## Param - -Updated name of the tag. diff --git a/docs/docs/auto-docs/GraphQl/Mutations/VenueMutations/README.md b/docs/docs/auto-docs/GraphQl/Mutations/VenueMutations/README.md deleted file mode 100644 index 78d71175fd..0000000000 --- a/docs/docs/auto-docs/GraphQl/Mutations/VenueMutations/README.md +++ /dev/null @@ -1,13 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / GraphQl/Mutations/VenueMutations - -# GraphQl/Mutations/VenueMutations - -## Variables - -- [CREATE\_VENUE\_MUTATION](variables/CREATE_VENUE_MUTATION.md) -- [DELETE\_VENUE\_MUTATION](variables/DELETE_VENUE_MUTATION.md) -- [UPDATE\_VENUE\_MUTATION](variables/UPDATE_VENUE_MUTATION.md) diff --git a/docs/docs/auto-docs/GraphQl/Mutations/VenueMutations/variables/CREATE_VENUE_MUTATION.md b/docs/docs/auto-docs/GraphQl/Mutations/VenueMutations/variables/CREATE_VENUE_MUTATION.md deleted file mode 100644 index 9c571ff4dc..0000000000 --- a/docs/docs/auto-docs/GraphQl/Mutations/VenueMutations/variables/CREATE_VENUE_MUTATION.md +++ /dev/null @@ -1,33 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [GraphQl/Mutations/VenueMutations](../README.md) / CREATE\_VENUE\_MUTATION - -# Variable: CREATE\_VENUE\_MUTATION - -> `const` **CREATE\_VENUE\_MUTATION**: `DocumentNode` - -Defined in: [src/GraphQl/Mutations/VenueMutations.ts:13](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/GraphQl/Mutations/VenueMutations.ts#L13) - -GraphQL mutation to create a venue. - -## Param - -Name of the venue. - -## Param - -Ineteger representing capacity of venue. - -## Param - -Description of the venue. - -## Param - -Image file for the venue. - -## Param - -Organization to which the ActionItemCategory belongs. diff --git a/docs/docs/auto-docs/GraphQl/Mutations/VenueMutations/variables/DELETE_VENUE_MUTATION.md b/docs/docs/auto-docs/GraphQl/Mutations/VenueMutations/variables/DELETE_VENUE_MUTATION.md deleted file mode 100644 index ad7fffd1c7..0000000000 --- a/docs/docs/auto-docs/GraphQl/Mutations/VenueMutations/variables/DELETE_VENUE_MUTATION.md +++ /dev/null @@ -1,17 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [GraphQl/Mutations/VenueMutations](../README.md) / DELETE\_VENUE\_MUTATION - -# Variable: DELETE\_VENUE\_MUTATION - -> `const` **DELETE\_VENUE\_MUTATION**: `DocumentNode` - -Defined in: [src/GraphQl/Mutations/VenueMutations.ts:73](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/GraphQl/Mutations/VenueMutations.ts#L73) - -GraphQL mutation to delete a venue. - -## Param - -The id of the Venue to be deleted. diff --git a/docs/docs/auto-docs/GraphQl/Mutations/VenueMutations/variables/UPDATE_VENUE_MUTATION.md b/docs/docs/auto-docs/GraphQl/Mutations/VenueMutations/variables/UPDATE_VENUE_MUTATION.md deleted file mode 100644 index e9a0515c4d..0000000000 --- a/docs/docs/auto-docs/GraphQl/Mutations/VenueMutations/variables/UPDATE_VENUE_MUTATION.md +++ /dev/null @@ -1,33 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [GraphQl/Mutations/VenueMutations](../README.md) / UPDATE\_VENUE\_MUTATION - -# Variable: UPDATE\_VENUE\_MUTATION - -> `const` **UPDATE\_VENUE\_MUTATION**: `DocumentNode` - -Defined in: [src/GraphQl/Mutations/VenueMutations.ts:45](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/GraphQl/Mutations/VenueMutations.ts#L45) - -GraphQL mutation to update a venue. - -## Param - -The id of the Venue to be updated. - -## Param - -Ineteger representing capacity of venue. - -## Param - -Description of the venue. - -## Param - -Image file for the venue. - -## Param - -Name of the venue. diff --git a/docs/docs/auto-docs/GraphQl/Mutations/mutations/README.md b/docs/docs/auto-docs/GraphQl/Mutations/mutations/README.md deleted file mode 100644 index 57aa6032b2..0000000000 --- a/docs/docs/auto-docs/GraphQl/Mutations/mutations/README.md +++ /dev/null @@ -1,224 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / GraphQl/Mutations/mutations - -# GraphQl/Mutations/mutations - -## Variables - -- [ACCEPT\_ORGANIZATION\_REQUEST\_MUTATION](variables/ACCEPT_ORGANIZATION_REQUEST_MUTATION.md) -- [ADD\_ADMIN\_MUTATION](variables/ADD_ADMIN_MUTATION.md) -- [ADD\_ADVERTISEMENT\_MUTATION](variables/ADD_ADVERTISEMENT_MUTATION.md) -- [ADD\_MEMBER\_MUTATION](variables/ADD_MEMBER_MUTATION.md) -- [ADD\_PLUGIN\_MUTATION](variables/ADD_PLUGIN_MUTATION.md) -- [ADDRESS\_DETAILS\_FRAGMENT](variables/ADDRESS_DETAILS_FRAGMENT.md) -- [BLOCK\_USER\_MUTATION](variables/BLOCK_USER_MUTATION.md) -- [CREATE\_EVENT\_MUTATION](variables/CREATE_EVENT_MUTATION.md) -- [CREATE\_ORGANIZATION\_MUTATION](variables/CREATE_ORGANIZATION_MUTATION.md) -- [CREATE\_POST\_MUTATION](variables/CREATE_POST_MUTATION.md) -- [DELETE\_ADVERTISEMENT\_BY\_ID](variables/DELETE_ADVERTISEMENT_BY_ID.md) -- [DELETE\_EVENT\_MUTATION](variables/DELETE_EVENT_MUTATION.md) -- [DELETE\_ORGANIZATION\_MUTATION](variables/DELETE_ORGANIZATION_MUTATION.md) -- [DELETE\_POST\_MUTATION](variables/DELETE_POST_MUTATION.md) -- [DONATE\_TO\_ORGANIZATION](variables/DONATE_TO_ORGANIZATION.md) -- [FORGOT\_PASSWORD\_MUTATION](variables/FORGOT_PASSWORD_MUTATION.md) -- [GENERATE\_OTP\_MUTATION](variables/GENERATE_OTP_MUTATION.md) -- [LIKE\_POST](variables/LIKE_POST.md) -- [LOGIN\_MUTATION](variables/LOGIN_MUTATION.md) -- [RECAPTCHA\_MUTATION](variables/RECAPTCHA_MUTATION.md) -- [REFRESH\_TOKEN\_MUTATION](variables/REFRESH_TOKEN_MUTATION.md) -- [REGISTER\_EVENT](variables/REGISTER_EVENT.md) -- [REJECT\_ORGANIZATION\_REQUEST\_MUTATION](variables/REJECT_ORGANIZATION_REQUEST_MUTATION.md) -- [REMOVE\_ADMIN\_MUTATION](variables/REMOVE_ADMIN_MUTATION.md) -- [REMOVE\_MEMBER\_MUTATION](variables/REMOVE_MEMBER_MUTATION.md) -- [RESET\_COMMUNITY](variables/RESET_COMMUNITY.md) -- [REVOKE\_REFRESH\_TOKEN](variables/REVOKE_REFRESH_TOKEN.md) -- [SIGNUP\_MUTATION](variables/SIGNUP_MUTATION.md) -- [UNBLOCK\_USER\_MUTATION](variables/UNBLOCK_USER_MUTATION.md) -- [UNLIKE\_POST](variables/UNLIKE_POST.md) -- [UPDATE\_ADVERTISEMENT\_MUTATION](variables/UPDATE_ADVERTISEMENT_MUTATION.md) -- [UPDATE\_COMMUNITY](variables/UPDATE_COMMUNITY.md) -- [UPDATE\_EVENT\_MUTATION](variables/UPDATE_EVENT_MUTATION.md) -- [UPDATE\_INSTALL\_STATUS\_PLUGIN\_MUTATION](variables/UPDATE_INSTALL_STATUS_PLUGIN_MUTATION.md) -- [UPDATE\_ORG\_STATUS\_PLUGIN\_MUTATION](variables/UPDATE_ORG_STATUS_PLUGIN_MUTATION.md) -- [UPDATE\_ORGANIZATION\_MUTATION](variables/UPDATE_ORGANIZATION_MUTATION.md) -- [UPDATE\_POST\_MUTATION](variables/UPDATE_POST_MUTATION.md) -- [UPDATE\_SESSION\_TIMEOUT](variables/UPDATE_SESSION_TIMEOUT.md) -- [UPDATE\_USER\_MUTATION](variables/UPDATE_USER_MUTATION.md) -- [UPDATE\_USER\_PASSWORD\_MUTATION](variables/UPDATE_USER_PASSWORD_MUTATION.md) - -## References - -### ADD\_CUSTOM\_FIELD - -Re-exports [ADD_CUSTOM_FIELD](../OrganizationMutations/variables/ADD_CUSTOM_FIELD.md) - -*** - -### ADD\_EVENT\_ATTENDEE - -Re-exports [ADD_EVENT_ATTENDEE](../EventAttendeeMutations/variables/ADD_EVENT_ATTENDEE.md) - -*** - -### CREATE\_ACTION\_ITEM\_CATEGORY\_MUTATION - -Re-exports [CREATE_ACTION_ITEM_CATEGORY_MUTATION](../ActionItemCategoryMutations/variables/CREATE_ACTION_ITEM_CATEGORY_MUTATION.md) - -*** - -### CREATE\_ACTION\_ITEM\_MUTATION - -Re-exports [CREATE_ACTION_ITEM_MUTATION](../ActionItemMutations/variables/CREATE_ACTION_ITEM_MUTATION.md) - -*** - -### CREATE\_AGENDA\_ITEM\_CATEGORY\_MUTATION - -Re-exports [CREATE_AGENDA_ITEM_CATEGORY_MUTATION](../AgendaCategoryMutations/variables/CREATE_AGENDA_ITEM_CATEGORY_MUTATION.md) - -*** - -### CREATE\_AGENDA\_ITEM\_MUTATION - -Re-exports [CREATE_AGENDA_ITEM_MUTATION](../AgendaItemMutations/variables/CREATE_AGENDA_ITEM_MUTATION.md) - -*** - -### CREATE\_COMMENT\_POST - -Re-exports [CREATE_COMMENT_POST](../CommentMutations/variables/CREATE_COMMENT_POST.md) - -*** - -### CREATE\_SAMPLE\_ORGANIZATION\_MUTATION - -Re-exports [CREATE_SAMPLE_ORGANIZATION_MUTATION](../OrganizationMutations/variables/CREATE_SAMPLE_ORGANIZATION_MUTATION.md) - -*** - -### CREATE\_VENUE\_MUTATION - -Re-exports [CREATE_VENUE_MUTATION](../VenueMutations/variables/CREATE_VENUE_MUTATION.md) - -*** - -### DELETE\_ACTION\_ITEM\_MUTATION - -Re-exports [DELETE_ACTION_ITEM_MUTATION](../ActionItemMutations/variables/DELETE_ACTION_ITEM_MUTATION.md) - -*** - -### DELETE\_AGENDA\_ITEM\_CATEGORY\_MUTATION - -Re-exports [DELETE_AGENDA_ITEM_CATEGORY_MUTATION](../AgendaCategoryMutations/variables/DELETE_AGENDA_ITEM_CATEGORY_MUTATION.md) - -*** - -### DELETE\_AGENDA\_ITEM\_MUTATION - -Re-exports [DELETE_AGENDA_ITEM_MUTATION](../AgendaItemMutations/variables/DELETE_AGENDA_ITEM_MUTATION.md) - -*** - -### DELETE\_VENUE\_MUTATION - -Re-exports [DELETE_VENUE_MUTATION](../VenueMutations/variables/DELETE_VENUE_MUTATION.md) - -*** - -### JOIN\_PUBLIC\_ORGANIZATION - -Re-exports [JOIN_PUBLIC_ORGANIZATION](../OrganizationMutations/variables/JOIN_PUBLIC_ORGANIZATION.md) - -*** - -### LIKE\_COMMENT - -Re-exports [LIKE_COMMENT](../CommentMutations/variables/LIKE_COMMENT.md) - -*** - -### MARK\_CHECKIN - -Re-exports [MARK_CHECKIN](../EventAttendeeMutations/variables/MARK_CHECKIN.md) - -*** - -### PLUGIN\_SUBSCRIPTION - -Re-exports [PLUGIN_SUBSCRIPTION](../OrganizationMutations/variables/PLUGIN_SUBSCRIPTION.md) - -*** - -### REMOVE\_CUSTOM\_FIELD - -Re-exports [REMOVE_CUSTOM_FIELD](../OrganizationMutations/variables/REMOVE_CUSTOM_FIELD.md) - -*** - -### REMOVE\_EVENT\_ATTENDEE - -Re-exports [REMOVE_EVENT_ATTENDEE](../EventAttendeeMutations/variables/REMOVE_EVENT_ATTENDEE.md) - -*** - -### REMOVE\_SAMPLE\_ORGANIZATION\_MUTATION - -Re-exports [REMOVE_SAMPLE_ORGANIZATION_MUTATION](../OrganizationMutations/variables/REMOVE_SAMPLE_ORGANIZATION_MUTATION.md) - -*** - -### SEND\_MEMBERSHIP\_REQUEST - -Re-exports [SEND_MEMBERSHIP_REQUEST](../OrganizationMutations/variables/SEND_MEMBERSHIP_REQUEST.md) - -*** - -### TOGGLE\_PINNED\_POST - -Re-exports [TOGGLE_PINNED_POST](../OrganizationMutations/variables/TOGGLE_PINNED_POST.md) - -*** - -### UNLIKE\_COMMENT - -Re-exports [UNLIKE_COMMENT](../CommentMutations/variables/UNLIKE_COMMENT.md) - -*** - -### UPDATE\_ACTION\_ITEM\_CATEGORY\_MUTATION - -Re-exports [UPDATE_ACTION_ITEM_CATEGORY_MUTATION](../ActionItemCategoryMutations/variables/UPDATE_ACTION_ITEM_CATEGORY_MUTATION.md) - -*** - -### UPDATE\_ACTION\_ITEM\_MUTATION - -Re-exports [UPDATE_ACTION_ITEM_MUTATION](../ActionItemMutations/variables/UPDATE_ACTION_ITEM_MUTATION.md) - -*** - -### UPDATE\_AGENDA\_ITEM\_CATEGORY\_MUTATION - -Re-exports [UPDATE_AGENDA_ITEM_CATEGORY_MUTATION](../AgendaCategoryMutations/variables/UPDATE_AGENDA_ITEM_CATEGORY_MUTATION.md) - -*** - -### UPDATE\_AGENDA\_ITEM\_MUTATION - -Re-exports [UPDATE_AGENDA_ITEM_MUTATION](../AgendaItemMutations/variables/UPDATE_AGENDA_ITEM_MUTATION.md) - -*** - -### UPDATE\_USER\_ROLE\_IN\_ORG\_MUTATION - -Re-exports [UPDATE_USER_ROLE_IN_ORG_MUTATION](../OrganizationMutations/variables/UPDATE_USER_ROLE_IN_ORG_MUTATION.md) - -*** - -### UPDATE\_VENUE\_MUTATION - -Re-exports [UPDATE_VENUE_MUTATION](../VenueMutations/variables/UPDATE_VENUE_MUTATION.md) diff --git a/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/ACCEPT_ORGANIZATION_REQUEST_MUTATION.md b/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/ACCEPT_ORGANIZATION_REQUEST_MUTATION.md deleted file mode 100644 index 7995ace3fb..0000000000 --- a/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/ACCEPT_ORGANIZATION_REQUEST_MUTATION.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [GraphQl/Mutations/mutations](../README.md) / ACCEPT\_ORGANIZATION\_REQUEST\_MUTATION - -# Variable: ACCEPT\_ORGANIZATION\_REQUEST\_MUTATION - -> `const` **ACCEPT\_ORGANIZATION\_REQUEST\_MUTATION**: `DocumentNode` - -Defined in: [src/GraphQl/Mutations/mutations.ts:33](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/GraphQl/Mutations/mutations.ts#L33) diff --git a/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/ADDRESS_DETAILS_FRAGMENT.md b/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/ADDRESS_DETAILS_FRAGMENT.md deleted file mode 100644 index 9499c2ce66..0000000000 --- a/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/ADDRESS_DETAILS_FRAGMENT.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [GraphQl/Mutations/mutations](../README.md) / ADDRESS\_DETAILS\_FRAGMENT - -# Variable: ADDRESS\_DETAILS\_FRAGMENT - -> `const` **ADDRESS\_DETAILS\_FRAGMENT**: `DocumentNode` - -Defined in: [src/GraphQl/Mutations/mutations.ts:70](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/GraphQl/Mutations/mutations.ts#L70) diff --git a/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/ADD_ADMIN_MUTATION.md b/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/ADD_ADMIN_MUTATION.md deleted file mode 100644 index 8cf4d079c7..0000000000 --- a/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/ADD_ADMIN_MUTATION.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [GraphQl/Mutations/mutations](../README.md) / ADD\_ADMIN\_MUTATION - -# Variable: ADD\_ADMIN\_MUTATION - -> `const` **ADD\_ADMIN\_MUTATION**: `DocumentNode` - -Defined in: [src/GraphQl/Mutations/mutations.ts:351](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/GraphQl/Mutations/mutations.ts#L351) diff --git a/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/ADD_ADVERTISEMENT_MUTATION.md b/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/ADD_ADVERTISEMENT_MUTATION.md deleted file mode 100644 index dafa36c167..0000000000 --- a/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/ADD_ADVERTISEMENT_MUTATION.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [GraphQl/Mutations/mutations](../README.md) / ADD\_ADVERTISEMENT\_MUTATION - -# Variable: ADD\_ADVERTISEMENT\_MUTATION - -> `const` **ADD\_ADVERTISEMENT\_MUTATION**: `DocumentNode` - -Defined in: [src/GraphQl/Mutations/mutations.ts:486](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/GraphQl/Mutations/mutations.ts#L486) diff --git a/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/ADD_MEMBER_MUTATION.md b/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/ADD_MEMBER_MUTATION.md deleted file mode 100644 index 265bcf8e66..0000000000 --- a/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/ADD_MEMBER_MUTATION.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [GraphQl/Mutations/mutations](../README.md) / ADD\_MEMBER\_MUTATION - -# Variable: ADD\_MEMBER\_MUTATION - -> `const` **ADD\_MEMBER\_MUTATION**: `DocumentNode` - -Defined in: [src/GraphQl/Mutations/mutations.ts:361](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/GraphQl/Mutations/mutations.ts#L361) diff --git a/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/ADD_PLUGIN_MUTATION.md b/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/ADD_PLUGIN_MUTATION.md deleted file mode 100644 index e42801cfad..0000000000 --- a/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/ADD_PLUGIN_MUTATION.md +++ /dev/null @@ -1,15 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [GraphQl/Mutations/mutations](../README.md) / ADD\_PLUGIN\_MUTATION - -# Variable: ADD\_PLUGIN\_MUTATION - -> `const` **ADD\_PLUGIN\_MUTATION**: `DocumentNode` - -Defined in: [src/GraphQl/Mutations/mutations.ts:468](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/GraphQl/Mutations/mutations.ts#L468) - -## Remarks - -used `createPlugin` to add new Plugin in database diff --git a/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/BLOCK_USER_MUTATION.md b/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/BLOCK_USER_MUTATION.md deleted file mode 100644 index 3f63b9c51b..0000000000 --- a/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/BLOCK_USER_MUTATION.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [GraphQl/Mutations/mutations](../README.md) / BLOCK\_USER\_MUTATION - -# Variable: BLOCK\_USER\_MUTATION - -> `const` **BLOCK\_USER\_MUTATION**: `DocumentNode` - -Defined in: [src/GraphQl/Mutations/mutations.ts:13](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/GraphQl/Mutations/mutations.ts#L13) diff --git a/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/CREATE_EVENT_MUTATION.md b/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/CREATE_EVENT_MUTATION.md deleted file mode 100644 index 64efb7b621..0000000000 --- a/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/CREATE_EVENT_MUTATION.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [GraphQl/Mutations/mutations](../README.md) / CREATE\_EVENT\_MUTATION - -# Variable: CREATE\_EVENT\_MUTATION - -> `const` **CREATE\_EVENT\_MUTATION**: `DocumentNode` - -Defined in: [src/GraphQl/Mutations/mutations.ts:265](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/GraphQl/Mutations/mutations.ts#L265) diff --git a/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/CREATE_ORGANIZATION_MUTATION.md b/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/CREATE_ORGANIZATION_MUTATION.md deleted file mode 100644 index 2c5258a5dc..0000000000 --- a/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/CREATE_ORGANIZATION_MUTATION.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [GraphQl/Mutations/mutations](../README.md) / CREATE\_ORGANIZATION\_MUTATION - -# Variable: CREATE\_ORGANIZATION\_MUTATION - -> `const` **CREATE\_ORGANIZATION\_MUTATION**: `DocumentNode` - -Defined in: [src/GraphQl/Mutations/mutations.ts:227](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/GraphQl/Mutations/mutations.ts#L227) diff --git a/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/CREATE_POST_MUTATION.md b/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/CREATE_POST_MUTATION.md deleted file mode 100644 index 7794b841a2..0000000000 --- a/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/CREATE_POST_MUTATION.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [GraphQl/Mutations/mutations](../README.md) / CREATE\_POST\_MUTATION - -# Variable: CREATE\_POST\_MUTATION - -> `const` **CREATE\_POST\_MUTATION**: `DocumentNode` - -Defined in: [src/GraphQl/Mutations/mutations.ts:371](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/GraphQl/Mutations/mutations.ts#L371) diff --git a/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/DELETE_ADVERTISEMENT_BY_ID.md b/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/DELETE_ADVERTISEMENT_BY_ID.md deleted file mode 100644 index 9380bf9932..0000000000 --- a/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/DELETE_ADVERTISEMENT_BY_ID.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [GraphQl/Mutations/mutations](../README.md) / DELETE\_ADVERTISEMENT\_BY\_ID - -# Variable: DELETE\_ADVERTISEMENT\_BY\_ID - -> `const` **DELETE\_ADVERTISEMENT\_BY\_ID**: `DocumentNode` - -Defined in: [src/GraphQl/Mutations/mutations.ts:536](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/GraphQl/Mutations/mutations.ts#L536) diff --git a/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/DELETE_EVENT_MUTATION.md b/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/DELETE_EVENT_MUTATION.md deleted file mode 100644 index 57ba70195f..0000000000 --- a/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/DELETE_EVENT_MUTATION.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [GraphQl/Mutations/mutations](../README.md) / DELETE\_EVENT\_MUTATION - -# Variable: DELETE\_EVENT\_MUTATION - -> `const` **DELETE\_EVENT\_MUTATION**: `DocumentNode` - -Defined in: [src/GraphQl/Mutations/mutations.ts:321](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/GraphQl/Mutations/mutations.ts#L321) diff --git a/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/DELETE_ORGANIZATION_MUTATION.md b/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/DELETE_ORGANIZATION_MUTATION.md deleted file mode 100644 index f2b84e5df7..0000000000 --- a/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/DELETE_ORGANIZATION_MUTATION.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [GraphQl/Mutations/mutations](../README.md) / DELETE\_ORGANIZATION\_MUTATION - -# Variable: DELETE\_ORGANIZATION\_MUTATION - -> `const` **DELETE\_ORGANIZATION\_MUTATION**: `DocumentNode` - -Defined in: [src/GraphQl/Mutations/mutations.ts:253](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/GraphQl/Mutations/mutations.ts#L253) diff --git a/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/DELETE_POST_MUTATION.md b/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/DELETE_POST_MUTATION.md deleted file mode 100644 index f52fb21866..0000000000 --- a/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/DELETE_POST_MUTATION.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [GraphQl/Mutations/mutations](../README.md) / DELETE\_POST\_MUTATION - -# Variable: DELETE\_POST\_MUTATION - -> `const` **DELETE\_POST\_MUTATION**: `DocumentNode` - -Defined in: [src/GraphQl/Mutations/mutations.ts:397](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/GraphQl/Mutations/mutations.ts#L397) diff --git a/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/DONATE_TO_ORGANIZATION.md b/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/DONATE_TO_ORGANIZATION.md deleted file mode 100644 index 2b78bbc859..0000000000 --- a/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/DONATE_TO_ORGANIZATION.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [GraphQl/Mutations/mutations](../README.md) / DONATE\_TO\_ORGANIZATION - -# Variable: DONATE\_TO\_ORGANIZATION - -> `const` **DONATE\_TO\_ORGANIZATION**: `DocumentNode` - -Defined in: [src/GraphQl/Mutations/mutations.ts:663](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/GraphQl/Mutations/mutations.ts#L663) diff --git a/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/FORGOT_PASSWORD_MUTATION.md b/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/FORGOT_PASSWORD_MUTATION.md deleted file mode 100644 index 784d7013a7..0000000000 --- a/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/FORGOT_PASSWORD_MUTATION.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [GraphQl/Mutations/mutations](../README.md) / FORGOT\_PASSWORD\_MUTATION - -# Variable: FORGOT\_PASSWORD\_MUTATION - -> `const` **FORGOT\_PASSWORD\_MUTATION**: `DocumentNode` - -Defined in: [src/GraphQl/Mutations/mutations.ts:413](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/GraphQl/Mutations/mutations.ts#L413) diff --git a/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/GENERATE_OTP_MUTATION.md b/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/GENERATE_OTP_MUTATION.md deleted file mode 100644 index c40a235e19..0000000000 --- a/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/GENERATE_OTP_MUTATION.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [GraphQl/Mutations/mutations](../README.md) / GENERATE\_OTP\_MUTATION - -# Variable: GENERATE\_OTP\_MUTATION - -> `const` **GENERATE\_OTP\_MUTATION**: `DocumentNode` - -Defined in: [src/GraphQl/Mutations/mutations.ts:405](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/GraphQl/Mutations/mutations.ts#L405) diff --git a/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/LIKE_POST.md b/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/LIKE_POST.md deleted file mode 100644 index ec3058ba11..0000000000 --- a/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/LIKE_POST.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [GraphQl/Mutations/mutations](../README.md) / LIKE\_POST - -# Variable: LIKE\_POST - -> `const` **LIKE\_POST**: `DocumentNode` - -Defined in: [src/GraphQl/Mutations/mutations.ts:621](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/GraphQl/Mutations/mutations.ts#L621) diff --git a/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/LOGIN_MUTATION.md b/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/LOGIN_MUTATION.md deleted file mode 100644 index edab8e30f2..0000000000 --- a/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/LOGIN_MUTATION.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [GraphQl/Mutations/mutations](../README.md) / LOGIN\_MUTATION - -# Variable: LOGIN\_MUTATION - -> `const` **LOGIN\_MUTATION**: `DocumentNode` - -Defined in: [src/GraphQl/Mutations/mutations.ts:175](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/GraphQl/Mutations/mutations.ts#L175) diff --git a/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/RECAPTCHA_MUTATION.md b/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/RECAPTCHA_MUTATION.md deleted file mode 100644 index 6d66d7c5f9..0000000000 --- a/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/RECAPTCHA_MUTATION.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [GraphQl/Mutations/mutations](../README.md) / RECAPTCHA\_MUTATION - -# Variable: RECAPTCHA\_MUTATION - -> `const` **RECAPTCHA\_MUTATION**: `DocumentNode` - -Defined in: [src/GraphQl/Mutations/mutations.ts:219](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/GraphQl/Mutations/mutations.ts#L219) diff --git a/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/REFRESH_TOKEN_MUTATION.md b/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/REFRESH_TOKEN_MUTATION.md deleted file mode 100644 index efa06b13ba..0000000000 --- a/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/REFRESH_TOKEN_MUTATION.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [GraphQl/Mutations/mutations](../README.md) / REFRESH\_TOKEN\_MUTATION - -# Variable: REFRESH\_TOKEN\_MUTATION - -> `const` **REFRESH\_TOKEN\_MUTATION**: `DocumentNode` - -Defined in: [src/GraphQl/Mutations/mutations.ts:200](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/GraphQl/Mutations/mutations.ts#L200) diff --git a/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/REGISTER_EVENT.md b/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/REGISTER_EVENT.md deleted file mode 100644 index 1ba014b662..0000000000 --- a/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/REGISTER_EVENT.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [GraphQl/Mutations/mutations](../README.md) / REGISTER\_EVENT - -# Variable: REGISTER\_EVENT - -> `const` **REGISTER\_EVENT**: `DocumentNode` - -Defined in: [src/GraphQl/Mutations/mutations.ts:637](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/GraphQl/Mutations/mutations.ts#L637) diff --git a/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/REJECT_ORGANIZATION_REQUEST_MUTATION.md b/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/REJECT_ORGANIZATION_REQUEST_MUTATION.md deleted file mode 100644 index 0f83658c78..0000000000 --- a/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/REJECT_ORGANIZATION_REQUEST_MUTATION.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [GraphQl/Mutations/mutations](../README.md) / REJECT\_ORGANIZATION\_REQUEST\_MUTATION - -# Variable: REJECT\_ORGANIZATION\_REQUEST\_MUTATION - -> `const` **REJECT\_ORGANIZATION\_REQUEST\_MUTATION**: `DocumentNode` - -Defined in: [src/GraphQl/Mutations/mutations.ts:23](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/GraphQl/Mutations/mutations.ts#L23) diff --git a/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/REMOVE_ADMIN_MUTATION.md b/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/REMOVE_ADMIN_MUTATION.md deleted file mode 100644 index 5c2ee6928a..0000000000 --- a/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/REMOVE_ADMIN_MUTATION.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [GraphQl/Mutations/mutations](../README.md) / REMOVE\_ADMIN\_MUTATION - -# Variable: REMOVE\_ADMIN\_MUTATION - -> `const` **REMOVE\_ADMIN\_MUTATION**: `DocumentNode` - -Defined in: [src/GraphQl/Mutations/mutations.ts:333](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/GraphQl/Mutations/mutations.ts#L333) diff --git a/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/REMOVE_MEMBER_MUTATION.md b/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/REMOVE_MEMBER_MUTATION.md deleted file mode 100644 index f147d17c0d..0000000000 --- a/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/REMOVE_MEMBER_MUTATION.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [GraphQl/Mutations/mutations](../README.md) / REMOVE\_MEMBER\_MUTATION - -# Variable: REMOVE\_MEMBER\_MUTATION - -> `const` **REMOVE\_MEMBER\_MUTATION**: `DocumentNode` - -Defined in: [src/GraphQl/Mutations/mutations.ts:342](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/GraphQl/Mutations/mutations.ts#L342) diff --git a/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/RESET_COMMUNITY.md b/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/RESET_COMMUNITY.md deleted file mode 100644 index d0d7f455ba..0000000000 --- a/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/RESET_COMMUNITY.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [GraphQl/Mutations/mutations](../README.md) / RESET\_COMMUNITY - -# Variable: RESET\_COMMUNITY - -> `const` **RESET\_COMMUNITY**: `DocumentNode` - -Defined in: [src/GraphQl/Mutations/mutations.ts:657](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/GraphQl/Mutations/mutations.ts#L657) diff --git a/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/REVOKE_REFRESH_TOKEN.md b/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/REVOKE_REFRESH_TOKEN.md deleted file mode 100644 index c964d1e87b..0000000000 --- a/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/REVOKE_REFRESH_TOKEN.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [GraphQl/Mutations/mutations](../README.md) / REVOKE\_REFRESH\_TOKEN - -# Variable: REVOKE\_REFRESH\_TOKEN - -> `const` **REVOKE\_REFRESH\_TOKEN**: `DocumentNode` - -Defined in: [src/GraphQl/Mutations/mutations.ts:211](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/GraphQl/Mutations/mutations.ts#L211) diff --git a/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/SIGNUP_MUTATION.md b/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/SIGNUP_MUTATION.md deleted file mode 100644 index 482bec1381..0000000000 --- a/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/SIGNUP_MUTATION.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [GraphQl/Mutations/mutations](../README.md) / SIGNUP\_MUTATION - -# Variable: SIGNUP\_MUTATION - -> `const` **SIGNUP\_MUTATION**: `DocumentNode` - -Defined in: [src/GraphQl/Mutations/mutations.ts:147](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/GraphQl/Mutations/mutations.ts#L147) diff --git a/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/UNBLOCK_USER_MUTATION.md b/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/UNBLOCK_USER_MUTATION.md deleted file mode 100644 index 708bcfcf89..0000000000 --- a/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/UNBLOCK_USER_MUTATION.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [GraphQl/Mutations/mutations](../README.md) / UNBLOCK\_USER\_MUTATION - -# Variable: UNBLOCK\_USER\_MUTATION - -> `const` **UNBLOCK\_USER\_MUTATION**: `DocumentNode` - -Defined in: [src/GraphQl/Mutations/mutations.ts:3](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/GraphQl/Mutations/mutations.ts#L3) diff --git a/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/UNLIKE_POST.md b/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/UNLIKE_POST.md deleted file mode 100644 index b4934f3902..0000000000 --- a/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/UNLIKE_POST.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [GraphQl/Mutations/mutations](../README.md) / UNLIKE\_POST - -# Variable: UNLIKE\_POST - -> `const` **UNLIKE\_POST**: `DocumentNode` - -Defined in: [src/GraphQl/Mutations/mutations.ts:629](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/GraphQl/Mutations/mutations.ts#L629) diff --git a/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/UPDATE_ADVERTISEMENT_MUTATION.md b/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/UPDATE_ADVERTISEMENT_MUTATION.md deleted file mode 100644 index 90f80b3f8d..0000000000 --- a/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/UPDATE_ADVERTISEMENT_MUTATION.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [GraphQl/Mutations/mutations](../README.md) / UPDATE\_ADVERTISEMENT\_MUTATION - -# Variable: UPDATE\_ADVERTISEMENT\_MUTATION - -> `const` **UPDATE\_ADVERTISEMENT\_MUTATION**: `DocumentNode` - -Defined in: [src/GraphQl/Mutations/mutations.ts:511](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/GraphQl/Mutations/mutations.ts#L511) diff --git a/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/UPDATE_COMMUNITY.md b/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/UPDATE_COMMUNITY.md deleted file mode 100644 index 6d26f3e039..0000000000 --- a/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/UPDATE_COMMUNITY.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [GraphQl/Mutations/mutations](../README.md) / UPDATE\_COMMUNITY - -# Variable: UPDATE\_COMMUNITY - -> `const` **UPDATE\_COMMUNITY**: `DocumentNode` - -Defined in: [src/GraphQl/Mutations/mutations.ts:645](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/GraphQl/Mutations/mutations.ts#L645) diff --git a/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/UPDATE_EVENT_MUTATION.md b/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/UPDATE_EVENT_MUTATION.md deleted file mode 100644 index 762a964e0e..0000000000 --- a/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/UPDATE_EVENT_MUTATION.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [GraphQl/Mutations/mutations](../README.md) / UPDATE\_EVENT\_MUTATION - -# Variable: UPDATE\_EVENT\_MUTATION - -> `const` **UPDATE\_EVENT\_MUTATION**: `DocumentNode` - -Defined in: [src/GraphQl/Mutations/mutations.ts:567](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/GraphQl/Mutations/mutations.ts#L567) diff --git a/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/UPDATE_INSTALL_STATUS_PLUGIN_MUTATION.md b/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/UPDATE_INSTALL_STATUS_PLUGIN_MUTATION.md deleted file mode 100644 index 75360437d4..0000000000 --- a/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/UPDATE_INSTALL_STATUS_PLUGIN_MUTATION.md +++ /dev/null @@ -1,15 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [GraphQl/Mutations/mutations](../README.md) / UPDATE\_INSTALL\_STATUS\_PLUGIN\_MUTATION - -# Variable: UPDATE\_INSTALL\_STATUS\_PLUGIN\_MUTATION - -> `const` **UPDATE\_INSTALL\_STATUS\_PLUGIN\_MUTATION**: `DocumentNode` - -Defined in: [src/GraphQl/Mutations/mutations.ts:434](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/GraphQl/Mutations/mutations.ts#L434) - -## Remarks - -used to toggle `installStatus` (boolean value) of a Plugin diff --git a/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/UPDATE_ORGANIZATION_MUTATION.md b/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/UPDATE_ORGANIZATION_MUTATION.md deleted file mode 100644 index 766a9b1b41..0000000000 --- a/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/UPDATE_ORGANIZATION_MUTATION.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [GraphQl/Mutations/mutations](../README.md) / UPDATE\_ORGANIZATION\_MUTATION - -# Variable: UPDATE\_ORGANIZATION\_MUTATION - -> `const` **UPDATE\_ORGANIZATION\_MUTATION**: `DocumentNode` - -Defined in: [src/GraphQl/Mutations/mutations.ts:43](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/GraphQl/Mutations/mutations.ts#L43) diff --git a/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/UPDATE_ORG_STATUS_PLUGIN_MUTATION.md b/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/UPDATE_ORG_STATUS_PLUGIN_MUTATION.md deleted file mode 100644 index f31abd61cb..0000000000 --- a/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/UPDATE_ORG_STATUS_PLUGIN_MUTATION.md +++ /dev/null @@ -1,15 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [GraphQl/Mutations/mutations](../README.md) / UPDATE\_ORG\_STATUS\_PLUGIN\_MUTATION - -# Variable: UPDATE\_ORG\_STATUS\_PLUGIN\_MUTATION - -> `const` **UPDATE\_ORG\_STATUS\_PLUGIN\_MUTATION**: `DocumentNode` - -Defined in: [src/GraphQl/Mutations/mutations.ts:451](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/GraphQl/Mutations/mutations.ts#L451) - -## Remarks - -used `updatePluginStatus`to add or remove the current Organization the in the plugin list `uninstalledOrgs` diff --git a/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/UPDATE_POST_MUTATION.md b/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/UPDATE_POST_MUTATION.md deleted file mode 100644 index c644b61df5..0000000000 --- a/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/UPDATE_POST_MUTATION.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [GraphQl/Mutations/mutations](../README.md) / UPDATE\_POST\_MUTATION - -# Variable: UPDATE\_POST\_MUTATION - -> `const` **UPDATE\_POST\_MUTATION**: `DocumentNode` - -Defined in: [src/GraphQl/Mutations/mutations.ts:545](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/GraphQl/Mutations/mutations.ts#L545) diff --git a/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/UPDATE_SESSION_TIMEOUT.md b/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/UPDATE_SESSION_TIMEOUT.md deleted file mode 100644 index 0b44f04a34..0000000000 --- a/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/UPDATE_SESSION_TIMEOUT.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [GraphQl/Mutations/mutations](../README.md) / UPDATE\_SESSION\_TIMEOUT - -# Variable: UPDATE\_SESSION\_TIMEOUT - -> `const` **UPDATE\_SESSION\_TIMEOUT**: `DocumentNode` - -Defined in: [src/GraphQl/Mutations/mutations.ts:651](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/GraphQl/Mutations/mutations.ts#L651) diff --git a/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/UPDATE_USER_MUTATION.md b/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/UPDATE_USER_MUTATION.md deleted file mode 100644 index 8d1e042c76..0000000000 --- a/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/UPDATE_USER_MUTATION.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [GraphQl/Mutations/mutations](../README.md) / UPDATE\_USER\_MUTATION - -# Variable: UPDATE\_USER\_MUTATION - -> `const` **UPDATE\_USER\_MUTATION**: `DocumentNode` - -Defined in: [src/GraphQl/Mutations/mutations.ts:85](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/GraphQl/Mutations/mutations.ts#L85) diff --git a/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/UPDATE_USER_PASSWORD_MUTATION.md b/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/UPDATE_USER_PASSWORD_MUTATION.md deleted file mode 100644 index dbd853f88f..0000000000 --- a/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/UPDATE_USER_PASSWORD_MUTATION.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [GraphQl/Mutations/mutations](../README.md) / UPDATE\_USER\_PASSWORD\_MUTATION - -# Variable: UPDATE\_USER\_PASSWORD\_MUTATION - -> `const` **UPDATE\_USER\_PASSWORD\_MUTATION**: `DocumentNode` - -Defined in: [src/GraphQl/Mutations/mutations.ts:125](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/GraphQl/Mutations/mutations.ts#L125) diff --git a/docs/docs/auto-docs/GraphQl/Queries/ActionItemCategoryQueries/README.md b/docs/docs/auto-docs/GraphQl/Queries/ActionItemCategoryQueries/README.md deleted file mode 100644 index 8136f04a59..0000000000 --- a/docs/docs/auto-docs/GraphQl/Queries/ActionItemCategoryQueries/README.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / GraphQl/Queries/ActionItemCategoryQueries - -# GraphQl/Queries/ActionItemCategoryQueries - -## Variables - -- [ACTION\_ITEM\_CATEGORY\_LIST](variables/ACTION_ITEM_CATEGORY_LIST.md) diff --git a/docs/docs/auto-docs/GraphQl/Queries/ActionItemCategoryQueries/variables/ACTION_ITEM_CATEGORY_LIST.md b/docs/docs/auto-docs/GraphQl/Queries/ActionItemCategoryQueries/variables/ACTION_ITEM_CATEGORY_LIST.md deleted file mode 100644 index 45f4661fe6..0000000000 --- a/docs/docs/auto-docs/GraphQl/Queries/ActionItemCategoryQueries/variables/ACTION_ITEM_CATEGORY_LIST.md +++ /dev/null @@ -1,21 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [GraphQl/Queries/ActionItemCategoryQueries](../README.md) / ACTION\_ITEM\_CATEGORY\_LIST - -# Variable: ACTION\_ITEM\_CATEGORY\_LIST - -> `const` **ACTION\_ITEM\_CATEGORY\_LIST**: `DocumentNode` - -Defined in: [src/GraphQl/Queries/ActionItemCategoryQueries.ts:10](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/GraphQl/Queries/ActionItemCategoryQueries.ts#L10) - -GraphQL query to retrieve action item categories by organization. - -## Param - -The ID of the organization for which action item categories are being retrieved. - -## Returns - -The list of action item categories associated with the organization. diff --git a/docs/docs/auto-docs/GraphQl/Queries/ActionItemQueries/README.md b/docs/docs/auto-docs/GraphQl/Queries/ActionItemQueries/README.md deleted file mode 100644 index e1ceadc0ec..0000000000 --- a/docs/docs/auto-docs/GraphQl/Queries/ActionItemQueries/README.md +++ /dev/null @@ -1,12 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / GraphQl/Queries/ActionItemQueries - -# GraphQl/Queries/ActionItemQueries - -## Variables - -- [ACTION\_ITEM\_LIST](variables/ACTION_ITEM_LIST.md) -- [ACTION\_ITEMS\_BY\_USER](variables/ACTION_ITEMS_BY_USER.md) diff --git a/docs/docs/auto-docs/GraphQl/Queries/ActionItemQueries/variables/ACTION_ITEMS_BY_USER.md b/docs/docs/auto-docs/GraphQl/Queries/ActionItemQueries/variables/ACTION_ITEMS_BY_USER.md deleted file mode 100644 index c5971698aa..0000000000 --- a/docs/docs/auto-docs/GraphQl/Queries/ActionItemQueries/variables/ACTION_ITEMS_BY_USER.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [GraphQl/Queries/ActionItemQueries](../README.md) / ACTION\_ITEMS\_BY\_USER - -# Variable: ACTION\_ITEMS\_BY\_USER - -> `const` **ACTION\_ITEMS\_BY\_USER**: `DocumentNode` - -Defined in: [src/GraphQl/Queries/ActionItemQueries.ts:78](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/GraphQl/Queries/ActionItemQueries.ts#L78) diff --git a/docs/docs/auto-docs/GraphQl/Queries/ActionItemQueries/variables/ACTION_ITEM_LIST.md b/docs/docs/auto-docs/GraphQl/Queries/ActionItemQueries/variables/ACTION_ITEM_LIST.md deleted file mode 100644 index a06dba4e2a..0000000000 --- a/docs/docs/auto-docs/GraphQl/Queries/ActionItemQueries/variables/ACTION_ITEM_LIST.md +++ /dev/null @@ -1,37 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [GraphQl/Queries/ActionItemQueries](../README.md) / ACTION\_ITEM\_LIST - -# Variable: ACTION\_ITEM\_LIST - -> `const` **ACTION\_ITEM\_LIST**: `DocumentNode` - -Defined in: [src/GraphQl/Queries/ActionItemQueries.ts:14](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/GraphQl/Queries/ActionItemQueries.ts#L14) - -GraphQL query to retrieve action item categories by organization. - -## Param - -The ID of the organization for which action item categories are being retrieved. - -## Param - -Sort action items Latest/Earliest first. - -## Param - -Filter action items belonging to an action item category. - -## Param - -Filter action items belonging to an event. - -## Param - -Filter all the completed action items. - -## Returns - -The list of action item categories associated with the organization. diff --git a/docs/docs/auto-docs/GraphQl/Queries/AgendaCategoryQueries/README.md b/docs/docs/auto-docs/GraphQl/Queries/AgendaCategoryQueries/README.md deleted file mode 100644 index ee135197c4..0000000000 --- a/docs/docs/auto-docs/GraphQl/Queries/AgendaCategoryQueries/README.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / GraphQl/Queries/AgendaCategoryQueries - -# GraphQl/Queries/AgendaCategoryQueries - -## Variables - -- [AGENDA\_ITEM\_CATEGORY\_LIST](variables/AGENDA_ITEM_CATEGORY_LIST.md) diff --git a/docs/docs/auto-docs/GraphQl/Queries/AgendaCategoryQueries/variables/AGENDA_ITEM_CATEGORY_LIST.md b/docs/docs/auto-docs/GraphQl/Queries/AgendaCategoryQueries/variables/AGENDA_ITEM_CATEGORY_LIST.md deleted file mode 100644 index 0763161698..0000000000 --- a/docs/docs/auto-docs/GraphQl/Queries/AgendaCategoryQueries/variables/AGENDA_ITEM_CATEGORY_LIST.md +++ /dev/null @@ -1,21 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [GraphQl/Queries/AgendaCategoryQueries](../README.md) / AGENDA\_ITEM\_CATEGORY\_LIST - -# Variable: AGENDA\_ITEM\_CATEGORY\_LIST - -> `const` **AGENDA\_ITEM\_CATEGORY\_LIST**: `DocumentNode` - -Defined in: [src/GraphQl/Queries/AgendaCategoryQueries.ts:10](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/GraphQl/Queries/AgendaCategoryQueries.ts#L10) - -GraphQL query to retrieve agenda category by id. - -## Param - -The ID of the category which is being retrieved. - -## Returns - -Agenda category associated with the id. diff --git a/docs/docs/auto-docs/GraphQl/Queries/AgendaItemQueries/README.md b/docs/docs/auto-docs/GraphQl/Queries/AgendaItemQueries/README.md deleted file mode 100644 index 63bdc31b06..0000000000 --- a/docs/docs/auto-docs/GraphQl/Queries/AgendaItemQueries/README.md +++ /dev/null @@ -1,12 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / GraphQl/Queries/AgendaItemQueries - -# GraphQl/Queries/AgendaItemQueries - -## Variables - -- [AgendaItemByEvent](variables/AgendaItemByEvent.md) -- [AgendaItemByOrganization](variables/AgendaItemByOrganization.md) diff --git a/docs/docs/auto-docs/GraphQl/Queries/AgendaItemQueries/variables/AgendaItemByEvent.md b/docs/docs/auto-docs/GraphQl/Queries/AgendaItemQueries/variables/AgendaItemByEvent.md deleted file mode 100644 index 01f6105ed3..0000000000 --- a/docs/docs/auto-docs/GraphQl/Queries/AgendaItemQueries/variables/AgendaItemByEvent.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [GraphQl/Queries/AgendaItemQueries](../README.md) / AgendaItemByEvent - -# Variable: AgendaItemByEvent - -> `const` **AgendaItemByEvent**: `DocumentNode` - -Defined in: [src/GraphQl/Queries/AgendaItemQueries.ts:39](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/GraphQl/Queries/AgendaItemQueries.ts#L39) diff --git a/docs/docs/auto-docs/GraphQl/Queries/AgendaItemQueries/variables/AgendaItemByOrganization.md b/docs/docs/auto-docs/GraphQl/Queries/AgendaItemQueries/variables/AgendaItemByOrganization.md deleted file mode 100644 index c95024914a..0000000000 --- a/docs/docs/auto-docs/GraphQl/Queries/AgendaItemQueries/variables/AgendaItemByOrganization.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [GraphQl/Queries/AgendaItemQueries](../README.md) / AgendaItemByOrganization - -# Variable: AgendaItemByOrganization - -> `const` **AgendaItemByOrganization**: `DocumentNode` - -Defined in: [src/GraphQl/Queries/AgendaItemQueries.ts:3](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/GraphQl/Queries/AgendaItemQueries.ts#L3) diff --git a/docs/docs/auto-docs/GraphQl/Queries/EventVolunteerQueries/README.md b/docs/docs/auto-docs/GraphQl/Queries/EventVolunteerQueries/README.md deleted file mode 100644 index 0c596e0620..0000000000 --- a/docs/docs/auto-docs/GraphQl/Queries/EventVolunteerQueries/README.md +++ /dev/null @@ -1,14 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / GraphQl/Queries/EventVolunteerQueries - -# GraphQl/Queries/EventVolunteerQueries - -## Variables - -- [EVENT\_VOLUNTEER\_GROUP\_LIST](variables/EVENT_VOLUNTEER_GROUP_LIST.md) -- [EVENT\_VOLUNTEER\_LIST](variables/EVENT_VOLUNTEER_LIST.md) -- [USER\_VOLUNTEER\_MEMBERSHIP](variables/USER_VOLUNTEER_MEMBERSHIP.md) -- [VOLUNTEER\_RANKING](variables/VOLUNTEER_RANKING.md) diff --git a/docs/docs/auto-docs/GraphQl/Queries/EventVolunteerQueries/variables/EVENT_VOLUNTEER_GROUP_LIST.md b/docs/docs/auto-docs/GraphQl/Queries/EventVolunteerQueries/variables/EVENT_VOLUNTEER_GROUP_LIST.md deleted file mode 100644 index 6b9e784ce8..0000000000 --- a/docs/docs/auto-docs/GraphQl/Queries/EventVolunteerQueries/variables/EVENT_VOLUNTEER_GROUP_LIST.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [GraphQl/Queries/EventVolunteerQueries](../README.md) / EVENT\_VOLUNTEER\_GROUP\_LIST - -# Variable: EVENT\_VOLUNTEER\_GROUP\_LIST - -> `const` **EVENT\_VOLUNTEER\_GROUP\_LIST**: `DocumentNode` - -Defined in: [src/GraphQl/Queries/EventVolunteerQueries.ts:41](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/GraphQl/Queries/EventVolunteerQueries.ts#L41) diff --git a/docs/docs/auto-docs/GraphQl/Queries/EventVolunteerQueries/variables/EVENT_VOLUNTEER_LIST.md b/docs/docs/auto-docs/GraphQl/Queries/EventVolunteerQueries/variables/EVENT_VOLUNTEER_LIST.md deleted file mode 100644 index 92e7c6e4a6..0000000000 --- a/docs/docs/auto-docs/GraphQl/Queries/EventVolunteerQueries/variables/EVENT_VOLUNTEER_LIST.md +++ /dev/null @@ -1,25 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [GraphQl/Queries/EventVolunteerQueries](../README.md) / EVENT\_VOLUNTEER\_LIST - -# Variable: EVENT\_VOLUNTEER\_LIST - -> `const` **EVENT\_VOLUNTEER\_LIST**: `DocumentNode` - -Defined in: [src/GraphQl/Queries/EventVolunteerQueries.ts:12](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/GraphQl/Queries/EventVolunteerQueries.ts#L12) - -GraphQL query to retrieve event volunteers. - -## Param - -The filter to apply to the query. - -## Param - -The order in which to return the results. - -## Returns - -The list of event volunteers. diff --git a/docs/docs/auto-docs/GraphQl/Queries/EventVolunteerQueries/variables/USER_VOLUNTEER_MEMBERSHIP.md b/docs/docs/auto-docs/GraphQl/Queries/EventVolunteerQueries/variables/USER_VOLUNTEER_MEMBERSHIP.md deleted file mode 100644 index f3fc5f78f9..0000000000 --- a/docs/docs/auto-docs/GraphQl/Queries/EventVolunteerQueries/variables/USER_VOLUNTEER_MEMBERSHIP.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [GraphQl/Queries/EventVolunteerQueries](../README.md) / USER\_VOLUNTEER\_MEMBERSHIP - -# Variable: USER\_VOLUNTEER\_MEMBERSHIP - -> `const` **USER\_VOLUNTEER\_MEMBERSHIP**: `DocumentNode` - -Defined in: [src/GraphQl/Queries/EventVolunteerQueries.ts:89](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/GraphQl/Queries/EventVolunteerQueries.ts#L89) diff --git a/docs/docs/auto-docs/GraphQl/Queries/EventVolunteerQueries/variables/VOLUNTEER_RANKING.md b/docs/docs/auto-docs/GraphQl/Queries/EventVolunteerQueries/variables/VOLUNTEER_RANKING.md deleted file mode 100644 index aaca559e66..0000000000 --- a/docs/docs/auto-docs/GraphQl/Queries/EventVolunteerQueries/variables/VOLUNTEER_RANKING.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [GraphQl/Queries/EventVolunteerQueries](../README.md) / VOLUNTEER\_RANKING - -# Variable: VOLUNTEER\_RANKING - -> `const` **VOLUNTEER\_RANKING**: `DocumentNode` - -Defined in: [src/GraphQl/Queries/EventVolunteerQueries.ts:120](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/GraphQl/Queries/EventVolunteerQueries.ts#L120) diff --git a/docs/docs/auto-docs/GraphQl/Queries/OrganizationQueries/README.md b/docs/docs/auto-docs/GraphQl/Queries/OrganizationQueries/README.md deleted file mode 100644 index 3ac3536541..0000000000 --- a/docs/docs/auto-docs/GraphQl/Queries/OrganizationQueries/README.md +++ /dev/null @@ -1,19 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / GraphQl/Queries/OrganizationQueries - -# GraphQl/Queries/OrganizationQueries - -## Variables - -- [ORGANIZATION\_ADMINS\_LIST](variables/ORGANIZATION_ADMINS_LIST.md) -- [ORGANIZATION\_ADVERTISEMENT\_LIST](variables/ORGANIZATION_ADVERTISEMENT_LIST.md) -- [ORGANIZATION\_FUNDS](variables/ORGANIZATION_FUNDS.md) -- [ORGANIZATION\_POST\_LIST](variables/ORGANIZATION_POST_LIST.md) -- [ORGANIZATION\_USER\_TAGS\_LIST](variables/ORGANIZATION_USER_TAGS_LIST.md) -- [USER\_CREATED\_ORGANIZATIONS](variables/USER_CREATED_ORGANIZATIONS.md) -- [USER\_JOINED\_ORGANIZATIONS](variables/USER_JOINED_ORGANIZATIONS.md) -- [USER\_ORGANIZATION\_CONNECTION](variables/USER_ORGANIZATION_CONNECTION.md) -- [VENUE\_LIST](variables/VENUE_LIST.md) diff --git a/docs/docs/auto-docs/GraphQl/Queries/OrganizationQueries/variables/ORGANIZATION_ADMINS_LIST.md b/docs/docs/auto-docs/GraphQl/Queries/OrganizationQueries/variables/ORGANIZATION_ADMINS_LIST.md deleted file mode 100644 index 06d693f77f..0000000000 --- a/docs/docs/auto-docs/GraphQl/Queries/OrganizationQueries/variables/ORGANIZATION_ADMINS_LIST.md +++ /dev/null @@ -1,21 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [GraphQl/Queries/OrganizationQueries](../README.md) / ORGANIZATION\_ADMINS\_LIST - -# Variable: ORGANIZATION\_ADMINS\_LIST - -> `const` **ORGANIZATION\_ADMINS\_LIST**: `DocumentNode` - -Defined in: [src/GraphQl/Queries/OrganizationQueries.ts:314](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/GraphQl/Queries/OrganizationQueries.ts#L314) - -GraphQL query to retrieve the list of admins for a specific organization. - -## Param - -The ID of the organization for which admins are being retrieved. - -## Returns - -The list of admins associated with the organization. diff --git a/docs/docs/auto-docs/GraphQl/Queries/OrganizationQueries/variables/ORGANIZATION_ADVERTISEMENT_LIST.md b/docs/docs/auto-docs/GraphQl/Queries/OrganizationQueries/variables/ORGANIZATION_ADVERTISEMENT_LIST.md deleted file mode 100644 index 6b2a583797..0000000000 --- a/docs/docs/auto-docs/GraphQl/Queries/OrganizationQueries/variables/ORGANIZATION_ADVERTISEMENT_LIST.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [GraphQl/Queries/OrganizationQueries](../README.md) / ORGANIZATION\_ADVERTISEMENT\_LIST - -# Variable: ORGANIZATION\_ADVERTISEMENT\_LIST - -> `const` **ORGANIZATION\_ADVERTISEMENT\_LIST**: `DocumentNode` - -Defined in: [src/GraphQl/Queries/OrganizationQueries.ts:134](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/GraphQl/Queries/OrganizationQueries.ts#L134) diff --git a/docs/docs/auto-docs/GraphQl/Queries/OrganizationQueries/variables/ORGANIZATION_FUNDS.md b/docs/docs/auto-docs/GraphQl/Queries/OrganizationQueries/variables/ORGANIZATION_FUNDS.md deleted file mode 100644 index a07c1a5f42..0000000000 --- a/docs/docs/auto-docs/GraphQl/Queries/OrganizationQueries/variables/ORGANIZATION_FUNDS.md +++ /dev/null @@ -1,21 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [GraphQl/Queries/OrganizationQueries](../README.md) / ORGANIZATION\_FUNDS - -# Variable: ORGANIZATION\_FUNDS - -> `const` **ORGANIZATION\_FUNDS**: `DocumentNode` - -Defined in: [src/GraphQl/Queries/OrganizationQueries.ts:335](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/GraphQl/Queries/OrganizationQueries.ts#L335) - -GraphQL query to retrieve the list of members for a specific organization. - -## Param - -The ID of the organization for which members are being retrieved. - -## Returns - -The list of members associated with the organization. diff --git a/docs/docs/auto-docs/GraphQl/Queries/OrganizationQueries/variables/ORGANIZATION_POST_LIST.md b/docs/docs/auto-docs/GraphQl/Queries/OrganizationQueries/variables/ORGANIZATION_POST_LIST.md deleted file mode 100644 index 6fc631960e..0000000000 --- a/docs/docs/auto-docs/GraphQl/Queries/OrganizationQueries/variables/ORGANIZATION_POST_LIST.md +++ /dev/null @@ -1,33 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [GraphQl/Queries/OrganizationQueries](../README.md) / ORGANIZATION\_POST\_LIST - -# Variable: ORGANIZATION\_POST\_LIST - -> `const` **ORGANIZATION\_POST\_LIST**: `DocumentNode` - -Defined in: [src/GraphQl/Queries/OrganizationQueries.ts:15](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/GraphQl/Queries/OrganizationQueries.ts#L15) - -GraphQL query to retrieve the list of organizations. - -## Param - -Optional. Number of organizations to retrieve in the first batch. - -## Param - -Optional. Number of organizations to skip before starting to collect the result set. - -## Param - -Optional. Filter organizations by a specified string. - -## Param - -Optional. The ID of a specific organization to retrieve. - -## Returns - -The list of organizations based on the applied filters. diff --git a/docs/docs/auto-docs/GraphQl/Queries/OrganizationQueries/variables/ORGANIZATION_USER_TAGS_LIST.md b/docs/docs/auto-docs/GraphQl/Queries/OrganizationQueries/variables/ORGANIZATION_USER_TAGS_LIST.md deleted file mode 100644 index a419be07d5..0000000000 --- a/docs/docs/auto-docs/GraphQl/Queries/OrganizationQueries/variables/ORGANIZATION_USER_TAGS_LIST.md +++ /dev/null @@ -1,37 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [GraphQl/Queries/OrganizationQueries](../README.md) / ORGANIZATION\_USER\_TAGS\_LIST - -# Variable: ORGANIZATION\_USER\_TAGS\_LIST - -> `const` **ORGANIZATION\_USER\_TAGS\_LIST**: `DocumentNode` - -Defined in: [src/GraphQl/Queries/OrganizationQueries.ts:83](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/GraphQl/Queries/OrganizationQueries.ts#L83) - -GraphQL query to retrieve the list of user tags belonging to an organization. - -## Param - -ID of the organization. - -## Param - -Number of tags to retrieve "after" (if provided) a certain tag. - -## Param - -Id of the last tag on the current page. - -## Param - -Number of tags to retrieve "before" (if provided) a certain tag. - -## Param - -Id of the first tag on the current page. - -## Returns - -The list of organizations based on the applied filters. diff --git a/docs/docs/auto-docs/GraphQl/Queries/OrganizationQueries/variables/USER_CREATED_ORGANIZATIONS.md b/docs/docs/auto-docs/GraphQl/Queries/OrganizationQueries/variables/USER_CREATED_ORGANIZATIONS.md deleted file mode 100644 index 45f5c88e0a..0000000000 --- a/docs/docs/auto-docs/GraphQl/Queries/OrganizationQueries/variables/USER_CREATED_ORGANIZATIONS.md +++ /dev/null @@ -1,21 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [GraphQl/Queries/OrganizationQueries](../README.md) / USER\_CREATED\_ORGANIZATIONS - -# Variable: USER\_CREATED\_ORGANIZATIONS - -> `const` **USER\_CREATED\_ORGANIZATIONS**: `DocumentNode` - -Defined in: [src/GraphQl/Queries/OrganizationQueries.ts:276](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/GraphQl/Queries/OrganizationQueries.ts#L276) - -GraphQL query to retrieve organizations created by a user. - -## Param - -The ID of the user for which created organizations are being retrieved. - -## Returns - -The list of organizations created by the user. diff --git a/docs/docs/auto-docs/GraphQl/Queries/OrganizationQueries/variables/USER_JOINED_ORGANIZATIONS.md b/docs/docs/auto-docs/GraphQl/Queries/OrganizationQueries/variables/USER_JOINED_ORGANIZATIONS.md deleted file mode 100644 index 0e96bcce6a..0000000000 --- a/docs/docs/auto-docs/GraphQl/Queries/OrganizationQueries/variables/USER_JOINED_ORGANIZATIONS.md +++ /dev/null @@ -1,21 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [GraphQl/Queries/OrganizationQueries](../README.md) / USER\_JOINED\_ORGANIZATIONS - -# Variable: USER\_JOINED\_ORGANIZATIONS - -> `const` **USER\_JOINED\_ORGANIZATIONS**: `DocumentNode` - -Defined in: [src/GraphQl/Queries/OrganizationQueries.ts:238](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/GraphQl/Queries/OrganizationQueries.ts#L238) - -GraphQL query to retrieve organizations joined by a user. - -## Param - -The ID of the user for which joined organizations are being retrieved. - -## Returns - -The list of organizations joined by the user. diff --git a/docs/docs/auto-docs/GraphQl/Queries/OrganizationQueries/variables/USER_ORGANIZATION_CONNECTION.md b/docs/docs/auto-docs/GraphQl/Queries/OrganizationQueries/variables/USER_ORGANIZATION_CONNECTION.md deleted file mode 100644 index a2a3eff789..0000000000 --- a/docs/docs/auto-docs/GraphQl/Queries/OrganizationQueries/variables/USER_ORGANIZATION_CONNECTION.md +++ /dev/null @@ -1,33 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [GraphQl/Queries/OrganizationQueries](../README.md) / USER\_ORGANIZATION\_CONNECTION - -# Variable: USER\_ORGANIZATION\_CONNECTION - -> `const` **USER\_ORGANIZATION\_CONNECTION**: `DocumentNode` - -Defined in: [src/GraphQl/Queries/OrganizationQueries.ts:182](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/GraphQl/Queries/OrganizationQueries.ts#L182) - -GraphQL query to retrieve organizations based on user connection. - -## Param - -Optional. Number of organizations to retrieve in the first batch. - -## Param - -Optional. Number of organizations to skip before starting to collect the result set. - -## Param - -Optional. Filter organizations by a specified string. - -## Param - -Optional. The ID of a specific organization to retrieve. - -## Returns - -The list of organizations based on the applied filters. diff --git a/docs/docs/auto-docs/GraphQl/Queries/OrganizationQueries/variables/VENUE_LIST.md b/docs/docs/auto-docs/GraphQl/Queries/OrganizationQueries/variables/VENUE_LIST.md deleted file mode 100644 index 696db672de..0000000000 --- a/docs/docs/auto-docs/GraphQl/Queries/OrganizationQueries/variables/VENUE_LIST.md +++ /dev/null @@ -1,21 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [GraphQl/Queries/OrganizationQueries](../README.md) / VENUE\_LIST - -# Variable: VENUE\_LIST - -> `const` **VENUE\_LIST**: `DocumentNode` - -Defined in: [src/GraphQl/Queries/OrganizationQueries.ts:357](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/GraphQl/Queries/OrganizationQueries.ts#L357) - -GraphQL query to retrieve the list of venues for a specific organization. - -## Param - -The ID of the organization for which venues are being retrieved. - -## Returns - -The list of venues associated with the organization. diff --git a/docs/docs/auto-docs/GraphQl/Queries/PlugInQueries/README.md b/docs/docs/auto-docs/GraphQl/Queries/PlugInQueries/README.md deleted file mode 100644 index 7862961d8e..0000000000 --- a/docs/docs/auto-docs/GraphQl/Queries/PlugInQueries/README.md +++ /dev/null @@ -1,20 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / GraphQl/Queries/PlugInQueries - -# GraphQl/Queries/PlugInQueries - -## Variables - -- [ADVERTISEMENTS\_GET](variables/ADVERTISEMENTS_GET.md) -- [CHAT\_BY\_ID](variables/CHAT_BY_ID.md) -- [CHATS\_LIST](variables/CHATS_LIST.md) -- [GROUP\_CHAT\_LIST](variables/GROUP_CHAT_LIST.md) -- [IS\_SAMPLE\_ORGANIZATION\_QUERY](variables/IS_SAMPLE_ORGANIZATION_QUERY.md) -- [ORGANIZATION\_CUSTOM\_FIELDS](variables/ORGANIZATION_CUSTOM_FIELDS.md) -- [ORGANIZATION\_EVENTS\_CONNECTION](variables/ORGANIZATION_EVENTS_CONNECTION.md) -- [PLUGIN\_GET](variables/PLUGIN_GET.md) -- [UNREAD\_CHAT\_LIST](variables/UNREAD_CHAT_LIST.md) -- [USER\_EVENTS\_VOLUNTEER](variables/USER_EVENTS_VOLUNTEER.md) diff --git a/docs/docs/auto-docs/GraphQl/Queries/PlugInQueries/variables/ADVERTISEMENTS_GET.md b/docs/docs/auto-docs/GraphQl/Queries/PlugInQueries/variables/ADVERTISEMENTS_GET.md deleted file mode 100644 index 34628f7c66..0000000000 --- a/docs/docs/auto-docs/GraphQl/Queries/PlugInQueries/variables/ADVERTISEMENTS_GET.md +++ /dev/null @@ -1,17 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [GraphQl/Queries/PlugInQueries](../README.md) / ADVERTISEMENTS\_GET - -# Variable: ADVERTISEMENTS\_GET - -> `const` **ADVERTISEMENTS\_GET**: `DocumentNode` - -Defined in: [src/GraphQl/Queries/PlugInQueries.ts:27](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/GraphQl/Queries/PlugInQueries.ts#L27) - -GraphQL query to retrieve a list of advertisements. - -## Returns - -The list of advertisements with details such as ID, name, type, organization ID, link, start date, and end date. diff --git a/docs/docs/auto-docs/GraphQl/Queries/PlugInQueries/variables/CHATS_LIST.md b/docs/docs/auto-docs/GraphQl/Queries/PlugInQueries/variables/CHATS_LIST.md deleted file mode 100644 index a4383ea080..0000000000 --- a/docs/docs/auto-docs/GraphQl/Queries/PlugInQueries/variables/CHATS_LIST.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [GraphQl/Queries/PlugInQueries](../README.md) / CHATS\_LIST - -# Variable: CHATS\_LIST - -> `const` **CHATS\_LIST**: `DocumentNode` - -Defined in: [src/GraphQl/Queries/PlugInQueries.ts:304](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/GraphQl/Queries/PlugInQueries.ts#L304) diff --git a/docs/docs/auto-docs/GraphQl/Queries/PlugInQueries/variables/CHAT_BY_ID.md b/docs/docs/auto-docs/GraphQl/Queries/PlugInQueries/variables/CHAT_BY_ID.md deleted file mode 100644 index 6cc6aaec26..0000000000 --- a/docs/docs/auto-docs/GraphQl/Queries/PlugInQueries/variables/CHAT_BY_ID.md +++ /dev/null @@ -1,21 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [GraphQl/Queries/PlugInQueries](../README.md) / CHAT\_BY\_ID - -# Variable: CHAT\_BY\_ID - -> `const` **CHAT\_BY\_ID**: `DocumentNode` - -Defined in: [src/GraphQl/Queries/PlugInQueries.ts:156](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/GraphQl/Queries/PlugInQueries.ts#L156) - -GraphQL query to retrieve a list of chats based on user ID. - -## Param - -The ID of the user for which chats are being retrieved. - -## Returns - -The list of chats associated with the user, including details such as ID, creator, messages, organization, and participating users. diff --git a/docs/docs/auto-docs/GraphQl/Queries/PlugInQueries/variables/GROUP_CHAT_LIST.md b/docs/docs/auto-docs/GraphQl/Queries/PlugInQueries/variables/GROUP_CHAT_LIST.md deleted file mode 100644 index b9976f93d5..0000000000 --- a/docs/docs/auto-docs/GraphQl/Queries/PlugInQueries/variables/GROUP_CHAT_LIST.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [GraphQl/Queries/PlugInQueries](../README.md) / GROUP\_CHAT\_LIST - -# Variable: GROUP\_CHAT\_LIST - -> `const` **GROUP\_CHAT\_LIST**: `DocumentNode` - -Defined in: [src/GraphQl/Queries/PlugInQueries.ts:210](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/GraphQl/Queries/PlugInQueries.ts#L210) diff --git a/docs/docs/auto-docs/GraphQl/Queries/PlugInQueries/variables/IS_SAMPLE_ORGANIZATION_QUERY.md b/docs/docs/auto-docs/GraphQl/Queries/PlugInQueries/variables/IS_SAMPLE_ORGANIZATION_QUERY.md deleted file mode 100644 index e54900d4f9..0000000000 --- a/docs/docs/auto-docs/GraphQl/Queries/PlugInQueries/variables/IS_SAMPLE_ORGANIZATION_QUERY.md +++ /dev/null @@ -1,21 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [GraphQl/Queries/PlugInQueries](../README.md) / IS\_SAMPLE\_ORGANIZATION\_QUERY - -# Variable: IS\_SAMPLE\_ORGANIZATION\_QUERY - -> `const` **IS\_SAMPLE\_ORGANIZATION\_QUERY**: `DocumentNode` - -Defined in: [src/GraphQl/Queries/PlugInQueries.ts:366](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/GraphQl/Queries/PlugInQueries.ts#L366) - -GraphQL query to check if an organization is a sample organization. - -## Param - -The ID of the organization being checked. - -## Returns - -A boolean indicating whether the organization is a sample organization. diff --git a/docs/docs/auto-docs/GraphQl/Queries/PlugInQueries/variables/ORGANIZATION_CUSTOM_FIELDS.md b/docs/docs/auto-docs/GraphQl/Queries/PlugInQueries/variables/ORGANIZATION_CUSTOM_FIELDS.md deleted file mode 100644 index bc0a662ecd..0000000000 --- a/docs/docs/auto-docs/GraphQl/Queries/PlugInQueries/variables/ORGANIZATION_CUSTOM_FIELDS.md +++ /dev/null @@ -1,21 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [GraphQl/Queries/PlugInQueries](../README.md) / ORGANIZATION\_CUSTOM\_FIELDS - -# Variable: ORGANIZATION\_CUSTOM\_FIELDS - -> `const` **ORGANIZATION\_CUSTOM\_FIELDS**: `DocumentNode` - -Defined in: [src/GraphQl/Queries/PlugInQueries.ts:379](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/GraphQl/Queries/PlugInQueries.ts#L379) - -GraphQL query to retrieve custom fields for a specific organization. - -## Param - -The ID of the organization for which custom fields are being retrieved. - -## Returns - -The list of custom fields associated with the organization, including details such as ID, type, and name. diff --git a/docs/docs/auto-docs/GraphQl/Queries/PlugInQueries/variables/ORGANIZATION_EVENTS_CONNECTION.md b/docs/docs/auto-docs/GraphQl/Queries/PlugInQueries/variables/ORGANIZATION_EVENTS_CONNECTION.md deleted file mode 100644 index 2010c656f7..0000000000 --- a/docs/docs/auto-docs/GraphQl/Queries/PlugInQueries/variables/ORGANIZATION_EVENTS_CONNECTION.md +++ /dev/null @@ -1,41 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [GraphQl/Queries/PlugInQueries](../README.md) / ORGANIZATION\_EVENTS\_CONNECTION - -# Variable: ORGANIZATION\_EVENTS\_CONNECTION - -> `const` **ORGANIZATION\_EVENTS\_CONNECTION**: `DocumentNode` - -Defined in: [src/GraphQl/Queries/PlugInQueries.ts:59](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/GraphQl/Queries/PlugInQueries.ts#L59) - -GraphQL query to retrieve a list of events based on organization connection. - -## Param - -The ID of the organization for which events are being retrieved. - -## Param - -Optional. Filter events by title containing a specified string. - -## Param - -Optional. Filter events by description containing a specified string. - -## Param - -Optional. Filter events by location containing a specified string. - -## Param - -Optional. Number of events to retrieve in the first batch. - -## Param - -Optional. Number of events to skip before starting to collect the result set. - -## Returns - -The list of events associated with the organization based on the applied filters. diff --git a/docs/docs/auto-docs/GraphQl/Queries/PlugInQueries/variables/PLUGIN_GET.md b/docs/docs/auto-docs/GraphQl/Queries/PlugInQueries/variables/PLUGIN_GET.md deleted file mode 100644 index fda7899274..0000000000 --- a/docs/docs/auto-docs/GraphQl/Queries/PlugInQueries/variables/PLUGIN_GET.md +++ /dev/null @@ -1,17 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [GraphQl/Queries/PlugInQueries](../README.md) / PLUGIN\_GET - -# Variable: PLUGIN\_GET - -> `const` **PLUGIN\_GET**: `DocumentNode` - -Defined in: [src/GraphQl/Queries/PlugInQueries.ts:9](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/GraphQl/Queries/PlugInQueries.ts#L9) - -GraphQL query to retrieve a list of plugins. - -## Returns - -The list of plugins with details such as ID, name, creator, description, and uninstalled organizations. diff --git a/docs/docs/auto-docs/GraphQl/Queries/PlugInQueries/variables/UNREAD_CHAT_LIST.md b/docs/docs/auto-docs/GraphQl/Queries/PlugInQueries/variables/UNREAD_CHAT_LIST.md deleted file mode 100644 index 2201ce57e4..0000000000 --- a/docs/docs/auto-docs/GraphQl/Queries/PlugInQueries/variables/UNREAD_CHAT_LIST.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [GraphQl/Queries/PlugInQueries](../README.md) / UNREAD\_CHAT\_LIST - -# Variable: UNREAD\_CHAT\_LIST - -> `const` **UNREAD\_CHAT\_LIST**: `DocumentNode` - -Defined in: [src/GraphQl/Queries/PlugInQueries.ts:257](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/GraphQl/Queries/PlugInQueries.ts#L257) diff --git a/docs/docs/auto-docs/GraphQl/Queries/PlugInQueries/variables/USER_EVENTS_VOLUNTEER.md b/docs/docs/auto-docs/GraphQl/Queries/PlugInQueries/variables/USER_EVENTS_VOLUNTEER.md deleted file mode 100644 index bafe712bad..0000000000 --- a/docs/docs/auto-docs/GraphQl/Queries/PlugInQueries/variables/USER_EVENTS_VOLUNTEER.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [GraphQl/Queries/PlugInQueries](../README.md) / USER\_EVENTS\_VOLUNTEER - -# Variable: USER\_EVENTS\_VOLUNTEER - -> `const` **USER\_EVENTS\_VOLUNTEER**: `DocumentNode` - -Defined in: [src/GraphQl/Queries/PlugInQueries.ts:102](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/GraphQl/Queries/PlugInQueries.ts#L102) diff --git a/docs/docs/auto-docs/GraphQl/Queries/Queries/README.md b/docs/docs/auto-docs/GraphQl/Queries/Queries/README.md deleted file mode 100644 index 5a6baf74bd..0000000000 --- a/docs/docs/auto-docs/GraphQl/Queries/Queries/README.md +++ /dev/null @@ -1,132 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / GraphQl/Queries/Queries - -# GraphQl/Queries/Queries - -## Variables - -- [ADMIN\_LIST](variables/ADMIN_LIST.md) -- [BLOCK\_PAGE\_MEMBER\_LIST](variables/BLOCK_PAGE_MEMBER_LIST.md) -- [CHECK\_AUTH](variables/CHECK_AUTH.md) -- [EVENT\_ATTENDEES](variables/EVENT_ATTENDEES.md) -- [EVENT\_CHECKINS](variables/EVENT_CHECKINS.md) -- [EVENT\_DETAILS](variables/EVENT_DETAILS.md) -- [EVENT\_FEEDBACKS](variables/EVENT_FEEDBACKS.md) -- [EVENT\_REGISTRANTS](variables/EVENT_REGISTRANTS.md) -- [GET\_COMMUNITY\_DATA](variables/GET_COMMUNITY_DATA.md) -- [GET\_COMMUNITY\_SESSION\_TIMEOUT\_DATA](variables/GET_COMMUNITY_SESSION_TIMEOUT_DATA.md) -- [MEMBERS\_LIST](variables/MEMBERS_LIST.md) -- [MEMBERSHIP\_REQUEST](variables/MEMBERSHIP_REQUEST.md) -- [ORGANIZATION\_CONNECTION\_LIST](variables/ORGANIZATION_CONNECTION_LIST.md) -- [ORGANIZATION\_DONATION\_CONNECTION\_LIST](variables/ORGANIZATION_DONATION_CONNECTION_LIST.md) -- [ORGANIZATION\_EVENT\_CONNECTION\_LIST](variables/ORGANIZATION_EVENT_CONNECTION_LIST.md) -- [ORGANIZATION\_EVENT\_LIST](variables/ORGANIZATION_EVENT_LIST.md) -- [ORGANIZATION\_LIST](variables/ORGANIZATION_LIST.md) -- [ORGANIZATIONS\_LIST](variables/ORGANIZATIONS_LIST.md) -- [ORGANIZATIONS\_MEMBER\_CONNECTION\_LIST](variables/ORGANIZATIONS_MEMBER_CONNECTION_LIST.md) -- [RECURRING\_EVENTS](variables/RECURRING_EVENTS.md) -- [USER\_DETAILS](variables/USER_DETAILS.md) -- [USER\_LIST](variables/USER_LIST.md) -- [USER\_LIST\_FOR\_TABLE](variables/USER_LIST_FOR_TABLE.md) -- [USER\_LIST\_REQUEST](variables/USER_LIST_REQUEST.md) -- [USER\_ORGANIZATION\_LIST](variables/USER_ORGANIZATION_LIST.md) -- [USERS\_CONNECTION\_LIST](variables/USERS_CONNECTION_LIST.md) - -## References - -### ACTION\_ITEM\_CATEGORY\_LIST - -Re-exports [ACTION_ITEM_CATEGORY_LIST](../ActionItemCategoryQueries/variables/ACTION_ITEM_CATEGORY_LIST.md) - -*** - -### ACTION\_ITEM\_LIST - -Re-exports [ACTION_ITEM_LIST](../ActionItemQueries/variables/ACTION_ITEM_LIST.md) - -*** - -### ADVERTISEMENTS\_GET - -Re-exports [ADVERTISEMENTS_GET](../PlugInQueries/variables/ADVERTISEMENTS_GET.md) - -*** - -### AGENDA\_ITEM\_CATEGORY\_LIST - -Re-exports [AGENDA_ITEM_CATEGORY_LIST](../AgendaCategoryQueries/variables/AGENDA_ITEM_CATEGORY_LIST.md) - -*** - -### AgendaItemByEvent - -Re-exports [AgendaItemByEvent](../AgendaItemQueries/variables/AgendaItemByEvent.md) - -*** - -### AgendaItemByOrganization - -Re-exports [AgendaItemByOrganization](../AgendaItemQueries/variables/AgendaItemByOrganization.md) - -*** - -### IS\_SAMPLE\_ORGANIZATION\_QUERY - -Re-exports [IS_SAMPLE_ORGANIZATION_QUERY](../PlugInQueries/variables/IS_SAMPLE_ORGANIZATION_QUERY.md) - -*** - -### ORGANIZATION\_ADMINS\_LIST - -Re-exports [ORGANIZATION_ADMINS_LIST](../OrganizationQueries/variables/ORGANIZATION_ADMINS_LIST.md) - -*** - -### ORGANIZATION\_ADVERTISEMENT\_LIST - -Re-exports [ORGANIZATION_ADVERTISEMENT_LIST](../OrganizationQueries/variables/ORGANIZATION_ADVERTISEMENT_LIST.md) - -*** - -### ORGANIZATION\_CUSTOM\_FIELDS - -Re-exports [ORGANIZATION_CUSTOM_FIELDS](../PlugInQueries/variables/ORGANIZATION_CUSTOM_FIELDS.md) - -*** - -### ORGANIZATION\_EVENTS\_CONNECTION - -Re-exports [ORGANIZATION_EVENTS_CONNECTION](../PlugInQueries/variables/ORGANIZATION_EVENTS_CONNECTION.md) - -*** - -### ORGANIZATION\_POST\_LIST - -Re-exports [ORGANIZATION_POST_LIST](../OrganizationQueries/variables/ORGANIZATION_POST_LIST.md) - -*** - -### PLUGIN\_GET - -Re-exports [PLUGIN_GET](../PlugInQueries/variables/PLUGIN_GET.md) - -*** - -### USER\_CREATED\_ORGANIZATIONS - -Re-exports [USER_CREATED_ORGANIZATIONS](../OrganizationQueries/variables/USER_CREATED_ORGANIZATIONS.md) - -*** - -### USER\_JOINED\_ORGANIZATIONS - -Re-exports [USER_JOINED_ORGANIZATIONS](../OrganizationQueries/variables/USER_JOINED_ORGANIZATIONS.md) - -*** - -### USER\_ORGANIZATION\_CONNECTION - -Re-exports [USER_ORGANIZATION_CONNECTION](../OrganizationQueries/variables/USER_ORGANIZATION_CONNECTION.md) diff --git a/docs/docs/auto-docs/GraphQl/Queries/Queries/variables/ADMIN_LIST.md b/docs/docs/auto-docs/GraphQl/Queries/Queries/variables/ADMIN_LIST.md deleted file mode 100644 index c589b85927..0000000000 --- a/docs/docs/auto-docs/GraphQl/Queries/Queries/variables/ADMIN_LIST.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [GraphQl/Queries/Queries](../README.md) / ADMIN\_LIST - -# Variable: ADMIN\_LIST - -> `const` **ADMIN\_LIST**: `DocumentNode` - -Defined in: [src/GraphQl/Queries/Queries.ts:707](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/GraphQl/Queries/Queries.ts#L707) diff --git a/docs/docs/auto-docs/GraphQl/Queries/Queries/variables/BLOCK_PAGE_MEMBER_LIST.md b/docs/docs/auto-docs/GraphQl/Queries/Queries/variables/BLOCK_PAGE_MEMBER_LIST.md deleted file mode 100644 index 3bc06557e1..0000000000 --- a/docs/docs/auto-docs/GraphQl/Queries/Queries/variables/BLOCK_PAGE_MEMBER_LIST.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [GraphQl/Queries/Queries](../README.md) / BLOCK\_PAGE\_MEMBER\_LIST - -# Variable: BLOCK\_PAGE\_MEMBER\_LIST - -> `const` **BLOCK\_PAGE\_MEMBER\_LIST**: `DocumentNode` - -Defined in: [src/GraphQl/Queries/Queries.ts:451](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/GraphQl/Queries/Queries.ts#L451) diff --git a/docs/docs/auto-docs/GraphQl/Queries/Queries/variables/CHECK_AUTH.md b/docs/docs/auto-docs/GraphQl/Queries/Queries/variables/CHECK_AUTH.md deleted file mode 100644 index 9e939c2ca3..0000000000 --- a/docs/docs/auto-docs/GraphQl/Queries/Queries/variables/CHECK_AUTH.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [GraphQl/Queries/Queries](../README.md) / CHECK\_AUTH - -# Variable: CHECK\_AUTH - -> `const` **CHECK\_AUTH**: `DocumentNode` - -Defined in: [src/GraphQl/Queries/Queries.ts:5](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/GraphQl/Queries/Queries.ts#L5) diff --git a/docs/docs/auto-docs/GraphQl/Queries/Queries/variables/EVENT_ATTENDEES.md b/docs/docs/auto-docs/GraphQl/Queries/Queries/variables/EVENT_ATTENDEES.md deleted file mode 100644 index fd092e50d9..0000000000 --- a/docs/docs/auto-docs/GraphQl/Queries/Queries/variables/EVENT_ATTENDEES.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [GraphQl/Queries/Queries](../README.md) / EVENT\_ATTENDEES - -# Variable: EVENT\_ATTENDEES - -> `const` **EVENT\_ATTENDEES**: `DocumentNode` - -Defined in: [src/GraphQl/Queries/Queries.ts:313](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/GraphQl/Queries/Queries.ts#L313) diff --git a/docs/docs/auto-docs/GraphQl/Queries/Queries/variables/EVENT_CHECKINS.md b/docs/docs/auto-docs/GraphQl/Queries/Queries/variables/EVENT_CHECKINS.md deleted file mode 100644 index 68ffae74c1..0000000000 --- a/docs/docs/auto-docs/GraphQl/Queries/Queries/variables/EVENT_CHECKINS.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [GraphQl/Queries/Queries](../README.md) / EVENT\_CHECKINS - -# Variable: EVENT\_CHECKINS - -> `const` **EVENT\_CHECKINS**: `DocumentNode` - -Defined in: [src/GraphQl/Queries/Queries.ts:341](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/GraphQl/Queries/Queries.ts#L341) diff --git a/docs/docs/auto-docs/GraphQl/Queries/Queries/variables/EVENT_DETAILS.md b/docs/docs/auto-docs/GraphQl/Queries/Queries/variables/EVENT_DETAILS.md deleted file mode 100644 index e0c92db9d0..0000000000 --- a/docs/docs/auto-docs/GraphQl/Queries/Queries/variables/EVENT_DETAILS.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [GraphQl/Queries/Queries](../README.md) / EVENT\_DETAILS - -# Variable: EVENT\_DETAILS - -> `const` **EVENT\_DETAILS**: `DocumentNode` - -Defined in: [src/GraphQl/Queries/Queries.ts:268](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/GraphQl/Queries/Queries.ts#L268) diff --git a/docs/docs/auto-docs/GraphQl/Queries/Queries/variables/EVENT_FEEDBACKS.md b/docs/docs/auto-docs/GraphQl/Queries/Queries/variables/EVENT_FEEDBACKS.md deleted file mode 100644 index 4b7fc47d50..0000000000 --- a/docs/docs/auto-docs/GraphQl/Queries/Queries/variables/EVENT_FEEDBACKS.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [GraphQl/Queries/Queries](../README.md) / EVENT\_FEEDBACKS - -# Variable: EVENT\_FEEDBACKS - -> `const` **EVENT\_FEEDBACKS**: `DocumentNode` - -Defined in: [src/GraphQl/Queries/Queries.ts:361](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/GraphQl/Queries/Queries.ts#L361) diff --git a/docs/docs/auto-docs/GraphQl/Queries/Queries/variables/EVENT_REGISTRANTS.md b/docs/docs/auto-docs/GraphQl/Queries/Queries/variables/EVENT_REGISTRANTS.md deleted file mode 100644 index 15cbd7c4ea..0000000000 --- a/docs/docs/auto-docs/GraphQl/Queries/Queries/variables/EVENT_REGISTRANTS.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [GraphQl/Queries/Queries](../README.md) / EVENT\_REGISTRANTS - -# Variable: EVENT\_REGISTRANTS - -> `const` **EVENT\_REGISTRANTS**: `DocumentNode` - -Defined in: [src/GraphQl/Queries/Queries.ts:331](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/GraphQl/Queries/Queries.ts#L331) diff --git a/docs/docs/auto-docs/GraphQl/Queries/Queries/variables/GET_COMMUNITY_DATA.md b/docs/docs/auto-docs/GraphQl/Queries/Queries/variables/GET_COMMUNITY_DATA.md deleted file mode 100644 index 5655143a04..0000000000 --- a/docs/docs/auto-docs/GraphQl/Queries/Queries/variables/GET_COMMUNITY_DATA.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [GraphQl/Queries/Queries](../README.md) / GET\_COMMUNITY\_DATA - -# Variable: GET\_COMMUNITY\_DATA - -> `const` **GET\_COMMUNITY\_DATA**: `DocumentNode` - -Defined in: [src/GraphQl/Queries/Queries.ts:839](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/GraphQl/Queries/Queries.ts#L839) diff --git a/docs/docs/auto-docs/GraphQl/Queries/Queries/variables/GET_COMMUNITY_SESSION_TIMEOUT_DATA.md b/docs/docs/auto-docs/GraphQl/Queries/Queries/variables/GET_COMMUNITY_SESSION_TIMEOUT_DATA.md deleted file mode 100644 index 64c5996be9..0000000000 --- a/docs/docs/auto-docs/GraphQl/Queries/Queries/variables/GET_COMMUNITY_SESSION_TIMEOUT_DATA.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [GraphQl/Queries/Queries](../README.md) / GET\_COMMUNITY\_SESSION\_TIMEOUT\_DATA - -# Variable: GET\_COMMUNITY\_SESSION\_TIMEOUT\_DATA - -> `const` **GET\_COMMUNITY\_SESSION\_TIMEOUT\_DATA**: `DocumentNode` - -Defined in: [src/GraphQl/Queries/Queries.ts:860](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/GraphQl/Queries/Queries.ts#L860) diff --git a/docs/docs/auto-docs/GraphQl/Queries/Queries/variables/MEMBERSHIP_REQUEST.md b/docs/docs/auto-docs/GraphQl/Queries/Queries/variables/MEMBERSHIP_REQUEST.md deleted file mode 100644 index 5d23ae369d..0000000000 --- a/docs/docs/auto-docs/GraphQl/Queries/Queries/variables/MEMBERSHIP_REQUEST.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [GraphQl/Queries/Queries](../README.md) / MEMBERSHIP\_REQUEST - -# Variable: MEMBERSHIP\_REQUEST - -> `const` **MEMBERSHIP\_REQUEST**: `DocumentNode` - -Defined in: [src/GraphQl/Queries/Queries.ts:724](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/GraphQl/Queries/Queries.ts#L724) diff --git a/docs/docs/auto-docs/GraphQl/Queries/Queries/variables/MEMBERS_LIST.md b/docs/docs/auto-docs/GraphQl/Queries/Queries/variables/MEMBERS_LIST.md deleted file mode 100644 index 19452d949b..0000000000 --- a/docs/docs/auto-docs/GraphQl/Queries/Queries/variables/MEMBERS_LIST.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [GraphQl/Queries/Queries](../README.md) / MEMBERS\_LIST - -# Variable: MEMBERS\_LIST - -> `const` **MEMBERS\_LIST**: `DocumentNode` - -Defined in: [src/GraphQl/Queries/Queries.ts:432](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/GraphQl/Queries/Queries.ts#L432) diff --git a/docs/docs/auto-docs/GraphQl/Queries/Queries/variables/ORGANIZATIONS_LIST.md b/docs/docs/auto-docs/GraphQl/Queries/Queries/variables/ORGANIZATIONS_LIST.md deleted file mode 100644 index 8385c51f06..0000000000 --- a/docs/docs/auto-docs/GraphQl/Queries/Queries/variables/ORGANIZATIONS_LIST.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [GraphQl/Queries/Queries](../README.md) / ORGANIZATIONS\_LIST - -# Variable: ORGANIZATIONS\_LIST - -> `const` **ORGANIZATIONS\_LIST**: `DocumentNode` - -Defined in: [src/GraphQl/Queries/Queries.ts:376](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/GraphQl/Queries/Queries.ts#L376) diff --git a/docs/docs/auto-docs/GraphQl/Queries/Queries/variables/ORGANIZATIONS_MEMBER_CONNECTION_LIST.md b/docs/docs/auto-docs/GraphQl/Queries/Queries/variables/ORGANIZATIONS_MEMBER_CONNECTION_LIST.md deleted file mode 100644 index 55f4581b64..0000000000 --- a/docs/docs/auto-docs/GraphQl/Queries/Queries/variables/ORGANIZATIONS_MEMBER_CONNECTION_LIST.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [GraphQl/Queries/Queries](../README.md) / ORGANIZATIONS\_MEMBER\_CONNECTION\_LIST - -# Variable: ORGANIZATIONS\_MEMBER\_CONNECTION\_LIST - -> `const` **ORGANIZATIONS\_MEMBER\_CONNECTION\_LIST**: `DocumentNode` - -Defined in: [src/GraphQl/Queries/Queries.ts:478](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/GraphQl/Queries/Queries.ts#L478) diff --git a/docs/docs/auto-docs/GraphQl/Queries/Queries/variables/ORGANIZATION_CONNECTION_LIST.md b/docs/docs/auto-docs/GraphQl/Queries/Queries/variables/ORGANIZATION_CONNECTION_LIST.md deleted file mode 100644 index 976ecc0931..0000000000 --- a/docs/docs/auto-docs/GraphQl/Queries/Queries/variables/ORGANIZATION_CONNECTION_LIST.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [GraphQl/Queries/Queries](../README.md) / ORGANIZATION\_CONNECTION\_LIST - -# Variable: ORGANIZATION\_CONNECTION\_LIST - -> `const` **ORGANIZATION\_CONNECTION\_LIST**: `DocumentNode` - -Defined in: [src/GraphQl/Queries/Queries.ts:67](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/GraphQl/Queries/Queries.ts#L67) diff --git a/docs/docs/auto-docs/GraphQl/Queries/Queries/variables/ORGANIZATION_DONATION_CONNECTION_LIST.md b/docs/docs/auto-docs/GraphQl/Queries/Queries/variables/ORGANIZATION_DONATION_CONNECTION_LIST.md deleted file mode 100644 index 84210944c1..0000000000 --- a/docs/docs/auto-docs/GraphQl/Queries/Queries/variables/ORGANIZATION_DONATION_CONNECTION_LIST.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [GraphQl/Queries/Queries](../README.md) / ORGANIZATION\_DONATION\_CONNECTION\_LIST - -# Variable: ORGANIZATION\_DONATION\_CONNECTION\_LIST - -> `const` **ORGANIZATION\_DONATION\_CONNECTION\_LIST**: `DocumentNode` - -Defined in: [src/GraphQl/Queries/Queries.ts:686](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/GraphQl/Queries/Queries.ts#L686) diff --git a/docs/docs/auto-docs/GraphQl/Queries/Queries/variables/ORGANIZATION_EVENT_CONNECTION_LIST.md b/docs/docs/auto-docs/GraphQl/Queries/Queries/variables/ORGANIZATION_EVENT_CONNECTION_LIST.md deleted file mode 100644 index 3c9bb0821b..0000000000 --- a/docs/docs/auto-docs/GraphQl/Queries/Queries/variables/ORGANIZATION_EVENT_CONNECTION_LIST.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [GraphQl/Queries/Queries](../README.md) / ORGANIZATION\_EVENT\_CONNECTION\_LIST - -# Variable: ORGANIZATION\_EVENT\_CONNECTION\_LIST - -> `const` **ORGANIZATION\_EVENT\_CONNECTION\_LIST**: `DocumentNode` - -Defined in: [src/GraphQl/Queries/Queries.ts:630](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/GraphQl/Queries/Queries.ts#L630) diff --git a/docs/docs/auto-docs/GraphQl/Queries/Queries/variables/ORGANIZATION_EVENT_LIST.md b/docs/docs/auto-docs/GraphQl/Queries/Queries/variables/ORGANIZATION_EVENT_LIST.md deleted file mode 100644 index e914c0cadd..0000000000 --- a/docs/docs/auto-docs/GraphQl/Queries/Queries/variables/ORGANIZATION_EVENT_LIST.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [GraphQl/Queries/Queries](../README.md) / ORGANIZATION\_EVENT\_LIST - -# Variable: ORGANIZATION\_EVENT\_LIST - -> `const` **ORGANIZATION\_EVENT\_LIST**: `DocumentNode` - -Defined in: [src/GraphQl/Queries/Queries.ts:611](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/GraphQl/Queries/Queries.ts#L611) diff --git a/docs/docs/auto-docs/GraphQl/Queries/Queries/variables/ORGANIZATION_LIST.md b/docs/docs/auto-docs/GraphQl/Queries/Queries/variables/ORGANIZATION_LIST.md deleted file mode 100644 index 0b1a120c9a..0000000000 --- a/docs/docs/auto-docs/GraphQl/Queries/Queries/variables/ORGANIZATION_LIST.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [GraphQl/Queries/Queries](../README.md) / ORGANIZATION\_LIST - -# Variable: ORGANIZATION\_LIST - -> `const` **ORGANIZATION\_LIST**: `DocumentNode` - -Defined in: [src/GraphQl/Queries/Queries.ts:35](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/GraphQl/Queries/Queries.ts#L35) diff --git a/docs/docs/auto-docs/GraphQl/Queries/Queries/variables/RECURRING_EVENTS.md b/docs/docs/auto-docs/GraphQl/Queries/Queries/variables/RECURRING_EVENTS.md deleted file mode 100644 index b83deca59a..0000000000 --- a/docs/docs/auto-docs/GraphQl/Queries/Queries/variables/RECURRING_EVENTS.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [GraphQl/Queries/Queries](../README.md) / RECURRING\_EVENTS - -# Variable: RECURRING\_EVENTS - -> `const` **RECURRING\_EVENTS**: `DocumentNode` - -Defined in: [src/GraphQl/Queries/Queries.ts:299](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/GraphQl/Queries/Queries.ts#L299) diff --git a/docs/docs/auto-docs/GraphQl/Queries/Queries/variables/USERS_CONNECTION_LIST.md b/docs/docs/auto-docs/GraphQl/Queries/Queries/variables/USERS_CONNECTION_LIST.md deleted file mode 100644 index 8e822fe1b4..0000000000 --- a/docs/docs/auto-docs/GraphQl/Queries/Queries/variables/USERS_CONNECTION_LIST.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [GraphQl/Queries/Queries](../README.md) / USERS\_CONNECTION\_LIST - -# Variable: USERS\_CONNECTION\_LIST - -> `const` **USERS\_CONNECTION\_LIST**: `DocumentNode` - -Defined in: [src/GraphQl/Queries/Queries.ts:750](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/GraphQl/Queries/Queries.ts#L750) diff --git a/docs/docs/auto-docs/GraphQl/Queries/Queries/variables/USER_DETAILS.md b/docs/docs/auto-docs/GraphQl/Queries/Queries/variables/USER_DETAILS.md deleted file mode 100644 index fdb3856e02..0000000000 --- a/docs/docs/auto-docs/GraphQl/Queries/Queries/variables/USER_DETAILS.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [GraphQl/Queries/Queries](../README.md) / USER\_DETAILS - -# Variable: USER\_DETAILS - -> `const` **USER\_DETAILS**: `DocumentNode` - -Defined in: [src/GraphQl/Queries/Queries.ts:522](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/GraphQl/Queries/Queries.ts#L522) diff --git a/docs/docs/auto-docs/GraphQl/Queries/Queries/variables/USER_LIST.md b/docs/docs/auto-docs/GraphQl/Queries/Queries/variables/USER_LIST.md deleted file mode 100644 index 98e9f9cf2b..0000000000 --- a/docs/docs/auto-docs/GraphQl/Queries/Queries/variables/USER_LIST.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [GraphQl/Queries/Queries](../README.md) / USER\_LIST - -# Variable: USER\_LIST - -> `const` **USER\_LIST**: `DocumentNode` - -Defined in: [src/GraphQl/Queries/Queries.ts:109](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/GraphQl/Queries/Queries.ts#L109) diff --git a/docs/docs/auto-docs/GraphQl/Queries/Queries/variables/USER_LIST_FOR_TABLE.md b/docs/docs/auto-docs/GraphQl/Queries/Queries/variables/USER_LIST_FOR_TABLE.md deleted file mode 100644 index dec135f2a3..0000000000 --- a/docs/docs/auto-docs/GraphQl/Queries/Queries/variables/USER_LIST_FOR_TABLE.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [GraphQl/Queries/Queries](../README.md) / USER\_LIST\_FOR\_TABLE - -# Variable: USER\_LIST\_FOR\_TABLE - -> `const` **USER\_LIST\_FOR\_TABLE**: `DocumentNode` - -Defined in: [src/GraphQl/Queries/Queries.ts:205](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/GraphQl/Queries/Queries.ts#L205) diff --git a/docs/docs/auto-docs/GraphQl/Queries/Queries/variables/USER_LIST_REQUEST.md b/docs/docs/auto-docs/GraphQl/Queries/Queries/variables/USER_LIST_REQUEST.md deleted file mode 100644 index 9c2c7298a5..0000000000 --- a/docs/docs/auto-docs/GraphQl/Queries/Queries/variables/USER_LIST_REQUEST.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [GraphQl/Queries/Queries](../README.md) / USER\_LIST\_REQUEST - -# Variable: USER\_LIST\_REQUEST - -> `const` **USER\_LIST\_REQUEST**: `DocumentNode` - -Defined in: [src/GraphQl/Queries/Queries.ts:225](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/GraphQl/Queries/Queries.ts#L225) diff --git a/docs/docs/auto-docs/GraphQl/Queries/Queries/variables/USER_ORGANIZATION_LIST.md b/docs/docs/auto-docs/GraphQl/Queries/Queries/variables/USER_ORGANIZATION_LIST.md deleted file mode 100644 index e17fb95327..0000000000 --- a/docs/docs/auto-docs/GraphQl/Queries/Queries/variables/USER_ORGANIZATION_LIST.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [GraphQl/Queries/Queries](../README.md) / USER\_ORGANIZATION\_LIST - -# Variable: USER\_ORGANIZATION\_LIST - -> `const` **USER\_ORGANIZATION\_LIST**: `DocumentNode` - -Defined in: [src/GraphQl/Queries/Queries.ts:508](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/GraphQl/Queries/Queries.ts#L508) diff --git a/docs/docs/auto-docs/GraphQl/Queries/fundQueries/README.md b/docs/docs/auto-docs/GraphQl/Queries/fundQueries/README.md deleted file mode 100644 index 3da9c8c750..0000000000 --- a/docs/docs/auto-docs/GraphQl/Queries/fundQueries/README.md +++ /dev/null @@ -1,15 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / GraphQl/Queries/fundQueries - -# GraphQl/Queries/fundQueries - -## Variables - -- [FUND\_CAMPAIGN](variables/FUND_CAMPAIGN.md) -- [FUND\_CAMPAIGN\_PLEDGE](variables/FUND_CAMPAIGN_PLEDGE.md) -- [FUND\_LIST](variables/FUND_LIST.md) -- [USER\_FUND\_CAMPAIGNS](variables/USER_FUND_CAMPAIGNS.md) -- [USER\_PLEDGES](variables/USER_PLEDGES.md) diff --git a/docs/docs/auto-docs/GraphQl/Queries/fundQueries/variables/FUND_CAMPAIGN.md b/docs/docs/auto-docs/GraphQl/Queries/fundQueries/variables/FUND_CAMPAIGN.md deleted file mode 100644 index 0c4b166732..0000000000 --- a/docs/docs/auto-docs/GraphQl/Queries/fundQueries/variables/FUND_CAMPAIGN.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [GraphQl/Queries/fundQueries](../README.md) / FUND\_CAMPAIGN - -# Variable: FUND\_CAMPAIGN - -> `const` **FUND\_CAMPAIGN**: `DocumentNode` - -Defined in: [src/GraphQl/Queries/fundQueries.ts:39](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/GraphQl/Queries/fundQueries.ts#L39) diff --git a/docs/docs/auto-docs/GraphQl/Queries/fundQueries/variables/FUND_CAMPAIGN_PLEDGE.md b/docs/docs/auto-docs/GraphQl/Queries/fundQueries/variables/FUND_CAMPAIGN_PLEDGE.md deleted file mode 100644 index 58851f5755..0000000000 --- a/docs/docs/auto-docs/GraphQl/Queries/fundQueries/variables/FUND_CAMPAIGN_PLEDGE.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [GraphQl/Queries/fundQueries](../README.md) / FUND\_CAMPAIGN\_PLEDGE - -# Variable: FUND\_CAMPAIGN\_PLEDGE - -> `const` **FUND\_CAMPAIGN\_PLEDGE**: `DocumentNode` - -Defined in: [src/GraphQl/Queries/fundQueries.ts:60](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/GraphQl/Queries/fundQueries.ts#L60) diff --git a/docs/docs/auto-docs/GraphQl/Queries/fundQueries/variables/FUND_LIST.md b/docs/docs/auto-docs/GraphQl/Queries/fundQueries/variables/FUND_LIST.md deleted file mode 100644 index 82ec2fb69a..0000000000 --- a/docs/docs/auto-docs/GraphQl/Queries/fundQueries/variables/FUND_LIST.md +++ /dev/null @@ -1,25 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [GraphQl/Queries/fundQueries](../README.md) / FUND\_LIST - -# Variable: FUND\_LIST - -> `const` **FUND\_LIST**: `DocumentNode` - -Defined in: [src/GraphQl/Queries/fundQueries.ts:11](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/GraphQl/Queries/fundQueries.ts#L11) - -GraphQL query to retrieve the list of members for a specific organization. - -## Param - -The ID of the organization for which members are being retrieved. - -## Param - -The filter to search for a specific member. - -## Returns - -The list of members associated with the organization. diff --git a/docs/docs/auto-docs/GraphQl/Queries/fundQueries/variables/USER_FUND_CAMPAIGNS.md b/docs/docs/auto-docs/GraphQl/Queries/fundQueries/variables/USER_FUND_CAMPAIGNS.md deleted file mode 100644 index 46cebc0ce1..0000000000 --- a/docs/docs/auto-docs/GraphQl/Queries/fundQueries/variables/USER_FUND_CAMPAIGNS.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [GraphQl/Queries/fundQueries](../README.md) / USER\_FUND\_CAMPAIGNS - -# Variable: USER\_FUND\_CAMPAIGNS - -> `const` **USER\_FUND\_CAMPAIGNS**: `DocumentNode` - -Defined in: [src/GraphQl/Queries/fundQueries.ts:91](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/GraphQl/Queries/fundQueries.ts#L91) diff --git a/docs/docs/auto-docs/GraphQl/Queries/fundQueries/variables/USER_PLEDGES.md b/docs/docs/auto-docs/GraphQl/Queries/fundQueries/variables/USER_PLEDGES.md deleted file mode 100644 index 4c5cd0e314..0000000000 --- a/docs/docs/auto-docs/GraphQl/Queries/fundQueries/variables/USER_PLEDGES.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [GraphQl/Queries/fundQueries](../README.md) / USER\_PLEDGES - -# Variable: USER\_PLEDGES - -> `const` **USER\_PLEDGES**: `DocumentNode` - -Defined in: [src/GraphQl/Queries/fundQueries.ts:107](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/GraphQl/Queries/fundQueries.ts#L107) diff --git a/docs/docs/auto-docs/GraphQl/Queries/userTagQueries/README.md b/docs/docs/auto-docs/GraphQl/Queries/userTagQueries/README.md deleted file mode 100644 index ee918283dd..0000000000 --- a/docs/docs/auto-docs/GraphQl/Queries/userTagQueries/README.md +++ /dev/null @@ -1,13 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / GraphQl/Queries/userTagQueries - -# GraphQl/Queries/userTagQueries - -## Variables - -- [USER\_TAG\_SUB\_TAGS](variables/USER_TAG_SUB_TAGS.md) -- [USER\_TAGS\_ASSIGNED\_MEMBERS](variables/USER_TAGS_ASSIGNED_MEMBERS.md) -- [USER\_TAGS\_MEMBERS\_TO\_ASSIGN\_TO](variables/USER_TAGS_MEMBERS_TO_ASSIGN_TO.md) diff --git a/docs/docs/auto-docs/GraphQl/Queries/userTagQueries/variables/USER_TAGS_ASSIGNED_MEMBERS.md b/docs/docs/auto-docs/GraphQl/Queries/userTagQueries/variables/USER_TAGS_ASSIGNED_MEMBERS.md deleted file mode 100644 index 54fb7bc22e..0000000000 --- a/docs/docs/auto-docs/GraphQl/Queries/userTagQueries/variables/USER_TAGS_ASSIGNED_MEMBERS.md +++ /dev/null @@ -1,21 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [GraphQl/Queries/userTagQueries](../README.md) / USER\_TAGS\_ASSIGNED\_MEMBERS - -# Variable: USER\_TAGS\_ASSIGNED\_MEMBERS - -> `const` **USER\_TAGS\_ASSIGNED\_MEMBERS**: `DocumentNode` - -Defined in: [src/GraphQl/Queries/userTagQueries.ts:10](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/GraphQl/Queries/userTagQueries.ts#L10) - -GraphQL query to retrieve organization members assigned a certain tag. - -## Param - -The ID of the tag that is assigned. - -## Returns - -The list of organization members. diff --git a/docs/docs/auto-docs/GraphQl/Queries/userTagQueries/variables/USER_TAGS_MEMBERS_TO_ASSIGN_TO.md b/docs/docs/auto-docs/GraphQl/Queries/userTagQueries/variables/USER_TAGS_MEMBERS_TO_ASSIGN_TO.md deleted file mode 100644 index e792b8ec11..0000000000 --- a/docs/docs/auto-docs/GraphQl/Queries/userTagQueries/variables/USER_TAGS_MEMBERS_TO_ASSIGN_TO.md +++ /dev/null @@ -1,21 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [GraphQl/Queries/userTagQueries](../README.md) / USER\_TAGS\_MEMBERS\_TO\_ASSIGN\_TO - -# Variable: USER\_TAGS\_MEMBERS\_TO\_ASSIGN\_TO - -> `const` **USER\_TAGS\_MEMBERS\_TO\_ASSIGN\_TO**: `DocumentNode` - -Defined in: [src/GraphQl/Queries/userTagQueries.ts:119](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/GraphQl/Queries/userTagQueries.ts#L119) - -GraphQL query to retrieve organization members that aren't assigned a certain tag. - -## Param - -The ID of the tag. - -## Returns - -The list of organization members. diff --git a/docs/docs/auto-docs/GraphQl/Queries/userTagQueries/variables/USER_TAG_SUB_TAGS.md b/docs/docs/auto-docs/GraphQl/Queries/userTagQueries/variables/USER_TAG_SUB_TAGS.md deleted file mode 100644 index afe6de08b7..0000000000 --- a/docs/docs/auto-docs/GraphQl/Queries/userTagQueries/variables/USER_TAG_SUB_TAGS.md +++ /dev/null @@ -1,21 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [GraphQl/Queries/userTagQueries](../README.md) / USER\_TAG\_SUB\_TAGS - -# Variable: USER\_TAG\_SUB\_TAGS - -> `const` **USER\_TAG\_SUB\_TAGS**: `DocumentNode` - -Defined in: [src/GraphQl/Queries/userTagQueries.ts:60](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/GraphQl/Queries/userTagQueries.ts#L60) - -GraphQL query to retrieve the sub tags of a certain tag. - -## Param - -The ID of the parent tag. - -## Returns - -The list of sub tags. diff --git a/docs/docs/auto-docs/README.md b/docs/docs/auto-docs/README.md deleted file mode 100644 index cdfd8da1c5..0000000000 --- a/docs/docs/auto-docs/README.md +++ /dev/null @@ -1,60 +0,0 @@ -**talawa-admin** - -*** - -# Talawa Admin - -💬 Join the community on Slack from our [Palisadoes Foundation GitHub Home Page](https://github.com/PalisadoesFoundation) - -![talawa-logo-lite-200x200](https://github.com/PalisadoesFoundation/talawa-admin/assets/16875803/26291ec5-d3c1-4135-8bc7-80885dff613d) - -[![License: GPL v3](https://img.shields.io/badge/License-GPLv3-blue.svg)](https://www.gnu.org/licenses/gpl-3.0) -[![GitHub stars](https://img.shields.io/github/stars/PalisadoesFoundation/talawa-admin.svg?style=social&label=Star&maxAge=2592000)](https://github.com/PalisadoesFoundation/talawa-admin) -[![GitHub forks](https://img.shields.io/github/forks/PalisadoesFoundation/talawa-admin.svg?style=social&label=Fork&maxAge=2592000)](https://github.com/PalisadoesFoundation/talawa-admin) -[![codecov](https://codecov.io/gh/PalisadoesFoundation/talawa-admin/branch/develop/graph/badge.svg?token=II0R0RREES)](https://codecov.io/gh/PalisadoesFoundation/talawa-admin) - -Talawa is a modular open source project to manage group activities of both non-profit organizations and businesses. - -Core features include: - -1. Membership management -2. Groups management -3. Event registrations -4. Recurring meetings -5. Facilities registrations - -`talawa` is based on the original `quito` code created by the [Palisadoes Foundation][pfd] as part of its annual Calico Challenge program. Calico provides paid summer internships for Jamaican university students to work on selected open source projects. They are mentored by software professionals and receive stipends based on the completion of predefined milestones. Calico was started in 2015. Visit [The Palisadoes Foundation's website](http://www.palisadoes.org/) for more details on its origin and activities. - -# Table of Contents - - - -- [Talawa Components](#talawa-components) -- [Documentation](#documentation) -- [Videos](#videos) - - - -# Talawa Components - -`talawa` has these major software components: - -1. **talawa**: [A mobile application with social media features](https://github.com/PalisadoesFoundation/talawa) -1. **talawa-api**: [An API providing access to user data and features](https://github.com/PalisadoesFoundation/talawa-api) -1. **talawa-admin**: [A web based administrative portal](https://github.com/PalisadoesFoundation/talawa-admin) -1. **talawa-docs**: [The online documentation website](https://github.com/PalisadoesFoundation/talawa-docs) - -# Documentation - -1. You can install the software for this repository using the steps in our [INSTALLATION.md](_media/INSTALLATION.md) file. -1. Do you want to contribute to our code base? Look at our [CONTRIBUTING.md](_media/CONTRIBUTING.md) file to get started. There you'll also find links to: - 1. Our code of conduct documentation in the [CODE_OF_CONDUCT.md](_media/CODE_OF_CONDUCT.md) file. - 1. How we handle the processing of new and existing issues in our [ISSUE_GUIDELINES.md](_media/ISSUE_GUIDELINES.md) file. - 1. The methodologies we use to manage our pull requests in our [PR_GUIDELINES.md](_media/PR_GUIDELINES.md) file. -1. The `talawa` documentation can be found at our [docs.talawa.io](https://docs.talawa.io) site. - 1. It is automatically generated from the markdown files stored in our [Talawa-Docs GitHub repository](https://github.com/PalisadoesFoundation/talawa-docs). This makes it easy for you to update our documenation. - -# Videos - -1. Visit our [YouTube Channel playlists](https://www.youtube.com/@PalisadoesOrganization/playlists) for more insights - 1. The "[Getting Started - Developers](https://www.youtube.com/watch?v=YpBUoHxEeyg&list=PLv50qHwThlJUIzscg9a80a9-HmAlmUdCF&index=1)" videos are extremely helpful for new open source contributors. diff --git a/docs/docs/auto-docs/_media/CODE_OF_CONDUCT.md b/docs/docs/auto-docs/_media/CODE_OF_CONDUCT.md deleted file mode 100644 index b82fab3779..0000000000 --- a/docs/docs/auto-docs/_media/CODE_OF_CONDUCT.md +++ /dev/null @@ -1,150 +0,0 @@ -# Contributor Covenant Code of Conduct - -# Table of Contents - - - -- [Our Pledge](#our-pledge) -- [Our Standards](#our-standards) -- [Enforcement Responsibilities](#enforcement-responsibilities) -- [Scope](#scope) -- [Enforcement](#enforcement) -- [Enforcement Guidelines](#enforcement-guidelines) - - [1. Correction](#1-correction) - - [2. Warning](#2-warning) - - [3. Temporary Ban](#3-temporary-ban) - - [4. Permanent Ban](#4-permanent-ban) -- [Attribution](#attribution) - - - -## Our Pledge - -We as members, contributors, and leaders pledge to make participation in our -community a harassment-free experience for everyone, regardless of age, body -size, visible or invisible disability, ethnicity, sex characteristics, gender -identity and expression, level of experience, education, socio-economic status, -nationality, personal appearance, race, caste, color, religion, or sexual identity -and orientation. - -We pledge to act and interact in ways that contribute to an open, welcoming, -diverse, inclusive, and healthy community. - -## Our Standards - -Examples of behavior that contributes to a positive environment for our -community include: - -- Demonstrating empathy and kindness toward other people -- Being respectful of differing opinions, viewpoints, and experiences -- Giving and gracefully accepting constructive feedback -- Accepting responsibility and apologizing to those affected by our mistakes, - and learning from the experience -- Focusing on what is best not just for us as individuals, but for the - overall community - -Examples of unacceptable behavior include: - -- The use of sexualized language or imagery, and sexual attention or - advances of any kind -- Trolling, insulting or derogatory comments, and personal or political attacks -- Public or private harassment -- Publishing others' private information, such as a physical or email - address, without their explicit permission -- Other conduct which could reasonably be considered inappropriate in a - professional setting - -## Enforcement Responsibilities - -Community leaders are responsible for clarifying and enforcing our standards of -acceptable behavior and will take appropriate and fair corrective action in -response to any behavior that they deem inappropriate, threatening, offensive, -or harmful. - -Community leaders have the right and responsibility to remove, edit, or reject -comments, commits, code, wiki edits, issues, and other contributions that are -not aligned to this Code of Conduct, and will communicate reasons for moderation -decisions when appropriate. - -## Scope - -This Code of Conduct applies within all community spaces, and also applies when -an individual is officially representing the community in public spaces. -Examples of representing our community include using an official e-mail address, -posting via an official social media account, or acting as an appointed -representative at an online or offline event. - -## Enforcement - -Instances of abusive, harassing, or otherwise unacceptable behavior may be -reported to the community leaders responsible for enforcement at [The Palisadoes Foundation](http://www.palisadoes.org/) - -All complaints will be reviewed and investigated promptly and fairly. - -All community leaders are obligated to respect the privacy and security of the -reporter of any incident. - -## Enforcement Guidelines - -Community leaders will follow these Community Impact Guidelines in determining -the consequences for any action they deem in violation of this Code of Conduct: - -### 1. Correction - -**Community Impact**: Use of inappropriate language or other behavior deemed -unprofessional or unwelcome in the community. - -**Consequence**: A private, written warning from community leaders, providing -clarity around the nature of the violation and an explanation of why the -behavior was inappropriate. A public apology may be requested. - -### 2. Warning - -**Community Impact**: A violation through a single incident or series -of actions. - -**Consequence**: A warning with consequences for continued behavior. No -interaction with the people involved, including unsolicited interaction with -those enforcing the Code of Conduct, for a specified period of time. This -includes avoiding interactions in community spaces as well as external channels -like social media. Violating these terms may lead to a temporary or -permanent ban. - -### 3. Temporary Ban - -**Community Impact**: A serious violation of community standards, including -sustained inappropriate behavior. - -**Consequence**: A temporary ban from any sort of interaction or public -communication with the community for a specified period of time. No public or -private interaction with the people involved, including unsolicited interaction -with those enforcing the Code of Conduct, is allowed during this period. -Violating these terms may lead to a permanent ban. - -### 4. Permanent Ban - -**Community Impact**: Demonstrating a pattern of violation of community -standards, including sustained inappropriate behavior, harassment of an -individual, or aggression toward or disparagement of classes of individuals. - -**Consequence**: A permanent ban from any sort of public interaction within -the community. - -## Attribution - -This Code of Conduct is adapted from the [Contributor Covenant][homepage], -version 2.0, available at -[https://www.contributor-covenant.org/version/2/0/code_of_conduct.html][v2.0]. - -Community Impact Guidelines were inspired by -[Mozilla's code of conduct enforcement ladder][mozilla coc]. - -For answers to common questions about this code of conduct, see the FAQ at -[https://www.contributor-covenant.org/faq][faq]. Translations are available -at [https://www.contributor-covenant.org/translations][translations]. - -[homepage]: https://www.contributor-covenant.org -[v2.0]: https://www.contributor-covenant.org/version/2/0/code_of_conduct.html -[mozilla coc]: https://github.com/mozilla/diversity -[faq]: https://www.contributor-covenant.org/faq -[translations]: https://www.contributor-covenant.org/translations diff --git a/docs/docs/auto-docs/_media/CONTRIBUTING.md b/docs/docs/auto-docs/_media/CONTRIBUTING.md deleted file mode 100644 index dbe448c807..0000000000 --- a/docs/docs/auto-docs/_media/CONTRIBUTING.md +++ /dev/null @@ -1,179 +0,0 @@ -# Contributing to Talawa-Admin - -Thank you for your interest in contributing to Talawa Admin. Regardless of the size of the contribution you make, all contributions are welcome and are appreciated. - -If you are new to contributing to open source, please read the Open Source Guides on [How to Contribute to Open Source](https://opensource.guide/how-to-contribute/). - -## Table of Contents - - - -- [Code of Conduct](#code-of-conduct) -- [Videos](#videos) -- [Ways to Contribute](#ways-to-contribute) - - [Our Development Process](#our-development-process) - - [Issues](#issues) - - [Pull Requests](#pull-requests) - - [Branching Strategy](#branching-strategy) - - [Conflict Resolution](#conflict-resolution) - - [Contributing Code](#contributing-code) -- [Internships](#internships) -- [Community](#community) - - - -## Code of Conduct - -A safe environment is required for everyone to contribute. Read our [Code of Conduct Guide](CODE_OF_CONDUCT.md) to understand what this means. Let us know immediately if you have unacceptable experiences in this area. - -No one should fear voicing their opinion. Respones must be respectful. - -## Videos - -1. Visit our [YouTube Channel playlists](https://www.youtube.com/@PalisadoesOrganization/playlists) for more insights - 1. The "[Getting Started - Developers](https://www.youtube.com/watch?v=YpBUoHxEeyg&list=PLv50qHwThlJUIzscg9a80a9-HmAlmUdCF&index=1)" videos are extremely helpful for new open source contributors. - -## Ways to Contribute - -If you are ready to start contributing code right away, get ready! - -1. Join our Slack and introduce yourself. See details on how to join below in the Community section. - 1. This repository has its own dedicated channel. - 1. There are many persons on the various channels who are willing to assist you in getting started. -1. Take a look at our issues (**_after reading our guidelines below_**): - 1. We have a list of [good first issues](https://github.com/PalisadoesFoundation/talawa-admin/labels/good%20first%20issue) that contain challenges with a limited scope for beginners. - 1. There are issues for creating tests for our code base. We need to increase reliablility. Try those issues, or create your own for files that don't already have tests. This is another good strategy for beginners. - 1. There are [dormant issues on which nobody has worked for some time](https://github.com/PalisadoesFoundation/talawa-admin/issues?q=is%3Aopen+is%3Aissue+label%3Ano-issue-activity). These are another place to start - 1. There may also be [dormant PRs on which nobody has worked for some time](https://github.com/PalisadoesFoundation/talawa-admin/issues?q=is%3Aopen+is%3Aissue+label%3Ano-issue-activity+label%3Ano-pr-activity)! -1. Create an issue based on a bug you have found or a feature you would like to add. We value meaningful sugestions and will prioritize them. - -Welcome aboard! - -### Our Development Process - -We utilize GitHub issues and pull requests to keep track of issues and contributions from the community. - -#### Issues - -Make sure you are following [issue report guidelines](ISSUE_GUIDELINES.md) available here before creating any new issues on Talawa Admin project. - -#### Pull Requests - -[Pull Request guidelines](PR_GUIDELINES.md) is best resource to follow to start working on open issues. - -#### Branching Strategy - -For Talawa Admin, we had employed the following branching strategy to simplify the development process and to ensure that only stable code is pushed to the `main` branch: - -- `develop`: For unstable code and bug fixing -- `main`: Where the stable production ready code lies. This is our default branch. - -#### Conflict Resolution - -When multiple developers are working on issues there is bound to be a conflict of interest (not to be confused with git conflicts) among issues, PRs or even ideas. Usually these conflicts are resolved in a **First Come First Serve** basis however there are certain exceptions to it. - -- In the cases where you feel your potential issues could be an extension or in conflict with other PRs it is important to ask the author of the PR in the slack channel or in their PRs or issues themselves why he/she did not write code for something that would require minimal effort on their part. -- Based on basic courtesy, it is good practice to let the person who created a function apply and test that function when needed. -- Last but not the least, communication is important make sure to talk to other contributors, in these cases, in slack channel or in a issue/PR thread. -- As a last resort the Admins would be responsible for deciding how to resolve this conflict. - -### Contributing Code - -Code contributions to Talawa come in the form of pull requests. These are done by forking the repo and making changes locally. - -Make sure you have read the [Documentation for Setting up the Project](https://github.com/PalisadoesFoundation/talawa-admin#project-setup) - -The process of proposing a change to Talawa Admin can be summarized as: - -1. Fork the Talawa Admin repository and branch off `develop`. -1. Your newly forked repository can be cloned locally using `git clone `. -1. Make the Palisadoes Foundation's repo your `git upstream` for your local repo. -1. Make the desired changes to the Talawa Admin project. -1. Run the app and test your changes. -1. If you've added code, then test suites must be added. - - 1. **_General_:** - - 1. We need to get to 100% test coverage for the app. We periodically increase the desired test coverage for our pull requests to meet this goal. - 1. Pull requests that don't meet the minimum test coverage levels will not be accepted. This may mean that you will have to create tests for code you did not write. You can decide which part of the code base needs additional tests if this happens to you. - - 2. **_Testing_:** - - 1. Test using this set of commands: - - ``` - npm install - npm run test --watchAll=false --coverage - ``` - - 2. Debug tests in browser - - You can see the output of failing tests in broswer by running `jest-preview` package before running your tests - - ``` - npm install - npm run jest-preview - npm run test --watchAll=false --coverage - ``` - - You don't need to re-run the `npm run jest-preview` command each time, simply run the `npm run test` command if the Jest Preview server is already running in the background, it'll automatically detect any failing tests and show the preview at `http://localhost:3336` as shown in this screenshot - - - ![Debugging Test Demo](./public/images/jest-preview.webp) - - 3. **_Test Code Coverage_:** - - 1. _General Information_ - 1. The current code coverage of the repo is: [![codecov](https://codecov.io/gh/PalisadoesFoundation/talawa-admin/branch/develop/graph/badge.svg?token=II0R0RREES)](https://codecov.io/gh/PalisadoesFoundation/talawa-admin) - 2. You can determine the percentage test coverage of your code by running these two commands in sequence: - ``` - npm install - npm run test --watchAll=false --coverage - genhtml coverage/lcov.info -o coverage - ``` - 3. The output of the `npm run test` command will give you a tablular coverage report per file - 4. The overall coverage rate will be visible on the penultimate line of the `genhtml` command's output. - 5. The `genhtml` command is part of the Linux `lcov` package. Similar packages can be found for Windows and MacOS. - 6. The currently acceptable coverage rate can be found in the [GitHub Pull Request file](.github/workflows/pull-requests.yml). Search for the value below the line containing `min_coverage`. - 2. _Testing Individual Files_ - 1. You can test an individual file by running this command: - ``` - npm run test --watchAll=false /path/to/test/file - ``` - 2. You can get the test coverage report for that file by running this command. The report will list all tests in the suite. Those tests that are not run will have zero values. You will need to look for the output line relevant to your test file. - ``` - npm run test --watchAll=false --coverage /path/to/test/file - ``` - 3. _Creating your code coverage account_ - - 1. You can also see your code coverage online for your fork of the repo. This is provided by `codecov.io` - - 1. Go to this link: `https://app.codecov.io/gh/XXXX/YYYY` where XXXX is your GitHub account username and YYYY is the name of the repository - 2. Login to `codecov.io` using your GitHub account, and add your **repo** and **branches** to the `codecov.io` dashboard. - ![Debugging Test Demo](/public/images/codecov/authorise-codecov-github.jpg) - 3. Remember to add the `Repository Upload Token` for your forked repo. This can be found under `Settings` of your `codecov.io` account. - - 4. Click on Setup Repo option - ![Debugging Test Demo]() - 5. Use the value of this token to create a secret named CODE_COV for your forked repo. - [![Code-cov-token.jpg](/public/images/codecov/Code-cov-token.jpg)]() - [![addd-your-key.jpg](/public/images/codecov/addd-your-key.jpg)]() - 6. You will see your code coverage reports with every push to your repo after following these steps - [![results.jpg](/public/images/codecov/results.jpg)]() - -1. After making changes you can add them to git locally using `git add `(to add changes only in a particular file) or `git add .` (to add all changes). -1. After adding the changes you need to commit them using `git commit -m ''`(look at the commit guidelines below for commit messages). -1. Once you have successfully commited your changes, you need to push the changes to the forked repo on github using: `git push origin `.(Here branch name must be name of the branch you want to push the changes to.) -1. Now create a pull request to the Talawa-admin repository from your forked repo. Open an issue regarding the same and link your PR to it. -1. Ensure the test suite passes, either locally or on CI once a PR has been created. -1. Review and address comments on your pull request if requested. - -## Internships - -If you are participating in any of the various internship programs we are members of, then please read the [introduction guides on our documentation website](https://docs.talawa.io/docs/). - -## Community - -There are many ways to communicate with the community. - -1. The Palisadoes Foundation has a Slack channel where members can assist with support and clarification. Visit the [Talawa GitHub repository home page](https://github.com/PalisadoesFoundation/talawa) for the link to join our slack channel. -1. We also have a technical email list run by [freelists.org](https://www.freelists.org/). Search for "palisadoes" and join. Members on this list are also periodically added to our marketing email list that focuses on less technical aspects of our work. diff --git a/docs/docs/auto-docs/_media/INSTALLATION.md b/docs/docs/auto-docs/_media/INSTALLATION.md deleted file mode 100644 index 3c09f69e33..0000000000 --- a/docs/docs/auto-docs/_media/INSTALLATION.md +++ /dev/null @@ -1,382 +0,0 @@ -# Talawa-Admin Installation - -This document provides instructions on how to set up and start a running instance of `talawa-admin` on your local system. The instructions are written to be followed in sequence so make sure to go through each of them step by step without skipping any sections. - -# Table of Contents - - - -- [Installation Steps Summary](#installation-steps-summary) -- [Prerequisites](#prerequisites) - - [Install git](#install-git) - - [Setting up this repository](#setting-up-this-repository) - - [Install node.js](#install-nodejs) - - [Install TypeScript](#install-typescript) - - [Install Required Packages](#install-required-packages) -- [Installation using Docker](#installation-using-docker) - - [Prerequisites](#prerequisites-1) - - [Development Setup](#development-setup) - - - -# Installation Steps Summary - -Installation is not difficult, but there are many steps. This is a brief explanation of what needs to be done: - -1. Install `git` -2. Download the code from GitHub using `git` -3. Install `node.js` (Node), the runtime environment the application will need to work. -4. Configure the Node Package Manager (`npm`) to automatically use the correct version of Node for our application. -5. Use `npm` to install TypeScript, the language the application is written in. -6. Install other supporting software such as the database. -7. Configure the application -8. Start the application - -These steps are explained in more detail in the sections that follow. - -# Prerequisites - -In this section we'll explain how to set up all the prerequisite software packages to get you up and running. - -## Install git - -The easiest way to get the latest copies of our code is to install the `git` package on your computer. - -Follow the setup guide for `git` on official [git docs](https://git-scm.com/downloads). Basic `git` knowledge is required for open source contribution so make sure you're comfortable with it. [Here's](https://youtu.be/apGV9Kg7ics) a good tutorial to get started with `git` and `github`. - -## Setting up this repository - -First you need a local copy of `talawa-admin`. Run the following command in the directory of choice on your local system. - -1. On your computer, navigate to the folder where you want to setup the repository. -2. Open a `cmd` (Windows) or `terminal` (Linux or MacOS) session in this folder. - 1. An easy way to do this is to right-click and choose appropriate option based on your OS. -3. **For Our Open Source Contributor Software Developers:** - - 1. Next, we'll fork and clone the `talawa-admin` repository. - 1. In your web browser, navigate to [https://github.com/PalisadoesFoundation/talawa-admin/](https://github.com/PalisadoesFoundation/talawa-admin/) and click on the `fork` button. It is placed on the right corner opposite the repository name `PalisadoesFoundation/talawa-admin`. - - ![Image with fork](public/markdown/images/install1.png) - - 1. You should now see `talawa-admin` under your repositories. It will be marked as forked from `PalisadoesFoundation/talawa-admin` - - ![Image of user's clone](public/markdown/images/install2.png) - - 1. Clone the repository to your local computer (replacing the values in `{{}}`): - ```bash - $ git clone https://github.com/{{YOUR GITHUB USERNAME}}/talawa-admin.git - cd talawa-admin - git checkout develop - ``` - - **Note:** Make sure to check out the `develop` branch - 1. You now have a local copy of the code files. For more detailed instructions on contributing code, and managing the versions of this repository with `git`, checkout our [CONTRIBUTING.md](./CONTRIBUTING.md) file. - -4. **Talawa Administrators:** - - 1. Clone the repository to your local computer using this command: - - ```bash - $ git clone https://github.com/PalisadoesFoundation/talawa-admin.git - ``` - -## Install node.js - -Best way to install and manage `node.js` is making use of node version managers. We recommend using `fnm`, which will be described in more detail later. - -Follow these steps to install the `node.js` packages in Windows, Linux and MacOS. - -1. For Windows: - 1. first install `node.js` from their website at https://nodejs.org - 1. When installing, don't click the option to install the `necessary tools`. These are not needed in our case. - 2. then install [fnm](https://github.com/Schniz/fnm). Please read all the steps in this section first. - 1. All the commands listed on this page will need to be run in a Windows terminal session in the `talawa-admin` directory. - 2. Install `fnm` using the `winget` option listed on the page. - 3. Setup `fnm` to automatically set the version of `node.js` to the version required for the repository using these steps: - 1. First, refer to the `fnm` web page's section on `Shell Setup` recommendations. - 2. Open a `Windows PowerShell` terminal window - 3. Run the recommended `Windows PowerShell` command to open `notepad`. - 4. Paste the recommended string into `notepad` - 5. Save the document. - 6. Exit `notepad` - 7. Exit PowerShell - 8. This will ensure that you are always using the correct version of `node.js` -2. For Linux and MacOS, use the terminal window. - 1. install `node.js` - 2. then install `fnm` - 1. Refer to the installation page's section on the `Shell Setup` recommendations. - 2. Run the respective recommended commands to setup your node environment - 3. This will ensure that you are always using the correct version of `node.js` - -## Install TypeScript - -TypeScript is a typed superset of JavaScript that compiles to plain JavaScript. It adds optional types, classes, and modules to JavaScript, and supports tools for large-scale JavaScript applications. - -To install TypeScript, you can use the `npm` command which comes with `node.js`: - -```bash -npm install -g typescript -``` - -This command installs TypeScript globally on your system so that it can be accessed from any project. - -## Install Required Packages - -Run the following command to install the packages and dependencies required by the app: - -``` -npm install -``` - -The prerequisites are now installed. The next step will be to get the app up and running. - -# Installation using Docker - -## Prerequisites - -1. Install Docker on your system: - - [Docker Desktop for Windows/Mac](https://www.docker.com/products/docker-desktop) - - [Docker Engine for Linux](https://docs.docker.com/engine/install/) - -### Development Setup - -If you prefer to use Docker, you can install the app using the following command: - -1. Create a `.env` file as described in the Configuration section - -2. Build the Docker Image: - -Run the following command to build the Docker image: - -````bash -docker build -t talawa-admin . -```bash - -3. Run the Docker container: - -After the build is complete, run the Docker container using this command: - -```bash -docker run -p 4321:4321 talawa-admin -```bash - -The application will be accessible at `http://localhost:4321` - -# Configuration - -It's important to configure Talawa-Admin. Here's how to do it. - -You can use our interactive setup script for the configuration. Use the following command for the same. - -```bash -npm run setup -```bash - -All the options in "setup" can be done manually as well and here's how to do it. - [Creating .env file](#creating-env-file) - -## Creating .env file - -A file named .env is required in the root directory of talawa-admin for storing environment variables used at runtime. It is not a part of the repo and you will have to create it. For a sample of `.env` file there is a file named `.env.example` in the root directory. Create a new `.env` file by copying the contents of the `.env.example` into `.env` file. Use this command: - -```` - -cp .env.example .env - -``` - -This `.env` file must be populated with the following environment variables for `talawa-admin` to work: - -| Variable | Description | -| ------------------------------- | ------------------------------------------------- | -| PORT | Custom port for Talawa-Admin development purposes | -| REACT_APP_TALAWA_URL | URL endpoint for talawa-api graphql service | -| REACT_APP_BACKEND_WEBSOCKET_URL | URL endpoint for websocket end point | -| REACT_APP_USE_RECAPTCHA | Whether you want to use reCAPTCHA or not | -| REACT_APP_RECAPTCHA_SITE_KEY | Site key for authentication using reCAPTCHA | - -Follow the instructions from the sections [Setting up PORT in .env file](#setting-up-port-in-env-file), [Setting up REACT_APP_TALAWA_URL in .env file](#setting-up-REACT_APP_TALAWA_URL-in-env-file), [Setting up REACT_APP_BACKEND_WEBSOCKET_URL in .env file](#setting-up-react_app_backend_websocket_url-in-env-file), [Setting up REACT_APP_RECAPTCHA_SITE_KEY in .env file](#setting-up-REACT_APP_RECAPTCHA_SITE_KEY-in-env-file) and [Setting up Compiletime and Runtime logs](#setting-up-compiletime-and-runtime-logs) to set up these environment variables. - -## Setting up PORT in .env file - -Add a custom port number for Talawa-Admin development purposes to the variable named `PORT` in the `.env` file. - -## Setting up REACT_APP_TALAWA_URL in .env file - -Add the endpoint for accessing talawa-api graphql service to the variable named `REACT_APP_TALAWA_URL` in the `.env` file. - -``` - -REACT_APP_TALAWA_URL="http://API-IP-ADRESS:4000/graphql/" - -``` - -If you are a software developer working on your local system, then the URL would be: - -``` - -REACT_APP_TALAWA_URL="http://localhost:4000/graphql/" - -``` - -If you are trying to access Talawa Admin from a remote host with the API URL containing "localhost", You will have to change the API URL to - -``` - -REACT_APP_TALAWA_URL="http://YOUR-REMOTE-ADDRESS:4000/graphql/" - -``` - -## Setting up REACT_APP_BACKEND_WEBSOCKET_URL in .env file - -The endpoint for accessing talawa-api WebSocket graphql service for handling subscriptions is automatically added to the variable named `REACT_APP_BACKEND_WEBSOCKET_URL` in the `.env` file. - -``` - -REACT_APP_BACKEND_WEBSOCKET_URL="ws://API-IP-ADRESS:4000/graphql/" - -``` - -If you are a software developer working on your local system, then the URL would be: - -``` - -REACT_APP_BACKEND_WEBSOCKET_URL="ws://localhost:4000/graphql/" - -``` - -If you are trying to access Talawa Admin from a remote host with the API URL containing "localhost", You will have to change the API URL to - -``` - -REACT_APP_BACKEND_WEBSOCKET_URL="ws://YOUR-REMOTE-ADDRESS:4000/graphql/" - -``` - -For additional details, please refer the `How to Access the Talawa-API URL` section in the INSTALLATION.md file found in the [Talawa-API repo](https://github.com/PalisadoesFoundation/talawa-api). - -## Setting up REACT_APP_RECAPTCHA_SITE_KEY in .env file - -You may not want to setup reCAPTCHA since the project will still work. Moreover, it is recommended to not set it up in development environment. - -Just skip to the [Post Configuration Steps](#post-configuration-steps) if you don't want to set it up. Else, read the following steps. - -If you want to setup Google reCAPTCHA now, you may refer to the `RECAPTCHA` section in the INSTALLATION.md file found in [Talawa-API repo](https://github.com/PalisadoesFoundation/talawa-api). - -`Talawa-admin` needs the `reCAPTCHA site key` for the `reCAPTCHA` service you set up during `talawa-api` installation as shown in this screenshot: - -![reCAPTCHA site key](./public/images/REACT_SITE_KEY.webp) - -Copy/paste this `reCAPTCHA site key` to the variable named `REACT_APP_RECAPTCHA_SITE_KEY` in `.env` file. - -``` - -REACT_APP_RECAPTCHA_SITE_KEY="this_is_the_recaptcha_key" - -``` - -## Setting up Compiletime and Runtime logs - -Set the `ALLOW_LOGS` to "YES" if you want warnings , info and error messages in your console or leave it blank if you dont need them or want to keep the console clean - -# Post Configuration Steps - -It's now time to start Talawa-Admin and get it running - -## Running Talawa-Admin - -Run the following command to start `talawa-admin` development server: - -``` - -npm run serve - -``` - -## Accessing Talawa-Admin - -By default `talawa-admin` runs on port `4321` on your system's localhost. It is available on the following endpoint: - -``` - -http://localhost:4321/ - -``` - -If you have specified a custom port number in your `.env` file, Talawa-Admin will run on the following endpoint: - -``` - -http://localhost:${{customPort}}/ - -``` - -Replace `${{customPort}}` with the actual custom port number you have configured in your `.env` file. - -## Talawa-Admin Registration - -The first time you navigate to the running talawa-admin's website you'll land at talawa-admin registration page. Sign up using whatever credentials you want and create the account. Make sure to remember the email and password you entered because they'll be used to sign you in later on. - -## Talawa-Admin Login - -Now sign in to talawa-admin using the `email` and `password` you used to sign up. - -# Testing - -It is important to test our code. If you are a contributor, please follow these steps. - -## Running tests - -You can run the tests for `talawa-admin` using this command: - -``` - -npm run test - -``` - -## Debugging tests - -You can see the output of failing tests in broswer by running `jest-preview` package before running your tests - -``` - -npm run jest-preview -npm run test - -``` - -You don't need to re-run the `npm run jest-preview` command each time, simply run the `npm run test` command if the Jest Preview server is already running in the background, it'll automatically detect any failing tests and show the preview at `http://localhost:3336` as shown in this screenshot - - -![Debugging Test Demo](./public/images/jest-preview.webp) - -## Linting code files - -You can lint your code files using this command: - -``` - -npm run lint:fix - -``` - -## Husky for Git Hooks - -We are using the package `Husky` to run git hooks that run according to different git workflows. - -#### pre-commit hook - -We run a pre-commit hook which automatically runs code quality checks each time you make a commit and also fixes some of the issues. This way you don't have to run them manually each time. - -If you don't want these pre-commit checks running on each commit, you can manually opt out of it using the `--no-verify` flag with your commit message as shown:- - - git commit -m "commit message" --no-verify - -#### post-merge hook - -We are also running a post-merge(post-pull) hook which will automatically run "npm install" only if there is any change made to pakage.json file so that the developer has all the required dependencies when pulling files from remote. - -If you don't want this hook to run, you can manually opt out of this using the `no verify` flag while using the merge command(git pull): - - git pull --no-verify - -
-``` diff --git a/docs/docs/auto-docs/_media/ISSUE_GUIDELINES.md b/docs/docs/auto-docs/_media/ISSUE_GUIDELINES.md deleted file mode 100644 index 5170de5839..0000000000 --- a/docs/docs/auto-docs/_media/ISSUE_GUIDELINES.md +++ /dev/null @@ -1,59 +0,0 @@ -# Issue Report Guidelines - -:+1::tada: First off, thanks for taking the time to contribute! :tada::+1: - -In order to give everyone a chance to submit a issues reports and contribute to the Talawa project, we have put restrictions in place. This section outlines the guidelines that should be imposed upon issue reports in the Talawa project. - -___ -## Table of Contents - - - -- [Issue Management](#issue-management) - - [New Issues](#new-issues) - - [Existing Issues](#existing-issues) - - [Feature Request Issues](#feature-request-issues) - - [Monitoring the Creation of New Issues](#monitoring-the-creation-of-new-issues) -- [General Guidelines](#general-guidelines) - - - -___ -## Issue Management - -In all cases please use the [GitHub open issue search](https://github.com/PalisadoesFoundation/talawa-admin/issues) to check whether the issue has already been reported. - -### New Issues -To create new issues follow these steps: - -1. Your issue may have already been created. Search for duplicate open issues before submitting yours.for similar deficiencies in the code.duplicate issues are created. -1. Verify whether the issue has been fixed by trying to reproduce it using the latest master or development branch in the repository. -1. Click on the [`New Issue`](https://github.com/PalisadoesFoundation/talawa-admin/issues/new/choose) button -1. Use the templates to create a standardized report of what needs to be done and why. -1. If you want to be assigned the issue that you have created, then add a comment immediately after submitting it. - -We welcome contributors who find new ways to make the code better. - -### Existing Issues - -You can also be a valuable contributor by searching for dormant issues. Here's how you can do that: - -1. **Previously Assigned Issues**: We regularly review issues and add a [`no-issue-activity`](https://github.com/PalisadoesFoundation/talawa-admin/issues?q=is%3Aissue+is%3Aopen+label%3Ano-issue-activity) label to them. Use the issue comments to ask whether the assignee is still working on the issue, and if not, ask for the issue to be assigned to you. -1. **Unassigned Issues**: If the issue is already reported and [not assigned to anyone](https://github.com/PalisadoesFoundation/talawa-admin/issues?q=is%3Aissue+is%3Aopen+no%3Aassignee) and you are interested in working on the issue then: - 1. Ask for the issue to be assigned to you in the issue comments - 2. Ask our contributors to assign it to you in `#talawa` slack channel. - -Working on these types of existing issues is a good way of getting started with the community. - -### Feature Request Issues - -Feature requests are welcome. But take a moment to find out whether your idea fits with the scope and aims of the project. It's up to you to make a strong case to convince the mentors of the merits of this feature. Please provide as much detail and context as possible. - -### Monitoring the Creation of New Issues -1. Join our `#talawa-github` slack channel for automatic issue and pull request updates. - -## General Guidelines - -1. Discuss issues in our various slack channels when necessary -2. Please do not derail or troll issues. -3. Keep the discussion on topic and respect the opinions of others. diff --git a/docs/docs/auto-docs/_media/PR_GUIDELINES.md b/docs/docs/auto-docs/_media/PR_GUIDELINES.md deleted file mode 100644 index 4c904c782d..0000000000 --- a/docs/docs/auto-docs/_media/PR_GUIDELINES.md +++ /dev/null @@ -1,69 +0,0 @@ -# Pull Request Guidelines - -:+1::tada: First off, thanks for taking the time to contribute! :tada::+1: - -In order to give everyone a chance to submit a pull request and contribute to the Talawa project, we have put restrictions in place. This section outlines the guidelines that should be imposed upon pull requests in the Talawa project. - -# Table of Contents - - - -- [Pull Requests and Issues](#pull-requests-and-issues) -- [Linting and Formatting](#linting-and-formatting) -- [Testing](#testing) -- [Pull Request Processing](#pull-request-processing) - - [Only submit PRs against our `develop` branch, not the default `main` branch](#only-submit-prs-against-our-develop-branch-not-the-default-main-branch) - - - -## Pull Requests and Issues - -1. Do not start working on any open issue and raise a PR unless the issue is assigned to you. PRs that don't meet these guidelines will be closed. -1. Pull requests must be based on [open issues](https://github.com/PalisadoesFoundation/talawa-admin/issues) available. -1. [Use this method to automatically close the issue when the PR is completed.](https://docs.github.com/en/github/managing-your-work-on-github/linking-a-pull-request-to-an-issue) - -## Linting and Formatting - -All the pull requests must have code that is properly linted and formatted, so that uniformity across the repository can be ensured. - -Before opening a PR, you can run the following scripts to automatically lint and format the code properly: - -``` -npm run lint:fix -npm run format:fix -``` - -Both of these scripts also have a `check` counterpart, which would be used by the GitHub CI to ensure that the code is properly formatted. -You can run the following scripts yourself to ensure that your pull request doesn't fail due to linting and formatting errors: - -``` -npm run lint:check -npm run format:check -``` - -## Testing - -1. All pull requests must have test units. If, for some reason, it is not possible to add tests, please let us know and explain why. In that case, you'll need to tell us what steps you followed to manually test your changes. -1. Please read our [CONTRIBUTING.md](CONTRIBUTING.md) document for details on our testing policy. - -## Pull Request Processing -These are key guidelines for the procedure: - -### Only submit PRs against our `develop` branch, not the default `main` branch - -1. Only submit PRs against our `develop` branch. The default is `main`, so you will have to modify this before submitting your PR for review. PRs made against `main` will be closed. -1. We do not accept draft Pull Requests. They will be closed if submitted. We focus on work that is ready for immediate review. -1. Removing assigned reviewers from your Pull Request will cause it to be closed. The quality of our code is very important to us. Therefore we make experienced maintainers of our code base review your code. Removing these assigned persons is not in the best interest of this goal. -1. If you have not done so already, please read the `Pull Requests and Issues` and `Testing` sections above. -1. Each contributor may only create one pull request at a time. We have this rule in place due to our limited resources - if everyone was allowed to post multiple pull requests, we would not be able to review them properly. It is also better for contributors because you can focus on creating one quality PR - so spend time making sure it is as good as it can be. -1. Upon successful push to the fork, check if all tests are passing; if not, fix the issues and then create a pull request. -1. If the pull request's code quality is not up to par, or it would break the app, it will more likely be closed. So please be careful when creating a PR. -1. Please follow the PR template provided. Ensure the PR title clearly describes the problem it is solving. In the description, include the relevant issue number, snapshots, and videos after changes are added. -1. If you are borrowing a code, please disclose it. It is fine and sometimes even recommended to borrow code, but we need to know about it to assess your work. If we find out that your pull request contains a lot of code copied from elsewhere, we will close the pull request. -1. No Work In Progress. ONLY completed and working pull requests and with respective test units will be accepted. A WIP would fall under rule 4 and be closed immediately. -1. Please do not @mention contributors and mentors. Sometimes it takes time before we can review your pull request or answer your questions, but we'll get to it sooner or later. @mentioning someone just adds to the pile of notifications we get and it won't make us look at your issue faster. -1. Do not force push. If you make changes to your pull request, please simply add a new commit, as that makes it easy for us to review your new changes. If you force push, we'll have to review everything from the beginning. -1. PR should be small, easy to review and should follow standard coding styles. -1. If PR has conflicts because of recently added changes to the same file, resolve issues, test new changes, and submit PR again for review. -1. PRs should be atomic. That is, they should address one item (issue or feature) -1. After submitting PR, if you are not replying within 48 hours, then in that case, we may need to assign the issue to other contributors based on the priority of the issue. diff --git a/docs/docs/auto-docs/assets/svgs/social-icons/README.md b/docs/docs/auto-docs/assets/svgs/social-icons/README.md deleted file mode 100644 index ea42cd11bd..0000000000 --- a/docs/docs/auto-docs/assets/svgs/social-icons/README.md +++ /dev/null @@ -1,7 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / assets/svgs/social-icons - -# assets/svgs/social-icons diff --git a/docs/docs/auto-docs/components/AddOn/AddOn/README.md b/docs/docs/auto-docs/components/AddOn/AddOn/README.md deleted file mode 100644 index 3fb85e739b..0000000000 --- a/docs/docs/auto-docs/components/AddOn/AddOn/README.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / components/AddOn/AddOn - -# components/AddOn/AddOn - -## Functions - -- [default](functions/default.md) diff --git a/docs/docs/auto-docs/components/AddOn/AddOn/functions/default.md b/docs/docs/auto-docs/components/AddOn/AddOn/functions/default.md deleted file mode 100644 index 5f80e92a7b..0000000000 --- a/docs/docs/auto-docs/components/AddOn/AddOn/functions/default.md +++ /dev/null @@ -1,27 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [components/AddOn/AddOn](../README.md) / default - -# Function: default() - -> **default**(`__namedParameters`): `JSX.Element` - -Defined in: [src/components/AddOn/AddOn.tsx:22](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/AddOn/AddOn.tsx#L22) - -The AddOn component is used to wrap children within a plugin container. -It also accepts additional properties (`extras` and `name`) to allow for -extensibility and custom naming. - -## Parameters - -### \_\_namedParameters - -`InterfaceAddOnProps` - -## Returns - -`JSX.Element` - -The JSX element representing the AddOn component. diff --git a/docs/docs/auto-docs/components/AddOn/core/AddOnEntry/AddOnEntry/README.md b/docs/docs/auto-docs/components/AddOn/core/AddOnEntry/AddOnEntry/README.md deleted file mode 100644 index 66c7ecc60f..0000000000 --- a/docs/docs/auto-docs/components/AddOn/core/AddOnEntry/AddOnEntry/README.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../../README.md) - -*** - -[talawa-admin](../../../../../modules.md) / components/AddOn/core/AddOnEntry/AddOnEntry - -# components/AddOn/core/AddOnEntry/AddOnEntry - -## Functions - -- [default](functions/default.md) diff --git a/docs/docs/auto-docs/components/AddOn/core/AddOnEntry/AddOnEntry/functions/default.md b/docs/docs/auto-docs/components/AddOn/core/AddOnEntry/AddOnEntry/functions/default.md deleted file mode 100644 index 55599f0b7b..0000000000 --- a/docs/docs/auto-docs/components/AddOn/core/AddOnEntry/AddOnEntry/functions/default.md +++ /dev/null @@ -1,43 +0,0 @@ -[**talawa-admin**](../../../../../../README.md) - -*** - -[talawa-admin](../../../../../../modules.md) / [components/AddOn/core/AddOnEntry/AddOnEntry](../README.md) / default - -# Function: default() - -> **default**(`props`): `JSX.Element` - -Defined in: [src/components/AddOn/core/AddOnEntry/AddOnEntry.tsx:46](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/AddOn/core/AddOnEntry/AddOnEntry.tsx#L46) - -A React component that represents an add-on entry, displaying its details and allowing installation or uninstallation. - -## Parameters - -### props - -`InterfaceAddOnEntryProps` - -The properties for the component. - -## Returns - -`JSX.Element` - -A JSX element containing the add-on entry. - -## Example - -```tsx - {}} -/> -``` diff --git a/docs/docs/auto-docs/components/AddOn/core/AddOnEntry/AddOnEntryMocks/README.md b/docs/docs/auto-docs/components/AddOn/core/AddOnEntry/AddOnEntryMocks/README.md deleted file mode 100644 index 04fe5af8f5..0000000000 --- a/docs/docs/auto-docs/components/AddOn/core/AddOnEntry/AddOnEntryMocks/README.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../../README.md) - -*** - -[talawa-admin](../../../../../modules.md) / components/AddOn/core/AddOnEntry/AddOnEntryMocks - -# components/AddOn/core/AddOnEntry/AddOnEntryMocks - -## Variables - -- [ADD\_ON\_ENTRY\_MOCK](variables/ADD_ON_ENTRY_MOCK.md) diff --git a/docs/docs/auto-docs/components/AddOn/core/AddOnEntry/AddOnEntryMocks/variables/ADD_ON_ENTRY_MOCK.md b/docs/docs/auto-docs/components/AddOn/core/AddOnEntry/AddOnEntryMocks/variables/ADD_ON_ENTRY_MOCK.md deleted file mode 100644 index 9011f4c570..0000000000 --- a/docs/docs/auto-docs/components/AddOn/core/AddOnEntry/AddOnEntryMocks/variables/ADD_ON_ENTRY_MOCK.md +++ /dev/null @@ -1,65 +0,0 @@ -[**talawa-admin**](../../../../../../README.md) - -*** - -[talawa-admin](../../../../../../modules.md) / [components/AddOn/core/AddOnEntry/AddOnEntryMocks](../README.md) / ADD\_ON\_ENTRY\_MOCK - -# Variable: ADD\_ON\_ENTRY\_MOCK - -> `const` **ADD\_ON\_ENTRY\_MOCK**: `object`[] - -Defined in: [src/components/AddOn/core/AddOnEntry/AddOnEntryMocks.ts:13](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/AddOn/core/AddOnEntry/AddOnEntryMocks.ts#L13) - -## Type declaration - -### request - -> **request**: `object` - -#### request.query - -> **query**: `DocumentNode` = `UPDATE_INSTALL_STATUS_PLUGIN_MUTATION` - -#### request.variables - -> **variables**: `object` - -#### request.variables.id - -> **id**: `string` = `'1'` - -#### request.variables.orgId - -> **orgId**: `string` = `'undefined'` - -### result - -> **result**: `object` - -#### result.data - -> **data**: `object` - -#### result.data.updatePluginStatus - -> **updatePluginStatus**: `object` = `updatePluginStatus` - -#### result.data.updatePluginStatus.\_id - -> **\_id**: `string` = `'123'` - -#### result.data.updatePluginStatus.pluginCreatedBy - -> **pluginCreatedBy**: `string` = `'John Doe'` - -#### result.data.updatePluginStatus.pluginDesc - -> **pluginDesc**: `string` = `'This is a sample plugin description.'` - -#### result.data.updatePluginStatus.pluginName - -> **pluginName**: `string` = `'Sample Plugin'` - -#### result.data.updatePluginStatus.uninstalledOrgs - -> **uninstalledOrgs**: `any`[] = `[]` diff --git a/docs/docs/auto-docs/components/AddOn/core/AddOnRegister/AddOnRegister/README.md b/docs/docs/auto-docs/components/AddOn/core/AddOnRegister/AddOnRegister/README.md deleted file mode 100644 index cf56d90951..0000000000 --- a/docs/docs/auto-docs/components/AddOn/core/AddOnRegister/AddOnRegister/README.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../../README.md) - -*** - -[talawa-admin](../../../../../modules.md) / components/AddOn/core/AddOnRegister/AddOnRegister - -# components/AddOn/core/AddOnRegister/AddOnRegister - -## Functions - -- [default](functions/default.md) diff --git a/docs/docs/auto-docs/components/AddOn/core/AddOnRegister/AddOnRegister/functions/default.md b/docs/docs/auto-docs/components/AddOn/core/AddOnRegister/AddOnRegister/functions/default.md deleted file mode 100644 index 8894572b70..0000000000 --- a/docs/docs/auto-docs/components/AddOn/core/AddOnRegister/AddOnRegister/functions/default.md +++ /dev/null @@ -1,32 +0,0 @@ -[**talawa-admin**](../../../../../../README.md) - -*** - -[talawa-admin](../../../../../../modules.md) / [components/AddOn/core/AddOnRegister/AddOnRegister](../README.md) / default - -# Function: default() - -> **default**(`__namedParameters`): `JSX.Element` - -Defined in: [src/components/AddOn/core/AddOnRegister/AddOnRegister.tsx:38](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/AddOn/core/AddOnRegister/AddOnRegister.tsx#L38) - -A React component for registering a new add-on plugin. - -This component: -- Displays a button to open a modal for plugin registration. -- Contains a form in the modal for entering plugin details. -- Uses GraphQL mutation to register the plugin. -- Uses `react-i18next` for localization and `react-toastify` for notifications. -- Redirects to the organization list page if no `orgId` is found in the URL. - -## Parameters - -### \_\_namedParameters - -`InterfaceAddOnRegisterProps` - -## Returns - -`JSX.Element` - -A JSX element containing the button and modal for plugin registration. diff --git a/docs/docs/auto-docs/components/AddOn/core/AddOnStore/AddOnStore/README.md b/docs/docs/auto-docs/components/AddOn/core/AddOnStore/AddOnStore/README.md deleted file mode 100644 index bfbd8077d0..0000000000 --- a/docs/docs/auto-docs/components/AddOn/core/AddOnStore/AddOnStore/README.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../../README.md) - -*** - -[talawa-admin](../../../../../modules.md) / components/AddOn/core/AddOnStore/AddOnStore - -# components/AddOn/core/AddOnStore/AddOnStore - -## Functions - -- [default](functions/default.md) diff --git a/docs/docs/auto-docs/components/AddOn/core/AddOnStore/AddOnStore/functions/default.md b/docs/docs/auto-docs/components/AddOn/core/AddOnStore/AddOnStore/functions/default.md deleted file mode 100644 index f750c67ba5..0000000000 --- a/docs/docs/auto-docs/components/AddOn/core/AddOnStore/AddOnStore/functions/default.md +++ /dev/null @@ -1,25 +0,0 @@ -[**talawa-admin**](../../../../../../README.md) - -*** - -[talawa-admin](../../../../../../modules.md) / [components/AddOn/core/AddOnStore/AddOnStore](../README.md) / default - -# Function: default() - -> **default**(): `JSX.Element` - -Defined in: [src/components/AddOn/core/AddOnStore/AddOnStore.tsx:37](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/AddOn/core/AddOnStore/AddOnStore.tsx#L37) - -Component for managing and displaying plugins in the store. - -This component: -- Displays a search input and filter options. -- Uses tabs to switch between available and installed plugins. -- Fetches plugins from a GraphQL endpoint and filters them based on search criteria. -- Utilizes Redux store to manage plugin data. - -## Returns - -`JSX.Element` - -A JSX element containing the UI for the add-on store. diff --git a/docs/docs/auto-docs/components/AddOn/support/components/Action/Action/README.md b/docs/docs/auto-docs/components/AddOn/support/components/Action/Action/README.md deleted file mode 100644 index 016a824d7f..0000000000 --- a/docs/docs/auto-docs/components/AddOn/support/components/Action/Action/README.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../../../README.md) - -*** - -[talawa-admin](../../../../../../modules.md) / components/AddOn/support/components/Action/Action - -# components/AddOn/support/components/Action/Action - -## Functions - -- [default](functions/default.md) diff --git a/docs/docs/auto-docs/components/AddOn/support/components/Action/Action/functions/default.md b/docs/docs/auto-docs/components/AddOn/support/components/Action/Action/functions/default.md deleted file mode 100644 index 9b48e79e9b..0000000000 --- a/docs/docs/auto-docs/components/AddOn/support/components/Action/Action/functions/default.md +++ /dev/null @@ -1,35 +0,0 @@ -[**talawa-admin**](../../../../../../../README.md) - -*** - -[talawa-admin](../../../../../../../modules.md) / [components/AddOn/support/components/Action/Action](../README.md) / default - -# Function: default() - -> **default**(`props`): `JSX.Element` - -Defined in: [src/components/AddOn/support/components/Action/Action.tsx:29](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/AddOn/support/components/Action/Action.tsx#L29) - -A React component that renders a labeled container for embedded actions. - -## Parameters - -### props - -`InterfaceActionProps` - -The properties for the component. - -## Returns - -`JSX.Element` - -A JSX element containing the label and child elements. - -## Example - -```ts - - - -``` diff --git a/docs/docs/auto-docs/components/AddOn/support/components/MainContent/MainContent/README.md b/docs/docs/auto-docs/components/AddOn/support/components/MainContent/MainContent/README.md deleted file mode 100644 index 96985c44dc..0000000000 --- a/docs/docs/auto-docs/components/AddOn/support/components/MainContent/MainContent/README.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../../../README.md) - -*** - -[talawa-admin](../../../../../../modules.md) / components/AddOn/support/components/MainContent/MainContent - -# components/AddOn/support/components/MainContent/MainContent - -## Functions - -- [default](functions/default.md) diff --git a/docs/docs/auto-docs/components/AddOn/support/components/MainContent/MainContent/functions/default.md b/docs/docs/auto-docs/components/AddOn/support/components/MainContent/MainContent/functions/default.md deleted file mode 100644 index ffd592034d..0000000000 --- a/docs/docs/auto-docs/components/AddOn/support/components/MainContent/MainContent/functions/default.md +++ /dev/null @@ -1,35 +0,0 @@ -[**talawa-admin**](../../../../../../../README.md) - -*** - -[talawa-admin](../../../../../../../modules.md) / [components/AddOn/support/components/MainContent/MainContent](../README.md) / default - -# Function: default() - -> **default**(`props`): `JSX.Element` - -Defined in: [src/components/AddOn/support/components/MainContent/MainContent.tsx:25](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/AddOn/support/components/MainContent/MainContent.tsx#L25) - -A React component that renders a main content container with additional styles. - -## Parameters - -### props - -`InterfaceMainContentProps` - -The properties for the component. - -## Returns - -`JSX.Element` - -A JSX element containing the main content container with the provided child elements. - -## Example - -```ts - -

Main content goes here

-
-``` diff --git a/docs/docs/auto-docs/components/AddOn/support/components/SidePanel/SidePanel/README.md b/docs/docs/auto-docs/components/AddOn/support/components/SidePanel/SidePanel/README.md deleted file mode 100644 index 1280bc8469..0000000000 --- a/docs/docs/auto-docs/components/AddOn/support/components/SidePanel/SidePanel/README.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../../../README.md) - -*** - -[talawa-admin](../../../../../../modules.md) / components/AddOn/support/components/SidePanel/SidePanel - -# components/AddOn/support/components/SidePanel/SidePanel - -## Functions - -- [default](functions/default.md) diff --git a/docs/docs/auto-docs/components/AddOn/support/components/SidePanel/SidePanel/functions/default.md b/docs/docs/auto-docs/components/AddOn/support/components/SidePanel/SidePanel/functions/default.md deleted file mode 100644 index 271d9e4514..0000000000 --- a/docs/docs/auto-docs/components/AddOn/support/components/SidePanel/SidePanel/functions/default.md +++ /dev/null @@ -1,35 +0,0 @@ -[**talawa-admin**](../../../../../../../README.md) - -*** - -[talawa-admin](../../../../../../../modules.md) / [components/AddOn/support/components/SidePanel/SidePanel](../README.md) / default - -# Function: default() - -> **default**(`props`): `JSX.Element` - -Defined in: [src/components/AddOn/support/components/SidePanel/SidePanel.tsx:30](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/AddOn/support/components/SidePanel/SidePanel.tsx#L30) - -A React component that renders a side panel with an optional collapse state. - -## Parameters - -### props - -`InterfaceSidePanelProps` - -The properties for the component. - -## Returns - -`JSX.Element` - -A JSX element containing the side panel with the provided child elements. - -## Example - -```ts - -

Side panel content

-
-``` diff --git a/docs/docs/auto-docs/components/AddOn/support/services/Plugin.helper/README.md b/docs/docs/auto-docs/components/AddOn/support/services/Plugin.helper/README.md deleted file mode 100644 index a0cb53abad..0000000000 --- a/docs/docs/auto-docs/components/AddOn/support/services/Plugin.helper/README.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../../README.md) - -*** - -[talawa-admin](../../../../../modules.md) / components/AddOn/support/services/Plugin.helper - -# components/AddOn/support/services/Plugin.helper - -## Classes - -- [default](classes/default.md) diff --git a/docs/docs/auto-docs/components/AddOn/support/services/Plugin.helper/classes/default.md b/docs/docs/auto-docs/components/AddOn/support/services/Plugin.helper/classes/default.md deleted file mode 100644 index 0790f0fd75..0000000000 --- a/docs/docs/auto-docs/components/AddOn/support/services/Plugin.helper/classes/default.md +++ /dev/null @@ -1,77 +0,0 @@ -[**talawa-admin**](../../../../../../README.md) - -*** - -[talawa-admin](../../../../../../modules.md) / [components/AddOn/support/services/Plugin.helper](../README.md) / default - -# Class: default - -Defined in: [src/components/AddOn/support/services/Plugin.helper.ts:5](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/AddOn/support/services/Plugin.helper.ts#L5) - -Helper class for managing plugin-related tasks such as fetching store data, installed plugins, and generating plugin links. - -## Constructors - -### new default() - -> **new default**(): [`default`](default.md) - -#### Returns - -[`default`](default.md) - -## Methods - -### fetchInstalled() - -> **fetchInstalled**(): `Promise`\<`any`\> - -Defined in: [src/components/AddOn/support/services/Plugin.helper.ts:21](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/AddOn/support/services/Plugin.helper.ts#L21) - -Fetches the list of installed plugins from a local server. - -#### Returns - -`Promise`\<`any`\> - -A promise that resolves to the installed plugins data in JSON format. - -*** - -### fetchStore() - -> **fetchStore**(): `Promise`\<`any`\> - -Defined in: [src/components/AddOn/support/services/Plugin.helper.ts:11](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/AddOn/support/services/Plugin.helper.ts#L11) - -Fetches the store data from a local server. - -#### Returns - -`Promise`\<`any`\> - -A promise that resolves to the store data in JSON format. - -*** - -### generateLinks() - -> **generateLinks**(`plugins`): `object`[] - -Defined in: [src/components/AddOn/support/services/Plugin.helper.ts:32](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/AddOn/support/services/Plugin.helper.ts#L32) - -Generates an array of links for the enabled plugins. - -#### Parameters - -##### plugins - -`any`[] - -An array of plugin objects. - -#### Returns - -`object`[] - -An array of objects containing the name and URL of each enabled plugin. diff --git a/docs/docs/auto-docs/components/AddOn/support/services/Render.helper/README.md b/docs/docs/auto-docs/components/AddOn/support/services/Render.helper/README.md deleted file mode 100644 index e6cace69dd..0000000000 --- a/docs/docs/auto-docs/components/AddOn/support/services/Render.helper/README.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../../README.md) - -*** - -[talawa-admin](../../../../../modules.md) / components/AddOn/support/services/Render.helper - -# components/AddOn/support/services/Render.helper - -## Classes - -- [default](classes/default.md) diff --git a/docs/docs/auto-docs/components/AddOn/support/services/Render.helper/classes/default.md b/docs/docs/auto-docs/components/AddOn/support/services/Render.helper/classes/default.md deleted file mode 100644 index 5558e872ac..0000000000 --- a/docs/docs/auto-docs/components/AddOn/support/services/Render.helper/classes/default.md +++ /dev/null @@ -1,19 +0,0 @@ -[**talawa-admin**](../../../../../../README.md) - -*** - -[talawa-admin](../../../../../../modules.md) / [components/AddOn/support/services/Render.helper](../README.md) / default - -# Class: default - -Defined in: [src/components/AddOn/support/services/Render.helper.ts:1](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/AddOn/support/services/Render.helper.ts#L1) - -## Constructors - -### new default() - -> **new default**(): [`default`](default.md) - -#### Returns - -[`default`](default.md) diff --git a/docs/docs/auto-docs/components/AddPeopleToTag/AddPeopleToTag/README.md b/docs/docs/auto-docs/components/AddPeopleToTag/AddPeopleToTag/README.md deleted file mode 100644 index 1f8f9dcc9b..0000000000 --- a/docs/docs/auto-docs/components/AddPeopleToTag/AddPeopleToTag/README.md +++ /dev/null @@ -1,15 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / components/AddPeopleToTag/AddPeopleToTag - -# components/AddPeopleToTag/AddPeopleToTag - -## Interfaces - -- [InterfaceAddPeopleToTagProps](interfaces/InterfaceAddPeopleToTagProps.md) - -## Functions - -- [default](functions/default.md) diff --git a/docs/docs/auto-docs/components/AddPeopleToTag/AddPeopleToTag/functions/default.md b/docs/docs/auto-docs/components/AddPeopleToTag/AddPeopleToTag/functions/default.md deleted file mode 100644 index 383c3c138c..0000000000 --- a/docs/docs/auto-docs/components/AddPeopleToTag/AddPeopleToTag/functions/default.md +++ /dev/null @@ -1,31 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [components/AddPeopleToTag/AddPeopleToTag](../README.md) / default - -# Function: default() - -> **default**(`props`, `deprecatedLegacyContext`?): `ReactNode` - -Defined in: [src/components/AddPeopleToTag/AddPeopleToTag.tsx:42](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/AddPeopleToTag/AddPeopleToTag.tsx#L42) - -## Parameters - -### props - -[`InterfaceAddPeopleToTagProps`](../interfaces/InterfaceAddPeopleToTagProps.md) - -### deprecatedLegacyContext? - -`any` - -**Deprecated** - -**See** - -[React Docs](https://legacy.reactjs.org/docs/legacy-context.html#referencing-context-in-lifecycle-methods) - -## Returns - -`ReactNode` diff --git a/docs/docs/auto-docs/components/AddPeopleToTag/AddPeopleToTag/interfaces/InterfaceAddPeopleToTagProps.md b/docs/docs/auto-docs/components/AddPeopleToTag/AddPeopleToTag/interfaces/InterfaceAddPeopleToTagProps.md deleted file mode 100644 index e5c9fee012..0000000000 --- a/docs/docs/auto-docs/components/AddPeopleToTag/AddPeopleToTag/interfaces/InterfaceAddPeopleToTagProps.md +++ /dev/null @@ -1,59 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [components/AddPeopleToTag/AddPeopleToTag](../README.md) / InterfaceAddPeopleToTagProps - -# Interface: InterfaceAddPeopleToTagProps - -Defined in: [src/components/AddPeopleToTag/AddPeopleToTag.tsx:28](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/AddPeopleToTag/AddPeopleToTag.tsx#L28) - -Props for the `AddPeopleToTag` component. - -## Properties - -### addPeopleToTagModalIsOpen - -> **addPeopleToTagModalIsOpen**: `boolean` - -Defined in: [src/components/AddPeopleToTag/AddPeopleToTag.tsx:29](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/AddPeopleToTag/AddPeopleToTag.tsx#L29) - -*** - -### hideAddPeopleToTagModal() - -> **hideAddPeopleToTagModal**: () => `void` - -Defined in: [src/components/AddPeopleToTag/AddPeopleToTag.tsx:30](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/AddPeopleToTag/AddPeopleToTag.tsx#L30) - -#### Returns - -`void` - -*** - -### refetchAssignedMembersData() - -> **refetchAssignedMembersData**: () => `void` - -Defined in: [src/components/AddPeopleToTag/AddPeopleToTag.tsx:31](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/AddPeopleToTag/AddPeopleToTag.tsx#L31) - -#### Returns - -`void` - -*** - -### t - -> **t**: `TFunction`\<`"manageTag"`\> - -Defined in: [src/components/AddPeopleToTag/AddPeopleToTag.tsx:32](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/AddPeopleToTag/AddPeopleToTag.tsx#L32) - -*** - -### tCommon - -> **tCommon**: `TFunction`\<`"common"`\> - -Defined in: [src/components/AddPeopleToTag/AddPeopleToTag.tsx:33](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/AddPeopleToTag/AddPeopleToTag.tsx#L33) diff --git a/docs/docs/auto-docs/components/AddPeopleToTag/AddPeopleToTagsMocks/README.md b/docs/docs/auto-docs/components/AddPeopleToTag/AddPeopleToTagsMocks/README.md deleted file mode 100644 index fefcf7c92a..0000000000 --- a/docs/docs/auto-docs/components/AddPeopleToTag/AddPeopleToTagsMocks/README.md +++ /dev/null @@ -1,12 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / components/AddPeopleToTag/AddPeopleToTagsMocks - -# components/AddPeopleToTag/AddPeopleToTagsMocks - -## Variables - -- [MOCKS](variables/MOCKS.md) -- [MOCKS\_ERROR](variables/MOCKS_ERROR.md) diff --git a/docs/docs/auto-docs/components/AddPeopleToTag/AddPeopleToTagsMocks/variables/MOCKS.md b/docs/docs/auto-docs/components/AddPeopleToTag/AddPeopleToTagsMocks/variables/MOCKS.md deleted file mode 100644 index e88d5cba9e..0000000000 --- a/docs/docs/auto-docs/components/AddPeopleToTag/AddPeopleToTagsMocks/variables/MOCKS.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [components/AddPeopleToTag/AddPeopleToTagsMocks](../README.md) / MOCKS - -# Variable: MOCKS - -> `const` **MOCKS**: (\{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `after`: `undefined`; `first`: `number`; `id`: `string`; `tagId`: `undefined`; `userIds`: `undefined`; `where`: \{ `firstName`: \{ `starts_with`: `string`; \}; `lastName`: \{ `starts_with`: `string`; \}; \}; \}; \}; `result`: \{ `data`: \{ `addPeopleToUserTag`: `undefined`; `getUsersToAssignTo`: \{ `name`: `string`; `usersToAssignTo`: \{ `edges`: `object`[]; `pageInfo`: \{ `endCursor`: `string`; `hasNextPage`: `boolean`; `hasPreviousPage`: `boolean`; `startCursor`: `string`; \}; `totalCount`: `number`; \}; \}; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `after`: `string`; `first`: `number`; `id`: `string`; `tagId`: `undefined`; `userIds`: `undefined`; `where`: \{ `firstName`: \{ `starts_with`: `string`; \}; `lastName`: \{ `starts_with`: `string`; \}; \}; \}; \}; `result`: \{ `data`: \{ `addPeopleToUserTag`: `undefined`; `getUsersToAssignTo`: \{ `name`: `string`; `usersToAssignTo`: \{ `edges`: `object`[]; `pageInfo`: \{ `endCursor`: `string`; `hasNextPage`: `boolean`; `hasPreviousPage`: `boolean`; `startCursor`: `string`; \}; `totalCount`: `number`; \}; \}; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `after`: `undefined`; `first`: `undefined`; `id`: `undefined`; `tagId`: `string`; `userIds`: `string`[]; `where`: `undefined`; \}; \}; `result`: \{ `data`: \{ `addPeopleToUserTag`: \{ `_id`: `string`; \}; `getUsersToAssignTo`: `undefined`; \}; \}; \})[] - -Defined in: [src/components/AddPeopleToTag/AddPeopleToTagsMocks.ts:5](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/AddPeopleToTag/AddPeopleToTagsMocks.ts#L5) diff --git a/docs/docs/auto-docs/components/AddPeopleToTag/AddPeopleToTagsMocks/variables/MOCKS_ERROR.md b/docs/docs/auto-docs/components/AddPeopleToTag/AddPeopleToTagsMocks/variables/MOCKS_ERROR.md deleted file mode 100644 index bf46aefbb9..0000000000 --- a/docs/docs/auto-docs/components/AddPeopleToTag/AddPeopleToTagsMocks/variables/MOCKS_ERROR.md +++ /dev/null @@ -1,57 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [components/AddPeopleToTag/AddPeopleToTagsMocks](../README.md) / MOCKS\_ERROR - -# Variable: MOCKS\_ERROR - -> `const` **MOCKS\_ERROR**: `object`[] - -Defined in: [src/components/AddPeopleToTag/AddPeopleToTagsMocks.ts:277](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/AddPeopleToTag/AddPeopleToTagsMocks.ts#L277) - -## Type declaration - -### error - -> **error**: `Error` - -### request - -> **request**: `object` - -#### request.query - -> **query**: `DocumentNode` = `USER_TAGS_MEMBERS_TO_ASSIGN_TO` - -#### request.variables - -> **variables**: `object` - -#### request.variables.first - -> **first**: `number` = `TAGS_QUERY_DATA_CHUNK_SIZE` - -#### request.variables.id - -> **id**: `string` = `'1'` - -#### request.variables.where - -> **where**: `object` - -#### request.variables.where.firstName - -> **firstName**: `object` - -#### request.variables.where.firstName.starts\_with - -> **starts\_with**: `string` = `''` - -#### request.variables.where.lastName - -> **lastName**: `object` - -#### request.variables.where.lastName.starts\_with - -> **starts\_with**: `string` = `''` diff --git a/docs/docs/auto-docs/components/Advertisements/Advertisements/README.md b/docs/docs/auto-docs/components/Advertisements/Advertisements/README.md deleted file mode 100644 index a80e38ea71..0000000000 --- a/docs/docs/auto-docs/components/Advertisements/Advertisements/README.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / components/Advertisements/Advertisements - -# components/Advertisements/Advertisements - -## Functions - -- [default](functions/default.md) diff --git a/docs/docs/auto-docs/components/Advertisements/Advertisements/functions/default.md b/docs/docs/auto-docs/components/Advertisements/Advertisements/functions/default.md deleted file mode 100644 index 7478afda6a..0000000000 --- a/docs/docs/auto-docs/components/Advertisements/Advertisements/functions/default.md +++ /dev/null @@ -1,15 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [components/Advertisements/Advertisements](../README.md) / default - -# Function: default() - -> **default**(): `JSX.Element` - -Defined in: [src/components/Advertisements/Advertisements.tsx:14](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/Advertisements/Advertisements.tsx#L14) - -## Returns - -`JSX.Element` diff --git a/docs/docs/auto-docs/components/Advertisements/core/AdvertisementEntry/AdvertisementEntry/README.md b/docs/docs/auto-docs/components/Advertisements/core/AdvertisementEntry/AdvertisementEntry/README.md deleted file mode 100644 index 14277b3d34..0000000000 --- a/docs/docs/auto-docs/components/Advertisements/core/AdvertisementEntry/AdvertisementEntry/README.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../../README.md) - -*** - -[talawa-admin](../../../../../modules.md) / components/Advertisements/core/AdvertisementEntry/AdvertisementEntry - -# components/Advertisements/core/AdvertisementEntry/AdvertisementEntry - -## Functions - -- [default](functions/default.md) diff --git a/docs/docs/auto-docs/components/Advertisements/core/AdvertisementEntry/AdvertisementEntry/functions/default.md b/docs/docs/auto-docs/components/Advertisements/core/AdvertisementEntry/AdvertisementEntry/functions/default.md deleted file mode 100644 index 17c3108257..0000000000 --- a/docs/docs/auto-docs/components/Advertisements/core/AdvertisementEntry/AdvertisementEntry/functions/default.md +++ /dev/null @@ -1,28 +0,0 @@ -[**talawa-admin**](../../../../../../README.md) - -*** - -[talawa-admin](../../../../../../modules.md) / [components/Advertisements/core/AdvertisementEntry/AdvertisementEntry](../README.md) / default - -# Function: default() - -> **default**(`props`): `JSX.Element` - -Defined in: [src/components/Advertisements/core/AdvertisementEntry/AdvertisementEntry.tsx:31](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/Advertisements/core/AdvertisementEntry/AdvertisementEntry.tsx#L31) - -Component for displaying an advertisement entry. -Allows viewing, editing, and deleting of the advertisement. - -## Parameters - -### props - -`InterfaceAddOnEntryProps` - -Component properties - -## Returns - -`JSX.Element` - -The rendered component diff --git a/docs/docs/auto-docs/components/Advertisements/core/AdvertisementRegister/AdvertisementRegister/README.md b/docs/docs/auto-docs/components/Advertisements/core/AdvertisementRegister/AdvertisementRegister/README.md deleted file mode 100644 index c4b017d6ef..0000000000 --- a/docs/docs/auto-docs/components/Advertisements/core/AdvertisementRegister/AdvertisementRegister/README.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../../README.md) - -*** - -[talawa-admin](../../../../../modules.md) / components/Advertisements/core/AdvertisementRegister/AdvertisementRegister - -# components/Advertisements/core/AdvertisementRegister/AdvertisementRegister - -## Functions - -- [default](functions/default.md) diff --git a/docs/docs/auto-docs/components/Advertisements/core/AdvertisementRegister/AdvertisementRegister/functions/default.md b/docs/docs/auto-docs/components/Advertisements/core/AdvertisementRegister/AdvertisementRegister/functions/default.md deleted file mode 100644 index a9459c3a11..0000000000 --- a/docs/docs/auto-docs/components/Advertisements/core/AdvertisementRegister/AdvertisementRegister/functions/default.md +++ /dev/null @@ -1,36 +0,0 @@ -[**talawa-admin**](../../../../../../README.md) - -*** - -[talawa-admin](../../../../../../modules.md) / [components/Advertisements/core/AdvertisementRegister/AdvertisementRegister](../README.md) / default - -# Function: default() - -> **default**(`props`): `JSX.Element` - -Defined in: [src/components/Advertisements/core/AdvertisementRegister/AdvertisementRegister.tsx:60](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/Advertisements/core/AdvertisementRegister/AdvertisementRegister.tsx#L60) - -Component for registering or editing an advertisement. - -## Parameters - -### props - -`InterfaceAddOnRegisterProps` - -Contains form status, advertisement details, and a function to update parent state. - -## Returns - -`JSX.Element` - -A JSX element that renders a form inside a modal for creating or editing an advertisement. - -## Example - -```tsx - console.log(value)} -/> -``` diff --git a/docs/docs/auto-docs/components/AgendaCategory/AgendaCategoryContainer/README.md b/docs/docs/auto-docs/components/AgendaCategory/AgendaCategoryContainer/README.md deleted file mode 100644 index cefa1a1fe2..0000000000 --- a/docs/docs/auto-docs/components/AgendaCategory/AgendaCategoryContainer/README.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / components/AgendaCategory/AgendaCategoryContainer - -# components/AgendaCategory/AgendaCategoryContainer - -## Functions - -- [default](functions/default.md) diff --git a/docs/docs/auto-docs/components/AgendaCategory/AgendaCategoryContainer/functions/default.md b/docs/docs/auto-docs/components/AgendaCategory/AgendaCategoryContainer/functions/default.md deleted file mode 100644 index d4dac9dfc0..0000000000 --- a/docs/docs/auto-docs/components/AgendaCategory/AgendaCategoryContainer/functions/default.md +++ /dev/null @@ -1,47 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [components/AgendaCategory/AgendaCategoryContainer](../README.md) / default - -# Function: default() - -> **default**(`props`): `JSX.Element` - -Defined in: [src/components/AgendaCategory/AgendaCategoryContainer.tsx:34](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/AgendaCategory/AgendaCategoryContainer.tsx#L34) - -Component for displaying and managing agenda item categories. - -## Parameters - -### props - -Contains agenda category data and functions for data management. - -#### agendaCategoryConnection - -`"Organization"` - -#### agendaCategoryData - -[`InterfaceAgendaItemCategoryInfo`](../../../../utils/interfaces/interfaces/InterfaceAgendaItemCategoryInfo.md)[] - -#### agendaCategoryRefetch - -() => `void` - -## Returns - -`JSX.Element` - -A JSX element that renders agenda item categories with options to preview, edit, and delete. - -## Example - -```tsx - -``` diff --git a/docs/docs/auto-docs/components/AgendaCategory/AgendaCategoryContainerMocks/README.md b/docs/docs/auto-docs/components/AgendaCategory/AgendaCategoryContainerMocks/README.md deleted file mode 100644 index e655973093..0000000000 --- a/docs/docs/auto-docs/components/AgendaCategory/AgendaCategoryContainerMocks/README.md +++ /dev/null @@ -1,12 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / components/AgendaCategory/AgendaCategoryContainerMocks - -# components/AgendaCategory/AgendaCategoryContainerMocks - -## Variables - -- [MOCKS](variables/MOCKS.md) -- [MOCKS\_ERROR\_MUTATIONS](variables/MOCKS_ERROR_MUTATIONS.md) diff --git a/docs/docs/auto-docs/components/AgendaCategory/AgendaCategoryContainerMocks/variables/MOCKS.md b/docs/docs/auto-docs/components/AgendaCategory/AgendaCategoryContainerMocks/variables/MOCKS.md deleted file mode 100644 index 60bc6c10e9..0000000000 --- a/docs/docs/auto-docs/components/AgendaCategory/AgendaCategoryContainerMocks/variables/MOCKS.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [components/AgendaCategory/AgendaCategoryContainerMocks](../README.md) / MOCKS - -# Variable: MOCKS - -> `const` **MOCKS**: (\{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `deleteAgendaCategoryId`: `undefined`; `input`: \{ `description`: `string`; `name`: `string`; \}; `updateAgendaCategoryId`: `string`; \}; \}; `result`: \{ `data`: \{ `deleteAgendaCategory`: `undefined`; `updateAgendaCategory`: \{ `_id`: `string`; \}; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `deleteAgendaCategoryId`: `string`; `input`: `undefined`; `updateAgendaCategoryId`: `undefined`; \}; \}; `result`: \{ `data`: \{ `deleteAgendaCategory`: \{ `_id`: `string`; \}; `updateAgendaCategory`: `undefined`; \}; \}; \})[] - -Defined in: [src/components/AgendaCategory/AgendaCategoryContainerMocks.ts:6](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/AgendaCategory/AgendaCategoryContainerMocks.ts#L6) diff --git a/docs/docs/auto-docs/components/AgendaCategory/AgendaCategoryContainerMocks/variables/MOCKS_ERROR_MUTATIONS.md b/docs/docs/auto-docs/components/AgendaCategory/AgendaCategoryContainerMocks/variables/MOCKS_ERROR_MUTATIONS.md deleted file mode 100644 index 5e29d070f2..0000000000 --- a/docs/docs/auto-docs/components/AgendaCategory/AgendaCategoryContainerMocks/variables/MOCKS_ERROR_MUTATIONS.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [components/AgendaCategory/AgendaCategoryContainerMocks](../README.md) / MOCKS\_ERROR\_MUTATIONS - -# Variable: MOCKS\_ERROR\_MUTATIONS - -> `const` **MOCKS\_ERROR\_MUTATIONS**: (\{ `error`: `Error`; `request`: \{ `query`: `DocumentNode`; `variables`: \{ `deleteAgendaCategoryId`: `undefined`; `input`: \{ `description`: `string`; `name`: `string`; \}; `updateAgendaCategoryId`: `string`; \}; \}; \} \| \{ `error`: `Error`; `request`: \{ `query`: `DocumentNode`; `variables`: \{ `deleteAgendaCategoryId`: `string`; `input`: `undefined`; `updateAgendaCategoryId`: `undefined`; \}; \}; \})[] - -Defined in: [src/components/AgendaCategory/AgendaCategoryContainerMocks.ts:81](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/AgendaCategory/AgendaCategoryContainerMocks.ts#L81) diff --git a/docs/docs/auto-docs/components/AgendaCategory/AgendaCategoryContainerProps/README.md b/docs/docs/auto-docs/components/AgendaCategory/AgendaCategoryContainerProps/README.md deleted file mode 100644 index 5162a0870f..0000000000 --- a/docs/docs/auto-docs/components/AgendaCategory/AgendaCategoryContainerProps/README.md +++ /dev/null @@ -1,12 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / components/AgendaCategory/AgendaCategoryContainerProps - -# components/AgendaCategory/AgendaCategoryContainerProps - -## Variables - -- [props](variables/props.md) -- [props2](variables/props2.md) diff --git a/docs/docs/auto-docs/components/AgendaCategory/AgendaCategoryContainerProps/variables/props.md b/docs/docs/auto-docs/components/AgendaCategory/AgendaCategoryContainerProps/variables/props.md deleted file mode 100644 index a298acdce8..0000000000 --- a/docs/docs/auto-docs/components/AgendaCategory/AgendaCategoryContainerProps/variables/props.md +++ /dev/null @@ -1,25 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [components/AgendaCategory/AgendaCategoryContainerProps](../README.md) / props - -# Variable: props - -> `const` **props**: `object` - -Defined in: [src/components/AgendaCategory/AgendaCategoryContainerProps.ts:4](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/AgendaCategory/AgendaCategoryContainerProps.ts#L4) - -## Type declaration - -### agendaCategoryConnection - -> **agendaCategoryConnection**: `"Organization"` - -### agendaCategoryData - -> **agendaCategoryData**: `object`[] - -### agendaCategoryRefetch - -> **agendaCategoryRefetch**: `Mock` diff --git a/docs/docs/auto-docs/components/AgendaCategory/AgendaCategoryContainerProps/variables/props2.md b/docs/docs/auto-docs/components/AgendaCategory/AgendaCategoryContainerProps/variables/props2.md deleted file mode 100644 index bcb375d726..0000000000 --- a/docs/docs/auto-docs/components/AgendaCategory/AgendaCategoryContainerProps/variables/props2.md +++ /dev/null @@ -1,25 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [components/AgendaCategory/AgendaCategoryContainerProps](../README.md) / props2 - -# Variable: props2 - -> `const` **props2**: `object` - -Defined in: [src/components/AgendaCategory/AgendaCategoryContainerProps.ts:31](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/AgendaCategory/AgendaCategoryContainerProps.ts#L31) - -## Type declaration - -### agendaCategoryConnection - -> **agendaCategoryConnection**: `"Organization"` - -### agendaCategoryData - -> **agendaCategoryData**: `any`[] = `[]` - -### agendaCategoryRefetch - -> **agendaCategoryRefetch**: `Mock` diff --git a/docs/docs/auto-docs/components/AgendaItems/AgendaItemsContainer/README.md b/docs/docs/auto-docs/components/AgendaItems/AgendaItemsContainer/README.md deleted file mode 100644 index 7ac39feddc..0000000000 --- a/docs/docs/auto-docs/components/AgendaItems/AgendaItemsContainer/README.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / components/AgendaItems/AgendaItemsContainer - -# components/AgendaItems/AgendaItemsContainer - -## Functions - -- [default](functions/default.md) diff --git a/docs/docs/auto-docs/components/AgendaItems/AgendaItemsContainer/functions/default.md b/docs/docs/auto-docs/components/AgendaItems/AgendaItemsContainer/functions/default.md deleted file mode 100644 index 6ab00a117b..0000000000 --- a/docs/docs/auto-docs/components/AgendaItems/AgendaItemsContainer/functions/default.md +++ /dev/null @@ -1,43 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [components/AgendaItems/AgendaItemsContainer](../README.md) / default - -# Function: default() - -> **default**(`props`): `JSX.Element` - -Defined in: [src/components/AgendaItems/AgendaItemsContainer.tsx:32](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/AgendaItems/AgendaItemsContainer.tsx#L32) - -Component for displaying and managing agenda items. -Supports drag-and-drop functionality, and includes modals for previewing, -updating, and deleting agenda items. - -## Parameters - -### props - -The props for the component. - -#### agendaItemCategories - -[`InterfaceAgendaItemCategoryInfo`](../../../../utils/interfaces/interfaces/InterfaceAgendaItemCategoryInfo.md)[] - -#### agendaItemConnection - -`"Event"` - -#### agendaItemData - -[`InterfaceAgendaItemInfo`](../../../../utils/interfaces/interfaces/InterfaceAgendaItemInfo.md)[] - -#### agendaItemRefetch - -() => `void` - -## Returns - -`JSX.Element` - -JSX.Element diff --git a/docs/docs/auto-docs/components/AgendaItems/AgendaItemsContainerMocks/README.md b/docs/docs/auto-docs/components/AgendaItems/AgendaItemsContainerMocks/README.md deleted file mode 100644 index 5922fb87b2..0000000000 --- a/docs/docs/auto-docs/components/AgendaItems/AgendaItemsContainerMocks/README.md +++ /dev/null @@ -1,12 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / components/AgendaItems/AgendaItemsContainerMocks - -# components/AgendaItems/AgendaItemsContainerMocks - -## Variables - -- [MOCKS](variables/MOCKS.md) -- [MOCKS\_ERROR](variables/MOCKS_ERROR.md) diff --git a/docs/docs/auto-docs/components/AgendaItems/AgendaItemsContainerMocks/variables/MOCKS.md b/docs/docs/auto-docs/components/AgendaItems/AgendaItemsContainerMocks/variables/MOCKS.md deleted file mode 100644 index 2e39963843..0000000000 --- a/docs/docs/auto-docs/components/AgendaItems/AgendaItemsContainerMocks/variables/MOCKS.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [components/AgendaItems/AgendaItemsContainerMocks](../README.md) / MOCKS - -# Variable: MOCKS - -> `const` **MOCKS**: (\{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `input`: \{ `description`: `string`; `title`: `string`; \}; `removeAgendaItemId`: `undefined`; `updateAgendaItemId`: `string`; \}; \}; `result`: \{ `data`: \{ `removeAgendaItem`: `undefined`; `updateAgendaItem`: \{ `_id`: `string`; \}; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `input`: `undefined`; `removeAgendaItemId`: `string`; `updateAgendaItemId`: `undefined`; \}; \}; `result`: \{ `data`: \{ `removeAgendaItem`: \{ `_id`: `string`; \}; `updateAgendaItem`: `undefined`; \}; \}; \})[] - -Defined in: [src/components/AgendaItems/AgendaItemsContainerMocks.ts:6](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/AgendaItems/AgendaItemsContainerMocks.ts#L6) diff --git a/docs/docs/auto-docs/components/AgendaItems/AgendaItemsContainerMocks/variables/MOCKS_ERROR.md b/docs/docs/auto-docs/components/AgendaItems/AgendaItemsContainerMocks/variables/MOCKS_ERROR.md deleted file mode 100644 index 17c40b7f04..0000000000 --- a/docs/docs/auto-docs/components/AgendaItems/AgendaItemsContainerMocks/variables/MOCKS_ERROR.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [components/AgendaItems/AgendaItemsContainerMocks](../README.md) / MOCKS\_ERROR - -# Variable: MOCKS\_ERROR - -> `const` **MOCKS\_ERROR**: (\{ `error`: `Error`; `request`: \{ `query`: `DocumentNode`; `variables`: \{ `input`: \{ `description`: `string`; `title`: `string`; \}; `removeAgendaItemId`: `undefined`; `updateAgendaItemId`: `string`; \}; \}; \} \| \{ `error`: `Error`; `request`: \{ `query`: `DocumentNode`; `variables`: \{ `input`: `undefined`; `removeAgendaItemId`: `string`; `updateAgendaItemId`: `undefined`; \}; \}; \})[] - -Defined in: [src/components/AgendaItems/AgendaItemsContainerMocks.ts:96](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/AgendaItems/AgendaItemsContainerMocks.ts#L96) diff --git a/docs/docs/auto-docs/components/AgendaItems/AgendaItemsContainerProps/README.md b/docs/docs/auto-docs/components/AgendaItems/AgendaItemsContainerProps/README.md deleted file mode 100644 index c8fed11bb8..0000000000 --- a/docs/docs/auto-docs/components/AgendaItems/AgendaItemsContainerProps/README.md +++ /dev/null @@ -1,12 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / components/AgendaItems/AgendaItemsContainerProps - -# components/AgendaItems/AgendaItemsContainerProps - -## Variables - -- [props](variables/props.md) -- [props2](variables/props2.md) diff --git a/docs/docs/auto-docs/components/AgendaItems/AgendaItemsContainerProps/variables/props.md b/docs/docs/auto-docs/components/AgendaItems/AgendaItemsContainerProps/variables/props.md deleted file mode 100644 index 532d42b727..0000000000 --- a/docs/docs/auto-docs/components/AgendaItems/AgendaItemsContainerProps/variables/props.md +++ /dev/null @@ -1,29 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [components/AgendaItems/AgendaItemsContainerProps](../README.md) / props - -# Variable: props - -> `const` **props**: `object` - -Defined in: [src/components/AgendaItems/AgendaItemsContainerProps.ts:4](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/AgendaItems/AgendaItemsContainerProps.ts#L4) - -## Type declaration - -### agendaItemCategories - -> **agendaItemCategories**: `object`[] - -### agendaItemConnection - -> **agendaItemConnection**: `"Event"` - -### agendaItemData - -> **agendaItemData**: `object`[] - -### agendaItemRefetch - -> **agendaItemRefetch**: `Mock` diff --git a/docs/docs/auto-docs/components/AgendaItems/AgendaItemsContainerProps/variables/props2.md b/docs/docs/auto-docs/components/AgendaItems/AgendaItemsContainerProps/variables/props2.md deleted file mode 100644 index 64b0d504e4..0000000000 --- a/docs/docs/auto-docs/components/AgendaItems/AgendaItemsContainerProps/variables/props2.md +++ /dev/null @@ -1,29 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [components/AgendaItems/AgendaItemsContainerProps](../README.md) / props2 - -# Variable: props2 - -> `const` **props2**: `object` - -Defined in: [src/components/AgendaItems/AgendaItemsContainerProps.ts:97](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/AgendaItems/AgendaItemsContainerProps.ts#L97) - -## Type declaration - -### agendaItemCategories - -> **agendaItemCategories**: `any`[] = `[]` - -### agendaItemConnection - -> **agendaItemConnection**: `"Event"` - -### agendaItemData - -> **agendaItemData**: `any`[] = `[]` - -### agendaItemRefetch - -> **agendaItemRefetch**: `Mock` diff --git a/docs/docs/auto-docs/components/AgendaItems/AgendaItemsCreateModal/README.md b/docs/docs/auto-docs/components/AgendaItems/AgendaItemsCreateModal/README.md deleted file mode 100644 index af532f7ea5..0000000000 --- a/docs/docs/auto-docs/components/AgendaItems/AgendaItemsCreateModal/README.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / components/AgendaItems/AgendaItemsCreateModal - -# components/AgendaItems/AgendaItemsCreateModal - -## Functions - -- [default](functions/default.md) diff --git a/docs/docs/auto-docs/components/AgendaItems/AgendaItemsCreateModal/functions/default.md b/docs/docs/auto-docs/components/AgendaItems/AgendaItemsCreateModal/functions/default.md deleted file mode 100644 index b4ef18fb33..0000000000 --- a/docs/docs/auto-docs/components/AgendaItems/AgendaItemsCreateModal/functions/default.md +++ /dev/null @@ -1,34 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [components/AgendaItems/AgendaItemsCreateModal](../README.md) / default - -# Function: default() - -> **default**(`props`, `deprecatedLegacyContext`?): `ReactNode` - -Defined in: [src/components/AgendaItems/AgendaItemsCreateModal.tsx:43](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/AgendaItems/AgendaItemsCreateModal.tsx#L43) - -Component for creating a new agenda item. -Displays a modal form where users can input details for a new agenda item, including title, description, duration, categories, URLs, and attachments. - -## Parameters - -### props - -`InterfaceAgendaItemsCreateModalProps` - -### deprecatedLegacyContext? - -`any` - -**Deprecated** - -**See** - -[React Docs](https://legacy.reactjs.org/docs/legacy-context.html#referencing-context-in-lifecycle-methods) - -## Returns - -`ReactNode` diff --git a/docs/docs/auto-docs/components/AgendaItems/AgendaItemsDeleteModal/README.md b/docs/docs/auto-docs/components/AgendaItems/AgendaItemsDeleteModal/README.md deleted file mode 100644 index e4cf4d5114..0000000000 --- a/docs/docs/auto-docs/components/AgendaItems/AgendaItemsDeleteModal/README.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / components/AgendaItems/AgendaItemsDeleteModal - -# components/AgendaItems/AgendaItemsDeleteModal - -## Functions - -- [default](functions/default.md) diff --git a/docs/docs/auto-docs/components/AgendaItems/AgendaItemsDeleteModal/functions/default.md b/docs/docs/auto-docs/components/AgendaItems/AgendaItemsDeleteModal/functions/default.md deleted file mode 100644 index b34fc0b0ba..0000000000 --- a/docs/docs/auto-docs/components/AgendaItems/AgendaItemsDeleteModal/functions/default.md +++ /dev/null @@ -1,34 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [components/AgendaItems/AgendaItemsDeleteModal](../README.md) / default - -# Function: default() - -> **default**(`props`, `deprecatedLegacyContext`?): `ReactNode` - -Defined in: [src/components/AgendaItems/AgendaItemsDeleteModal.tsx:23](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/AgendaItems/AgendaItemsDeleteModal.tsx#L23) - -Modal component for confirming the deletion of an agenda item. -Displays a confirmation dialog when a user attempts to delete an agenda item. - -## Parameters - -### props - -`InterfaceAgendaItemsDeleteModalProps` - -### deprecatedLegacyContext? - -`any` - -**Deprecated** - -**See** - -[React Docs](https://legacy.reactjs.org/docs/legacy-context.html#referencing-context-in-lifecycle-methods) - -## Returns - -`ReactNode` diff --git a/docs/docs/auto-docs/components/AgendaItems/AgendaItemsPreviewModal/README.md b/docs/docs/auto-docs/components/AgendaItems/AgendaItemsPreviewModal/README.md deleted file mode 100644 index 83e0e2b11d..0000000000 --- a/docs/docs/auto-docs/components/AgendaItems/AgendaItemsPreviewModal/README.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / components/AgendaItems/AgendaItemsPreviewModal - -# components/AgendaItems/AgendaItemsPreviewModal - -## Functions - -- [default](functions/default.md) diff --git a/docs/docs/auto-docs/components/AgendaItems/AgendaItemsPreviewModal/functions/default.md b/docs/docs/auto-docs/components/AgendaItems/AgendaItemsPreviewModal/functions/default.md deleted file mode 100644 index 81f4afafd3..0000000000 --- a/docs/docs/auto-docs/components/AgendaItems/AgendaItemsPreviewModal/functions/default.md +++ /dev/null @@ -1,35 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [components/AgendaItems/AgendaItemsPreviewModal](../README.md) / default - -# Function: default() - -> **default**(`props`, `deprecatedLegacyContext`?): `ReactNode` - -Defined in: [src/components/AgendaItems/AgendaItemsPreviewModal.tsx:41](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/AgendaItems/AgendaItemsPreviewModal.tsx#L41) - -Modal component for previewing details of an agenda item. -Displays the details of the selected agenda item, including its categories, title, description, duration, creator, URLs, and attachments. -Also provides options to update or delete the agenda item. - -## Parameters - -### props - -`InterfaceAgendaItemsPreviewModalProps` - -### deprecatedLegacyContext? - -`any` - -**Deprecated** - -**See** - -[React Docs](https://legacy.reactjs.org/docs/legacy-context.html#referencing-context-in-lifecycle-methods) - -## Returns - -`ReactNode` diff --git a/docs/docs/auto-docs/components/AgendaItems/AgendaItemsUpdateModal/README.md b/docs/docs/auto-docs/components/AgendaItems/AgendaItemsUpdateModal/README.md deleted file mode 100644 index 08535ac0bc..0000000000 --- a/docs/docs/auto-docs/components/AgendaItems/AgendaItemsUpdateModal/README.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / components/AgendaItems/AgendaItemsUpdateModal - -# components/AgendaItems/AgendaItemsUpdateModal - -## Functions - -- [default](functions/default.md) diff --git a/docs/docs/auto-docs/components/AgendaItems/AgendaItemsUpdateModal/functions/default.md b/docs/docs/auto-docs/components/AgendaItems/AgendaItemsUpdateModal/functions/default.md deleted file mode 100644 index 6f463e3521..0000000000 --- a/docs/docs/auto-docs/components/AgendaItems/AgendaItemsUpdateModal/functions/default.md +++ /dev/null @@ -1,35 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [components/AgendaItems/AgendaItemsUpdateModal](../README.md) / default - -# Function: default() - -> **default**(`props`, `deprecatedLegacyContext`?): `ReactNode` - -Defined in: [src/components/AgendaItems/AgendaItemsUpdateModal.tsx:49](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/AgendaItems/AgendaItemsUpdateModal.tsx#L49) - -Modal component for updating details of an agenda item. -Provides a form to update the agenda item's title, description, duration, categories, URLs, and attachments. -Also includes functionality to add, remove URLs and attachments. - -## Parameters - -### props - -`InterfaceAgendaItemsUpdateModalProps` - -### deprecatedLegacyContext? - -`any` - -**Deprecated** - -**See** - -[React Docs](https://legacy.reactjs.org/docs/legacy-context.html#referencing-context-in-lifecycle-methods) - -## Returns - -`ReactNode` diff --git a/docs/docs/auto-docs/components/Avatar/Avatar/README.md b/docs/docs/auto-docs/components/Avatar/Avatar/README.md deleted file mode 100644 index 9cdcde35ad..0000000000 --- a/docs/docs/auto-docs/components/Avatar/Avatar/README.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / components/Avatar/Avatar - -# components/Avatar/Avatar - -## Functions - -- [default](functions/default.md) diff --git a/docs/docs/auto-docs/components/Avatar/Avatar/functions/default.md b/docs/docs/auto-docs/components/Avatar/Avatar/functions/default.md deleted file mode 100644 index 209b37be87..0000000000 --- a/docs/docs/auto-docs/components/Avatar/Avatar/functions/default.md +++ /dev/null @@ -1,26 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [components/Avatar/Avatar](../README.md) / default - -# Function: default() - -> **default**(`__namedParameters`): `Element` - -Defined in: [src/components/Avatar/Avatar.tsx:29](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/Avatar/Avatar.tsx#L29) - -A component that generates and displays an avatar based on the provided name. -The avatar is generated using the DiceBear library with the initials style. - -## Parameters - -### \_\_namedParameters - -`InterfaceAvatarProps` - -## Returns - -`Element` - -JSX.Element - The rendered avatar image component. diff --git a/docs/docs/auto-docs/components/ChangeLanguageDropdown/ChangeLanguageDropDown/README.md b/docs/docs/auto-docs/components/ChangeLanguageDropdown/ChangeLanguageDropDown/README.md deleted file mode 100644 index fb7e82ebb4..0000000000 --- a/docs/docs/auto-docs/components/ChangeLanguageDropdown/ChangeLanguageDropDown/README.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / components/ChangeLanguageDropdown/ChangeLanguageDropDown - -# components/ChangeLanguageDropdown/ChangeLanguageDropDown - -## Functions - -- [default](functions/default.md) diff --git a/docs/docs/auto-docs/components/ChangeLanguageDropdown/ChangeLanguageDropDown/functions/default.md b/docs/docs/auto-docs/components/ChangeLanguageDropdown/ChangeLanguageDropDown/functions/default.md deleted file mode 100644 index 6705f3f5a4..0000000000 --- a/docs/docs/auto-docs/components/ChangeLanguageDropdown/ChangeLanguageDropDown/functions/default.md +++ /dev/null @@ -1,28 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [components/ChangeLanguageDropdown/ChangeLanguageDropDown](../README.md) / default - -# Function: default() - -> **default**(`props`): `Element` - -Defined in: [src/components/ChangeLanguageDropdown/ChangeLanguageDropDown.tsx:29](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/ChangeLanguageDropdown/ChangeLanguageDropDown.tsx#L29) - -A dropdown component that allows users to change the application's language. -It updates the user's language preference in the backend and stores the selection in cookies. - -## Parameters - -### props - -`InterfaceChangeLanguageDropDownProps` - -The properties for customizing the dropdown component. - -## Returns - -`Element` - -JSX.Element - The rendered dropdown component for changing languages. diff --git a/docs/docs/auto-docs/components/CheckIn/CheckInModal/README.md b/docs/docs/auto-docs/components/CheckIn/CheckInModal/README.md deleted file mode 100644 index 93e35d3191..0000000000 --- a/docs/docs/auto-docs/components/CheckIn/CheckInModal/README.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / components/CheckIn/CheckInModal - -# components/CheckIn/CheckInModal - -## Functions - -- [CheckInModal](functions/CheckInModal.md) diff --git a/docs/docs/auto-docs/components/CheckIn/CheckInModal/functions/CheckInModal.md b/docs/docs/auto-docs/components/CheckIn/CheckInModal/functions/CheckInModal.md deleted file mode 100644 index 825977e3d3..0000000000 --- a/docs/docs/auto-docs/components/CheckIn/CheckInModal/functions/CheckInModal.md +++ /dev/null @@ -1,26 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [components/CheckIn/CheckInModal](../README.md) / CheckInModal - -# Function: CheckInModal() - -> **CheckInModal**(`__namedParameters`): `Element` - -Defined in: [src/components/CheckIn/CheckInModal.tsx:26](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/CheckIn/CheckInModal.tsx#L26) - -Modal component for managing event check-ins. Displays a list of attendees -and their check-in statuses, allowing for filtering by user name. - -## Parameters - -### \_\_namedParameters - -[`InterfaceModalProp`](../../types/interfaces/InterfaceModalProp.md) - -## Returns - -`Element` - -JSX.Element - The rendered modal component. diff --git a/docs/docs/auto-docs/components/CheckIn/CheckInWrapper/README.md b/docs/docs/auto-docs/components/CheckIn/CheckInWrapper/README.md deleted file mode 100644 index 47606eb0df..0000000000 --- a/docs/docs/auto-docs/components/CheckIn/CheckInWrapper/README.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / components/CheckIn/CheckInWrapper - -# components/CheckIn/CheckInWrapper - -## Functions - -- [CheckInWrapper](functions/CheckInWrapper.md) diff --git a/docs/docs/auto-docs/components/CheckIn/CheckInWrapper/functions/CheckInWrapper.md b/docs/docs/auto-docs/components/CheckIn/CheckInWrapper/functions/CheckInWrapper.md deleted file mode 100644 index 4b8a1d7ab0..0000000000 --- a/docs/docs/auto-docs/components/CheckIn/CheckInWrapper/functions/CheckInWrapper.md +++ /dev/null @@ -1,27 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [components/CheckIn/CheckInWrapper](../README.md) / CheckInWrapper - -# Function: CheckInWrapper() - -> **CheckInWrapper**(`eventId`): `Element` - -Defined in: [src/components/CheckIn/CheckInWrapper.tsx:17](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/CheckIn/CheckInWrapper.tsx#L17) - -Wrapper component that displays a button to open the CheckInModal. - -## Parameters - -### eventId - -`PropType` - -The ID of the event for which check-in management is being handled. - -## Returns - -`Element` - -JSX.Element - The rendered CheckInWrapper component. diff --git a/docs/docs/auto-docs/components/CheckIn/TableRow/README.md b/docs/docs/auto-docs/components/CheckIn/TableRow/README.md deleted file mode 100644 index d603432368..0000000000 --- a/docs/docs/auto-docs/components/CheckIn/TableRow/README.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / components/CheckIn/TableRow - -# components/CheckIn/TableRow - -## Functions - -- [TableRow](functions/TableRow.md) diff --git a/docs/docs/auto-docs/components/CheckIn/TableRow/functions/TableRow.md b/docs/docs/auto-docs/components/CheckIn/TableRow/functions/TableRow.md deleted file mode 100644 index ce81e29537..0000000000 --- a/docs/docs/auto-docs/components/CheckIn/TableRow/functions/TableRow.md +++ /dev/null @@ -1,32 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [components/CheckIn/TableRow](../README.md) / TableRow - -# Function: TableRow() - -> **TableRow**(`__namedParameters`): `Element` - -Defined in: [src/components/CheckIn/TableRow.tsx:19](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/CheckIn/TableRow.tsx#L19) - -Component that represents a single row in the check-in table. -Allows users to mark themselves as checked in and download a tag if they are already checked in. - -## Parameters - -### \_\_namedParameters - -#### data - -[`InterfaceTableCheckIn`](../../types/interfaces/InterfaceTableCheckIn.md) - -#### refetch - -() => `void` - -## Returns - -`Element` - -JSX.Element - The rendered TableRow component. diff --git a/docs/docs/auto-docs/components/CheckIn/mocks/README.md b/docs/docs/auto-docs/components/CheckIn/mocks/README.md deleted file mode 100644 index 9173908595..0000000000 --- a/docs/docs/auto-docs/components/CheckIn/mocks/README.md +++ /dev/null @@ -1,13 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / components/CheckIn/mocks - -# components/CheckIn/mocks - -## Variables - -- [checkInMutationSuccess](variables/checkInMutationSuccess.md) -- [checkInMutationUnsuccess](variables/checkInMutationUnsuccess.md) -- [checkInQueryMock](variables/checkInQueryMock.md) diff --git a/docs/docs/auto-docs/components/CheckIn/mocks/variables/checkInMutationSuccess.md b/docs/docs/auto-docs/components/CheckIn/mocks/variables/checkInMutationSuccess.md deleted file mode 100644 index af31fd04fb..0000000000 --- a/docs/docs/auto-docs/components/CheckIn/mocks/variables/checkInMutationSuccess.md +++ /dev/null @@ -1,49 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [components/CheckIn/mocks](../README.md) / checkInMutationSuccess - -# Variable: checkInMutationSuccess - -> `const` **checkInMutationSuccess**: `object`[] - -Defined in: [src/components/CheckIn/mocks.ts:46](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/CheckIn/mocks.ts#L46) - -## Type declaration - -### request - -> **request**: `object` - -#### request.query - -> **query**: `DocumentNode` = `MARK_CHECKIN` - -#### request.variables - -> **variables**: `object` - -#### request.variables.eventId - -> **eventId**: `string` = `'event123'` - -#### request.variables.userId - -> **userId**: `string` = `'user123'` - -### result - -> **result**: `object` - -#### result.data - -> **data**: `object` - -#### result.data.checkIn - -> **checkIn**: `object` - -#### result.data.checkIn.\_id - -> **\_id**: `string` = `'123'` diff --git a/docs/docs/auto-docs/components/CheckIn/mocks/variables/checkInMutationUnsuccess.md b/docs/docs/auto-docs/components/CheckIn/mocks/variables/checkInMutationUnsuccess.md deleted file mode 100644 index 318df15ed6..0000000000 --- a/docs/docs/auto-docs/components/CheckIn/mocks/variables/checkInMutationUnsuccess.md +++ /dev/null @@ -1,37 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [components/CheckIn/mocks](../README.md) / checkInMutationUnsuccess - -# Variable: checkInMutationUnsuccess - -> `const` **checkInMutationUnsuccess**: `object`[] - -Defined in: [src/components/CheckIn/mocks.ts:65](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/CheckIn/mocks.ts#L65) - -## Type declaration - -### error - -> **error**: `Error` - -### request - -> **request**: `object` - -#### request.query - -> **query**: `DocumentNode` = `MARK_CHECKIN` - -#### request.variables - -> **variables**: `object` - -#### request.variables.eventId - -> **eventId**: `string` = `'event123'` - -#### request.variables.userId - -> **userId**: `string` = `'user123'` diff --git a/docs/docs/auto-docs/components/CheckIn/mocks/variables/checkInQueryMock.md b/docs/docs/auto-docs/components/CheckIn/mocks/variables/checkInQueryMock.md deleted file mode 100644 index 168894afe0..0000000000 --- a/docs/docs/auto-docs/components/CheckIn/mocks/variables/checkInQueryMock.md +++ /dev/null @@ -1,37 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [components/CheckIn/mocks](../README.md) / checkInQueryMock - -# Variable: checkInQueryMock - -> `const` **checkInQueryMock**: `object`[] - -Defined in: [src/components/CheckIn/mocks.ts:34](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/CheckIn/mocks.ts#L34) - -## Type declaration - -### request - -> **request**: `object` - -#### request.query - -> **query**: `DocumentNode` = `EVENT_CHECKINS` - -#### request.variables - -> **variables**: `object` - -#### request.variables.id - -> **id**: `string` = `'event123'` - -### result - -> **result**: `object` - -#### result.data - -> **data**: [`InterfaceAttendeeQueryResponse`](../../types/interfaces/InterfaceAttendeeQueryResponse.md) = `checkInQueryData` diff --git a/docs/docs/auto-docs/components/CheckIn/tagTemplate/README.md b/docs/docs/auto-docs/components/CheckIn/tagTemplate/README.md deleted file mode 100644 index fdb4f3533e..0000000000 --- a/docs/docs/auto-docs/components/CheckIn/tagTemplate/README.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / components/CheckIn/tagTemplate - -# components/CheckIn/tagTemplate - -## Variables - -- [tagTemplate](variables/tagTemplate.md) diff --git a/docs/docs/auto-docs/components/CheckIn/tagTemplate/variables/tagTemplate.md b/docs/docs/auto-docs/components/CheckIn/tagTemplate/variables/tagTemplate.md deleted file mode 100644 index a7a22b213e..0000000000 --- a/docs/docs/auto-docs/components/CheckIn/tagTemplate/variables/tagTemplate.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [components/CheckIn/tagTemplate](../README.md) / tagTemplate - -# Variable: tagTemplate - -> `const` **tagTemplate**: `Template` - -Defined in: [src/components/CheckIn/tagTemplate.ts:4](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/CheckIn/tagTemplate.ts#L4) diff --git a/docs/docs/auto-docs/components/CheckIn/types/README.md b/docs/docs/auto-docs/components/CheckIn/types/README.md deleted file mode 100644 index 1750d4df6e..0000000000 --- a/docs/docs/auto-docs/components/CheckIn/types/README.md +++ /dev/null @@ -1,16 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / components/CheckIn/types - -# components/CheckIn/types - -## Interfaces - -- [InterfaceAttendeeCheckIn](interfaces/InterfaceAttendeeCheckIn.md) -- [InterfaceAttendeeQueryResponse](interfaces/InterfaceAttendeeQueryResponse.md) -- [InterfaceModalProp](interfaces/InterfaceModalProp.md) -- [InterfaceTableCheckIn](interfaces/InterfaceTableCheckIn.md) -- [InterfaceTableData](interfaces/InterfaceTableData.md) -- [InterfaceUser](interfaces/InterfaceUser.md) diff --git a/docs/docs/auto-docs/components/CheckIn/types/interfaces/InterfaceAttendeeCheckIn.md b/docs/docs/auto-docs/components/CheckIn/types/interfaces/InterfaceAttendeeCheckIn.md deleted file mode 100644 index c05b4db7bd..0000000000 --- a/docs/docs/auto-docs/components/CheckIn/types/interfaces/InterfaceAttendeeCheckIn.md +++ /dev/null @@ -1,41 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [components/CheckIn/types](../README.md) / InterfaceAttendeeCheckIn - -# Interface: InterfaceAttendeeCheckIn - -Defined in: [src/components/CheckIn/types.ts:7](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/CheckIn/types.ts#L7) - -## Properties - -### \_id - -> **\_id**: `string` - -Defined in: [src/components/CheckIn/types.ts:8](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/CheckIn/types.ts#L8) - -*** - -### checkIn - -> **checkIn**: `object` - -Defined in: [src/components/CheckIn/types.ts:10](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/CheckIn/types.ts#L10) - -#### \_id - -> **\_id**: `string` - -#### time - -> **time**: `string` - -*** - -### user - -> **user**: [`InterfaceUser`](InterfaceUser.md) - -Defined in: [src/components/CheckIn/types.ts:9](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/CheckIn/types.ts#L9) diff --git a/docs/docs/auto-docs/components/CheckIn/types/interfaces/InterfaceAttendeeQueryResponse.md b/docs/docs/auto-docs/components/CheckIn/types/interfaces/InterfaceAttendeeQueryResponse.md deleted file mode 100644 index b92f85b57f..0000000000 --- a/docs/docs/auto-docs/components/CheckIn/types/interfaces/InterfaceAttendeeQueryResponse.md +++ /dev/null @@ -1,25 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [components/CheckIn/types](../README.md) / InterfaceAttendeeQueryResponse - -# Interface: InterfaceAttendeeQueryResponse - -Defined in: [src/components/CheckIn/types.ts:16](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/CheckIn/types.ts#L16) - -## Properties - -### event - -> **event**: `object` - -Defined in: [src/components/CheckIn/types.ts:17](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/CheckIn/types.ts#L17) - -#### \_id - -> **\_id**: `string` - -#### attendeesCheckInStatus - -> **attendeesCheckInStatus**: [`InterfaceAttendeeCheckIn`](InterfaceAttendeeCheckIn.md)[] diff --git a/docs/docs/auto-docs/components/CheckIn/types/interfaces/InterfaceModalProp.md b/docs/docs/auto-docs/components/CheckIn/types/interfaces/InterfaceModalProp.md deleted file mode 100644 index 22c5806cd2..0000000000 --- a/docs/docs/auto-docs/components/CheckIn/types/interfaces/InterfaceModalProp.md +++ /dev/null @@ -1,37 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [components/CheckIn/types](../README.md) / InterfaceModalProp - -# Interface: InterfaceModalProp - -Defined in: [src/components/CheckIn/types.ts:23](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/CheckIn/types.ts#L23) - -## Properties - -### eventId - -> **eventId**: `string` - -Defined in: [src/components/CheckIn/types.ts:25](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/CheckIn/types.ts#L25) - -*** - -### handleClose() - -> **handleClose**: () => `void` - -Defined in: [src/components/CheckIn/types.ts:26](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/CheckIn/types.ts#L26) - -#### Returns - -`void` - -*** - -### show - -> **show**: `boolean` - -Defined in: [src/components/CheckIn/types.ts:24](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/CheckIn/types.ts#L24) diff --git a/docs/docs/auto-docs/components/CheckIn/types/interfaces/InterfaceTableCheckIn.md b/docs/docs/auto-docs/components/CheckIn/types/interfaces/InterfaceTableCheckIn.md deleted file mode 100644 index 649fdf402c..0000000000 --- a/docs/docs/auto-docs/components/CheckIn/types/interfaces/InterfaceTableCheckIn.md +++ /dev/null @@ -1,57 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [components/CheckIn/types](../README.md) / InterfaceTableCheckIn - -# Interface: InterfaceTableCheckIn - -Defined in: [src/components/CheckIn/types.ts:29](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/CheckIn/types.ts#L29) - -## Properties - -### checkIn - -> **checkIn**: `object` - -Defined in: [src/components/CheckIn/types.ts:33](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/CheckIn/types.ts#L33) - -#### \_id - -> **\_id**: `string` - -#### time - -> **time**: `string` - -*** - -### eventId - -> **eventId**: `string` - -Defined in: [src/components/CheckIn/types.ts:37](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/CheckIn/types.ts#L37) - -*** - -### id - -> **id**: `string` - -Defined in: [src/components/CheckIn/types.ts:30](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/CheckIn/types.ts#L30) - -*** - -### name - -> **name**: `string` - -Defined in: [src/components/CheckIn/types.ts:31](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/CheckIn/types.ts#L31) - -*** - -### userId - -> **userId**: `string` - -Defined in: [src/components/CheckIn/types.ts:32](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/CheckIn/types.ts#L32) diff --git a/docs/docs/auto-docs/components/CheckIn/types/interfaces/InterfaceTableData.md b/docs/docs/auto-docs/components/CheckIn/types/interfaces/InterfaceTableData.md deleted file mode 100644 index d6f253cedb..0000000000 --- a/docs/docs/auto-docs/components/CheckIn/types/interfaces/InterfaceTableData.md +++ /dev/null @@ -1,33 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [components/CheckIn/types](../README.md) / InterfaceTableData - -# Interface: InterfaceTableData - -Defined in: [src/components/CheckIn/types.ts:40](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/CheckIn/types.ts#L40) - -## Properties - -### checkInData - -> **checkInData**: [`InterfaceTableCheckIn`](InterfaceTableCheckIn.md) - -Defined in: [src/components/CheckIn/types.ts:43](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/CheckIn/types.ts#L43) - -*** - -### id - -> **id**: `string` - -Defined in: [src/components/CheckIn/types.ts:42](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/CheckIn/types.ts#L42) - -*** - -### userName - -> **userName**: `string` - -Defined in: [src/components/CheckIn/types.ts:41](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/CheckIn/types.ts#L41) diff --git a/docs/docs/auto-docs/components/CheckIn/types/interfaces/InterfaceUser.md b/docs/docs/auto-docs/components/CheckIn/types/interfaces/InterfaceUser.md deleted file mode 100644 index 09c3183f59..0000000000 --- a/docs/docs/auto-docs/components/CheckIn/types/interfaces/InterfaceUser.md +++ /dev/null @@ -1,33 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [components/CheckIn/types](../README.md) / InterfaceUser - -# Interface: InterfaceUser - -Defined in: [src/components/CheckIn/types.ts:1](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/CheckIn/types.ts#L1) - -## Properties - -### \_id - -> **\_id**: `string` - -Defined in: [src/components/CheckIn/types.ts:2](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/CheckIn/types.ts#L2) - -*** - -### firstName - -> **firstName**: `string` - -Defined in: [src/components/CheckIn/types.ts:3](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/CheckIn/types.ts#L3) - -*** - -### lastName - -> **lastName**: `string` - -Defined in: [src/components/CheckIn/types.ts:4](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/CheckIn/types.ts#L4) diff --git a/docs/docs/auto-docs/components/CollapsibleDropdown/CollapsibleDropdown/README.md b/docs/docs/auto-docs/components/CollapsibleDropdown/CollapsibleDropdown/README.md deleted file mode 100644 index d79ea7e55b..0000000000 --- a/docs/docs/auto-docs/components/CollapsibleDropdown/CollapsibleDropdown/README.md +++ /dev/null @@ -1,15 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / components/CollapsibleDropdown/CollapsibleDropdown - -# components/CollapsibleDropdown/CollapsibleDropdown - -## Interfaces - -- [InterfaceCollapsibleDropdown](interfaces/InterfaceCollapsibleDropdown.md) - -## Functions - -- [default](functions/default.md) diff --git a/docs/docs/auto-docs/components/CollapsibleDropdown/CollapsibleDropdown/functions/default.md b/docs/docs/auto-docs/components/CollapsibleDropdown/CollapsibleDropdown/functions/default.md deleted file mode 100644 index 370d9ccbef..0000000000 --- a/docs/docs/auto-docs/components/CollapsibleDropdown/CollapsibleDropdown/functions/default.md +++ /dev/null @@ -1,25 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [components/CollapsibleDropdown/CollapsibleDropdown](../README.md) / default - -# Function: default() - -> **default**(`__namedParameters`): `Element` - -Defined in: [src/components/CollapsibleDropdown/CollapsibleDropdown.tsx:24](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/CollapsibleDropdown/CollapsibleDropdown.tsx#L24) - -A collapsible dropdown component that toggles visibility of sub-targets. - -## Parameters - -### \_\_namedParameters - -[`InterfaceCollapsibleDropdown`](../interfaces/InterfaceCollapsibleDropdown.md) - -## Returns - -`Element` - -JSX.Element - The rendered CollapsibleDropdown component. diff --git a/docs/docs/auto-docs/components/CollapsibleDropdown/CollapsibleDropdown/interfaces/InterfaceCollapsibleDropdown.md b/docs/docs/auto-docs/components/CollapsibleDropdown/CollapsibleDropdown/interfaces/InterfaceCollapsibleDropdown.md deleted file mode 100644 index 4e9347c5e2..0000000000 --- a/docs/docs/auto-docs/components/CollapsibleDropdown/CollapsibleDropdown/interfaces/InterfaceCollapsibleDropdown.md +++ /dev/null @@ -1,33 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [components/CollapsibleDropdown/CollapsibleDropdown](../README.md) / InterfaceCollapsibleDropdown - -# Interface: InterfaceCollapsibleDropdown - -Defined in: [src/components/CollapsibleDropdown/CollapsibleDropdown.tsx:9](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/CollapsibleDropdown/CollapsibleDropdown.tsx#L9) - -## Properties - -### setShowDropdown - -> **setShowDropdown**: `Dispatch`\<`SetStateAction`\<`boolean`\>\> - -Defined in: [src/components/CollapsibleDropdown/CollapsibleDropdown.tsx:12](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/CollapsibleDropdown/CollapsibleDropdown.tsx#L12) - -*** - -### showDropdown - -> **showDropdown**: `boolean` - -Defined in: [src/components/CollapsibleDropdown/CollapsibleDropdown.tsx:10](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/CollapsibleDropdown/CollapsibleDropdown.tsx#L10) - -*** - -### target - -> **target**: [`TargetsType`](../../../../state/reducers/routesReducer/type-aliases/TargetsType.md) - -Defined in: [src/components/CollapsibleDropdown/CollapsibleDropdown.tsx:11](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/CollapsibleDropdown/CollapsibleDropdown.tsx#L11) diff --git a/docs/docs/auto-docs/components/ContriStats/ContriStats/README.md b/docs/docs/auto-docs/components/ContriStats/ContriStats/README.md deleted file mode 100644 index 587df84c24..0000000000 --- a/docs/docs/auto-docs/components/ContriStats/ContriStats/README.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / components/ContriStats/ContriStats - -# components/ContriStats/ContriStats - -## Functions - -- [default](functions/default.md) diff --git a/docs/docs/auto-docs/components/ContriStats/ContriStats/functions/default.md b/docs/docs/auto-docs/components/ContriStats/ContriStats/functions/default.md deleted file mode 100644 index 8b368edf28..0000000000 --- a/docs/docs/auto-docs/components/ContriStats/ContriStats/functions/default.md +++ /dev/null @@ -1,25 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [components/ContriStats/ContriStats](../README.md) / default - -# Function: default() - -> **default**(`__namedParameters`): `JSX.Element` - -Defined in: [src/components/ContriStats/ContriStats.tsx:22](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/ContriStats/ContriStats.tsx#L22) - -A component that displays contribution statistics. - -## Parameters - -### \_\_namedParameters - -`InterfaceContriStatsProps` - -## Returns - -`JSX.Element` - -JSX.Element - The rendered component displaying the contribution stats. diff --git a/docs/docs/auto-docs/components/CurrentHourIndicator/CurrentHourIndicator/README.md b/docs/docs/auto-docs/components/CurrentHourIndicator/CurrentHourIndicator/README.md deleted file mode 100644 index f48317f2f1..0000000000 --- a/docs/docs/auto-docs/components/CurrentHourIndicator/CurrentHourIndicator/README.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / components/CurrentHourIndicator/CurrentHourIndicator - -# components/CurrentHourIndicator/CurrentHourIndicator - -## Functions - -- [default](functions/default.md) diff --git a/docs/docs/auto-docs/components/CurrentHourIndicator/CurrentHourIndicator/functions/default.md b/docs/docs/auto-docs/components/CurrentHourIndicator/CurrentHourIndicator/functions/default.md deleted file mode 100644 index c53da1664e..0000000000 --- a/docs/docs/auto-docs/components/CurrentHourIndicator/CurrentHourIndicator/functions/default.md +++ /dev/null @@ -1,19 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [components/CurrentHourIndicator/CurrentHourIndicator](../README.md) / default - -# Function: default() - -> **default**(): `Element` - -Defined in: [src/components/CurrentHourIndicator/CurrentHourIndicator.tsx:9](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/CurrentHourIndicator/CurrentHourIndicator.tsx#L9) - -A component that displays an indicator for the current hour. - -## Returns - -`Element` - -JSX.Element - The rendered component showing the current hour indicator. diff --git a/docs/docs/auto-docs/components/DynamicDropDown/DynamicDropDown/README.md b/docs/docs/auto-docs/components/DynamicDropDown/DynamicDropDown/README.md deleted file mode 100644 index d1af600000..0000000000 --- a/docs/docs/auto-docs/components/DynamicDropDown/DynamicDropDown/README.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / components/DynamicDropDown/DynamicDropDown - -# components/DynamicDropDown/DynamicDropDown - -## Functions - -- [default](functions/default.md) diff --git a/docs/docs/auto-docs/components/DynamicDropDown/DynamicDropDown/functions/default.md b/docs/docs/auto-docs/components/DynamicDropDown/DynamicDropDown/functions/default.md deleted file mode 100644 index c9582cdc94..0000000000 --- a/docs/docs/auto-docs/components/DynamicDropDown/DynamicDropDown/functions/default.md +++ /dev/null @@ -1,32 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [components/DynamicDropDown/DynamicDropDown](../README.md) / default - -# Function: default() - -> **default**\<`T`\>(`__namedParameters`): `Element` - -Defined in: [src/components/DynamicDropDown/DynamicDropDown.tsx:34](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/DynamicDropDown/DynamicDropDown.tsx#L34) - -A dynamic dropdown component that allows users to select an option. - -This component renders a dropdown with a toggle button. Clicking the button -opens a menu with options. When an option is selected, it updates the form state. - -## Type Parameters - -• **T** *extends* `Record`\<`string`, `unknown`\> - -## Parameters - -### \_\_namedParameters - -`InterfaceChangeDropDownProps`\<`T`\> - -## Returns - -`Element` - -JSX.Element - The rendered dropdown component. diff --git a/docs/docs/auto-docs/components/EditCustomFieldDropDown/EditCustomFieldDropDown/README.md b/docs/docs/auto-docs/components/EditCustomFieldDropDown/EditCustomFieldDropDown/README.md deleted file mode 100644 index 045ad51fde..0000000000 --- a/docs/docs/auto-docs/components/EditCustomFieldDropDown/EditCustomFieldDropDown/README.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / components/EditCustomFieldDropDown/EditCustomFieldDropDown - -# components/EditCustomFieldDropDown/EditCustomFieldDropDown - -## Functions - -- [default](functions/default.md) diff --git a/docs/docs/auto-docs/components/EditCustomFieldDropDown/EditCustomFieldDropDown/functions/default.md b/docs/docs/auto-docs/components/EditCustomFieldDropDown/EditCustomFieldDropDown/functions/default.md deleted file mode 100644 index 87dbb87ae6..0000000000 --- a/docs/docs/auto-docs/components/EditCustomFieldDropDown/EditCustomFieldDropDown/functions/default.md +++ /dev/null @@ -1,29 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [components/EditCustomFieldDropDown/EditCustomFieldDropDown](../README.md) / default - -# Function: default() - -> **default**(`__namedParameters`): `Element` - -Defined in: [src/components/EditCustomFieldDropDown/EditCustomFieldDropDown.tsx:33](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/EditCustomFieldDropDown/EditCustomFieldDropDown.tsx#L33) - -A dropdown component for editing custom field types. - -This component displays a dropdown menu that allows users to select a custom field type. -It shows the current type of the field and provides a list of available types to choose from. -When a new type is selected, it updates the custom field data. - -## Parameters - -### \_\_namedParameters - -`InterfaceEditCustomFieldDropDownProps` - -## Returns - -`Element` - -JSX.Element - The rendered dropdown component. diff --git a/docs/docs/auto-docs/components/EventCalendar/EventCalendar/README.md b/docs/docs/auto-docs/components/EventCalendar/EventCalendar/README.md deleted file mode 100644 index 1472b8295d..0000000000 --- a/docs/docs/auto-docs/components/EventCalendar/EventCalendar/README.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / components/EventCalendar/EventCalendar - -# components/EventCalendar/EventCalendar - -## Functions - -- [default](functions/default.md) diff --git a/docs/docs/auto-docs/components/EventCalendar/EventCalendar/functions/default.md b/docs/docs/auto-docs/components/EventCalendar/EventCalendar/functions/default.md deleted file mode 100644 index 94b142befe..0000000000 --- a/docs/docs/auto-docs/components/EventCalendar/EventCalendar/functions/default.md +++ /dev/null @@ -1,31 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [components/EventCalendar/EventCalendar](../README.md) / default - -# Function: default() - -> **default**(`props`, `deprecatedLegacyContext`?): `ReactNode` - -Defined in: [src/components/EventCalendar/EventCalendar.tsx:58](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/EventCalendar/EventCalendar.tsx#L58) - -## Parameters - -### props - -`InterfaceCalendarProps` - -### deprecatedLegacyContext? - -`any` - -**Deprecated** - -**See** - -[React Docs](https://legacy.reactjs.org/docs/legacy-context.html#referencing-context-in-lifecycle-methods) - -## Returns - -`ReactNode` diff --git a/docs/docs/auto-docs/components/EventCalendar/EventHeader/README.md b/docs/docs/auto-docs/components/EventCalendar/EventHeader/README.md deleted file mode 100644 index 61eb1fc8da..0000000000 --- a/docs/docs/auto-docs/components/EventCalendar/EventHeader/README.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / components/EventCalendar/EventHeader - -# components/EventCalendar/EventHeader - -## Functions - -- [default](functions/default.md) diff --git a/docs/docs/auto-docs/components/EventCalendar/EventHeader/functions/default.md b/docs/docs/auto-docs/components/EventCalendar/EventHeader/functions/default.md deleted file mode 100644 index a213abec6e..0000000000 --- a/docs/docs/auto-docs/components/EventCalendar/EventHeader/functions/default.md +++ /dev/null @@ -1,26 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [components/EventCalendar/EventHeader](../README.md) / default - -# Function: default() - -> **default**(`__namedParameters`): `JSX.Element` - -Defined in: [src/components/EventCalendar/EventHeader.tsx:27](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/EventCalendar/EventHeader.tsx#L27) - -EventHeader component displays the header for the event calendar. -It includes a search field, view type dropdown, event type dropdown, and a button to create an event. - -## Parameters - -### \_\_namedParameters - -`InterfaceEventHeaderProps` - -## Returns - -`JSX.Element` - -JSX.Element - The rendered EventHeader component. diff --git a/docs/docs/auto-docs/components/EventCalendar/YearlyEventCalender/README.md b/docs/docs/auto-docs/components/EventCalendar/YearlyEventCalender/README.md deleted file mode 100644 index c7eb5d8b30..0000000000 --- a/docs/docs/auto-docs/components/EventCalendar/YearlyEventCalender/README.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / components/EventCalendar/YearlyEventCalender - -# components/EventCalendar/YearlyEventCalender - -## Functions - -- [default](functions/default.md) diff --git a/docs/docs/auto-docs/components/EventCalendar/YearlyEventCalender/functions/default.md b/docs/docs/auto-docs/components/EventCalendar/YearlyEventCalender/functions/default.md deleted file mode 100644 index 53f0b5e97f..0000000000 --- a/docs/docs/auto-docs/components/EventCalendar/YearlyEventCalender/functions/default.md +++ /dev/null @@ -1,38 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [components/EventCalendar/YearlyEventCalender](../README.md) / default - -# Function: default() - -> **default**(`props`, `deprecatedLegacyContext`?): `ReactNode` - -Defined in: [src/components/EventCalendar/YearlyEventCalender.tsx:95](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/EventCalendar/YearlyEventCalender.tsx#L95) - -Calendar component to display events for a selected year. - -This component renders a yearly calendar with navigation to view previous and next years. -It displays events for each day, with functionality to expand and view details of events. - -## Parameters - -### props - -`InterfaceCalendarProps` - -### deprecatedLegacyContext? - -`any` - -**Deprecated** - -**See** - -[React Docs](https://legacy.reactjs.org/docs/legacy-context.html#referencing-context-in-lifecycle-methods) - -## Returns - -`ReactNode` - -JSX.Element - The rendered calendar component. diff --git a/docs/docs/auto-docs/components/EventDashboardScreen/EventDashboardScreen/README.md b/docs/docs/auto-docs/components/EventDashboardScreen/EventDashboardScreen/README.md deleted file mode 100644 index 8ab5d2ee2b..0000000000 --- a/docs/docs/auto-docs/components/EventDashboardScreen/EventDashboardScreen/README.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / components/EventDashboardScreen/EventDashboardScreen - -# components/EventDashboardScreen/EventDashboardScreen - -## Functions - -- [default](functions/default.md) diff --git a/docs/docs/auto-docs/components/EventDashboardScreen/EventDashboardScreen/functions/default.md b/docs/docs/auto-docs/components/EventDashboardScreen/EventDashboardScreen/functions/default.md deleted file mode 100644 index c466b35022..0000000000 --- a/docs/docs/auto-docs/components/EventDashboardScreen/EventDashboardScreen/functions/default.md +++ /dev/null @@ -1,20 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [components/EventDashboardScreen/EventDashboardScreen](../README.md) / default - -# Function: default() - -> **default**(): `Element` - -Defined in: [src/components/EventDashboardScreen/EventDashboardScreen.tsx:21](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/EventDashboardScreen/EventDashboardScreen.tsx#L21) - -The EventDashboardScreen component is the main dashboard view for event management. -It includes navigation, a sidebar, and a profile dropdown. - -## Returns - -`Element` - -JSX.Element - The rendered EventDashboardScreen component. diff --git a/docs/docs/auto-docs/components/EventListCard/EventListCard/README.md b/docs/docs/auto-docs/components/EventListCard/EventListCard/README.md deleted file mode 100644 index 413bd041b0..0000000000 --- a/docs/docs/auto-docs/components/EventListCard/EventListCard/README.md +++ /dev/null @@ -1,15 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / components/EventListCard/EventListCard - -# components/EventListCard/EventListCard - -## Interfaces - -- [InterfaceEventListCardProps](interfaces/InterfaceEventListCardProps.md) - -## Functions - -- [default](functions/default.md) diff --git a/docs/docs/auto-docs/components/EventListCard/EventListCard/functions/default.md b/docs/docs/auto-docs/components/EventListCard/EventListCard/functions/default.md deleted file mode 100644 index c27af1bf71..0000000000 --- a/docs/docs/auto-docs/components/EventListCard/EventListCard/functions/default.md +++ /dev/null @@ -1,27 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [components/EventListCard/EventListCard](../README.md) / default - -# Function: default() - -> **default**(`props`): `JSX.Element` - -Defined in: [src/components/EventListCard/EventListCard.tsx:45](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/EventListCard/EventListCard.tsx#L45) - -Component that displays an event card with a modal for event details. - -## Parameters - -### props - -[`InterfaceEventListCardProps`](../interfaces/InterfaceEventListCardProps.md) - -The props for the EventListCard component. - -## Returns - -`JSX.Element` - -The rendered EventListCard component. diff --git a/docs/docs/auto-docs/components/EventListCard/EventListCard/interfaces/InterfaceEventListCardProps.md b/docs/docs/auto-docs/components/EventListCard/EventListCard/interfaces/InterfaceEventListCardProps.md deleted file mode 100644 index eecbfb724f..0000000000 --- a/docs/docs/auto-docs/components/EventListCard/EventListCard/interfaces/InterfaceEventListCardProps.md +++ /dev/null @@ -1,183 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [components/EventListCard/EventListCard](../README.md) / InterfaceEventListCardProps - -# Interface: InterfaceEventListCardProps - -Defined in: [src/components/EventListCard/EventListCard.tsx:11](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/EventListCard/EventListCard.tsx#L11) - -Props for the EventListCard component. - -## Properties - -### allDay - -> **allDay**: `boolean` - -Defined in: [src/components/EventListCard/EventListCard.tsx:23](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/EventListCard/EventListCard.tsx#L23) - -*** - -### creator? - -> `optional` **creator**: `object` - -Defined in: [src/components/EventListCard/EventListCard.tsx:32](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/EventListCard/EventListCard.tsx#L32) - -#### \_id - -> **\_id**: `string` - -#### firstName - -> **firstName**: `string` - -#### lastName - -> **lastName**: `string` - -*** - -### endDate - -> **endDate**: `string` - -Defined in: [src/components/EventListCard/EventListCard.tsx:20](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/EventListCard/EventListCard.tsx#L20) - -*** - -### endTime - -> **endTime**: `string` - -Defined in: [src/components/EventListCard/EventListCard.tsx:22](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/EventListCard/EventListCard.tsx#L22) - -*** - -### eventDescription - -> **eventDescription**: `string` - -Defined in: [src/components/EventListCard/EventListCard.tsx:18](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/EventListCard/EventListCard.tsx#L18) - -*** - -### eventLocation - -> **eventLocation**: `string` - -Defined in: [src/components/EventListCard/EventListCard.tsx:16](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/EventListCard/EventListCard.tsx#L16) - -*** - -### eventName - -> **eventName**: `string` - -Defined in: [src/components/EventListCard/EventListCard.tsx:17](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/EventListCard/EventListCard.tsx#L17) - -*** - -### id - -> **id**: `string` - -Defined in: [src/components/EventListCard/EventListCard.tsx:15](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/EventListCard/EventListCard.tsx#L15) - -*** - -### isPublic - -> **isPublic**: `boolean` - -Defined in: [src/components/EventListCard/EventListCard.tsx:27](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/EventListCard/EventListCard.tsx#L27) - -*** - -### isRecurringEventException - -> **isRecurringEventException**: `boolean` - -Defined in: [src/components/EventListCard/EventListCard.tsx:26](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/EventListCard/EventListCard.tsx#L26) - -*** - -### isRegisterable - -> **isRegisterable**: `boolean` - -Defined in: [src/components/EventListCard/EventListCard.tsx:28](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/EventListCard/EventListCard.tsx#L28) - -*** - -### key - -> **key**: `string` - -Defined in: [src/components/EventListCard/EventListCard.tsx:14](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/EventListCard/EventListCard.tsx#L14) - -*** - -### recurrenceRule - -> **recurrenceRule**: [`InterfaceRecurrenceRule`](../../../../utils/recurrenceUtils/recurrenceTypes/interfaces/InterfaceRecurrenceRule.md) - -Defined in: [src/components/EventListCard/EventListCard.tsx:25](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/EventListCard/EventListCard.tsx#L25) - -*** - -### recurring - -> **recurring**: `boolean` - -Defined in: [src/components/EventListCard/EventListCard.tsx:24](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/EventListCard/EventListCard.tsx#L24) - -*** - -### refetchEvents()? - -> `optional` **refetchEvents**: () => `void` - -Defined in: [src/components/EventListCard/EventListCard.tsx:12](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/EventListCard/EventListCard.tsx#L12) - -#### Returns - -`void` - -*** - -### registrants? - -> `optional` **registrants**: `object`[] - -Defined in: [src/components/EventListCard/EventListCard.tsx:29](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/EventListCard/EventListCard.tsx#L29) - -#### \_id - -> **\_id**: `string` - -*** - -### startDate - -> **startDate**: `string` - -Defined in: [src/components/EventListCard/EventListCard.tsx:19](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/EventListCard/EventListCard.tsx#L19) - -*** - -### startTime - -> **startTime**: `string` - -Defined in: [src/components/EventListCard/EventListCard.tsx:21](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/EventListCard/EventListCard.tsx#L21) - -*** - -### userRole? - -> `optional` **userRole**: `string` - -Defined in: [src/components/EventListCard/EventListCard.tsx:13](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/EventListCard/EventListCard.tsx#L13) diff --git a/docs/docs/auto-docs/components/EventListCard/EventListCardMocks/README.md b/docs/docs/auto-docs/components/EventListCard/EventListCardMocks/README.md deleted file mode 100644 index f3e178dc1b..0000000000 --- a/docs/docs/auto-docs/components/EventListCard/EventListCardMocks/README.md +++ /dev/null @@ -1,12 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / components/EventListCard/EventListCardMocks - -# components/EventListCard/EventListCardMocks - -## Variables - -- [ERROR\_MOCKS](variables/ERROR_MOCKS.md) -- [MOCKS](variables/MOCKS.md) diff --git a/docs/docs/auto-docs/components/EventListCard/EventListCardMocks/variables/ERROR_MOCKS.md b/docs/docs/auto-docs/components/EventListCard/EventListCardMocks/variables/ERROR_MOCKS.md deleted file mode 100644 index deb95d736b..0000000000 --- a/docs/docs/auto-docs/components/EventListCard/EventListCardMocks/variables/ERROR_MOCKS.md +++ /dev/null @@ -1,33 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [components/EventListCard/EventListCardMocks](../README.md) / ERROR\_MOCKS - -# Variable: ERROR\_MOCKS - -> `const` **ERROR\_MOCKS**: `object`[] - -Defined in: [src/components/EventListCard/EventListCardMocks.ts:191](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/EventListCard/EventListCardMocks.ts#L191) - -## Type declaration - -### error - -> **error**: `Error` - -### request - -> **request**: `object` - -#### request.query - -> **query**: `DocumentNode` = `DELETE_EVENT_MUTATION` - -#### request.variables - -> **variables**: `object` - -#### request.variables.id - -> **id**: `string` = `'1'` diff --git a/docs/docs/auto-docs/components/EventListCard/EventListCardMocks/variables/MOCKS.md b/docs/docs/auto-docs/components/EventListCard/EventListCardMocks/variables/MOCKS.md deleted file mode 100644 index c8493980ab..0000000000 --- a/docs/docs/auto-docs/components/EventListCard/EventListCardMocks/variables/MOCKS.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [components/EventListCard/EventListCardMocks](../README.md) / MOCKS - -# Variable: MOCKS - -> `const` **MOCKS**: (\{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `allDay`: `undefined`; `description`: `undefined`; `endDate`: `undefined`; `endTime`: `undefined`; `eventId`: `undefined`; `frequency`: `undefined`; `id`: `string`; `interval`: `undefined`; `isPublic`: `undefined`; `isRegisterable`: `undefined`; `location`: `undefined`; `recurrenceEndDate`: `undefined`; `recurrenceStartDate`: `undefined`; `recurring`: `undefined`; `recurringEventDeleteType`: `undefined`; `recurringEventUpdateType`: `undefined`; `startDate`: `undefined`; `startTime`: `undefined`; `title`: `undefined`; `weekDayOccurenceInMonth`: `undefined`; `weekDays`: `undefined`; \}; \}; `result`: \{ `data`: \{ `registerForEvent`: `undefined`; `removeEvent`: \{ `_id`: `string`; \}; `updateEvent`: `undefined`; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `allDay`: `undefined`; `description`: `undefined`; `endDate`: `undefined`; `endTime`: `undefined`; `eventId`: `undefined`; `frequency`: `undefined`; `id`: `string`; `interval`: `undefined`; `isPublic`: `undefined`; `isRegisterable`: `undefined`; `location`: `undefined`; `recurrenceEndDate`: `undefined`; `recurrenceStartDate`: `undefined`; `recurring`: `undefined`; `recurringEventDeleteType`: `string`; `recurringEventUpdateType`: `undefined`; `startDate`: `undefined`; `startTime`: `undefined`; `title`: `undefined`; `weekDayOccurenceInMonth`: `undefined`; `weekDays`: `undefined`; \}; \}; `result`: \{ `data`: \{ `registerForEvent`: `undefined`; `removeEvent`: \{ `_id`: `string`; \}; `updateEvent`: `undefined`; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `allDay`: `boolean`; `description`: `string`; `endDate`: `string`; `endTime`: `undefined`; `eventId`: `undefined`; `frequency`: `undefined`; `id`: `string`; `interval`: `undefined`; `isPublic`: `boolean`; `isRegisterable`: `boolean`; `location`: `string`; `recurrenceEndDate`: `undefined`; `recurrenceStartDate`: `undefined`; `recurring`: `boolean`; `recurringEventDeleteType`: `undefined`; `recurringEventUpdateType`: `undefined`; `startDate`: `string`; `startTime`: `undefined`; `title`: `string`; `weekDayOccurenceInMonth`: `undefined`; `weekDays`: `undefined`; \}; \}; `result`: \{ `data`: \{ `registerForEvent`: `undefined`; `removeEvent`: `undefined`; `updateEvent`: \{ `_id`: `string`; \}; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `allDay`: `boolean`; `description`: `string`; `endDate`: `string`; `endTime`: `string`; `eventId`: `undefined`; `frequency`: `undefined`; `id`: `string`; `interval`: `undefined`; `isPublic`: `boolean`; `isRegisterable`: `boolean`; `location`: `string`; `recurrenceEndDate`: `undefined`; `recurrenceStartDate`: `undefined`; `recurring`: `boolean`; `recurringEventDeleteType`: `undefined`; `recurringEventUpdateType`: `undefined`; `startDate`: `string`; `startTime`: `string`; `title`: `string`; `weekDayOccurenceInMonth`: `undefined`; `weekDays`: `undefined`; \}; \}; `result`: \{ `data`: \{ `registerForEvent`: `undefined`; `removeEvent`: `undefined`; `updateEvent`: \{ `_id`: `string`; \}; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `allDay`: `boolean`; `description`: `string`; `endDate`: `string`; `endTime`: `undefined`; `eventId`: `undefined`; `frequency`: `string`; `id`: `string`; `interval`: `number`; `isPublic`: `boolean`; `isRegisterable`: `boolean`; `location`: `string`; `recurrenceEndDate`: `any`; `recurrenceStartDate`: `string`; `recurring`: `boolean`; `recurringEventDeleteType`: `undefined`; `recurringEventUpdateType`: `string`; `startDate`: `string`; `startTime`: `undefined`; `title`: `string`; `weekDayOccurenceInMonth`: `undefined`; `weekDays`: `string`[]; \}; \}; `result`: \{ `data`: \{ `registerForEvent`: `undefined`; `removeEvent`: `undefined`; `updateEvent`: \{ `_id`: `string`; \}; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `allDay`: `boolean`; `description`: `string`; `endDate`: `string`; `endTime`: `undefined`; `eventId`: `undefined`; `frequency`: `string`; `id`: `string`; `interval`: `number`; `isPublic`: `boolean`; `isRegisterable`: `boolean`; `location`: `string`; `recurrenceEndDate`: `string`; `recurrenceStartDate`: `string`; `recurring`: `boolean`; `recurringEventDeleteType`: `undefined`; `recurringEventUpdateType`: `string`; `startDate`: `string`; `startTime`: `undefined`; `title`: `string`; `weekDayOccurenceInMonth`: `number`; `weekDays`: `string`[]; \}; \}; `result`: \{ `data`: \{ `registerForEvent`: `undefined`; `removeEvent`: `undefined`; `updateEvent`: \{ `_id`: `string`; \}; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `allDay`: `boolean`; `description`: `string`; `endDate`: `string`; `endTime`: `undefined`; `eventId`: `undefined`; `frequency`: `string`; `id`: `string`; `interval`: `number`; `isPublic`: `boolean`; `isRegisterable`: `boolean`; `location`: `string`; `recurrenceEndDate`: `any`; `recurrenceStartDate`: `string`; `recurring`: `boolean`; `recurringEventDeleteType`: `undefined`; `recurringEventUpdateType`: `string`; `startDate`: `string`; `startTime`: `undefined`; `title`: `string`; `weekDayOccurenceInMonth`: `undefined`; `weekDays`: `undefined`; \}; \}; `result`: \{ `data`: \{ `registerForEvent`: `undefined`; `removeEvent`: `undefined`; `updateEvent`: \{ `_id`: `string`; \}; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `allDay`: `undefined`; `description`: `undefined`; `endDate`: `undefined`; `endTime`: `undefined`; `eventId`: `string`; `frequency`: `undefined`; `id`: `undefined`; `interval`: `undefined`; `isPublic`: `undefined`; `isRegisterable`: `undefined`; `location`: `undefined`; `recurrenceEndDate`: `undefined`; `recurrenceStartDate`: `undefined`; `recurring`: `undefined`; `recurringEventDeleteType`: `undefined`; `recurringEventUpdateType`: `undefined`; `startDate`: `undefined`; `startTime`: `undefined`; `title`: `undefined`; `weekDayOccurenceInMonth`: `undefined`; `weekDays`: `undefined`; \}; \}; `result`: \{ `data`: \{ `registerForEvent`: `object`[]; `removeEvent`: `undefined`; `updateEvent`: `undefined`; \}; \}; \})[] - -Defined in: [src/components/EventListCard/EventListCardMocks.ts:7](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/EventListCard/EventListCardMocks.ts#L7) diff --git a/docs/docs/auto-docs/components/EventListCard/EventListCardModals/README.md b/docs/docs/auto-docs/components/EventListCard/EventListCardModals/README.md deleted file mode 100644 index a431dca3dd..0000000000 --- a/docs/docs/auto-docs/components/EventListCard/EventListCardModals/README.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / components/EventListCard/EventListCardModals - -# components/EventListCard/EventListCardModals - -## Functions - -- [default](functions/default.md) diff --git a/docs/docs/auto-docs/components/EventListCard/EventListCardModals/functions/default.md b/docs/docs/auto-docs/components/EventListCard/EventListCardModals/functions/default.md deleted file mode 100644 index 9c0a5085d3..0000000000 --- a/docs/docs/auto-docs/components/EventListCard/EventListCardModals/functions/default.md +++ /dev/null @@ -1,28 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [components/EventListCard/EventListCardModals](../README.md) / default - -# Function: default() - -> **default**(`props`): `JSX.Element` - -Defined in: [src/components/EventListCard/EventListCardModals.tsx:72](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/EventListCard/EventListCardModals.tsx#L72) - -The `EventListCardModals` component displays the modals related to events, such as viewing, -updating, and deleting events. - -## Parameters - -### props - -`InterfaceEventListCardModalProps` - -The properties for the component. - -## Returns - -`JSX.Element` - -A JSX element containing the event modals. diff --git a/docs/docs/auto-docs/components/EventListCard/EventListCardProps/README.md b/docs/docs/auto-docs/components/EventListCard/EventListCardProps/README.md deleted file mode 100644 index 57a365ea63..0000000000 --- a/docs/docs/auto-docs/components/EventListCard/EventListCardProps/README.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / components/EventListCard/EventListCardProps - -# components/EventListCard/EventListCardProps - -## Variables - -- [props](variables/props.md) diff --git a/docs/docs/auto-docs/components/EventListCard/EventListCardProps/variables/props.md b/docs/docs/auto-docs/components/EventListCard/EventListCardProps/variables/props.md deleted file mode 100644 index 5171db46a6..0000000000 --- a/docs/docs/auto-docs/components/EventListCard/EventListCardProps/variables/props.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [components/EventListCard/EventListCardProps](../README.md) / props - -# Variable: props - -> `const` **props**: [`InterfaceEventListCardProps`](../../EventListCard/interfaces/InterfaceEventListCardProps.md)[] - -Defined in: [src/components/EventListCard/EventListCardProps.ts:4](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/EventListCard/EventListCardProps.ts#L4) diff --git a/docs/docs/auto-docs/components/EventManagement/Dashboard/EventDashboard.mocks/README.md b/docs/docs/auto-docs/components/EventManagement/Dashboard/EventDashboard.mocks/README.md deleted file mode 100644 index 6077bc4772..0000000000 --- a/docs/docs/auto-docs/components/EventManagement/Dashboard/EventDashboard.mocks/README.md +++ /dev/null @@ -1,12 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / components/EventManagement/Dashboard/EventDashboard.mocks - -# components/EventManagement/Dashboard/EventDashboard.mocks - -## Variables - -- [MOCKS\_WITH\_TIME](variables/MOCKS_WITH_TIME.md) -- [MOCKS\_WITHOUT\_TIME](variables/MOCKS_WITHOUT_TIME.md) diff --git a/docs/docs/auto-docs/components/EventManagement/Dashboard/EventDashboard.mocks/variables/MOCKS_WITHOUT_TIME.md b/docs/docs/auto-docs/components/EventManagement/Dashboard/EventDashboard.mocks/variables/MOCKS_WITHOUT_TIME.md deleted file mode 100644 index 8ebd85d294..0000000000 --- a/docs/docs/auto-docs/components/EventManagement/Dashboard/EventDashboard.mocks/variables/MOCKS_WITHOUT_TIME.md +++ /dev/null @@ -1,101 +0,0 @@ -[**talawa-admin**](../../../../../README.md) - -*** - -[talawa-admin](../../../../../modules.md) / [components/EventManagement/Dashboard/EventDashboard.mocks](../README.md) / MOCKS\_WITHOUT\_TIME - -# Variable: MOCKS\_WITHOUT\_TIME - -> `const` **MOCKS\_WITHOUT\_TIME**: `object`[] - -Defined in: [src/components/EventManagement/Dashboard/EventDashboard.mocks.ts:34](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/EventManagement/Dashboard/EventDashboard.mocks.ts#L34) - -## Type declaration - -### request - -> **request**: `object` - -#### request.query - -> **query**: `DocumentNode` = `EVENT_DETAILS` - -#### request.variables - -> **variables**: `object` - -#### request.variables.id - -> **id**: `string` = `'event123'` - -### result - -> **result**: `object` - -#### result.data - -> **data**: `object` - -#### result.data.event - -> **event**: `object` - -#### result.data.event.\_id - -> **\_id**: `string` = `'event123'` - -#### result.data.event.allDay - -> **allDay**: `boolean` = `true` - -#### result.data.event.attendees - -> **attendees**: `object`[] - -#### result.data.event.creator - -> **creator**: `object` - -#### result.data.event.creator.\_id - -> **\_id**: `string` = `'creator1'` - -#### result.data.event.creator.firstName - -> **firstName**: `string` = `'John'` - -#### result.data.event.creator.lastName - -> **lastName**: `string` = `'Doe'` - -#### result.data.event.description - -> **description**: `string` = `'Test Description'` - -#### result.data.event.endDate - -> **endDate**: `string` = `'2024-01-02'` - -#### result.data.event.endTime - -> **endTime**: `any` = `null` - -#### result.data.event.location - -> **location**: `string` = `'India'` - -#### result.data.event.recurring - -> **recurring**: `boolean` = `false` - -#### result.data.event.startDate - -> **startDate**: `string` = `'2024-01-01'` - -#### result.data.event.startTime - -> **startTime**: `any` = `null` - -#### result.data.event.title - -> **title**: `string` = `'Test Event'` diff --git a/docs/docs/auto-docs/components/EventManagement/Dashboard/EventDashboard.mocks/variables/MOCKS_WITH_TIME.md b/docs/docs/auto-docs/components/EventManagement/Dashboard/EventDashboard.mocks/variables/MOCKS_WITH_TIME.md deleted file mode 100644 index 051e8b5ba9..0000000000 --- a/docs/docs/auto-docs/components/EventManagement/Dashboard/EventDashboard.mocks/variables/MOCKS_WITH_TIME.md +++ /dev/null @@ -1,101 +0,0 @@ -[**talawa-admin**](../../../../../README.md) - -*** - -[talawa-admin](../../../../../modules.md) / [components/EventManagement/Dashboard/EventDashboard.mocks](../README.md) / MOCKS\_WITH\_TIME - -# Variable: MOCKS\_WITH\_TIME - -> `const` **MOCKS\_WITH\_TIME**: `object`[] - -Defined in: [src/components/EventManagement/Dashboard/EventDashboard.mocks.ts:3](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/EventManagement/Dashboard/EventDashboard.mocks.ts#L3) - -## Type declaration - -### request - -> **request**: `object` - -#### request.query - -> **query**: `DocumentNode` = `EVENT_DETAILS` - -#### request.variables - -> **variables**: `object` - -#### request.variables.id - -> **id**: `string` = `'event123'` - -### result - -> **result**: `object` - -#### result.data - -> **data**: `object` - -#### result.data.event - -> **event**: `object` - -#### result.data.event.\_id - -> **\_id**: `string` = `'event123'` - -#### result.data.event.allDay - -> **allDay**: `boolean` = `false` - -#### result.data.event.attendees - -> **attendees**: `object`[] - -#### result.data.event.creator - -> **creator**: `object` - -#### result.data.event.creator.\_id - -> **\_id**: `string` = `'creator1'` - -#### result.data.event.creator.firstName - -> **firstName**: `string` = `'John'` - -#### result.data.event.creator.lastName - -> **lastName**: `string` = `'Doe'` - -#### result.data.event.description - -> **description**: `string` = `'Test Description'` - -#### result.data.event.endDate - -> **endDate**: `string` = `'2024-01-02'` - -#### result.data.event.endTime - -> **endTime**: `string` = `'17:00:00'` - -#### result.data.event.location - -> **location**: `string` = `'India'` - -#### result.data.event.recurring - -> **recurring**: `boolean` = `false` - -#### result.data.event.startDate - -> **startDate**: `string` = `'2024-01-01'` - -#### result.data.event.startTime - -> **startTime**: `string` = `'09:00:00'` - -#### result.data.event.title - -> **title**: `string` = `'Test Event'` diff --git a/docs/docs/auto-docs/components/EventManagement/Dashboard/EventDashboard/README.md b/docs/docs/auto-docs/components/EventManagement/Dashboard/EventDashboard/README.md deleted file mode 100644 index 8a531a757e..0000000000 --- a/docs/docs/auto-docs/components/EventManagement/Dashboard/EventDashboard/README.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / components/EventManagement/Dashboard/EventDashboard - -# components/EventManagement/Dashboard/EventDashboard - -## Functions - -- [default](functions/default.md) diff --git a/docs/docs/auto-docs/components/EventManagement/Dashboard/EventDashboard/functions/default.md b/docs/docs/auto-docs/components/EventManagement/Dashboard/EventDashboard/functions/default.md deleted file mode 100644 index 2b5c194664..0000000000 --- a/docs/docs/auto-docs/components/EventManagement/Dashboard/EventDashboard/functions/default.md +++ /dev/null @@ -1,29 +0,0 @@ -[**talawa-admin**](../../../../../README.md) - -*** - -[talawa-admin](../../../../../modules.md) / [components/EventManagement/Dashboard/EventDashboard](../README.md) / default - -# Function: default() - -> **default**(`props`): `Element` - -Defined in: [src/components/EventManagement/Dashboard/EventDashboard.tsx:20](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/EventManagement/Dashboard/EventDashboard.tsx#L20) - -Component that displays event details. - -## Parameters - -### props - -The props for the EventDashboard component. - -#### eventId - -`string` - -## Returns - -`Element` - -The rendered EventDashboard component. diff --git a/docs/docs/auto-docs/components/EventManagement/EventAgendaItems/EventAgendaItems/README.md b/docs/docs/auto-docs/components/EventManagement/EventAgendaItems/EventAgendaItems/README.md deleted file mode 100644 index 986421c468..0000000000 --- a/docs/docs/auto-docs/components/EventManagement/EventAgendaItems/EventAgendaItems/README.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / components/EventManagement/EventAgendaItems/EventAgendaItems - -# components/EventManagement/EventAgendaItems/EventAgendaItems - -## Functions - -- [default](functions/default.md) diff --git a/docs/docs/auto-docs/components/EventManagement/EventAgendaItems/EventAgendaItems/functions/default.md b/docs/docs/auto-docs/components/EventManagement/EventAgendaItems/EventAgendaItems/functions/default.md deleted file mode 100644 index a7c3f14fb7..0000000000 --- a/docs/docs/auto-docs/components/EventManagement/EventAgendaItems/EventAgendaItems/functions/default.md +++ /dev/null @@ -1,29 +0,0 @@ -[**talawa-admin**](../../../../../README.md) - -*** - -[talawa-admin](../../../../../modules.md) / [components/EventManagement/EventAgendaItems/EventAgendaItems](../README.md) / default - -# Function: default() - -> **default**(`props`): `JSX.Element` - -Defined in: [src/components/EventManagement/EventAgendaItems/EventAgendaItems.tsx:33](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/EventManagement/EventAgendaItems/EventAgendaItems.tsx#L33) - -Component to manage and display agenda items for a specific event. - -## Parameters - -### props - -The component props. - -#### eventId - -`string` - -## Returns - -`JSX.Element` - -The rendered component. diff --git a/docs/docs/auto-docs/components/EventManagement/EventAgendaItems/EventAgendaItemsMocks/README.md b/docs/docs/auto-docs/components/EventManagement/EventAgendaItems/EventAgendaItemsMocks/README.md deleted file mode 100644 index 26246e02f3..0000000000 --- a/docs/docs/auto-docs/components/EventManagement/EventAgendaItems/EventAgendaItemsMocks/README.md +++ /dev/null @@ -1,13 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / components/EventManagement/EventAgendaItems/EventAgendaItemsMocks - -# components/EventManagement/EventAgendaItems/EventAgendaItemsMocks - -## Variables - -- [MOCKS](variables/MOCKS.md) -- [MOCKS\_ERROR\_MUTATION](variables/MOCKS_ERROR_MUTATION.md) -- [MOCKS\_ERROR\_QUERY](variables/MOCKS_ERROR_QUERY.md) diff --git a/docs/docs/auto-docs/components/EventManagement/EventAgendaItems/EventAgendaItemsMocks/variables/MOCKS.md b/docs/docs/auto-docs/components/EventManagement/EventAgendaItems/EventAgendaItemsMocks/variables/MOCKS.md deleted file mode 100644 index 2518457629..0000000000 --- a/docs/docs/auto-docs/components/EventManagement/EventAgendaItems/EventAgendaItemsMocks/variables/MOCKS.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../../README.md) - -*** - -[talawa-admin](../../../../../modules.md) / [components/EventManagement/EventAgendaItems/EventAgendaItemsMocks](../README.md) / MOCKS - -# Variable: MOCKS - -> `const` **MOCKS**: (\{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `input`: `undefined`; `organizationId`: `string`; `relatedEventId`: `undefined`; \}; \}; `result`: \{ `data`: \{ `agendaItemByEvent`: `undefined`; `agendaItemCategoriesByOrganization`: `object`[]; `createAgendaItem`: `undefined`; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `input`: `undefined`; `organizationId`: `undefined`; `relatedEventId`: `string`; \}; \}; `result`: \{ `data`: \{ `agendaItemByEvent`: `object`[]; `agendaItemCategoriesByOrganization`: `undefined`; `createAgendaItem`: `undefined`; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `input`: \{ `attachments`: `any`[]; `categories`: `string`[]; `description`: `string`; `duration`: `string`; `organizationId`: `string`; `relatedEventId`: `string`; `sequence`: `number`; `title`: `string`; `urls`: `any`[]; \}; `organizationId`: `undefined`; `relatedEventId`: `undefined`; \}; \}; `result`: \{ `data`: \{ `agendaItemByEvent`: `undefined`; `agendaItemCategoriesByOrganization`: `undefined`; `createAgendaItem`: \{ `_id`: `string`; \}; \}; \}; \})[] - -Defined in: [src/components/EventManagement/EventAgendaItems/EventAgendaItemsMocks.ts:6](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/EventManagement/EventAgendaItems/EventAgendaItemsMocks.ts#L6) diff --git a/docs/docs/auto-docs/components/EventManagement/EventAgendaItems/EventAgendaItemsMocks/variables/MOCKS_ERROR_MUTATION.md b/docs/docs/auto-docs/components/EventManagement/EventAgendaItems/EventAgendaItemsMocks/variables/MOCKS_ERROR_MUTATION.md deleted file mode 100644 index 4e5340d980..0000000000 --- a/docs/docs/auto-docs/components/EventManagement/EventAgendaItems/EventAgendaItemsMocks/variables/MOCKS_ERROR_MUTATION.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../../README.md) - -*** - -[talawa-admin](../../../../../modules.md) / [components/EventManagement/EventAgendaItems/EventAgendaItemsMocks](../README.md) / MOCKS\_ERROR\_MUTATION - -# Variable: MOCKS\_ERROR\_MUTATION - -> `const` **MOCKS\_ERROR\_MUTATION**: (\{ `error`: `Error`; `request`: \{ `query`: `DocumentNode`; `variables`: \{ `input`: \{ `attachments`: `any`[]; `categories`: `string`[]; `description`: `string`; `duration`: `string`; `organizationId`: `string`; `relatedEventId`: `string`; `sequence`: `number`; `title`: `string`; `urls`: `any`[]; \}; `organizationId`: `undefined`; `relatedEventId`: `undefined`; \}; \}; \} \| \{ `error`: `Error`; `request`: \{ `query`: `DocumentNode`; `variables`: \{ `input`: `undefined`; `organizationId`: `undefined`; `relatedEventId`: `string`; \}; \}; \} \| \{ `error`: `Error`; `request`: \{ `query`: `DocumentNode`; `variables`: \{ `input`: `undefined`; `organizationId`: `string`; `relatedEventId`: `undefined`; \}; \}; \})[] - -Defined in: [src/components/EventManagement/EventAgendaItems/EventAgendaItemsMocks.ts:97](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/EventManagement/EventAgendaItems/EventAgendaItemsMocks.ts#L97) diff --git a/docs/docs/auto-docs/components/EventManagement/EventAgendaItems/EventAgendaItemsMocks/variables/MOCKS_ERROR_QUERY.md b/docs/docs/auto-docs/components/EventManagement/EventAgendaItems/EventAgendaItemsMocks/variables/MOCKS_ERROR_QUERY.md deleted file mode 100644 index 607521294f..0000000000 --- a/docs/docs/auto-docs/components/EventManagement/EventAgendaItems/EventAgendaItemsMocks/variables/MOCKS_ERROR_QUERY.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../../README.md) - -*** - -[talawa-admin](../../../../../modules.md) / [components/EventManagement/EventAgendaItems/EventAgendaItemsMocks](../README.md) / MOCKS\_ERROR\_QUERY - -# Variable: MOCKS\_ERROR\_QUERY - -> `const` **MOCKS\_ERROR\_QUERY**: `any`[] = `[]` - -Defined in: [src/components/EventManagement/EventAgendaItems/EventAgendaItemsMocks.ts:133](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/EventManagement/EventAgendaItems/EventAgendaItemsMocks.ts#L133) diff --git a/docs/docs/auto-docs/components/EventManagement/EventAttendance/Attendance.mocks/README.md b/docs/docs/auto-docs/components/EventManagement/EventAttendance/Attendance.mocks/README.md deleted file mode 100644 index d618005d2e..0000000000 --- a/docs/docs/auto-docs/components/EventManagement/EventAttendance/Attendance.mocks/README.md +++ /dev/null @@ -1,12 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / components/EventManagement/EventAttendance/Attendance.mocks - -# components/EventManagement/EventAttendance/Attendance.mocks - -## Variables - -- [MOCKS](variables/MOCKS.md) -- [MOCKS\_ERROR](variables/MOCKS_ERROR.md) diff --git a/docs/docs/auto-docs/components/EventManagement/EventAttendance/Attendance.mocks/variables/MOCKS.md b/docs/docs/auto-docs/components/EventManagement/EventAttendance/Attendance.mocks/variables/MOCKS.md deleted file mode 100644 index 04deb27f94..0000000000 --- a/docs/docs/auto-docs/components/EventManagement/EventAttendance/Attendance.mocks/variables/MOCKS.md +++ /dev/null @@ -1,41 +0,0 @@ -[**talawa-admin**](../../../../../README.md) - -*** - -[talawa-admin](../../../../../modules.md) / [components/EventManagement/EventAttendance/Attendance.mocks](../README.md) / MOCKS - -# Variable: MOCKS - -> `const` **MOCKS**: `object`[] - -Defined in: [src/components/EventManagement/EventAttendance/Attendance.mocks.ts:3](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/EventManagement/EventAttendance/Attendance.mocks.ts#L3) - -## Type declaration - -### request - -> **request**: `object` - -#### request.query - -> **query**: `DocumentNode` = `EVENT_ATTENDEES` - -#### request.variables - -> **variables**: `object` = `{}` - -### result - -> **result**: `object` - -#### result.data - -> **data**: `object` - -#### result.data.event - -> **event**: `object` - -#### result.data.event.attendees - -> **attendees**: `object`[] diff --git a/docs/docs/auto-docs/components/EventManagement/EventAttendance/Attendance.mocks/variables/MOCKS_ERROR.md b/docs/docs/auto-docs/components/EventManagement/EventAttendance/Attendance.mocks/variables/MOCKS_ERROR.md deleted file mode 100644 index 65777a69da..0000000000 --- a/docs/docs/auto-docs/components/EventManagement/EventAttendance/Attendance.mocks/variables/MOCKS_ERROR.md +++ /dev/null @@ -1,29 +0,0 @@ -[**talawa-admin**](../../../../../README.md) - -*** - -[talawa-admin](../../../../../modules.md) / [components/EventManagement/EventAttendance/Attendance.mocks](../README.md) / MOCKS\_ERROR - -# Variable: MOCKS\_ERROR - -> `const` **MOCKS\_ERROR**: `object`[] - -Defined in: [src/components/EventManagement/EventAttendance/Attendance.mocks.ts:54](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/EventManagement/EventAttendance/Attendance.mocks.ts#L54) - -## Type declaration - -### error - -> **error**: `Error` - -### request - -> **request**: `object` - -#### request.query - -> **query**: `DocumentNode` = `EVENT_ATTENDEES` - -#### request.variables - -> **variables**: `object` = `{}` diff --git a/docs/docs/auto-docs/components/EventManagement/EventAttendance/AttendedEventList/README.md b/docs/docs/auto-docs/components/EventManagement/EventAttendance/AttendedEventList/README.md deleted file mode 100644 index 9b16ced2f2..0000000000 --- a/docs/docs/auto-docs/components/EventManagement/EventAttendance/AttendedEventList/README.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / components/EventManagement/EventAttendance/AttendedEventList - -# components/EventManagement/EventAttendance/AttendedEventList - -## Functions - -- [default](functions/default.md) diff --git a/docs/docs/auto-docs/components/EventManagement/EventAttendance/AttendedEventList/functions/default.md b/docs/docs/auto-docs/components/EventManagement/EventAttendance/AttendedEventList/functions/default.md deleted file mode 100644 index 14faeb627d..0000000000 --- a/docs/docs/auto-docs/components/EventManagement/EventAttendance/AttendedEventList/functions/default.md +++ /dev/null @@ -1,35 +0,0 @@ -[**talawa-admin**](../../../../../README.md) - -*** - -[talawa-admin](../../../../../modules.md) / [components/EventManagement/EventAttendance/AttendedEventList](../README.md) / default - -# Function: default() - -> **default**(`props`, `deprecatedLegacyContext`?): `ReactNode` - -Defined in: [src/components/EventManagement/EventAttendance/AttendedEventList.tsx:16](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/EventManagement/EventAttendance/AttendedEventList.tsx#L16) - -Component to display a list of events attended by a member - -## Parameters - -### props - -`InterfaceEventsAttended` - -### deprecatedLegacyContext? - -`any` - -**Deprecated** - -**See** - -[React Docs](https://legacy.reactjs.org/docs/legacy-context.html#referencing-context-in-lifecycle-methods) - -## Returns - -`ReactNode` - -A table row containing event details with a link to the event diff --git a/docs/docs/auto-docs/components/EventManagement/EventAttendance/EventAttendance/README.md b/docs/docs/auto-docs/components/EventManagement/EventAttendance/EventAttendance/README.md deleted file mode 100644 index 5cc3bcb609..0000000000 --- a/docs/docs/auto-docs/components/EventManagement/EventAttendance/EventAttendance/README.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / components/EventManagement/EventAttendance/EventAttendance - -# components/EventManagement/EventAttendance/EventAttendance - -## Functions - -- [default](functions/default.md) diff --git a/docs/docs/auto-docs/components/EventManagement/EventAttendance/EventAttendance/functions/default.md b/docs/docs/auto-docs/components/EventManagement/EventAttendance/EventAttendance/functions/default.md deleted file mode 100644 index 21f2acc54e..0000000000 --- a/docs/docs/auto-docs/components/EventManagement/EventAttendance/EventAttendance/functions/default.md +++ /dev/null @@ -1,20 +0,0 @@ -[**talawa-admin**](../../../../../README.md) - -*** - -[talawa-admin](../../../../../modules.md) / [components/EventManagement/EventAttendance/EventAttendance](../README.md) / default - -# Function: default() - -> **default**(): `JSX.Element` - -Defined in: [src/components/EventManagement/EventAttendance/EventAttendance.tsx:34](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/EventManagement/EventAttendance/EventAttendance.tsx#L34) - -Component to manage and display event attendance information -Includes filtering and sorting functionality for attendees - -## Returns - -`JSX.Element` - -JSX element containing the event attendance interface diff --git a/docs/docs/auto-docs/components/EventManagement/EventAttendance/EventStatistics/README.md b/docs/docs/auto-docs/components/EventManagement/EventAttendance/EventStatistics/README.md deleted file mode 100644 index 28c111d1ec..0000000000 --- a/docs/docs/auto-docs/components/EventManagement/EventAttendance/EventStatistics/README.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / components/EventManagement/EventAttendance/EventStatistics - -# components/EventManagement/EventAttendance/EventStatistics - -## Functions - -- [AttendanceStatisticsModal](functions/AttendanceStatisticsModal.md) diff --git a/docs/docs/auto-docs/components/EventManagement/EventAttendance/EventStatistics/functions/AttendanceStatisticsModal.md b/docs/docs/auto-docs/components/EventManagement/EventAttendance/EventStatistics/functions/AttendanceStatisticsModal.md deleted file mode 100644 index aca54e350c..0000000000 --- a/docs/docs/auto-docs/components/EventManagement/EventAttendance/EventStatistics/functions/AttendanceStatisticsModal.md +++ /dev/null @@ -1,36 +0,0 @@ -[**talawa-admin**](../../../../../README.md) - -*** - -[talawa-admin](../../../../../modules.md) / [components/EventManagement/EventAttendance/EventStatistics](../README.md) / AttendanceStatisticsModal - -# Function: AttendanceStatisticsModal() - -> **AttendanceStatisticsModal**(`props`, `deprecatedLegacyContext`?): `ReactNode` - -Defined in: [src/components/EventManagement/EventAttendance/EventStatistics.tsx:50](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/EventManagement/EventAttendance/EventStatistics.tsx#L50) - -Component to display statistical information about event attendance -Shows metrics like total attendees, filtering options, and attendance trends - -## Parameters - -### props - -[`InterfaceAttendanceStatisticsModalProps`](../../InterfaceEvents/interfaces/InterfaceAttendanceStatisticsModalProps.md) - -### deprecatedLegacyContext? - -`any` - -**Deprecated** - -**See** - -[React Docs](https://legacy.reactjs.org/docs/legacy-context.html#referencing-context-in-lifecycle-methods) - -## Returns - -`ReactNode` - -JSX element with event statistics dashboard diff --git a/docs/docs/auto-docs/components/EventManagement/EventAttendance/InterfaceEvents/README.md b/docs/docs/auto-docs/components/EventManagement/EventAttendance/InterfaceEvents/README.md deleted file mode 100644 index aeb9b6a842..0000000000 --- a/docs/docs/auto-docs/components/EventManagement/EventAttendance/InterfaceEvents/README.md +++ /dev/null @@ -1,14 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / components/EventManagement/EventAttendance/InterfaceEvents - -# components/EventManagement/EventAttendance/InterfaceEvents - -## Interfaces - -- [InterfaceAttendanceStatisticsModalProps](interfaces/InterfaceAttendanceStatisticsModalProps.md) -- [InterfaceEvent](interfaces/InterfaceEvent.md) -- [InterfaceMember](interfaces/InterfaceMember.md) -- [InterfaceRecurringEvent](interfaces/InterfaceRecurringEvent.md) diff --git a/docs/docs/auto-docs/components/EventManagement/EventAttendance/InterfaceEvents/interfaces/InterfaceAttendanceStatisticsModalProps.md b/docs/docs/auto-docs/components/EventManagement/EventAttendance/InterfaceEvents/interfaces/InterfaceAttendanceStatisticsModalProps.md deleted file mode 100644 index 68789cd275..0000000000 --- a/docs/docs/auto-docs/components/EventManagement/EventAttendance/InterfaceEvents/interfaces/InterfaceAttendanceStatisticsModalProps.md +++ /dev/null @@ -1,75 +0,0 @@ -[**talawa-admin**](../../../../../README.md) - -*** - -[talawa-admin](../../../../../modules.md) / [components/EventManagement/EventAttendance/InterfaceEvents](../README.md) / InterfaceAttendanceStatisticsModalProps - -# Interface: InterfaceAttendanceStatisticsModalProps - -Defined in: [src/components/EventManagement/EventAttendance/InterfaceEvents.ts:1](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/EventManagement/EventAttendance/InterfaceEvents.ts#L1) - -## Properties - -### handleClose() - -> **handleClose**: () => `void` - -Defined in: [src/components/EventManagement/EventAttendance/InterfaceEvents.ts:3](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/EventManagement/EventAttendance/InterfaceEvents.ts#L3) - -#### Returns - -`void` - -*** - -### memberData - -> **memberData**: [`InterfaceMember`](InterfaceMember.md)[] - -Defined in: [src/components/EventManagement/EventAttendance/InterfaceEvents.ts:9](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/EventManagement/EventAttendance/InterfaceEvents.ts#L9) - -*** - -### show - -> **show**: `boolean` - -Defined in: [src/components/EventManagement/EventAttendance/InterfaceEvents.ts:2](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/EventManagement/EventAttendance/InterfaceEvents.ts#L2) - -*** - -### statistics - -> **statistics**: `object` - -Defined in: [src/components/EventManagement/EventAttendance/InterfaceEvents.ts:4](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/EventManagement/EventAttendance/InterfaceEvents.ts#L4) - -#### attendanceRate - -> **attendanceRate**: `number` - -#### membersAttended - -> **membersAttended**: `number` - -#### totalMembers - -> **totalMembers**: `number` - -*** - -### t() - -> **t**: (`key`) => `string` - -Defined in: [src/components/EventManagement/EventAttendance/InterfaceEvents.ts:10](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/EventManagement/EventAttendance/InterfaceEvents.ts#L10) - -#### Parameters - -##### key - -`string` - -#### Returns - -`string` diff --git a/docs/docs/auto-docs/components/EventManagement/EventAttendance/InterfaceEvents/interfaces/InterfaceEvent.md b/docs/docs/auto-docs/components/EventManagement/EventAttendance/InterfaceEvents/interfaces/InterfaceEvent.md deleted file mode 100644 index 3a8743a938..0000000000 --- a/docs/docs/auto-docs/components/EventManagement/EventAttendance/InterfaceEvents/interfaces/InterfaceEvent.md +++ /dev/null @@ -1,189 +0,0 @@ -[**talawa-admin**](../../../../../README.md) - -*** - -[talawa-admin](../../../../../modules.md) / [components/EventManagement/EventAttendance/InterfaceEvents](../README.md) / InterfaceEvent - -# Interface: InterfaceEvent - -Defined in: [src/components/EventManagement/EventAttendance/InterfaceEvents.ts:35](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/EventManagement/EventAttendance/InterfaceEvents.ts#L35) - -## Properties - -### \_\_typename - -> **\_\_typename**: `string` - -Defined in: [src/components/EventManagement/EventAttendance/InterfaceEvents.ts:66](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/EventManagement/EventAttendance/InterfaceEvents.ts#L66) - -*** - -### \_id - -> **\_id**: `string` - -Defined in: [src/components/EventManagement/EventAttendance/InterfaceEvents.ts:36](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/EventManagement/EventAttendance/InterfaceEvents.ts#L36) - -*** - -### allDay - -> **allDay**: `boolean` - -Defined in: [src/components/EventManagement/EventAttendance/InterfaceEvents.ts:44](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/EventManagement/EventAttendance/InterfaceEvents.ts#L44) - -*** - -### attendees - -> **attendees**: `object`[] - -Defined in: [src/components/EventManagement/EventAttendance/InterfaceEvents.ts:58](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/EventManagement/EventAttendance/InterfaceEvents.ts#L58) - -#### \_id - -> **\_id**: `string` - -#### birthDate - -> **birthDate**: `string` - -#### email - -> **email**: `string` - -#### firstName - -> **firstName**: `string` - -#### gender - -> **gender**: `string` - -#### lastName - -> **lastName**: `string` - -*** - -### description - -> **description**: `string` - -Defined in: [src/components/EventManagement/EventAttendance/InterfaceEvents.ts:38](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/EventManagement/EventAttendance/InterfaceEvents.ts#L38) - -*** - -### endDate - -> **endDate**: `string` - -Defined in: [src/components/EventManagement/EventAttendance/InterfaceEvents.ts:40](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/EventManagement/EventAttendance/InterfaceEvents.ts#L40) - -*** - -### endTime - -> **endTime**: `string` - -Defined in: [src/components/EventManagement/EventAttendance/InterfaceEvents.ts:43](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/EventManagement/EventAttendance/InterfaceEvents.ts#L43) - -*** - -### isPublic - -> **isPublic**: `boolean` - -Defined in: [src/components/EventManagement/EventAttendance/InterfaceEvents.ts:56](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/EventManagement/EventAttendance/InterfaceEvents.ts#L56) - -*** - -### isRecurringEventException - -> **isRecurringEventException**: `boolean` - -Defined in: [src/components/EventManagement/EventAttendance/InterfaceEvents.ts:55](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/EventManagement/EventAttendance/InterfaceEvents.ts#L55) - -*** - -### isRegisterable - -> **isRegisterable**: `boolean` - -Defined in: [src/components/EventManagement/EventAttendance/InterfaceEvents.ts:57](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/EventManagement/EventAttendance/InterfaceEvents.ts#L57) - -*** - -### location - -> **location**: `string` - -Defined in: [src/components/EventManagement/EventAttendance/InterfaceEvents.ts:41](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/EventManagement/EventAttendance/InterfaceEvents.ts#L41) - -*** - -### recurrenceRule - -> **recurrenceRule**: `object` - -Defined in: [src/components/EventManagement/EventAttendance/InterfaceEvents.ts:46](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/EventManagement/EventAttendance/InterfaceEvents.ts#L46) - -#### count? - -> `optional` **count**: `number` - -#### frequency - -> **frequency**: `string` - -#### interval - -> **interval**: `number` - -#### recurrenceEndDate? - -> `optional` **recurrenceEndDate**: `string` - -#### recurrenceStartDate - -> **recurrenceStartDate**: `string` - -#### weekDayOccurenceInMonth? - -> `optional` **weekDayOccurenceInMonth**: `number` - -#### weekDays - -> **weekDays**: `string`[] - -*** - -### recurring - -> **recurring**: `boolean` - -Defined in: [src/components/EventManagement/EventAttendance/InterfaceEvents.ts:45](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/EventManagement/EventAttendance/InterfaceEvents.ts#L45) - -*** - -### startDate - -> **startDate**: `string` - -Defined in: [src/components/EventManagement/EventAttendance/InterfaceEvents.ts:39](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/EventManagement/EventAttendance/InterfaceEvents.ts#L39) - -*** - -### startTime - -> **startTime**: `string` - -Defined in: [src/components/EventManagement/EventAttendance/InterfaceEvents.ts:42](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/EventManagement/EventAttendance/InterfaceEvents.ts#L42) - -*** - -### title - -> **title**: `string` - -Defined in: [src/components/EventManagement/EventAttendance/InterfaceEvents.ts:37](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/EventManagement/EventAttendance/InterfaceEvents.ts#L37) diff --git a/docs/docs/auto-docs/components/EventManagement/EventAttendance/InterfaceEvents/interfaces/InterfaceMember.md b/docs/docs/auto-docs/components/EventManagement/EventAttendance/InterfaceEvents/interfaces/InterfaceMember.md deleted file mode 100644 index 584d8c859d..0000000000 --- a/docs/docs/auto-docs/components/EventManagement/EventAttendance/InterfaceEvents/interfaces/InterfaceMember.md +++ /dev/null @@ -1,97 +0,0 @@ -[**talawa-admin**](../../../../../README.md) - -*** - -[talawa-admin](../../../../../modules.md) / [components/EventManagement/EventAttendance/InterfaceEvents](../README.md) / InterfaceMember - -# Interface: InterfaceMember - -Defined in: [src/components/EventManagement/EventAttendance/InterfaceEvents.ts:13](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/EventManagement/EventAttendance/InterfaceEvents.ts#L13) - -## Properties - -### \_\_typename - -> **\_\_typename**: `string` - -Defined in: [src/components/EventManagement/EventAttendance/InterfaceEvents.ts:23](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/EventManagement/EventAttendance/InterfaceEvents.ts#L23) - -*** - -### \_id - -> **\_id**: `string` - -Defined in: [src/components/EventManagement/EventAttendance/InterfaceEvents.ts:24](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/EventManagement/EventAttendance/InterfaceEvents.ts#L24) - -*** - -### birthDate - -> **birthDate**: `Date` - -Defined in: [src/components/EventManagement/EventAttendance/InterfaceEvents.ts:22](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/EventManagement/EventAttendance/InterfaceEvents.ts#L22) - -*** - -### createdAt - -> **createdAt**: `string` - -Defined in: [src/components/EventManagement/EventAttendance/InterfaceEvents.ts:14](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/EventManagement/EventAttendance/InterfaceEvents.ts#L14) - -*** - -### email - -> **email**: `` `${string}@${string}.${string}` `` - -Defined in: [src/components/EventManagement/EventAttendance/InterfaceEvents.ts:17](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/EventManagement/EventAttendance/InterfaceEvents.ts#L17) - -*** - -### eventsAttended? - -> `optional` **eventsAttended**: `object`[] - -Defined in: [src/components/EventManagement/EventAttendance/InterfaceEvents.ts:19](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/EventManagement/EventAttendance/InterfaceEvents.ts#L19) - -#### \_id - -> **\_id**: `string` - -*** - -### firstName - -> **firstName**: `string` - -Defined in: [src/components/EventManagement/EventAttendance/InterfaceEvents.ts:15](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/EventManagement/EventAttendance/InterfaceEvents.ts#L15) - -*** - -### gender - -> **gender**: `string` - -Defined in: [src/components/EventManagement/EventAttendance/InterfaceEvents.ts:18](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/EventManagement/EventAttendance/InterfaceEvents.ts#L18) - -*** - -### lastName - -> **lastName**: `string` - -Defined in: [src/components/EventManagement/EventAttendance/InterfaceEvents.ts:16](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/EventManagement/EventAttendance/InterfaceEvents.ts#L16) - -*** - -### tagsAssignedWith - -> **tagsAssignedWith**: `object` - -Defined in: [src/components/EventManagement/EventAttendance/InterfaceEvents.ts:25](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/EventManagement/EventAttendance/InterfaceEvents.ts#L25) - -#### edges - -> **edges**: `object`[] diff --git a/docs/docs/auto-docs/components/EventManagement/EventAttendance/InterfaceEvents/interfaces/InterfaceRecurringEvent.md b/docs/docs/auto-docs/components/EventManagement/EventAttendance/InterfaceEvents/interfaces/InterfaceRecurringEvent.md deleted file mode 100644 index 411e986b80..0000000000 --- a/docs/docs/auto-docs/components/EventManagement/EventAttendance/InterfaceEvents/interfaces/InterfaceRecurringEvent.md +++ /dev/null @@ -1,89 +0,0 @@ -[**talawa-admin**](../../../../../README.md) - -*** - -[talawa-admin](../../../../../modules.md) / [components/EventManagement/EventAttendance/InterfaceEvents](../README.md) / InterfaceRecurringEvent - -# Interface: InterfaceRecurringEvent - -Defined in: [src/components/EventManagement/EventAttendance/InterfaceEvents.ts:69](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/EventManagement/EventAttendance/InterfaceEvents.ts#L69) - -## Properties - -### \_id - -> **\_id**: `string` - -Defined in: [src/components/EventManagement/EventAttendance/InterfaceEvents.ts:70](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/EventManagement/EventAttendance/InterfaceEvents.ts#L70) - -*** - -### attendees - -> **attendees**: `object`[] - -Defined in: [src/components/EventManagement/EventAttendance/InterfaceEvents.ts:76](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/EventManagement/EventAttendance/InterfaceEvents.ts#L76) - -#### \_id - -> **\_id**: `string` - -#### gender - -> **gender**: `"MALE"` \| `"FEMALE"` \| `"OTHER"` \| `"PREFER_NOT_TO_SAY"` - -*** - -### endDate - -> **endDate**: `string` - -Defined in: [src/components/EventManagement/EventAttendance/InterfaceEvents.ts:73](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/EventManagement/EventAttendance/InterfaceEvents.ts#L73) - -*** - -### frequency - -> **frequency**: `string` - -Defined in: [src/components/EventManagement/EventAttendance/InterfaceEvents.ts:74](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/EventManagement/EventAttendance/InterfaceEvents.ts#L74) - -*** - -### interval - -> **interval**: `number` - -Defined in: [src/components/EventManagement/EventAttendance/InterfaceEvents.ts:75](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/EventManagement/EventAttendance/InterfaceEvents.ts#L75) - -*** - -### isPublic - -> **isPublic**: `boolean` - -Defined in: [src/components/EventManagement/EventAttendance/InterfaceEvents.ts:80](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/EventManagement/EventAttendance/InterfaceEvents.ts#L80) - -*** - -### isRegisterable - -> **isRegisterable**: `boolean` - -Defined in: [src/components/EventManagement/EventAttendance/InterfaceEvents.ts:81](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/EventManagement/EventAttendance/InterfaceEvents.ts#L81) - -*** - -### startDate - -> **startDate**: `string` - -Defined in: [src/components/EventManagement/EventAttendance/InterfaceEvents.ts:72](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/EventManagement/EventAttendance/InterfaceEvents.ts#L72) - -*** - -### title - -> **title**: `string` - -Defined in: [src/components/EventManagement/EventAttendance/InterfaceEvents.ts:71](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/EventManagement/EventAttendance/InterfaceEvents.ts#L71) diff --git a/docs/docs/auto-docs/components/EventManagement/EventRegistrant/EventRegistrants/README.md b/docs/docs/auto-docs/components/EventManagement/EventRegistrant/EventRegistrants/README.md deleted file mode 100644 index 5cea6aa16c..0000000000 --- a/docs/docs/auto-docs/components/EventManagement/EventRegistrant/EventRegistrants/README.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / components/EventManagement/EventRegistrant/EventRegistrants - -# components/EventManagement/EventRegistrant/EventRegistrants - -## Functions - -- [default](functions/default.md) diff --git a/docs/docs/auto-docs/components/EventManagement/EventRegistrant/EventRegistrants/functions/default.md b/docs/docs/auto-docs/components/EventManagement/EventRegistrant/EventRegistrants/functions/default.md deleted file mode 100644 index 6e915e32b1..0000000000 --- a/docs/docs/auto-docs/components/EventManagement/EventRegistrant/EventRegistrants/functions/default.md +++ /dev/null @@ -1,20 +0,0 @@ -[**talawa-admin**](../../../../../README.md) - -*** - -[talawa-admin](../../../../../modules.md) / [components/EventManagement/EventRegistrant/EventRegistrants](../README.md) / default - -# Function: default() - -> **default**(): `JSX.Element` - -Defined in: [src/components/EventManagement/EventRegistrant/EventRegistrants.tsx:34](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/EventManagement/EventRegistrant/EventRegistrants.tsx#L34) - -Component to manage and display event registrant information -Includes adding new registrants and check-in functionality for registrants - -## Returns - -`JSX.Element` - -JSX element containing the event attendance interface diff --git a/docs/docs/auto-docs/components/EventManagement/EventRegistrant/Registrations.mocks/README.md b/docs/docs/auto-docs/components/EventManagement/EventRegistrant/Registrations.mocks/README.md deleted file mode 100644 index 3b775ce0f9..0000000000 --- a/docs/docs/auto-docs/components/EventManagement/EventRegistrant/Registrations.mocks/README.md +++ /dev/null @@ -1,12 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / components/EventManagement/EventRegistrant/Registrations.mocks - -# components/EventManagement/EventRegistrant/Registrations.mocks - -## Variables - -- [REGISTRANTS\_MOCKS](variables/REGISTRANTS_MOCKS.md) -- [REGISTRANTS\_MOCKS\_ERROR](variables/REGISTRANTS_MOCKS_ERROR.md) diff --git a/docs/docs/auto-docs/components/EventManagement/EventRegistrant/Registrations.mocks/variables/REGISTRANTS_MOCKS.md b/docs/docs/auto-docs/components/EventManagement/EventRegistrant/Registrations.mocks/variables/REGISTRANTS_MOCKS.md deleted file mode 100644 index b8b468d03f..0000000000 --- a/docs/docs/auto-docs/components/EventManagement/EventRegistrant/Registrations.mocks/variables/REGISTRANTS_MOCKS.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../../README.md) - -*** - -[talawa-admin](../../../../../modules.md) / [components/EventManagement/EventRegistrant/Registrations.mocks](../README.md) / REGISTRANTS\_MOCKS - -# Variable: REGISTRANTS\_MOCKS - -> `const` **REGISTRANTS\_MOCKS**: (\{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `eventId`: `string`; `id`: `undefined`; \}; \}; `result`: \{ `data`: \{ `event`: `undefined`; `getEventAttendeesByEventId`: `object`[]; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `eventId`: `undefined`; `id`: `string`; \}; \}; `result`: \{ `data`: \{ `event`: \{ `attendees`: `object`[]; \}; `getEventAttendeesByEventId`: `undefined`; \}; \}; \})[] - -Defined in: [src/components/EventManagement/EventRegistrant/Registrations.mocks.ts:3](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/EventManagement/EventRegistrant/Registrations.mocks.ts#L3) diff --git a/docs/docs/auto-docs/components/EventManagement/EventRegistrant/Registrations.mocks/variables/REGISTRANTS_MOCKS_ERROR.md b/docs/docs/auto-docs/components/EventManagement/EventRegistrant/Registrations.mocks/variables/REGISTRANTS_MOCKS_ERROR.md deleted file mode 100644 index f4d97fb767..0000000000 --- a/docs/docs/auto-docs/components/EventManagement/EventRegistrant/Registrations.mocks/variables/REGISTRANTS_MOCKS_ERROR.md +++ /dev/null @@ -1,33 +0,0 @@ -[**talawa-admin**](../../../../../README.md) - -*** - -[talawa-admin](../../../../../modules.md) / [components/EventManagement/EventRegistrant/Registrations.mocks](../README.md) / REGISTRANTS\_MOCKS\_ERROR - -# Variable: REGISTRANTS\_MOCKS\_ERROR - -> `const` **REGISTRANTS\_MOCKS\_ERROR**: `object`[] - -Defined in: [src/components/EventManagement/EventRegistrant/Registrations.mocks.ts:58](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/EventManagement/EventRegistrant/Registrations.mocks.ts#L58) - -## Type declaration - -### error - -> **error**: `Error` - -### request - -> **request**: `object` - -#### request.query - -> **query**: `DocumentNode` = `EVENT_REGISTRANTS` - -#### request.variables - -> **variables**: `object` - -#### request.variables.eventId - -> **eventId**: `string` = `'event123'` diff --git a/docs/docs/auto-docs/components/EventRegistrantsModal/AddOnSpotAttendee/README.md b/docs/docs/auto-docs/components/EventRegistrantsModal/AddOnSpotAttendee/README.md deleted file mode 100644 index 0d20c6918e..0000000000 --- a/docs/docs/auto-docs/components/EventRegistrantsModal/AddOnSpotAttendee/README.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / components/EventRegistrantsModal/AddOnSpotAttendee - -# components/EventRegistrantsModal/AddOnSpotAttendee - -## Functions - -- [default](functions/default.md) diff --git a/docs/docs/auto-docs/components/EventRegistrantsModal/AddOnSpotAttendee/functions/default.md b/docs/docs/auto-docs/components/EventRegistrantsModal/AddOnSpotAttendee/functions/default.md deleted file mode 100644 index 34a2d7bd32..0000000000 --- a/docs/docs/auto-docs/components/EventRegistrantsModal/AddOnSpotAttendee/functions/default.md +++ /dev/null @@ -1,35 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [components/EventRegistrantsModal/AddOnSpotAttendee](../README.md) / default - -# Function: default() - -> **default**(`props`, `deprecatedLegacyContext`?): `ReactNode` - -Defined in: [src/components/EventRegistrantsModal/AddOnSpotAttendee.tsx:21](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/EventRegistrantsModal/AddOnSpotAttendee.tsx#L21) - -Modal component for adding on-spot attendees to an event - -## Parameters - -### props - -[`InterfaceAddOnSpotAttendeeProps`](../../../../utils/interfaces/interfaces/InterfaceAddOnSpotAttendeeProps.md) - -### deprecatedLegacyContext? - -`any` - -**Deprecated** - -**See** - -[React Docs](https://legacy.reactjs.org/docs/legacy-context.html#referencing-context-in-lifecycle-methods) - -## Returns - -`ReactNode` - -Modal component with form for adding new attendee diff --git a/docs/docs/auto-docs/components/EventRegistrantsModal/EventRegistrantsModal/README.md b/docs/docs/auto-docs/components/EventRegistrantsModal/EventRegistrantsModal/README.md deleted file mode 100644 index f4c911304e..0000000000 --- a/docs/docs/auto-docs/components/EventRegistrantsModal/EventRegistrantsModal/README.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / components/EventRegistrantsModal/EventRegistrantsModal - -# components/EventRegistrantsModal/EventRegistrantsModal - -## Functions - -- [EventRegistrantsModal](functions/EventRegistrantsModal.md) diff --git a/docs/docs/auto-docs/components/EventRegistrantsModal/EventRegistrantsModal/functions/EventRegistrantsModal.md b/docs/docs/auto-docs/components/EventRegistrantsModal/EventRegistrantsModal/functions/EventRegistrantsModal.md deleted file mode 100644 index 0f327318c4..0000000000 --- a/docs/docs/auto-docs/components/EventRegistrantsModal/EventRegistrantsModal/functions/EventRegistrantsModal.md +++ /dev/null @@ -1,26 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [components/EventRegistrantsModal/EventRegistrantsModal](../README.md) / EventRegistrantsModal - -# Function: EventRegistrantsModal() - -> **EventRegistrantsModal**(`props`): `Element` - -Defined in: [src/components/EventRegistrantsModal/EventRegistrantsModal.tsx:44](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/EventRegistrantsModal/EventRegistrantsModal.tsx#L44) - -Modal component for managing event registrants. -Allows adding and removing attendees from an event. - -## Parameters - -### props - -`ModalPropType` - -## Returns - -`Element` - -JSX element representing the modal. diff --git a/docs/docs/auto-docs/components/EventRegistrantsModal/EventRegistrantsWrapper/README.md b/docs/docs/auto-docs/components/EventRegistrantsModal/EventRegistrantsWrapper/README.md deleted file mode 100644 index 198804f459..0000000000 --- a/docs/docs/auto-docs/components/EventRegistrantsModal/EventRegistrantsWrapper/README.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / components/EventRegistrantsModal/EventRegistrantsWrapper - -# components/EventRegistrantsModal/EventRegistrantsWrapper - -## Functions - -- [EventRegistrantsWrapper](functions/EventRegistrantsWrapper.md) diff --git a/docs/docs/auto-docs/components/EventRegistrantsModal/EventRegistrantsWrapper/functions/EventRegistrantsWrapper.md b/docs/docs/auto-docs/components/EventRegistrantsModal/EventRegistrantsWrapper/functions/EventRegistrantsWrapper.md deleted file mode 100644 index 42dc6955f0..0000000000 --- a/docs/docs/auto-docs/components/EventRegistrantsModal/EventRegistrantsWrapper/functions/EventRegistrantsWrapper.md +++ /dev/null @@ -1,25 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [components/EventRegistrantsModal/EventRegistrantsWrapper](../README.md) / EventRegistrantsWrapper - -# Function: EventRegistrantsWrapper() - -> **EventRegistrantsWrapper**(`__namedParameters`): `Element` - -Defined in: [src/components/EventRegistrantsModal/EventRegistrantsWrapper.tsx:20](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/EventRegistrantsModal/EventRegistrantsWrapper.tsx#L20) - -Wrapper component that displays a button to show the event registrants modal. - -## Parameters - -### \_\_namedParameters - -`PropType` - -## Returns - -`Element` - -JSX element representing the wrapper with a button to show the modal. diff --git a/docs/docs/auto-docs/components/EventStats/EventStats/README.md b/docs/docs/auto-docs/components/EventStats/EventStats/README.md deleted file mode 100644 index 37b49f4e4e..0000000000 --- a/docs/docs/auto-docs/components/EventStats/EventStats/README.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / components/EventStats/EventStats - -# components/EventStats/EventStats - -## Functions - -- [EventStats](functions/EventStats.md) diff --git a/docs/docs/auto-docs/components/EventStats/EventStats/functions/EventStats.md b/docs/docs/auto-docs/components/EventStats/EventStats/functions/EventStats.md deleted file mode 100644 index 9a455af70e..0000000000 --- a/docs/docs/auto-docs/components/EventStats/EventStats/functions/EventStats.md +++ /dev/null @@ -1,26 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [components/EventStats/EventStats](../README.md) / EventStats - -# Function: EventStats() - -> **EventStats**(`__namedParameters`): `Element` - -Defined in: [src/components/EventStats/EventStats.tsx:27](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/EventStats/EventStats.tsx#L27) - -Component that displays event statistics in a modal. -Shows feedback, reviews, and average rating for the event. - -## Parameters - -### \_\_namedParameters - -`ModalPropType` - -## Returns - -`Element` - -JSX element representing the event statistics modal. diff --git a/docs/docs/auto-docs/components/EventStats/EventStatsWrapper/README.md b/docs/docs/auto-docs/components/EventStats/EventStatsWrapper/README.md deleted file mode 100644 index 5e00a71e19..0000000000 --- a/docs/docs/auto-docs/components/EventStats/EventStatsWrapper/README.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / components/EventStats/EventStatsWrapper - -# components/EventStats/EventStatsWrapper - -## Functions - -- [EventStatsWrapper](functions/EventStatsWrapper.md) diff --git a/docs/docs/auto-docs/components/EventStats/EventStatsWrapper/functions/EventStatsWrapper.md b/docs/docs/auto-docs/components/EventStats/EventStatsWrapper/functions/EventStatsWrapper.md deleted file mode 100644 index 9374b2c7d5..0000000000 --- a/docs/docs/auto-docs/components/EventStats/EventStatsWrapper/functions/EventStatsWrapper.md +++ /dev/null @@ -1,27 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [components/EventStats/EventStatsWrapper](../README.md) / EventStatsWrapper - -# Function: EventStatsWrapper() - -> **EventStatsWrapper**(`eventId`): `Element` - -Defined in: [src/components/EventStats/EventStatsWrapper.tsx:18](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/EventStats/EventStatsWrapper.tsx#L18) - -Wrapper component that displays a button to show event statistics. - -## Parameters - -### eventId - -`PropType` - -The ID of the event. - -## Returns - -`Element` - -JSX element representing the wrapper with a button to view event statistics. diff --git a/docs/docs/auto-docs/components/EventStats/Statistics/AverageRating/README.md b/docs/docs/auto-docs/components/EventStats/Statistics/AverageRating/README.md deleted file mode 100644 index 8f37a3f2fb..0000000000 --- a/docs/docs/auto-docs/components/EventStats/Statistics/AverageRating/README.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / components/EventStats/Statistics/AverageRating - -# components/EventStats/Statistics/AverageRating - -## Functions - -- [AverageRating](functions/AverageRating.md) diff --git a/docs/docs/auto-docs/components/EventStats/Statistics/AverageRating/functions/AverageRating.md b/docs/docs/auto-docs/components/EventStats/Statistics/AverageRating/functions/AverageRating.md deleted file mode 100644 index 1ac1362a69..0000000000 --- a/docs/docs/auto-docs/components/EventStats/Statistics/AverageRating/functions/AverageRating.md +++ /dev/null @@ -1,28 +0,0 @@ -[**talawa-admin**](../../../../../README.md) - -*** - -[talawa-admin](../../../../../modules.md) / [components/EventStats/Statistics/AverageRating](../README.md) / AverageRating - -# Function: AverageRating() - -> **AverageRating**(`data`): `Element` - -Defined in: [src/components/EventStats/Statistics/AverageRating.tsx:33](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/EventStats/Statistics/AverageRating.tsx#L33) - -Component that displays the average rating for an event. -Shows a rating value and a star rating icon. - -## Parameters - -### data - -`ModalPropType` - -Data containing the average feedback score to be displayed. - -## Returns - -`Element` - -JSX element representing the average rating card with a star rating. diff --git a/docs/docs/auto-docs/components/EventStats/Statistics/Feedback/README.md b/docs/docs/auto-docs/components/EventStats/Statistics/Feedback/README.md deleted file mode 100644 index b319a633ca..0000000000 --- a/docs/docs/auto-docs/components/EventStats/Statistics/Feedback/README.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / components/EventStats/Statistics/Feedback - -# components/EventStats/Statistics/Feedback - -## Functions - -- [FeedbackStats](functions/FeedbackStats.md) diff --git a/docs/docs/auto-docs/components/EventStats/Statistics/Feedback/functions/FeedbackStats.md b/docs/docs/auto-docs/components/EventStats/Statistics/Feedback/functions/FeedbackStats.md deleted file mode 100644 index a085ba2025..0000000000 --- a/docs/docs/auto-docs/components/EventStats/Statistics/Feedback/functions/FeedbackStats.md +++ /dev/null @@ -1,28 +0,0 @@ -[**talawa-admin**](../../../../../README.md) - -*** - -[talawa-admin](../../../../../modules.md) / [components/EventStats/Statistics/Feedback](../README.md) / FeedbackStats - -# Function: FeedbackStats() - -> **FeedbackStats**(`data`): `Element` - -Defined in: [src/components/EventStats/Statistics/Feedback.tsx:34](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/EventStats/Statistics/Feedback.tsx#L34) - -Component that displays a pie chart of feedback ratings for an event. -Shows how many people gave each rating. - -## Parameters - -### data - -`ModalPropType` - -Data containing event feedback to be displayed in the chart. - -## Returns - -`Element` - -JSX element representing the feedback analysis card with a pie chart. diff --git a/docs/docs/auto-docs/components/EventStats/Statistics/Review/README.md b/docs/docs/auto-docs/components/EventStats/Statistics/Review/README.md deleted file mode 100644 index 570c0082b2..0000000000 --- a/docs/docs/auto-docs/components/EventStats/Statistics/Review/README.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / components/EventStats/Statistics/Review - -# components/EventStats/Statistics/Review - -## Functions - -- [ReviewStats](functions/ReviewStats.md) diff --git a/docs/docs/auto-docs/components/EventStats/Statistics/Review/functions/ReviewStats.md b/docs/docs/auto-docs/components/EventStats/Statistics/Review/functions/ReviewStats.md deleted file mode 100644 index 43016b3ac5..0000000000 --- a/docs/docs/auto-docs/components/EventStats/Statistics/Review/functions/ReviewStats.md +++ /dev/null @@ -1,28 +0,0 @@ -[**talawa-admin**](../../../../../README.md) - -*** - -[talawa-admin](../../../../../modules.md) / [components/EventStats/Statistics/Review](../README.md) / ReviewStats - -# Function: ReviewStats() - -> **ReviewStats**(`data`): `Element` - -Defined in: [src/components/EventStats/Statistics/Review.tsx:30](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/EventStats/Statistics/Review.tsx#L30) - -Component that displays reviews for an event. -Shows a list of reviews with ratings and text. - -## Parameters - -### data - -`ModalPropType` - -Data containing event feedback to be displayed. - -## Returns - -`Element` - -JSX element representing the reviews card. diff --git a/docs/docs/auto-docs/components/GroupChatDetails/GroupChatDetails/README.md b/docs/docs/auto-docs/components/GroupChatDetails/GroupChatDetails/README.md deleted file mode 100644 index 262c3f8919..0000000000 --- a/docs/docs/auto-docs/components/GroupChatDetails/GroupChatDetails/README.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / components/GroupChatDetails/GroupChatDetails - -# components/GroupChatDetails/GroupChatDetails - -## Functions - -- [default](functions/default.md) diff --git a/docs/docs/auto-docs/components/GroupChatDetails/GroupChatDetails/functions/default.md b/docs/docs/auto-docs/components/GroupChatDetails/GroupChatDetails/functions/default.md deleted file mode 100644 index 34b67d80b9..0000000000 --- a/docs/docs/auto-docs/components/GroupChatDetails/GroupChatDetails/functions/default.md +++ /dev/null @@ -1,25 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [components/GroupChatDetails/GroupChatDetails](../README.md) / default - -# Function: default() - -> **default**(`__namedParameters`): `JSX.Element` - -Defined in: [src/components/GroupChatDetails/GroupChatDetails.tsx:120](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/GroupChatDetails/GroupChatDetails.tsx#L120) - -Component for displaying and managing group chat details. - -## Parameters - -### \_\_namedParameters - -`InterfaceGoroupChatDetailsProps` - -## Returns - -`JSX.Element` - -The rendered component. diff --git a/docs/docs/auto-docs/components/HolidayCards/HolidayCard/README.md b/docs/docs/auto-docs/components/HolidayCards/HolidayCard/README.md deleted file mode 100644 index 4bf1aa700e..0000000000 --- a/docs/docs/auto-docs/components/HolidayCards/HolidayCard/README.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / components/HolidayCards/HolidayCard - -# components/HolidayCards/HolidayCard - -## Functions - -- [default](functions/default.md) diff --git a/docs/docs/auto-docs/components/HolidayCards/HolidayCard/functions/default.md b/docs/docs/auto-docs/components/HolidayCards/HolidayCard/functions/default.md deleted file mode 100644 index 9b90753681..0000000000 --- a/docs/docs/auto-docs/components/HolidayCards/HolidayCard/functions/default.md +++ /dev/null @@ -1,27 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [components/HolidayCards/HolidayCard](../README.md) / default - -# Function: default() - -> **default**(`props`): `Element` - -Defined in: [src/components/HolidayCards/HolidayCard.tsx:15](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/HolidayCards/HolidayCard.tsx#L15) - -Component that displays a card with the name of a holiday. - -## Parameters - -### props - -`InterfaceHolidayList` - -Contains the holidayName to be displayed on the card. - -## Returns - -`Element` - -JSX element representing a card with the holiday name. diff --git a/docs/docs/auto-docs/components/IconComponent/IconComponent/README.md b/docs/docs/auto-docs/components/IconComponent/IconComponent/README.md deleted file mode 100644 index 925ecf21a9..0000000000 --- a/docs/docs/auto-docs/components/IconComponent/IconComponent/README.md +++ /dev/null @@ -1,15 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / components/IconComponent/IconComponent - -# components/IconComponent/IconComponent - -## Interfaces - -- [InterfaceIconComponent](interfaces/InterfaceIconComponent.md) - -## Functions - -- [default](functions/default.md) diff --git a/docs/docs/auto-docs/components/IconComponent/IconComponent/functions/default.md b/docs/docs/auto-docs/components/IconComponent/IconComponent/functions/default.md deleted file mode 100644 index 5dd185d5e9..0000000000 --- a/docs/docs/auto-docs/components/IconComponent/IconComponent/functions/default.md +++ /dev/null @@ -1,27 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [components/IconComponent/IconComponent](../README.md) / default - -# Function: default() - -> **default**(`props`): `Element` - -Defined in: [src/components/IconComponent/IconComponent.tsx:39](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/IconComponent/IconComponent.tsx#L39) - -Renders an icon based on the provided name. - -## Parameters - -### props - -[`InterfaceIconComponent`](../interfaces/InterfaceIconComponent.md) - -Contains the name of the icon and optional styles (fill, height, width). - -## Returns - -`Element` - -JSX element representing the icon. diff --git a/docs/docs/auto-docs/components/IconComponent/IconComponent/interfaces/InterfaceIconComponent.md b/docs/docs/auto-docs/components/IconComponent/IconComponent/interfaces/InterfaceIconComponent.md deleted file mode 100644 index 6c8592c073..0000000000 --- a/docs/docs/auto-docs/components/IconComponent/IconComponent/interfaces/InterfaceIconComponent.md +++ /dev/null @@ -1,41 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [components/IconComponent/IconComponent](../README.md) / InterfaceIconComponent - -# Interface: InterfaceIconComponent - -Defined in: [src/components/IconComponent/IconComponent.tsx:27](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/IconComponent/IconComponent.tsx#L27) - -## Properties - -### fill? - -> `optional` **fill**: `string` - -Defined in: [src/components/IconComponent/IconComponent.tsx:29](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/IconComponent/IconComponent.tsx#L29) - -*** - -### height? - -> `optional` **height**: `string` - -Defined in: [src/components/IconComponent/IconComponent.tsx:30](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/IconComponent/IconComponent.tsx#L30) - -*** - -### name - -> **name**: `string` - -Defined in: [src/components/IconComponent/IconComponent.tsx:28](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/IconComponent/IconComponent.tsx#L28) - -*** - -### width? - -> `optional` **width**: `string` - -Defined in: [src/components/IconComponent/IconComponent.tsx:31](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/IconComponent/IconComponent.tsx#L31) diff --git a/docs/docs/auto-docs/components/InfiniteScrollLoader/InfiniteScrollLoader/README.md b/docs/docs/auto-docs/components/InfiniteScrollLoader/InfiniteScrollLoader/README.md deleted file mode 100644 index 3d896e2472..0000000000 --- a/docs/docs/auto-docs/components/InfiniteScrollLoader/InfiniteScrollLoader/README.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / components/InfiniteScrollLoader/InfiniteScrollLoader - -# components/InfiniteScrollLoader/InfiniteScrollLoader - -## Functions - -- [default](functions/default.md) diff --git a/docs/docs/auto-docs/components/InfiniteScrollLoader/InfiniteScrollLoader/functions/default.md b/docs/docs/auto-docs/components/InfiniteScrollLoader/InfiniteScrollLoader/functions/default.md deleted file mode 100644 index a80af4bcd7..0000000000 --- a/docs/docs/auto-docs/components/InfiniteScrollLoader/InfiniteScrollLoader/functions/default.md +++ /dev/null @@ -1,17 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [components/InfiniteScrollLoader/InfiniteScrollLoader](../README.md) / default - -# Function: default() - -> **default**(): `Element` - -Defined in: [src/components/InfiniteScrollLoader/InfiniteScrollLoader.tsx:8](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/InfiniteScrollLoader/InfiniteScrollLoader.tsx#L8) - -A Loader for infinite scroll. - -## Returns - -`Element` diff --git a/docs/docs/auto-docs/components/LeftDrawer/LeftDrawer/README.md b/docs/docs/auto-docs/components/LeftDrawer/LeftDrawer/README.md deleted file mode 100644 index aa0d9e2266..0000000000 --- a/docs/docs/auto-docs/components/LeftDrawer/LeftDrawer/README.md +++ /dev/null @@ -1,15 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / components/LeftDrawer/LeftDrawer - -# components/LeftDrawer/LeftDrawer - -## Interfaces - -- [InterfaceLeftDrawerProps](interfaces/InterfaceLeftDrawerProps.md) - -## Functions - -- [default](functions/default.md) diff --git a/docs/docs/auto-docs/components/LeftDrawer/LeftDrawer/functions/default.md b/docs/docs/auto-docs/components/LeftDrawer/LeftDrawer/functions/default.md deleted file mode 100644 index 53771d2f2c..0000000000 --- a/docs/docs/auto-docs/components/LeftDrawer/LeftDrawer/functions/default.md +++ /dev/null @@ -1,25 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [components/LeftDrawer/LeftDrawer](../README.md) / default - -# Function: default() - -> **default**(`__namedParameters`): `Element` - -Defined in: [src/components/LeftDrawer/LeftDrawer.tsx:24](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/LeftDrawer/LeftDrawer.tsx#L24) - -LeftDrawer component for displaying navigation options. - -## Parameters - -### \_\_namedParameters - -[`InterfaceLeftDrawerProps`](../interfaces/InterfaceLeftDrawerProps.md) - -## Returns - -`Element` - -JSX element for the left navigation drawer. diff --git a/docs/docs/auto-docs/components/LeftDrawer/LeftDrawer/interfaces/InterfaceLeftDrawerProps.md b/docs/docs/auto-docs/components/LeftDrawer/LeftDrawer/interfaces/InterfaceLeftDrawerProps.md deleted file mode 100644 index 2d2c589595..0000000000 --- a/docs/docs/auto-docs/components/LeftDrawer/LeftDrawer/interfaces/InterfaceLeftDrawerProps.md +++ /dev/null @@ -1,25 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [components/LeftDrawer/LeftDrawer](../README.md) / InterfaceLeftDrawerProps - -# Interface: InterfaceLeftDrawerProps - -Defined in: [src/components/LeftDrawer/LeftDrawer.tsx:12](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/LeftDrawer/LeftDrawer.tsx#L12) - -## Properties - -### hideDrawer - -> **hideDrawer**: `boolean` - -Defined in: [src/components/LeftDrawer/LeftDrawer.tsx:13](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/LeftDrawer/LeftDrawer.tsx#L13) - -*** - -### setHideDrawer - -> **setHideDrawer**: `Dispatch`\<`SetStateAction`\<`boolean`\>\> - -Defined in: [src/components/LeftDrawer/LeftDrawer.tsx:14](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/LeftDrawer/LeftDrawer.tsx#L14) diff --git a/docs/docs/auto-docs/components/LeftDrawerOrg/LeftDrawerOrg/README.md b/docs/docs/auto-docs/components/LeftDrawerOrg/LeftDrawerOrg/README.md deleted file mode 100644 index eba6903f72..0000000000 --- a/docs/docs/auto-docs/components/LeftDrawerOrg/LeftDrawerOrg/README.md +++ /dev/null @@ -1,15 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / components/LeftDrawerOrg/LeftDrawerOrg - -# components/LeftDrawerOrg/LeftDrawerOrg - -## Interfaces - -- [InterfaceLeftDrawerProps](interfaces/InterfaceLeftDrawerProps.md) - -## Functions - -- [default](functions/default.md) diff --git a/docs/docs/auto-docs/components/LeftDrawerOrg/LeftDrawerOrg/functions/default.md b/docs/docs/auto-docs/components/LeftDrawerOrg/LeftDrawerOrg/functions/default.md deleted file mode 100644 index 803a97e623..0000000000 --- a/docs/docs/auto-docs/components/LeftDrawerOrg/LeftDrawerOrg/functions/default.md +++ /dev/null @@ -1,25 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [components/LeftDrawerOrg/LeftDrawerOrg](../README.md) / default - -# Function: default() - -> **default**(`__namedParameters`): `Element` - -Defined in: [src/components/LeftDrawerOrg/LeftDrawerOrg.tsx:35](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/LeftDrawerOrg/LeftDrawerOrg.tsx#L35) - -LeftDrawerOrg component for displaying organization details and navigation options. - -## Parameters - -### \_\_namedParameters - -[`InterfaceLeftDrawerProps`](../interfaces/InterfaceLeftDrawerProps.md) - -## Returns - -`Element` - -JSX element for the left navigation drawer with organization details. diff --git a/docs/docs/auto-docs/components/LeftDrawerOrg/LeftDrawerOrg/interfaces/InterfaceLeftDrawerProps.md b/docs/docs/auto-docs/components/LeftDrawerOrg/LeftDrawerOrg/interfaces/InterfaceLeftDrawerProps.md deleted file mode 100644 index c18c05a657..0000000000 --- a/docs/docs/auto-docs/components/LeftDrawerOrg/LeftDrawerOrg/interfaces/InterfaceLeftDrawerProps.md +++ /dev/null @@ -1,41 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [components/LeftDrawerOrg/LeftDrawerOrg](../README.md) / InterfaceLeftDrawerProps - -# Interface: InterfaceLeftDrawerProps - -Defined in: [src/components/LeftDrawerOrg/LeftDrawerOrg.tsx:18](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/LeftDrawerOrg/LeftDrawerOrg.tsx#L18) - -## Properties - -### hideDrawer - -> **hideDrawer**: `boolean` - -Defined in: [src/components/LeftDrawerOrg/LeftDrawerOrg.tsx:21](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/LeftDrawerOrg/LeftDrawerOrg.tsx#L21) - -*** - -### orgId - -> **orgId**: `string` - -Defined in: [src/components/LeftDrawerOrg/LeftDrawerOrg.tsx:19](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/LeftDrawerOrg/LeftDrawerOrg.tsx#L19) - -*** - -### setHideDrawer - -> **setHideDrawer**: `Dispatch`\<`SetStateAction`\<`boolean`\>\> - -Defined in: [src/components/LeftDrawerOrg/LeftDrawerOrg.tsx:22](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/LeftDrawerOrg/LeftDrawerOrg.tsx#L22) - -*** - -### targets - -> **targets**: [`TargetsType`](../../../../state/reducers/routesReducer/type-aliases/TargetsType.md)[] - -Defined in: [src/components/LeftDrawerOrg/LeftDrawerOrg.tsx:20](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/LeftDrawerOrg/LeftDrawerOrg.tsx#L20) diff --git a/docs/docs/auto-docs/components/Loader/Loader/README.md b/docs/docs/auto-docs/components/Loader/Loader/README.md deleted file mode 100644 index 6121de4969..0000000000 --- a/docs/docs/auto-docs/components/Loader/Loader/README.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / components/Loader/Loader - -# components/Loader/Loader - -## Functions - -- [default](functions/default.md) diff --git a/docs/docs/auto-docs/components/Loader/Loader/functions/default.md b/docs/docs/auto-docs/components/Loader/Loader/functions/default.md deleted file mode 100644 index 385674dc48..0000000000 --- a/docs/docs/auto-docs/components/Loader/Loader/functions/default.md +++ /dev/null @@ -1,25 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [components/Loader/Loader](../README.md) / default - -# Function: default() - -> **default**(`props`): `Element` - -Defined in: [src/components/Loader/Loader.tsx:17](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/Loader/Loader.tsx#L17) - -Loader component for displaying a loading spinner. - -## Parameters - -### props - -`InterfaceLoaderProps` - -## Returns - -`Element` - -JSX element for a loading spinner. diff --git a/docs/docs/auto-docs/components/LoginPortalToggle/LoginPortalToggle/README.md b/docs/docs/auto-docs/components/LoginPortalToggle/LoginPortalToggle/README.md deleted file mode 100644 index e671f4ec8f..0000000000 --- a/docs/docs/auto-docs/components/LoginPortalToggle/LoginPortalToggle/README.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / components/LoginPortalToggle/LoginPortalToggle - -# components/LoginPortalToggle/LoginPortalToggle - -## Functions - -- [default](functions/default.md) diff --git a/docs/docs/auto-docs/components/LoginPortalToggle/LoginPortalToggle/functions/default.md b/docs/docs/auto-docs/components/LoginPortalToggle/LoginPortalToggle/functions/default.md deleted file mode 100644 index ab4b21034a..0000000000 --- a/docs/docs/auto-docs/components/LoginPortalToggle/LoginPortalToggle/functions/default.md +++ /dev/null @@ -1,27 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [components/LoginPortalToggle/LoginPortalToggle](../README.md) / default - -# Function: default() - -> **default**(`onToggle`): `JSX.Element` - -Defined in: [src/components/LoginPortalToggle/LoginPortalToggle.tsx:18](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/LoginPortalToggle/LoginPortalToggle.tsx#L18) - -Component for toggling between admin and user login portals. - -## Parameters - -### onToggle - -`InterfaceLoginPortalToggleProps` - -Callback function to handle role changes ('admin' or 'user'). - -## Returns - -`JSX.Element` - -JSX element for login portal toggle. diff --git a/docs/docs/auto-docs/components/MemberDetail/EventsAttendedByMember/README.md b/docs/docs/auto-docs/components/MemberDetail/EventsAttendedByMember/README.md deleted file mode 100644 index f6d25bb237..0000000000 --- a/docs/docs/auto-docs/components/MemberDetail/EventsAttendedByMember/README.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / components/MemberDetail/EventsAttendedByMember - -# components/MemberDetail/EventsAttendedByMember - -## Functions - -- [default](functions/default.md) diff --git a/docs/docs/auto-docs/components/MemberDetail/EventsAttendedByMember/functions/default.md b/docs/docs/auto-docs/components/MemberDetail/EventsAttendedByMember/functions/default.md deleted file mode 100644 index 3e01857f95..0000000000 --- a/docs/docs/auto-docs/components/MemberDetail/EventsAttendedByMember/functions/default.md +++ /dev/null @@ -1,21 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [components/MemberDetail/EventsAttendedByMember](../README.md) / default - -# Function: default() - -> **default**(`__namedParameters`): `JSX.Element` - -Defined in: [src/components/MemberDetail/EventsAttendedByMember.tsx:15](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/MemberDetail/EventsAttendedByMember.tsx#L15) - -## Parameters - -### \_\_namedParameters - -`InterfaceEventsAttendedByMember` - -## Returns - -`JSX.Element` diff --git a/docs/docs/auto-docs/components/MemberDetail/EventsAttendedCardItem/README.md b/docs/docs/auto-docs/components/MemberDetail/EventsAttendedCardItem/README.md deleted file mode 100644 index 54a651098f..0000000000 --- a/docs/docs/auto-docs/components/MemberDetail/EventsAttendedCardItem/README.md +++ /dev/null @@ -1,15 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / components/MemberDetail/EventsAttendedCardItem - -# components/MemberDetail/EventsAttendedCardItem - -## Interfaces - -- [InterfaceCardItem](interfaces/InterfaceCardItem.md) - -## Functions - -- [default](functions/default.md) diff --git a/docs/docs/auto-docs/components/MemberDetail/EventsAttendedCardItem/functions/default.md b/docs/docs/auto-docs/components/MemberDetail/EventsAttendedCardItem/functions/default.md deleted file mode 100644 index f38767db70..0000000000 --- a/docs/docs/auto-docs/components/MemberDetail/EventsAttendedCardItem/functions/default.md +++ /dev/null @@ -1,21 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [components/MemberDetail/EventsAttendedCardItem](../README.md) / default - -# Function: default() - -> **default**(`props`): `Element` - -Defined in: [src/components/MemberDetail/EventsAttendedCardItem.tsx:26](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/MemberDetail/EventsAttendedCardItem.tsx#L26) - -## Parameters - -### props - -[`InterfaceCardItem`](../interfaces/InterfaceCardItem.md) - -## Returns - -`Element` diff --git a/docs/docs/auto-docs/components/MemberDetail/EventsAttendedCardItem/interfaces/InterfaceCardItem.md b/docs/docs/auto-docs/components/MemberDetail/EventsAttendedCardItem/interfaces/InterfaceCardItem.md deleted file mode 100644 index 89a0a19c2e..0000000000 --- a/docs/docs/auto-docs/components/MemberDetail/EventsAttendedCardItem/interfaces/InterfaceCardItem.md +++ /dev/null @@ -1,88 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [components/MemberDetail/EventsAttendedCardItem](../README.md) / InterfaceCardItem - -# Interface: InterfaceCardItem - -Defined in: [src/components/MemberDetail/EventsAttendedCardItem.tsx:16](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/MemberDetail/EventsAttendedCardItem.tsx#L16) - -Card component to display individual event attendance information -Shows event details including title, date, location and organization - -## Param - -Organization ID - -## Param - -Event ID - -## Param - -Event start date - -## Param - -Event title - -## Param - -Event location - -## Properties - -### creator? - -> `optional` **creator**: `string` - -Defined in: [src/components/MemberDetail/EventsAttendedCardItem.tsx:20](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/MemberDetail/EventsAttendedCardItem.tsx#L20) - -*** - -### eventId? - -> `optional` **eventId**: `string` - -Defined in: [src/components/MemberDetail/EventsAttendedCardItem.tsx:22](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/MemberDetail/EventsAttendedCardItem.tsx#L22) - -*** - -### location? - -> `optional` **location**: `string` - -Defined in: [src/components/MemberDetail/EventsAttendedCardItem.tsx:21](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/MemberDetail/EventsAttendedCardItem.tsx#L21) - -*** - -### orgId? - -> `optional` **orgId**: `string` - -Defined in: [src/components/MemberDetail/EventsAttendedCardItem.tsx:23](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/MemberDetail/EventsAttendedCardItem.tsx#L23) - -*** - -### startdate? - -> `optional` **startdate**: `string` - -Defined in: [src/components/MemberDetail/EventsAttendedCardItem.tsx:19](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/MemberDetail/EventsAttendedCardItem.tsx#L19) - -*** - -### time? - -> `optional` **time**: `string` - -Defined in: [src/components/MemberDetail/EventsAttendedCardItem.tsx:18](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/MemberDetail/EventsAttendedCardItem.tsx#L18) - -*** - -### title - -> **title**: `string` - -Defined in: [src/components/MemberDetail/EventsAttendedCardItem.tsx:17](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/MemberDetail/EventsAttendedCardItem.tsx#L17) diff --git a/docs/docs/auto-docs/components/MemberDetail/EventsAttendedMemberModal/README.md b/docs/docs/auto-docs/components/MemberDetail/EventsAttendedMemberModal/README.md deleted file mode 100644 index fb1b316570..0000000000 --- a/docs/docs/auto-docs/components/MemberDetail/EventsAttendedMemberModal/README.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / components/MemberDetail/EventsAttendedMemberModal - -# components/MemberDetail/EventsAttendedMemberModal - -## Functions - -- [default](functions/default.md) diff --git a/docs/docs/auto-docs/components/MemberDetail/EventsAttendedMemberModal/functions/default.md b/docs/docs/auto-docs/components/MemberDetail/EventsAttendedMemberModal/functions/default.md deleted file mode 100644 index 4df42f2b12..0000000000 --- a/docs/docs/auto-docs/components/MemberDetail/EventsAttendedMemberModal/functions/default.md +++ /dev/null @@ -1,31 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [components/MemberDetail/EventsAttendedMemberModal](../README.md) / default - -# Function: default() - -> **default**(`props`, `deprecatedLegacyContext`?): `ReactNode` - -Defined in: [src/components/MemberDetail/EventsAttendedMemberModal.tsx:39](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/MemberDetail/EventsAttendedMemberModal.tsx#L39) - -## Parameters - -### props - -`InterfaceEventsAttendedMemberModalProps` - -### deprecatedLegacyContext? - -`any` - -**Deprecated** - -**See** - -[React Docs](https://legacy.reactjs.org/docs/legacy-context.html#referencing-context-in-lifecycle-methods) - -## Returns - -`ReactNode` diff --git a/docs/docs/auto-docs/components/MemberDetail/customTableCell/README.md b/docs/docs/auto-docs/components/MemberDetail/customTableCell/README.md deleted file mode 100644 index b73565cc94..0000000000 --- a/docs/docs/auto-docs/components/MemberDetail/customTableCell/README.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / components/MemberDetail/customTableCell - -# components/MemberDetail/customTableCell - -## Functions - -- [CustomTableCell](functions/CustomTableCell.md) diff --git a/docs/docs/auto-docs/components/MemberDetail/customTableCell/functions/CustomTableCell.md b/docs/docs/auto-docs/components/MemberDetail/customTableCell/functions/CustomTableCell.md deleted file mode 100644 index d1a36edfdc..0000000000 --- a/docs/docs/auto-docs/components/MemberDetail/customTableCell/functions/CustomTableCell.md +++ /dev/null @@ -1,37 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [components/MemberDetail/customTableCell](../README.md) / CustomTableCell - -# Function: CustomTableCell() - -> **CustomTableCell**(`props`, `deprecatedLegacyContext`?): `ReactNode` - -Defined in: [src/components/MemberDetail/customTableCell.tsx:13](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/MemberDetail/customTableCell.tsx#L13) - -Custom table cell component to display event details - -## Parameters - -### props - -#### eventId - -`string` - -### deprecatedLegacyContext? - -`any` - -**Deprecated** - -**See** - -[React Docs](https://legacy.reactjs.org/docs/legacy-context.html#referencing-context-in-lifecycle-methods) - -## Returns - -`ReactNode` - -TableRow component with event information diff --git a/docs/docs/auto-docs/components/MemberRequestCard/MemberRequestCard/README.md b/docs/docs/auto-docs/components/MemberRequestCard/MemberRequestCard/README.md deleted file mode 100644 index 0e2ff9bf92..0000000000 --- a/docs/docs/auto-docs/components/MemberRequestCard/MemberRequestCard/README.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / components/MemberRequestCard/MemberRequestCard - -# components/MemberRequestCard/MemberRequestCard - -## Functions - -- [default](functions/default.md) diff --git a/docs/docs/auto-docs/components/MemberRequestCard/MemberRequestCard/functions/default.md b/docs/docs/auto-docs/components/MemberRequestCard/MemberRequestCard/functions/default.md deleted file mode 100644 index e262082586..0000000000 --- a/docs/docs/auto-docs/components/MemberRequestCard/MemberRequestCard/functions/default.md +++ /dev/null @@ -1,27 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [components/MemberRequestCard/MemberRequestCard](../README.md) / default - -# Function: default() - -> **default**(`props`): `JSX.Element` - -Defined in: [src/components/MemberRequestCard/MemberRequestCard.tsx:31](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/MemberRequestCard/MemberRequestCard.tsx#L31) - -Component for displaying and managing member requests. - -## Parameters - -### props - -`InterfaceMemberRequestCardProps` - -Properties for the member request card. - -## Returns - -`JSX.Element` - -JSX element for member request card. diff --git a/docs/docs/auto-docs/components/NotFound/NotFound/README.md b/docs/docs/auto-docs/components/NotFound/NotFound/README.md deleted file mode 100644 index 5b37138d23..0000000000 --- a/docs/docs/auto-docs/components/NotFound/NotFound/README.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / components/NotFound/NotFound - -# components/NotFound/NotFound - -## Functions - -- [default](functions/default.md) diff --git a/docs/docs/auto-docs/components/NotFound/NotFound/functions/default.md b/docs/docs/auto-docs/components/NotFound/NotFound/functions/default.md deleted file mode 100644 index 4a4bbf74c1..0000000000 --- a/docs/docs/auto-docs/components/NotFound/NotFound/functions/default.md +++ /dev/null @@ -1,25 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [components/NotFound/NotFound](../README.md) / default - -# Function: default() - -> **default**(`props`): `JSX.Element` - -Defined in: [src/components/NotFound/NotFound.tsx:18](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/NotFound/NotFound.tsx#L18) - -Component to display a "Not Found" message. - -## Parameters - -### props - -`InterfaceNotFoundProps` - -## Returns - -`JSX.Element` - -JSX element for the "Not Found" page. diff --git a/docs/docs/auto-docs/components/OrgAdminListCard/OrgAdminListCard/README.md b/docs/docs/auto-docs/components/OrgAdminListCard/OrgAdminListCard/README.md deleted file mode 100644 index 8ad3c4634a..0000000000 --- a/docs/docs/auto-docs/components/OrgAdminListCard/OrgAdminListCard/README.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / components/OrgAdminListCard/OrgAdminListCard - -# components/OrgAdminListCard/OrgAdminListCard - -## Functions - -- [default](functions/default.md) diff --git a/docs/docs/auto-docs/components/OrgAdminListCard/OrgAdminListCard/functions/default.md b/docs/docs/auto-docs/components/OrgAdminListCard/OrgAdminListCard/functions/default.md deleted file mode 100644 index 7f9a7ee62b..0000000000 --- a/docs/docs/auto-docs/components/OrgAdminListCard/OrgAdminListCard/functions/default.md +++ /dev/null @@ -1,25 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [components/OrgAdminListCard/OrgAdminListCard](../README.md) / default - -# Function: default() - -> **default**(`props`): `JSX.Element` - -Defined in: [src/components/OrgAdminListCard/OrgAdminListCard.tsx:22](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/OrgAdminListCard/OrgAdminListCard.tsx#L22) - -Component to confirm and handle the removal of an admin. - -## Parameters - -### props - -`InterfaceOrgPeopleListCardProps` - -## Returns - -`JSX.Element` - -JSX element for the removal confirmation modal. diff --git a/docs/docs/auto-docs/components/OrgContriCards/OrgContriCards/README.md b/docs/docs/auto-docs/components/OrgContriCards/OrgContriCards/README.md deleted file mode 100644 index 6837afa7f4..0000000000 --- a/docs/docs/auto-docs/components/OrgContriCards/OrgContriCards/README.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / components/OrgContriCards/OrgContriCards - -# components/OrgContriCards/OrgContriCards - -## Functions - -- [default](functions/default.md) diff --git a/docs/docs/auto-docs/components/OrgContriCards/OrgContriCards/functions/default.md b/docs/docs/auto-docs/components/OrgContriCards/OrgContriCards/functions/default.md deleted file mode 100644 index 649341a4be..0000000000 --- a/docs/docs/auto-docs/components/OrgContriCards/OrgContriCards/functions/default.md +++ /dev/null @@ -1,30 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [components/OrgContriCards/OrgContriCards](../README.md) / default - -# Function: default() - -> **default**(`props`): `JSX.Element` - -Defined in: [src/components/OrgContriCards/OrgContriCards.tsx:30](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/OrgContriCards/OrgContriCards.tsx#L30) - -Component to display organization contribution cards - -This component shows the contribution details of a user in a card format. It includes -the user's name, email, contribution date, transaction ID, and the contribution amount. - -## Parameters - -### props - -`InterfaceOrgContriCardsProps` - -The properties passed to the component - -## Returns - -`JSX.Element` - -JSX.Element representing a contribution card diff --git a/docs/docs/auto-docs/components/OrgDelete/OrgDelete/README.md b/docs/docs/auto-docs/components/OrgDelete/OrgDelete/README.md deleted file mode 100644 index 61d0992c04..0000000000 --- a/docs/docs/auto-docs/components/OrgDelete/OrgDelete/README.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / components/OrgDelete/OrgDelete - -# components/OrgDelete/OrgDelete - -## Functions - -- [default](functions/default.md) diff --git a/docs/docs/auto-docs/components/OrgDelete/OrgDelete/functions/default.md b/docs/docs/auto-docs/components/OrgDelete/OrgDelete/functions/default.md deleted file mode 100644 index b8c7cb7dbd..0000000000 --- a/docs/docs/auto-docs/components/OrgDelete/OrgDelete/functions/default.md +++ /dev/null @@ -1,21 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [components/OrgDelete/OrgDelete](../README.md) / default - -# Function: default() - -> **default**(): `JSX.Element` - -Defined in: [src/components/OrgDelete/OrgDelete.tsx:11](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/OrgDelete/OrgDelete.tsx#L11) - -Component for displaying organization deletion message - -This component renders a message related to deleting an organization. - -## Returns - -`JSX.Element` - -JSX.Element representing the organization deletion message diff --git a/docs/docs/auto-docs/components/OrgListCard/OrgListCard/README.md b/docs/docs/auto-docs/components/OrgListCard/OrgListCard/README.md deleted file mode 100644 index 48cc0da29f..0000000000 --- a/docs/docs/auto-docs/components/OrgListCard/OrgListCard/README.md +++ /dev/null @@ -1,15 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / components/OrgListCard/OrgListCard - -# components/OrgListCard/OrgListCard - -## Interfaces - -- [InterfaceOrgListCardProps](interfaces/InterfaceOrgListCardProps.md) - -## Functions - -- [default](functions/default.md) diff --git a/docs/docs/auto-docs/components/OrgListCard/OrgListCard/functions/default.md b/docs/docs/auto-docs/components/OrgListCard/OrgListCard/functions/default.md deleted file mode 100644 index 46ed954f84..0000000000 --- a/docs/docs/auto-docs/components/OrgListCard/OrgListCard/functions/default.md +++ /dev/null @@ -1,31 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [components/OrgListCard/OrgListCard](../README.md) / default - -# Function: default() - -> **default**(`props`): `JSX.Element` - -Defined in: [src/components/OrgListCard/OrgListCard.tsx:38](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/OrgListCard/OrgListCard.tsx#L38) - -Component for displaying a list card for an organization - -This component renders a card that displays information about an organization, -including its name, address, members, and admins. It also provides a button -to manage the organization, navigating to the organization's dashboard. - -## Parameters - -### props - -[`InterfaceOrgListCardProps`](../interfaces/InterfaceOrgListCardProps.md) - -The properties passed to the component - -## Returns - -`JSX.Element` - -JSX.Element representing an organization list card diff --git a/docs/docs/auto-docs/components/OrgListCard/OrgListCard/interfaces/InterfaceOrgListCardProps.md b/docs/docs/auto-docs/components/OrgListCard/OrgListCard/interfaces/InterfaceOrgListCardProps.md deleted file mode 100644 index 954e360c36..0000000000 --- a/docs/docs/auto-docs/components/OrgListCard/OrgListCard/interfaces/InterfaceOrgListCardProps.md +++ /dev/null @@ -1,19 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [components/OrgListCard/OrgListCard](../README.md) / InterfaceOrgListCardProps - -# Interface: InterfaceOrgListCardProps - -Defined in: [src/components/OrgListCard/OrgListCard.tsx:24](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/OrgListCard/OrgListCard.tsx#L24) - -Props for the OrgListCard component - -## Properties - -### data - -> **data**: [`InterfaceOrgConnectionInfoType`](../../../../utils/interfaces/interfaces/InterfaceOrgConnectionInfoType.md) - -Defined in: [src/components/OrgListCard/OrgListCard.tsx:25](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/OrgListCard/OrgListCard.tsx#L25) diff --git a/docs/docs/auto-docs/components/OrgListCard/TruncatedText/README.md b/docs/docs/auto-docs/components/OrgListCard/TruncatedText/README.md deleted file mode 100644 index fac93a67cb..0000000000 --- a/docs/docs/auto-docs/components/OrgListCard/TruncatedText/README.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / components/OrgListCard/TruncatedText - -# components/OrgListCard/TruncatedText - -## Functions - -- [default](functions/default.md) diff --git a/docs/docs/auto-docs/components/OrgListCard/TruncatedText/functions/default.md b/docs/docs/auto-docs/components/OrgListCard/TruncatedText/functions/default.md deleted file mode 100644 index f658cb685f..0000000000 --- a/docs/docs/auto-docs/components/OrgListCard/TruncatedText/functions/default.md +++ /dev/null @@ -1,47 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [components/OrgListCard/TruncatedText](../README.md) / default - -# Function: default() - -> **default**(`props`, `deprecatedLegacyContext`?): `ReactNode` - -Defined in: [src/components/OrgListCard/TruncatedText.tsx:31](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/OrgListCard/TruncatedText.tsx#L31) - -A React functional component that displays text and truncates it with an ellipsis (`...`) -if the text exceeds the available width or the `maxWidthOverride` value. - -The component adjusts the truncation dynamically based on the available space -or the `maxWidthOverride` value. It also listens for window resize events to reapply truncation. - -## Parameters - -### props - -`InterfaceTruncatedTextProps` - -The props for the component. - -### deprecatedLegacyContext? - -`any` - -**Deprecated** - -**See** - -[React Docs](https://legacy.reactjs.org/docs/legacy-context.html#referencing-context-in-lifecycle-methods) - -## Returns - -`ReactNode` - -A heading element (`
`) containing the truncated or full text. - -## Example - -```tsx - -``` diff --git a/docs/docs/auto-docs/components/OrgListCard/useDebounce/README.md b/docs/docs/auto-docs/components/OrgListCard/useDebounce/README.md deleted file mode 100644 index 3cbd337a25..0000000000 --- a/docs/docs/auto-docs/components/OrgListCard/useDebounce/README.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / components/OrgListCard/useDebounce - -# components/OrgListCard/useDebounce - -## Functions - -- [default](functions/default.md) diff --git a/docs/docs/auto-docs/components/OrgListCard/useDebounce/functions/default.md b/docs/docs/auto-docs/components/OrgListCard/useDebounce/functions/default.md deleted file mode 100644 index 6a021dd012..0000000000 --- a/docs/docs/auto-docs/components/OrgListCard/useDebounce/functions/default.md +++ /dev/null @@ -1,61 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [components/OrgListCard/useDebounce](../README.md) / default - -# Function: default() - -> **default**\<`T`\>(`callback`, `delay`): `object` - -Defined in: [src/components/OrgListCard/useDebounce.tsx:12](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/OrgListCard/useDebounce.tsx#L12) - -A custom React hook for debouncing a callback function. -It delays the execution of the callback until after a specified delay has elapsed -since the last time the debounced function was invoked. - -## Type Parameters - -• **T** *extends* (...`args`) => `void` - -## Parameters - -### callback - -`T` - -The function to debounce. - -### delay - -`number` - -The delay in milliseconds to wait before invoking the callback. - -## Returns - -`object` - -An object with the `debouncedCallback` function and a `cancel` method to clear the timeout. - -### cancel() - -> **cancel**: () => `void` - -#### Returns - -`void` - -### debouncedCallback() - -> **debouncedCallback**: (...`args`) => `void` - -#### Parameters - -##### args - -...`Parameters`\<`T`\> - -#### Returns - -`void` diff --git a/docs/docs/auto-docs/components/OrgPeopleListCard/OrgPeopleListCard/README.md b/docs/docs/auto-docs/components/OrgPeopleListCard/OrgPeopleListCard/README.md deleted file mode 100644 index bc89def863..0000000000 --- a/docs/docs/auto-docs/components/OrgPeopleListCard/OrgPeopleListCard/README.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / components/OrgPeopleListCard/OrgPeopleListCard - -# components/OrgPeopleListCard/OrgPeopleListCard - -## Functions - -- [default](functions/default.md) diff --git a/docs/docs/auto-docs/components/OrgPeopleListCard/OrgPeopleListCard/functions/default.md b/docs/docs/auto-docs/components/OrgPeopleListCard/OrgPeopleListCard/functions/default.md deleted file mode 100644 index 21d159296c..0000000000 --- a/docs/docs/auto-docs/components/OrgPeopleListCard/OrgPeopleListCard/functions/default.md +++ /dev/null @@ -1,30 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [components/OrgPeopleListCard/OrgPeopleListCard](../README.md) / default - -# Function: default() - -> **default**(`props`): `JSX.Element` - -Defined in: [src/components/OrgPeopleListCard/OrgPeopleListCard.tsx:30](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/OrgPeopleListCard/OrgPeopleListCard.tsx#L30) - -Component for displaying a modal to remove a member from an organization - -This component shows a modal that confirms the removal of a member from the organization. -It performs the removal action and displays success or error messages. - -## Parameters - -### props - -`InterfaceOrgPeopleListCardProps` - -The properties passed to the component - -## Returns - -`JSX.Element` - -JSX.Element representing the organization people list card modal diff --git a/docs/docs/auto-docs/components/OrgPostCard/DeletePostModal/README.md b/docs/docs/auto-docs/components/OrgPostCard/DeletePostModal/README.md deleted file mode 100644 index e9fcbcd946..0000000000 --- a/docs/docs/auto-docs/components/OrgPostCard/DeletePostModal/README.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / components/OrgPostCard/DeletePostModal - -# components/OrgPostCard/DeletePostModal - -## Functions - -- [default](functions/default.md) diff --git a/docs/docs/auto-docs/components/OrgPostCard/DeletePostModal/functions/default.md b/docs/docs/auto-docs/components/OrgPostCard/DeletePostModal/functions/default.md deleted file mode 100644 index dfa8cf0c2b..0000000000 --- a/docs/docs/auto-docs/components/OrgPostCard/DeletePostModal/functions/default.md +++ /dev/null @@ -1,31 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [components/OrgPostCard/DeletePostModal](../README.md) / default - -# Function: default() - -> **default**(`props`, `deprecatedLegacyContext`?): `ReactNode` - -Defined in: [src/components/OrgPostCard/DeletePostModal.tsx:20](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/OrgPostCard/DeletePostModal.tsx#L20) - -## Parameters - -### props - -`InterfaceDeletePostModalProps` - -### deprecatedLegacyContext? - -`any` - -**Deprecated** - -**See** - -[React Docs](https://legacy.reactjs.org/docs/legacy-context.html#referencing-context-in-lifecycle-methods) - -## Returns - -`ReactNode` diff --git a/docs/docs/auto-docs/components/OrgPostCard/OrgPostCard/README.md b/docs/docs/auto-docs/components/OrgPostCard/OrgPostCard/README.md deleted file mode 100644 index 697b44c4da..0000000000 --- a/docs/docs/auto-docs/components/OrgPostCard/OrgPostCard/README.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / components/OrgPostCard/OrgPostCard - -# components/OrgPostCard/OrgPostCard - -## Functions - -- [default](functions/default.md) diff --git a/docs/docs/auto-docs/components/OrgPostCard/OrgPostCard/functions/default.md b/docs/docs/auto-docs/components/OrgPostCard/OrgPostCard/functions/default.md deleted file mode 100644 index 8967f835c5..0000000000 --- a/docs/docs/auto-docs/components/OrgPostCard/OrgPostCard/functions/default.md +++ /dev/null @@ -1,21 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [components/OrgPostCard/OrgPostCard](../README.md) / default - -# Function: default() - -> **default**(`props`): `JSX.Element` - -Defined in: [src/components/OrgPostCard/OrgPostCard.tsx:29](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/OrgPostCard/OrgPostCard.tsx#L29) - -## Parameters - -### props - -`InterfaceOrgPostCardProps` - -## Returns - -`JSX.Element` diff --git a/docs/docs/auto-docs/components/OrgSettings/ActionItemCategories/CategoryModal/README.md b/docs/docs/auto-docs/components/OrgSettings/ActionItemCategories/CategoryModal/README.md deleted file mode 100644 index 25ff96a2bb..0000000000 --- a/docs/docs/auto-docs/components/OrgSettings/ActionItemCategories/CategoryModal/README.md +++ /dev/null @@ -1,15 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / components/OrgSettings/ActionItemCategories/CategoryModal - -# components/OrgSettings/ActionItemCategories/CategoryModal - -## Interfaces - -- [InterfaceActionItemCategoryModal](interfaces/InterfaceActionItemCategoryModal.md) - -## Functions - -- [default](functions/default.md) diff --git a/docs/docs/auto-docs/components/OrgSettings/ActionItemCategories/CategoryModal/functions/default.md b/docs/docs/auto-docs/components/OrgSettings/ActionItemCategories/CategoryModal/functions/default.md deleted file mode 100644 index 481e5bb2db..0000000000 --- a/docs/docs/auto-docs/components/OrgSettings/ActionItemCategories/CategoryModal/functions/default.md +++ /dev/null @@ -1,37 +0,0 @@ -[**talawa-admin**](../../../../../README.md) - -*** - -[talawa-admin](../../../../../modules.md) / [components/OrgSettings/ActionItemCategories/CategoryModal](../README.md) / default - -# Function: default() - -> **default**(`props`, `deprecatedLegacyContext`?): `ReactNode` - -Defined in: [src/components/OrgSettings/ActionItemCategories/CategoryModal.tsx:41](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/OrgSettings/ActionItemCategories/CategoryModal.tsx#L41) - -A modal component for creating and editing action item categories. - -## Parameters - -### props - -[`InterfaceActionItemCategoryModal`](../interfaces/InterfaceActionItemCategoryModal.md) - -The properties passed to the component. - -### deprecatedLegacyContext? - -`any` - -**Deprecated** - -**See** - -[React Docs](https://legacy.reactjs.org/docs/legacy-context.html#referencing-context-in-lifecycle-methods) - -## Returns - -`ReactNode` - -The `CategoryModal` component. diff --git a/docs/docs/auto-docs/components/OrgSettings/ActionItemCategories/CategoryModal/interfaces/InterfaceActionItemCategoryModal.md b/docs/docs/auto-docs/components/OrgSettings/ActionItemCategories/CategoryModal/interfaces/InterfaceActionItemCategoryModal.md deleted file mode 100644 index 2247a87312..0000000000 --- a/docs/docs/auto-docs/components/OrgSettings/ActionItemCategories/CategoryModal/interfaces/InterfaceActionItemCategoryModal.md +++ /dev/null @@ -1,74 +0,0 @@ -[**talawa-admin**](../../../../../README.md) - -*** - -[talawa-admin](../../../../../modules.md) / [components/OrgSettings/ActionItemCategories/CategoryModal](../README.md) / InterfaceActionItemCategoryModal - -# Interface: InterfaceActionItemCategoryModal - -Defined in: [src/components/OrgSettings/ActionItemCategories/CategoryModal.tsx:26](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/OrgSettings/ActionItemCategories/CategoryModal.tsx#L26) - -Props for the `CategoryModal` component. - -isOpen - The state of the modal. -hide - The function to hide the modal. -refetchCategories - The function to refetch the categories. -orgId - The organization ID. -category - The category to be edited. -mode - The mode of the modal. - -## Properties - -### category - -> **category**: [`InterfaceActionItemCategoryInfo`](../../../../../utils/interfaces/interfaces/InterfaceActionItemCategoryInfo.md) - -Defined in: [src/components/OrgSettings/ActionItemCategories/CategoryModal.tsx:31](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/OrgSettings/ActionItemCategories/CategoryModal.tsx#L31) - -*** - -### hide() - -> **hide**: () => `void` - -Defined in: [src/components/OrgSettings/ActionItemCategories/CategoryModal.tsx:28](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/OrgSettings/ActionItemCategories/CategoryModal.tsx#L28) - -#### Returns - -`void` - -*** - -### isOpen - -> **isOpen**: `boolean` - -Defined in: [src/components/OrgSettings/ActionItemCategories/CategoryModal.tsx:27](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/OrgSettings/ActionItemCategories/CategoryModal.tsx#L27) - -*** - -### mode - -> **mode**: `"edit"` \| `"create"` - -Defined in: [src/components/OrgSettings/ActionItemCategories/CategoryModal.tsx:32](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/OrgSettings/ActionItemCategories/CategoryModal.tsx#L32) - -*** - -### orgId - -> **orgId**: `string` - -Defined in: [src/components/OrgSettings/ActionItemCategories/CategoryModal.tsx:30](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/OrgSettings/ActionItemCategories/CategoryModal.tsx#L30) - -*** - -### refetchCategories() - -> **refetchCategories**: () => `void` - -Defined in: [src/components/OrgSettings/ActionItemCategories/CategoryModal.tsx:29](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/OrgSettings/ActionItemCategories/CategoryModal.tsx#L29) - -#### Returns - -`void` diff --git a/docs/docs/auto-docs/components/OrgSettings/ActionItemCategories/OrgActionItemCategories/README.md b/docs/docs/auto-docs/components/OrgSettings/ActionItemCategories/OrgActionItemCategories/README.md deleted file mode 100644 index 9fbcade10c..0000000000 --- a/docs/docs/auto-docs/components/OrgSettings/ActionItemCategories/OrgActionItemCategories/README.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / components/OrgSettings/ActionItemCategories/OrgActionItemCategories - -# components/OrgSettings/ActionItemCategories/OrgActionItemCategories - -## Functions - -- [default](functions/default.md) diff --git a/docs/docs/auto-docs/components/OrgSettings/ActionItemCategories/OrgActionItemCategories/functions/default.md b/docs/docs/auto-docs/components/OrgSettings/ActionItemCategories/OrgActionItemCategories/functions/default.md deleted file mode 100644 index be96270f22..0000000000 --- a/docs/docs/auto-docs/components/OrgSettings/ActionItemCategories/OrgActionItemCategories/functions/default.md +++ /dev/null @@ -1,34 +0,0 @@ -[**talawa-admin**](../../../../../README.md) - -*** - -[talawa-admin](../../../../../modules.md) / [components/OrgSettings/ActionItemCategories/OrgActionItemCategories](../README.md) / default - -# Function: default() - -> **default**(`props`, `deprecatedLegacyContext`?): `ReactNode` - -Defined in: [src/components/OrgSettings/ActionItemCategories/OrgActionItemCategories.tsx:61](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/OrgSettings/ActionItemCategories/OrgActionItemCategories.tsx#L61) - -Represents the component for managing organization action item categories. -This component allows creating, updating, enabling, and disabling action item categories. - -## Parameters - -### props - -`InterfaceActionItemCategoryProps` - -### deprecatedLegacyContext? - -`any` - -**Deprecated** - -**See** - -[React Docs](https://legacy.reactjs.org/docs/legacy-context.html#referencing-context-in-lifecycle-methods) - -## Returns - -`ReactNode` diff --git a/docs/docs/auto-docs/components/OrgSettings/ActionItemCategories/OrgActionItemCategoryMocks/README.md b/docs/docs/auto-docs/components/OrgSettings/ActionItemCategories/OrgActionItemCategoryMocks/README.md deleted file mode 100644 index 7141fc79d4..0000000000 --- a/docs/docs/auto-docs/components/OrgSettings/ActionItemCategories/OrgActionItemCategoryMocks/README.md +++ /dev/null @@ -1,13 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / components/OrgSettings/ActionItemCategories/OrgActionItemCategoryMocks - -# components/OrgSettings/ActionItemCategories/OrgActionItemCategoryMocks - -## Variables - -- [MOCKS](variables/MOCKS.md) -- [MOCKS\_EMPTY](variables/MOCKS_EMPTY.md) -- [MOCKS\_ERROR](variables/MOCKS_ERROR.md) diff --git a/docs/docs/auto-docs/components/OrgSettings/ActionItemCategories/OrgActionItemCategoryMocks/variables/MOCKS.md b/docs/docs/auto-docs/components/OrgSettings/ActionItemCategories/OrgActionItemCategoryMocks/variables/MOCKS.md deleted file mode 100644 index 08f03dfa49..0000000000 --- a/docs/docs/auto-docs/components/OrgSettings/ActionItemCategories/OrgActionItemCategoryMocks/variables/MOCKS.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../../README.md) - -*** - -[talawa-admin](../../../../../modules.md) / [components/OrgSettings/ActionItemCategories/OrgActionItemCategoryMocks](../README.md) / MOCKS - -# Variable: MOCKS - -> `const` **MOCKS**: (\{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `actionItemCategoryId`: `undefined`; `isDisabled`: `undefined`; `name`: `undefined`; `orderBy`: `string`; `organizationId`: `string`; `where`: \{ `is_disabled`: `undefined`; `name_contains`: `string`; \}; \}; \}; `result`: \{ `data`: \{ `actionItemCategoriesByOrganization`: `object`[]; `createActionItemCategory`: `undefined`; `updateActionItemCategory`: `undefined`; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `actionItemCategoryId`: `undefined`; `isDisabled`: `undefined`; `name`: `undefined`; `orderBy`: `string`; `organizationId`: `string`; `where`: \{ `is_disabled`: `boolean`; `name_contains`: `string`; \}; \}; \}; `result`: \{ `data`: \{ `actionItemCategoriesByOrganization`: `object`[]; `createActionItemCategory`: `undefined`; `updateActionItemCategory`: `undefined`; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `actionItemCategoryId`: `undefined`; `isDisabled`: `boolean`; `name`: `string`; `orderBy`: `undefined`; `organizationId`: `string`; `where`: `undefined`; \}; \}; `result`: \{ `data`: \{ `actionItemCategoriesByOrganization`: `undefined`; `createActionItemCategory`: \{ `_id`: `string`; \}; `updateActionItemCategory`: `undefined`; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `actionItemCategoryId`: `string`; `isDisabled`: `boolean`; `name`: `string`; `orderBy`: `undefined`; `organizationId`: `undefined`; `where`: `undefined`; \}; \}; `result`: \{ `data`: \{ `actionItemCategoriesByOrganization`: `undefined`; `createActionItemCategory`: `undefined`; `updateActionItemCategory`: \{ `_id`: `string`; \}; \}; \}; \})[] - -Defined in: [src/components/OrgSettings/ActionItemCategories/OrgActionItemCategoryMocks.ts:8](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/OrgSettings/ActionItemCategories/OrgActionItemCategoryMocks.ts#L8) diff --git a/docs/docs/auto-docs/components/OrgSettings/ActionItemCategories/OrgActionItemCategoryMocks/variables/MOCKS_EMPTY.md b/docs/docs/auto-docs/components/OrgSettings/ActionItemCategories/OrgActionItemCategoryMocks/variables/MOCKS_EMPTY.md deleted file mode 100644 index fa882350bc..0000000000 --- a/docs/docs/auto-docs/components/OrgSettings/ActionItemCategories/OrgActionItemCategoryMocks/variables/MOCKS_EMPTY.md +++ /dev/null @@ -1,53 +0,0 @@ -[**talawa-admin**](../../../../../README.md) - -*** - -[talawa-admin](../../../../../modules.md) / [components/OrgSettings/ActionItemCategories/OrgActionItemCategoryMocks](../README.md) / MOCKS\_EMPTY - -# Variable: MOCKS\_EMPTY - -> `const` **MOCKS\_EMPTY**: `object`[] - -Defined in: [src/components/OrgSettings/ActionItemCategories/OrgActionItemCategoryMocks.ts:236](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/OrgSettings/ActionItemCategories/OrgActionItemCategoryMocks.ts#L236) - -## Type declaration - -### request - -> **request**: `object` - -#### request.query - -> **query**: `DocumentNode` = `ACTION_ITEM_CATEGORY_LIST` - -#### request.variables - -> **variables**: `object` - -#### request.variables.orderBy - -> **orderBy**: `string` = `'createdAt_DESC'` - -#### request.variables.organizationId - -> **organizationId**: `string` = `'orgId'` - -#### request.variables.where - -> **where**: `object` - -#### request.variables.where.name\_contains - -> **name\_contains**: `string` = `''` - -### result - -> **result**: `object` - -#### result.data - -> **data**: `object` - -#### result.data.actionItemCategoriesByOrganization - -> **actionItemCategoriesByOrganization**: `any`[] = `[]` diff --git a/docs/docs/auto-docs/components/OrgSettings/ActionItemCategories/OrgActionItemCategoryMocks/variables/MOCKS_ERROR.md b/docs/docs/auto-docs/components/OrgSettings/ActionItemCategories/OrgActionItemCategoryMocks/variables/MOCKS_ERROR.md deleted file mode 100644 index 83ad60ebe5..0000000000 --- a/docs/docs/auto-docs/components/OrgSettings/ActionItemCategories/OrgActionItemCategoryMocks/variables/MOCKS_ERROR.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../../README.md) - -*** - -[talawa-admin](../../../../../modules.md) / [components/OrgSettings/ActionItemCategories/OrgActionItemCategoryMocks](../README.md) / MOCKS\_ERROR - -# Variable: MOCKS\_ERROR - -> `const` **MOCKS\_ERROR**: (\{ `error`: `Error`; `request`: \{ `query`: `DocumentNode`; `variables`: \{ `actionItemCategoryId`: `undefined`; `isDisabled`: `undefined`; `name`: `undefined`; `orderBy`: `string`; `organizationId`: `string`; `where`: \{ `name_contains`: `string`; \}; \}; \}; \} \| \{ `error`: `Error`; `request`: \{ `query`: `DocumentNode`; `variables`: \{ `actionItemCategoryId`: `undefined`; `isDisabled`: `boolean`; `name`: `string`; `orderBy`: `undefined`; `organizationId`: `string`; `where`: `undefined`; \}; \}; \} \| \{ `error`: `Error`; `request`: \{ `query`: `DocumentNode`; `variables`: \{ `actionItemCategoryId`: `string`; `isDisabled`: `boolean`; `name`: `string`; `orderBy`: `undefined`; `organizationId`: `undefined`; `where`: `undefined`; \}; \}; \})[] - -Defined in: [src/components/OrgSettings/ActionItemCategories/OrgActionItemCategoryMocks.ts:254](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/OrgSettings/ActionItemCategories/OrgActionItemCategoryMocks.ts#L254) diff --git a/docs/docs/auto-docs/components/OrgSettings/AgendaItemCategories/AgendaCategoryCreateModal/README.md b/docs/docs/auto-docs/components/OrgSettings/AgendaItemCategories/AgendaCategoryCreateModal/README.md deleted file mode 100644 index 93cb2dcfd5..0000000000 --- a/docs/docs/auto-docs/components/OrgSettings/AgendaItemCategories/AgendaCategoryCreateModal/README.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / components/OrgSettings/AgendaItemCategories/AgendaCategoryCreateModal - -# components/OrgSettings/AgendaItemCategories/AgendaCategoryCreateModal - -## Functions - -- [default](functions/default.md) diff --git a/docs/docs/auto-docs/components/OrgSettings/AgendaItemCategories/AgendaCategoryCreateModal/functions/default.md b/docs/docs/auto-docs/components/OrgSettings/AgendaItemCategories/AgendaCategoryCreateModal/functions/default.md deleted file mode 100644 index 141d99e508..0000000000 --- a/docs/docs/auto-docs/components/OrgSettings/AgendaItemCategories/AgendaCategoryCreateModal/functions/default.md +++ /dev/null @@ -1,35 +0,0 @@ -[**talawa-admin**](../../../../../README.md) - -*** - -[talawa-admin](../../../../../modules.md) / [components/OrgSettings/AgendaItemCategories/AgendaCategoryCreateModal](../README.md) / default - -# Function: default() - -> **default**(`props`, `deprecatedLegacyContext`?): `ReactNode` - -Defined in: [src/components/OrgSettings/AgendaItemCategories/AgendaCategoryCreateModal.tsx:38](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/OrgSettings/AgendaItemCategories/AgendaCategoryCreateModal.tsx#L38) - -AgendaCategoryCreateModal component is used to create the agenda category details like name, description - -## Parameters - -### props - -`InterfaceAgendaCategoryCreateModalProps` - -### deprecatedLegacyContext? - -`any` - -**Deprecated** - -**See** - -[React Docs](https://legacy.reactjs.org/docs/legacy-context.html#referencing-context-in-lifecycle-methods) - -## Returns - -`ReactNode` - -returns the AgendaCategoryCreateModal component diff --git a/docs/docs/auto-docs/components/OrgSettings/AgendaItemCategories/AgendaCategoryDeleteModal/README.md b/docs/docs/auto-docs/components/OrgSettings/AgendaItemCategories/AgendaCategoryDeleteModal/README.md deleted file mode 100644 index 206ecdb910..0000000000 --- a/docs/docs/auto-docs/components/OrgSettings/AgendaItemCategories/AgendaCategoryDeleteModal/README.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / components/OrgSettings/AgendaItemCategories/AgendaCategoryDeleteModal - -# components/OrgSettings/AgendaItemCategories/AgendaCategoryDeleteModal - -## Functions - -- [default](functions/default.md) diff --git a/docs/docs/auto-docs/components/OrgSettings/AgendaItemCategories/AgendaCategoryDeleteModal/functions/default.md b/docs/docs/auto-docs/components/OrgSettings/AgendaItemCategories/AgendaCategoryDeleteModal/functions/default.md deleted file mode 100644 index 45570c51d7..0000000000 --- a/docs/docs/auto-docs/components/OrgSettings/AgendaItemCategories/AgendaCategoryDeleteModal/functions/default.md +++ /dev/null @@ -1,35 +0,0 @@ -[**talawa-admin**](../../../../../README.md) - -*** - -[talawa-admin](../../../../../modules.md) / [components/OrgSettings/AgendaItemCategories/AgendaCategoryDeleteModal](../README.md) / default - -# Function: default() - -> **default**(`props`, `deprecatedLegacyContext`?): `ReactNode` - -Defined in: [src/components/OrgSettings/AgendaItemCategories/AgendaCategoryDeleteModal.tsx:25](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/OrgSettings/AgendaItemCategories/AgendaCategoryDeleteModal.tsx#L25) - -AgendaCategoryDeleteModal component is used to delete the agenda category - -## Parameters - -### props - -`InterfaceAgendaCategoryDeleteModalProps` - -### deprecatedLegacyContext? - -`any` - -**Deprecated** - -**See** - -[React Docs](https://legacy.reactjs.org/docs/legacy-context.html#referencing-context-in-lifecycle-methods) - -## Returns - -`ReactNode` - -returns the AgendaCategoryDeleteModal component diff --git a/docs/docs/auto-docs/components/OrgSettings/AgendaItemCategories/AgendaCategoryPreviewModal/README.md b/docs/docs/auto-docs/components/OrgSettings/AgendaItemCategories/AgendaCategoryPreviewModal/README.md deleted file mode 100644 index b757415768..0000000000 --- a/docs/docs/auto-docs/components/OrgSettings/AgendaItemCategories/AgendaCategoryPreviewModal/README.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / components/OrgSettings/AgendaItemCategories/AgendaCategoryPreviewModal - -# components/OrgSettings/AgendaItemCategories/AgendaCategoryPreviewModal - -## Functions - -- [default](functions/default.md) diff --git a/docs/docs/auto-docs/components/OrgSettings/AgendaItemCategories/AgendaCategoryPreviewModal/functions/default.md b/docs/docs/auto-docs/components/OrgSettings/AgendaItemCategories/AgendaCategoryPreviewModal/functions/default.md deleted file mode 100644 index 5425268a99..0000000000 --- a/docs/docs/auto-docs/components/OrgSettings/AgendaItemCategories/AgendaCategoryPreviewModal/functions/default.md +++ /dev/null @@ -1,35 +0,0 @@ -[**talawa-admin**](../../../../../README.md) - -*** - -[talawa-admin](../../../../../modules.md) / [components/OrgSettings/AgendaItemCategories/AgendaCategoryPreviewModal](../README.md) / default - -# Function: default() - -> **default**(`props`, `deprecatedLegacyContext`?): `ReactNode` - -Defined in: [src/components/OrgSettings/AgendaItemCategories/AgendaCategoryPreviewModal.tsx:38](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/OrgSettings/AgendaItemCategories/AgendaCategoryPreviewModal.tsx#L38) - -AgendaCategoryPreviewModal component is used to preview the agenda category details like name, description, createdBy - -## Parameters - -### props - -`InterfaceAgendaCategoryPreviewModalProps` - -### deprecatedLegacyContext? - -`any` - -**Deprecated** - -**See** - -[React Docs](https://legacy.reactjs.org/docs/legacy-context.html#referencing-context-in-lifecycle-methods) - -## Returns - -`ReactNode` - -returns the AgendaCategoryPreviewModal component diff --git a/docs/docs/auto-docs/components/OrgSettings/AgendaItemCategories/AgendaCategoryUpdateModal/README.md b/docs/docs/auto-docs/components/OrgSettings/AgendaItemCategories/AgendaCategoryUpdateModal/README.md deleted file mode 100644 index 19b2d6ad70..0000000000 --- a/docs/docs/auto-docs/components/OrgSettings/AgendaItemCategories/AgendaCategoryUpdateModal/README.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / components/OrgSettings/AgendaItemCategories/AgendaCategoryUpdateModal - -# components/OrgSettings/AgendaItemCategories/AgendaCategoryUpdateModal - -## Functions - -- [default](functions/default.md) diff --git a/docs/docs/auto-docs/components/OrgSettings/AgendaItemCategories/AgendaCategoryUpdateModal/functions/default.md b/docs/docs/auto-docs/components/OrgSettings/AgendaItemCategories/AgendaCategoryUpdateModal/functions/default.md deleted file mode 100644 index 0e04807f18..0000000000 --- a/docs/docs/auto-docs/components/OrgSettings/AgendaItemCategories/AgendaCategoryUpdateModal/functions/default.md +++ /dev/null @@ -1,35 +0,0 @@ -[**talawa-admin**](../../../../../README.md) - -*** - -[talawa-admin](../../../../../modules.md) / [components/OrgSettings/AgendaItemCategories/AgendaCategoryUpdateModal](../README.md) / default - -# Function: default() - -> **default**(`props`, `deprecatedLegacyContext`?): `ReactNode` - -Defined in: [src/components/OrgSettings/AgendaItemCategories/AgendaCategoryUpdateModal.tsx:40](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/OrgSettings/AgendaItemCategories/AgendaCategoryUpdateModal.tsx#L40) - -AgendaCategoryUpdateModal component is used to update the agenda category details like name, description - -## Parameters - -### props - -`InterfaceAgendaCategoryUpdateModalProps` - -### deprecatedLegacyContext? - -`any` - -**Deprecated** - -**See** - -[React Docs](https://legacy.reactjs.org/docs/legacy-context.html#referencing-context-in-lifecycle-methods) - -## Returns - -`ReactNode` - -returns the AgendaCategoryUpdateModal component diff --git a/docs/docs/auto-docs/components/OrgSettings/AgendaItemCategories/OrganizationAgendaCategory/README.md b/docs/docs/auto-docs/components/OrgSettings/AgendaItemCategories/OrganizationAgendaCategory/README.md deleted file mode 100644 index c70db04ac7..0000000000 --- a/docs/docs/auto-docs/components/OrgSettings/AgendaItemCategories/OrganizationAgendaCategory/README.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / components/OrgSettings/AgendaItemCategories/OrganizationAgendaCategory - -# components/OrgSettings/AgendaItemCategories/OrganizationAgendaCategory - -## Functions - -- [default](functions/default.md) diff --git a/docs/docs/auto-docs/components/OrgSettings/AgendaItemCategories/OrganizationAgendaCategory/functions/default.md b/docs/docs/auto-docs/components/OrgSettings/AgendaItemCategories/OrganizationAgendaCategory/functions/default.md deleted file mode 100644 index 8683bd254c..0000000000 --- a/docs/docs/auto-docs/components/OrgSettings/AgendaItemCategories/OrganizationAgendaCategory/functions/default.md +++ /dev/null @@ -1,37 +0,0 @@ -[**talawa-admin**](../../../../../README.md) - -*** - -[talawa-admin](../../../../../modules.md) / [components/OrgSettings/AgendaItemCategories/OrganizationAgendaCategory](../README.md) / default - -# Function: default() - -> **default**(`props`, `deprecatedLegacyContext`?): `ReactNode` - -Defined in: [src/components/OrgSettings/AgendaItemCategories/OrganizationAgendaCategory.tsx:31](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/OrgSettings/AgendaItemCategories/OrganizationAgendaCategory.tsx#L31) - -Component for managing and displaying agenda item categories within an organization. - -This component allows users to view, create, and manage agenda item categories. It includes functionality for displaying categories, handling creation, and managing modal visibility. - -## Parameters - -### props - -`InterfaceAgendaCategoryProps` - -### deprecatedLegacyContext? - -`any` - -**Deprecated** - -**See** - -[React Docs](https://legacy.reactjs.org/docs/legacy-context.html#referencing-context-in-lifecycle-methods) - -## Returns - -`ReactNode` - -The rendered component. diff --git a/docs/docs/auto-docs/components/OrgSettings/AgendaItemCategories/OrganizationAgendaCategoryErrorMocks/README.md b/docs/docs/auto-docs/components/OrgSettings/AgendaItemCategories/OrganizationAgendaCategoryErrorMocks/README.md deleted file mode 100644 index 170de04bd0..0000000000 --- a/docs/docs/auto-docs/components/OrgSettings/AgendaItemCategories/OrganizationAgendaCategoryErrorMocks/README.md +++ /dev/null @@ -1,12 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / components/OrgSettings/AgendaItemCategories/OrganizationAgendaCategoryErrorMocks - -# components/OrgSettings/AgendaItemCategories/OrganizationAgendaCategoryErrorMocks - -## Variables - -- [MOCKS\_ERROR\_AGENDA\_ITEM\_CATEGORY\_LIST\_QUERY](variables/MOCKS_ERROR_AGENDA_ITEM_CATEGORY_LIST_QUERY.md) -- [MOCKS\_ERROR\_MUTATION](variables/MOCKS_ERROR_MUTATION.md) diff --git a/docs/docs/auto-docs/components/OrgSettings/AgendaItemCategories/OrganizationAgendaCategoryErrorMocks/variables/MOCKS_ERROR_AGENDA_ITEM_CATEGORY_LIST_QUERY.md b/docs/docs/auto-docs/components/OrgSettings/AgendaItemCategories/OrganizationAgendaCategoryErrorMocks/variables/MOCKS_ERROR_AGENDA_ITEM_CATEGORY_LIST_QUERY.md deleted file mode 100644 index da78e8d529..0000000000 --- a/docs/docs/auto-docs/components/OrgSettings/AgendaItemCategories/OrganizationAgendaCategoryErrorMocks/variables/MOCKS_ERROR_AGENDA_ITEM_CATEGORY_LIST_QUERY.md +++ /dev/null @@ -1,41 +0,0 @@ -[**talawa-admin**](../../../../../README.md) - -*** - -[talawa-admin](../../../../../modules.md) / [components/OrgSettings/AgendaItemCategories/OrganizationAgendaCategoryErrorMocks](../README.md) / MOCKS\_ERROR\_AGENDA\_ITEM\_CATEGORY\_LIST\_QUERY - -# Variable: MOCKS\_ERROR\_AGENDA\_ITEM\_CATEGORY\_LIST\_QUERY - -> `const` **MOCKS\_ERROR\_AGENDA\_ITEM\_CATEGORY\_LIST\_QUERY**: `object`[] - -Defined in: [src/components/OrgSettings/AgendaItemCategories/OrganizationAgendaCategoryErrorMocks.ts:5](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/OrgSettings/AgendaItemCategories/OrganizationAgendaCategoryErrorMocks.ts#L5) - -## Type declaration - -### error - -> **error**: `Error` - -### request - -> **request**: `object` - -#### request.query - -> **query**: `DocumentNode` = `AGENDA_ITEM_CATEGORY_LIST` - -#### request.variables - -> **variables**: `object` - -#### request.variables.organizationId - -> **organizationId**: `string` = `'123'` - -#### request.variables.where - -> **where**: `object` - -#### request.variables.where.name\_contains - -> **name\_contains**: `string` = `''` diff --git a/docs/docs/auto-docs/components/OrgSettings/AgendaItemCategories/OrganizationAgendaCategoryErrorMocks/variables/MOCKS_ERROR_MUTATION.md b/docs/docs/auto-docs/components/OrgSettings/AgendaItemCategories/OrganizationAgendaCategoryErrorMocks/variables/MOCKS_ERROR_MUTATION.md deleted file mode 100644 index e35fcf2e68..0000000000 --- a/docs/docs/auto-docs/components/OrgSettings/AgendaItemCategories/OrganizationAgendaCategoryErrorMocks/variables/MOCKS_ERROR_MUTATION.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../../README.md) - -*** - -[talawa-admin](../../../../../modules.md) / [components/OrgSettings/AgendaItemCategories/OrganizationAgendaCategoryErrorMocks](../README.md) / MOCKS\_ERROR\_MUTATION - -# Variable: MOCKS\_ERROR\_MUTATION - -> `const` **MOCKS\_ERROR\_MUTATION**: (\{ `error`: `undefined`; `request`: \{ `query`: `DocumentNode`; `variables`: \{ `input`: `undefined`; `organizationId`: `string`; `where`: \{ `name_contains`: `string`; \}; \}; \}; `result`: \{ `data`: \{ `agendaItemCategoriesByOrganization`: `object`[]; \}; \}; \} \| \{ `error`: `Error`; `request`: \{ `query`: `DocumentNode`; `variables`: \{ `input`: \{ `description`: `string`; `name`: `string`; `organizationId`: `string`; \}; `organizationId`: `undefined`; `where`: `undefined`; \}; \}; `result`: `undefined`; \})[] - -Defined in: [src/components/OrgSettings/AgendaItemCategories/OrganizationAgendaCategoryErrorMocks.ts:20](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/OrgSettings/AgendaItemCategories/OrganizationAgendaCategoryErrorMocks.ts#L20) diff --git a/docs/docs/auto-docs/components/OrgSettings/AgendaItemCategories/OrganizationAgendaCategoryMocks/README.md b/docs/docs/auto-docs/components/OrgSettings/AgendaItemCategories/OrganizationAgendaCategoryMocks/README.md deleted file mode 100644 index 6abcadf0c7..0000000000 --- a/docs/docs/auto-docs/components/OrgSettings/AgendaItemCategories/OrganizationAgendaCategoryMocks/README.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / components/OrgSettings/AgendaItemCategories/OrganizationAgendaCategoryMocks - -# components/OrgSettings/AgendaItemCategories/OrganizationAgendaCategoryMocks - -## Variables - -- [MOCKS](variables/MOCKS.md) diff --git a/docs/docs/auto-docs/components/OrgSettings/AgendaItemCategories/OrganizationAgendaCategoryMocks/variables/MOCKS.md b/docs/docs/auto-docs/components/OrgSettings/AgendaItemCategories/OrganizationAgendaCategoryMocks/variables/MOCKS.md deleted file mode 100644 index ad703733ed..0000000000 --- a/docs/docs/auto-docs/components/OrgSettings/AgendaItemCategories/OrganizationAgendaCategoryMocks/variables/MOCKS.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../../README.md) - -*** - -[talawa-admin](../../../../../modules.md) / [components/OrgSettings/AgendaItemCategories/OrganizationAgendaCategoryMocks](../README.md) / MOCKS - -# Variable: MOCKS - -> `const` **MOCKS**: (\{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `input`: `undefined`; `organizationId`: `string`; `where`: \{ `name_contains`: `string`; \}; \}; \}; `result`: \{ `data`: \{ `agendaItemCategoriesByOrganization`: `object`[]; `createAgendaCategory`: `undefined`; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `input`: \{ `description`: `string`; `name`: `string`; `organizationId`: `string`; \}; `organizationId`: `undefined`; `where`: `undefined`; \}; \}; `result`: \{ `data`: \{ `agendaItemCategoriesByOrganization`: `undefined`; `createAgendaCategory`: \{ `_id`: `string`; \}; \}; \}; \})[] - -Defined in: [src/components/OrgSettings/AgendaItemCategories/OrganizationAgendaCategoryMocks.ts:5](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/OrgSettings/AgendaItemCategories/OrganizationAgendaCategoryMocks.ts#L5) diff --git a/docs/docs/auto-docs/components/OrgSettings/General/DeleteOrg/DeleteOrg/README.md b/docs/docs/auto-docs/components/OrgSettings/General/DeleteOrg/DeleteOrg/README.md deleted file mode 100644 index 2930197acf..0000000000 --- a/docs/docs/auto-docs/components/OrgSettings/General/DeleteOrg/DeleteOrg/README.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../../README.md) - -*** - -[talawa-admin](../../../../../modules.md) / components/OrgSettings/General/DeleteOrg/DeleteOrg - -# components/OrgSettings/General/DeleteOrg/DeleteOrg - -## Functions - -- [default](functions/default.md) diff --git a/docs/docs/auto-docs/components/OrgSettings/General/DeleteOrg/DeleteOrg/functions/default.md b/docs/docs/auto-docs/components/OrgSettings/General/DeleteOrg/DeleteOrg/functions/default.md deleted file mode 100644 index 432039996a..0000000000 --- a/docs/docs/auto-docs/components/OrgSettings/General/DeleteOrg/DeleteOrg/functions/default.md +++ /dev/null @@ -1,24 +0,0 @@ -[**talawa-admin**](../../../../../../README.md) - -*** - -[talawa-admin](../../../../../../modules.md) / [components/OrgSettings/General/DeleteOrg/DeleteOrg](../README.md) / default - -# Function: default() - -> **default**(): `JSX.Element` - -Defined in: [src/components/OrgSettings/General/DeleteOrg/DeleteOrg.tsx:26](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/OrgSettings/General/DeleteOrg/DeleteOrg.tsx#L26) - -A component for deleting an organization. - -It displays a card with a delete button. When the delete button is clicked, -a modal appears asking for confirmation. Depending on the type of organization -(sample or regular), it performs the delete operation and shows appropriate -success or error messages. - -## Returns - -`JSX.Element` - -JSX.Element - The rendered component with delete functionality. diff --git a/docs/docs/auto-docs/components/OrgSettings/General/GeneralSettings/README.md b/docs/docs/auto-docs/components/OrgSettings/General/GeneralSettings/README.md deleted file mode 100644 index 94753fd6ad..0000000000 --- a/docs/docs/auto-docs/components/OrgSettings/General/GeneralSettings/README.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / components/OrgSettings/General/GeneralSettings - -# components/OrgSettings/General/GeneralSettings - -## Functions - -- [default](functions/default.md) diff --git a/docs/docs/auto-docs/components/OrgSettings/General/GeneralSettings/functions/default.md b/docs/docs/auto-docs/components/OrgSettings/General/GeneralSettings/functions/default.md deleted file mode 100644 index 497991bc8d..0000000000 --- a/docs/docs/auto-docs/components/OrgSettings/General/GeneralSettings/functions/default.md +++ /dev/null @@ -1,37 +0,0 @@ -[**talawa-admin**](../../../../../README.md) - -*** - -[talawa-admin](../../../../../modules.md) / [components/OrgSettings/General/GeneralSettings](../README.md) / default - -# Function: default() - -> **default**(`props`, `deprecatedLegacyContext`?): `ReactNode` - -Defined in: [src/components/OrgSettings/General/GeneralSettings.tsx:23](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/OrgSettings/General/GeneralSettings.tsx#L23) - -A component for displaying general settings for an organization. - -## Parameters - -### props - -`InterfaceGeneralSettingsProps` - -The properties passed to the component. - -### deprecatedLegacyContext? - -`any` - -**Deprecated** - -**See** - -[React Docs](https://legacy.reactjs.org/docs/legacy-context.html#referencing-context-in-lifecycle-methods) - -## Returns - -`ReactNode` - -The `GeneralSettings` component. diff --git a/docs/docs/auto-docs/components/OrgSettings/General/OrgProfileFieldSettings/OrgProfileFieldSettings/README.md b/docs/docs/auto-docs/components/OrgSettings/General/OrgProfileFieldSettings/OrgProfileFieldSettings/README.md deleted file mode 100644 index da8152d8d2..0000000000 --- a/docs/docs/auto-docs/components/OrgSettings/General/OrgProfileFieldSettings/OrgProfileFieldSettings/README.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../../README.md) - -*** - -[talawa-admin](../../../../../modules.md) / components/OrgSettings/General/OrgProfileFieldSettings/OrgProfileFieldSettings - -# components/OrgSettings/General/OrgProfileFieldSettings/OrgProfileFieldSettings - -## Functions - -- [default](functions/default.md) diff --git a/docs/docs/auto-docs/components/OrgSettings/General/OrgProfileFieldSettings/OrgProfileFieldSettings/functions/default.md b/docs/docs/auto-docs/components/OrgSettings/General/OrgProfileFieldSettings/OrgProfileFieldSettings/functions/default.md deleted file mode 100644 index 3580ecd3c6..0000000000 --- a/docs/docs/auto-docs/components/OrgSettings/General/OrgProfileFieldSettings/OrgProfileFieldSettings/functions/default.md +++ /dev/null @@ -1,22 +0,0 @@ -[**talawa-admin**](../../../../../../README.md) - -*** - -[talawa-admin](../../../../../../modules.md) / [components/OrgSettings/General/OrgProfileFieldSettings/OrgProfileFieldSettings](../README.md) / default - -# Function: default() - -> **default**(): `Element` - -Defined in: [src/components/OrgSettings/General/OrgProfileFieldSettings/OrgProfileFieldSettings.tsx:26](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/OrgSettings/General/OrgProfileFieldSettings/OrgProfileFieldSettings.tsx#L26) - -Component for managing organization profile field settings - -This component allows adding and removing custom fields for an organization. -It displays existing custom fields and provides a form to add new fields. - -## Returns - -`Element` - -JSX.Element representing the organization profile field settings diff --git a/docs/docs/auto-docs/components/OrgSettings/General/OrgUpdate/OrgUpdate/README.md b/docs/docs/auto-docs/components/OrgSettings/General/OrgUpdate/OrgUpdate/README.md deleted file mode 100644 index 3021f67a45..0000000000 --- a/docs/docs/auto-docs/components/OrgSettings/General/OrgUpdate/OrgUpdate/README.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../../README.md) - -*** - -[talawa-admin](../../../../../modules.md) / components/OrgSettings/General/OrgUpdate/OrgUpdate - -# components/OrgSettings/General/OrgUpdate/OrgUpdate - -## Functions - -- [default](functions/default.md) diff --git a/docs/docs/auto-docs/components/OrgSettings/General/OrgUpdate/OrgUpdate/functions/default.md b/docs/docs/auto-docs/components/OrgSettings/General/OrgUpdate/OrgUpdate/functions/default.md deleted file mode 100644 index f5783b16ac..0000000000 --- a/docs/docs/auto-docs/components/OrgSettings/General/OrgUpdate/OrgUpdate/functions/default.md +++ /dev/null @@ -1,31 +0,0 @@ -[**talawa-admin**](../../../../../../README.md) - -*** - -[talawa-admin](../../../../../../modules.md) / [components/OrgSettings/General/OrgUpdate/OrgUpdate](../README.md) / default - -# Function: default() - -> **default**(`props`): `JSX.Element` - -Defined in: [src/components/OrgSettings/General/OrgUpdate/OrgUpdate.tsx:36](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/OrgSettings/General/OrgUpdate/OrgUpdate.tsx#L36) - -Component for updating organization details. - -This component allows users to update the organization's name, description, address, -visibility settings, and upload an image. It uses GraphQL mutations and queries to -fetch and update data. - -## Parameters - -### props - -`InterfaceOrgUpdateProps` - -Component props containing the organization ID. - -## Returns - -`JSX.Element` - -The rendered component. diff --git a/docs/docs/auto-docs/components/OrgSettings/General/OrgUpdate/OrgUpdateMocks/README.md b/docs/docs/auto-docs/components/OrgSettings/General/OrgUpdate/OrgUpdateMocks/README.md deleted file mode 100644 index aec709b65b..0000000000 --- a/docs/docs/auto-docs/components/OrgSettings/General/OrgUpdate/OrgUpdateMocks/README.md +++ /dev/null @@ -1,13 +0,0 @@ -[**talawa-admin**](../../../../../README.md) - -*** - -[talawa-admin](../../../../../modules.md) / components/OrgSettings/General/OrgUpdate/OrgUpdateMocks - -# components/OrgSettings/General/OrgUpdate/OrgUpdateMocks - -## Variables - -- [MOCKS](variables/MOCKS.md) -- [MOCKS\_ERROR\_ORGLIST](variables/MOCKS_ERROR_ORGLIST.md) -- [MOCKS\_ERROR\_UPDATE\_ORGLIST](variables/MOCKS_ERROR_UPDATE_ORGLIST.md) diff --git a/docs/docs/auto-docs/components/OrgSettings/General/OrgUpdate/OrgUpdateMocks/variables/MOCKS.md b/docs/docs/auto-docs/components/OrgSettings/General/OrgUpdate/OrgUpdateMocks/variables/MOCKS.md deleted file mode 100644 index c5705c4d56..0000000000 --- a/docs/docs/auto-docs/components/OrgSettings/General/OrgUpdate/OrgUpdateMocks/variables/MOCKS.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../../../README.md) - -*** - -[talawa-admin](../../../../../../modules.md) / [components/OrgSettings/General/OrgUpdate/OrgUpdateMocks](../README.md) / MOCKS - -# Variable: MOCKS - -> `const` **MOCKS**: (\{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `address`: `undefined`; `description`: `undefined`; `id`: `string`; `image`: `undefined`; `name`: `undefined`; `userRegistrationRequired`: `undefined`; `visibleInSearch`: `undefined`; \}; \}; `result`: \{ `data`: \{ `organizations`: `object`[]; `updateOrganization`: `undefined`; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `address`: \{ `city`: `string`; `countryCode`: `string`; `dependentLocality`: `string`; `line1`: `string`; `line2`: `string`; `postalCode`: `string`; `sortingCode`: `string`; `state`: `string`; \}; `description`: `string`; `id`: `string`; `image`: `File`; `name`: `string`; `userRegistrationRequired`: `boolean`; `visibleInSearch`: `boolean`; \}; \}; `result`: \{ `data`: \{ `organizations`: `undefined`; `updateOrganization`: \{ `_id`: `string`; `address`: \{ `city`: `string`; `countryCode`: `string`; `dependentLocality`: `string`; `line1`: `string`; `line2`: `string`; `postalCode`: `string`; `sortingCode`: `string`; `state`: `string`; \}; `description`: `string`; `name`: `string`; `userRegistrationRequired`: `boolean`; `visibleInSearch`: `boolean`; \}; \}; \}; \})[] - -Defined in: [src/components/OrgSettings/General/OrgUpdate/OrgUpdateMocks.ts:4](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/OrgSettings/General/OrgUpdate/OrgUpdateMocks.ts#L4) diff --git a/docs/docs/auto-docs/components/OrgSettings/General/OrgUpdate/OrgUpdateMocks/variables/MOCKS_ERROR_ORGLIST.md b/docs/docs/auto-docs/components/OrgSettings/General/OrgUpdate/OrgUpdateMocks/variables/MOCKS_ERROR_ORGLIST.md deleted file mode 100644 index 56d0680070..0000000000 --- a/docs/docs/auto-docs/components/OrgSettings/General/OrgUpdate/OrgUpdateMocks/variables/MOCKS_ERROR_ORGLIST.md +++ /dev/null @@ -1,33 +0,0 @@ -[**talawa-admin**](../../../../../../README.md) - -*** - -[talawa-admin](../../../../../../modules.md) / [components/OrgSettings/General/OrgUpdate/OrgUpdateMocks](../README.md) / MOCKS\_ERROR\_ORGLIST - -# Variable: MOCKS\_ERROR\_ORGLIST - -> `const` **MOCKS\_ERROR\_ORGLIST**: `object`[] - -Defined in: [src/components/OrgSettings/General/OrgUpdate/OrgUpdateMocks.ts:110](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/OrgSettings/General/OrgUpdate/OrgUpdateMocks.ts#L110) - -## Type declaration - -### error - -> **error**: `Error` - -### request - -> **request**: `object` - -#### request.query - -> **query**: `DocumentNode` = `ORGANIZATIONS_LIST` - -#### request.variables - -> **variables**: `object` - -#### request.variables.id - -> **id**: `string` = `'123'` diff --git a/docs/docs/auto-docs/components/OrgSettings/General/OrgUpdate/OrgUpdateMocks/variables/MOCKS_ERROR_UPDATE_ORGLIST.md b/docs/docs/auto-docs/components/OrgSettings/General/OrgUpdate/OrgUpdateMocks/variables/MOCKS_ERROR_UPDATE_ORGLIST.md deleted file mode 100644 index b4b1d4a96c..0000000000 --- a/docs/docs/auto-docs/components/OrgSettings/General/OrgUpdate/OrgUpdateMocks/variables/MOCKS_ERROR_UPDATE_ORGLIST.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../../../README.md) - -*** - -[talawa-admin](../../../../../../modules.md) / [components/OrgSettings/General/OrgUpdate/OrgUpdateMocks](../README.md) / MOCKS\_ERROR\_UPDATE\_ORGLIST - -# Variable: MOCKS\_ERROR\_UPDATE\_ORGLIST - -> `const` **MOCKS\_ERROR\_UPDATE\_ORGLIST**: (\{ `erorr`: `undefined`; `request`: \{ `query`: `DocumentNode`; `variables`: \{ `address`: `undefined`; `description`: `undefined`; `id`: `string`; `image`: `undefined`; `name`: `undefined`; `userRegistrationRequired`: `undefined`; `visibleInSearch`: `undefined`; \}; \}; `result`: \{ `data`: \{ `organizations`: `object`[]; \}; \}; \} \| \{ `erorr`: `Error`; `request`: \{ `query`: `DocumentNode`; `variables`: \{ `address`: \{ `city`: `string`; `countryCode`: `string`; `dependentLocality`: `string`; `line1`: `string`; `line2`: `string`; `postalCode`: `string`; `sortingCode`: `string`; `state`: `string`; \}; `description`: `string`; `id`: `string`; `image`: `File`; `name`: `string`; `userRegistrationRequired`: `boolean`; `visibleInSearch`: `boolean`; \}; \}; `result`: `undefined`; \})[] - -Defined in: [src/components/OrgSettings/General/OrgUpdate/OrgUpdateMocks.ts:120](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/OrgSettings/General/OrgUpdate/OrgUpdateMocks.ts#L120) diff --git a/docs/docs/auto-docs/components/OrganizationCard/OrganizationCard/README.md b/docs/docs/auto-docs/components/OrganizationCard/OrganizationCard/README.md deleted file mode 100644 index fb6c91285d..0000000000 --- a/docs/docs/auto-docs/components/OrganizationCard/OrganizationCard/README.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / components/OrganizationCard/OrganizationCard - -# components/OrganizationCard/OrganizationCard - -## Functions - -- [default](functions/default.md) diff --git a/docs/docs/auto-docs/components/OrganizationCard/OrganizationCard/functions/default.md b/docs/docs/auto-docs/components/OrganizationCard/OrganizationCard/functions/default.md deleted file mode 100644 index b982850881..0000000000 --- a/docs/docs/auto-docs/components/OrganizationCard/OrganizationCard/functions/default.md +++ /dev/null @@ -1,27 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [components/OrganizationCard/OrganizationCard](../README.md) / default - -# Function: default() - -> **default**(`props`): `JSX.Element` - -Defined in: [src/components/OrganizationCard/OrganizationCard.tsx:18](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/OrganizationCard/OrganizationCard.tsx#L18) - -Component to display an organization's card with its image and owner details. - -## Parameters - -### props - -`InterfaceOrganizationCardProps` - -Properties for the organization card. - -## Returns - -`JSX.Element` - -JSX element representing the organization card. diff --git a/docs/docs/auto-docs/components/OrganizationCardStart/OrganizationCardStart/README.md b/docs/docs/auto-docs/components/OrganizationCardStart/OrganizationCardStart/README.md deleted file mode 100644 index bdb5ef1f8b..0000000000 --- a/docs/docs/auto-docs/components/OrganizationCardStart/OrganizationCardStart/README.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / components/OrganizationCardStart/OrganizationCardStart - -# components/OrganizationCardStart/OrganizationCardStart - -## Functions - -- [default](functions/default.md) diff --git a/docs/docs/auto-docs/components/OrganizationCardStart/OrganizationCardStart/functions/default.md b/docs/docs/auto-docs/components/OrganizationCardStart/OrganizationCardStart/functions/default.md deleted file mode 100644 index c433b03402..0000000000 --- a/docs/docs/auto-docs/components/OrganizationCardStart/OrganizationCardStart/functions/default.md +++ /dev/null @@ -1,25 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [components/OrganizationCardStart/OrganizationCardStart](../README.md) / default - -# Function: default() - -> **default**(`props`): `JSX.Element` - -Defined in: [src/components/OrganizationCardStart/OrganizationCardStart.tsx:18](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/OrganizationCardStart/OrganizationCardStart.tsx#L18) - -Component to display a simplified card for an organization. - -## Parameters - -### props - -`InterfaceOrganizationCardStartProps` - -## Returns - -`JSX.Element` - -JSX element representing the organization card. diff --git a/docs/docs/auto-docs/components/OrganizationDashCards/CardItem/README.md b/docs/docs/auto-docs/components/OrganizationDashCards/CardItem/README.md deleted file mode 100644 index 85c9fc2dc0..0000000000 --- a/docs/docs/auto-docs/components/OrganizationDashCards/CardItem/README.md +++ /dev/null @@ -1,15 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / components/OrganizationDashCards/CardItem - -# components/OrganizationDashCards/CardItem - -## Interfaces - -- [InterfaceCardItem](interfaces/InterfaceCardItem.md) - -## Functions - -- [default](functions/default.md) diff --git a/docs/docs/auto-docs/components/OrganizationDashCards/CardItem/functions/default.md b/docs/docs/auto-docs/components/OrganizationDashCards/CardItem/functions/default.md deleted file mode 100644 index 5dee42713f..0000000000 --- a/docs/docs/auto-docs/components/OrganizationDashCards/CardItem/functions/default.md +++ /dev/null @@ -1,27 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [components/OrganizationDashCards/CardItem](../README.md) / default - -# Function: default() - -> **default**(`props`): `Element` - -Defined in: [src/components/OrganizationDashCards/CardItem.tsx:35](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/OrganizationDashCards/CardItem.tsx#L35) - -Component to display a card item with various types such as Event, Post, or MembershipRequest. - -## Parameters - -### props - -[`InterfaceCardItem`](../interfaces/InterfaceCardItem.md) - -Props for the CardItem component. - -## Returns - -`Element` - -JSX element representing the card item. diff --git a/docs/docs/auto-docs/components/OrganizationDashCards/CardItem/interfaces/InterfaceCardItem.md b/docs/docs/auto-docs/components/OrganizationDashCards/CardItem/interfaces/InterfaceCardItem.md deleted file mode 100644 index 5ed41ede3e..0000000000 --- a/docs/docs/auto-docs/components/OrganizationDashCards/CardItem/interfaces/InterfaceCardItem.md +++ /dev/null @@ -1,83 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [components/OrganizationDashCards/CardItem](../README.md) / InterfaceCardItem - -# Interface: InterfaceCardItem - -Defined in: [src/components/OrganizationDashCards/CardItem.tsx:14](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/OrganizationDashCards/CardItem.tsx#L14) - -Interface for the CardItem component's props. - -## Properties - -### creator? - -> `optional` **creator**: `object` - -Defined in: [src/components/OrganizationDashCards/CardItem.tsx:20](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/OrganizationDashCards/CardItem.tsx#L20) - -#### \_id - -> **\_id**: `string` - -#### email - -> **email**: `string` - -#### firstName - -> **firstName**: `string` - -#### lastName - -> **lastName**: `string` - -*** - -### enddate? - -> `optional` **enddate**: `string` - -Defined in: [src/components/OrganizationDashCards/CardItem.tsx:19](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/OrganizationDashCards/CardItem.tsx#L19) - -*** - -### location? - -> `optional` **location**: `string` - -Defined in: [src/components/OrganizationDashCards/CardItem.tsx:26](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/OrganizationDashCards/CardItem.tsx#L26) - -*** - -### startdate? - -> `optional` **startdate**: `string` - -Defined in: [src/components/OrganizationDashCards/CardItem.tsx:18](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/OrganizationDashCards/CardItem.tsx#L18) - -*** - -### time? - -> `optional` **time**: `string` - -Defined in: [src/components/OrganizationDashCards/CardItem.tsx:17](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/OrganizationDashCards/CardItem.tsx#L17) - -*** - -### title - -> **title**: `string` - -Defined in: [src/components/OrganizationDashCards/CardItem.tsx:16](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/OrganizationDashCards/CardItem.tsx#L16) - -*** - -### type - -> **type**: `"Event"` \| `"Post"` \| `"MembershipRequest"` - -Defined in: [src/components/OrganizationDashCards/CardItem.tsx:15](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/OrganizationDashCards/CardItem.tsx#L15) diff --git a/docs/docs/auto-docs/components/OrganizationDashCards/CardItemLoading/README.md b/docs/docs/auto-docs/components/OrganizationDashCards/CardItemLoading/README.md deleted file mode 100644 index af5a47e20e..0000000000 --- a/docs/docs/auto-docs/components/OrganizationDashCards/CardItemLoading/README.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / components/OrganizationDashCards/CardItemLoading - -# components/OrganizationDashCards/CardItemLoading - -## Functions - -- [default](functions/default.md) diff --git a/docs/docs/auto-docs/components/OrganizationDashCards/CardItemLoading/functions/default.md b/docs/docs/auto-docs/components/OrganizationDashCards/CardItemLoading/functions/default.md deleted file mode 100644 index f31fe41e73..0000000000 --- a/docs/docs/auto-docs/components/OrganizationDashCards/CardItemLoading/functions/default.md +++ /dev/null @@ -1,19 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [components/OrganizationDashCards/CardItemLoading](../README.md) / default - -# Function: default() - -> **default**(): `Element` - -Defined in: [src/components/OrganizationDashCards/CardItemLoading.tsx:8](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/OrganizationDashCards/CardItemLoading.tsx#L8) - -CardItemLoading component is a loading state for the card item. It is used when the data is being fetched. - -## Returns - -`Element` - -JSX.Element diff --git a/docs/docs/auto-docs/components/OrganizationDashCards/DashboardCard/README.md b/docs/docs/auto-docs/components/OrganizationDashCards/DashboardCard/README.md deleted file mode 100644 index c966d0184c..0000000000 --- a/docs/docs/auto-docs/components/OrganizationDashCards/DashboardCard/README.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / components/OrganizationDashCards/DashboardCard - -# components/OrganizationDashCards/DashboardCard - -## Functions - -- [default](functions/default.md) diff --git a/docs/docs/auto-docs/components/OrganizationDashCards/DashboardCard/functions/default.md b/docs/docs/auto-docs/components/OrganizationDashCards/DashboardCard/functions/default.md deleted file mode 100644 index 22eddcd490..0000000000 --- a/docs/docs/auto-docs/components/OrganizationDashCards/DashboardCard/functions/default.md +++ /dev/null @@ -1,35 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [components/OrganizationDashCards/DashboardCard](../README.md) / default - -# Function: default() - -> **default**(`props`): `Element` - -Defined in: [src/components/OrganizationDashCards/DashboardCard.tsx:13](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/OrganizationDashCards/DashboardCard.tsx#L13) - -Dashboard card component is used to display the card with icon, title and count. - -## Parameters - -### props - -#### count - -`number` - -#### icon - -`ReactNode` - -#### title - -`string` - -## Returns - -`Element` - -Dashboard card component diff --git a/docs/docs/auto-docs/components/OrganizationDashCards/DashboardCardLoading/README.md b/docs/docs/auto-docs/components/OrganizationDashCards/DashboardCardLoading/README.md deleted file mode 100644 index 0229ba496b..0000000000 --- a/docs/docs/auto-docs/components/OrganizationDashCards/DashboardCardLoading/README.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / components/OrganizationDashCards/DashboardCardLoading - -# components/OrganizationDashCards/DashboardCardLoading - -## Functions - -- [default](functions/default.md) diff --git a/docs/docs/auto-docs/components/OrganizationDashCards/DashboardCardLoading/functions/default.md b/docs/docs/auto-docs/components/OrganizationDashCards/DashboardCardLoading/functions/default.md deleted file mode 100644 index 6fab6157d9..0000000000 --- a/docs/docs/auto-docs/components/OrganizationDashCards/DashboardCardLoading/functions/default.md +++ /dev/null @@ -1,19 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [components/OrganizationDashCards/DashboardCardLoading](../README.md) / default - -# Function: default() - -> **default**(): `Element` - -Defined in: [src/components/OrganizationDashCards/DashboardCardLoading.tsx:10](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/OrganizationDashCards/DashboardCardLoading.tsx#L10) - -Dashboard card loading component is a loading state for the dashboard card. It is used when the data is being fetched. - -## Returns - -`Element` - -JSX.Element diff --git a/docs/docs/auto-docs/components/OrganizationScreen/OrganizationScreen/README.md b/docs/docs/auto-docs/components/OrganizationScreen/OrganizationScreen/README.md deleted file mode 100644 index f69f4d0dd9..0000000000 --- a/docs/docs/auto-docs/components/OrganizationScreen/OrganizationScreen/README.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / components/OrganizationScreen/OrganizationScreen - -# components/OrganizationScreen/OrganizationScreen - -## Functions - -- [default](functions/default.md) diff --git a/docs/docs/auto-docs/components/OrganizationScreen/OrganizationScreen/functions/default.md b/docs/docs/auto-docs/components/OrganizationScreen/OrganizationScreen/functions/default.md deleted file mode 100644 index 0cb2aead04..0000000000 --- a/docs/docs/auto-docs/components/OrganizationScreen/OrganizationScreen/functions/default.md +++ /dev/null @@ -1,24 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [components/OrganizationScreen/OrganizationScreen](../README.md) / default - -# Function: default() - -> **default**(): `Element` - -Defined in: [src/components/OrganizationScreen/OrganizationScreen.tsx:37](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/OrganizationScreen/OrganizationScreen.tsx#L37) - -Component for the organization screen - -This component displays the organization screen and handles the layout -including a side drawer, header, and main content area. It adjusts -the layout based on the screen size and shows the appropriate content -based on the route. - -## Returns - -`Element` - -JSX.Element representing the organization screen diff --git a/docs/docs/auto-docs/components/Pagination/Pagination/README.md b/docs/docs/auto-docs/components/Pagination/Pagination/README.md deleted file mode 100644 index e4478da85f..0000000000 --- a/docs/docs/auto-docs/components/Pagination/Pagination/README.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / components/Pagination/Pagination - -# components/Pagination/Pagination - -## Functions - -- [default](functions/default.md) diff --git a/docs/docs/auto-docs/components/Pagination/Pagination/functions/default.md b/docs/docs/auto-docs/components/Pagination/Pagination/functions/default.md deleted file mode 100644 index f949fe4af4..0000000000 --- a/docs/docs/auto-docs/components/Pagination/Pagination/functions/default.md +++ /dev/null @@ -1,31 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [components/Pagination/Pagination](../README.md) / default - -# Function: default() - -> **default**(`props`): `JSX.Element` - -Defined in: [src/components/Pagination/Pagination.tsx:30](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/Pagination/Pagination.tsx#L30) - -Pagination component for navigating between pages in a table. - -This component provides buttons to navigate to the first page, previous page, -next page, and last page of a table. The visibility and functionality of the -buttons are controlled based on the current page and the total number of items. - -## Parameters - -### props - -`InterfaceTablePaginationActionsProps` - -Component properties. - -## Returns - -`JSX.Element` - -The rendered component. diff --git a/docs/docs/auto-docs/components/PaginationList/PaginationList/README.md b/docs/docs/auto-docs/components/PaginationList/PaginationList/README.md deleted file mode 100644 index 97e958ec2f..0000000000 --- a/docs/docs/auto-docs/components/PaginationList/PaginationList/README.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / components/PaginationList/PaginationList - -# components/PaginationList/PaginationList - -## Functions - -- [default](functions/default.md) diff --git a/docs/docs/auto-docs/components/PaginationList/PaginationList/functions/default.md b/docs/docs/auto-docs/components/PaginationList/PaginationList/functions/default.md deleted file mode 100644 index cfe5bfc128..0000000000 --- a/docs/docs/auto-docs/components/PaginationList/PaginationList/functions/default.md +++ /dev/null @@ -1,24 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [components/PaginationList/PaginationList](../README.md) / default - -# Function: default() - -> **default**(`__namedParameters`): `Element` - -Defined in: [src/components/PaginationList/PaginationList.tsx:31](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/PaginationList/PaginationList.tsx#L31) - -A component that provides pagination controls for a table. -It uses different pagination styles based on screen size. - -## Parameters - -### \_\_namedParameters - -`InterfacePropsInterface` - -## Returns - -`Element` diff --git a/docs/docs/auto-docs/components/ProfileDropdown/ProfileDropdown/README.md b/docs/docs/auto-docs/components/ProfileDropdown/ProfileDropdown/README.md deleted file mode 100644 index 7730f4adbe..0000000000 --- a/docs/docs/auto-docs/components/ProfileDropdown/ProfileDropdown/README.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / components/ProfileDropdown/ProfileDropdown - -# components/ProfileDropdown/ProfileDropdown - -## Functions - -- [default](functions/default.md) diff --git a/docs/docs/auto-docs/components/ProfileDropdown/ProfileDropdown/functions/default.md b/docs/docs/auto-docs/components/ProfileDropdown/ProfileDropdown/functions/default.md deleted file mode 100644 index 63ccea5ccd..0000000000 --- a/docs/docs/auto-docs/components/ProfileDropdown/ProfileDropdown/functions/default.md +++ /dev/null @@ -1,26 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [components/ProfileDropdown/ProfileDropdown](../README.md) / default - -# Function: default() - -> **default**(): `Element` - -Defined in: [src/components/ProfileDropdown/ProfileDropdown.tsx:24](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/ProfileDropdown/ProfileDropdown.tsx#L24) - -Renders a profile dropdown menu for the user. - -This component displays the user's profile picture or an avatar, their name (truncated if necessary), -and their role (SuperAdmin, Admin, or User). It provides options to view the profile or log out. - -- If a user image is available, it displays that; otherwise, it shows an avatar. -- The displayed name is truncated if it exceeds a specified length. -- The logout function revokes the refresh token and clears local storage before redirecting to the home page. - -## Returns - -`Element` - -JSX.Element - The profile dropdown menu. diff --git a/docs/docs/auto-docs/components/RecurrenceOptions/CustomRecurrenceModal/README.md b/docs/docs/auto-docs/components/RecurrenceOptions/CustomRecurrenceModal/README.md deleted file mode 100644 index 905215ebe4..0000000000 --- a/docs/docs/auto-docs/components/RecurrenceOptions/CustomRecurrenceModal/README.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / components/RecurrenceOptions/CustomRecurrenceModal - -# components/RecurrenceOptions/CustomRecurrenceModal - -## Functions - -- [default](functions/default.md) diff --git a/docs/docs/auto-docs/components/RecurrenceOptions/CustomRecurrenceModal/functions/default.md b/docs/docs/auto-docs/components/RecurrenceOptions/CustomRecurrenceModal/functions/default.md deleted file mode 100644 index 36fc56a541..0000000000 --- a/docs/docs/auto-docs/components/RecurrenceOptions/CustomRecurrenceModal/functions/default.md +++ /dev/null @@ -1,41 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [components/RecurrenceOptions/CustomRecurrenceModal](../README.md) / default - -# Function: default() - -> **default**(`props`, `deprecatedLegacyContext`?): `ReactNode` - -Defined in: [src/components/RecurrenceOptions/CustomRecurrenceModal.tsx:54](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/RecurrenceOptions/CustomRecurrenceModal.tsx#L54) - -A modal for setting up custom recurrence rules. - -This component allows users to configure how often an event should repeat, and -when it should end. It includes options for daily, weekly, monthly, and yearly -recurrence, as well as specific end options. - -## Parameters - -### props - -`InterfaceCustomRecurrenceModalProps` - -The props object containing various configurations and state management functions. - -### deprecatedLegacyContext? - -`any` - -**Deprecated** - -**See** - -[React Docs](https://legacy.reactjs.org/docs/legacy-context.html#referencing-context-in-lifecycle-methods) - -## Returns - -`ReactNode` - -The JSX element representing the CustomRecurrenceModal. diff --git a/docs/docs/auto-docs/components/RecurrenceOptions/RecurrenceOptions/README.md b/docs/docs/auto-docs/components/RecurrenceOptions/RecurrenceOptions/README.md deleted file mode 100644 index 64470d030e..0000000000 --- a/docs/docs/auto-docs/components/RecurrenceOptions/RecurrenceOptions/README.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / components/RecurrenceOptions/RecurrenceOptions - -# components/RecurrenceOptions/RecurrenceOptions - -## Functions - -- [default](functions/default.md) diff --git a/docs/docs/auto-docs/components/RecurrenceOptions/RecurrenceOptions/functions/default.md b/docs/docs/auto-docs/components/RecurrenceOptions/RecurrenceOptions/functions/default.md deleted file mode 100644 index 81146f2504..0000000000 --- a/docs/docs/auto-docs/components/RecurrenceOptions/RecurrenceOptions/functions/default.md +++ /dev/null @@ -1,49 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [components/RecurrenceOptions/RecurrenceOptions](../README.md) / default - -# Function: default() - -> **default**(`props`, `deprecatedLegacyContext`?): `ReactNode` - -Defined in: [src/components/RecurrenceOptions/RecurrenceOptions.tsx:49](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/RecurrenceOptions/RecurrenceOptions.tsx#L49) - -Renders a dropdown menu for selecting recurrence options. - -This component allows users to choose various recurrence rules (daily, weekly, monthly, yearly) for a given event. -It displays the current recurrence rule text and provides options to modify it, including a custom recurrence modal. - -The dropdown menu includes options for: -- Daily recurrence -- Weekly recurrence (including a specific day of the week or Monday to Friday) -- Monthly recurrence (on a specific day or occurrence) -- Yearly recurrence -- Custom recurrence (opens a modal for advanced settings) - -The displayed recurrence rule text is truncated if it exceeds a specified length, with an overlay showing the full text on hover. - -## Parameters - -### props - -`InterfaceRecurrenceOptionsProps` - -The properties to configure the recurrence options dropdown. - -### deprecatedLegacyContext? - -`any` - -**Deprecated** - -**See** - -[React Docs](https://legacy.reactjs.org/docs/legacy-context.html#referencing-context-in-lifecycle-methods) - -## Returns - -`ReactNode` - -JSX.Element - The recurrence options dropdown and the custom recurrence modal. diff --git a/docs/docs/auto-docs/components/RequestsTableItem/RequestsTableItem/README.md b/docs/docs/auto-docs/components/RequestsTableItem/RequestsTableItem/README.md deleted file mode 100644 index 86e8b36c33..0000000000 --- a/docs/docs/auto-docs/components/RequestsTableItem/RequestsTableItem/README.md +++ /dev/null @@ -1,15 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / components/RequestsTableItem/RequestsTableItem - -# components/RequestsTableItem/RequestsTableItem - -## Interfaces - -- [InterfaceRequestsListItem](interfaces/InterfaceRequestsListItem.md) - -## Functions - -- [default](functions/default.md) diff --git a/docs/docs/auto-docs/components/RequestsTableItem/RequestsTableItem/functions/default.md b/docs/docs/auto-docs/components/RequestsTableItem/RequestsTableItem/functions/default.md deleted file mode 100644 index 0aea6041b8..0000000000 --- a/docs/docs/auto-docs/components/RequestsTableItem/RequestsTableItem/functions/default.md +++ /dev/null @@ -1,31 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [components/RequestsTableItem/RequestsTableItem](../README.md) / default - -# Function: default() - -> **default**(`props`): `Element` - -Defined in: [src/components/RequestsTableItem/RequestsTableItem.tsx:45](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/RequestsTableItem/RequestsTableItem.tsx#L45) - -Renders a table row item for a membership request. - -This component displays user details and provides buttons to accept or reject -the membership request. It also handles showing success or error messages using -toast notifications. - -## Parameters - -### props - -`Props` - -The props object containing request details, index, and state reset function. - -## Returns - -`Element` - -The JSX element representing the RequestsTableItem. diff --git a/docs/docs/auto-docs/components/RequestsTableItem/RequestsTableItem/interfaces/InterfaceRequestsListItem.md b/docs/docs/auto-docs/components/RequestsTableItem/RequestsTableItem/interfaces/InterfaceRequestsListItem.md deleted file mode 100644 index 9b2588a020..0000000000 --- a/docs/docs/auto-docs/components/RequestsTableItem/RequestsTableItem/interfaces/InterfaceRequestsListItem.md +++ /dev/null @@ -1,39 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [components/RequestsTableItem/RequestsTableItem](../README.md) / InterfaceRequestsListItem - -# Interface: InterfaceRequestsListItem - -Defined in: [src/components/RequestsTableItem/RequestsTableItem.tsx:16](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/RequestsTableItem/RequestsTableItem.tsx#L16) - -Represents a membership request in the requests table. - -## Properties - -### \_id - -> **\_id**: `string` - -Defined in: [src/components/RequestsTableItem/RequestsTableItem.tsx:17](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/RequestsTableItem/RequestsTableItem.tsx#L17) - -*** - -### user - -> **user**: `object` - -Defined in: [src/components/RequestsTableItem/RequestsTableItem.tsx:18](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/RequestsTableItem/RequestsTableItem.tsx#L18) - -#### email - -> **email**: `string` - -#### firstName - -> **firstName**: `string` - -#### lastName - -> **lastName**: `string` diff --git a/docs/docs/auto-docs/components/RequestsTableItem/RequestsTableItemMocks/README.md b/docs/docs/auto-docs/components/RequestsTableItem/RequestsTableItemMocks/README.md deleted file mode 100644 index cc799b603d..0000000000 --- a/docs/docs/auto-docs/components/RequestsTableItem/RequestsTableItemMocks/README.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / components/RequestsTableItem/RequestsTableItemMocks - -# components/RequestsTableItem/RequestsTableItemMocks - -## Variables - -- [MOCKS](variables/MOCKS.md) diff --git a/docs/docs/auto-docs/components/RequestsTableItem/RequestsTableItemMocks/variables/MOCKS.md b/docs/docs/auto-docs/components/RequestsTableItem/RequestsTableItemMocks/variables/MOCKS.md deleted file mode 100644 index 78c10bb789..0000000000 --- a/docs/docs/auto-docs/components/RequestsTableItem/RequestsTableItemMocks/variables/MOCKS.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [components/RequestsTableItem/RequestsTableItemMocks](../README.md) / MOCKS - -# Variable: MOCKS - -> `const` **MOCKS**: (\{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `id`: `string`; \}; \}; `result`: \{ `data`: \{ `acceptMembershipRequest`: \{ `_id`: `string`; \}; `rejectMembershipRequest`: `undefined`; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `id`: `string`; \}; \}; `result`: \{ `data`: \{ `acceptMembershipRequest`: `undefined`; `rejectMembershipRequest`: \{ `_id`: `string`; \}; \}; \}; \})[] - -Defined in: [src/components/RequestsTableItem/RequestsTableItemMocks.ts:6](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/RequestsTableItem/RequestsTableItemMocks.ts#L6) diff --git a/docs/docs/auto-docs/components/SecuredRoute/SecuredRoute/README.md b/docs/docs/auto-docs/components/SecuredRoute/SecuredRoute/README.md deleted file mode 100644 index 3f41aee770..0000000000 --- a/docs/docs/auto-docs/components/SecuredRoute/SecuredRoute/README.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / components/SecuredRoute/SecuredRoute - -# components/SecuredRoute/SecuredRoute - -## Functions - -- [default](functions/default.md) diff --git a/docs/docs/auto-docs/components/SecuredRoute/SecuredRoute/functions/default.md b/docs/docs/auto-docs/components/SecuredRoute/SecuredRoute/functions/default.md deleted file mode 100644 index e81bfb88b7..0000000000 --- a/docs/docs/auto-docs/components/SecuredRoute/SecuredRoute/functions/default.md +++ /dev/null @@ -1,22 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [components/SecuredRoute/SecuredRoute](../README.md) / default - -# Function: default() - -> **default**(): `Element` - -Defined in: [src/components/SecuredRoute/SecuredRoute.tsx:16](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/SecuredRoute/SecuredRoute.tsx#L16) - -A route guard that checks if the user is logged in and has the necessary permissions. - -If the user is logged in and has an admin role set, it renders the child routes. -Otherwise, it redirects to the home page or shows a 404 page if admin role is not set. - -## Returns - -`Element` - -The JSX element representing the secured route. diff --git a/docs/docs/auto-docs/components/SuperAdminScreen/SuperAdminScreen/README.md b/docs/docs/auto-docs/components/SuperAdminScreen/SuperAdminScreen/README.md deleted file mode 100644 index 2bc917ec5e..0000000000 --- a/docs/docs/auto-docs/components/SuperAdminScreen/SuperAdminScreen/README.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / components/SuperAdminScreen/SuperAdminScreen - -# components/SuperAdminScreen/SuperAdminScreen - -## Functions - -- [default](functions/default.md) diff --git a/docs/docs/auto-docs/components/SuperAdminScreen/SuperAdminScreen/functions/default.md b/docs/docs/auto-docs/components/SuperAdminScreen/SuperAdminScreen/functions/default.md deleted file mode 100644 index 939eca5398..0000000000 --- a/docs/docs/auto-docs/components/SuperAdminScreen/SuperAdminScreen/functions/default.md +++ /dev/null @@ -1,20 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [components/SuperAdminScreen/SuperAdminScreen](../README.md) / default - -# Function: default() - -> **default**(): `Element` - -Defined in: [src/components/SuperAdminScreen/SuperAdminScreen.tsx:15](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/SuperAdminScreen/SuperAdminScreen.tsx#L15) - -The SuperAdminScreen component manages the layout for the Super Admin screen, -including handling the sidebar visibility and page title based on the current route. - -## Returns - -`Element` - -The JSX element representing the Super Admin screen layout. diff --git a/docs/docs/auto-docs/components/TableLoader/TableLoader/README.md b/docs/docs/auto-docs/components/TableLoader/TableLoader/README.md deleted file mode 100644 index 4ea503163f..0000000000 --- a/docs/docs/auto-docs/components/TableLoader/TableLoader/README.md +++ /dev/null @@ -1,15 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / components/TableLoader/TableLoader - -# components/TableLoader/TableLoader - -## Interfaces - -- [InterfaceTableLoader](interfaces/InterfaceTableLoader.md) - -## Functions - -- [default](functions/default.md) diff --git a/docs/docs/auto-docs/components/TableLoader/TableLoader/functions/default.md b/docs/docs/auto-docs/components/TableLoader/TableLoader/functions/default.md deleted file mode 100644 index 481bce8855..0000000000 --- a/docs/docs/auto-docs/components/TableLoader/TableLoader/functions/default.md +++ /dev/null @@ -1,29 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [components/TableLoader/TableLoader](../README.md) / default - -# Function: default() - -> **default**(`props`): `Element` - -Defined in: [src/components/TableLoader/TableLoader.tsx:23](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/TableLoader/TableLoader.tsx#L23) - -The TableLoader component displays a loading skeleton for tables. -It shows a specified number of rows and columns as placeholders -with a shimmering effect to indicate loading content. - -## Parameters - -### props - -[`InterfaceTableLoader`](../interfaces/InterfaceTableLoader.md) - -The properties for the TableLoader component. - -## Returns - -`Element` - -The JSX element representing the table loader. diff --git a/docs/docs/auto-docs/components/TableLoader/TableLoader/interfaces/InterfaceTableLoader.md b/docs/docs/auto-docs/components/TableLoader/TableLoader/interfaces/InterfaceTableLoader.md deleted file mode 100644 index 00af9455b2..0000000000 --- a/docs/docs/auto-docs/components/TableLoader/TableLoader/interfaces/InterfaceTableLoader.md +++ /dev/null @@ -1,33 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [components/TableLoader/TableLoader](../README.md) / InterfaceTableLoader - -# Interface: InterfaceTableLoader - -Defined in: [src/components/TableLoader/TableLoader.tsx:5](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/TableLoader/TableLoader.tsx#L5) - -## Properties - -### headerTitles? - -> `optional` **headerTitles**: `string`[] - -Defined in: [src/components/TableLoader/TableLoader.tsx:7](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/TableLoader/TableLoader.tsx#L7) - -*** - -### noOfCols? - -> `optional` **noOfCols**: `number` - -Defined in: [src/components/TableLoader/TableLoader.tsx:8](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/TableLoader/TableLoader.tsx#L8) - -*** - -### noOfRows - -> **noOfRows**: `number` - -Defined in: [src/components/TableLoader/TableLoader.tsx:6](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/TableLoader/TableLoader.tsx#L6) diff --git a/docs/docs/auto-docs/components/TagActions/TagActions/README.md b/docs/docs/auto-docs/components/TagActions/TagActions/README.md deleted file mode 100644 index b150d81f56..0000000000 --- a/docs/docs/auto-docs/components/TagActions/TagActions/README.md +++ /dev/null @@ -1,15 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / components/TagActions/TagActions - -# components/TagActions/TagActions - -## Interfaces - -- [InterfaceTagActionsProps](interfaces/InterfaceTagActionsProps.md) - -## Functions - -- [default](functions/default.md) diff --git a/docs/docs/auto-docs/components/TagActions/TagActions/functions/default.md b/docs/docs/auto-docs/components/TagActions/TagActions/functions/default.md deleted file mode 100644 index 0ad7773c86..0000000000 --- a/docs/docs/auto-docs/components/TagActions/TagActions/functions/default.md +++ /dev/null @@ -1,31 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [components/TagActions/TagActions](../README.md) / default - -# Function: default() - -> **default**(`props`, `deprecatedLegacyContext`?): `ReactNode` - -Defined in: [src/components/TagActions/TagActions.tsx:44](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/TagActions/TagActions.tsx#L44) - -## Parameters - -### props - -[`InterfaceTagActionsProps`](../interfaces/InterfaceTagActionsProps.md) - -### deprecatedLegacyContext? - -`any` - -**Deprecated** - -**See** - -[React Docs](https://legacy.reactjs.org/docs/legacy-context.html#referencing-context-in-lifecycle-methods) - -## Returns - -`ReactNode` diff --git a/docs/docs/auto-docs/components/TagActions/TagActions/interfaces/InterfaceTagActionsProps.md b/docs/docs/auto-docs/components/TagActions/TagActions/interfaces/InterfaceTagActionsProps.md deleted file mode 100644 index 49b4a230bf..0000000000 --- a/docs/docs/auto-docs/components/TagActions/TagActions/interfaces/InterfaceTagActionsProps.md +++ /dev/null @@ -1,55 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [components/TagActions/TagActions](../README.md) / InterfaceTagActionsProps - -# Interface: InterfaceTagActionsProps - -Defined in: [src/components/TagActions/TagActions.tsx:36](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/TagActions/TagActions.tsx#L36) - -Props for the `AssignToTags` component. - -## Properties - -### hideTagActionsModal() - -> **hideTagActionsModal**: () => `void` - -Defined in: [src/components/TagActions/TagActions.tsx:38](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/TagActions/TagActions.tsx#L38) - -#### Returns - -`void` - -*** - -### t - -> **t**: `TFunction`\<`"manageTag"`\> - -Defined in: [src/components/TagActions/TagActions.tsx:40](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/TagActions/TagActions.tsx#L40) - -*** - -### tagActionsModalIsOpen - -> **tagActionsModalIsOpen**: `boolean` - -Defined in: [src/components/TagActions/TagActions.tsx:37](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/TagActions/TagActions.tsx#L37) - -*** - -### tagActionType - -> **tagActionType**: [`TagActionType`](../../../../utils/organizationTagsUtils/type-aliases/TagActionType.md) - -Defined in: [src/components/TagActions/TagActions.tsx:39](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/TagActions/TagActions.tsx#L39) - -*** - -### tCommon - -> **tCommon**: `TFunction`\<`"common"`\> - -Defined in: [src/components/TagActions/TagActions.tsx:41](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/TagActions/TagActions.tsx#L41) diff --git a/docs/docs/auto-docs/components/TagActions/TagActionsMocks/README.md b/docs/docs/auto-docs/components/TagActions/TagActionsMocks/README.md deleted file mode 100644 index 039d549e67..0000000000 --- a/docs/docs/auto-docs/components/TagActions/TagActionsMocks/README.md +++ /dev/null @@ -1,13 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / components/TagActions/TagActionsMocks - -# components/TagActions/TagActionsMocks - -## Variables - -- [MOCKS](variables/MOCKS.md) -- [MOCKS\_ERROR\_ORGANIZATION\_TAGS\_QUERY](variables/MOCKS_ERROR_ORGANIZATION_TAGS_QUERY.md) -- [MOCKS\_ERROR\_SUBTAGS\_QUERY](variables/MOCKS_ERROR_SUBTAGS_QUERY.md) diff --git a/docs/docs/auto-docs/components/TagActions/TagActionsMocks/variables/MOCKS.md b/docs/docs/auto-docs/components/TagActions/TagActionsMocks/variables/MOCKS.md deleted file mode 100644 index ad4f640364..0000000000 --- a/docs/docs/auto-docs/components/TagActions/TagActionsMocks/variables/MOCKS.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [components/TagActions/TagActionsMocks](../README.md) / MOCKS - -# Variable: MOCKS - -> `const` **MOCKS**: (\{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `after`: `string`; `currentTagId`: `undefined`; `first`: `number`; `id`: `string`; `selectedTagIds`: `undefined`; `where`: \{ `name`: \{ `starts_with`: `string`; \}; \}; \}; \}; `result`: \{ `data`: \{ `assignToUserTags`: `undefined`; `getChildTags`: `undefined`; `organizations`: `object`[]; `removeFromUserTags`: `undefined`; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `after`: `undefined`; `currentTagId`: `undefined`; `first`: `number`; `id`: `string`; `selectedTagIds`: `undefined`; `where`: \{ `name`: \{ `starts_with`: `string`; \}; \}; \}; \}; `result`: \{ `data`: \{ `assignToUserTags`: `undefined`; `getChildTags`: `undefined`; `organizations`: `object`[]; `removeFromUserTags`: `undefined`; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `after`: `undefined`; `currentTagId`: `undefined`; `first`: `number`; `id`: `string`; `selectedTagIds`: `undefined`; `where`: `undefined`; \}; \}; `result`: \{ `data`: \{ `assignToUserTags`: `undefined`; `getChildTags`: \{ `ancestorTags`: `any`[]; `childTags`: \{ `edges`: `object`[]; `pageInfo`: \{ `endCursor`: `string`; `hasNextPage`: `boolean`; `hasPreviousPage`: `boolean`; `startCursor`: `string`; \}; `totalCount`: `number`; \}; `name`: `string`; \}; `organizations`: `undefined`; `removeFromUserTags`: `undefined`; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `after`: `string`; `currentTagId`: `undefined`; `first`: `number`; `id`: `string`; `selectedTagIds`: `undefined`; `where`: `undefined`; \}; \}; `result`: \{ `data`: \{ `assignToUserTags`: `undefined`; `getChildTags`: \{ `ancestorTags`: `any`[]; `childTags`: \{ `edges`: `object`[]; `pageInfo`: \{ `endCursor`: `string`; `hasNextPage`: `boolean`; `hasPreviousPage`: `boolean`; `startCursor`: `string`; \}; `totalCount`: `number`; \}; `name`: `string`; \}; `organizations`: `undefined`; `removeFromUserTags`: `undefined`; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `after`: `undefined`; `currentTagId`: `string`; `first`: `undefined`; `id`: `undefined`; `selectedTagIds`: `string`[]; `where`: `undefined`; \}; \}; `result`: \{ `data`: \{ `assignToUserTags`: \{ `_id`: `string`; \}; `getChildTags`: `undefined`; `organizations`: `undefined`; `removeFromUserTags`: `undefined`; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `after`: `undefined`; `currentTagId`: `string`; `first`: `undefined`; `id`: `undefined`; `selectedTagIds`: `string`[]; `where`: `undefined`; \}; \}; `result`: \{ `data`: \{ `assignToUserTags`: `undefined`; `getChildTags`: `undefined`; `organizations`: `undefined`; `removeFromUserTags`: \{ `_id`: `string`; \}; \}; \}; \})[] - -Defined in: [src/components/TagActions/TagActionsMocks.ts:9](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/TagActions/TagActionsMocks.ts#L9) diff --git a/docs/docs/auto-docs/components/TagActions/TagActionsMocks/variables/MOCKS_ERROR_ORGANIZATION_TAGS_QUERY.md b/docs/docs/auto-docs/components/TagActions/TagActionsMocks/variables/MOCKS_ERROR_ORGANIZATION_TAGS_QUERY.md deleted file mode 100644 index 97615e9350..0000000000 --- a/docs/docs/auto-docs/components/TagActions/TagActionsMocks/variables/MOCKS_ERROR_ORGANIZATION_TAGS_QUERY.md +++ /dev/null @@ -1,49 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [components/TagActions/TagActionsMocks](../README.md) / MOCKS\_ERROR\_ORGANIZATION\_TAGS\_QUERY - -# Variable: MOCKS\_ERROR\_ORGANIZATION\_TAGS\_QUERY - -> `const` **MOCKS\_ERROR\_ORGANIZATION\_TAGS\_QUERY**: `object`[] - -Defined in: [src/components/TagActions/TagActionsMocks.ts:622](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/TagActions/TagActionsMocks.ts#L622) - -## Type declaration - -### error - -> **error**: `Error` - -### request - -> **request**: `object` - -#### request.query - -> **query**: `DocumentNode` = `ORGANIZATION_USER_TAGS_LIST` - -#### request.variables - -> **variables**: `object` - -#### request.variables.first - -> **first**: `number` = `TAGS_QUERY_DATA_CHUNK_SIZE` - -#### request.variables.id - -> **id**: `string` = `'123'` - -#### request.variables.where - -> **where**: `object` - -#### request.variables.where.name - -> **name**: `object` - -#### request.variables.where.name.starts\_with - -> **starts\_with**: `string` = `''` diff --git a/docs/docs/auto-docs/components/TagActions/TagActionsMocks/variables/MOCKS_ERROR_SUBTAGS_QUERY.md b/docs/docs/auto-docs/components/TagActions/TagActionsMocks/variables/MOCKS_ERROR_SUBTAGS_QUERY.md deleted file mode 100644 index 7fc88c0435..0000000000 --- a/docs/docs/auto-docs/components/TagActions/TagActionsMocks/variables/MOCKS_ERROR_SUBTAGS_QUERY.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [components/TagActions/TagActionsMocks](../README.md) / MOCKS\_ERROR\_SUBTAGS\_QUERY - -# Variable: MOCKS\_ERROR\_SUBTAGS\_QUERY - -> `const` **MOCKS\_ERROR\_SUBTAGS\_QUERY**: (\{ `error`: `undefined`; `request`: \{ `query`: `DocumentNode`; `variables`: \{ `first`: `number`; `id`: `string`; `where`: \{ `name`: \{ `starts_with`: `string`; \}; \}; \}; \}; `result`: \{ `data`: \{ `organizations`: `object`[]; \}; \}; \} \| \{ `error`: `Error`; `request`: \{ `query`: `DocumentNode`; `variables`: \{ `first`: `number`; `id`: `string`; `where`: `undefined`; \}; \}; `result`: `undefined`; \})[] - -Defined in: [src/components/TagActions/TagActionsMocks.ts:636](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/TagActions/TagActionsMocks.ts#L636) diff --git a/docs/docs/auto-docs/components/TagActions/TagNode/README.md b/docs/docs/auto-docs/components/TagActions/TagNode/README.md deleted file mode 100644 index 094685e530..0000000000 --- a/docs/docs/auto-docs/components/TagActions/TagNode/README.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / components/TagActions/TagNode - -# components/TagActions/TagNode - -## Functions - -- [default](functions/default.md) diff --git a/docs/docs/auto-docs/components/TagActions/TagNode/functions/default.md b/docs/docs/auto-docs/components/TagActions/TagNode/functions/default.md deleted file mode 100644 index d106ddfe7e..0000000000 --- a/docs/docs/auto-docs/components/TagActions/TagNode/functions/default.md +++ /dev/null @@ -1,33 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [components/TagActions/TagNode](../README.md) / default - -# Function: default() - -> **default**(`props`, `deprecatedLegacyContext`?): `ReactNode` - -Defined in: [src/components/TagActions/TagNode.tsx:29](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/TagActions/TagNode.tsx#L29) - -Renders the Tags which can be expanded to list subtags. - -## Parameters - -### props - -`InterfaceTagNodeProps` - -### deprecatedLegacyContext? - -`any` - -**Deprecated** - -**See** - -[React Docs](https://legacy.reactjs.org/docs/legacy-context.html#referencing-context-in-lifecycle-methods) - -## Returns - -`ReactNode` diff --git a/docs/docs/auto-docs/components/TagActions/TagNodeMocks/README.md b/docs/docs/auto-docs/components/TagActions/TagNodeMocks/README.md deleted file mode 100644 index a5a0bd060a..0000000000 --- a/docs/docs/auto-docs/components/TagActions/TagNodeMocks/README.md +++ /dev/null @@ -1,12 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / components/TagActions/TagNodeMocks - -# components/TagActions/TagNodeMocks - -## Variables - -- [MOCKS\_ERROR\_SUBTAGS\_QUERY1](variables/MOCKS_ERROR_SUBTAGS_QUERY1.md) -- [MOCKS1](variables/MOCKS1.md) diff --git a/docs/docs/auto-docs/components/TagActions/TagNodeMocks/variables/MOCKS1.md b/docs/docs/auto-docs/components/TagActions/TagNodeMocks/variables/MOCKS1.md deleted file mode 100644 index 2c546bf9c0..0000000000 --- a/docs/docs/auto-docs/components/TagActions/TagNodeMocks/variables/MOCKS1.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [components/TagActions/TagNodeMocks](../README.md) / MOCKS1 - -# Variable: MOCKS1 - -> `const` **MOCKS1**: (\{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `after`: `undefined`; `first`: `number`; `id`: `string`; \}; \}; `result`: \{ `data`: \{ `getChildTags`: \{ `__typename`: `string`; `childTags`: \{ `__typename`: `string`; `edges`: `object`[]; `pageInfo`: \{ `__typename`: `string`; `endCursor`: `string`; `hasNextPage`: `boolean`; \}; \}; \}; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `after`: `string`; `first`: `number`; `id`: `string`; \}; \}; `result`: \{ `data`: \{ `getChildTags`: \{ `__typename`: `string`; `childTags`: \{ `__typename`: `string`; `edges`: `object`[]; `pageInfo`: \{ `__typename`: `string`; `endCursor`: `string`; `hasNextPage`: `boolean`; \}; \}; \}; \}; \}; \})[] - -Defined in: [src/components/TagActions/TagNodeMocks.ts:3](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/TagActions/TagNodeMocks.ts#L3) diff --git a/docs/docs/auto-docs/components/TagActions/TagNodeMocks/variables/MOCKS_ERROR_SUBTAGS_QUERY1.md b/docs/docs/auto-docs/components/TagActions/TagNodeMocks/variables/MOCKS_ERROR_SUBTAGS_QUERY1.md deleted file mode 100644 index b9b1190395..0000000000 --- a/docs/docs/auto-docs/components/TagActions/TagNodeMocks/variables/MOCKS_ERROR_SUBTAGS_QUERY1.md +++ /dev/null @@ -1,37 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [components/TagActions/TagNodeMocks](../README.md) / MOCKS\_ERROR\_SUBTAGS\_QUERY1 - -# Variable: MOCKS\_ERROR\_SUBTAGS\_QUERY1 - -> `const` **MOCKS\_ERROR\_SUBTAGS\_QUERY1**: `object`[] - -Defined in: [src/components/TagActions/TagNodeMocks.ts:64](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/TagActions/TagNodeMocks.ts#L64) - -## Type declaration - -### error - -> **error**: `Error` - -### request - -> **request**: `object` - -#### request.query - -> **query**: `DocumentNode` = `USER_TAG_SUB_TAGS` - -#### request.variables - -> **variables**: `object` - -#### request.variables.first - -> **first**: `number` = `10` - -#### request.variables.id - -> **id**: `string` = `'1'` diff --git a/docs/docs/auto-docs/components/UpdateSession/UpdateSession/README.md b/docs/docs/auto-docs/components/UpdateSession/UpdateSession/README.md deleted file mode 100644 index 803802d4f8..0000000000 --- a/docs/docs/auto-docs/components/UpdateSession/UpdateSession/README.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / components/UpdateSession/UpdateSession - -# components/UpdateSession/UpdateSession - -## Functions - -- [default](functions/default.md) diff --git a/docs/docs/auto-docs/components/UpdateSession/UpdateSession/functions/default.md b/docs/docs/auto-docs/components/UpdateSession/UpdateSession/functions/default.md deleted file mode 100644 index 0554cf2c21..0000000000 --- a/docs/docs/auto-docs/components/UpdateSession/UpdateSession/functions/default.md +++ /dev/null @@ -1,31 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [components/UpdateSession/UpdateSession](../README.md) / default - -# Function: default() - -> **default**(`props`, `deprecatedLegacyContext`?): `ReactNode` - -Defined in: [src/components/UpdateSession/UpdateSession.tsx:29](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/UpdateSession/UpdateSession.tsx#L29) - -## Parameters - -### props - -`TestInterfaceUpdateTimeoutProps` - -### deprecatedLegacyContext? - -`any` - -**Deprecated** - -**See** - -[React Docs](https://legacy.reactjs.org/docs/legacy-context.html#referencing-context-in-lifecycle-methods) - -## Returns - -`ReactNode` diff --git a/docs/docs/auto-docs/components/UserListCard/UserListCard/README.md b/docs/docs/auto-docs/components/UserListCard/UserListCard/README.md deleted file mode 100644 index c6f01125f2..0000000000 --- a/docs/docs/auto-docs/components/UserListCard/UserListCard/README.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / components/UserListCard/UserListCard - -# components/UserListCard/UserListCard - -## Functions - -- [default](functions/default.md) diff --git a/docs/docs/auto-docs/components/UserListCard/UserListCard/functions/default.md b/docs/docs/auto-docs/components/UserListCard/UserListCard/functions/default.md deleted file mode 100644 index 4b801b1b54..0000000000 --- a/docs/docs/auto-docs/components/UserListCard/UserListCard/functions/default.md +++ /dev/null @@ -1,28 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [components/UserListCard/UserListCard](../README.md) / default - -# Function: default() - -> **default**(`props`): `JSX.Element` - -Defined in: [src/components/UserListCard/UserListCard.tsx:27](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/UserListCard/UserListCard.tsx#L27) - -The UserListCard component allows for adding a user as an admin in a specific organization. -It uses a button to trigger a mutation for updating the user's role. - -## Parameters - -### props - -`InterfaceUserListCardProps` - -The properties for the UserListCard component. - -## Returns - -`JSX.Element` - -The JSX element representing the user list card. diff --git a/docs/docs/auto-docs/components/UserPasswordUpdate/UserPasswordUpdate/README.md b/docs/docs/auto-docs/components/UserPasswordUpdate/UserPasswordUpdate/README.md deleted file mode 100644 index f40a70775b..0000000000 --- a/docs/docs/auto-docs/components/UserPasswordUpdate/UserPasswordUpdate/README.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / components/UserPasswordUpdate/UserPasswordUpdate - -# components/UserPasswordUpdate/UserPasswordUpdate - -## Functions - -- [default](functions/default.md) diff --git a/docs/docs/auto-docs/components/UserPasswordUpdate/UserPasswordUpdate/functions/default.md b/docs/docs/auto-docs/components/UserPasswordUpdate/UserPasswordUpdate/functions/default.md deleted file mode 100644 index 09bce2296d..0000000000 --- a/docs/docs/auto-docs/components/UserPasswordUpdate/UserPasswordUpdate/functions/default.md +++ /dev/null @@ -1,38 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [components/UserPasswordUpdate/UserPasswordUpdate](../README.md) / default - -# Function: default() - -> **default**(`props`, `deprecatedLegacyContext`?): `ReactNode` - -Defined in: [src/components/UserPasswordUpdate/UserPasswordUpdate.tsx:23](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/UserPasswordUpdate/UserPasswordUpdate.tsx#L23) - -UserUpdate component allows users to update their passwords. -It handles form submission and communicates with the backend to update the user's password. - -## Parameters - -### props - -`InterfaceUserPasswordUpdateProps` - -The properties for the UserUpdate component. - -### deprecatedLegacyContext? - -`any` - -**Deprecated** - -**See** - -[React Docs](https://legacy.reactjs.org/docs/legacy-context.html#referencing-context-in-lifecycle-methods) - -## Returns - -`ReactNode` - -The JSX element for updating user password. diff --git a/docs/docs/auto-docs/components/UserPasswordUpdate/UserPasswordUpdateMocks/README.md b/docs/docs/auto-docs/components/UserPasswordUpdate/UserPasswordUpdateMocks/README.md deleted file mode 100644 index 3282ccc987..0000000000 --- a/docs/docs/auto-docs/components/UserPasswordUpdate/UserPasswordUpdateMocks/README.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / components/UserPasswordUpdate/UserPasswordUpdateMocks - -# components/UserPasswordUpdate/UserPasswordUpdateMocks - -## Variables - -- [MOCKS](variables/MOCKS.md) diff --git a/docs/docs/auto-docs/components/UserPasswordUpdate/UserPasswordUpdateMocks/variables/MOCKS.md b/docs/docs/auto-docs/components/UserPasswordUpdate/UserPasswordUpdateMocks/variables/MOCKS.md deleted file mode 100644 index 8ceefeff31..0000000000 --- a/docs/docs/auto-docs/components/UserPasswordUpdate/UserPasswordUpdateMocks/variables/MOCKS.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [components/UserPasswordUpdate/UserPasswordUpdateMocks](../README.md) / MOCKS - -# Variable: MOCKS - -> `const` **MOCKS**: (\{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `confirmNewPassword`: `string`; `newPassword`: `string`; `previousPassword`: `string`; \}; \}; `result`: \{ `data`: \{ `users`: `object`[]; \}; `errors`: `undefined`; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `confirmNewPassword`: `string`; `newPassword`: `string`; `previousPassword`: `string`; \}; \}; `result`: \{ `data`: `undefined`; `errors`: `object`[]; \}; \})[] - -Defined in: [src/components/UserPasswordUpdate/UserPasswordUpdateMocks.ts:3](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/UserPasswordUpdate/UserPasswordUpdateMocks.ts#L3) diff --git a/docs/docs/auto-docs/components/UserPortal/ChatRoom/ChatRoom/README.md b/docs/docs/auto-docs/components/UserPortal/ChatRoom/ChatRoom/README.md deleted file mode 100644 index 278150d222..0000000000 --- a/docs/docs/auto-docs/components/UserPortal/ChatRoom/ChatRoom/README.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / components/UserPortal/ChatRoom/ChatRoom - -# components/UserPortal/ChatRoom/ChatRoom - -## Functions - -- [default](functions/default.md) diff --git a/docs/docs/auto-docs/components/UserPortal/ChatRoom/ChatRoom/functions/default.md b/docs/docs/auto-docs/components/UserPortal/ChatRoom/ChatRoom/functions/default.md deleted file mode 100644 index 2823b370db..0000000000 --- a/docs/docs/auto-docs/components/UserPortal/ChatRoom/ChatRoom/functions/default.md +++ /dev/null @@ -1,21 +0,0 @@ -[**talawa-admin**](../../../../../README.md) - -*** - -[talawa-admin](../../../../../modules.md) / [components/UserPortal/ChatRoom/ChatRoom](../README.md) / default - -# Function: default() - -> **default**(`props`): `JSX.Element` - -Defined in: [src/components/UserPortal/ChatRoom/ChatRoom.tsx:100](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/UserPortal/ChatRoom/ChatRoom.tsx#L100) - -## Parameters - -### props - -`InterfaceChatRoomProps` - -## Returns - -`JSX.Element` diff --git a/docs/docs/auto-docs/components/UserPortal/CommentCard/CommentCard/README.md b/docs/docs/auto-docs/components/UserPortal/CommentCard/CommentCard/README.md deleted file mode 100644 index b611b74f48..0000000000 --- a/docs/docs/auto-docs/components/UserPortal/CommentCard/CommentCard/README.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / components/UserPortal/CommentCard/CommentCard - -# components/UserPortal/CommentCard/CommentCard - -## Functions - -- [default](functions/default.md) diff --git a/docs/docs/auto-docs/components/UserPortal/CommentCard/CommentCard/functions/default.md b/docs/docs/auto-docs/components/UserPortal/CommentCard/CommentCard/functions/default.md deleted file mode 100644 index 7fbfb9fdf0..0000000000 --- a/docs/docs/auto-docs/components/UserPortal/CommentCard/CommentCard/functions/default.md +++ /dev/null @@ -1,30 +0,0 @@ -[**talawa-admin**](../../../../../README.md) - -*** - -[talawa-admin](../../../../../modules.md) / [components/UserPortal/CommentCard/CommentCard](../README.md) / default - -# Function: default() - -> **default**(`props`): `JSX.Element` - -Defined in: [src/components/UserPortal/CommentCard/CommentCard.tsx:51](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/UserPortal/CommentCard/CommentCard.tsx#L51) - -Displays a card for a single comment with options to like or dislike the comment. - -Shows the commenter's name, the comment text, and the number of likes. -Allows the user to like or dislike the comment. The button icon changes based on whether the comment is liked by the user. - -## Parameters - -### props - -`InterfaceCommentCardProps` - -The properties passed to the component. - -## Returns - -`JSX.Element` - -The rendered comment card component. diff --git a/docs/docs/auto-docs/components/UserPortal/ContactCard/ContactCard/README.md b/docs/docs/auto-docs/components/UserPortal/ContactCard/ContactCard/README.md deleted file mode 100644 index 829e0d2ed6..0000000000 --- a/docs/docs/auto-docs/components/UserPortal/ContactCard/ContactCard/README.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / components/UserPortal/ContactCard/ContactCard - -# components/UserPortal/ContactCard/ContactCard - -## Functions - -- [default](functions/default.md) diff --git a/docs/docs/auto-docs/components/UserPortal/ContactCard/ContactCard/functions/default.md b/docs/docs/auto-docs/components/UserPortal/ContactCard/ContactCard/functions/default.md deleted file mode 100644 index d632b8fe90..0000000000 --- a/docs/docs/auto-docs/components/UserPortal/ContactCard/ContactCard/functions/default.md +++ /dev/null @@ -1,31 +0,0 @@ -[**talawa-admin**](../../../../../README.md) - -*** - -[talawa-admin](../../../../../modules.md) / [components/UserPortal/ContactCard/ContactCard](../README.md) / default - -# Function: default() - -> **default**(`props`): `JSX.Element` - -Defined in: [src/components/UserPortal/ContactCard/ContactCard.tsx:36](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/UserPortal/ContactCard/ContactCard.tsx#L36) - -Displays a card for a contact in a contact list. - -Shows the contact's name, email, and an image or avatar. -The card changes background color based on whether it is selected. -Clicking on the card sets it as the selected contact and updates the contact name. - -## Parameters - -### props - -`InterfaceContactCardProps` - -The properties passed to the component. - -## Returns - -`JSX.Element` - -The rendered contact card component. diff --git a/docs/docs/auto-docs/components/UserPortal/CreateDirectChat/CreateDirectChat/README.md b/docs/docs/auto-docs/components/UserPortal/CreateDirectChat/CreateDirectChat/README.md deleted file mode 100644 index ae31d45ce2..0000000000 --- a/docs/docs/auto-docs/components/UserPortal/CreateDirectChat/CreateDirectChat/README.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / components/UserPortal/CreateDirectChat/CreateDirectChat - -# components/UserPortal/CreateDirectChat/CreateDirectChat - -## Functions - -- [default](functions/default.md) diff --git a/docs/docs/auto-docs/components/UserPortal/CreateDirectChat/CreateDirectChat/functions/default.md b/docs/docs/auto-docs/components/UserPortal/CreateDirectChat/CreateDirectChat/functions/default.md deleted file mode 100644 index 69616f6570..0000000000 --- a/docs/docs/auto-docs/components/UserPortal/CreateDirectChat/CreateDirectChat/functions/default.md +++ /dev/null @@ -1,21 +0,0 @@ -[**talawa-admin**](../../../../../README.md) - -*** - -[talawa-admin](../../../../../modules.md) / [components/UserPortal/CreateDirectChat/CreateDirectChat](../README.md) / default - -# Function: default() - -> **default**(`__namedParameters`): `JSX.Element` - -Defined in: [src/components/UserPortal/CreateDirectChat/CreateDirectChat.tsx:60](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/UserPortal/CreateDirectChat/CreateDirectChat.tsx#L60) - -## Parameters - -### \_\_namedParameters - -`InterfaceCreateDirectChatProps` - -## Returns - -`JSX.Element` diff --git a/docs/docs/auto-docs/components/UserPortal/CreateGroupChat/CreateGroupChat/README.md b/docs/docs/auto-docs/components/UserPortal/CreateGroupChat/CreateGroupChat/README.md deleted file mode 100644 index e1e42b76cb..0000000000 --- a/docs/docs/auto-docs/components/UserPortal/CreateGroupChat/CreateGroupChat/README.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / components/UserPortal/CreateGroupChat/CreateGroupChat - -# components/UserPortal/CreateGroupChat/CreateGroupChat - -## Functions - -- [default](functions/default.md) diff --git a/docs/docs/auto-docs/components/UserPortal/CreateGroupChat/CreateGroupChat/functions/default.md b/docs/docs/auto-docs/components/UserPortal/CreateGroupChat/CreateGroupChat/functions/default.md deleted file mode 100644 index ed238f4579..0000000000 --- a/docs/docs/auto-docs/components/UserPortal/CreateGroupChat/CreateGroupChat/functions/default.md +++ /dev/null @@ -1,21 +0,0 @@ -[**talawa-admin**](../../../../../README.md) - -*** - -[talawa-admin](../../../../../modules.md) / [components/UserPortal/CreateGroupChat/CreateGroupChat](../README.md) / default - -# Function: default() - -> **default**(`__namedParameters`): `JSX.Element` - -Defined in: [src/components/UserPortal/CreateGroupChat/CreateGroupChat.tsx:63](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/UserPortal/CreateGroupChat/CreateGroupChat.tsx#L63) - -## Parameters - -### \_\_namedParameters - -`InterfaceCreateGroupChatProps` - -## Returns - -`JSX.Element` diff --git a/docs/docs/auto-docs/components/UserPortal/DonationCard/DonationCard/README.md b/docs/docs/auto-docs/components/UserPortal/DonationCard/DonationCard/README.md deleted file mode 100644 index 0e4045098f..0000000000 --- a/docs/docs/auto-docs/components/UserPortal/DonationCard/DonationCard/README.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / components/UserPortal/DonationCard/DonationCard - -# components/UserPortal/DonationCard/DonationCard - -## Functions - -- [default](functions/default.md) diff --git a/docs/docs/auto-docs/components/UserPortal/DonationCard/DonationCard/functions/default.md b/docs/docs/auto-docs/components/UserPortal/DonationCard/DonationCard/functions/default.md deleted file mode 100644 index f0c6b4cb24..0000000000 --- a/docs/docs/auto-docs/components/UserPortal/DonationCard/DonationCard/functions/default.md +++ /dev/null @@ -1,30 +0,0 @@ -[**talawa-admin**](../../../../../README.md) - -*** - -[talawa-admin](../../../../../modules.md) / [components/UserPortal/DonationCard/DonationCard](../README.md) / default - -# Function: default() - -> **default**(`props`): `JSX.Element` - -Defined in: [src/components/UserPortal/DonationCard/DonationCard.tsx:19](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/UserPortal/DonationCard/DonationCard.tsx#L19) - -Displays a card with details about a donation. - -Shows the donor's name, the amount donated, and the date of the donation. -Includes a button to view more details about the donation. - -## Parameters - -### props - -[`InterfaceDonationCardProps`](../../../../../screens/UserPortal/Donate/Donate/interfaces/InterfaceDonationCardProps.md) - -The properties passed to the component. - -## Returns - -`JSX.Element` - -The rendered donation card component. diff --git a/docs/docs/auto-docs/components/UserPortal/EventCard/EventCard/README.md b/docs/docs/auto-docs/components/UserPortal/EventCard/EventCard/README.md deleted file mode 100644 index 4c08daf4d5..0000000000 --- a/docs/docs/auto-docs/components/UserPortal/EventCard/EventCard/README.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / components/UserPortal/EventCard/EventCard - -# components/UserPortal/EventCard/EventCard - -## Functions - -- [default](functions/default.md) diff --git a/docs/docs/auto-docs/components/UserPortal/EventCard/EventCard/functions/default.md b/docs/docs/auto-docs/components/UserPortal/EventCard/EventCard/functions/default.md deleted file mode 100644 index 048d9adf5e..0000000000 --- a/docs/docs/auto-docs/components/UserPortal/EventCard/EventCard/functions/default.md +++ /dev/null @@ -1,31 +0,0 @@ -[**talawa-admin**](../../../../../README.md) - -*** - -[talawa-admin](../../../../../modules.md) / [components/UserPortal/EventCard/EventCard](../README.md) / default - -# Function: default() - -> **default**(`props`): `JSX.Element` - -Defined in: [src/components/UserPortal/EventCard/EventCard.tsx:63](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/UserPortal/EventCard/EventCard.tsx#L63) - -Displays information about an event and provides an option to register for it. - -Shows the event's title, description, location, start and end dates and times, -creator's name, and registration status. Includes a button to register for the event -if the user is not already registered. - -## Parameters - -### props - -`InterfaceEventCardProps` - -The properties for the event card. - -## Returns - -`JSX.Element` - -The event card component. diff --git a/docs/docs/auto-docs/components/UserPortal/OrganizationCard/OrganizationCard/README.md b/docs/docs/auto-docs/components/UserPortal/OrganizationCard/OrganizationCard/README.md deleted file mode 100644 index 25b71e5469..0000000000 --- a/docs/docs/auto-docs/components/UserPortal/OrganizationCard/OrganizationCard/README.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / components/UserPortal/OrganizationCard/OrganizationCard - -# components/UserPortal/OrganizationCard/OrganizationCard - -## Functions - -- [default](functions/default.md) diff --git a/docs/docs/auto-docs/components/UserPortal/OrganizationCard/OrganizationCard/functions/default.md b/docs/docs/auto-docs/components/UserPortal/OrganizationCard/OrganizationCard/functions/default.md deleted file mode 100644 index 1c973e6741..0000000000 --- a/docs/docs/auto-docs/components/UserPortal/OrganizationCard/OrganizationCard/functions/default.md +++ /dev/null @@ -1,21 +0,0 @@ -[**talawa-admin**](../../../../../README.md) - -*** - -[talawa-admin](../../../../../modules.md) / [components/UserPortal/OrganizationCard/OrganizationCard](../README.md) / default - -# Function: default() - -> **default**(`props`): `JSX.Element` - -Defined in: [src/components/UserPortal/OrganizationCard/OrganizationCard.tsx:73](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/UserPortal/OrganizationCard/OrganizationCard.tsx#L73) - -## Parameters - -### props - -`InterfaceOrganizationCardProps` - -## Returns - -`JSX.Element` diff --git a/docs/docs/auto-docs/components/UserPortal/OrganizationNavbar/OrganizationNavbar/README.md b/docs/docs/auto-docs/components/UserPortal/OrganizationNavbar/OrganizationNavbar/README.md deleted file mode 100644 index 5677238173..0000000000 --- a/docs/docs/auto-docs/components/UserPortal/OrganizationNavbar/OrganizationNavbar/README.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / components/UserPortal/OrganizationNavbar/OrganizationNavbar - -# components/UserPortal/OrganizationNavbar/OrganizationNavbar - -## Functions - -- [default](functions/default.md) diff --git a/docs/docs/auto-docs/components/UserPortal/OrganizationNavbar/OrganizationNavbar/functions/default.md b/docs/docs/auto-docs/components/UserPortal/OrganizationNavbar/OrganizationNavbar/functions/default.md deleted file mode 100644 index adb107ead3..0000000000 --- a/docs/docs/auto-docs/components/UserPortal/OrganizationNavbar/OrganizationNavbar/functions/default.md +++ /dev/null @@ -1,33 +0,0 @@ -[**talawa-admin**](../../../../../README.md) - -*** - -[talawa-admin](../../../../../modules.md) / [components/UserPortal/OrganizationNavbar/OrganizationNavbar](../README.md) / default - -# Function: default() - -> **default**(`props`): `JSX.Element` - -Defined in: [src/components/UserPortal/OrganizationNavbar/OrganizationNavbar.tsx:44](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/UserPortal/OrganizationNavbar/OrganizationNavbar.tsx#L44) - -Displays the organization navbar with navigation options, user settings, and language selection. - -The navbar includes: -- Organization branding and name. -- Navigation links for various plugins based on user permissions. -- Language dropdown for changing the interface language. -- User dropdown for accessing settings and logging out. - -## Parameters - -### props - -`InterfaceNavbarProps` - -The properties for the navbar. - -## Returns - -`JSX.Element` - -The organization navbar component. diff --git a/docs/docs/auto-docs/components/UserPortal/OrganizationSidebar/OrganizationSidebar/README.md b/docs/docs/auto-docs/components/UserPortal/OrganizationSidebar/OrganizationSidebar/README.md deleted file mode 100644 index 91d4321195..0000000000 --- a/docs/docs/auto-docs/components/UserPortal/OrganizationSidebar/OrganizationSidebar/README.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / components/UserPortal/OrganizationSidebar/OrganizationSidebar - -# components/UserPortal/OrganizationSidebar/OrganizationSidebar - -## Functions - -- [default](functions/default.md) diff --git a/docs/docs/auto-docs/components/UserPortal/OrganizationSidebar/OrganizationSidebar/functions/default.md b/docs/docs/auto-docs/components/UserPortal/OrganizationSidebar/OrganizationSidebar/functions/default.md deleted file mode 100644 index 8ec754fe77..0000000000 --- a/docs/docs/auto-docs/components/UserPortal/OrganizationSidebar/OrganizationSidebar/functions/default.md +++ /dev/null @@ -1,29 +0,0 @@ -[**talawa-admin**](../../../../../README.md) - -*** - -[talawa-admin](../../../../../modules.md) / [components/UserPortal/OrganizationSidebar/OrganizationSidebar](../README.md) / default - -# Function: default() - -> **default**(): `JSX.Element` - -Defined in: [src/components/UserPortal/OrganizationSidebar/OrganizationSidebar.tsx:36](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/UserPortal/OrganizationSidebar/OrganizationSidebar.tsx#L36) - -OrganizationSidebar displays the sidebar for an organization, showing a list of members and events. - -This component fetches and displays: -- The top 3 members of the organization with their images and names. -- The top 3 upcoming events for the organization with their titles, start, and end dates. - -It includes: -- A link to view all members. -- A link to view all events. - -The sidebar handles loading states and displays appropriate messages while data is being fetched. - -## Returns - -`JSX.Element` - -JSX.Element representing the organization sidebar. diff --git a/docs/docs/auto-docs/components/UserPortal/PeopleCard/PeopleCard/README.md b/docs/docs/auto-docs/components/UserPortal/PeopleCard/PeopleCard/README.md deleted file mode 100644 index 8440febd7f..0000000000 --- a/docs/docs/auto-docs/components/UserPortal/PeopleCard/PeopleCard/README.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / components/UserPortal/PeopleCard/PeopleCard - -# components/UserPortal/PeopleCard/PeopleCard - -## Functions - -- [default](functions/default.md) diff --git a/docs/docs/auto-docs/components/UserPortal/PeopleCard/PeopleCard/functions/default.md b/docs/docs/auto-docs/components/UserPortal/PeopleCard/PeopleCard/functions/default.md deleted file mode 100644 index 0346d55da5..0000000000 --- a/docs/docs/auto-docs/components/UserPortal/PeopleCard/PeopleCard/functions/default.md +++ /dev/null @@ -1,34 +0,0 @@ -[**talawa-admin**](../../../../../README.md) - -*** - -[talawa-admin](../../../../../modules.md) / [components/UserPortal/PeopleCard/PeopleCard](../README.md) / default - -# Function: default() - -> **default**(`props`): `JSX.Element` - -Defined in: [src/components/UserPortal/PeopleCard/PeopleCard.tsx:30](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/UserPortal/PeopleCard/PeopleCard.tsx#L30) - -PeopleCard component displays information about a person within an organization. - -It includes: -- An image of the person or a default image if none is provided. -- The serial number of the person. -- The person's name. -- The person's email address. -- The person's role within the organization, styled with a border. - -## Parameters - -### props - -`InterfaceOrganizationCardProps` - -The properties passed to the component. - -## Returns - -`JSX.Element` - -JSX.Element representing a card with the person's details. diff --git a/docs/docs/auto-docs/components/UserPortal/PostCard/PostCard/README.md b/docs/docs/auto-docs/components/UserPortal/PostCard/PostCard/README.md deleted file mode 100644 index 741a0eada0..0000000000 --- a/docs/docs/auto-docs/components/UserPortal/PostCard/PostCard/README.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / components/UserPortal/PostCard/PostCard - -# components/UserPortal/PostCard/PostCard - -## Functions - -- [default](functions/default.md) diff --git a/docs/docs/auto-docs/components/UserPortal/PostCard/PostCard/functions/default.md b/docs/docs/auto-docs/components/UserPortal/PostCard/PostCard/functions/default.md deleted file mode 100644 index 7eb5ec4307..0000000000 --- a/docs/docs/auto-docs/components/UserPortal/PostCard/PostCard/functions/default.md +++ /dev/null @@ -1,34 +0,0 @@ -[**talawa-admin**](../../../../../README.md) - -*** - -[talawa-admin](../../../../../modules.md) / [components/UserPortal/PostCard/PostCard](../README.md) / default - -# Function: default() - -> **default**(`props`): `JSX.Element` - -Defined in: [src/components/UserPortal/PostCard/PostCard.tsx:69](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/UserPortal/PostCard/PostCard.tsx#L69) - -PostCard component displays an individual post, including its details, interactions, and comments. - -The component allows users to: -- View the post's details in a modal. -- Edit or delete the post. -- Like or unlike the post. -- Add comments to the post. -- Like or dislike individual comments. - -## Parameters - -### props - -[`InterfacePostCard`](../../../../../utils/interfaces/interfaces/InterfacePostCard.md) - -The properties passed to the component including post details, comments, and related actions. - -## Returns - -`JSX.Element` - -JSX.Element representing a post card with interactive features. diff --git a/docs/docs/auto-docs/components/UserPortal/PromotedPost/PromotedPost/README.md b/docs/docs/auto-docs/components/UserPortal/PromotedPost/PromotedPost/README.md deleted file mode 100644 index c906e91831..0000000000 --- a/docs/docs/auto-docs/components/UserPortal/PromotedPost/PromotedPost/README.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / components/UserPortal/PromotedPost/PromotedPost - -# components/UserPortal/PromotedPost/PromotedPost - -## Functions - -- [default](functions/default.md) diff --git a/docs/docs/auto-docs/components/UserPortal/PromotedPost/PromotedPost/functions/default.md b/docs/docs/auto-docs/components/UserPortal/PromotedPost/PromotedPost/functions/default.md deleted file mode 100644 index 4204ca3d85..0000000000 --- a/docs/docs/auto-docs/components/UserPortal/PromotedPost/PromotedPost/functions/default.md +++ /dev/null @@ -1,32 +0,0 @@ -[**talawa-admin**](../../../../../README.md) - -*** - -[talawa-admin](../../../../../modules.md) / [components/UserPortal/PromotedPost/PromotedPost](../README.md) / default - -# Function: default() - -> **default**(`props`): `JSX.Element` - -Defined in: [src/components/UserPortal/PromotedPost/PromotedPost.tsx:23](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/UserPortal/PromotedPost/PromotedPost.tsx#L23) - -PromotedPost component displays a card representing promoted content. - -This component includes: -- A header with a star icon indicating the content is promoted. -- A title and description of the promoted content. -- An optional image associated with the promoted content. - -## Parameters - -### props - -`InterfacePostCardProps` - -Properties passed to the component including an image, title, and ID. - -## Returns - -`JSX.Element` - -JSX.Element representing a card with promoted content. diff --git a/docs/docs/auto-docs/components/UserPortal/Register/Register/README.md b/docs/docs/auto-docs/components/UserPortal/Register/Register/README.md deleted file mode 100644 index 5df2315aa1..0000000000 --- a/docs/docs/auto-docs/components/UserPortal/Register/Register/README.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / components/UserPortal/Register/Register - -# components/UserPortal/Register/Register - -## Functions - -- [default](functions/default.md) diff --git a/docs/docs/auto-docs/components/UserPortal/Register/Register/functions/default.md b/docs/docs/auto-docs/components/UserPortal/Register/Register/functions/default.md deleted file mode 100644 index 96a46abcf4..0000000000 --- a/docs/docs/auto-docs/components/UserPortal/Register/Register/functions/default.md +++ /dev/null @@ -1,21 +0,0 @@ -[**talawa-admin**](../../../../../README.md) - -*** - -[talawa-admin](../../../../../modules.md) / [components/UserPortal/Register/Register](../README.md) / default - -# Function: default() - -> **default**(`props`): `JSX.Element` - -Defined in: [src/components/UserPortal/Register/Register.tsx:22](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/UserPortal/Register/Register.tsx#L22) - -## Parameters - -### props - -`InterfaceRegisterProps` - -## Returns - -`JSX.Element` diff --git a/docs/docs/auto-docs/components/UserPortal/SecuredRouteForUser/SecuredRouteForUser/README.md b/docs/docs/auto-docs/components/UserPortal/SecuredRouteForUser/SecuredRouteForUser/README.md deleted file mode 100644 index 3e3da099d0..0000000000 --- a/docs/docs/auto-docs/components/UserPortal/SecuredRouteForUser/SecuredRouteForUser/README.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / components/UserPortal/SecuredRouteForUser/SecuredRouteForUser - -# components/UserPortal/SecuredRouteForUser/SecuredRouteForUser - -## Functions - -- [default](functions/default.md) diff --git a/docs/docs/auto-docs/components/UserPortal/SecuredRouteForUser/SecuredRouteForUser/functions/default.md b/docs/docs/auto-docs/components/UserPortal/SecuredRouteForUser/SecuredRouteForUser/functions/default.md deleted file mode 100644 index 2144ad9044..0000000000 --- a/docs/docs/auto-docs/components/UserPortal/SecuredRouteForUser/SecuredRouteForUser/functions/default.md +++ /dev/null @@ -1,22 +0,0 @@ -[**talawa-admin**](../../../../../README.md) - -*** - -[talawa-admin](../../../../../modules.md) / [components/UserPortal/SecuredRouteForUser/SecuredRouteForUser](../README.md) / default - -# Function: default() - -> **default**(): `Element` - -Defined in: [src/components/UserPortal/SecuredRouteForUser/SecuredRouteForUser.tsx:14](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/UserPortal/SecuredRouteForUser/SecuredRouteForUser.tsx#L14) - -A component that guards routes by checking if the user is logged in. -If the user is logged in and does not have 'AdminFor' set, the child routes are rendered. -If the user is not logged in, they are redirected to the homepage. -If the user is logged in but has 'AdminFor' set, a 404 page is shown. - -## Returns - -`Element` - -JSX.Element - Rendered component based on user authentication and role. diff --git a/docs/docs/auto-docs/components/UserPortal/StartPostModal/StartPostModal/README.md b/docs/docs/auto-docs/components/UserPortal/StartPostModal/StartPostModal/README.md deleted file mode 100644 index 0a50b6de47..0000000000 --- a/docs/docs/auto-docs/components/UserPortal/StartPostModal/StartPostModal/README.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / components/UserPortal/StartPostModal/StartPostModal - -# components/UserPortal/StartPostModal/StartPostModal - -## Functions - -- [default](functions/default.md) diff --git a/docs/docs/auto-docs/components/UserPortal/StartPostModal/StartPostModal/functions/default.md b/docs/docs/auto-docs/components/UserPortal/StartPostModal/StartPostModal/functions/default.md deleted file mode 100644 index c9d9301796..0000000000 --- a/docs/docs/auto-docs/components/UserPortal/StartPostModal/StartPostModal/functions/default.md +++ /dev/null @@ -1,30 +0,0 @@ -[**talawa-admin**](../../../../../README.md) - -*** - -[talawa-admin](../../../../../modules.md) / [components/UserPortal/StartPostModal/StartPostModal](../README.md) / default - -# Function: default() - -> **default**(`__namedParameters`): `Element` - -Defined in: [src/components/UserPortal/StartPostModal/StartPostModal.tsx:40](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/UserPortal/StartPostModal/StartPostModal.tsx#L40) - -A modal component for creating a new post. - -This modal includes: -- A form where users can input the content of the post. -- A preview of the image if provided. -- User's profile image and name displayed in the modal header. - -## Parameters - -### \_\_namedParameters - -`InterfaceStartPostModalProps` - -## Returns - -`Element` - -JSX.Element - The rendered modal component. diff --git a/docs/docs/auto-docs/components/UserPortal/UserNavbar/UserNavbar/README.md b/docs/docs/auto-docs/components/UserPortal/UserNavbar/UserNavbar/README.md deleted file mode 100644 index e5c8408b35..0000000000 --- a/docs/docs/auto-docs/components/UserPortal/UserNavbar/UserNavbar/README.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / components/UserPortal/UserNavbar/UserNavbar - -# components/UserPortal/UserNavbar/UserNavbar - -## Functions - -- [default](functions/default.md) diff --git a/docs/docs/auto-docs/components/UserPortal/UserNavbar/UserNavbar/functions/default.md b/docs/docs/auto-docs/components/UserPortal/UserNavbar/UserNavbar/functions/default.md deleted file mode 100644 index f4882d1195..0000000000 --- a/docs/docs/auto-docs/components/UserPortal/UserNavbar/UserNavbar/functions/default.md +++ /dev/null @@ -1,24 +0,0 @@ -[**talawa-admin**](../../../../../README.md) - -*** - -[talawa-admin](../../../../../modules.md) / [components/UserPortal/UserNavbar/UserNavbar](../README.md) / default - -# Function: default() - -> **default**(): `JSX.Element` - -Defined in: [src/components/UserPortal/UserNavbar/UserNavbar.tsx:26](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/UserPortal/UserNavbar/UserNavbar.tsx#L26) - -Navbar component for user-specific actions and settings. - -This component provides: -- A branding image and name. -- A dropdown for language selection. -- A dropdown for user actions including profile settings and logout. - -## Returns - -`JSX.Element` - -JSX.Element - The rendered Navbar component. diff --git a/docs/docs/auto-docs/components/UserPortal/UserProfile/EventsAttendedByUser/README.md b/docs/docs/auto-docs/components/UserPortal/UserProfile/EventsAttendedByUser/README.md deleted file mode 100644 index f6715014d5..0000000000 --- a/docs/docs/auto-docs/components/UserPortal/UserProfile/EventsAttendedByUser/README.md +++ /dev/null @@ -1,17 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / components/UserPortal/UserProfile/EventsAttendedByUser - -# components/UserPortal/UserProfile/EventsAttendedByUser - -## Functions - -- [EventsAttendedByUser](functions/EventsAttendedByUser.md) - -## References - -### default - -Renames and re-exports [EventsAttendedByUser](functions/EventsAttendedByUser.md) diff --git a/docs/docs/auto-docs/components/UserPortal/UserProfile/EventsAttendedByUser/functions/EventsAttendedByUser.md b/docs/docs/auto-docs/components/UserPortal/UserProfile/EventsAttendedByUser/functions/EventsAttendedByUser.md deleted file mode 100644 index 0b2a19adc8..0000000000 --- a/docs/docs/auto-docs/components/UserPortal/UserProfile/EventsAttendedByUser/functions/EventsAttendedByUser.md +++ /dev/null @@ -1,31 +0,0 @@ -[**talawa-admin**](../../../../../README.md) - -*** - -[talawa-admin](../../../../../modules.md) / [components/UserPortal/UserProfile/EventsAttendedByUser](../README.md) / EventsAttendedByUser - -# Function: EventsAttendedByUser() - -> **EventsAttendedByUser**(`props`, `deprecatedLegacyContext`?): `ReactNode` - -Defined in: [src/components/UserPortal/UserProfile/EventsAttendedByUser.tsx:31](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/UserPortal/UserProfile/EventsAttendedByUser.tsx#L31) - -## Parameters - -### props - -`InterfaceUser` - -### deprecatedLegacyContext? - -`any` - -**Deprecated** - -**See** - -[React Docs](https://legacy.reactjs.org/docs/legacy-context.html#referencing-context-in-lifecycle-methods) - -## Returns - -`ReactNode` diff --git a/docs/docs/auto-docs/components/UserPortal/UserProfile/UserAddressFields/README.md b/docs/docs/auto-docs/components/UserPortal/UserProfile/UserAddressFields/README.md deleted file mode 100644 index fcf8648765..0000000000 --- a/docs/docs/auto-docs/components/UserPortal/UserProfile/UserAddressFields/README.md +++ /dev/null @@ -1,17 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / components/UserPortal/UserProfile/UserAddressFields - -# components/UserPortal/UserProfile/UserAddressFields - -## Functions - -- [UserAddressFields](functions/UserAddressFields.md) - -## References - -### default - -Renames and re-exports [UserAddressFields](functions/UserAddressFields.md) diff --git a/docs/docs/auto-docs/components/UserPortal/UserProfile/UserAddressFields/functions/UserAddressFields.md b/docs/docs/auto-docs/components/UserPortal/UserProfile/UserAddressFields/functions/UserAddressFields.md deleted file mode 100644 index 1bf1e09fc2..0000000000 --- a/docs/docs/auto-docs/components/UserPortal/UserProfile/UserAddressFields/functions/UserAddressFields.md +++ /dev/null @@ -1,38 +0,0 @@ -[**talawa-admin**](../../../../../README.md) - -*** - -[talawa-admin](../../../../../modules.md) / [components/UserPortal/UserProfile/UserAddressFields](../README.md) / UserAddressFields - -# Function: UserAddressFields() - -> **UserAddressFields**(`props`, `deprecatedLegacyContext`?): `ReactNode` - -Defined in: [src/components/UserPortal/UserProfile/UserAddressFields.tsx:26](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/UserPortal/UserProfile/UserAddressFields.tsx#L26) - -Form component containing address-related input fields for user profile -Includes fields for address, city, state, and country - -## Parameters - -### props - -`InterfaceUserAddressFieldsProps` - -Component props - -### deprecatedLegacyContext? - -`any` - -**Deprecated** - -**See** - -[React Docs](https://legacy.reactjs.org/docs/legacy-context.html#referencing-context-in-lifecycle-methods) - -## Returns - -`ReactNode` - -Form group with address input fields diff --git a/docs/docs/auto-docs/components/UserPortal/UserSidebar/UserSidebar/README.md b/docs/docs/auto-docs/components/UserPortal/UserSidebar/UserSidebar/README.md deleted file mode 100644 index 6dba28665f..0000000000 --- a/docs/docs/auto-docs/components/UserPortal/UserSidebar/UserSidebar/README.md +++ /dev/null @@ -1,15 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / components/UserPortal/UserSidebar/UserSidebar - -# components/UserPortal/UserSidebar/UserSidebar - -## Interfaces - -- [InterfaceUserSidebarProps](interfaces/InterfaceUserSidebarProps.md) - -## Functions - -- [default](functions/default.md) diff --git a/docs/docs/auto-docs/components/UserPortal/UserSidebar/UserSidebar/functions/default.md b/docs/docs/auto-docs/components/UserPortal/UserSidebar/UserSidebar/functions/default.md deleted file mode 100644 index 31be4b51ba..0000000000 --- a/docs/docs/auto-docs/components/UserPortal/UserSidebar/UserSidebar/functions/default.md +++ /dev/null @@ -1,30 +0,0 @@ -[**talawa-admin**](../../../../../README.md) - -*** - -[talawa-admin](../../../../../modules.md) / [components/UserPortal/UserSidebar/UserSidebar](../README.md) / default - -# Function: default() - -> **default**(`__namedParameters`): `Element` - -Defined in: [src/components/UserPortal/UserSidebar/UserSidebar.tsx:28](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/UserPortal/UserSidebar/UserSidebar.tsx#L28) - -Sidebar component for user navigation, including links to organizations and settings. - -Provides: -- A logo and title for the sidebar. -- Navigation buttons for "My Organizations" and "Settings". -- Dynamic styling based on the active route. - -## Parameters - -### \_\_namedParameters - -[`InterfaceUserSidebarProps`](../interfaces/InterfaceUserSidebarProps.md) - -## Returns - -`Element` - -JSX.Element - The rendered sidebar component. diff --git a/docs/docs/auto-docs/components/UserPortal/UserSidebar/UserSidebar/interfaces/InterfaceUserSidebarProps.md b/docs/docs/auto-docs/components/UserPortal/UserSidebar/UserSidebar/interfaces/InterfaceUserSidebarProps.md deleted file mode 100644 index 46264bcaaf..0000000000 --- a/docs/docs/auto-docs/components/UserPortal/UserSidebar/UserSidebar/interfaces/InterfaceUserSidebarProps.md +++ /dev/null @@ -1,25 +0,0 @@ -[**talawa-admin**](../../../../../README.md) - -*** - -[talawa-admin](../../../../../modules.md) / [components/UserPortal/UserSidebar/UserSidebar](../README.md) / InterfaceUserSidebarProps - -# Interface: InterfaceUserSidebarProps - -Defined in: [src/components/UserPortal/UserSidebar/UserSidebar.tsx:10](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/UserPortal/UserSidebar/UserSidebar.tsx#L10) - -## Properties - -### hideDrawer - -> **hideDrawer**: `boolean` - -Defined in: [src/components/UserPortal/UserSidebar/UserSidebar.tsx:11](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/UserPortal/UserSidebar/UserSidebar.tsx#L11) - -*** - -### setHideDrawer - -> **setHideDrawer**: `Dispatch`\<`SetStateAction`\<`boolean`\>\> - -Defined in: [src/components/UserPortal/UserSidebar/UserSidebar.tsx:12](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/UserPortal/UserSidebar/UserSidebar.tsx#L12) diff --git a/docs/docs/auto-docs/components/UserPortal/UserSidebarOrg/UserSidebarOrg/README.md b/docs/docs/auto-docs/components/UserPortal/UserSidebarOrg/UserSidebarOrg/README.md deleted file mode 100644 index 5fc2924076..0000000000 --- a/docs/docs/auto-docs/components/UserPortal/UserSidebarOrg/UserSidebarOrg/README.md +++ /dev/null @@ -1,15 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / components/UserPortal/UserSidebarOrg/UserSidebarOrg - -# components/UserPortal/UserSidebarOrg/UserSidebarOrg - -## Interfaces - -- [InterfaceUserSidebarOrgProps](interfaces/InterfaceUserSidebarOrgProps.md) - -## Functions - -- [default](functions/default.md) diff --git a/docs/docs/auto-docs/components/UserPortal/UserSidebarOrg/UserSidebarOrg/functions/default.md b/docs/docs/auto-docs/components/UserPortal/UserSidebarOrg/UserSidebarOrg/functions/default.md deleted file mode 100644 index ef7322671f..0000000000 --- a/docs/docs/auto-docs/components/UserPortal/UserSidebarOrg/UserSidebarOrg/functions/default.md +++ /dev/null @@ -1,30 +0,0 @@ -[**talawa-admin**](../../../../../README.md) - -*** - -[talawa-admin](../../../../../modules.md) / [components/UserPortal/UserSidebarOrg/UserSidebarOrg](../README.md) / default - -# Function: default() - -> **default**(`__namedParameters`): `Element` - -Defined in: [src/components/UserPortal/UserSidebarOrg/UserSidebarOrg.tsx:39](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/UserPortal/UserSidebarOrg/UserSidebarOrg.tsx#L39) - -Sidebar component for user navigation within an organization. - -Provides: -- Branding with the Talawa logo. -- Displays the current organization's details. -- Navigation options with links and collapsible dropdowns. - -## Parameters - -### \_\_namedParameters - -[`InterfaceUserSidebarOrgProps`](../interfaces/InterfaceUserSidebarOrgProps.md) - -## Returns - -`Element` - -JSX.Element - The rendered sidebar component. diff --git a/docs/docs/auto-docs/components/UserPortal/UserSidebarOrg/UserSidebarOrg/interfaces/InterfaceUserSidebarOrgProps.md b/docs/docs/auto-docs/components/UserPortal/UserSidebarOrg/UserSidebarOrg/interfaces/InterfaceUserSidebarOrgProps.md deleted file mode 100644 index 86aa0aa038..0000000000 --- a/docs/docs/auto-docs/components/UserPortal/UserSidebarOrg/UserSidebarOrg/interfaces/InterfaceUserSidebarOrgProps.md +++ /dev/null @@ -1,41 +0,0 @@ -[**talawa-admin**](../../../../../README.md) - -*** - -[talawa-admin](../../../../../modules.md) / [components/UserPortal/UserSidebarOrg/UserSidebarOrg](../README.md) / InterfaceUserSidebarOrgProps - -# Interface: InterfaceUserSidebarOrgProps - -Defined in: [src/components/UserPortal/UserSidebarOrg/UserSidebarOrg.tsx:17](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/UserPortal/UserSidebarOrg/UserSidebarOrg.tsx#L17) - -## Properties - -### hideDrawer - -> **hideDrawer**: `boolean` - -Defined in: [src/components/UserPortal/UserSidebarOrg/UserSidebarOrg.tsx:20](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/UserPortal/UserSidebarOrg/UserSidebarOrg.tsx#L20) - -*** - -### orgId - -> **orgId**: `string` - -Defined in: [src/components/UserPortal/UserSidebarOrg/UserSidebarOrg.tsx:18](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/UserPortal/UserSidebarOrg/UserSidebarOrg.tsx#L18) - -*** - -### setHideDrawer - -> **setHideDrawer**: `Dispatch`\<`SetStateAction`\<`boolean`\>\> - -Defined in: [src/components/UserPortal/UserSidebarOrg/UserSidebarOrg.tsx:21](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/UserPortal/UserSidebarOrg/UserSidebarOrg.tsx#L21) - -*** - -### targets - -> **targets**: [`TargetsType`](../../../../../state/reducers/routesReducer/type-aliases/TargetsType.md)[] - -Defined in: [src/components/UserPortal/UserSidebarOrg/UserSidebarOrg.tsx:19](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/UserPortal/UserSidebarOrg/UserSidebarOrg.tsx#L19) diff --git a/docs/docs/auto-docs/components/UserProfileSettings/DeleteUser/README.md b/docs/docs/auto-docs/components/UserProfileSettings/DeleteUser/README.md deleted file mode 100644 index aed329a07a..0000000000 --- a/docs/docs/auto-docs/components/UserProfileSettings/DeleteUser/README.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / components/UserProfileSettings/DeleteUser - -# components/UserProfileSettings/DeleteUser - -## Functions - -- [default](functions/default.md) diff --git a/docs/docs/auto-docs/components/UserProfileSettings/DeleteUser/functions/default.md b/docs/docs/auto-docs/components/UserProfileSettings/DeleteUser/functions/default.md deleted file mode 100644 index c24d49d0c1..0000000000 --- a/docs/docs/auto-docs/components/UserProfileSettings/DeleteUser/functions/default.md +++ /dev/null @@ -1,34 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [components/UserProfileSettings/DeleteUser](../README.md) / default - -# Function: default() - -> **default**(`props`, `deprecatedLegacyContext`?): `ReactNode` - -Defined in: [src/components/UserProfileSettings/DeleteUser.tsx:12](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/UserProfileSettings/DeleteUser.tsx#L12) - -DeleteUser component displays a card with a button to delete a user. -It includes a message and a button to trigger the delete action. - -## Parameters - -### props - -### deprecatedLegacyContext? - -`any` - -**Deprecated** - -**See** - -[React Docs](https://legacy.reactjs.org/docs/legacy-context.html#referencing-context-in-lifecycle-methods) - -## Returns - -`ReactNode` - -The JSX element for the delete user card. diff --git a/docs/docs/auto-docs/components/UserProfileSettings/OtherSettings/README.md b/docs/docs/auto-docs/components/UserProfileSettings/OtherSettings/README.md deleted file mode 100644 index d62f597c02..0000000000 --- a/docs/docs/auto-docs/components/UserProfileSettings/OtherSettings/README.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / components/UserProfileSettings/OtherSettings - -# components/UserProfileSettings/OtherSettings - -## Functions - -- [default](functions/default.md) diff --git a/docs/docs/auto-docs/components/UserProfileSettings/OtherSettings/functions/default.md b/docs/docs/auto-docs/components/UserProfileSettings/OtherSettings/functions/default.md deleted file mode 100644 index b231d55531..0000000000 --- a/docs/docs/auto-docs/components/UserProfileSettings/OtherSettings/functions/default.md +++ /dev/null @@ -1,34 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [components/UserProfileSettings/OtherSettings](../README.md) / default - -# Function: default() - -> **default**(`props`, `deprecatedLegacyContext`?): `ReactNode` - -Defined in: [src/components/UserProfileSettings/OtherSettings.tsx:13](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/UserProfileSettings/OtherSettings.tsx#L13) - -OtherSettings component displays a card with settings options such as changing the language. -It includes a label and a dropdown for selecting a different language. - -## Parameters - -### props - -### deprecatedLegacyContext? - -`any` - -**Deprecated** - -**See** - -[React Docs](https://legacy.reactjs.org/docs/legacy-context.html#referencing-context-in-lifecycle-methods) - -## Returns - -`ReactNode` - -The JSX element for the other settings card. diff --git a/docs/docs/auto-docs/components/UserProfileSettings/UserProfile/README.md b/docs/docs/auto-docs/components/UserProfileSettings/UserProfile/README.md deleted file mode 100644 index c20ee1ebcb..0000000000 --- a/docs/docs/auto-docs/components/UserProfileSettings/UserProfile/README.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / components/UserProfileSettings/UserProfile - -# components/UserProfileSettings/UserProfile - -## Functions - -- [default](functions/default.md) diff --git a/docs/docs/auto-docs/components/UserProfileSettings/UserProfile/functions/default.md b/docs/docs/auto-docs/components/UserProfileSettings/UserProfile/functions/default.md deleted file mode 100644 index 4040aeb485..0000000000 --- a/docs/docs/auto-docs/components/UserProfileSettings/UserProfile/functions/default.md +++ /dev/null @@ -1,38 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [components/UserProfileSettings/UserProfile](../README.md) / default - -# Function: default() - -> **default**(`props`, `deprecatedLegacyContext`?): `ReactNode` - -Defined in: [src/components/UserProfileSettings/UserProfile.tsx:38](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/UserProfileSettings/UserProfile.tsx#L38) - -UserProfile component displays user profile details including an avatar or profile image, name, email, and join date. -It also provides a button to copy the profile link. - -## Parameters - -### props - -`InterfaceUserProfile` - -The properties to be passed into the component. - -### deprecatedLegacyContext? - -`any` - -**Deprecated** - -**See** - -[React Docs](https://legacy.reactjs.org/docs/legacy-context.html#referencing-context-in-lifecycle-methods) - -## Returns - -`ReactNode` - -The JSX element for the user profile card. diff --git a/docs/docs/auto-docs/components/UsersTableItem/UserTableItemMocks/README.md b/docs/docs/auto-docs/components/UsersTableItem/UserTableItemMocks/README.md deleted file mode 100644 index a6bc5cb05c..0000000000 --- a/docs/docs/auto-docs/components/UsersTableItem/UserTableItemMocks/README.md +++ /dev/null @@ -1,13 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / components/UsersTableItem/UserTableItemMocks - -# components/UsersTableItem/UserTableItemMocks - -## Variables - -- [MOCKS](variables/MOCKS.md) -- [MOCKS\_UPDATE](variables/MOCKS_UPDATE.md) -- [MOCKS2](variables/MOCKS2.md) diff --git a/docs/docs/auto-docs/components/UsersTableItem/UserTableItemMocks/variables/MOCKS.md b/docs/docs/auto-docs/components/UsersTableItem/UserTableItemMocks/variables/MOCKS.md deleted file mode 100644 index b50a16be2f..0000000000 --- a/docs/docs/auto-docs/components/UsersTableItem/UserTableItemMocks/variables/MOCKS.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [components/UsersTableItem/UserTableItemMocks](../README.md) / MOCKS - -# Variable: MOCKS - -> `const` **MOCKS**: (\{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `organizationId`: `undefined`; `orgid`: `string`; `role`: `undefined`; `userid`: `string`; `userId`: `undefined`; \}; \}; `result`: \{ `data`: \{ `removeMember`: \{ `_id`: `string`; \}; `updateUserRoleInOrganization`: `undefined`; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `organizationId`: `string`; `orgid`: `undefined`; `role`: `string`; `userid`: `undefined`; `userId`: `string`; \}; \}; `result`: \{ `data`: \{ `removeMember`: `undefined`; `updateUserRoleInOrganization`: \{ `_id`: `string`; \}; \}; \}; \})[] - -Defined in: [src/components/UsersTableItem/UserTableItemMocks.ts:6](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/UsersTableItem/UserTableItemMocks.ts#L6) diff --git a/docs/docs/auto-docs/components/UsersTableItem/UserTableItemMocks/variables/MOCKS2.md b/docs/docs/auto-docs/components/UsersTableItem/UserTableItemMocks/variables/MOCKS2.md deleted file mode 100644 index 2f00ace4f9..0000000000 --- a/docs/docs/auto-docs/components/UsersTableItem/UserTableItemMocks/variables/MOCKS2.md +++ /dev/null @@ -1,37 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [components/UsersTableItem/UserTableItemMocks](../README.md) / MOCKS2 - -# Variable: MOCKS2 - -> `const` **MOCKS2**: `object`[] - -Defined in: [src/components/UsersTableItem/UserTableItemMocks.ts:42](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/UsersTableItem/UserTableItemMocks.ts#L42) - -## Type declaration - -### error - -> **error**: `Error` - -### request - -> **request**: `object` - -#### request.query - -> **query**: `DocumentNode` = `REMOVE_MEMBER_MUTATION` - -#### request.variables - -> **variables**: `object` - -#### request.variables.orgid - -> **orgid**: `string` = `'abc'` - -#### request.variables.userid - -> **userid**: `string` = `'123'` diff --git a/docs/docs/auto-docs/components/UsersTableItem/UserTableItemMocks/variables/MOCKS_UPDATE.md b/docs/docs/auto-docs/components/UsersTableItem/UserTableItemMocks/variables/MOCKS_UPDATE.md deleted file mode 100644 index a3dc2ab795..0000000000 --- a/docs/docs/auto-docs/components/UsersTableItem/UserTableItemMocks/variables/MOCKS_UPDATE.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [components/UsersTableItem/UserTableItemMocks](../README.md) / MOCKS\_UPDATE - -# Variable: MOCKS\_UPDATE - -> `const` **MOCKS\_UPDATE**: (\{ `error`: `Error`; `request`: \{ `query`: `DocumentNode`; `variables`: \{ `organizationId`: `string`; `role`: `string`; `userId`: `string`; \}; \}; `result`: `undefined`; \} \| \{ `error`: `undefined`; `request`: \{ `query`: `DocumentNode`; `variables`: \{ `organizationId`: `string`; `role`: `string`; `userId`: `string`; \}; \}; `result`: \{ `data`: \{ `updateUserRoleInOrganization`: \{ `_id`: `string`; \}; \}; \}; \})[] - -Defined in: [src/components/UsersTableItem/UserTableItemMocks.ts:55](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/UsersTableItem/UserTableItemMocks.ts#L55) diff --git a/docs/docs/auto-docs/components/UsersTableItem/UsersTableItem/README.md b/docs/docs/auto-docs/components/UsersTableItem/UsersTableItem/README.md deleted file mode 100644 index 35774184ed..0000000000 --- a/docs/docs/auto-docs/components/UsersTableItem/UsersTableItem/README.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / components/UsersTableItem/UsersTableItem - -# components/UsersTableItem/UsersTableItem - -## Functions - -- [default](functions/default.md) diff --git a/docs/docs/auto-docs/components/UsersTableItem/UsersTableItem/functions/default.md b/docs/docs/auto-docs/components/UsersTableItem/UsersTableItem/functions/default.md deleted file mode 100644 index f8a7c9a4cf..0000000000 --- a/docs/docs/auto-docs/components/UsersTableItem/UsersTableItem/functions/default.md +++ /dev/null @@ -1,21 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [components/UsersTableItem/UsersTableItem](../README.md) / default - -# Function: default() - -> **default**(`props`): `Element` - -Defined in: [src/components/UsersTableItem/UsersTableItem.tsx:23](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/UsersTableItem/UsersTableItem.tsx#L23) - -## Parameters - -### props - -`Props` - -## Returns - -`Element` diff --git a/docs/docs/auto-docs/components/Venues/VenueCard/README.md b/docs/docs/auto-docs/components/Venues/VenueCard/README.md deleted file mode 100644 index f5058ba6f0..0000000000 --- a/docs/docs/auto-docs/components/Venues/VenueCard/README.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / components/Venues/VenueCard - -# components/Venues/VenueCard - -## Functions - -- [default](functions/default.md) diff --git a/docs/docs/auto-docs/components/Venues/VenueCard/functions/default.md b/docs/docs/auto-docs/components/Venues/VenueCard/functions/default.md deleted file mode 100644 index 43cd3f47d5..0000000000 --- a/docs/docs/auto-docs/components/Venues/VenueCard/functions/default.md +++ /dev/null @@ -1,39 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [components/Venues/VenueCard](../README.md) / default - -# Function: default() - -> **default**(`__namedParameters`): `Element` - -Defined in: [src/components/Venues/VenueCard.tsx:39](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/Venues/VenueCard.tsx#L39) - -Represents a card component displaying venue information. - -This component renders a card with the venue's image, name, capacity, and description. -It also provides buttons to edit or delete the venue. - -## Parameters - -### \_\_namedParameters - -`InterfaceVenueCardProps` - -## Returns - -`Element` - -JSX.Element - The `VenueCard` component. - -## Example - -```tsx - -``` diff --git a/docs/docs/auto-docs/components/Venues/VenueModal/README.md b/docs/docs/auto-docs/components/Venues/VenueModal/README.md deleted file mode 100644 index 1ef81a0b58..0000000000 --- a/docs/docs/auto-docs/components/Venues/VenueModal/README.md +++ /dev/null @@ -1,15 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / components/Venues/VenueModal - -# components/Venues/VenueModal - -## Interfaces - -- [InterfaceVenueModalProps](interfaces/InterfaceVenueModalProps.md) - -## Functions - -- [default](functions/default.md) diff --git a/docs/docs/auto-docs/components/Venues/VenueModal/functions/default.md b/docs/docs/auto-docs/components/Venues/VenueModal/functions/default.md deleted file mode 100644 index 6489b22798..0000000000 --- a/docs/docs/auto-docs/components/Venues/VenueModal/functions/default.md +++ /dev/null @@ -1,28 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [components/Venues/VenueModal](../README.md) / default - -# Function: default() - -> **default**(`__namedParameters`): `Element` - -Defined in: [src/components/Venues/VenueModal.tsx:39](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/Venues/VenueModal.tsx#L39) - -A modal component for creating or updating venue information. - -This component displays a modal window where users can enter details for a venue, such as name, description, capacity, and an image. -It also handles submitting the form data to create or update a venue based on whether the `edit` prop is true or false. - -## Parameters - -### \_\_namedParameters - -[`InterfaceVenueModalProps`](../interfaces/InterfaceVenueModalProps.md) - -## Returns - -`Element` - -The rendered modal component. diff --git a/docs/docs/auto-docs/components/Venues/VenueModal/interfaces/InterfaceVenueModalProps.md b/docs/docs/auto-docs/components/Venues/VenueModal/interfaces/InterfaceVenueModalProps.md deleted file mode 100644 index 353b060d95..0000000000 --- a/docs/docs/auto-docs/components/Venues/VenueModal/interfaces/InterfaceVenueModalProps.md +++ /dev/null @@ -1,65 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [components/Venues/VenueModal](../README.md) / InterfaceVenueModalProps - -# Interface: InterfaceVenueModalProps - -Defined in: [src/components/Venues/VenueModal.tsx:15](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/Venues/VenueModal.tsx#L15) - -## Properties - -### edit - -> **edit**: `boolean` - -Defined in: [src/components/Venues/VenueModal.tsx:21](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/Venues/VenueModal.tsx#L21) - -*** - -### onHide() - -> **onHide**: () => `void` - -Defined in: [src/components/Venues/VenueModal.tsx:17](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/Venues/VenueModal.tsx#L17) - -#### Returns - -`void` - -*** - -### orgId - -> **orgId**: `string` - -Defined in: [src/components/Venues/VenueModal.tsx:19](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/Venues/VenueModal.tsx#L19) - -*** - -### refetchVenues() - -> **refetchVenues**: () => `void` - -Defined in: [src/components/Venues/VenueModal.tsx:18](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/Venues/VenueModal.tsx#L18) - -#### Returns - -`void` - -*** - -### show - -> **show**: `boolean` - -Defined in: [src/components/Venues/VenueModal.tsx:16](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/Venues/VenueModal.tsx#L16) - -*** - -### venueData? - -> `optional` **venueData**: [`InterfaceQueryVenueListItem`](../../../../utils/interfaces/interfaces/InterfaceQueryVenueListItem.md) - -Defined in: [src/components/Venues/VenueModal.tsx:20](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/Venues/VenueModal.tsx#L20) diff --git a/docs/docs/auto-docs/components/plugins/DummyPlugin/DummyPlugin/README.md b/docs/docs/auto-docs/components/plugins/DummyPlugin/DummyPlugin/README.md deleted file mode 100644 index c582ebf9fa..0000000000 --- a/docs/docs/auto-docs/components/plugins/DummyPlugin/DummyPlugin/README.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / components/plugins/DummyPlugin/DummyPlugin - -# components/plugins/DummyPlugin/DummyPlugin - -## Functions - -- [default](functions/default.md) diff --git a/docs/docs/auto-docs/components/plugins/DummyPlugin/DummyPlugin/functions/default.md b/docs/docs/auto-docs/components/plugins/DummyPlugin/DummyPlugin/functions/default.md deleted file mode 100644 index 0ef654633d..0000000000 --- a/docs/docs/auto-docs/components/plugins/DummyPlugin/DummyPlugin/functions/default.md +++ /dev/null @@ -1,22 +0,0 @@ -[**talawa-admin**](../../../../../README.md) - -*** - -[talawa-admin](../../../../../modules.md) / [components/plugins/DummyPlugin/DummyPlugin](../README.md) / default - -# Function: default() - -> **default**(): `JSX.Element` - -Defined in: [src/components/plugins/DummyPlugin/DummyPlugin.tsx:12](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/plugins/DummyPlugin/DummyPlugin.tsx#L12) - -A dummy plugin component that renders a welcome message inside an `AddOn` component. - -This component is used for demonstration or testing purposes and does not have any -additional functionality or properties. - -## Returns - -`JSX.Element` - -JSX.Element - Renders the `AddOn` component containing a welcome message. diff --git a/docs/docs/auto-docs/components/plugins/DummyPlugin2/DummyPlugin2/README.md b/docs/docs/auto-docs/components/plugins/DummyPlugin2/DummyPlugin2/README.md deleted file mode 100644 index e01e669542..0000000000 --- a/docs/docs/auto-docs/components/plugins/DummyPlugin2/DummyPlugin2/README.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / components/plugins/DummyPlugin2/DummyPlugin2 - -# components/plugins/DummyPlugin2/DummyPlugin2 - -## Functions - -- [default](functions/default.md) diff --git a/docs/docs/auto-docs/components/plugins/DummyPlugin2/DummyPlugin2/functions/default.md b/docs/docs/auto-docs/components/plugins/DummyPlugin2/DummyPlugin2/functions/default.md deleted file mode 100644 index 135c2ceece..0000000000 --- a/docs/docs/auto-docs/components/plugins/DummyPlugin2/DummyPlugin2/functions/default.md +++ /dev/null @@ -1,21 +0,0 @@ -[**talawa-admin**](../../../../../README.md) - -*** - -[talawa-admin](../../../../../modules.md) / [components/plugins/DummyPlugin2/DummyPlugin2](../README.md) / default - -# Function: default() - -> **default**(): `JSX.Element` - -Defined in: [src/components/plugins/DummyPlugin2/DummyPlugin2.tsx:10](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/components/plugins/DummyPlugin2/DummyPlugin2.tsx#L10) - -A placeholder component for demonstration or testing purposes. -It renders an empty `div` element. - -This component currently does not have any additional functionality -or properties. - -## Returns - -`JSX.Element` diff --git a/docs/docs/auto-docs/components/plugins/README.md b/docs/docs/auto-docs/components/plugins/README.md deleted file mode 100644 index 5512e9966c..0000000000 --- a/docs/docs/auto-docs/components/plugins/README.md +++ /dev/null @@ -1,19 +0,0 @@ -[**talawa-admin**](../../README.md) - -*** - -[talawa-admin](../../modules.md) / components/plugins - -# components/plugins - -## References - -### DummyPlugin - -Renames and re-exports [default](DummyPlugin/DummyPlugin/functions/default.md) - -*** - -### DummyPlugin2 - -Renames and re-exports [default](DummyPlugin2/DummyPlugin2/functions/default.md) diff --git a/docs/docs/auto-docs/constants/README.md b/docs/docs/auto-docs/constants/README.md deleted file mode 100644 index 1813337544..0000000000 --- a/docs/docs/auto-docs/constants/README.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../README.md) - -*** - -[talawa-admin](../modules.md) / constants - -# constants - -## Variables - -- [socialMediaLinks](variables/socialMediaLinks.md) diff --git a/docs/docs/auto-docs/constants/variables/socialMediaLinks.md b/docs/docs/auto-docs/constants/variables/socialMediaLinks.md deleted file mode 100644 index 56138133af..0000000000 --- a/docs/docs/auto-docs/constants/variables/socialMediaLinks.md +++ /dev/null @@ -1,25 +0,0 @@ -[**talawa-admin**](../../README.md) - -*** - -[talawa-admin](../../modules.md) / [constants](../README.md) / socialMediaLinks - -# Variable: socialMediaLinks - -> `const` **socialMediaLinks**: `object`[] - -Defined in: [src/constants.ts:12](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/constants.ts#L12) - -## Type declaration - -### href - -> **href**: `string` = `'https://www.facebook.com/palisadoesproject'` - -### logo - -> **logo**: `string` = `FacebookLogo` - -### tag - -> **tag**: `string` = `'facebook'` diff --git a/docs/docs/auto-docs/index/README.md b/docs/docs/auto-docs/index/README.md deleted file mode 100644 index 73aef1b7cd..0000000000 --- a/docs/docs/auto-docs/index/README.md +++ /dev/null @@ -1,7 +0,0 @@ -[**talawa-admin**](../README.md) - -*** - -[talawa-admin](../modules.md) / index - -# index diff --git a/docs/docs/auto-docs/modules.md b/docs/docs/auto-docs/modules.md deleted file mode 100644 index 75c3a920fa..0000000000 --- a/docs/docs/auto-docs/modules.md +++ /dev/null @@ -1,337 +0,0 @@ -[**talawa-admin**](README.md) - -*** - -# talawa-admin - -## Modules - -- [App](App/README.md) -- [assets/svgs/social-icons](assets/svgs/social-icons/README.md) -- [components/AddOn/AddOn](components/AddOn/AddOn/README.md) -- [components/AddOn/core/AddOnEntry/AddOnEntry](components/AddOn/core/AddOnEntry/AddOnEntry/README.md) -- [components/AddOn/core/AddOnEntry/AddOnEntryMocks](components/AddOn/core/AddOnEntry/AddOnEntryMocks/README.md) -- [components/AddOn/core/AddOnRegister/AddOnRegister](components/AddOn/core/AddOnRegister/AddOnRegister/README.md) -- [components/AddOn/core/AddOnStore/AddOnStore](components/AddOn/core/AddOnStore/AddOnStore/README.md) -- [components/AddOn/support/components/Action/Action](components/AddOn/support/components/Action/Action/README.md) -- [components/AddOn/support/components/MainContent/MainContent](components/AddOn/support/components/MainContent/MainContent/README.md) -- [components/AddOn/support/components/SidePanel/SidePanel](components/AddOn/support/components/SidePanel/SidePanel/README.md) -- [components/AddOn/support/services/Plugin.helper](components/AddOn/support/services/Plugin.helper/README.md) -- [components/AddOn/support/services/Render.helper](components/AddOn/support/services/Render.helper/README.md) -- [components/AddPeopleToTag/AddPeopleToTag](components/AddPeopleToTag/AddPeopleToTag/README.md) -- [components/AddPeopleToTag/AddPeopleToTagsMocks](components/AddPeopleToTag/AddPeopleToTagsMocks/README.md) -- [components/Advertisements/Advertisements](components/Advertisements/Advertisements/README.md) -- [components/Advertisements/core/AdvertisementEntry/AdvertisementEntry](components/Advertisements/core/AdvertisementEntry/AdvertisementEntry/README.md) -- [components/Advertisements/core/AdvertisementRegister/AdvertisementRegister](components/Advertisements/core/AdvertisementRegister/AdvertisementRegister/README.md) -- [components/AgendaCategory/AgendaCategoryContainer](components/AgendaCategory/AgendaCategoryContainer/README.md) -- [components/AgendaCategory/AgendaCategoryContainerMocks](components/AgendaCategory/AgendaCategoryContainerMocks/README.md) -- [components/AgendaCategory/AgendaCategoryContainerProps](components/AgendaCategory/AgendaCategoryContainerProps/README.md) -- [components/AgendaItems/AgendaItemsContainer](components/AgendaItems/AgendaItemsContainer/README.md) -- [components/AgendaItems/AgendaItemsContainerMocks](components/AgendaItems/AgendaItemsContainerMocks/README.md) -- [components/AgendaItems/AgendaItemsContainerProps](components/AgendaItems/AgendaItemsContainerProps/README.md) -- [components/AgendaItems/AgendaItemsCreateModal](components/AgendaItems/AgendaItemsCreateModal/README.md) -- [components/AgendaItems/AgendaItemsDeleteModal](components/AgendaItems/AgendaItemsDeleteModal/README.md) -- [components/AgendaItems/AgendaItemsPreviewModal](components/AgendaItems/AgendaItemsPreviewModal/README.md) -- [components/AgendaItems/AgendaItemsUpdateModal](components/AgendaItems/AgendaItemsUpdateModal/README.md) -- [components/Avatar/Avatar](components/Avatar/Avatar/README.md) -- [components/ChangeLanguageDropdown/ChangeLanguageDropDown](components/ChangeLanguageDropdown/ChangeLanguageDropDown/README.md) -- [components/CheckIn/CheckInModal](components/CheckIn/CheckInModal/README.md) -- [components/CheckIn/CheckInWrapper](components/CheckIn/CheckInWrapper/README.md) -- [components/CheckIn/mocks](components/CheckIn/mocks/README.md) -- [components/CheckIn/TableRow](components/CheckIn/TableRow/README.md) -- [components/CheckIn/tagTemplate](components/CheckIn/tagTemplate/README.md) -- [components/CheckIn/types](components/CheckIn/types/README.md) -- [components/CollapsibleDropdown/CollapsibleDropdown](components/CollapsibleDropdown/CollapsibleDropdown/README.md) -- [components/ContriStats/ContriStats](components/ContriStats/ContriStats/README.md) -- [components/CurrentHourIndicator/CurrentHourIndicator](components/CurrentHourIndicator/CurrentHourIndicator/README.md) -- [components/DynamicDropDown/DynamicDropDown](components/DynamicDropDown/DynamicDropDown/README.md) -- [components/EditCustomFieldDropDown/EditCustomFieldDropDown](components/EditCustomFieldDropDown/EditCustomFieldDropDown/README.md) -- [components/EventCalendar/EventCalendar](components/EventCalendar/EventCalendar/README.md) -- [components/EventCalendar/EventHeader](components/EventCalendar/EventHeader/README.md) -- [components/EventCalendar/YearlyEventCalender](components/EventCalendar/YearlyEventCalender/README.md) -- [components/EventDashboardScreen/EventDashboardScreen](components/EventDashboardScreen/EventDashboardScreen/README.md) -- [components/EventListCard/EventListCard](components/EventListCard/EventListCard/README.md) -- [components/EventListCard/EventListCardMocks](components/EventListCard/EventListCardMocks/README.md) -- [components/EventListCard/EventListCardModals](components/EventListCard/EventListCardModals/README.md) -- [components/EventListCard/EventListCardProps](components/EventListCard/EventListCardProps/README.md) -- [components/EventManagement/Dashboard/EventDashboard](components/EventManagement/Dashboard/EventDashboard/README.md) -- [components/EventManagement/Dashboard/EventDashboard.mocks](components/EventManagement/Dashboard/EventDashboard.mocks/README.md) -- [components/EventManagement/EventAgendaItems/EventAgendaItems](components/EventManagement/EventAgendaItems/EventAgendaItems/README.md) -- [components/EventManagement/EventAgendaItems/EventAgendaItemsMocks](components/EventManagement/EventAgendaItems/EventAgendaItemsMocks/README.md) -- [components/EventManagement/EventAttendance/Attendance.mocks](components/EventManagement/EventAttendance/Attendance.mocks/README.md) -- [components/EventManagement/EventAttendance/AttendedEventList](components/EventManagement/EventAttendance/AttendedEventList/README.md) -- [components/EventManagement/EventAttendance/EventAttendance](components/EventManagement/EventAttendance/EventAttendance/README.md) -- [components/EventManagement/EventAttendance/EventStatistics](components/EventManagement/EventAttendance/EventStatistics/README.md) -- [components/EventManagement/EventAttendance/InterfaceEvents](components/EventManagement/EventAttendance/InterfaceEvents/README.md) -- [components/EventManagement/EventRegistrant/EventRegistrants](components/EventManagement/EventRegistrant/EventRegistrants/README.md) -- [components/EventManagement/EventRegistrant/Registrations.mocks](components/EventManagement/EventRegistrant/Registrations.mocks/README.md) -- [components/EventRegistrantsModal/AddOnSpotAttendee](components/EventRegistrantsModal/AddOnSpotAttendee/README.md) -- [components/EventRegistrantsModal/EventRegistrantsModal](components/EventRegistrantsModal/EventRegistrantsModal/README.md) -- [components/EventRegistrantsModal/EventRegistrantsWrapper](components/EventRegistrantsModal/EventRegistrantsWrapper/README.md) -- [components/EventStats/EventStats](components/EventStats/EventStats/README.md) -- [components/EventStats/EventStatsWrapper](components/EventStats/EventStatsWrapper/README.md) -- [components/EventStats/Statistics/AverageRating](components/EventStats/Statistics/AverageRating/README.md) -- [components/EventStats/Statistics/Feedback](components/EventStats/Statistics/Feedback/README.md) -- [components/EventStats/Statistics/Review](components/EventStats/Statistics/Review/README.md) -- [components/GroupChatDetails/GroupChatDetails](components/GroupChatDetails/GroupChatDetails/README.md) -- [components/HolidayCards/HolidayCard](components/HolidayCards/HolidayCard/README.md) -- [components/IconComponent/IconComponent](components/IconComponent/IconComponent/README.md) -- [components/InfiniteScrollLoader/InfiniteScrollLoader](components/InfiniteScrollLoader/InfiniteScrollLoader/README.md) -- [components/LeftDrawer/LeftDrawer](components/LeftDrawer/LeftDrawer/README.md) -- [components/LeftDrawerOrg/LeftDrawerOrg](components/LeftDrawerOrg/LeftDrawerOrg/README.md) -- [components/Loader/Loader](components/Loader/Loader/README.md) -- [components/LoginPortalToggle/LoginPortalToggle](components/LoginPortalToggle/LoginPortalToggle/README.md) -- [components/MemberDetail/customTableCell](components/MemberDetail/customTableCell/README.md) -- [components/MemberDetail/EventsAttendedByMember](components/MemberDetail/EventsAttendedByMember/README.md) -- [components/MemberDetail/EventsAttendedCardItem](components/MemberDetail/EventsAttendedCardItem/README.md) -- [components/MemberDetail/EventsAttendedMemberModal](components/MemberDetail/EventsAttendedMemberModal/README.md) -- [components/MemberRequestCard/MemberRequestCard](components/MemberRequestCard/MemberRequestCard/README.md) -- [components/NotFound/NotFound](components/NotFound/NotFound/README.md) -- [components/OrgAdminListCard/OrgAdminListCard](components/OrgAdminListCard/OrgAdminListCard/README.md) -- [components/OrganizationCard/OrganizationCard](components/OrganizationCard/OrganizationCard/README.md) -- [components/OrganizationCardStart/OrganizationCardStart](components/OrganizationCardStart/OrganizationCardStart/README.md) -- [components/OrganizationDashCards/CardItem](components/OrganizationDashCards/CardItem/README.md) -- [components/OrganizationDashCards/CardItemLoading](components/OrganizationDashCards/CardItemLoading/README.md) -- [components/OrganizationDashCards/DashboardCard](components/OrganizationDashCards/DashboardCard/README.md) -- [components/OrganizationDashCards/DashboardCardLoading](components/OrganizationDashCards/DashboardCardLoading/README.md) -- [components/OrganizationScreen/OrganizationScreen](components/OrganizationScreen/OrganizationScreen/README.md) -- [components/OrgContriCards/OrgContriCards](components/OrgContriCards/OrgContriCards/README.md) -- [components/OrgDelete/OrgDelete](components/OrgDelete/OrgDelete/README.md) -- [components/OrgListCard/OrgListCard](components/OrgListCard/OrgListCard/README.md) -- [components/OrgListCard/TruncatedText](components/OrgListCard/TruncatedText/README.md) -- [components/OrgListCard/useDebounce](components/OrgListCard/useDebounce/README.md) -- [components/OrgPeopleListCard/OrgPeopleListCard](components/OrgPeopleListCard/OrgPeopleListCard/README.md) -- [components/OrgPostCard/DeletePostModal](components/OrgPostCard/DeletePostModal/README.md) -- [components/OrgPostCard/OrgPostCard](components/OrgPostCard/OrgPostCard/README.md) -- [components/OrgSettings/ActionItemCategories/CategoryModal](components/OrgSettings/ActionItemCategories/CategoryModal/README.md) -- [components/OrgSettings/ActionItemCategories/OrgActionItemCategories](components/OrgSettings/ActionItemCategories/OrgActionItemCategories/README.md) -- [components/OrgSettings/ActionItemCategories/OrgActionItemCategoryMocks](components/OrgSettings/ActionItemCategories/OrgActionItemCategoryMocks/README.md) -- [components/OrgSettings/AgendaItemCategories/AgendaCategoryCreateModal](components/OrgSettings/AgendaItemCategories/AgendaCategoryCreateModal/README.md) -- [components/OrgSettings/AgendaItemCategories/AgendaCategoryDeleteModal](components/OrgSettings/AgendaItemCategories/AgendaCategoryDeleteModal/README.md) -- [components/OrgSettings/AgendaItemCategories/AgendaCategoryPreviewModal](components/OrgSettings/AgendaItemCategories/AgendaCategoryPreviewModal/README.md) -- [components/OrgSettings/AgendaItemCategories/AgendaCategoryUpdateModal](components/OrgSettings/AgendaItemCategories/AgendaCategoryUpdateModal/README.md) -- [components/OrgSettings/AgendaItemCategories/OrganizationAgendaCategory](components/OrgSettings/AgendaItemCategories/OrganizationAgendaCategory/README.md) -- [components/OrgSettings/AgendaItemCategories/OrganizationAgendaCategoryErrorMocks](components/OrgSettings/AgendaItemCategories/OrganizationAgendaCategoryErrorMocks/README.md) -- [components/OrgSettings/AgendaItemCategories/OrganizationAgendaCategoryMocks](components/OrgSettings/AgendaItemCategories/OrganizationAgendaCategoryMocks/README.md) -- [components/OrgSettings/General/DeleteOrg/DeleteOrg](components/OrgSettings/General/DeleteOrg/DeleteOrg/README.md) -- [components/OrgSettings/General/GeneralSettings](components/OrgSettings/General/GeneralSettings/README.md) -- [components/OrgSettings/General/OrgProfileFieldSettings/OrgProfileFieldSettings](components/OrgSettings/General/OrgProfileFieldSettings/OrgProfileFieldSettings/README.md) -- [components/OrgSettings/General/OrgUpdate/OrgUpdate](components/OrgSettings/General/OrgUpdate/OrgUpdate/README.md) -- [components/OrgSettings/General/OrgUpdate/OrgUpdateMocks](components/OrgSettings/General/OrgUpdate/OrgUpdateMocks/README.md) -- [components/Pagination/Pagination](components/Pagination/Pagination/README.md) -- [components/PaginationList/PaginationList](components/PaginationList/PaginationList/README.md) -- [components/plugins](components/plugins/README.md) -- [components/plugins/DummyPlugin/DummyPlugin](components/plugins/DummyPlugin/DummyPlugin/README.md) -- [components/plugins/DummyPlugin2/DummyPlugin2](components/plugins/DummyPlugin2/DummyPlugin2/README.md) -- [components/ProfileDropdown/ProfileDropdown](components/ProfileDropdown/ProfileDropdown/README.md) -- [components/RecurrenceOptions/CustomRecurrenceModal](components/RecurrenceOptions/CustomRecurrenceModal/README.md) -- [components/RecurrenceOptions/RecurrenceOptions](components/RecurrenceOptions/RecurrenceOptions/README.md) -- [components/RequestsTableItem/RequestsTableItem](components/RequestsTableItem/RequestsTableItem/README.md) -- [components/RequestsTableItem/RequestsTableItemMocks](components/RequestsTableItem/RequestsTableItemMocks/README.md) -- [components/SecuredRoute/SecuredRoute](components/SecuredRoute/SecuredRoute/README.md) -- [components/SuperAdminScreen/SuperAdminScreen](components/SuperAdminScreen/SuperAdminScreen/README.md) -- [components/TableLoader/TableLoader](components/TableLoader/TableLoader/README.md) -- [components/TagActions/TagActions](components/TagActions/TagActions/README.md) -- [components/TagActions/TagActionsMocks](components/TagActions/TagActionsMocks/README.md) -- [components/TagActions/TagNode](components/TagActions/TagNode/README.md) -- [components/TagActions/TagNodeMocks](components/TagActions/TagNodeMocks/README.md) -- [components/UpdateSession/UpdateSession](components/UpdateSession/UpdateSession/README.md) -- [components/UserListCard/UserListCard](components/UserListCard/UserListCard/README.md) -- [components/UserPasswordUpdate/UserPasswordUpdate](components/UserPasswordUpdate/UserPasswordUpdate/README.md) -- [components/UserPasswordUpdate/UserPasswordUpdateMocks](components/UserPasswordUpdate/UserPasswordUpdateMocks/README.md) -- [components/UserPortal/ChatRoom/ChatRoom](components/UserPortal/ChatRoom/ChatRoom/README.md) -- [components/UserPortal/CommentCard/CommentCard](components/UserPortal/CommentCard/CommentCard/README.md) -- [components/UserPortal/ContactCard/ContactCard](components/UserPortal/ContactCard/ContactCard/README.md) -- [components/UserPortal/CreateDirectChat/CreateDirectChat](components/UserPortal/CreateDirectChat/CreateDirectChat/README.md) -- [components/UserPortal/CreateGroupChat/CreateGroupChat](components/UserPortal/CreateGroupChat/CreateGroupChat/README.md) -- [components/UserPortal/DonationCard/DonationCard](components/UserPortal/DonationCard/DonationCard/README.md) -- [components/UserPortal/EventCard/EventCard](components/UserPortal/EventCard/EventCard/README.md) -- [components/UserPortal/OrganizationCard/OrganizationCard](components/UserPortal/OrganizationCard/OrganizationCard/README.md) -- [components/UserPortal/OrganizationNavbar/OrganizationNavbar](components/UserPortal/OrganizationNavbar/OrganizationNavbar/README.md) -- [components/UserPortal/OrganizationSidebar/OrganizationSidebar](components/UserPortal/OrganizationSidebar/OrganizationSidebar/README.md) -- [components/UserPortal/PeopleCard/PeopleCard](components/UserPortal/PeopleCard/PeopleCard/README.md) -- [components/UserPortal/PostCard/PostCard](components/UserPortal/PostCard/PostCard/README.md) -- [components/UserPortal/PromotedPost/PromotedPost](components/UserPortal/PromotedPost/PromotedPost/README.md) -- [components/UserPortal/Register/Register](components/UserPortal/Register/Register/README.md) -- [components/UserPortal/SecuredRouteForUser/SecuredRouteForUser](components/UserPortal/SecuredRouteForUser/SecuredRouteForUser/README.md) -- [components/UserPortal/StartPostModal/StartPostModal](components/UserPortal/StartPostModal/StartPostModal/README.md) -- [components/UserPortal/UserNavbar/UserNavbar](components/UserPortal/UserNavbar/UserNavbar/README.md) -- [components/UserPortal/UserProfile/EventsAttendedByUser](components/UserPortal/UserProfile/EventsAttendedByUser/README.md) -- [components/UserPortal/UserProfile/UserAddressFields](components/UserPortal/UserProfile/UserAddressFields/README.md) -- [components/UserPortal/UserSidebar/UserSidebar](components/UserPortal/UserSidebar/UserSidebar/README.md) -- [components/UserPortal/UserSidebarOrg/UserSidebarOrg](components/UserPortal/UserSidebarOrg/UserSidebarOrg/README.md) -- [components/UserProfileSettings/DeleteUser](components/UserProfileSettings/DeleteUser/README.md) -- [components/UserProfileSettings/OtherSettings](components/UserProfileSettings/OtherSettings/README.md) -- [components/UserProfileSettings/UserProfile](components/UserProfileSettings/UserProfile/README.md) -- [components/UsersTableItem/UsersTableItem](components/UsersTableItem/UsersTableItem/README.md) -- [components/UsersTableItem/UserTableItemMocks](components/UsersTableItem/UserTableItemMocks/README.md) -- [components/Venues/VenueCard](components/Venues/VenueCard/README.md) -- [components/Venues/VenueModal](components/Venues/VenueModal/README.md) -- [Constant/constant](Constant/constant/README.md) -- [constants](constants/README.md) -- [GraphQl/Mutations/ActionItemCategoryMutations](GraphQl/Mutations/ActionItemCategoryMutations/README.md) -- [GraphQl/Mutations/ActionItemMutations](GraphQl/Mutations/ActionItemMutations/README.md) -- [GraphQl/Mutations/AgendaCategoryMutations](GraphQl/Mutations/AgendaCategoryMutations/README.md) -- [GraphQl/Mutations/AgendaItemMutations](GraphQl/Mutations/AgendaItemMutations/README.md) -- [GraphQl/Mutations/CampaignMutation](GraphQl/Mutations/CampaignMutation/README.md) -- [GraphQl/Mutations/CommentMutations](GraphQl/Mutations/CommentMutations/README.md) -- [GraphQl/Mutations/EventAttendeeMutations](GraphQl/Mutations/EventAttendeeMutations/README.md) -- [GraphQl/Mutations/EventVolunteerMutation](GraphQl/Mutations/EventVolunteerMutation/README.md) -- [GraphQl/Mutations/FundMutation](GraphQl/Mutations/FundMutation/README.md) -- [GraphQl/Mutations/mutations](GraphQl/Mutations/mutations/README.md) -- [GraphQl/Mutations/OrganizationMutations](GraphQl/Mutations/OrganizationMutations/README.md) -- [GraphQl/Mutations/PledgeMutation](GraphQl/Mutations/PledgeMutation/README.md) -- [GraphQl/Mutations/TagMutations](GraphQl/Mutations/TagMutations/README.md) -- [GraphQl/Mutations/VenueMutations](GraphQl/Mutations/VenueMutations/README.md) -- [GraphQl/Queries/ActionItemCategoryQueries](GraphQl/Queries/ActionItemCategoryQueries/README.md) -- [GraphQl/Queries/ActionItemQueries](GraphQl/Queries/ActionItemQueries/README.md) -- [GraphQl/Queries/AgendaCategoryQueries](GraphQl/Queries/AgendaCategoryQueries/README.md) -- [GraphQl/Queries/AgendaItemQueries](GraphQl/Queries/AgendaItemQueries/README.md) -- [GraphQl/Queries/EventVolunteerQueries](GraphQl/Queries/EventVolunteerQueries/README.md) -- [GraphQl/Queries/fundQueries](GraphQl/Queries/fundQueries/README.md) -- [GraphQl/Queries/OrganizationQueries](GraphQl/Queries/OrganizationQueries/README.md) -- [GraphQl/Queries/PlugInQueries](GraphQl/Queries/PlugInQueries/README.md) -- [GraphQl/Queries/Queries](GraphQl/Queries/Queries/README.md) -- [GraphQl/Queries/userTagQueries](GraphQl/Queries/userTagQueries/README.md) -- [index](index/README.md) -- [reportWebVitals](reportWebVitals/README.md) -- [screens/BlockUser/BlockUser](screens/BlockUser/BlockUser/README.md) -- [screens/CommunityProfile/CommunityProfile](screens/CommunityProfile/CommunityProfile/README.md) -- [screens/EventManagement/EventManagement](screens/EventManagement/EventManagement/README.md) -- [screens/EventVolunteers/Requests/Requests](screens/EventVolunteers/Requests/Requests/README.md) -- [screens/EventVolunteers/Requests/Requests.mocks](screens/EventVolunteers/Requests/Requests.mocks/README.md) -- [screens/EventVolunteers/VolunteerContainer](screens/EventVolunteers/VolunteerContainer/README.md) -- [screens/EventVolunteers/VolunteerGroups/VolunteerGroupDeleteModal](screens/EventVolunteers/VolunteerGroups/VolunteerGroupDeleteModal/README.md) -- [screens/EventVolunteers/VolunteerGroups/VolunteerGroupModal](screens/EventVolunteers/VolunteerGroups/VolunteerGroupModal/README.md) -- [screens/EventVolunteers/VolunteerGroups/VolunteerGroups](screens/EventVolunteers/VolunteerGroups/VolunteerGroups/README.md) -- [screens/EventVolunteers/VolunteerGroups/VolunteerGroups.mocks](screens/EventVolunteers/VolunteerGroups/VolunteerGroups.mocks/README.md) -- [screens/EventVolunteers/VolunteerGroups/VolunteerGroupViewModal](screens/EventVolunteers/VolunteerGroups/VolunteerGroupViewModal/README.md) -- [screens/EventVolunteers/Volunteers/VolunteerCreateModal](screens/EventVolunteers/Volunteers/VolunteerCreateModal/README.md) -- [screens/EventVolunteers/Volunteers/VolunteerDeleteModal](screens/EventVolunteers/Volunteers/VolunteerDeleteModal/README.md) -- [screens/EventVolunteers/Volunteers/Volunteers](screens/EventVolunteers/Volunteers/Volunteers/README.md) -- [screens/EventVolunteers/Volunteers/Volunteers.mocks](screens/EventVolunteers/Volunteers/Volunteers.mocks/README.md) -- [screens/EventVolunteers/Volunteers/VolunteerViewModal](screens/EventVolunteers/Volunteers/VolunteerViewModal/README.md) -- [screens/ForgotPassword/ForgotPassword](screens/ForgotPassword/ForgotPassword/README.md) -- [screens/FundCampaignPledge/FundCampaignPledge](screens/FundCampaignPledge/FundCampaignPledge/README.md) -- [screens/FundCampaignPledge/PledgeDeleteModal](screens/FundCampaignPledge/PledgeDeleteModal/README.md) -- [screens/FundCampaignPledge/PledgeModal](screens/FundCampaignPledge/PledgeModal/README.md) -- [screens/FundCampaignPledge/PledgesMocks](screens/FundCampaignPledge/PledgesMocks/README.md) -- [screens/Leaderboard/Leaderboard](screens/Leaderboard/Leaderboard/README.md) -- [screens/Leaderboard/Leaderboard.mocks](screens/Leaderboard/Leaderboard.mocks/README.md) -- [screens/LoginPage/LoginPage](screens/LoginPage/LoginPage/README.md) -- [screens/ManageTag/EditUserTagModal](screens/ManageTag/EditUserTagModal/README.md) -- [screens/ManageTag/ManageTag](screens/ManageTag/ManageTag/README.md) -- [screens/ManageTag/ManageTagMockComponents/MockAddPeopleToTag](screens/ManageTag/ManageTagMockComponents/MockAddPeopleToTag/README.md) -- [screens/ManageTag/ManageTagMockComponents/MockTagActions](screens/ManageTag/ManageTagMockComponents/MockTagActions/README.md) -- [screens/ManageTag/ManageTagMocks](screens/ManageTag/ManageTagMocks/README.md) -- [screens/ManageTag/RemoveUserTagModal](screens/ManageTag/RemoveUserTagModal/README.md) -- [screens/ManageTag/UnassignUserTagModal](screens/ManageTag/UnassignUserTagModal/README.md) -- [screens/MemberDetail/MemberDetail](screens/MemberDetail/MemberDetail/README.md) -- [screens/MemberDetail/MemberDetailMocks](screens/MemberDetail/MemberDetailMocks/README.md) -- [screens/OrganizationActionItems/ItemDeleteModal](screens/OrganizationActionItems/ItemDeleteModal/README.md) -- [screens/OrganizationActionItems/ItemModal](screens/OrganizationActionItems/ItemModal/README.md) -- [screens/OrganizationActionItems/ItemUpdateStatusModal](screens/OrganizationActionItems/ItemUpdateStatusModal/README.md) -- [screens/OrganizationActionItems/ItemViewModal](screens/OrganizationActionItems/ItemViewModal/README.md) -- [screens/OrganizationActionItems/OrganizationActionItem.mocks](screens/OrganizationActionItems/OrganizationActionItem.mocks/README.md) -- [screens/OrganizationActionItems/OrganizationActionItems](screens/OrganizationActionItems/OrganizationActionItems/README.md) -- [screens/OrganizationActionItems/testObject.mocks](screens/OrganizationActionItems/testObject.mocks/README.md) -- [screens/OrganizationDashboard/OrganizationDashboard](screens/OrganizationDashboard/OrganizationDashboard/README.md) -- [screens/OrganizationDashboard/OrganizationDashboardMocks](screens/OrganizationDashboard/OrganizationDashboardMocks/README.md) -- [screens/OrganizationEvents/OrganizationEvents](screens/OrganizationEvents/OrganizationEvents/README.md) -- [screens/OrganizationEvents/OrganizationEventsMocks](screens/OrganizationEvents/OrganizationEventsMocks/README.md) -- [screens/OrganizationFundCampaign/CampaignModal](screens/OrganizationFundCampaign/CampaignModal/README.md) -- [screens/OrganizationFundCampaign/OrganizationFundCampagins](screens/OrganizationFundCampaign/OrganizationFundCampagins/README.md) -- [screens/OrganizationFundCampaign/OrganizationFundCampaignMocks](screens/OrganizationFundCampaign/OrganizationFundCampaignMocks/README.md) -- [screens/OrganizationFunds/FundModal](screens/OrganizationFunds/FundModal/README.md) -- [screens/OrganizationFunds/OrganizationFunds](screens/OrganizationFunds/OrganizationFunds/README.md) -- [screens/OrganizationFunds/OrganizationFundsMocks](screens/OrganizationFunds/OrganizationFundsMocks/README.md) -- [screens/OrganizationPeople/AddMember](screens/OrganizationPeople/AddMember/README.md) -- [screens/OrganizationPeople/MockDataTypes](screens/OrganizationPeople/MockDataTypes/README.md) -- [screens/OrganizationPeople/OrganizationPeople](screens/OrganizationPeople/OrganizationPeople/README.md) -- [screens/OrganizationTags/OrganizationTags](screens/OrganizationTags/OrganizationTags/README.md) -- [screens/OrganizationTags/OrganizationTagsMocks](screens/OrganizationTags/OrganizationTagsMocks/README.md) -- [screens/OrganizationVenues/OrganizationVenues](screens/OrganizationVenues/OrganizationVenues/README.md) -- [screens/OrgContribution/OrgContribution](screens/OrgContribution/OrgContribution/README.md) -- [screens/OrgList/OrganizationModal](screens/OrgList/OrganizationModal/README.md) -- [screens/OrgList/OrgList](screens/OrgList/OrgList/README.md) -- [screens/OrgList/OrgListMocks](screens/OrgList/OrgListMocks/README.md) -- [screens/OrgPost/OrgPost](screens/OrgPost/OrgPost/README.md) -- [screens/OrgSettings/OrgSettings](screens/OrgSettings/OrgSettings/README.md) -- [screens/OrgSettings/OrgSettings.mocks](screens/OrgSettings/OrgSettings.mocks/README.md) -- [screens/PageNotFound/PageNotFound](screens/PageNotFound/PageNotFound/README.md) -- [screens/Requests/Requests](screens/Requests/Requests/README.md) -- [screens/Requests/RequestsMocks](screens/Requests/RequestsMocks/README.md) -- [screens/SubTags/SubTags](screens/SubTags/SubTags/README.md) -- [screens/SubTags/SubTagsMocks](screens/SubTags/SubTagsMocks/README.md) -- [screens/UserPortal/Campaigns/Campaigns](screens/UserPortal/Campaigns/Campaigns/README.md) -- [screens/UserPortal/Campaigns/CampaignsMocks](screens/UserPortal/Campaigns/CampaignsMocks/README.md) -- [screens/UserPortal/Campaigns/PledgeModal](screens/UserPortal/Campaigns/PledgeModal/README.md) -- [screens/UserPortal/Chat/Chat](screens/UserPortal/Chat/Chat/README.md) -- [screens/UserPortal/Donate/Donate](screens/UserPortal/Donate/Donate/README.md) -- [screens/UserPortal/Events/Events](screens/UserPortal/Events/Events/README.md) -- [screens/UserPortal/LeaveOrganization/LeaveOrganization](screens/UserPortal/LeaveOrganization/LeaveOrganization/README.md) -- [screens/UserPortal/Organizations/Organizations](screens/UserPortal/Organizations/Organizations/README.md) -- [screens/UserPortal/People/People](screens/UserPortal/People/People/README.md) -- [screens/UserPortal/Pledges/Pledges](screens/UserPortal/Pledges/Pledges/README.md) -- [screens/UserPortal/Pledges/PledgesMocks](screens/UserPortal/Pledges/PledgesMocks/README.md) -- [screens/UserPortal/Posts/Posts](screens/UserPortal/Posts/Posts/README.md) -- [screens/UserPortal/Settings/Settings](screens/UserPortal/Settings/Settings/README.md) -- [screens/UserPortal/UserScreen/UserScreen](screens/UserPortal/UserScreen/UserScreen/README.md) -- [screens/UserPortal/Volunteer/Actions/Actions](screens/UserPortal/Volunteer/Actions/Actions/README.md) -- [screens/UserPortal/Volunteer/Actions/Actions.mocks](screens/UserPortal/Volunteer/Actions/Actions.mocks/README.md) -- [screens/UserPortal/Volunteer/Groups/GroupModal](screens/UserPortal/Volunteer/Groups/GroupModal/README.md) -- [screens/UserPortal/Volunteer/Groups/Groups](screens/UserPortal/Volunteer/Groups/Groups/README.md) -- [screens/UserPortal/Volunteer/Groups/Groups.mocks](screens/UserPortal/Volunteer/Groups/Groups.mocks/README.md) -- [screens/UserPortal/Volunteer/Invitations/Invitations](screens/UserPortal/Volunteer/Invitations/Invitations/README.md) -- [screens/UserPortal/Volunteer/Invitations/Invitations.mocks](screens/UserPortal/Volunteer/Invitations/Invitations.mocks/README.md) -- [screens/UserPortal/Volunteer/UpcomingEvents/UpcomingEvents](screens/UserPortal/Volunteer/UpcomingEvents/UpcomingEvents/README.md) -- [screens/UserPortal/Volunteer/UpcomingEvents/UpcomingEvents.mocks](screens/UserPortal/Volunteer/UpcomingEvents/UpcomingEvents.mocks/README.md) -- [screens/UserPortal/Volunteer/VolunteerManagement](screens/UserPortal/Volunteer/VolunteerManagement/README.md) -- [screens/Users/Users](screens/Users/Users/README.md) -- [screens/Users/UsersMocks](screens/Users/UsersMocks/README.md) -- [setup/askAndSetDockerOption/askAndSetDockerOption](setup/askAndSetDockerOption/askAndSetDockerOption/README.md) -- [setup/askAndUpdatePort/askAndUpdatePort](setup/askAndUpdatePort/askAndUpdatePort/README.md) -- [setup/askForCustomPort/askForCustomPort](setup/askForCustomPort/askForCustomPort/README.md) -- [setup/askForDocker/askForDocker](setup/askForDocker/askForDocker/README.md) -- [setup/askForTalawaApiUrl/askForTalawaApiUrl](setup/askForTalawaApiUrl/askForTalawaApiUrl/README.md) -- [setup/checkConnection/checkConnection](setup/checkConnection/checkConnection/README.md) -- [setup/checkEnvFile/checkEnvFile](setup/checkEnvFile/checkEnvFile/README.md) -- [setup/updateEnvFile/updateEnvFile](setup/updateEnvFile/updateEnvFile/README.md) -- [setup/validateRecaptcha/validateRecaptcha](setup/validateRecaptcha/validateRecaptcha/README.md) -- [setupTests](setupTests/README.md) -- [state](state/README.md) -- [state/action-creators](state/action-creators/README.md) -- [state/helpers/Action](state/helpers/Action/README.md) -- [state/hooks](state/hooks/README.md) -- [state/reducers](state/reducers/README.md) -- [state/reducers/pluginReducer](state/reducers/pluginReducer/README.md) -- [state/reducers/routesReducer](state/reducers/routesReducer/README.md) -- [state/reducers/userRoutesReducer](state/reducers/userRoutesReducer/README.md) -- [state/store](state/store/README.md) -- [subComponents/SortingButton](subComponents/SortingButton/README.md) -- [utils/chartToPdf](utils/chartToPdf/README.md) -- [utils/convertToBase64](utils/convertToBase64/README.md) -- [utils/currency](utils/currency/README.md) -- [utils/dateFormatter](utils/dateFormatter/README.md) -- [utils/errorHandler](utils/errorHandler/README.md) -- [utils/fieldTypes](utils/fieldTypes/README.md) -- [utils/formEnumFields](utils/formEnumFields/README.md) -- [utils/getOrganizationId](utils/getOrganizationId/README.md) -- [utils/getRefreshToken](utils/getRefreshToken/README.md) -- [utils/i18n](utils/i18n/README.md) -- [utils/i18nForTest](utils/i18nForTest/README.md) -- [utils/interfaces](utils/interfaces/README.md) -- [utils/languages](utils/languages/README.md) -- [utils/linkValidator](utils/linkValidator/README.md) -- [utils/organizationTagsUtils](utils/organizationTagsUtils/README.md) -- [utils/recurrenceUtils](utils/recurrenceUtils/README.md) -- [utils/recurrenceUtils/recurrenceConstants](utils/recurrenceUtils/recurrenceConstants/README.md) -- [utils/recurrenceUtils/recurrenceTypes](utils/recurrenceUtils/recurrenceTypes/README.md) -- [utils/recurrenceUtils/recurrenceUtilityFunctions](utils/recurrenceUtils/recurrenceUtilityFunctions/README.md) -- [utils/StaticMockLink](utils/StaticMockLink/README.md) -- [utils/timezoneUtils](utils/timezoneUtils/README.md) -- [utils/timezoneUtils/dateTimeConfig](utils/timezoneUtils/dateTimeConfig/README.md) -- [utils/timezoneUtils/dateTimeMiddleware](utils/timezoneUtils/dateTimeMiddleware/README.md) -- [utils/useLocalstorage](utils/useLocalstorage/README.md) -- [utils/useSession](utils/useSession/README.md) -- [vite-env](vite-env/README.md) diff --git a/docs/docs/auto-docs/reportWebVitals/README.md b/docs/docs/auto-docs/reportWebVitals/README.md deleted file mode 100644 index 7d1257e8c6..0000000000 --- a/docs/docs/auto-docs/reportWebVitals/README.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../README.md) - -*** - -[talawa-admin](../modules.md) / reportWebVitals - -# reportWebVitals - -## Functions - -- [default](functions/default.md) diff --git a/docs/docs/auto-docs/reportWebVitals/functions/default.md b/docs/docs/auto-docs/reportWebVitals/functions/default.md deleted file mode 100644 index 4ae7afc222..0000000000 --- a/docs/docs/auto-docs/reportWebVitals/functions/default.md +++ /dev/null @@ -1,21 +0,0 @@ -[**talawa-admin**](../../README.md) - -*** - -[talawa-admin](../../modules.md) / [reportWebVitals](../README.md) / default - -# Function: default() - -> **default**(`onPerfEntry`?): `void` - -Defined in: [src/reportWebVitals.ts:4](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/reportWebVitals.ts#L4) - -## Parameters - -### onPerfEntry? - -(`metric`) => `void` - -## Returns - -`void` diff --git a/docs/docs/auto-docs/screens/BlockUser/BlockUser/README.md b/docs/docs/auto-docs/screens/BlockUser/BlockUser/README.md deleted file mode 100644 index 5966130741..0000000000 --- a/docs/docs/auto-docs/screens/BlockUser/BlockUser/README.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / screens/BlockUser/BlockUser - -# screens/BlockUser/BlockUser - -## Functions - -- [default](functions/default.md) diff --git a/docs/docs/auto-docs/screens/BlockUser/BlockUser/functions/default.md b/docs/docs/auto-docs/screens/BlockUser/BlockUser/functions/default.md deleted file mode 100644 index 9ab1f75bd8..0000000000 --- a/docs/docs/auto-docs/screens/BlockUser/BlockUser/functions/default.md +++ /dev/null @@ -1,28 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [screens/BlockUser/BlockUser](../README.md) / default - -# Function: default() - -> **default**(): `Element` - -Defined in: [src/screens/BlockUser/BlockUser.tsx:45](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/BlockUser/BlockUser.tsx#L45) - -Requests component displays and manages a list of users that can be blocked or unblocked. - -This component allows users to search for members by their first name or last name, -toggle between viewing blocked and all members, and perform block/unblock operations. - -## Returns - -`Element` - -JSX.Element - The `Requests` component. - -## Example - -```tsx - -``` diff --git a/docs/docs/auto-docs/screens/CommunityProfile/CommunityProfile/README.md b/docs/docs/auto-docs/screens/CommunityProfile/CommunityProfile/README.md deleted file mode 100644 index 4cfeaf8531..0000000000 --- a/docs/docs/auto-docs/screens/CommunityProfile/CommunityProfile/README.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / screens/CommunityProfile/CommunityProfile - -# screens/CommunityProfile/CommunityProfile - -## Functions - -- [default](functions/default.md) diff --git a/docs/docs/auto-docs/screens/CommunityProfile/CommunityProfile/functions/default.md b/docs/docs/auto-docs/screens/CommunityProfile/CommunityProfile/functions/default.md deleted file mode 100644 index 8b0074f2ec..0000000000 --- a/docs/docs/auto-docs/screens/CommunityProfile/CommunityProfile/functions/default.md +++ /dev/null @@ -1,30 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [screens/CommunityProfile/CommunityProfile](../README.md) / default - -# Function: default() - -> **default**(): `Element` - -Defined in: [src/screens/CommunityProfile/CommunityProfile.tsx:40](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/CommunityProfile/CommunityProfile.tsx#L40) - -`CommunityProfile` component allows users to view and update their community profile details. - -It includes functionalities to: -- Display current community profile information -- Update profile details including social media links and logo -- Reset profile changes to the initial state - -## Returns - -`Element` - -JSX.Element - The `CommunityProfile` component. - -## Example - -```tsx - -``` diff --git a/docs/docs/auto-docs/screens/EventManagement/EventManagement/README.md b/docs/docs/auto-docs/screens/EventManagement/EventManagement/README.md deleted file mode 100644 index 65b8b007de..0000000000 --- a/docs/docs/auto-docs/screens/EventManagement/EventManagement/README.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / screens/EventManagement/EventManagement - -# screens/EventManagement/EventManagement - -## Functions - -- [default](functions/default.md) diff --git a/docs/docs/auto-docs/screens/EventManagement/EventManagement/functions/default.md b/docs/docs/auto-docs/screens/EventManagement/EventManagement/functions/default.md deleted file mode 100644 index 6acdee8548..0000000000 --- a/docs/docs/auto-docs/screens/EventManagement/EventManagement/functions/default.md +++ /dev/null @@ -1,34 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [screens/EventManagement/EventManagement](../README.md) / default - -# Function: default() - -> **default**(): `Element` - -Defined in: [src/screens/EventManagement/EventManagement.tsx:91](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/EventManagement/EventManagement.tsx#L91) - -`EventManagement` component handles the display and navigation of different event management sections. - -It provides a tabbed interface for: -- Viewing event dashboard -- Managing event registrants -- Handling event actions -- Reviewing event agendas -- Viewing event statistics -- Managing event volunteers -- Managing event attendance - -## Returns - -`Element` - -JSX.Element - The `EventManagement` component. - -## Example - -```tsx - -``` diff --git a/docs/docs/auto-docs/screens/EventVolunteers/Requests/Requests.mocks/README.md b/docs/docs/auto-docs/screens/EventVolunteers/Requests/Requests.mocks/README.md deleted file mode 100644 index 75a66f86b6..0000000000 --- a/docs/docs/auto-docs/screens/EventVolunteers/Requests/Requests.mocks/README.md +++ /dev/null @@ -1,14 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / screens/EventVolunteers/Requests/Requests.mocks - -# screens/EventVolunteers/Requests/Requests.mocks - -## Variables - -- [EMPTY\_MOCKS](variables/EMPTY_MOCKS.md) -- [ERROR\_MOCKS](variables/ERROR_MOCKS.md) -- [MOCKS](variables/MOCKS.md) -- [UPDATE\_ERROR\_MOCKS](variables/UPDATE_ERROR_MOCKS.md) diff --git a/docs/docs/auto-docs/screens/EventVolunteers/Requests/Requests.mocks/variables/EMPTY_MOCKS.md b/docs/docs/auto-docs/screens/EventVolunteers/Requests/Requests.mocks/variables/EMPTY_MOCKS.md deleted file mode 100644 index 17665932f8..0000000000 --- a/docs/docs/auto-docs/screens/EventVolunteers/Requests/Requests.mocks/variables/EMPTY_MOCKS.md +++ /dev/null @@ -1,49 +0,0 @@ -[**talawa-admin**](../../../../../README.md) - -*** - -[talawa-admin](../../../../../modules.md) / [screens/EventVolunteers/Requests/Requests.mocks](../README.md) / EMPTY\_MOCKS - -# Variable: EMPTY\_MOCKS - -> `const` **EMPTY\_MOCKS**: `object`[] - -Defined in: [src/screens/EventVolunteers/Requests/Requests.mocks.ts:148](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/EventVolunteers/Requests/Requests.mocks.ts#L148) - -## Type declaration - -### request - -> **request**: `object` - -#### request.query - -> **query**: `DocumentNode` = `USER_VOLUNTEER_MEMBERSHIP` - -#### request.variables - -> **variables**: `object` - -#### request.variables.where - -> **where**: `object` - -#### request.variables.where.eventId - -> **eventId**: `string` = `'eventId'` - -#### request.variables.where.status - -> **status**: `string` = `'requested'` - -### result - -> **result**: `object` - -#### result.data - -> **data**: `object` - -#### result.data.getVolunteerMembership - -> **getVolunteerMembership**: `any`[] = `[]` diff --git a/docs/docs/auto-docs/screens/EventVolunteers/Requests/Requests.mocks/variables/ERROR_MOCKS.md b/docs/docs/auto-docs/screens/EventVolunteers/Requests/Requests.mocks/variables/ERROR_MOCKS.md deleted file mode 100644 index c2b0287b3b..0000000000 --- a/docs/docs/auto-docs/screens/EventVolunteers/Requests/Requests.mocks/variables/ERROR_MOCKS.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../../README.md) - -*** - -[talawa-admin](../../../../../modules.md) / [screens/EventVolunteers/Requests/Requests.mocks](../README.md) / ERROR\_MOCKS - -# Variable: ERROR\_MOCKS - -> `const` **ERROR\_MOCKS**: (\{ `error`: `Error`; `request`: \{ `query`: `DocumentNode`; `variables`: \{ `id`: `undefined`; `orderBy`: `any`; `status`: `undefined`; `where`: \{ `eventId`: `string`; `status`: `string`; `userName`: `any`; \}; \}; \}; \} \| \{ `error`: `Error`; `request`: \{ `query`: `DocumentNode`; `variables`: \{ `id`: `string`; `orderBy`: `undefined`; `status`: `string`; `where`: `undefined`; \}; \}; \})[] - -Defined in: [src/screens/EventVolunteers/Requests/Requests.mocks.ts:167](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/EventVolunteers/Requests/Requests.mocks.ts#L167) diff --git a/docs/docs/auto-docs/screens/EventVolunteers/Requests/Requests.mocks/variables/MOCKS.md b/docs/docs/auto-docs/screens/EventVolunteers/Requests/Requests.mocks/variables/MOCKS.md deleted file mode 100644 index fb7352a3ad..0000000000 --- a/docs/docs/auto-docs/screens/EventVolunteers/Requests/Requests.mocks/variables/MOCKS.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../../README.md) - -*** - -[talawa-admin](../../../../../modules.md) / [screens/EventVolunteers/Requests/Requests.mocks](../README.md) / MOCKS - -# Variable: MOCKS - -> `const` **MOCKS**: (\{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `id`: `undefined`; `orderBy`: `undefined`; `status`: `undefined`; `where`: \{ `eventId`: `string`; `status`: `string`; `userName`: `undefined`; \}; \}; \}; `result`: \{ `data`: \{ `getVolunteerMembership`: `object`[]; `updateVolunteerMembership`: `undefined`; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `id`: `undefined`; `orderBy`: `string`; `status`: `undefined`; `where`: \{ `eventId`: `string`; `status`: `string`; `userName`: `undefined`; \}; \}; \}; `result`: \{ `data`: \{ `getVolunteerMembership`: `object`[]; `updateVolunteerMembership`: `undefined`; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `id`: `undefined`; `orderBy`: `undefined`; `status`: `undefined`; `where`: \{ `eventId`: `string`; `status`: `string`; `userName`: `string`; \}; \}; \}; `result`: \{ `data`: \{ `getVolunteerMembership`: `object`[]; `updateVolunteerMembership`: `undefined`; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `id`: `string`; `orderBy`: `undefined`; `status`: `string`; `where`: `undefined`; \}; \}; `result`: \{ `data`: \{ `getVolunteerMembership`: `undefined`; `updateVolunteerMembership`: \{ `_id`: `string`; \}; \}; \}; \})[] - -Defined in: [src/screens/EventVolunteers/Requests/Requests.mocks.ts:46](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/EventVolunteers/Requests/Requests.mocks.ts#L46) diff --git a/docs/docs/auto-docs/screens/EventVolunteers/Requests/Requests.mocks/variables/UPDATE_ERROR_MOCKS.md b/docs/docs/auto-docs/screens/EventVolunteers/Requests/Requests.mocks/variables/UPDATE_ERROR_MOCKS.md deleted file mode 100644 index f0c6d59d0b..0000000000 --- a/docs/docs/auto-docs/screens/EventVolunteers/Requests/Requests.mocks/variables/UPDATE_ERROR_MOCKS.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../../README.md) - -*** - -[talawa-admin](../../../../../modules.md) / [screens/EventVolunteers/Requests/Requests.mocks](../README.md) / UPDATE\_ERROR\_MOCKS - -# Variable: UPDATE\_ERROR\_MOCKS - -> `const` **UPDATE\_ERROR\_MOCKS**: (\{ `error`: `undefined`; `request`: \{ `query`: `DocumentNode`; `variables`: \{ `id`: `undefined`; `status`: `undefined`; `where`: \{ `eventId`: `string`; `status`: `string`; \}; \}; \}; `result`: \{ `data`: \{ `getVolunteerMembership`: `object`[]; \}; \}; \} \| \{ `error`: `Error`; `request`: \{ `query`: `DocumentNode`; `variables`: \{ `id`: `string`; `status`: `string`; `where`: `undefined`; \}; \}; `result`: `undefined`; \})[] - -Defined in: [src/screens/EventVolunteers/Requests/Requests.mocks.ts:194](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/EventVolunteers/Requests/Requests.mocks.ts#L194) diff --git a/docs/docs/auto-docs/screens/EventVolunteers/Requests/Requests/README.md b/docs/docs/auto-docs/screens/EventVolunteers/Requests/Requests/README.md deleted file mode 100644 index 669266bca9..0000000000 --- a/docs/docs/auto-docs/screens/EventVolunteers/Requests/Requests/README.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / screens/EventVolunteers/Requests/Requests - -# screens/EventVolunteers/Requests/Requests - -## Functions - -- [default](functions/default.md) diff --git a/docs/docs/auto-docs/screens/EventVolunteers/Requests/Requests/functions/default.md b/docs/docs/auto-docs/screens/EventVolunteers/Requests/Requests/functions/default.md deleted file mode 100644 index 7ff59a553f..0000000000 --- a/docs/docs/auto-docs/screens/EventVolunteers/Requests/Requests/functions/default.md +++ /dev/null @@ -1,21 +0,0 @@ -[**talawa-admin**](../../../../../README.md) - -*** - -[talawa-admin](../../../../../modules.md) / [screens/EventVolunteers/Requests/Requests](../README.md) / default - -# Function: default() - -> **default**(): `JSX.Element` - -Defined in: [src/screens/EventVolunteers/Requests/Requests.tsx:53](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/EventVolunteers/Requests/Requests.tsx#L53) - -Component for managing and displaying Volunteer Membership requests for an event. - -This component allows users to view, filter, sort, and create action items. It also allows users to accept or reject volunteer membership requests. - -## Returns - -`JSX.Element` - -The rendered component. diff --git a/docs/docs/auto-docs/screens/EventVolunteers/VolunteerContainer/README.md b/docs/docs/auto-docs/screens/EventVolunteers/VolunteerContainer/README.md deleted file mode 100644 index 03cc6c6ef1..0000000000 --- a/docs/docs/auto-docs/screens/EventVolunteers/VolunteerContainer/README.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / screens/EventVolunteers/VolunteerContainer - -# screens/EventVolunteers/VolunteerContainer - -## Functions - -- [default](functions/default.md) diff --git a/docs/docs/auto-docs/screens/EventVolunteers/VolunteerContainer/functions/default.md b/docs/docs/auto-docs/screens/EventVolunteers/VolunteerContainer/functions/default.md deleted file mode 100644 index b28f6eb70b..0000000000 --- a/docs/docs/auto-docs/screens/EventVolunteers/VolunteerContainer/functions/default.md +++ /dev/null @@ -1,21 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [screens/EventVolunteers/VolunteerContainer](../README.md) / default - -# Function: default() - -> **default**(): `JSX.Element` - -Defined in: [src/screens/EventVolunteers/VolunteerContainer.tsx:18](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/EventVolunteers/VolunteerContainer.tsx#L18) - -Container Component for Volunteer or VolunteerGroups as per selection. - -This component allows users switch between Volunteers and VolunteerGroups. - -## Returns - -`JSX.Element` - -The rendered component. diff --git a/docs/docs/auto-docs/screens/EventVolunteers/VolunteerGroups/VolunteerGroupDeleteModal/README.md b/docs/docs/auto-docs/screens/EventVolunteers/VolunteerGroups/VolunteerGroupDeleteModal/README.md deleted file mode 100644 index d744309fca..0000000000 --- a/docs/docs/auto-docs/screens/EventVolunteers/VolunteerGroups/VolunteerGroupDeleteModal/README.md +++ /dev/null @@ -1,15 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / screens/EventVolunteers/VolunteerGroups/VolunteerGroupDeleteModal - -# screens/EventVolunteers/VolunteerGroups/VolunteerGroupDeleteModal - -## Interfaces - -- [InterfaceDeleteVolunteerGroupModal](interfaces/InterfaceDeleteVolunteerGroupModal.md) - -## Functions - -- [default](functions/default.md) diff --git a/docs/docs/auto-docs/screens/EventVolunteers/VolunteerGroups/VolunteerGroupDeleteModal/functions/default.md b/docs/docs/auto-docs/screens/EventVolunteers/VolunteerGroups/VolunteerGroupDeleteModal/functions/default.md deleted file mode 100644 index e070e40aee..0000000000 --- a/docs/docs/auto-docs/screens/EventVolunteers/VolunteerGroups/VolunteerGroupDeleteModal/functions/default.md +++ /dev/null @@ -1,48 +0,0 @@ -[**talawa-admin**](../../../../../README.md) - -*** - -[talawa-admin](../../../../../modules.md) / [screens/EventVolunteers/VolunteerGroups/VolunteerGroupDeleteModal](../README.md) / default - -# Function: default() - -> **default**(`props`, `deprecatedLegacyContext`?): `ReactNode` - -Defined in: [src/screens/EventVolunteers/VolunteerGroups/VolunteerGroupDeleteModal.tsx:42](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/EventVolunteers/VolunteerGroups/VolunteerGroupDeleteModal.tsx#L42) - -A modal dialog for confirming the deletion of a volunteer group. - -## Parameters - -### props - -[`InterfaceDeleteVolunteerGroupModal`](../interfaces/InterfaceDeleteVolunteerGroupModal.md) - -### deprecatedLegacyContext? - -`any` - -**Deprecated** - -**See** - -[React Docs](https://legacy.reactjs.org/docs/legacy-context.html#referencing-context-in-lifecycle-methods) - -## Returns - -`ReactNode` - -The rendered modal component. - -The `VolunteerGroupDeleteModal` component displays a confirmation dialog when a user attempts to delete a volunteer group. -It allows the user to either confirm or cancel the deletion. -On confirmation, the `deleteVolunteerGroup` mutation is called to remove the volunteer group from the database, -and the `refetchGroups` function is invoked to update the list of volunteer groups. -A success or error toast notification is shown based on the result of the deletion operation. - -The modal includes: -- A header with a title and a close button. -- A body with a message asking for confirmation. -- A footer with "Yes" and "No" buttons to confirm or cancel the deletion. - -The `deleteVolunteerGroup` mutation is used to perform the deletion operation. diff --git a/docs/docs/auto-docs/screens/EventVolunteers/VolunteerGroups/VolunteerGroupDeleteModal/interfaces/InterfaceDeleteVolunteerGroupModal.md b/docs/docs/auto-docs/screens/EventVolunteers/VolunteerGroups/VolunteerGroupDeleteModal/interfaces/InterfaceDeleteVolunteerGroupModal.md deleted file mode 100644 index 6f1a67e883..0000000000 --- a/docs/docs/auto-docs/screens/EventVolunteers/VolunteerGroups/VolunteerGroupDeleteModal/interfaces/InterfaceDeleteVolunteerGroupModal.md +++ /dev/null @@ -1,49 +0,0 @@ -[**talawa-admin**](../../../../../README.md) - -*** - -[talawa-admin](../../../../../modules.md) / [screens/EventVolunteers/VolunteerGroups/VolunteerGroupDeleteModal](../README.md) / InterfaceDeleteVolunteerGroupModal - -# Interface: InterfaceDeleteVolunteerGroupModal - -Defined in: [src/screens/EventVolunteers/VolunteerGroups/VolunteerGroupDeleteModal.tsx:10](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/EventVolunteers/VolunteerGroups/VolunteerGroupDeleteModal.tsx#L10) - -## Properties - -### group - -> **group**: [`InterfaceVolunteerGroupInfo`](../../../../../utils/interfaces/interfaces/InterfaceVolunteerGroupInfo.md) - -Defined in: [src/screens/EventVolunteers/VolunteerGroups/VolunteerGroupDeleteModal.tsx:13](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/EventVolunteers/VolunteerGroups/VolunteerGroupDeleteModal.tsx#L13) - -*** - -### hide() - -> **hide**: () => `void` - -Defined in: [src/screens/EventVolunteers/VolunteerGroups/VolunteerGroupDeleteModal.tsx:12](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/EventVolunteers/VolunteerGroups/VolunteerGroupDeleteModal.tsx#L12) - -#### Returns - -`void` - -*** - -### isOpen - -> **isOpen**: `boolean` - -Defined in: [src/screens/EventVolunteers/VolunteerGroups/VolunteerGroupDeleteModal.tsx:11](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/EventVolunteers/VolunteerGroups/VolunteerGroupDeleteModal.tsx#L11) - -*** - -### refetchGroups() - -> **refetchGroups**: () => `void` - -Defined in: [src/screens/EventVolunteers/VolunteerGroups/VolunteerGroupDeleteModal.tsx:14](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/EventVolunteers/VolunteerGroups/VolunteerGroupDeleteModal.tsx#L14) - -#### Returns - -`void` diff --git a/docs/docs/auto-docs/screens/EventVolunteers/VolunteerGroups/VolunteerGroupModal/README.md b/docs/docs/auto-docs/screens/EventVolunteers/VolunteerGroups/VolunteerGroupModal/README.md deleted file mode 100644 index 51f59d0b3d..0000000000 --- a/docs/docs/auto-docs/screens/EventVolunteers/VolunteerGroups/VolunteerGroupModal/README.md +++ /dev/null @@ -1,15 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / screens/EventVolunteers/VolunteerGroups/VolunteerGroupModal - -# screens/EventVolunteers/VolunteerGroups/VolunteerGroupModal - -## Interfaces - -- [InterfaceVolunteerGroupModal](interfaces/InterfaceVolunteerGroupModal.md) - -## Functions - -- [default](functions/default.md) diff --git a/docs/docs/auto-docs/screens/EventVolunteers/VolunteerGroups/VolunteerGroupModal/functions/default.md b/docs/docs/auto-docs/screens/EventVolunteers/VolunteerGroups/VolunteerGroupModal/functions/default.md deleted file mode 100644 index dc52466905..0000000000 --- a/docs/docs/auto-docs/screens/EventVolunteers/VolunteerGroups/VolunteerGroupModal/functions/default.md +++ /dev/null @@ -1,54 +0,0 @@ -[**talawa-admin**](../../../../../README.md) - -*** - -[talawa-admin](../../../../../modules.md) / [screens/EventVolunteers/VolunteerGroups/VolunteerGroupModal](../README.md) / default - -# Function: default() - -> **default**(`props`, `deprecatedLegacyContext`?): `ReactNode` - -Defined in: [src/screens/EventVolunteers/VolunteerGroups/VolunteerGroupModal.tsx:63](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/EventVolunteers/VolunteerGroups/VolunteerGroupModal.tsx#L63) - -A modal dialog for creating or editing a volunteer group. - -## Parameters - -### props - -[`InterfaceVolunteerGroupModal`](../interfaces/InterfaceVolunteerGroupModal.md) - -### deprecatedLegacyContext? - -`any` - -**Deprecated** - -**See** - -[React Docs](https://legacy.reactjs.org/docs/legacy-context.html#referencing-context-in-lifecycle-methods) - -## Returns - -`ReactNode` - -The rendered modal component. - -The `VolunteerGroupModal` component displays a form within a modal dialog for creating or editing a Volunteer Group. -It includes fields for entering the group name, description, volunteersRequired, and selecting volunteers/leaders. - -The modal includes: -- A header with a title indicating the current mode (create or edit) and a close button. -- A form with: - - An input field for entering the group name. - - A textarea for entering the group description. - - A multi-select dropdown for selecting leader. - - A multi-select dropdown for selecting volunteers. - - An input field for entering the number of volunteers required. -- A submit button to create or update the pledge. - -On form submission, the component either: -- Calls `updatePledge` mutation to update an existing pledge, or -- Calls `createPledge` mutation to create a new pledge. - -Success or error messages are displayed using toast notifications based on the result of the mutation. diff --git a/docs/docs/auto-docs/screens/EventVolunteers/VolunteerGroups/VolunteerGroupModal/interfaces/InterfaceVolunteerGroupModal.md b/docs/docs/auto-docs/screens/EventVolunteers/VolunteerGroups/VolunteerGroupModal/interfaces/InterfaceVolunteerGroupModal.md deleted file mode 100644 index a59525b134..0000000000 --- a/docs/docs/auto-docs/screens/EventVolunteers/VolunteerGroups/VolunteerGroupModal/interfaces/InterfaceVolunteerGroupModal.md +++ /dev/null @@ -1,73 +0,0 @@ -[**talawa-admin**](../../../../../README.md) - -*** - -[talawa-admin](../../../../../modules.md) / [screens/EventVolunteers/VolunteerGroups/VolunteerGroupModal](../README.md) / InterfaceVolunteerGroupModal - -# Interface: InterfaceVolunteerGroupModal - -Defined in: [src/screens/EventVolunteers/VolunteerGroups/VolunteerGroupModal.tsx:21](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/EventVolunteers/VolunteerGroups/VolunteerGroupModal.tsx#L21) - -## Properties - -### eventId - -> **eventId**: `string` - -Defined in: [src/screens/EventVolunteers/VolunteerGroups/VolunteerGroupModal.tsx:24](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/EventVolunteers/VolunteerGroups/VolunteerGroupModal.tsx#L24) - -*** - -### group - -> **group**: [`InterfaceVolunteerGroupInfo`](../../../../../utils/interfaces/interfaces/InterfaceVolunteerGroupInfo.md) - -Defined in: [src/screens/EventVolunteers/VolunteerGroups/VolunteerGroupModal.tsx:26](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/EventVolunteers/VolunteerGroups/VolunteerGroupModal.tsx#L26) - -*** - -### hide() - -> **hide**: () => `void` - -Defined in: [src/screens/EventVolunteers/VolunteerGroups/VolunteerGroupModal.tsx:23](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/EventVolunteers/VolunteerGroups/VolunteerGroupModal.tsx#L23) - -#### Returns - -`void` - -*** - -### isOpen - -> **isOpen**: `boolean` - -Defined in: [src/screens/EventVolunteers/VolunteerGroups/VolunteerGroupModal.tsx:22](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/EventVolunteers/VolunteerGroups/VolunteerGroupModal.tsx#L22) - -*** - -### mode - -> **mode**: `"edit"` \| `"create"` - -Defined in: [src/screens/EventVolunteers/VolunteerGroups/VolunteerGroupModal.tsx:28](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/EventVolunteers/VolunteerGroups/VolunteerGroupModal.tsx#L28) - -*** - -### orgId - -> **orgId**: `string` - -Defined in: [src/screens/EventVolunteers/VolunteerGroups/VolunteerGroupModal.tsx:25](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/EventVolunteers/VolunteerGroups/VolunteerGroupModal.tsx#L25) - -*** - -### refetchGroups() - -> **refetchGroups**: () => `void` - -Defined in: [src/screens/EventVolunteers/VolunteerGroups/VolunteerGroupModal.tsx:27](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/EventVolunteers/VolunteerGroups/VolunteerGroupModal.tsx#L27) - -#### Returns - -`void` diff --git a/docs/docs/auto-docs/screens/EventVolunteers/VolunteerGroups/VolunteerGroupViewModal/README.md b/docs/docs/auto-docs/screens/EventVolunteers/VolunteerGroups/VolunteerGroupViewModal/README.md deleted file mode 100644 index 9e4517af04..0000000000 --- a/docs/docs/auto-docs/screens/EventVolunteers/VolunteerGroups/VolunteerGroupViewModal/README.md +++ /dev/null @@ -1,15 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / screens/EventVolunteers/VolunteerGroups/VolunteerGroupViewModal - -# screens/EventVolunteers/VolunteerGroups/VolunteerGroupViewModal - -## Interfaces - -- [InterfaceVolunteerGroupViewModal](interfaces/InterfaceVolunteerGroupViewModal.md) - -## Functions - -- [default](functions/default.md) diff --git a/docs/docs/auto-docs/screens/EventVolunteers/VolunteerGroups/VolunteerGroupViewModal/functions/default.md b/docs/docs/auto-docs/screens/EventVolunteers/VolunteerGroups/VolunteerGroupViewModal/functions/default.md deleted file mode 100644 index 71fc8aa359..0000000000 --- a/docs/docs/auto-docs/screens/EventVolunteers/VolunteerGroups/VolunteerGroupViewModal/functions/default.md +++ /dev/null @@ -1,41 +0,0 @@ -[**talawa-admin**](../../../../../README.md) - -*** - -[talawa-admin](../../../../../modules.md) / [screens/EventVolunteers/VolunteerGroups/VolunteerGroupViewModal](../README.md) / default - -# Function: default() - -> **default**(`props`, `deprecatedLegacyContext`?): `ReactNode` - -Defined in: [src/screens/EventVolunteers/VolunteerGroups/VolunteerGroupViewModal.tsx:41](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/EventVolunteers/VolunteerGroups/VolunteerGroupViewModal.tsx#L41) - -A modal dialog for viewing volunteer group information for an event. - -## Parameters - -### props - -[`InterfaceVolunteerGroupViewModal`](../interfaces/InterfaceVolunteerGroupViewModal.md) - -### deprecatedLegacyContext? - -`any` - -**Deprecated** - -**See** - -[React Docs](https://legacy.reactjs.org/docs/legacy-context.html#referencing-context-in-lifecycle-methods) - -## Returns - -`ReactNode` - -The rendered modal component. - -The `VolunteerGroupViewModal` component displays all the fields of a volunteer group in a modal dialog. - -The modal includes: -- A header with a title and a close button. -- fields for volunteer name, status, hours volunteered, groups, and assignments. diff --git a/docs/docs/auto-docs/screens/EventVolunteers/VolunteerGroups/VolunteerGroupViewModal/interfaces/InterfaceVolunteerGroupViewModal.md b/docs/docs/auto-docs/screens/EventVolunteers/VolunteerGroups/VolunteerGroupViewModal/interfaces/InterfaceVolunteerGroupViewModal.md deleted file mode 100644 index 7bb3b9b71e..0000000000 --- a/docs/docs/auto-docs/screens/EventVolunteers/VolunteerGroups/VolunteerGroupViewModal/interfaces/InterfaceVolunteerGroupViewModal.md +++ /dev/null @@ -1,37 +0,0 @@ -[**talawa-admin**](../../../../../README.md) - -*** - -[talawa-admin](../../../../../modules.md) / [screens/EventVolunteers/VolunteerGroups/VolunteerGroupViewModal](../README.md) / InterfaceVolunteerGroupViewModal - -# Interface: InterfaceVolunteerGroupViewModal - -Defined in: [src/screens/EventVolunteers/VolunteerGroups/VolunteerGroupViewModal.tsx:19](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/EventVolunteers/VolunteerGroups/VolunteerGroupViewModal.tsx#L19) - -## Properties - -### group - -> **group**: [`InterfaceVolunteerGroupInfo`](../../../../../utils/interfaces/interfaces/InterfaceVolunteerGroupInfo.md) - -Defined in: [src/screens/EventVolunteers/VolunteerGroups/VolunteerGroupViewModal.tsx:22](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/EventVolunteers/VolunteerGroups/VolunteerGroupViewModal.tsx#L22) - -*** - -### hide() - -> **hide**: () => `void` - -Defined in: [src/screens/EventVolunteers/VolunteerGroups/VolunteerGroupViewModal.tsx:21](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/EventVolunteers/VolunteerGroups/VolunteerGroupViewModal.tsx#L21) - -#### Returns - -`void` - -*** - -### isOpen - -> **isOpen**: `boolean` - -Defined in: [src/screens/EventVolunteers/VolunteerGroups/VolunteerGroupViewModal.tsx:20](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/EventVolunteers/VolunteerGroups/VolunteerGroupViewModal.tsx#L20) diff --git a/docs/docs/auto-docs/screens/EventVolunteers/VolunteerGroups/VolunteerGroups.mocks/README.md b/docs/docs/auto-docs/screens/EventVolunteers/VolunteerGroups/VolunteerGroups.mocks/README.md deleted file mode 100644 index f9b469997c..0000000000 --- a/docs/docs/auto-docs/screens/EventVolunteers/VolunteerGroups/VolunteerGroups.mocks/README.md +++ /dev/null @@ -1,13 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / screens/EventVolunteers/VolunteerGroups/VolunteerGroups.mocks - -# screens/EventVolunteers/VolunteerGroups/VolunteerGroups.mocks - -## Variables - -- [MOCKS](variables/MOCKS.md) -- [MOCKS\_EMPTY](variables/MOCKS_EMPTY.md) -- [MOCKS\_ERROR](variables/MOCKS_ERROR.md) diff --git a/docs/docs/auto-docs/screens/EventVolunteers/VolunteerGroups/VolunteerGroups.mocks/variables/MOCKS.md b/docs/docs/auto-docs/screens/EventVolunteers/VolunteerGroups/VolunteerGroups.mocks/variables/MOCKS.md deleted file mode 100644 index f1ad816c95..0000000000 --- a/docs/docs/auto-docs/screens/EventVolunteers/VolunteerGroups/VolunteerGroups.mocks/variables/MOCKS.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../../README.md) - -*** - -[talawa-admin](../../../../../modules.md) / [screens/EventVolunteers/VolunteerGroups/VolunteerGroups.mocks](../README.md) / MOCKS - -# Variable: MOCKS - -> `const` **MOCKS**: (\{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `data`: `undefined`; `id`: `undefined`; `orderBy`: `string`; `where`: \{ `eventId`: `string`; `leaderName`: `any`; `name_contains`: `string`; \}; \}; \}; `result`: \{ `data`: \{ `createEventVolunteerGroup`: `undefined`; `getEventVolunteerGroups`: `object`[]; `organizations`: `undefined`; `removeEventVolunteerGroup`: `undefined`; `updateEventVolunteerGroup`: `undefined`; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `data`: `undefined`; `id`: `undefined`; `orderBy`: `any`; `where`: \{ `eventId`: `string`; `leaderName`: `string`; `name_contains`: `any`; \}; \}; \}; `result`: \{ `data`: \{ `createEventVolunteerGroup`: `undefined`; `getEventVolunteerGroups`: `object`[]; `organizations`: `undefined`; `removeEventVolunteerGroup`: `undefined`; `updateEventVolunteerGroup`: `undefined`; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `data`: `undefined`; `id`: `string`; `orderBy`: `undefined`; `where`: `undefined`; \}; \}; `result`: \{ `data`: \{ `createEventVolunteerGroup`: `undefined`; `getEventVolunteerGroups`: `undefined`; `organizations`: `object`[]; `removeEventVolunteerGroup`: `undefined`; `updateEventVolunteerGroup`: `undefined`; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `data`: \{ `description`: `string`; `eventId`: `string`; `leaderId`: `string`; `name`: `string`; `volunteersRequired`: `number`; `volunteerUserIds`: `string`[]; \}; `id`: `undefined`; `orderBy`: `undefined`; `where`: `undefined`; \}; \}; `result`: \{ `data`: \{ `createEventVolunteerGroup`: \{ `_id`: `string`; \}; `getEventVolunteerGroups`: `undefined`; `organizations`: `undefined`; `removeEventVolunteerGroup`: `undefined`; `updateEventVolunteerGroup`: `undefined`; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `data`: `undefined`; `id`: `string`; `orderBy`: `undefined`; `where`: `undefined`; \}; \}; `result`: \{ `data`: \{ `createEventVolunteerGroup`: `undefined`; `getEventVolunteerGroups`: `undefined`; `organizations`: `undefined`; `removeEventVolunteerGroup`: \{ `_id`: `string`; \}; `updateEventVolunteerGroup`: `undefined`; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `data`: \{ `description`: `string`; `eventId`: `string`; `leaderId`: `undefined`; `name`: `string`; `volunteersRequired`: `number`; `volunteerUserIds`: `undefined`; \}; `id`: `string`; `orderBy`: `undefined`; `where`: `undefined`; \}; \}; `result`: \{ `data`: \{ `createEventVolunteerGroup`: `undefined`; `getEventVolunteerGroups`: `undefined`; `organizations`: `undefined`; `removeEventVolunteerGroup`: `undefined`; `updateEventVolunteerGroup`: \{ `_id`: `string`; \}; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `data`: \{ `description`: `undefined`; `eventId`: `string`; `leaderId`: `undefined`; `name`: `undefined`; `volunteersRequired`: `undefined`; `volunteerUserIds`: `undefined`; \}; `id`: `string`; `orderBy`: `undefined`; `where`: `undefined`; \}; \}; `result`: \{ `data`: \{ `createEventVolunteerGroup`: `undefined`; `getEventVolunteerGroups`: `undefined`; `organizations`: `undefined`; `removeEventVolunteerGroup`: `undefined`; `updateEventVolunteerGroup`: \{ `_id`: `string`; \}; \}; \}; \})[] - -Defined in: [src/screens/EventVolunteers/VolunteerGroups/VolunteerGroups.mocks.ts:114](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/EventVolunteers/VolunteerGroups/VolunteerGroups.mocks.ts#L114) diff --git a/docs/docs/auto-docs/screens/EventVolunteers/VolunteerGroups/VolunteerGroups.mocks/variables/MOCKS_EMPTY.md b/docs/docs/auto-docs/screens/EventVolunteers/VolunteerGroups/VolunteerGroups.mocks/variables/MOCKS_EMPTY.md deleted file mode 100644 index 9a8b6643f0..0000000000 --- a/docs/docs/auto-docs/screens/EventVolunteers/VolunteerGroups/VolunteerGroups.mocks/variables/MOCKS_EMPTY.md +++ /dev/null @@ -1,57 +0,0 @@ -[**talawa-admin**](../../../../../README.md) - -*** - -[talawa-admin](../../../../../modules.md) / [screens/EventVolunteers/VolunteerGroups/VolunteerGroups.mocks](../README.md) / MOCKS\_EMPTY - -# Variable: MOCKS\_EMPTY - -> `const` **MOCKS\_EMPTY**: `object`[] - -Defined in: [src/screens/EventVolunteers/VolunteerGroups/VolunteerGroups.mocks.ts:339](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/EventVolunteers/VolunteerGroups/VolunteerGroups.mocks.ts#L339) - -## Type declaration - -### request - -> **request**: `object` - -#### request.query - -> **query**: `DocumentNode` = `EVENT_VOLUNTEER_GROUP_LIST` - -#### request.variables - -> **variables**: `object` - -#### request.variables.orderBy - -> **orderBy**: `any` = `null` - -#### request.variables.where - -> **where**: `object` - -#### request.variables.where.eventId - -> **eventId**: `string` = `'eventId'` - -#### request.variables.where.leaderName - -> **leaderName**: `any` = `null` - -#### request.variables.where.name\_contains - -> **name\_contains**: `string` = `''` - -### result - -> **result**: `object` - -#### result.data - -> **data**: `object` - -#### result.data.getEventVolunteerGroups - -> **getEventVolunteerGroups**: `any`[] = `[]` diff --git a/docs/docs/auto-docs/screens/EventVolunteers/VolunteerGroups/VolunteerGroups.mocks/variables/MOCKS_ERROR.md b/docs/docs/auto-docs/screens/EventVolunteers/VolunteerGroups/VolunteerGroups.mocks/variables/MOCKS_ERROR.md deleted file mode 100644 index a946da08c2..0000000000 --- a/docs/docs/auto-docs/screens/EventVolunteers/VolunteerGroups/VolunteerGroups.mocks/variables/MOCKS_ERROR.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../../README.md) - -*** - -[talawa-admin](../../../../../modules.md) / [screens/EventVolunteers/VolunteerGroups/VolunteerGroups.mocks](../README.md) / MOCKS\_ERROR - -# Variable: MOCKS\_ERROR - -> `const` **MOCKS\_ERROR**: (\{ `error`: `Error`; `request`: \{ `query`: `DocumentNode`; `variables`: \{ `data`: `undefined`; `id`: `undefined`; `orderBy`: `any`; `where`: \{ `eventId`: `string`; `leaderName`: `any`; `name_contains`: `string`; \}; \}; \}; `result`: `undefined`; \} \| \{ `error`: `Error`; `request`: \{ `query`: `DocumentNode`; `variables`: \{ `data`: `undefined`; `id`: `string`; `orderBy`: `undefined`; `where`: `undefined`; \}; \}; `result`: `undefined`; \} \| \{ `error`: `undefined`; `request`: \{ `query`: `DocumentNode`; `variables`: \{ `data`: `undefined`; `id`: `string`; `orderBy`: `undefined`; `where`: `undefined`; \}; \}; `result`: \{ `data`: \{ `organizations`: `object`[]; \}; \}; \} \| \{ `error`: `Error`; `request`: \{ `query`: `DocumentNode`; `variables`: \{ `data`: \{ `description`: `string`; `eventId`: `string`; `leaderId`: `string`; `name`: `string`; `volunteersRequired`: `number`; `volunteerUserIds`: `string`[]; \}; `id`: `undefined`; `orderBy`: `undefined`; `where`: `undefined`; \}; \}; `result`: `undefined`; \} \| \{ `error`: `Error`; `request`: \{ `query`: `DocumentNode`; `variables`: \{ `data`: \{ `description`: `string`; `eventId`: `string`; `leaderId`: `undefined`; `name`: `string`; `volunteersRequired`: `number`; `volunteerUserIds`: `undefined`; \}; `id`: `string`; `orderBy`: `undefined`; `where`: `undefined`; \}; \}; `result`: `undefined`; \})[] - -Defined in: [src/screens/EventVolunteers/VolunteerGroups/VolunteerGroups.mocks.ts:360](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/EventVolunteers/VolunteerGroups/VolunteerGroups.mocks.ts#L360) diff --git a/docs/docs/auto-docs/screens/EventVolunteers/VolunteerGroups/VolunteerGroups/README.md b/docs/docs/auto-docs/screens/EventVolunteers/VolunteerGroups/VolunteerGroups/README.md deleted file mode 100644 index faf3f11e82..0000000000 --- a/docs/docs/auto-docs/screens/EventVolunteers/VolunteerGroups/VolunteerGroups/README.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / screens/EventVolunteers/VolunteerGroups/VolunteerGroups - -# screens/EventVolunteers/VolunteerGroups/VolunteerGroups - -## Functions - -- [default](functions/default.md) diff --git a/docs/docs/auto-docs/screens/EventVolunteers/VolunteerGroups/VolunteerGroups/functions/default.md b/docs/docs/auto-docs/screens/EventVolunteers/VolunteerGroups/VolunteerGroups/functions/default.md deleted file mode 100644 index 8ee62c17cb..0000000000 --- a/docs/docs/auto-docs/screens/EventVolunteers/VolunteerGroups/VolunteerGroups/functions/default.md +++ /dev/null @@ -1,20 +0,0 @@ -[**talawa-admin**](../../../../../README.md) - -*** - -[talawa-admin](../../../../../modules.md) / [screens/EventVolunteers/VolunteerGroups/VolunteerGroups](../README.md) / default - -# Function: default() - -> **default**(): `JSX.Element` - -Defined in: [src/screens/EventVolunteers/VolunteerGroups/VolunteerGroups.tsx:58](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/EventVolunteers/VolunteerGroups/VolunteerGroups.tsx#L58) - -Component for managing volunteer groups for an event. -This component allows users to view, filter, sort, and create action items. It also provides a modal for creating and editing action items. - -## Returns - -`JSX.Element` - -The rendered component. diff --git a/docs/docs/auto-docs/screens/EventVolunteers/Volunteers/VolunteerCreateModal/README.md b/docs/docs/auto-docs/screens/EventVolunteers/Volunteers/VolunteerCreateModal/README.md deleted file mode 100644 index 6457ea9675..0000000000 --- a/docs/docs/auto-docs/screens/EventVolunteers/Volunteers/VolunteerCreateModal/README.md +++ /dev/null @@ -1,15 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / screens/EventVolunteers/Volunteers/VolunteerCreateModal - -# screens/EventVolunteers/Volunteers/VolunteerCreateModal - -## Interfaces - -- [InterfaceVolunteerCreateModal](interfaces/InterfaceVolunteerCreateModal.md) - -## Functions - -- [default](functions/default.md) diff --git a/docs/docs/auto-docs/screens/EventVolunteers/Volunteers/VolunteerCreateModal/functions/default.md b/docs/docs/auto-docs/screens/EventVolunteers/Volunteers/VolunteerCreateModal/functions/default.md deleted file mode 100644 index 124e0724a0..0000000000 --- a/docs/docs/auto-docs/screens/EventVolunteers/Volunteers/VolunteerCreateModal/functions/default.md +++ /dev/null @@ -1,49 +0,0 @@ -[**talawa-admin**](../../../../../README.md) - -*** - -[talawa-admin](../../../../../modules.md) / [screens/EventVolunteers/Volunteers/VolunteerCreateModal](../README.md) / default - -# Function: default() - -> **default**(`props`, `deprecatedLegacyContext`?): `ReactNode` - -Defined in: [src/screens/EventVolunteers/Volunteers/VolunteerCreateModal.tsx:48](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/EventVolunteers/Volunteers/VolunteerCreateModal.tsx#L48) - -A modal dialog for add a volunteer for an event. - -## Parameters - -### props - -[`InterfaceVolunteerCreateModal`](../interfaces/InterfaceVolunteerCreateModal.md) - -### deprecatedLegacyContext? - -`any` - -**Deprecated** - -**See** - -[React Docs](https://legacy.reactjs.org/docs/legacy-context.html#referencing-context-in-lifecycle-methods) - -## Returns - -`ReactNode` - -The rendered modal component. - -The `VolunteerCreateModal` component displays a form within a modal dialog for adding a volunteer. -It includes fields for selecting user. - -The modal includes: -- A header with a title and a close button. -- A form with: -- A multi-select dropdown for selecting user be added as volunteer. -- A submit button to create or update the pledge. - -On form submission, the component: -- Calls `addVolunteer` mutation to add a new Volunteer. - -Success or error messages are displayed using toast notifications based on the result of the mutation. diff --git a/docs/docs/auto-docs/screens/EventVolunteers/Volunteers/VolunteerCreateModal/interfaces/InterfaceVolunteerCreateModal.md b/docs/docs/auto-docs/screens/EventVolunteers/Volunteers/VolunteerCreateModal/interfaces/InterfaceVolunteerCreateModal.md deleted file mode 100644 index e9568167a1..0000000000 --- a/docs/docs/auto-docs/screens/EventVolunteers/Volunteers/VolunteerCreateModal/interfaces/InterfaceVolunteerCreateModal.md +++ /dev/null @@ -1,57 +0,0 @@ -[**talawa-admin**](../../../../../README.md) - -*** - -[talawa-admin](../../../../../modules.md) / [screens/EventVolunteers/Volunteers/VolunteerCreateModal](../README.md) / InterfaceVolunteerCreateModal - -# Interface: InterfaceVolunteerCreateModal - -Defined in: [src/screens/EventVolunteers/Volunteers/VolunteerCreateModal.tsx:14](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/EventVolunteers/Volunteers/VolunteerCreateModal.tsx#L14) - -## Properties - -### eventId - -> **eventId**: `string` - -Defined in: [src/screens/EventVolunteers/Volunteers/VolunteerCreateModal.tsx:17](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/EventVolunteers/Volunteers/VolunteerCreateModal.tsx#L17) - -*** - -### hide() - -> **hide**: () => `void` - -Defined in: [src/screens/EventVolunteers/Volunteers/VolunteerCreateModal.tsx:16](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/EventVolunteers/Volunteers/VolunteerCreateModal.tsx#L16) - -#### Returns - -`void` - -*** - -### isOpen - -> **isOpen**: `boolean` - -Defined in: [src/screens/EventVolunteers/Volunteers/VolunteerCreateModal.tsx:15](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/EventVolunteers/Volunteers/VolunteerCreateModal.tsx#L15) - -*** - -### orgId - -> **orgId**: `string` - -Defined in: [src/screens/EventVolunteers/Volunteers/VolunteerCreateModal.tsx:18](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/EventVolunteers/Volunteers/VolunteerCreateModal.tsx#L18) - -*** - -### refetchVolunteers() - -> **refetchVolunteers**: () => `void` - -Defined in: [src/screens/EventVolunteers/Volunteers/VolunteerCreateModal.tsx:19](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/EventVolunteers/Volunteers/VolunteerCreateModal.tsx#L19) - -#### Returns - -`void` diff --git a/docs/docs/auto-docs/screens/EventVolunteers/Volunteers/VolunteerDeleteModal/README.md b/docs/docs/auto-docs/screens/EventVolunteers/Volunteers/VolunteerDeleteModal/README.md deleted file mode 100644 index b8c4b05c6f..0000000000 --- a/docs/docs/auto-docs/screens/EventVolunteers/Volunteers/VolunteerDeleteModal/README.md +++ /dev/null @@ -1,15 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / screens/EventVolunteers/Volunteers/VolunteerDeleteModal - -# screens/EventVolunteers/Volunteers/VolunteerDeleteModal - -## Interfaces - -- [InterfaceDeleteVolunteerModal](interfaces/InterfaceDeleteVolunteerModal.md) - -## Functions - -- [default](functions/default.md) diff --git a/docs/docs/auto-docs/screens/EventVolunteers/Volunteers/VolunteerDeleteModal/functions/default.md b/docs/docs/auto-docs/screens/EventVolunteers/Volunteers/VolunteerDeleteModal/functions/default.md deleted file mode 100644 index ebb7d348da..0000000000 --- a/docs/docs/auto-docs/screens/EventVolunteers/Volunteers/VolunteerDeleteModal/functions/default.md +++ /dev/null @@ -1,48 +0,0 @@ -[**talawa-admin**](../../../../../README.md) - -*** - -[talawa-admin](../../../../../modules.md) / [screens/EventVolunteers/Volunteers/VolunteerDeleteModal](../README.md) / default - -# Function: default() - -> **default**(`props`, `deprecatedLegacyContext`?): `ReactNode` - -Defined in: [src/screens/EventVolunteers/Volunteers/VolunteerDeleteModal.tsx:42](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/EventVolunteers/Volunteers/VolunteerDeleteModal.tsx#L42) - -A modal dialog for confirming the deletion of a volunteer. - -## Parameters - -### props - -[`InterfaceDeleteVolunteerModal`](../interfaces/InterfaceDeleteVolunteerModal.md) - -### deprecatedLegacyContext? - -`any` - -**Deprecated** - -**See** - -[React Docs](https://legacy.reactjs.org/docs/legacy-context.html#referencing-context-in-lifecycle-methods) - -## Returns - -`ReactNode` - -The rendered modal component. - -The `VolunteerDeleteModal` component displays a confirmation dialog when a user attempts to delete a volunteer. -It allows the user to either confirm or cancel the deletion. -On confirmation, the `deleteVolunteer` mutation is called to remove the pledge from the database, -and the `refetchVolunteers` function is invoked to update the list of volunteers. -A success or error toast notification is shown based on the result of the deletion operation. - -The modal includes: -- A header with a title and a close button. -- A body with a message asking for confirmation. -- A footer with "Yes" and "No" buttons to confirm or cancel the deletion. - -The `deleteVolunteer` mutation is used to perform the deletion operation. diff --git a/docs/docs/auto-docs/screens/EventVolunteers/Volunteers/VolunteerDeleteModal/interfaces/InterfaceDeleteVolunteerModal.md b/docs/docs/auto-docs/screens/EventVolunteers/Volunteers/VolunteerDeleteModal/interfaces/InterfaceDeleteVolunteerModal.md deleted file mode 100644 index 60345a6a70..0000000000 --- a/docs/docs/auto-docs/screens/EventVolunteers/Volunteers/VolunteerDeleteModal/interfaces/InterfaceDeleteVolunteerModal.md +++ /dev/null @@ -1,49 +0,0 @@ -[**talawa-admin**](../../../../../README.md) - -*** - -[talawa-admin](../../../../../modules.md) / [screens/EventVolunteers/Volunteers/VolunteerDeleteModal](../README.md) / InterfaceDeleteVolunteerModal - -# Interface: InterfaceDeleteVolunteerModal - -Defined in: [src/screens/EventVolunteers/Volunteers/VolunteerDeleteModal.tsx:10](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/EventVolunteers/Volunteers/VolunteerDeleteModal.tsx#L10) - -## Properties - -### hide() - -> **hide**: () => `void` - -Defined in: [src/screens/EventVolunteers/Volunteers/VolunteerDeleteModal.tsx:12](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/EventVolunteers/Volunteers/VolunteerDeleteModal.tsx#L12) - -#### Returns - -`void` - -*** - -### isOpen - -> **isOpen**: `boolean` - -Defined in: [src/screens/EventVolunteers/Volunteers/VolunteerDeleteModal.tsx:11](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/EventVolunteers/Volunteers/VolunteerDeleteModal.tsx#L11) - -*** - -### refetchVolunteers() - -> **refetchVolunteers**: () => `void` - -Defined in: [src/screens/EventVolunteers/Volunteers/VolunteerDeleteModal.tsx:14](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/EventVolunteers/Volunteers/VolunteerDeleteModal.tsx#L14) - -#### Returns - -`void` - -*** - -### volunteer - -> **volunteer**: [`InterfaceEventVolunteerInfo`](../../../../../utils/interfaces/interfaces/InterfaceEventVolunteerInfo.md) - -Defined in: [src/screens/EventVolunteers/Volunteers/VolunteerDeleteModal.tsx:13](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/EventVolunteers/Volunteers/VolunteerDeleteModal.tsx#L13) diff --git a/docs/docs/auto-docs/screens/EventVolunteers/Volunteers/VolunteerViewModal/README.md b/docs/docs/auto-docs/screens/EventVolunteers/Volunteers/VolunteerViewModal/README.md deleted file mode 100644 index 8546213b41..0000000000 --- a/docs/docs/auto-docs/screens/EventVolunteers/Volunteers/VolunteerViewModal/README.md +++ /dev/null @@ -1,15 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / screens/EventVolunteers/Volunteers/VolunteerViewModal - -# screens/EventVolunteers/Volunteers/VolunteerViewModal - -## Interfaces - -- [InterfaceVolunteerViewModal](interfaces/InterfaceVolunteerViewModal.md) - -## Functions - -- [default](functions/default.md) diff --git a/docs/docs/auto-docs/screens/EventVolunteers/Volunteers/VolunteerViewModal/functions/default.md b/docs/docs/auto-docs/screens/EventVolunteers/Volunteers/VolunteerViewModal/functions/default.md deleted file mode 100644 index 620ed83bfb..0000000000 --- a/docs/docs/auto-docs/screens/EventVolunteers/Volunteers/VolunteerViewModal/functions/default.md +++ /dev/null @@ -1,41 +0,0 @@ -[**talawa-admin**](../../../../../README.md) - -*** - -[talawa-admin](../../../../../modules.md) / [screens/EventVolunteers/Volunteers/VolunteerViewModal](../README.md) / default - -# Function: default() - -> **default**(`props`, `deprecatedLegacyContext`?): `ReactNode` - -Defined in: [src/screens/EventVolunteers/Volunteers/VolunteerViewModal.tsx:42](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/EventVolunteers/Volunteers/VolunteerViewModal.tsx#L42) - -A modal dialog for viewing volunteer information for an event. - -## Parameters - -### props - -[`InterfaceVolunteerViewModal`](../interfaces/InterfaceVolunteerViewModal.md) - -### deprecatedLegacyContext? - -`any` - -**Deprecated** - -**See** - -[React Docs](https://legacy.reactjs.org/docs/legacy-context.html#referencing-context-in-lifecycle-methods) - -## Returns - -`ReactNode` - -The rendered modal component. - -The `VolunteerViewModal` component displays all the fields of a volunteer in a modal dialog. - -The modal includes: -- A header with a title and a close button. -- fields for volunteer name, status, hours volunteered, groups, and assignments. diff --git a/docs/docs/auto-docs/screens/EventVolunteers/Volunteers/VolunteerViewModal/interfaces/InterfaceVolunteerViewModal.md b/docs/docs/auto-docs/screens/EventVolunteers/Volunteers/VolunteerViewModal/interfaces/InterfaceVolunteerViewModal.md deleted file mode 100644 index c96e1480da..0000000000 --- a/docs/docs/auto-docs/screens/EventVolunteers/Volunteers/VolunteerViewModal/interfaces/InterfaceVolunteerViewModal.md +++ /dev/null @@ -1,37 +0,0 @@ -[**talawa-admin**](../../../../../README.md) - -*** - -[talawa-admin](../../../../../modules.md) / [screens/EventVolunteers/Volunteers/VolunteerViewModal](../README.md) / InterfaceVolunteerViewModal - -# Interface: InterfaceVolunteerViewModal - -Defined in: [src/screens/EventVolunteers/Volunteers/VolunteerViewModal.tsx:20](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/EventVolunteers/Volunteers/VolunteerViewModal.tsx#L20) - -## Properties - -### hide() - -> **hide**: () => `void` - -Defined in: [src/screens/EventVolunteers/Volunteers/VolunteerViewModal.tsx:22](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/EventVolunteers/Volunteers/VolunteerViewModal.tsx#L22) - -#### Returns - -`void` - -*** - -### isOpen - -> **isOpen**: `boolean` - -Defined in: [src/screens/EventVolunteers/Volunteers/VolunteerViewModal.tsx:21](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/EventVolunteers/Volunteers/VolunteerViewModal.tsx#L21) - -*** - -### volunteer - -> **volunteer**: [`InterfaceEventVolunteerInfo`](../../../../../utils/interfaces/interfaces/InterfaceEventVolunteerInfo.md) - -Defined in: [src/screens/EventVolunteers/Volunteers/VolunteerViewModal.tsx:23](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/EventVolunteers/Volunteers/VolunteerViewModal.tsx#L23) diff --git a/docs/docs/auto-docs/screens/EventVolunteers/Volunteers/Volunteers.mocks/README.md b/docs/docs/auto-docs/screens/EventVolunteers/Volunteers/Volunteers.mocks/README.md deleted file mode 100644 index cc8ac8f4e0..0000000000 --- a/docs/docs/auto-docs/screens/EventVolunteers/Volunteers/Volunteers.mocks/README.md +++ /dev/null @@ -1,13 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / screens/EventVolunteers/Volunteers/Volunteers.mocks - -# screens/EventVolunteers/Volunteers/Volunteers.mocks - -## Variables - -- [MOCKS](variables/MOCKS.md) -- [MOCKS\_EMPTY](variables/MOCKS_EMPTY.md) -- [MOCKS\_ERROR](variables/MOCKS_ERROR.md) diff --git a/docs/docs/auto-docs/screens/EventVolunteers/Volunteers/Volunteers.mocks/variables/MOCKS.md b/docs/docs/auto-docs/screens/EventVolunteers/Volunteers/Volunteers.mocks/variables/MOCKS.md deleted file mode 100644 index c9ba0e144d..0000000000 --- a/docs/docs/auto-docs/screens/EventVolunteers/Volunteers/Volunteers.mocks/variables/MOCKS.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../../README.md) - -*** - -[talawa-admin](../../../../../modules.md) / [screens/EventVolunteers/Volunteers/Volunteers.mocks](../README.md) / MOCKS - -# Variable: MOCKS - -> `const` **MOCKS**: (\{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `data`: `undefined`; `id`: `undefined`; `orderBy`: `string`; `where`: \{ `eventId`: `string`; `hasAccepted`: `undefined`; `name_contains`: `string`; \}; \}; \}; `result`: \{ `data`: \{ `createEventVolunteer`: `undefined`; `getEventVolunteers`: (\{ `_id`: `string`; `assignments`: `any`[]; `groups`: `object`[]; `hasAccepted`: `boolean`; `hoursVolunteered`: `number`; `user`: \{ `_id`: `string`; `firstName`: `string`; `image`: `any`; `lastName`: `string`; \}; \} \| \{ `_id`: `string`; `assignments`: `any`[]; `groups`: `any`[]; `hasAccepted`: `boolean`; `hoursVolunteered`: `any`; `user`: \{ `_id`: `string`; `firstName`: `string`; `image`: `string`; `lastName`: `string`; \}; \})[]; `organizations`: `undefined`; `removeEventVolunteer`: `undefined`; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `data`: `undefined`; `id`: `undefined`; `orderBy`: `any`; `where`: \{ `eventId`: `string`; `hasAccepted`: `boolean`; `name_contains`: `string`; \}; \}; \}; `result`: \{ `data`: \{ `createEventVolunteer`: `undefined`; `getEventVolunteers`: `object`[]; `organizations`: `undefined`; `removeEventVolunteer`: `undefined`; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `data`: `undefined`; `id`: `undefined`; `orderBy`: `any`; `where`: \{ `eventId`: `string`; `hasAccepted`: `boolean`; `name_contains`: `string`; \}; \}; \}; `result`: \{ `data`: \{ `createEventVolunteer`: `undefined`; `getEventVolunteers`: `object`[]; `organizations`: `undefined`; `removeEventVolunteer`: `undefined`; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `data`: `undefined`; `id`: `string`; `orderBy`: `undefined`; `where`: `undefined`; \}; \}; `result`: \{ `data`: \{ `createEventVolunteer`: `undefined`; `getEventVolunteers`: `undefined`; `organizations`: `undefined`; `removeEventVolunteer`: \{ `_id`: `string`; \}; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `data`: `undefined`; `id`: `string`; `orderBy`: `undefined`; `where`: `undefined`; \}; \}; `result`: \{ `data`: \{ `createEventVolunteer`: `undefined`; `getEventVolunteers`: `undefined`; `organizations`: `object`[]; `removeEventVolunteer`: `undefined`; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `data`: \{ `eventId`: `string`; `userId`: `string`; \}; `id`: `undefined`; `orderBy`: `undefined`; `where`: `undefined`; \}; \}; `result`: \{ `data`: \{ `createEventVolunteer`: \{ `_id`: `string`; \}; `getEventVolunteers`: `undefined`; `organizations`: `undefined`; `removeEventVolunteer`: `undefined`; \}; \}; \})[] - -Defined in: [src/screens/EventVolunteers/Volunteers/Volunteers.mocks.ts:46](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/EventVolunteers/Volunteers/Volunteers.mocks.ts#L46) diff --git a/docs/docs/auto-docs/screens/EventVolunteers/Volunteers/Volunteers.mocks/variables/MOCKS_EMPTY.md b/docs/docs/auto-docs/screens/EventVolunteers/Volunteers/Volunteers.mocks/variables/MOCKS_EMPTY.md deleted file mode 100644 index d485a6bb22..0000000000 --- a/docs/docs/auto-docs/screens/EventVolunteers/Volunteers/Volunteers.mocks/variables/MOCKS_EMPTY.md +++ /dev/null @@ -1,53 +0,0 @@ -[**talawa-admin**](../../../../../README.md) - -*** - -[talawa-admin](../../../../../modules.md) / [screens/EventVolunteers/Volunteers/Volunteers.mocks](../README.md) / MOCKS\_EMPTY - -# Variable: MOCKS\_EMPTY - -> `const` **MOCKS\_EMPTY**: `object`[] - -Defined in: [src/screens/EventVolunteers/Volunteers/Volunteers.mocks.ts:288](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/EventVolunteers/Volunteers/Volunteers.mocks.ts#L288) - -## Type declaration - -### request - -> **request**: `object` - -#### request.query - -> **query**: `DocumentNode` = `EVENT_VOLUNTEER_LIST` - -#### request.variables - -> **variables**: `object` - -#### request.variables.orderBy - -> **orderBy**: `any` = `null` - -#### request.variables.where - -> **where**: `object` - -#### request.variables.where.eventId - -> **eventId**: `string` = `'eventId'` - -#### request.variables.where.name\_contains - -> **name\_contains**: `string` = `''` - -### result - -> **result**: `object` - -#### result.data - -> **data**: `object` - -#### result.data.getEventVolunteers - -> **getEventVolunteers**: `any`[] = `[]` diff --git a/docs/docs/auto-docs/screens/EventVolunteers/Volunteers/Volunteers.mocks/variables/MOCKS_ERROR.md b/docs/docs/auto-docs/screens/EventVolunteers/Volunteers/Volunteers.mocks/variables/MOCKS_ERROR.md deleted file mode 100644 index a965f9cf20..0000000000 --- a/docs/docs/auto-docs/screens/EventVolunteers/Volunteers/Volunteers.mocks/variables/MOCKS_ERROR.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../../README.md) - -*** - -[talawa-admin](../../../../../modules.md) / [screens/EventVolunteers/Volunteers/Volunteers.mocks](../README.md) / MOCKS\_ERROR - -# Variable: MOCKS\_ERROR - -> `const` **MOCKS\_ERROR**: (\{ `error`: `Error`; `request`: \{ `query`: `DocumentNode`; `variables`: \{ `data`: `undefined`; `id`: `undefined`; `orderBy`: `any`; `where`: \{ `eventId`: `string`; `name_contains`: `string`; \}; \}; \}; `result`: `undefined`; \} \| \{ `error`: `Error`; `request`: \{ `query`: `DocumentNode`; `variables`: \{ `data`: `undefined`; `id`: `string`; `orderBy`: `undefined`; `where`: `undefined`; \}; \}; `result`: `undefined`; \} \| \{ `error`: `undefined`; `request`: \{ `query`: `DocumentNode`; `variables`: \{ `data`: `undefined`; `id`: `string`; `orderBy`: `undefined`; `where`: `undefined`; \}; \}; `result`: \{ `data`: \{ `organizations`: `object`[]; \}; \}; \} \| \{ `error`: `Error`; `request`: \{ `query`: `DocumentNode`; `variables`: \{ `data`: \{ `eventId`: `string`; `userId`: `string`; \}; `id`: `undefined`; `orderBy`: `undefined`; `where`: `undefined`; \}; \}; `result`: `undefined`; \})[] - -Defined in: [src/screens/EventVolunteers/Volunteers/Volunteers.mocks.ts:217](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/EventVolunteers/Volunteers/Volunteers.mocks.ts#L217) diff --git a/docs/docs/auto-docs/screens/EventVolunteers/Volunteers/Volunteers/README.md b/docs/docs/auto-docs/screens/EventVolunteers/Volunteers/Volunteers/README.md deleted file mode 100644 index d4454ffc42..0000000000 --- a/docs/docs/auto-docs/screens/EventVolunteers/Volunteers/Volunteers/README.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / screens/EventVolunteers/Volunteers/Volunteers - -# screens/EventVolunteers/Volunteers/Volunteers - -## Functions - -- [default](functions/default.md) diff --git a/docs/docs/auto-docs/screens/EventVolunteers/Volunteers/Volunteers/functions/default.md b/docs/docs/auto-docs/screens/EventVolunteers/Volunteers/Volunteers/functions/default.md deleted file mode 100644 index 36dd6157b4..0000000000 --- a/docs/docs/auto-docs/screens/EventVolunteers/Volunteers/Volunteers/functions/default.md +++ /dev/null @@ -1,21 +0,0 @@ -[**talawa-admin**](../../../../../README.md) - -*** - -[talawa-admin](../../../../../modules.md) / [screens/EventVolunteers/Volunteers/Volunteers](../README.md) / default - -# Function: default() - -> **default**(): `JSX.Element` - -Defined in: [src/screens/EventVolunteers/Volunteers/Volunteers.tsx:65](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/EventVolunteers/Volunteers/Volunteers.tsx#L65) - -Component for managing and displaying event volunteers related to an event. - -This component allows users to view, filter, sort, and create volunteers. It also handles fetching and displaying related data such as volunteer acceptance status, etc. - -## Returns - -`JSX.Element` - -The rendered component. diff --git a/docs/docs/auto-docs/screens/ForgotPassword/ForgotPassword/README.md b/docs/docs/auto-docs/screens/ForgotPassword/ForgotPassword/README.md deleted file mode 100644 index 242cc67fcc..0000000000 --- a/docs/docs/auto-docs/screens/ForgotPassword/ForgotPassword/README.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / screens/ForgotPassword/ForgotPassword - -# screens/ForgotPassword/ForgotPassword - -## Functions - -- [default](functions/default.md) diff --git a/docs/docs/auto-docs/screens/ForgotPassword/ForgotPassword/functions/default.md b/docs/docs/auto-docs/screens/ForgotPassword/ForgotPassword/functions/default.md deleted file mode 100644 index b9fad4bc57..0000000000 --- a/docs/docs/auto-docs/screens/ForgotPassword/ForgotPassword/functions/default.md +++ /dev/null @@ -1,29 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [screens/ForgotPassword/ForgotPassword](../README.md) / default - -# Function: default() - -> **default**(): `Element` - -Defined in: [src/screens/ForgotPassword/ForgotPassword.tsx:36](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/ForgotPassword/ForgotPassword.tsx#L36) - -`ForgotPassword` component allows users to reset their password. - -It provides two stages: -1. Entering the registered email to receive an OTP. -2. Entering the OTP and new password to reset the password. - -## Returns - -`Element` - -JSX.Element - The `ForgotPassword` component. - -## Example - -```tsx - -``` diff --git a/docs/docs/auto-docs/screens/FundCampaignPledge/FundCampaignPledge/README.md b/docs/docs/auto-docs/screens/FundCampaignPledge/FundCampaignPledge/README.md deleted file mode 100644 index 6d4032a000..0000000000 --- a/docs/docs/auto-docs/screens/FundCampaignPledge/FundCampaignPledge/README.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / screens/FundCampaignPledge/FundCampaignPledge - -# screens/FundCampaignPledge/FundCampaignPledge - -## Functions - -- [default](functions/default.md) diff --git a/docs/docs/auto-docs/screens/FundCampaignPledge/FundCampaignPledge/functions/default.md b/docs/docs/auto-docs/screens/FundCampaignPledge/FundCampaignPledge/functions/default.md deleted file mode 100644 index e7f92f586d..0000000000 --- a/docs/docs/auto-docs/screens/FundCampaignPledge/FundCampaignPledge/functions/default.md +++ /dev/null @@ -1,15 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [screens/FundCampaignPledge/FundCampaignPledge](../README.md) / default - -# Function: default() - -> **default**(): `Element` - -Defined in: [src/screens/FundCampaignPledge/FundCampaignPledge.tsx:62](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/FundCampaignPledge/FundCampaignPledge.tsx#L62) - -## Returns - -`Element` diff --git a/docs/docs/auto-docs/screens/FundCampaignPledge/PledgeDeleteModal/README.md b/docs/docs/auto-docs/screens/FundCampaignPledge/PledgeDeleteModal/README.md deleted file mode 100644 index af92bb2e5a..0000000000 --- a/docs/docs/auto-docs/screens/FundCampaignPledge/PledgeDeleteModal/README.md +++ /dev/null @@ -1,15 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / screens/FundCampaignPledge/PledgeDeleteModal - -# screens/FundCampaignPledge/PledgeDeleteModal - -## Interfaces - -- [InterfaceDeletePledgeModal](interfaces/InterfaceDeletePledgeModal.md) - -## Functions - -- [default](functions/default.md) diff --git a/docs/docs/auto-docs/screens/FundCampaignPledge/PledgeDeleteModal/functions/default.md b/docs/docs/auto-docs/screens/FundCampaignPledge/PledgeDeleteModal/functions/default.md deleted file mode 100644 index 66283b7023..0000000000 --- a/docs/docs/auto-docs/screens/FundCampaignPledge/PledgeDeleteModal/functions/default.md +++ /dev/null @@ -1,48 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [screens/FundCampaignPledge/PledgeDeleteModal](../README.md) / default - -# Function: default() - -> **default**(`props`, `deprecatedLegacyContext`?): `ReactNode` - -Defined in: [src/screens/FundCampaignPledge/PledgeDeleteModal.tsx:42](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/FundCampaignPledge/PledgeDeleteModal.tsx#L42) - -A modal dialog for confirming the deletion of a pledge. - -## Parameters - -### props - -[`InterfaceDeletePledgeModal`](../interfaces/InterfaceDeletePledgeModal.md) - -### deprecatedLegacyContext? - -`any` - -**Deprecated** - -**See** - -[React Docs](https://legacy.reactjs.org/docs/legacy-context.html#referencing-context-in-lifecycle-methods) - -## Returns - -`ReactNode` - -The rendered modal component. - -The `PledgeDeleteModal` component displays a confirmation dialog when a user attempts to delete a pledge. -It allows the user to either confirm or cancel the deletion. -On confirmation, the `deletePledge` mutation is called to remove the pledge from the database, -and the `refetchPledge` function is invoked to update the list of pledges. -A success or error toast notification is shown based on the result of the deletion operation. - -The modal includes: -- A header with a title and a close button. -- A body with a message asking for confirmation. -- A footer with "Yes" and "No" buttons to confirm or cancel the deletion. - -The `deletePledge` mutation is used to perform the deletion operation. diff --git a/docs/docs/auto-docs/screens/FundCampaignPledge/PledgeDeleteModal/interfaces/InterfaceDeletePledgeModal.md b/docs/docs/auto-docs/screens/FundCampaignPledge/PledgeDeleteModal/interfaces/InterfaceDeletePledgeModal.md deleted file mode 100644 index 56e2f29466..0000000000 --- a/docs/docs/auto-docs/screens/FundCampaignPledge/PledgeDeleteModal/interfaces/InterfaceDeletePledgeModal.md +++ /dev/null @@ -1,49 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [screens/FundCampaignPledge/PledgeDeleteModal](../README.md) / InterfaceDeletePledgeModal - -# Interface: InterfaceDeletePledgeModal - -Defined in: [src/screens/FundCampaignPledge/PledgeDeleteModal.tsx:10](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/FundCampaignPledge/PledgeDeleteModal.tsx#L10) - -## Properties - -### hide() - -> **hide**: () => `void` - -Defined in: [src/screens/FundCampaignPledge/PledgeDeleteModal.tsx:12](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/FundCampaignPledge/PledgeDeleteModal.tsx#L12) - -#### Returns - -`void` - -*** - -### isOpen - -> **isOpen**: `boolean` - -Defined in: [src/screens/FundCampaignPledge/PledgeDeleteModal.tsx:11](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/FundCampaignPledge/PledgeDeleteModal.tsx#L11) - -*** - -### pledge - -> **pledge**: [`InterfacePledgeInfo`](../../../../utils/interfaces/interfaces/InterfacePledgeInfo.md) - -Defined in: [src/screens/FundCampaignPledge/PledgeDeleteModal.tsx:13](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/FundCampaignPledge/PledgeDeleteModal.tsx#L13) - -*** - -### refetchPledge() - -> **refetchPledge**: () => `void` - -Defined in: [src/screens/FundCampaignPledge/PledgeDeleteModal.tsx:14](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/FundCampaignPledge/PledgeDeleteModal.tsx#L14) - -#### Returns - -`void` diff --git a/docs/docs/auto-docs/screens/FundCampaignPledge/PledgeModal/README.md b/docs/docs/auto-docs/screens/FundCampaignPledge/PledgeModal/README.md deleted file mode 100644 index 0e89faf3e6..0000000000 --- a/docs/docs/auto-docs/screens/FundCampaignPledge/PledgeModal/README.md +++ /dev/null @@ -1,15 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / screens/FundCampaignPledge/PledgeModal - -# screens/FundCampaignPledge/PledgeModal - -## Interfaces - -- [InterfacePledgeModal](interfaces/InterfacePledgeModal.md) - -## Functions - -- [default](functions/default.md) diff --git a/docs/docs/auto-docs/screens/FundCampaignPledge/PledgeModal/functions/default.md b/docs/docs/auto-docs/screens/FundCampaignPledge/PledgeModal/functions/default.md deleted file mode 100644 index 29ba7ebc2a..0000000000 --- a/docs/docs/auto-docs/screens/FundCampaignPledge/PledgeModal/functions/default.md +++ /dev/null @@ -1,53 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [screens/FundCampaignPledge/PledgeModal](../README.md) / default - -# Function: default() - -> **default**(`props`, `deprecatedLegacyContext`?): `ReactNode` - -Defined in: [src/screens/FundCampaignPledge/PledgeModal.tsx:72](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/FundCampaignPledge/PledgeModal.tsx#L72) - -A modal dialog for creating or editing a pledge. - -## Parameters - -### props - -[`InterfacePledgeModal`](../interfaces/InterfacePledgeModal.md) - -### deprecatedLegacyContext? - -`any` - -**Deprecated** - -**See** - -[React Docs](https://legacy.reactjs.org/docs/legacy-context.html#referencing-context-in-lifecycle-methods) - -## Returns - -`ReactNode` - -The rendered modal component. - -The `PledgeModal` component displays a form within a modal dialog for creating or editing a pledge. -It includes fields for selecting users, entering an amount, choosing a currency, and setting start and end dates for the pledge. - -The modal includes: -- A header with a title indicating the current mode (create or edit) and a close button. -- A form with: - - A multi-select dropdown for selecting users to participate in the pledge. - - Date pickers for selecting the start and end dates of the pledge. - - A dropdown for selecting the currency of the pledge amount. - - An input field for entering the pledge amount. -- A submit button to create or update the pledge. - -On form submission, the component either: -- Calls `updatePledge` mutation to update an existing pledge, or -- Calls `createPledge` mutation to create a new pledge. - -Success or error messages are displayed using toast notifications based on the result of the mutation. diff --git a/docs/docs/auto-docs/screens/FundCampaignPledge/PledgeModal/interfaces/InterfacePledgeModal.md b/docs/docs/auto-docs/screens/FundCampaignPledge/PledgeModal/interfaces/InterfacePledgeModal.md deleted file mode 100644 index 4e19f4aca6..0000000000 --- a/docs/docs/auto-docs/screens/FundCampaignPledge/PledgeModal/interfaces/InterfacePledgeModal.md +++ /dev/null @@ -1,81 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [screens/FundCampaignPledge/PledgeModal](../README.md) / InterfacePledgeModal - -# Interface: InterfacePledgeModal - -Defined in: [src/screens/FundCampaignPledge/PledgeModal.tsx:28](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/FundCampaignPledge/PledgeModal.tsx#L28) - -## Properties - -### campaignId - -> **campaignId**: `string` - -Defined in: [src/screens/FundCampaignPledge/PledgeModal.tsx:31](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/FundCampaignPledge/PledgeModal.tsx#L31) - -*** - -### endDate - -> **endDate**: `Date` - -Defined in: [src/screens/FundCampaignPledge/PledgeModal.tsx:35](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/FundCampaignPledge/PledgeModal.tsx#L35) - -*** - -### hide() - -> **hide**: () => `void` - -Defined in: [src/screens/FundCampaignPledge/PledgeModal.tsx:30](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/FundCampaignPledge/PledgeModal.tsx#L30) - -#### Returns - -`void` - -*** - -### isOpen - -> **isOpen**: `boolean` - -Defined in: [src/screens/FundCampaignPledge/PledgeModal.tsx:29](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/FundCampaignPledge/PledgeModal.tsx#L29) - -*** - -### mode - -> **mode**: `"edit"` \| `"create"` - -Defined in: [src/screens/FundCampaignPledge/PledgeModal.tsx:36](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/FundCampaignPledge/PledgeModal.tsx#L36) - -*** - -### orgId - -> **orgId**: `string` - -Defined in: [src/screens/FundCampaignPledge/PledgeModal.tsx:32](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/FundCampaignPledge/PledgeModal.tsx#L32) - -*** - -### pledge - -> **pledge**: [`InterfacePledgeInfo`](../../../../utils/interfaces/interfaces/InterfacePledgeInfo.md) - -Defined in: [src/screens/FundCampaignPledge/PledgeModal.tsx:33](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/FundCampaignPledge/PledgeModal.tsx#L33) - -*** - -### refetchPledge() - -> **refetchPledge**: () => `void` - -Defined in: [src/screens/FundCampaignPledge/PledgeModal.tsx:34](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/FundCampaignPledge/PledgeModal.tsx#L34) - -#### Returns - -`void` diff --git a/docs/docs/auto-docs/screens/FundCampaignPledge/PledgesMocks/README.md b/docs/docs/auto-docs/screens/FundCampaignPledge/PledgesMocks/README.md deleted file mode 100644 index 09161cf5a8..0000000000 --- a/docs/docs/auto-docs/screens/FundCampaignPledge/PledgesMocks/README.md +++ /dev/null @@ -1,15 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / screens/FundCampaignPledge/PledgesMocks - -# screens/FundCampaignPledge/PledgesMocks - -## Variables - -- [EMPTY\_MOCKS](variables/EMPTY_MOCKS.md) -- [MOCKS](variables/MOCKS.md) -- [MOCKS\_DELETE\_PLEDGE\_ERROR](variables/MOCKS_DELETE_PLEDGE_ERROR.md) -- [MOCKS\_FUND\_CAMPAIGN\_PLEDGE\_ERROR](variables/MOCKS_FUND_CAMPAIGN_PLEDGE_ERROR.md) -- [PLEDGE\_MODAL\_MOCKS](variables/PLEDGE_MODAL_MOCKS.md) diff --git a/docs/docs/auto-docs/screens/FundCampaignPledge/PledgesMocks/variables/EMPTY_MOCKS.md b/docs/docs/auto-docs/screens/FundCampaignPledge/PledgesMocks/variables/EMPTY_MOCKS.md deleted file mode 100644 index 647a9d4377..0000000000 --- a/docs/docs/auto-docs/screens/FundCampaignPledge/PledgesMocks/variables/EMPTY_MOCKS.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [screens/FundCampaignPledge/PledgesMocks](../README.md) / EMPTY\_MOCKS - -# Variable: EMPTY\_MOCKS - -> `const` **EMPTY\_MOCKS**: (\{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `id`: `string`; \}; \}; `result`: \{ `data`: \{ `organizations`: `object`[]; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `pledgeOrderBy`: `string`; `where`: \{ `id`: `string`; \}; \}; \}; `result`: \{ `data`: \{ `getFundraisingCampaigns`: `object`[]; \}; \}; \})[] - -Defined in: [src/screens/FundCampaignPledge/PledgesMocks.ts:387](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/FundCampaignPledge/PledgesMocks.ts#L387) diff --git a/docs/docs/auto-docs/screens/FundCampaignPledge/PledgesMocks/variables/MOCKS.md b/docs/docs/auto-docs/screens/FundCampaignPledge/PledgesMocks/variables/MOCKS.md deleted file mode 100644 index ec14040443..0000000000 --- a/docs/docs/auto-docs/screens/FundCampaignPledge/PledgesMocks/variables/MOCKS.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [screens/FundCampaignPledge/PledgesMocks](../README.md) / MOCKS - -# Variable: MOCKS - -> `const` **MOCKS**: (\{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `id`: `string`; \}; \}; `result`: \{ `data`: \{ `organizations`: `object`[]; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `id`: `undefined`; `pledgeOrderBy`: `string`; `where`: \{ `id`: `string`; \}; \}; \}; `result`: \{ `data`: \{ `getFundraisingCampaigns`: `object`[]; `removeFundraisingCampaignPledge`: `undefined`; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `id`: `string`; `pledgeOrderBy`: `undefined`; `where`: `undefined`; \}; \}; `result`: \{ `data`: \{ `getFundraisingCampaigns`: `undefined`; `removeFundraisingCampaignPledge`: \{ `_id`: `string`; \}; \}; \}; \})[] - -Defined in: [src/screens/FundCampaignPledge/PledgesMocks.ts:49](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/FundCampaignPledge/PledgesMocks.ts#L49) diff --git a/docs/docs/auto-docs/screens/FundCampaignPledge/PledgesMocks/variables/MOCKS_DELETE_PLEDGE_ERROR.md b/docs/docs/auto-docs/screens/FundCampaignPledge/PledgesMocks/variables/MOCKS_DELETE_PLEDGE_ERROR.md deleted file mode 100644 index 44441f8101..0000000000 --- a/docs/docs/auto-docs/screens/FundCampaignPledge/PledgesMocks/variables/MOCKS_DELETE_PLEDGE_ERROR.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [screens/FundCampaignPledge/PledgesMocks](../README.md) / MOCKS\_DELETE\_PLEDGE\_ERROR - -# Variable: MOCKS\_DELETE\_PLEDGE\_ERROR - -> `const` **MOCKS\_DELETE\_PLEDGE\_ERROR**: (\{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `id`: `string`; \}; \}; `result`: \{ `data`: \{ `organizations`: `object`[]; \}; \}; \} \| \{ `error`: `Error`; `request`: \{ `query`: `DocumentNode`; `variables`: \{ `id`: `string`; \}; \}; \})[] - -Defined in: [src/screens/FundCampaignPledge/PledgesMocks.ts:374](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/FundCampaignPledge/PledgesMocks.ts#L374) diff --git a/docs/docs/auto-docs/screens/FundCampaignPledge/PledgesMocks/variables/MOCKS_FUND_CAMPAIGN_PLEDGE_ERROR.md b/docs/docs/auto-docs/screens/FundCampaignPledge/PledgesMocks/variables/MOCKS_FUND_CAMPAIGN_PLEDGE_ERROR.md deleted file mode 100644 index 729ceb1087..0000000000 --- a/docs/docs/auto-docs/screens/FundCampaignPledge/PledgesMocks/variables/MOCKS_FUND_CAMPAIGN_PLEDGE_ERROR.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [screens/FundCampaignPledge/PledgesMocks](../README.md) / MOCKS\_FUND\_CAMPAIGN\_PLEDGE\_ERROR - -# Variable: MOCKS\_FUND\_CAMPAIGN\_PLEDGE\_ERROR - -> `const` **MOCKS\_FUND\_CAMPAIGN\_PLEDGE\_ERROR**: (\{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `id`: `string`; \}; \}; `result`: \{ `data`: \{ `organizations`: `object`[]; \}; \}; \} \| \{ `error`: `Error`; `request`: \{ `query`: `DocumentNode`; `variables`: \{ `pledgeOrderBy`: `string`; `where`: \{ `id`: `string`; \}; \}; \}; \})[] - -Defined in: [src/screens/FundCampaignPledge/PledgesMocks.ts:358](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/FundCampaignPledge/PledgesMocks.ts#L358) diff --git a/docs/docs/auto-docs/screens/FundCampaignPledge/PledgesMocks/variables/PLEDGE_MODAL_MOCKS.md b/docs/docs/auto-docs/screens/FundCampaignPledge/PledgesMocks/variables/PLEDGE_MODAL_MOCKS.md deleted file mode 100644 index 4e6d26b313..0000000000 --- a/docs/docs/auto-docs/screens/FundCampaignPledge/PledgesMocks/variables/PLEDGE_MODAL_MOCKS.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [screens/FundCampaignPledge/PledgesMocks](../README.md) / PLEDGE\_MODAL\_MOCKS - -# Variable: PLEDGE\_MODAL\_MOCKS - -> `const` **PLEDGE\_MODAL\_MOCKS**: (\{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `id`: `string`; \}; \}; `result`: \{ `data`: \{ `organizations`: `object`[]; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `amount`: `number`; `campaignId`: `undefined`; `currency`: `undefined`; `endDate`: `undefined`; `id`: `string`; `startDate`: `undefined`; `userIds`: `undefined`; \}; \}; `result`: \{ `data`: \{ `createFundraisingCampaignPledge`: `undefined`; `updateFundraisingCampaignPledge`: \{ `_id`: `string`; \}; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `amount`: `number`; `campaignId`: `string`; `currency`: `string`; `endDate`: `string`; `id`: `undefined`; `startDate`: `string`; `userIds`: `string`[]; \}; \}; `result`: \{ `data`: \{ `createFundraisingCampaignPledge`: \{ `_id`: `string`; \}; `updateFundraisingCampaignPledge`: `undefined`; \}; \}; \})[] - -Defined in: [src/screens/FundCampaignPledge/PledgesMocks.ts:419](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/FundCampaignPledge/PledgesMocks.ts#L419) diff --git a/docs/docs/auto-docs/screens/Leaderboard/Leaderboard.mocks/README.md b/docs/docs/auto-docs/screens/Leaderboard/Leaderboard.mocks/README.md deleted file mode 100644 index 300d2201d7..0000000000 --- a/docs/docs/auto-docs/screens/Leaderboard/Leaderboard.mocks/README.md +++ /dev/null @@ -1,13 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / screens/Leaderboard/Leaderboard.mocks - -# screens/Leaderboard/Leaderboard.mocks - -## Variables - -- [EMPTY\_MOCKS](variables/EMPTY_MOCKS.md) -- [ERROR\_MOCKS](variables/ERROR_MOCKS.md) -- [MOCKS](variables/MOCKS.md) diff --git a/docs/docs/auto-docs/screens/Leaderboard/Leaderboard.mocks/variables/EMPTY_MOCKS.md b/docs/docs/auto-docs/screens/Leaderboard/Leaderboard.mocks/variables/EMPTY_MOCKS.md deleted file mode 100644 index da2ab3bf05..0000000000 --- a/docs/docs/auto-docs/screens/Leaderboard/Leaderboard.mocks/variables/EMPTY_MOCKS.md +++ /dev/null @@ -1,57 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [screens/Leaderboard/Leaderboard.mocks](../README.md) / EMPTY\_MOCKS - -# Variable: EMPTY\_MOCKS - -> `const` **EMPTY\_MOCKS**: `object`[] - -Defined in: [src/screens/Leaderboard/Leaderboard.mocks.ts:162](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/Leaderboard/Leaderboard.mocks.ts#L162) - -## Type declaration - -### request - -> **request**: `object` - -#### request.query - -> **query**: `DocumentNode` = `VOLUNTEER_RANKING` - -#### request.variables - -> **variables**: `object` - -#### request.variables.orgId - -> **orgId**: `string` = `'orgId'` - -#### request.variables.where - -> **where**: `object` - -#### request.variables.where.nameContains - -> **nameContains**: `string` = `''` - -#### request.variables.where.orderBy - -> **orderBy**: `string` = `'hours_DESC'` - -#### request.variables.where.timeFrame - -> **timeFrame**: `string` = `'allTime'` - -### result - -> **result**: `object` - -#### result.data - -> **data**: `object` - -#### result.data.getVolunteerRanks - -> **getVolunteerRanks**: `any`[] = `[]` diff --git a/docs/docs/auto-docs/screens/Leaderboard/Leaderboard.mocks/variables/ERROR_MOCKS.md b/docs/docs/auto-docs/screens/Leaderboard/Leaderboard.mocks/variables/ERROR_MOCKS.md deleted file mode 100644 index a1e6699be6..0000000000 --- a/docs/docs/auto-docs/screens/Leaderboard/Leaderboard.mocks/variables/ERROR_MOCKS.md +++ /dev/null @@ -1,49 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [screens/Leaderboard/Leaderboard.mocks](../README.md) / ERROR\_MOCKS - -# Variable: ERROR\_MOCKS - -> `const` **ERROR\_MOCKS**: `object`[] - -Defined in: [src/screens/Leaderboard/Leaderboard.mocks.ts:183](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/Leaderboard/Leaderboard.mocks.ts#L183) - -## Type declaration - -### error - -> **error**: `Error` - -### request - -> **request**: `object` - -#### request.query - -> **query**: `DocumentNode` = `VOLUNTEER_RANKING` - -#### request.variables - -> **variables**: `object` - -#### request.variables.orgId - -> **orgId**: `string` = `'orgId'` - -#### request.variables.where - -> **where**: `object` - -#### request.variables.where.nameContains - -> **nameContains**: `string` = `''` - -#### request.variables.where.orderBy - -> **orderBy**: `string` = `'hours_DESC'` - -#### request.variables.where.timeFrame - -> **timeFrame**: `string` = `'allTime'` diff --git a/docs/docs/auto-docs/screens/Leaderboard/Leaderboard.mocks/variables/MOCKS.md b/docs/docs/auto-docs/screens/Leaderboard/Leaderboard.mocks/variables/MOCKS.md deleted file mode 100644 index d77b49ee88..0000000000 --- a/docs/docs/auto-docs/screens/Leaderboard/Leaderboard.mocks/variables/MOCKS.md +++ /dev/null @@ -1,57 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [screens/Leaderboard/Leaderboard.mocks](../README.md) / MOCKS - -# Variable: MOCKS - -> `const` **MOCKS**: `object`[] - -Defined in: [src/screens/Leaderboard/Leaderboard.mocks.ts:51](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/Leaderboard/Leaderboard.mocks.ts#L51) - -## Type declaration - -### request - -> **request**: `object` - -#### request.query - -> **query**: `DocumentNode` = `VOLUNTEER_RANKING` - -#### request.variables - -> **variables**: `object` - -#### request.variables.orgId - -> **orgId**: `string` = `'orgId'` - -#### request.variables.where - -> **where**: `object` - -#### request.variables.where.nameContains - -> **nameContains**: `string` = `''` - -#### request.variables.where.orderBy - -> **orderBy**: `string` = `'hours_DESC'` - -#### request.variables.where.timeFrame - -> **timeFrame**: `string` = `'allTime'` - -### result - -> **result**: `object` - -#### result.data - -> **data**: `object` - -#### result.data.getVolunteerRanks - -> **getVolunteerRanks**: `object`[] diff --git a/docs/docs/auto-docs/screens/Leaderboard/Leaderboard/README.md b/docs/docs/auto-docs/screens/Leaderboard/Leaderboard/README.md deleted file mode 100644 index a8117a54a7..0000000000 --- a/docs/docs/auto-docs/screens/Leaderboard/Leaderboard/README.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / screens/Leaderboard/Leaderboard - -# screens/Leaderboard/Leaderboard - -## Functions - -- [default](functions/default.md) diff --git a/docs/docs/auto-docs/screens/Leaderboard/Leaderboard/functions/default.md b/docs/docs/auto-docs/screens/Leaderboard/Leaderboard/functions/default.md deleted file mode 100644 index abf7922839..0000000000 --- a/docs/docs/auto-docs/screens/Leaderboard/Leaderboard/functions/default.md +++ /dev/null @@ -1,23 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [screens/Leaderboard/Leaderboard](../README.md) / default - -# Function: default() - -> **default**(): `JSX.Element` - -Defined in: [src/screens/Leaderboard/Leaderboard.tsx:62](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/Leaderboard/Leaderboard.tsx#L62) - -Component to display the leaderboard of volunteers. - -This component shows a leaderboard of volunteers ranked by hours contributed, -with features for filtering by time frame and sorting by hours. It displays -volunteer details including rank, name, email, and hours volunteered. - -## Returns - -`JSX.Element` - -The rendered component. diff --git a/docs/docs/auto-docs/screens/LoginPage/LoginPage/README.md b/docs/docs/auto-docs/screens/LoginPage/LoginPage/README.md deleted file mode 100644 index 3258f97741..0000000000 --- a/docs/docs/auto-docs/screens/LoginPage/LoginPage/README.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / screens/LoginPage/LoginPage - -# screens/LoginPage/LoginPage - -## Functions - -- [default](functions/default.md) diff --git a/docs/docs/auto-docs/screens/LoginPage/LoginPage/functions/default.md b/docs/docs/auto-docs/screens/LoginPage/LoginPage/functions/default.md deleted file mode 100644 index 5c8d88cc9c..0000000000 --- a/docs/docs/auto-docs/screens/LoginPage/LoginPage/functions/default.md +++ /dev/null @@ -1,19 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [screens/LoginPage/LoginPage](../README.md) / default - -# Function: default() - -> **default**(): `Element` - -Defined in: [src/screens/LoginPage/LoginPage.tsx:46](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/LoginPage/LoginPage.tsx#L46) - -LoginPage component is used to render the login page of the application where user can login or register -to the application using email and password. The component also provides the functionality to switch between login and -register form. - -## Returns - -`Element` diff --git a/docs/docs/auto-docs/screens/ManageTag/EditUserTagModal/README.md b/docs/docs/auto-docs/screens/ManageTag/EditUserTagModal/README.md deleted file mode 100644 index b40848f3a0..0000000000 --- a/docs/docs/auto-docs/screens/ManageTag/EditUserTagModal/README.md +++ /dev/null @@ -1,15 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / screens/ManageTag/EditUserTagModal - -# screens/ManageTag/EditUserTagModal - -## Interfaces - -- [InterfaceEditUserTagModalProps](interfaces/InterfaceEditUserTagModalProps.md) - -## Functions - -- [default](functions/default.md) diff --git a/docs/docs/auto-docs/screens/ManageTag/EditUserTagModal/functions/default.md b/docs/docs/auto-docs/screens/ManageTag/EditUserTagModal/functions/default.md deleted file mode 100644 index 1554d48d41..0000000000 --- a/docs/docs/auto-docs/screens/ManageTag/EditUserTagModal/functions/default.md +++ /dev/null @@ -1,31 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [screens/ManageTag/EditUserTagModal](../README.md) / default - -# Function: default() - -> **default**(`props`, `deprecatedLegacyContext`?): `ReactNode` - -Defined in: [src/screens/ManageTag/EditUserTagModal.tsx:20](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/ManageTag/EditUserTagModal.tsx#L20) - -## Parameters - -### props - -[`InterfaceEditUserTagModalProps`](../interfaces/InterfaceEditUserTagModalProps.md) - -### deprecatedLegacyContext? - -`any` - -**Deprecated** - -**See** - -[React Docs](https://legacy.reactjs.org/docs/legacy-context.html#referencing-context-in-lifecycle-methods) - -## Returns - -`ReactNode` diff --git a/docs/docs/auto-docs/screens/ManageTag/EditUserTagModal/interfaces/InterfaceEditUserTagModalProps.md b/docs/docs/auto-docs/screens/ManageTag/EditUserTagModal/interfaces/InterfaceEditUserTagModalProps.md deleted file mode 100644 index a30e2310e1..0000000000 --- a/docs/docs/auto-docs/screens/ManageTag/EditUserTagModal/interfaces/InterfaceEditUserTagModalProps.md +++ /dev/null @@ -1,91 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [screens/ManageTag/EditUserTagModal](../README.md) / InterfaceEditUserTagModalProps - -# Interface: InterfaceEditUserTagModalProps - -Defined in: [src/screens/ManageTag/EditUserTagModal.tsx:10](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/ManageTag/EditUserTagModal.tsx#L10) - -Edit UserTag Modal component for the Manage Tag screen. - -## Properties - -### editUserTagModalIsOpen - -> **editUserTagModalIsOpen**: `boolean` - -Defined in: [src/screens/ManageTag/EditUserTagModal.tsx:11](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/ManageTag/EditUserTagModal.tsx#L11) - -*** - -### handleEditUserTag() - -> **handleEditUserTag**: (`e`) => `Promise`\<`void`\> - -Defined in: [src/screens/ManageTag/EditUserTagModal.tsx:15](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/ManageTag/EditUserTagModal.tsx#L15) - -#### Parameters - -##### e - -`FormEvent`\<`HTMLFormElement`\> - -#### Returns - -`Promise`\<`void`\> - -*** - -### hideEditUserTagModal() - -> **hideEditUserTagModal**: () => `void` - -Defined in: [src/screens/ManageTag/EditUserTagModal.tsx:12](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/ManageTag/EditUserTagModal.tsx#L12) - -#### Returns - -`void` - -*** - -### newTagName - -> **newTagName**: `string` - -Defined in: [src/screens/ManageTag/EditUserTagModal.tsx:13](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/ManageTag/EditUserTagModal.tsx#L13) - -*** - -### setNewTagName() - -> **setNewTagName**: (`state`) => `void` - -Defined in: [src/screens/ManageTag/EditUserTagModal.tsx:14](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/ManageTag/EditUserTagModal.tsx#L14) - -#### Parameters - -##### state - -`SetStateAction`\<`string`\> - -#### Returns - -`void` - -*** - -### t - -> **t**: `TFunction`\<`"manageTag"`\> - -Defined in: [src/screens/ManageTag/EditUserTagModal.tsx:16](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/ManageTag/EditUserTagModal.tsx#L16) - -*** - -### tCommon - -> **tCommon**: `TFunction`\<`"common"`\> - -Defined in: [src/screens/ManageTag/EditUserTagModal.tsx:17](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/ManageTag/EditUserTagModal.tsx#L17) diff --git a/docs/docs/auto-docs/screens/ManageTag/ManageTag/README.md b/docs/docs/auto-docs/screens/ManageTag/ManageTag/README.md deleted file mode 100644 index fd25228ebe..0000000000 --- a/docs/docs/auto-docs/screens/ManageTag/ManageTag/README.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / screens/ManageTag/ManageTag - -# screens/ManageTag/ManageTag - -## Functions - -- [default](functions/default.md) diff --git a/docs/docs/auto-docs/screens/ManageTag/ManageTag/functions/default.md b/docs/docs/auto-docs/screens/ManageTag/ManageTag/functions/default.md deleted file mode 100644 index 25321f5924..0000000000 --- a/docs/docs/auto-docs/screens/ManageTag/ManageTag/functions/default.md +++ /dev/null @@ -1,17 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [screens/ManageTag/ManageTag](../README.md) / default - -# Function: default() - -> **default**(): `JSX.Element` - -Defined in: [src/screens/ManageTag/ManageTag.tsx:46](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/ManageTag/ManageTag.tsx#L46) - -Component that renders the Manage Tag screen when the app navigates to '/orgtags/:orgId/manageTag/:tagId'. - -## Returns - -`JSX.Element` diff --git a/docs/docs/auto-docs/screens/ManageTag/ManageTagMockComponents/MockAddPeopleToTag/README.md b/docs/docs/auto-docs/screens/ManageTag/ManageTagMockComponents/MockAddPeopleToTag/README.md deleted file mode 100644 index 472f1e281d..0000000000 --- a/docs/docs/auto-docs/screens/ManageTag/ManageTagMockComponents/MockAddPeopleToTag/README.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / screens/ManageTag/ManageTagMockComponents/MockAddPeopleToTag - -# screens/ManageTag/ManageTagMockComponents/MockAddPeopleToTag - -## Functions - -- [default](functions/default.md) diff --git a/docs/docs/auto-docs/screens/ManageTag/ManageTagMockComponents/MockAddPeopleToTag/functions/default.md b/docs/docs/auto-docs/screens/ManageTag/ManageTagMockComponents/MockAddPeopleToTag/functions/default.md deleted file mode 100644 index 2d358e5be2..0000000000 --- a/docs/docs/auto-docs/screens/ManageTag/ManageTagMockComponents/MockAddPeopleToTag/functions/default.md +++ /dev/null @@ -1,31 +0,0 @@ -[**talawa-admin**](../../../../../README.md) - -*** - -[talawa-admin](../../../../../modules.md) / [screens/ManageTag/ManageTagMockComponents/MockAddPeopleToTag](../README.md) / default - -# Function: default() - -> **default**(`props`, `deprecatedLegacyContext`?): `ReactNode` - -Defined in: [src/screens/ManageTag/ManageTagMockComponents/MockAddPeopleToTag.tsx:12](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/ManageTag/ManageTagMockComponents/MockAddPeopleToTag.tsx#L12) - -## Parameters - -### props - -[`InterfaceAddPeopleToTagProps`](../../../../../components/AddPeopleToTag/AddPeopleToTag/interfaces/InterfaceAddPeopleToTagProps.md) - -### deprecatedLegacyContext? - -`any` - -**Deprecated** - -**See** - -[React Docs](https://legacy.reactjs.org/docs/legacy-context.html#referencing-context-in-lifecycle-methods) - -## Returns - -`ReactNode` diff --git a/docs/docs/auto-docs/screens/ManageTag/ManageTagMockComponents/MockTagActions/README.md b/docs/docs/auto-docs/screens/ManageTag/ManageTagMockComponents/MockTagActions/README.md deleted file mode 100644 index b7165dfdef..0000000000 --- a/docs/docs/auto-docs/screens/ManageTag/ManageTagMockComponents/MockTagActions/README.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / screens/ManageTag/ManageTagMockComponents/MockTagActions - -# screens/ManageTag/ManageTagMockComponents/MockTagActions - -## Functions - -- [default](functions/default.md) diff --git a/docs/docs/auto-docs/screens/ManageTag/ManageTagMockComponents/MockTagActions/functions/default.md b/docs/docs/auto-docs/screens/ManageTag/ManageTagMockComponents/MockTagActions/functions/default.md deleted file mode 100644 index 6cf36c8599..0000000000 --- a/docs/docs/auto-docs/screens/ManageTag/ManageTagMockComponents/MockTagActions/functions/default.md +++ /dev/null @@ -1,33 +0,0 @@ -[**talawa-admin**](../../../../../README.md) - -*** - -[talawa-admin](../../../../../modules.md) / [screens/ManageTag/ManageTagMockComponents/MockTagActions](../README.md) / default - -# Function: default() - -> **default**(`props`, `deprecatedLegacyContext`?): `ReactNode` - -Defined in: [src/screens/ManageTag/ManageTagMockComponents/MockTagActions.tsx:8](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/ManageTag/ManageTagMockComponents/MockTagActions.tsx#L8) - -Component that mocks the TagActions component for the Manage Tag screen. - -## Parameters - -### props - -[`InterfaceTagActionsProps`](../../../../../components/TagActions/TagActions/interfaces/InterfaceTagActionsProps.md) - -### deprecatedLegacyContext? - -`any` - -**Deprecated** - -**See** - -[React Docs](https://legacy.reactjs.org/docs/legacy-context.html#referencing-context-in-lifecycle-methods) - -## Returns - -`ReactNode` diff --git a/docs/docs/auto-docs/screens/ManageTag/ManageTagMocks/README.md b/docs/docs/auto-docs/screens/ManageTag/ManageTagMocks/README.md deleted file mode 100644 index b371650a1e..0000000000 --- a/docs/docs/auto-docs/screens/ManageTag/ManageTagMocks/README.md +++ /dev/null @@ -1,12 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / screens/ManageTag/ManageTagMocks - -# screens/ManageTag/ManageTagMocks - -## Variables - -- [MOCKS](variables/MOCKS.md) -- [MOCKS\_ERROR\_ASSIGNED\_MEMBERS](variables/MOCKS_ERROR_ASSIGNED_MEMBERS.md) diff --git a/docs/docs/auto-docs/screens/ManageTag/ManageTagMocks/variables/MOCKS.md b/docs/docs/auto-docs/screens/ManageTag/ManageTagMocks/variables/MOCKS.md deleted file mode 100644 index c52f7475e1..0000000000 --- a/docs/docs/auto-docs/screens/ManageTag/ManageTagMocks/variables/MOCKS.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [screens/ManageTag/ManageTagMocks](../README.md) / MOCKS - -# Variable: MOCKS - -> `const` **MOCKS**: (\{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `after`: `undefined`; `first`: `number`; `id`: `string`; `name`: `undefined`; `sortedBy`: \{ `id`: `string`; \}; `tagId`: `undefined`; `userId`: `undefined`; `where`: \{ `firstName`: \{ `starts_with`: `string`; \}; `lastName`: \{ `starts_with`: `string`; \}; \}; \}; \}; `result`: \{ `data`: \{ `getAssignedUsers`: \{ `ancestorTags`: `any`[]; `name`: `string`; `usersAssignedTo`: \{ `edges`: `object`[]; `pageInfo`: \{ `endCursor`: `string`; `hasNextPage`: `boolean`; `hasPreviousPage`: `boolean`; `startCursor`: `string`; \}; `totalCount`: `number`; \}; \}; `removeUserTag`: `undefined`; `unassignUserTag`: `undefined`; `updateUserTag`: `undefined`; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `after`: `string`; `first`: `number`; `id`: `string`; `name`: `undefined`; `sortedBy`: \{ `id`: `string`; \}; `tagId`: `undefined`; `userId`: `undefined`; `where`: \{ `firstName`: \{ `starts_with`: `string`; \}; `lastName`: \{ `starts_with`: `string`; \}; \}; \}; \}; `result`: \{ `data`: \{ `getAssignedUsers`: \{ `ancestorTags`: `any`[]; `name`: `string`; `usersAssignedTo`: \{ `edges`: `object`[]; `pageInfo`: \{ `endCursor`: `string`; `hasNextPage`: `boolean`; `hasPreviousPage`: `boolean`; `startCursor`: `string`; \}; `totalCount`: `number`; \}; \}; `removeUserTag`: `undefined`; `unassignUserTag`: `undefined`; `updateUserTag`: `undefined`; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `after`: `undefined`; `first`: `undefined`; `id`: `undefined`; `name`: `undefined`; `sortedBy`: `undefined`; `tagId`: `string`; `userId`: `string`; `where`: `undefined`; \}; \}; `result`: \{ `data`: \{ `getAssignedUsers`: `undefined`; `removeUserTag`: `undefined`; `unassignUserTag`: \{ `_id`: `string`; \}; `updateUserTag`: `undefined`; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `after`: `undefined`; `first`: `undefined`; `id`: `undefined`; `name`: `string`; `sortedBy`: `undefined`; `tagId`: `string`; `userId`: `undefined`; `where`: `undefined`; \}; \}; `result`: \{ `data`: \{ `getAssignedUsers`: `undefined`; `removeUserTag`: `undefined`; `unassignUserTag`: `undefined`; `updateUserTag`: \{ `_id`: `string`; \}; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `after`: `undefined`; `first`: `undefined`; `id`: `string`; `name`: `undefined`; `sortedBy`: `undefined`; `tagId`: `undefined`; `userId`: `undefined`; `where`: `undefined`; \}; \}; `result`: \{ `data`: \{ `getAssignedUsers`: `undefined`; `removeUserTag`: \{ `_id`: `string`; \}; `unassignUserTag`: `undefined`; `updateUserTag`: `undefined`; \}; \}; \})[] - -Defined in: [src/screens/ManageTag/ManageTagMocks.ts:9](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/ManageTag/ManageTagMocks.ts#L9) diff --git a/docs/docs/auto-docs/screens/ManageTag/ManageTagMocks/variables/MOCKS_ERROR_ASSIGNED_MEMBERS.md b/docs/docs/auto-docs/screens/ManageTag/ManageTagMocks/variables/MOCKS_ERROR_ASSIGNED_MEMBERS.md deleted file mode 100644 index a814770445..0000000000 --- a/docs/docs/auto-docs/screens/ManageTag/ManageTagMocks/variables/MOCKS_ERROR_ASSIGNED_MEMBERS.md +++ /dev/null @@ -1,65 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [screens/ManageTag/ManageTagMocks](../README.md) / MOCKS\_ERROR\_ASSIGNED\_MEMBERS - -# Variable: MOCKS\_ERROR\_ASSIGNED\_MEMBERS - -> `const` **MOCKS\_ERROR\_ASSIGNED\_MEMBERS**: `object`[] - -Defined in: [src/screens/ManageTag/ManageTagMocks.ts:320](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/ManageTag/ManageTagMocks.ts#L320) - -## Type declaration - -### error - -> **error**: `Error` - -### request - -> **request**: `object` - -#### request.query - -> **query**: `DocumentNode` = `USER_TAGS_ASSIGNED_MEMBERS` - -#### request.variables - -> **variables**: `object` - -#### request.variables.first - -> **first**: `number` = `TAGS_QUERY_DATA_CHUNK_SIZE` - -#### request.variables.id - -> **id**: `string` = `'1'` - -#### request.variables.sortedBy - -> **sortedBy**: `object` - -#### request.variables.sortedBy.id - -> **id**: `string` = `'DESCENDING'` - -#### request.variables.where - -> **where**: `object` - -#### request.variables.where.firstName - -> **firstName**: `object` - -#### request.variables.where.firstName.starts\_with - -> **starts\_with**: `string` = `''` - -#### request.variables.where.lastName - -> **lastName**: `object` - -#### request.variables.where.lastName.starts\_with - -> **starts\_with**: `string` = `''` diff --git a/docs/docs/auto-docs/screens/ManageTag/RemoveUserTagModal/README.md b/docs/docs/auto-docs/screens/ManageTag/RemoveUserTagModal/README.md deleted file mode 100644 index 81941d24ec..0000000000 --- a/docs/docs/auto-docs/screens/ManageTag/RemoveUserTagModal/README.md +++ /dev/null @@ -1,15 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / screens/ManageTag/RemoveUserTagModal - -# screens/ManageTag/RemoveUserTagModal - -## Interfaces - -- [InterfaceRemoveUserTagModalProps](interfaces/InterfaceRemoveUserTagModalProps.md) - -## Functions - -- [default](functions/default.md) diff --git a/docs/docs/auto-docs/screens/ManageTag/RemoveUserTagModal/functions/default.md b/docs/docs/auto-docs/screens/ManageTag/RemoveUserTagModal/functions/default.md deleted file mode 100644 index 99691c4046..0000000000 --- a/docs/docs/auto-docs/screens/ManageTag/RemoveUserTagModal/functions/default.md +++ /dev/null @@ -1,31 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [screens/ManageTag/RemoveUserTagModal](../README.md) / default - -# Function: default() - -> **default**(`props`, `deprecatedLegacyContext`?): `ReactNode` - -Defined in: [src/screens/ManageTag/RemoveUserTagModal.tsx:17](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/ManageTag/RemoveUserTagModal.tsx#L17) - -## Parameters - -### props - -[`InterfaceRemoveUserTagModalProps`](../interfaces/InterfaceRemoveUserTagModalProps.md) - -### deprecatedLegacyContext? - -`any` - -**Deprecated** - -**See** - -[React Docs](https://legacy.reactjs.org/docs/legacy-context.html#referencing-context-in-lifecycle-methods) - -## Returns - -`ReactNode` diff --git a/docs/docs/auto-docs/screens/ManageTag/RemoveUserTagModal/interfaces/InterfaceRemoveUserTagModalProps.md b/docs/docs/auto-docs/screens/ManageTag/RemoveUserTagModal/interfaces/InterfaceRemoveUserTagModalProps.md deleted file mode 100644 index b3c07445cc..0000000000 --- a/docs/docs/auto-docs/screens/ManageTag/RemoveUserTagModal/interfaces/InterfaceRemoveUserTagModalProps.md +++ /dev/null @@ -1,59 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [screens/ManageTag/RemoveUserTagModal](../README.md) / InterfaceRemoveUserTagModalProps - -# Interface: InterfaceRemoveUserTagModalProps - -Defined in: [src/screens/ManageTag/RemoveUserTagModal.tsx:9](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/ManageTag/RemoveUserTagModal.tsx#L9) - -Remove UserTag Modal component for the Manage Tag screen. - -## Properties - -### handleRemoveUserTag() - -> **handleRemoveUserTag**: () => `Promise`\<`void`\> - -Defined in: [src/screens/ManageTag/RemoveUserTagModal.tsx:12](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/ManageTag/RemoveUserTagModal.tsx#L12) - -#### Returns - -`Promise`\<`void`\> - -*** - -### removeUserTagModalIsOpen - -> **removeUserTagModalIsOpen**: `boolean` - -Defined in: [src/screens/ManageTag/RemoveUserTagModal.tsx:10](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/ManageTag/RemoveUserTagModal.tsx#L10) - -*** - -### t - -> **t**: `TFunction`\<`"manageTag"`\> - -Defined in: [src/screens/ManageTag/RemoveUserTagModal.tsx:13](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/ManageTag/RemoveUserTagModal.tsx#L13) - -*** - -### tCommon - -> **tCommon**: `TFunction`\<`"common"`\> - -Defined in: [src/screens/ManageTag/RemoveUserTagModal.tsx:14](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/ManageTag/RemoveUserTagModal.tsx#L14) - -*** - -### toggleRemoveUserTagModal() - -> **toggleRemoveUserTagModal**: () => `void` - -Defined in: [src/screens/ManageTag/RemoveUserTagModal.tsx:11](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/ManageTag/RemoveUserTagModal.tsx#L11) - -#### Returns - -`void` diff --git a/docs/docs/auto-docs/screens/ManageTag/UnassignUserTagModal/README.md b/docs/docs/auto-docs/screens/ManageTag/UnassignUserTagModal/README.md deleted file mode 100644 index a2f139ddb6..0000000000 --- a/docs/docs/auto-docs/screens/ManageTag/UnassignUserTagModal/README.md +++ /dev/null @@ -1,15 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / screens/ManageTag/UnassignUserTagModal - -# screens/ManageTag/UnassignUserTagModal - -## Interfaces - -- [InterfaceUnassignUserTagModalProps](interfaces/InterfaceUnassignUserTagModalProps.md) - -## Functions - -- [default](functions/default.md) diff --git a/docs/docs/auto-docs/screens/ManageTag/UnassignUserTagModal/functions/default.md b/docs/docs/auto-docs/screens/ManageTag/UnassignUserTagModal/functions/default.md deleted file mode 100644 index c2b0ba88ac..0000000000 --- a/docs/docs/auto-docs/screens/ManageTag/UnassignUserTagModal/functions/default.md +++ /dev/null @@ -1,31 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [screens/ManageTag/UnassignUserTagModal](../README.md) / default - -# Function: default() - -> **default**(`props`, `deprecatedLegacyContext`?): `ReactNode` - -Defined in: [src/screens/ManageTag/UnassignUserTagModal.tsx:17](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/ManageTag/UnassignUserTagModal.tsx#L17) - -## Parameters - -### props - -[`InterfaceUnassignUserTagModalProps`](../interfaces/InterfaceUnassignUserTagModalProps.md) - -### deprecatedLegacyContext? - -`any` - -**Deprecated** - -**See** - -[React Docs](https://legacy.reactjs.org/docs/legacy-context.html#referencing-context-in-lifecycle-methods) - -## Returns - -`ReactNode` diff --git a/docs/docs/auto-docs/screens/ManageTag/UnassignUserTagModal/interfaces/InterfaceUnassignUserTagModalProps.md b/docs/docs/auto-docs/screens/ManageTag/UnassignUserTagModal/interfaces/InterfaceUnassignUserTagModalProps.md deleted file mode 100644 index ba023521d8..0000000000 --- a/docs/docs/auto-docs/screens/ManageTag/UnassignUserTagModal/interfaces/InterfaceUnassignUserTagModalProps.md +++ /dev/null @@ -1,59 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [screens/ManageTag/UnassignUserTagModal](../README.md) / InterfaceUnassignUserTagModalProps - -# Interface: InterfaceUnassignUserTagModalProps - -Defined in: [src/screens/ManageTag/UnassignUserTagModal.tsx:9](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/ManageTag/UnassignUserTagModal.tsx#L9) - -Unassign UserTag Modal component for the Manage Tag screen. - -## Properties - -### handleUnassignUserTag() - -> **handleUnassignUserTag**: () => `Promise`\<`void`\> - -Defined in: [src/screens/ManageTag/UnassignUserTagModal.tsx:12](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/ManageTag/UnassignUserTagModal.tsx#L12) - -#### Returns - -`Promise`\<`void`\> - -*** - -### t - -> **t**: `TFunction`\<`"manageTag"` \| `"memberDetail"`\> - -Defined in: [src/screens/ManageTag/UnassignUserTagModal.tsx:13](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/ManageTag/UnassignUserTagModal.tsx#L13) - -*** - -### tCommon - -> **tCommon**: `TFunction`\<`"common"`\> - -Defined in: [src/screens/ManageTag/UnassignUserTagModal.tsx:14](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/ManageTag/UnassignUserTagModal.tsx#L14) - -*** - -### toggleUnassignUserTagModal() - -> **toggleUnassignUserTagModal**: () => `void` - -Defined in: [src/screens/ManageTag/UnassignUserTagModal.tsx:11](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/ManageTag/UnassignUserTagModal.tsx#L11) - -#### Returns - -`void` - -*** - -### unassignUserTagModalIsOpen - -> **unassignUserTagModalIsOpen**: `boolean` - -Defined in: [src/screens/ManageTag/UnassignUserTagModal.tsx:10](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/ManageTag/UnassignUserTagModal.tsx#L10) diff --git a/docs/docs/auto-docs/screens/MemberDetail/MemberDetail/README.md b/docs/docs/auto-docs/screens/MemberDetail/MemberDetail/README.md deleted file mode 100644 index abab2714e3..0000000000 --- a/docs/docs/auto-docs/screens/MemberDetail/MemberDetail/README.md +++ /dev/null @@ -1,13 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / screens/MemberDetail/MemberDetail - -# screens/MemberDetail/MemberDetail - -## Functions - -- [default](functions/default.md) -- [getLanguageName](functions/getLanguageName.md) -- [prettyDate](functions/prettyDate.md) diff --git a/docs/docs/auto-docs/screens/MemberDetail/MemberDetail/functions/default.md b/docs/docs/auto-docs/screens/MemberDetail/MemberDetail/functions/default.md deleted file mode 100644 index 0889fa6ef7..0000000000 --- a/docs/docs/auto-docs/screens/MemberDetail/MemberDetail/functions/default.md +++ /dev/null @@ -1,38 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [screens/MemberDetail/MemberDetail](../README.md) / default - -# Function: default() - -> **default**(`props`, `deprecatedLegacyContext`?): `ReactNode` - -Defined in: [src/screens/MemberDetail/MemberDetail.tsx:51](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/MemberDetail/MemberDetail.tsx#L51) - -MemberDetail component is used to display the details of a user. -It also allows the user to update the details. It uses the UPDATE_USER_MUTATION to update the user details. -It uses the USER_DETAILS query to get the user details. It uses the useLocalStorage hook to store the user - details in the local storage. - -## Parameters - -### props - -`MemberDetailProps` - -### deprecatedLegacyContext? - -`any` - -**Deprecated** - -**See** - -[React Docs](https://legacy.reactjs.org/docs/legacy-context.html#referencing-context-in-lifecycle-methods) - -## Returns - -`ReactNode` - -React component diff --git a/docs/docs/auto-docs/screens/MemberDetail/MemberDetail/functions/getLanguageName.md b/docs/docs/auto-docs/screens/MemberDetail/MemberDetail/functions/getLanguageName.md deleted file mode 100644 index 3baa3e746c..0000000000 --- a/docs/docs/auto-docs/screens/MemberDetail/MemberDetail/functions/getLanguageName.md +++ /dev/null @@ -1,21 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [screens/MemberDetail/MemberDetail](../README.md) / getLanguageName - -# Function: getLanguageName() - -> **getLanguageName**(`code`): `string` - -Defined in: [src/screens/MemberDetail/MemberDetail.tsx:752](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/MemberDetail/MemberDetail.tsx#L752) - -## Parameters - -### code - -`string` - -## Returns - -`string` diff --git a/docs/docs/auto-docs/screens/MemberDetail/MemberDetail/functions/prettyDate.md b/docs/docs/auto-docs/screens/MemberDetail/MemberDetail/functions/prettyDate.md deleted file mode 100644 index 41091e6009..0000000000 --- a/docs/docs/auto-docs/screens/MemberDetail/MemberDetail/functions/prettyDate.md +++ /dev/null @@ -1,21 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [screens/MemberDetail/MemberDetail](../README.md) / prettyDate - -# Function: prettyDate() - -> **prettyDate**(`param`): `string` - -Defined in: [src/screens/MemberDetail/MemberDetail.tsx:742](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/MemberDetail/MemberDetail.tsx#L742) - -## Parameters - -### param - -`string` - -## Returns - -`string` diff --git a/docs/docs/auto-docs/screens/MemberDetail/MemberDetailMocks/README.md b/docs/docs/auto-docs/screens/MemberDetail/MemberDetailMocks/README.md deleted file mode 100644 index 5b10a708fc..0000000000 --- a/docs/docs/auto-docs/screens/MemberDetail/MemberDetailMocks/README.md +++ /dev/null @@ -1,13 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / screens/MemberDetail/MemberDetailMocks - -# screens/MemberDetail/MemberDetailMocks - -## Variables - -- [MOCKS1](variables/MOCKS1.md) -- [MOCKS2](variables/MOCKS2.md) -- [MOCKS3](variables/MOCKS3.md) diff --git a/docs/docs/auto-docs/screens/MemberDetail/MemberDetailMocks/variables/MOCKS1.md b/docs/docs/auto-docs/screens/MemberDetail/MemberDetailMocks/variables/MOCKS1.md deleted file mode 100644 index 3681941ffb..0000000000 --- a/docs/docs/auto-docs/screens/MemberDetail/MemberDetailMocks/variables/MOCKS1.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [screens/MemberDetail/MemberDetailMocks](../README.md) / MOCKS1 - -# Variable: MOCKS1 - -> `const` **MOCKS1**: (\{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `after`: `undefined`; `first`: `number`; `id`: `string`; `tagId`: `undefined`; `userId`: `undefined`; \}; \}; `result`: \{ `data`: \{ `unassignUserTag`: `undefined`; `user`: \{ `__typename`: `string`; `appUserProfile`: \{ `__typename`: `string`; `_id`: `string`; `adminFor`: `object`[]; `appLanguageCode`: `string`; `createdEvents`: `object`[]; `createdOrganizations`: `object`[]; `eventAdmin`: `object`[]; `isSuperAdmin`: `boolean`; `pluginCreationAllowed`: `boolean`; \}; `user`: \{ `__typename`: `string`; `_id`: `string`; `address`: \{ `city`: `string`; `countryCode`: `string`; `line1`: `string`; `state`: `string`; \}; `birthDate`: `string`; `createdAt`: `string`; `educationGrade`: `string`; `email`: `string`; `employmentStatus`: `string`; `eventsAttended`: `any`[]; `firstName`: `string`; `gender`: `string`; `image`: `any`; `joinedOrganizations`: `object`[]; `lastName`: `string`; `maritalStatus`: `string`; `membershipRequests`: `any`[]; `organizationsBlockedBy`: `any`[]; `phone`: \{ `mobile`: `string`; \}; `registeredEvents`: `object`[]; `tagsAssignedWith`: \{ `edges`: `object`[]; `pageInfo`: \{ `endCursor`: `string`; `hasNextPage`: `boolean`; `hasPreviousPage`: `boolean`; `startCursor`: `string`; \}; `totalCount`: `number`; \}; \}; \}; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `after`: `string`; `first`: `number`; `id`: `string`; `tagId`: `undefined`; `userId`: `undefined`; \}; \}; `result`: \{ `data`: \{ `unassignUserTag`: `undefined`; `user`: \{ `__typename`: `string`; `appUserProfile`: \{ `__typename`: `string`; `_id`: `string`; `adminFor`: `object`[]; `appLanguageCode`: `string`; `createdEvents`: `object`[]; `createdOrganizations`: `object`[]; `eventAdmin`: `object`[]; `isSuperAdmin`: `boolean`; `pluginCreationAllowed`: `boolean`; \}; `user`: \{ `__typename`: `string`; `_id`: `string`; `address`: \{ `city`: `string`; `countryCode`: `string`; `line1`: `string`; `state`: `string`; \}; `birthDate`: `string`; `createdAt`: `string`; `educationGrade`: `string`; `email`: `string`; `employmentStatus`: `string`; `eventsAttended`: `any`[]; `firstName`: `string`; `gender`: `string`; `image`: `any`; `joinedOrganizations`: `object`[]; `lastName`: `string`; `maritalStatus`: `string`; `membershipRequests`: `any`[]; `organizationsBlockedBy`: `any`[]; `phone`: \{ `mobile`: `string`; \}; `registeredEvents`: `object`[]; `tagsAssignedWith`: \{ `edges`: `object`[]; `pageInfo`: \{ `endCursor`: `string`; `hasNextPage`: `boolean`; `hasPreviousPage`: `boolean`; `startCursor`: `string`; \}; `totalCount`: `number`; \}; \}; \}; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `after`: `undefined`; `first`: `undefined`; `id`: `undefined`; `tagId`: `string`; `userId`: `string`; \}; \}; `result`: \{ `data`: \{ `unassignUserTag`: \{ `_id`: `string`; \}; `user`: `undefined`; \}; \}; \})[] - -Defined in: [src/screens/MemberDetail/MemberDetailMocks.ts:5](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/MemberDetail/MemberDetailMocks.ts#L5) diff --git a/docs/docs/auto-docs/screens/MemberDetail/MemberDetailMocks/variables/MOCKS2.md b/docs/docs/auto-docs/screens/MemberDetail/MemberDetailMocks/variables/MOCKS2.md deleted file mode 100644 index 250657f0a9..0000000000 --- a/docs/docs/auto-docs/screens/MemberDetail/MemberDetailMocks/variables/MOCKS2.md +++ /dev/null @@ -1,221 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [screens/MemberDetail/MemberDetailMocks](../README.md) / MOCKS2 - -# Variable: MOCKS2 - -> `const` **MOCKS2**: `object`[] - -Defined in: [src/screens/MemberDetail/MemberDetailMocks.ts:337](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/MemberDetail/MemberDetailMocks.ts#L337) - -## Type declaration - -### request - -> **request**: `object` - -#### request.query - -> **query**: `DocumentNode` = `USER_DETAILS` - -#### request.variables - -> **variables**: `object` - -#### request.variables.first - -> **first**: `number` = `TAGS_QUERY_DATA_CHUNK_SIZE` - -#### request.variables.id - -> **id**: `string` = `'rishav-jha-mech'` - -### result - -> **result**: `object` - -#### result.data - -> **data**: `object` - -#### result.data.user - -> **user**: `object` - -#### result.data.user.\_\_typename - -> **\_\_typename**: `string` = `'UserData'` - -#### result.data.user.appUserProfile - -> **appUserProfile**: `object` - -#### result.data.user.appUserProfile.\_\_typename - -> **\_\_typename**: `string` = `'AppUserProfile'` - -#### result.data.user.appUserProfile.\_id - -> **\_id**: `string` = `'1'` - -#### result.data.user.appUserProfile.adminFor - -> **adminFor**: `any`[] = `[]` - -#### result.data.user.appUserProfile.appLanguageCode - -> **appLanguageCode**: `string` = `'en'` - -#### result.data.user.appUserProfile.createdEvents - -> **createdEvents**: `object`[] - -#### result.data.user.appUserProfile.createdOrganizations - -> **createdOrganizations**: `object`[] - -#### result.data.user.appUserProfile.eventAdmin - -> **eventAdmin**: `object`[] - -#### result.data.user.appUserProfile.isSuperAdmin - -> **isSuperAdmin**: `boolean` = `false` - -#### result.data.user.appUserProfile.pluginCreationAllowed - -> **pluginCreationAllowed**: `boolean` = `true` - -#### result.data.user.user - -> **user**: `object` - -#### result.data.user.user.\_\_typename - -> **\_\_typename**: `string` = `'User'` - -#### result.data.user.user.\_id - -> **\_id**: `string` = `'1'` - -#### result.data.user.user.address - -> **address**: `object` - -#### result.data.user.user.address.city - -> **city**: `string` = `''` - -#### result.data.user.user.address.countryCode - -> **countryCode**: `string` = `''` - -#### result.data.user.user.address.line1 - -> **line1**: `string` = `''` - -#### result.data.user.user.address.state - -> **state**: `string` = `''` - -#### result.data.user.user.birthDate - -> **birthDate**: `string` = `'2024-03-14'` - -#### result.data.user.user.createdAt - -> **createdAt**: `string` = `'2024-02-26T10:36:33.098Z'` - -#### result.data.user.user.educationGrade - -> **educationGrade**: `string` = `''` - -#### result.data.user.user.email - -> **email**: `string` = `'adi790u@gmail.com'` - -#### result.data.user.user.employmentStatus - -> **employmentStatus**: `string` = `''` - -#### result.data.user.user.eventsAttended - -> **eventsAttended**: `object`[] - -#### result.data.user.user.firstName - -> **firstName**: `string` = `'Aditya'` - -#### result.data.user.user.gender - -> **gender**: `string` = `''` - -#### result.data.user.user.image - -> **image**: `string` = `'https://placeholder.com/200x200'` - -#### result.data.user.user.joinedOrganizations - -> **joinedOrganizations**: `object`[] - -#### result.data.user.user.lastName - -> **lastName**: `string` = `'Agarwal'` - -#### result.data.user.user.maritalStatus - -> **maritalStatus**: `string` = `''` - -#### result.data.user.user.membershipRequests - -> **membershipRequests**: `any`[] = `[]` - -#### result.data.user.user.organizationsBlockedBy - -> **organizationsBlockedBy**: `any`[] = `[]` - -#### result.data.user.user.phone - -> **phone**: `object` - -#### result.data.user.user.phone.mobile - -> **mobile**: `string` = `''` - -#### result.data.user.user.registeredEvents - -> **registeredEvents**: `object`[] - -#### result.data.user.user.tagsAssignedWith - -> **tagsAssignedWith**: `object` - -#### result.data.user.user.tagsAssignedWith.edges - -> **edges**: `any`[] = `[]` - -#### result.data.user.user.tagsAssignedWith.pageInfo - -> **pageInfo**: `object` - -#### result.data.user.user.tagsAssignedWith.pageInfo.endCursor - -> **endCursor**: `any` = `null` - -#### result.data.user.user.tagsAssignedWith.pageInfo.hasNextPage - -> **hasNextPage**: `boolean` = `false` - -#### result.data.user.user.tagsAssignedWith.pageInfo.hasPreviousPage - -> **hasPreviousPage**: `boolean` = `false` - -#### result.data.user.user.tagsAssignedWith.pageInfo.startCursor - -> **startCursor**: `any` = `null` - -#### result.data.user.user.tagsAssignedWith.totalCount - -> **totalCount**: `number` = `0` diff --git a/docs/docs/auto-docs/screens/MemberDetail/MemberDetailMocks/variables/MOCKS3.md b/docs/docs/auto-docs/screens/MemberDetail/MemberDetailMocks/variables/MOCKS3.md deleted file mode 100644 index ddbb642462..0000000000 --- a/docs/docs/auto-docs/screens/MemberDetail/MemberDetailMocks/variables/MOCKS3.md +++ /dev/null @@ -1,221 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [screens/MemberDetail/MemberDetailMocks](../README.md) / MOCKS3 - -# Variable: MOCKS3 - -> `const` **MOCKS3**: `object`[] - -Defined in: [src/screens/MemberDetail/MemberDetailMocks.ts:437](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/MemberDetail/MemberDetailMocks.ts#L437) - -## Type declaration - -### request - -> **request**: `object` - -#### request.query - -> **query**: `DocumentNode` = `USER_DETAILS` - -#### request.variables - -> **variables**: `object` - -#### request.variables.first - -> **first**: `number` = `TAGS_QUERY_DATA_CHUNK_SIZE` - -#### request.variables.id - -> **id**: `string` = `'rishav-jha-mech'` - -### result - -> **result**: `object` - -#### result.data - -> **data**: `object` - -#### result.data.user - -> **user**: `object` - -#### result.data.user.\_\_typename - -> **\_\_typename**: `string` = `'UserData'` - -#### result.data.user.appUserProfile - -> **appUserProfile**: `object` - -#### result.data.user.appUserProfile.\_\_typename - -> **\_\_typename**: `string` = `'AppUserProfile'` - -#### result.data.user.appUserProfile.\_id - -> **\_id**: `string` = `'1'` - -#### result.data.user.appUserProfile.adminFor - -> **adminFor**: `any`[] = `[]` - -#### result.data.user.appUserProfile.appLanguageCode - -> **appLanguageCode**: `string` = `'en'` - -#### result.data.user.appUserProfile.createdEvents - -> **createdEvents**: `object`[] - -#### result.data.user.appUserProfile.createdOrganizations - -> **createdOrganizations**: `object`[] - -#### result.data.user.appUserProfile.eventAdmin - -> **eventAdmin**: `object`[] - -#### result.data.user.appUserProfile.isSuperAdmin - -> **isSuperAdmin**: `boolean` = `true` - -#### result.data.user.appUserProfile.pluginCreationAllowed - -> **pluginCreationAllowed**: `boolean` = `true` - -#### result.data.user.user - -> **user**: `object` - -#### result.data.user.user.\_\_typename - -> **\_\_typename**: `string` = `'User'` - -#### result.data.user.user.\_id - -> **\_id**: `string` = `'1'` - -#### result.data.user.user.address - -> **address**: `object` - -#### result.data.user.user.address.city - -> **city**: `string` = `''` - -#### result.data.user.user.address.countryCode - -> **countryCode**: `string` = `''` - -#### result.data.user.user.address.line1 - -> **line1**: `string` = `''` - -#### result.data.user.user.address.state - -> **state**: `string` = `''` - -#### result.data.user.user.birthDate - -> **birthDate**: `string` = `'2024-03-14'` - -#### result.data.user.user.createdAt - -> **createdAt**: `string` = `'2024-02-26T10:36:33.098Z'` - -#### result.data.user.user.educationGrade - -> **educationGrade**: `string` = `''` - -#### result.data.user.user.email - -> **email**: `string` = `'adi790u@gmail.com'` - -#### result.data.user.user.employmentStatus - -> **employmentStatus**: `string` = `''` - -#### result.data.user.user.eventsAttended - -> **eventsAttended**: `any`[] = `[]` - -#### result.data.user.user.firstName - -> **firstName**: `string` = `'Aditya'` - -#### result.data.user.user.gender - -> **gender**: `string` = `''` - -#### result.data.user.user.image - -> **image**: `string` = `'https://placeholder.com/200x200'` - -#### result.data.user.user.joinedOrganizations - -> **joinedOrganizations**: `object`[] - -#### result.data.user.user.lastName - -> **lastName**: `string` = `'Agarwal'` - -#### result.data.user.user.maritalStatus - -> **maritalStatus**: `string` = `''` - -#### result.data.user.user.membershipRequests - -> **membershipRequests**: `any`[] = `[]` - -#### result.data.user.user.organizationsBlockedBy - -> **organizationsBlockedBy**: `any`[] = `[]` - -#### result.data.user.user.phone - -> **phone**: `object` - -#### result.data.user.user.phone.mobile - -> **mobile**: `string` = `''` - -#### result.data.user.user.registeredEvents - -> **registeredEvents**: `object`[] - -#### result.data.user.user.tagsAssignedWith - -> **tagsAssignedWith**: `object` - -#### result.data.user.user.tagsAssignedWith.edges - -> **edges**: `any`[] = `[]` - -#### result.data.user.user.tagsAssignedWith.pageInfo - -> **pageInfo**: `object` - -#### result.data.user.user.tagsAssignedWith.pageInfo.endCursor - -> **endCursor**: `any` = `null` - -#### result.data.user.user.tagsAssignedWith.pageInfo.hasNextPage - -> **hasNextPage**: `boolean` = `false` - -#### result.data.user.user.tagsAssignedWith.pageInfo.hasPreviousPage - -> **hasPreviousPage**: `boolean` = `false` - -#### result.data.user.user.tagsAssignedWith.pageInfo.startCursor - -> **startCursor**: `any` = `null` - -#### result.data.user.user.tagsAssignedWith.totalCount - -> **totalCount**: `number` = `0` diff --git a/docs/docs/auto-docs/screens/OrgContribution/OrgContribution/README.md b/docs/docs/auto-docs/screens/OrgContribution/OrgContribution/README.md deleted file mode 100644 index 60e9af1bc2..0000000000 --- a/docs/docs/auto-docs/screens/OrgContribution/OrgContribution/README.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / screens/OrgContribution/OrgContribution - -# screens/OrgContribution/OrgContribution - -## Functions - -- [default](functions/default.md) diff --git a/docs/docs/auto-docs/screens/OrgContribution/OrgContribution/functions/default.md b/docs/docs/auto-docs/screens/OrgContribution/OrgContribution/functions/default.md deleted file mode 100644 index c3a2ac9339..0000000000 --- a/docs/docs/auto-docs/screens/OrgContribution/OrgContribution/functions/default.md +++ /dev/null @@ -1,19 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [screens/OrgContribution/OrgContribution](../README.md) / default - -# Function: default() - -> **default**(): `JSX.Element` - -Defined in: [src/screens/OrgContribution/OrgContribution.tsx:16](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/OrgContribution/OrgContribution.tsx#L16) - -The `orgContribution` component displays the contributions to an organization. -It includes a sidebar for filtering contributions by organization name and transaction ID. -Additionally, it shows recent contribution statistics and a list of contribution cards. - -## Returns - -`JSX.Element` diff --git a/docs/docs/auto-docs/screens/OrgList/OrgList/README.md b/docs/docs/auto-docs/screens/OrgList/OrgList/README.md deleted file mode 100644 index 9bd1f0b701..0000000000 --- a/docs/docs/auto-docs/screens/OrgList/OrgList/README.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / screens/OrgList/OrgList - -# screens/OrgList/OrgList - -## Functions - -- [default](functions/default.md) diff --git a/docs/docs/auto-docs/screens/OrgList/OrgList/functions/default.md b/docs/docs/auto-docs/screens/OrgList/OrgList/functions/default.md deleted file mode 100644 index 857b742ff9..0000000000 --- a/docs/docs/auto-docs/screens/OrgList/OrgList/functions/default.md +++ /dev/null @@ -1,15 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [screens/OrgList/OrgList](../README.md) / default - -# Function: default() - -> **default**(): `JSX.Element` - -Defined in: [src/screens/OrgList/OrgList.tsx:33](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/OrgList/OrgList.tsx#L33) - -## Returns - -`JSX.Element` diff --git a/docs/docs/auto-docs/screens/OrgList/OrgListMocks/README.md b/docs/docs/auto-docs/screens/OrgList/OrgListMocks/README.md deleted file mode 100644 index 5b9d765f0d..0000000000 --- a/docs/docs/auto-docs/screens/OrgList/OrgListMocks/README.md +++ /dev/null @@ -1,14 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / screens/OrgList/OrgListMocks - -# screens/OrgList/OrgListMocks - -## Variables - -- [MOCKS](variables/MOCKS.md) -- [MOCKS\_ADMIN](variables/MOCKS_ADMIN.md) -- [MOCKS\_EMPTY](variables/MOCKS_EMPTY.md) -- [MOCKS\_WITH\_ERROR](variables/MOCKS_WITH_ERROR.md) diff --git a/docs/docs/auto-docs/screens/OrgList/OrgListMocks/variables/MOCKS.md b/docs/docs/auto-docs/screens/OrgList/OrgListMocks/variables/MOCKS.md deleted file mode 100644 index 46a851f89c..0000000000 --- a/docs/docs/auto-docs/screens/OrgList/OrgListMocks/variables/MOCKS.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [screens/OrgList/OrgListMocks](../README.md) / MOCKS - -# Variable: MOCKS - -> `const` **MOCKS**: (\{ `request`: \{ `notifyOnNetworkStatusChange`: `boolean`; `query`: `DocumentNode`; `variables`: \{ `address`: `undefined`; `description`: `undefined`; `filter`: `string`; `first`: `number`; `image`: `undefined`; `name`: `undefined`; `orderBy`: `string`; `skip`: `number`; `userId`: `undefined`; `userRegistrationRequired`: `undefined`; `visibleInSearch`: `undefined`; \}; \}; `result`: \{ `data`: \{ `createOrganization`: `undefined`; `createSampleOrganization`: `undefined`; `organizationsConnection`: [`InterfaceOrgConnectionInfoType`](../../../../utils/interfaces/interfaces/InterfaceOrgConnectionInfoType.md)[]; `user`: `undefined`; \}; \}; \} \| \{ `request`: \{ `notifyOnNetworkStatusChange`: `undefined`; `query`: `DocumentNode`; `variables`: \{ `address`: `undefined`; `description`: `undefined`; `filter`: `undefined`; `first`: `undefined`; `image`: `undefined`; `name`: `undefined`; `orderBy`: `undefined`; `skip`: `undefined`; `userId`: `string`; `userRegistrationRequired`: `undefined`; `visibleInSearch`: `undefined`; \}; \}; `result`: \{ `data`: \{ `createOrganization`: `undefined`; `createSampleOrganization`: `undefined`; `organizationsConnection`: `undefined`; `user`: [`InterfaceUserType`](../../../../utils/interfaces/interfaces/InterfaceUserType.md); \}; \}; \} \| \{ `request`: \{ `notifyOnNetworkStatusChange`: `undefined`; `query`: `DocumentNode`; `variables`: `undefined`; \}; `result`: \{ `data`: \{ `createOrganization`: `undefined`; `createSampleOrganization`: \{ `id`: `string`; `name`: `string`; \}; `organizationsConnection`: `undefined`; `user`: `undefined`; \}; \}; \} \| \{ `request`: \{ `notifyOnNetworkStatusChange`: `undefined`; `query`: `DocumentNode`; `variables`: \{ `address`: \{ `city`: `string`; `countryCode`: `string`; `dependentLocality`: `string`; `line1`: `string`; `line2`: `string`; `postalCode`: `string`; `sortingCode`: `string`; `state`: `string`; \}; `description`: `string`; `filter`: `undefined`; `first`: `undefined`; `image`: `string`; `name`: `string`; `orderBy`: `undefined`; `skip`: `undefined`; `userId`: `undefined`; `userRegistrationRequired`: `boolean`; `visibleInSearch`: `boolean`; \}; \}; `result`: \{ `data`: \{ `createOrganization`: \{ `_id`: `string`; \}; `createSampleOrganization`: `undefined`; `organizationsConnection`: `undefined`; `user`: `undefined`; \}; \}; \})[] - -Defined in: [src/screens/OrgList/OrgListMocks.ts:94](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/OrgList/OrgListMocks.ts#L94) diff --git a/docs/docs/auto-docs/screens/OrgList/OrgListMocks/variables/MOCKS_ADMIN.md b/docs/docs/auto-docs/screens/OrgList/OrgListMocks/variables/MOCKS_ADMIN.md deleted file mode 100644 index 6cc377c08c..0000000000 --- a/docs/docs/auto-docs/screens/OrgList/OrgListMocks/variables/MOCKS_ADMIN.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [screens/OrgList/OrgListMocks](../README.md) / MOCKS\_ADMIN - -# Variable: MOCKS\_ADMIN - -> `const` **MOCKS\_ADMIN**: (\{ `request`: \{ `notifyOnNetworkStatusChange`: `boolean`; `query`: `DocumentNode`; `variables`: \{ `filter`: `string`; `first`: `number`; `orderBy`: `string`; `skip`: `number`; `userId`: `undefined`; \}; \}; `result`: \{ `data`: \{ `organizationsConnection`: [`InterfaceOrgConnectionInfoType`](../../../../utils/interfaces/interfaces/InterfaceOrgConnectionInfoType.md)[]; `user`: `undefined`; \}; \}; \} \| \{ `request`: \{ `notifyOnNetworkStatusChange`: `undefined`; `query`: `DocumentNode`; `variables`: \{ `filter`: `undefined`; `first`: `undefined`; `orderBy`: `undefined`; `skip`: `undefined`; `userId`: `string`; \}; \}; `result`: \{ `data`: \{ `organizationsConnection`: `undefined`; `user`: [`InterfaceUserType`](../../../../utils/interfaces/interfaces/InterfaceUserType.md); \}; \}; \})[] - -Defined in: [src/screens/OrgList/OrgListMocks.ts:228](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/OrgList/OrgListMocks.ts#L228) diff --git a/docs/docs/auto-docs/screens/OrgList/OrgListMocks/variables/MOCKS_EMPTY.md b/docs/docs/auto-docs/screens/OrgList/OrgListMocks/variables/MOCKS_EMPTY.md deleted file mode 100644 index d1404b4171..0000000000 --- a/docs/docs/auto-docs/screens/OrgList/OrgListMocks/variables/MOCKS_EMPTY.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [screens/OrgList/OrgListMocks](../README.md) / MOCKS\_EMPTY - -# Variable: MOCKS\_EMPTY - -> `const` **MOCKS\_EMPTY**: (\{ `request`: \{ `notifyOnNetworkStatusChange`: `boolean`; `query`: `DocumentNode`; `variables`: \{ `filter`: `string`; `first`: `number`; `orderBy`: `string`; `skip`: `number`; `userId`: `undefined`; \}; \}; `result`: \{ `data`: \{ `organizationsConnection`: `any`[]; `user`: `undefined`; \}; \}; \} \| \{ `request`: \{ `notifyOnNetworkStatusChange`: `undefined`; `query`: `DocumentNode`; `variables`: \{ `filter`: `undefined`; `first`: `undefined`; `orderBy`: `undefined`; `skip`: `undefined`; `userId`: `string`; \}; \}; `result`: \{ `data`: \{ `organizationsConnection`: `undefined`; `user`: [`InterfaceUserType`](../../../../utils/interfaces/interfaces/InterfaceUserType.md); \}; \}; \})[] - -Defined in: [src/screens/OrgList/OrgListMocks.ts:164](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/OrgList/OrgListMocks.ts#L164) diff --git a/docs/docs/auto-docs/screens/OrgList/OrgListMocks/variables/MOCKS_WITH_ERROR.md b/docs/docs/auto-docs/screens/OrgList/OrgListMocks/variables/MOCKS_WITH_ERROR.md deleted file mode 100644 index b599b4a5e9..0000000000 --- a/docs/docs/auto-docs/screens/OrgList/OrgListMocks/variables/MOCKS_WITH_ERROR.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [screens/OrgList/OrgListMocks](../README.md) / MOCKS\_WITH\_ERROR - -# Variable: MOCKS\_WITH\_ERROR - -> `const` **MOCKS\_WITH\_ERROR**: (\{ `error`: `undefined`; `request`: \{ `notifyOnNetworkStatusChange`: `boolean`; `query`: `DocumentNode`; `variables`: \{ `filter`: `string`; `first`: `number`; `orderBy`: `string`; `skip`: `number`; `userId`: `undefined`; \}; \}; `result`: \{ `data`: \{ `organizationsConnection`: [`InterfaceOrgConnectionInfoType`](../../../../utils/interfaces/interfaces/InterfaceOrgConnectionInfoType.md)[]; `user`: `undefined`; \}; \}; \} \| \{ `error`: `undefined`; `request`: \{ `notifyOnNetworkStatusChange`: `undefined`; `query`: `DocumentNode`; `variables`: \{ `filter`: `undefined`; `first`: `undefined`; `orderBy`: `undefined`; `skip`: `undefined`; `userId`: `string`; \}; \}; `result`: \{ `data`: \{ `organizationsConnection`: `undefined`; `user`: [`InterfaceUserType`](../../../../utils/interfaces/interfaces/InterfaceUserType.md); \}; \}; \} \| \{ `error`: `Error`; `request`: \{ `notifyOnNetworkStatusChange`: `undefined`; `query`: `DocumentNode`; `variables`: `undefined`; \}; `result`: `undefined`; \})[] - -Defined in: [src/screens/OrgList/OrgListMocks.ts:192](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/OrgList/OrgListMocks.ts#L192) diff --git a/docs/docs/auto-docs/screens/OrgList/OrganizationModal/README.md b/docs/docs/auto-docs/screens/OrgList/OrganizationModal/README.md deleted file mode 100644 index 671448d22a..0000000000 --- a/docs/docs/auto-docs/screens/OrgList/OrganizationModal/README.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / screens/OrgList/OrganizationModal - -# screens/OrgList/OrganizationModal - -## Functions - -- [default](functions/default.md) diff --git a/docs/docs/auto-docs/screens/OrgList/OrganizationModal/functions/default.md b/docs/docs/auto-docs/screens/OrgList/OrganizationModal/functions/default.md deleted file mode 100644 index ded8f11065..0000000000 --- a/docs/docs/auto-docs/screens/OrgList/OrganizationModal/functions/default.md +++ /dev/null @@ -1,33 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [screens/OrgList/OrganizationModal](../README.md) / default - -# Function: default() - -> **default**(`props`, `deprecatedLegacyContext`?): `ReactNode` - -Defined in: [src/screens/OrgList/OrganizationModal.tsx:55](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/OrgList/OrganizationModal.tsx#L55) - -Represents the organization modal component. - -## Parameters - -### props - -`InterfaceOrganizationModalProps` - -### deprecatedLegacyContext? - -`any` - -**Deprecated** - -**See** - -[React Docs](https://legacy.reactjs.org/docs/legacy-context.html#referencing-context-in-lifecycle-methods) - -## Returns - -`ReactNode` diff --git a/docs/docs/auto-docs/screens/OrgPost/OrgPost/README.md b/docs/docs/auto-docs/screens/OrgPost/OrgPost/README.md deleted file mode 100644 index c6c7b0e66e..0000000000 --- a/docs/docs/auto-docs/screens/OrgPost/OrgPost/README.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / screens/OrgPost/OrgPost - -# screens/OrgPost/OrgPost - -## Functions - -- [default](functions/default.md) diff --git a/docs/docs/auto-docs/screens/OrgPost/OrgPost/functions/default.md b/docs/docs/auto-docs/screens/OrgPost/OrgPost/functions/default.md deleted file mode 100644 index 8a8a785d9a..0000000000 --- a/docs/docs/auto-docs/screens/OrgPost/OrgPost/functions/default.md +++ /dev/null @@ -1,21 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [screens/OrgPost/OrgPost](../README.md) / default - -# Function: default() - -> **default**(): `JSX.Element` - -Defined in: [src/screens/OrgPost/OrgPost.tsx:51](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/OrgPost/OrgPost.tsx#L51) - -This function is used to display the posts of the organization. It displays the posts in a card format. -It also provides the functionality to create a new post. The user can also sort the posts based on the date of creation. -The user can also search for a post based on the title of the post. - -## Returns - -`JSX.Element` - -JSX.Element which contains the posts of the organization. diff --git a/docs/docs/auto-docs/screens/OrgSettings/OrgSettings.mocks/README.md b/docs/docs/auto-docs/screens/OrgSettings/OrgSettings.mocks/README.md deleted file mode 100644 index bd267dc545..0000000000 --- a/docs/docs/auto-docs/screens/OrgSettings/OrgSettings.mocks/README.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / screens/OrgSettings/OrgSettings.mocks - -# screens/OrgSettings/OrgSettings.mocks - -## Variables - -- [MOCKS](variables/MOCKS.md) diff --git a/docs/docs/auto-docs/screens/OrgSettings/OrgSettings.mocks/variables/MOCKS.md b/docs/docs/auto-docs/screens/OrgSettings/OrgSettings.mocks/variables/MOCKS.md deleted file mode 100644 index ea6f886322..0000000000 --- a/docs/docs/auto-docs/screens/OrgSettings/OrgSettings.mocks/variables/MOCKS.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [screens/OrgSettings/OrgSettings.mocks](../README.md) / MOCKS - -# Variable: MOCKS - -> `const` **MOCKS**: (\{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `customFieldsByOrganizationId`: `undefined`; `id`: `string`; `isSampleOrganizationId`: `undefined`; `orderBy`: `undefined`; `organizationId`: `undefined`; `where`: `undefined`; \}; \}; `result`: \{ `data`: \{ `actionItemCategoriesByOrganization`: `undefined`; `agendaItemCategoriesByOrganization`: `undefined`; `customFieldsByOrganization`: `undefined`; `isSampleOrganization`: `undefined`; `organizations`: `object`[]; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `customFieldsByOrganizationId`: `string`; `id`: `undefined`; `isSampleOrganizationId`: `undefined`; `orderBy`: `undefined`; `organizationId`: `undefined`; `where`: `undefined`; \}; \}; `result`: \{ `data`: \{ `actionItemCategoriesByOrganization`: `undefined`; `agendaItemCategoriesByOrganization`: `undefined`; `customFieldsByOrganization`: `object`[]; `isSampleOrganization`: `undefined`; `organizations`: `undefined`; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `customFieldsByOrganizationId`: `undefined`; `id`: `undefined`; `isSampleOrganizationId`: `string`; `orderBy`: `undefined`; `organizationId`: `undefined`; `where`: `undefined`; \}; \}; `result`: \{ `data`: \{ `actionItemCategoriesByOrganization`: `undefined`; `agendaItemCategoriesByOrganization`: `undefined`; `customFieldsByOrganization`: `undefined`; `isSampleOrganization`: `boolean`; `organizations`: `undefined`; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `customFieldsByOrganizationId`: `undefined`; `id`: `undefined`; `isSampleOrganizationId`: `undefined`; `orderBy`: `undefined`; `organizationId`: `string`; `where`: `undefined`; \}; \}; `result`: \{ `data`: \{ `actionItemCategoriesByOrganization`: `undefined`; `agendaItemCategoriesByOrganization`: `any`[]; `customFieldsByOrganization`: `undefined`; `isSampleOrganization`: `undefined`; `organizations`: `undefined`; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `customFieldsByOrganizationId`: `undefined`; `id`: `undefined`; `isSampleOrganizationId`: `undefined`; `orderBy`: `string`; `organizationId`: `string`; `where`: \{ `name_contains`: `string`; \}; \}; \}; `result`: \{ `data`: \{ `actionItemCategoriesByOrganization`: `object`[]; `agendaItemCategoriesByOrganization`: `undefined`; `customFieldsByOrganization`: `undefined`; `isSampleOrganization`: `undefined`; `organizations`: `undefined`; \}; \}; \})[] - -Defined in: [src/screens/OrgSettings/OrgSettings.mocks.ts:9](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/OrgSettings/OrgSettings.mocks.ts#L9) diff --git a/docs/docs/auto-docs/screens/OrgSettings/OrgSettings/README.md b/docs/docs/auto-docs/screens/OrgSettings/OrgSettings/README.md deleted file mode 100644 index 5957704391..0000000000 --- a/docs/docs/auto-docs/screens/OrgSettings/OrgSettings/README.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / screens/OrgSettings/OrgSettings - -# screens/OrgSettings/OrgSettings - -## Functions - -- [default](functions/default.md) diff --git a/docs/docs/auto-docs/screens/OrgSettings/OrgSettings/functions/default.md b/docs/docs/auto-docs/screens/OrgSettings/OrgSettings/functions/default.md deleted file mode 100644 index 1c255326a1..0000000000 --- a/docs/docs/auto-docs/screens/OrgSettings/OrgSettings/functions/default.md +++ /dev/null @@ -1,23 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [screens/OrgSettings/OrgSettings](../README.md) / default - -# Function: default() - -> **default**(): `JSX.Element` - -Defined in: [src/screens/OrgSettings/OrgSettings.tsx:29](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/OrgSettings/OrgSettings.tsx#L29) - -The `orgSettings` component provides a user interface for managing various settings related to an organization. -It includes options for updating organization details, deleting the organization, changing language preferences, -and managing custom fields and action item categories. - -The component renders different settings sections based on the user's selection from the tabs or dropdown menu. - -## Returns - -`JSX.Element` - -The rendered component displaying the organization settings. diff --git a/docs/docs/auto-docs/screens/OrganizationActionItems/ItemDeleteModal/README.md b/docs/docs/auto-docs/screens/OrganizationActionItems/ItemDeleteModal/README.md deleted file mode 100644 index 0ff3318d38..0000000000 --- a/docs/docs/auto-docs/screens/OrganizationActionItems/ItemDeleteModal/README.md +++ /dev/null @@ -1,15 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / screens/OrganizationActionItems/ItemDeleteModal - -# screens/OrganizationActionItems/ItemDeleteModal - -## Interfaces - -- [InterfaceItemDeleteModalProps](interfaces/InterfaceItemDeleteModalProps.md) - -## Functions - -- [default](functions/default.md) diff --git a/docs/docs/auto-docs/screens/OrganizationActionItems/ItemDeleteModal/functions/default.md b/docs/docs/auto-docs/screens/OrganizationActionItems/ItemDeleteModal/functions/default.md deleted file mode 100644 index 1015dbab20..0000000000 --- a/docs/docs/auto-docs/screens/OrganizationActionItems/ItemDeleteModal/functions/default.md +++ /dev/null @@ -1,37 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [screens/OrganizationActionItems/ItemDeleteModal](../README.md) / default - -# Function: default() - -> **default**(`props`, `deprecatedLegacyContext`?): `ReactNode` - -Defined in: [src/screens/OrganizationActionItems/ItemDeleteModal.tsx:26](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/OrganizationActionItems/ItemDeleteModal.tsx#L26) - -A modal component for confirming the deletion of an action item. - -## Parameters - -### props - -[`InterfaceItemDeleteModalProps`](../interfaces/InterfaceItemDeleteModalProps.md) - -The properties passed to the component. - -### deprecatedLegacyContext? - -`any` - -**Deprecated** - -**See** - -[React Docs](https://legacy.reactjs.org/docs/legacy-context.html#referencing-context-in-lifecycle-methods) - -## Returns - -`ReactNode` - -The `ItemDeleteModal` component. diff --git a/docs/docs/auto-docs/screens/OrganizationActionItems/ItemDeleteModal/interfaces/InterfaceItemDeleteModalProps.md b/docs/docs/auto-docs/screens/OrganizationActionItems/ItemDeleteModal/interfaces/InterfaceItemDeleteModalProps.md deleted file mode 100644 index a9779e91a3..0000000000 --- a/docs/docs/auto-docs/screens/OrganizationActionItems/ItemDeleteModal/interfaces/InterfaceItemDeleteModalProps.md +++ /dev/null @@ -1,51 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [screens/OrganizationActionItems/ItemDeleteModal](../README.md) / InterfaceItemDeleteModalProps - -# Interface: InterfaceItemDeleteModalProps - -Defined in: [src/screens/OrganizationActionItems/ItemDeleteModal.tsx:13](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/OrganizationActionItems/ItemDeleteModal.tsx#L13) - -Props for the `ItemDeleteModal` component. - -## Properties - -### actionItem - -> **actionItem**: [`InterfaceActionItemInfo`](../../../../utils/interfaces/interfaces/InterfaceActionItemInfo.md) - -Defined in: [src/screens/OrganizationActionItems/ItemDeleteModal.tsx:16](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/OrganizationActionItems/ItemDeleteModal.tsx#L16) - -*** - -### actionItemsRefetch() - -> **actionItemsRefetch**: () => `void` - -Defined in: [src/screens/OrganizationActionItems/ItemDeleteModal.tsx:17](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/OrganizationActionItems/ItemDeleteModal.tsx#L17) - -#### Returns - -`void` - -*** - -### hide() - -> **hide**: () => `void` - -Defined in: [src/screens/OrganizationActionItems/ItemDeleteModal.tsx:15](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/OrganizationActionItems/ItemDeleteModal.tsx#L15) - -#### Returns - -`void` - -*** - -### isOpen - -> **isOpen**: `boolean` - -Defined in: [src/screens/OrganizationActionItems/ItemDeleteModal.tsx:14](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/OrganizationActionItems/ItemDeleteModal.tsx#L14) diff --git a/docs/docs/auto-docs/screens/OrganizationActionItems/ItemModal/README.md b/docs/docs/auto-docs/screens/OrganizationActionItems/ItemModal/README.md deleted file mode 100644 index 0f04181068..0000000000 --- a/docs/docs/auto-docs/screens/OrganizationActionItems/ItemModal/README.md +++ /dev/null @@ -1,15 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / screens/OrganizationActionItems/ItemModal - -# screens/OrganizationActionItems/ItemModal - -## Interfaces - -- [InterfaceItemModalProps](interfaces/InterfaceItemModalProps.md) - -## Functions - -- [default](functions/default.md) diff --git a/docs/docs/auto-docs/screens/OrganizationActionItems/ItemModal/functions/default.md b/docs/docs/auto-docs/screens/OrganizationActionItems/ItemModal/functions/default.md deleted file mode 100644 index 9b7498ea12..0000000000 --- a/docs/docs/auto-docs/screens/OrganizationActionItems/ItemModal/functions/default.md +++ /dev/null @@ -1,37 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [screens/OrganizationActionItems/ItemModal](../README.md) / default - -# Function: default() - -> **default**(`props`, `deprecatedLegacyContext`?): `ReactNode` - -Defined in: [src/screens/OrganizationActionItems/ItemModal.tsx:92](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/OrganizationActionItems/ItemModal.tsx#L92) - -A modal component for creating action items. - -## Parameters - -### props - -[`InterfaceItemModalProps`](../interfaces/InterfaceItemModalProps.md) - -The properties passed to the component. - -### deprecatedLegacyContext? - -`any` - -**Deprecated** - -**See** - -[React Docs](https://legacy.reactjs.org/docs/legacy-context.html#referencing-context-in-lifecycle-methods) - -## Returns - -`ReactNode` - -The `ItemModal` component. diff --git a/docs/docs/auto-docs/screens/OrganizationActionItems/ItemModal/interfaces/InterfaceItemModalProps.md b/docs/docs/auto-docs/screens/OrganizationActionItems/ItemModal/interfaces/InterfaceItemModalProps.md deleted file mode 100644 index cc1f305fcd..0000000000 --- a/docs/docs/auto-docs/screens/OrganizationActionItems/ItemModal/interfaces/InterfaceItemModalProps.md +++ /dev/null @@ -1,75 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [screens/OrganizationActionItems/ItemModal](../README.md) / InterfaceItemModalProps - -# Interface: InterfaceItemModalProps - -Defined in: [src/screens/OrganizationActionItems/ItemModal.tsx:52](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/OrganizationActionItems/ItemModal.tsx#L52) - -Props for the `ItemModal` component. - -## Properties - -### actionItem - -> **actionItem**: [`InterfaceActionItemInfo`](../../../../utils/interfaces/interfaces/InterfaceActionItemInfo.md) - -Defined in: [src/screens/OrganizationActionItems/ItemModal.tsx:58](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/OrganizationActionItems/ItemModal.tsx#L58) - -*** - -### actionItemsRefetch() - -> **actionItemsRefetch**: () => `void` - -Defined in: [src/screens/OrganizationActionItems/ItemModal.tsx:57](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/OrganizationActionItems/ItemModal.tsx#L57) - -#### Returns - -`void` - -*** - -### editMode - -> **editMode**: `boolean` - -Defined in: [src/screens/OrganizationActionItems/ItemModal.tsx:59](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/OrganizationActionItems/ItemModal.tsx#L59) - -*** - -### eventId - -> **eventId**: `string` - -Defined in: [src/screens/OrganizationActionItems/ItemModal.tsx:56](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/OrganizationActionItems/ItemModal.tsx#L56) - -*** - -### hide() - -> **hide**: () => `void` - -Defined in: [src/screens/OrganizationActionItems/ItemModal.tsx:54](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/OrganizationActionItems/ItemModal.tsx#L54) - -#### Returns - -`void` - -*** - -### isOpen - -> **isOpen**: `boolean` - -Defined in: [src/screens/OrganizationActionItems/ItemModal.tsx:53](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/OrganizationActionItems/ItemModal.tsx#L53) - -*** - -### orgId - -> **orgId**: `string` - -Defined in: [src/screens/OrganizationActionItems/ItemModal.tsx:55](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/OrganizationActionItems/ItemModal.tsx#L55) diff --git a/docs/docs/auto-docs/screens/OrganizationActionItems/ItemUpdateStatusModal/README.md b/docs/docs/auto-docs/screens/OrganizationActionItems/ItemUpdateStatusModal/README.md deleted file mode 100644 index 411595c919..0000000000 --- a/docs/docs/auto-docs/screens/OrganizationActionItems/ItemUpdateStatusModal/README.md +++ /dev/null @@ -1,15 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / screens/OrganizationActionItems/ItemUpdateStatusModal - -# screens/OrganizationActionItems/ItemUpdateStatusModal - -## Interfaces - -- [InterfaceItemUpdateStatusModalProps](interfaces/InterfaceItemUpdateStatusModalProps.md) - -## Functions - -- [default](functions/default.md) diff --git a/docs/docs/auto-docs/screens/OrganizationActionItems/ItemUpdateStatusModal/functions/default.md b/docs/docs/auto-docs/screens/OrganizationActionItems/ItemUpdateStatusModal/functions/default.md deleted file mode 100644 index e60d1abcb1..0000000000 --- a/docs/docs/auto-docs/screens/OrganizationActionItems/ItemUpdateStatusModal/functions/default.md +++ /dev/null @@ -1,31 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [screens/OrganizationActionItems/ItemUpdateStatusModal](../README.md) / default - -# Function: default() - -> **default**(`props`, `deprecatedLegacyContext`?): `ReactNode` - -Defined in: [src/screens/OrganizationActionItems/ItemUpdateStatusModal.tsx:18](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/OrganizationActionItems/ItemUpdateStatusModal.tsx#L18) - -## Parameters - -### props - -[`InterfaceItemUpdateStatusModalProps`](../interfaces/InterfaceItemUpdateStatusModalProps.md) - -### deprecatedLegacyContext? - -`any` - -**Deprecated** - -**See** - -[React Docs](https://legacy.reactjs.org/docs/legacy-context.html#referencing-context-in-lifecycle-methods) - -## Returns - -`ReactNode` diff --git a/docs/docs/auto-docs/screens/OrganizationActionItems/ItemUpdateStatusModal/interfaces/InterfaceItemUpdateStatusModalProps.md b/docs/docs/auto-docs/screens/OrganizationActionItems/ItemUpdateStatusModal/interfaces/InterfaceItemUpdateStatusModalProps.md deleted file mode 100644 index 4bf3f90d13..0000000000 --- a/docs/docs/auto-docs/screens/OrganizationActionItems/ItemUpdateStatusModal/interfaces/InterfaceItemUpdateStatusModalProps.md +++ /dev/null @@ -1,49 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [screens/OrganizationActionItems/ItemUpdateStatusModal](../README.md) / InterfaceItemUpdateStatusModalProps - -# Interface: InterfaceItemUpdateStatusModalProps - -Defined in: [src/screens/OrganizationActionItems/ItemUpdateStatusModal.tsx:11](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/OrganizationActionItems/ItemUpdateStatusModal.tsx#L11) - -## Properties - -### actionItem - -> **actionItem**: [`InterfaceActionItemInfo`](../../../../utils/interfaces/interfaces/InterfaceActionItemInfo.md) - -Defined in: [src/screens/OrganizationActionItems/ItemUpdateStatusModal.tsx:15](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/OrganizationActionItems/ItemUpdateStatusModal.tsx#L15) - -*** - -### actionItemsRefetch() - -> **actionItemsRefetch**: () => `void` - -Defined in: [src/screens/OrganizationActionItems/ItemUpdateStatusModal.tsx:14](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/OrganizationActionItems/ItemUpdateStatusModal.tsx#L14) - -#### Returns - -`void` - -*** - -### hide() - -> **hide**: () => `void` - -Defined in: [src/screens/OrganizationActionItems/ItemUpdateStatusModal.tsx:13](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/OrganizationActionItems/ItemUpdateStatusModal.tsx#L13) - -#### Returns - -`void` - -*** - -### isOpen - -> **isOpen**: `boolean` - -Defined in: [src/screens/OrganizationActionItems/ItemUpdateStatusModal.tsx:12](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/OrganizationActionItems/ItemUpdateStatusModal.tsx#L12) diff --git a/docs/docs/auto-docs/screens/OrganizationActionItems/ItemViewModal/README.md b/docs/docs/auto-docs/screens/OrganizationActionItems/ItemViewModal/README.md deleted file mode 100644 index cf8b41b016..0000000000 --- a/docs/docs/auto-docs/screens/OrganizationActionItems/ItemViewModal/README.md +++ /dev/null @@ -1,15 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / screens/OrganizationActionItems/ItemViewModal - -# screens/OrganizationActionItems/ItemViewModal - -## Interfaces - -- [InterfaceViewModalProps](interfaces/InterfaceViewModalProps.md) - -## Functions - -- [default](functions/default.md) diff --git a/docs/docs/auto-docs/screens/OrganizationActionItems/ItemViewModal/functions/default.md b/docs/docs/auto-docs/screens/OrganizationActionItems/ItemViewModal/functions/default.md deleted file mode 100644 index 9b419f2243..0000000000 --- a/docs/docs/auto-docs/screens/OrganizationActionItems/ItemViewModal/functions/default.md +++ /dev/null @@ -1,38 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [screens/OrganizationActionItems/ItemViewModal](../README.md) / default - -# Function: default() - -> **default**(`props`, `deprecatedLegacyContext`?): `ReactNode` - -Defined in: [src/screens/OrganizationActionItems/ItemViewModal.tsx:32](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/OrganizationActionItems/ItemViewModal.tsx#L32) - -A modal dialog for viewing action item details. - -## Parameters - -### props - -[`InterfaceViewModalProps`](../interfaces/InterfaceViewModalProps.md) - -### deprecatedLegacyContext? - -`any` - -**Deprecated** - -**See** - -[React Docs](https://legacy.reactjs.org/docs/legacy-context.html#referencing-context-in-lifecycle-methods) - -## Returns - -`ReactNode` - -The rendered modal component. - -The `ItemViewModal` component displays all the fields of an action item in a modal dialog. -It includes fields for assignee, assigner, category, pre and post completion notes, assignment date, due date, completion date, and event. diff --git a/docs/docs/auto-docs/screens/OrganizationActionItems/ItemViewModal/interfaces/InterfaceViewModalProps.md b/docs/docs/auto-docs/screens/OrganizationActionItems/ItemViewModal/interfaces/InterfaceViewModalProps.md deleted file mode 100644 index 681783a324..0000000000 --- a/docs/docs/auto-docs/screens/OrganizationActionItems/ItemViewModal/interfaces/InterfaceViewModalProps.md +++ /dev/null @@ -1,37 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [screens/OrganizationActionItems/ItemViewModal](../README.md) / InterfaceViewModalProps - -# Interface: InterfaceViewModalProps - -Defined in: [src/screens/OrganizationActionItems/ItemViewModal.tsx:13](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/OrganizationActionItems/ItemViewModal.tsx#L13) - -## Properties - -### hide() - -> **hide**: () => `void` - -Defined in: [src/screens/OrganizationActionItems/ItemViewModal.tsx:15](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/OrganizationActionItems/ItemViewModal.tsx#L15) - -#### Returns - -`void` - -*** - -### isOpen - -> **isOpen**: `boolean` - -Defined in: [src/screens/OrganizationActionItems/ItemViewModal.tsx:14](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/OrganizationActionItems/ItemViewModal.tsx#L14) - -*** - -### item - -> **item**: [`InterfaceActionItemInfo`](../../../../utils/interfaces/interfaces/InterfaceActionItemInfo.md) - -Defined in: [src/screens/OrganizationActionItems/ItemViewModal.tsx:16](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/OrganizationActionItems/ItemViewModal.tsx#L16) diff --git a/docs/docs/auto-docs/screens/OrganizationActionItems/OrganizationActionItem.mocks/README.md b/docs/docs/auto-docs/screens/OrganizationActionItems/OrganizationActionItem.mocks/README.md deleted file mode 100644 index 876af623c0..0000000000 --- a/docs/docs/auto-docs/screens/OrganizationActionItems/OrganizationActionItem.mocks/README.md +++ /dev/null @@ -1,13 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / screens/OrganizationActionItems/OrganizationActionItem.mocks - -# screens/OrganizationActionItems/OrganizationActionItem.mocks - -## Variables - -- [MOCKS](variables/MOCKS.md) -- [MOCKS\_EMPTY](variables/MOCKS_EMPTY.md) -- [MOCKS\_ERROR](variables/MOCKS_ERROR.md) diff --git a/docs/docs/auto-docs/screens/OrganizationActionItems/OrganizationActionItem.mocks/variables/MOCKS.md b/docs/docs/auto-docs/screens/OrganizationActionItems/OrganizationActionItem.mocks/variables/MOCKS.md deleted file mode 100644 index 71050d4528..0000000000 --- a/docs/docs/auto-docs/screens/OrganizationActionItems/OrganizationActionItem.mocks/variables/MOCKS.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [screens/OrganizationActionItems/OrganizationActionItem.mocks](../README.md) / MOCKS - -# Variable: MOCKS - -> `const` **MOCKS**: (\{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `id`: `string`; \}; \}; `result`: \{ `data`: \{ `organizations`: `object`[]; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `organizationId`: `string`; `where`: \{ `is_disabled`: `boolean`; \}; \}; \}; `result`: \{ `data`: \{ `actionItemCategoriesByOrganization`: (\{ `_id`: `string`; `createdAt`: `string`; `creator`: \{ `_id`: `string`; `firstName`: `string`; `lastName`: `string`; \}; `isDisabled`: `boolean`; `name`: `string`; \} \| \{ `_id`: `undefined`; `createdAt`: `string`; `creator`: \{ `_id`: `undefined`; `firstName`: `string`; `lastName`: `string`; \}; `isDisabled`: `boolean`; `name`: `string`; \})[]; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `where`: \{ `eventId`: `string`; `hasAccepted`: `boolean`; \}; \}; \}; `result`: \{ `data`: \{ `getEventVolunteers`: (\{ `_id`: `string`; `assignments`: `any`[]; `groups`: `object`[]; `hasAccepted`: `boolean`; `hoursVolunteered`: `number`; `user`: \{ `_id`: `string`; `firstName`: `string`; `image`: `any`; `lastName`: `string`; \}; \} \| \{ `_id`: `undefined`; `assignments`: `any`[]; `groups`: `any`[]; `hasAccepted`: `boolean`; `hoursVolunteered`: `number`; `user`: \{ `_id`: `undefined`; `firstName`: `string`; `image`: `any`; `lastName`: `string`; \}; \})[]; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `where`: \{ `eventId`: `undefined`; `hasAccepted`: `boolean`; \}; \}; \}; `result`: \{ `data`: \{ `getEventVolunteers`: `any`[]; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `where`: \{ `eventId`: `string`; \}; \}; \}; `result`: \{ `data`: \{ `getEventVolunteerGroups`: (\{ `_id`: `string`; `assignments`: `any`[]; `createdAt`: `string`; `creator`: \{ `_id`: `string`; `firstName`: `string`; `image`: `any`; `lastName`: `string`; \}; `description`: `string`; `event`: \{ `_id`: `string`; \}; `leader`: \{ `_id`: `string`; `firstName`: `string`; `image`: `any`; `lastName`: `string`; \}; `name`: `string`; `volunteers`: `object`[]; `volunteersRequired`: `number`; \} \| \{ `_id`: `undefined`; `assignments`: `any`[]; `createdAt`: `string`; `creator`: \{ `_id`: `string`; `firstName`: `string`; `image`: `any`; `lastName`: `string`; \}; `description`: `string`; `event`: \{ `_id`: `string`; \}; `leader`: \{ `_id`: `string`; `firstName`: `string`; `image`: `any`; `lastName`: `string`; \}; `name`: `string`; `volunteers`: `any`[]; `volunteersRequired`: `number`; \})[]; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `actionItemCategoryId`: `undefined`; `actionItemId`: `undefined`; `allottedHours`: `undefined`; `assigneeId`: `undefined`; `assigneeType`: `undefined`; `dDate`: `undefined`; `dueDate`: `undefined`; `eventId`: `string`; `isCompleted`: `undefined`; `orderBy`: `any`; `organizationId`: `string`; `postCompletionNotes`: `undefined`; `preCompletionNotes`: `undefined`; `where`: \{ `assigneeName`: `undefined`; `categoryName`: `string`; `is_completed`: `undefined`; \}; \}; \}; `result`: \{ `data`: \{ `actionItemsByOrganization`: [`InterfaceActionItemInfo`](../../../../utils/interfaces/interfaces/InterfaceActionItemInfo.md)[]; `createActionItem`: `undefined`; `removeActionItem`: `undefined`; `updateActionItem`: `undefined`; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `actionItemCategoryId`: `undefined`; `actionItemId`: `undefined`; `allottedHours`: `undefined`; `assigneeId`: `undefined`; `assigneeType`: `undefined`; `dDate`: `undefined`; `dueDate`: `undefined`; `eventId`: `string`; `isCompleted`: `undefined`; `orderBy`: `string`; `organizationId`: `string`; `postCompletionNotes`: `undefined`; `preCompletionNotes`: `undefined`; `where`: \{ `assigneeName`: `string`; `categoryName`: `undefined`; `is_completed`: `undefined`; \}; \}; \}; `result`: \{ `data`: \{ `actionItemsByOrganization`: [`InterfaceActionItemInfo`](../../../../utils/interfaces/interfaces/InterfaceActionItemInfo.md)[]; `createActionItem`: `undefined`; `removeActionItem`: `undefined`; `updateActionItem`: `undefined`; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `actionItemCategoryId`: `undefined`; `actionItemId`: `undefined`; `allottedHours`: `undefined`; `assigneeId`: `undefined`; `assigneeType`: `undefined`; `dDate`: `undefined`; `dueDate`: `undefined`; `eventId`: `string`; `isCompleted`: `undefined`; `orderBy`: `any`; `organizationId`: `string`; `postCompletionNotes`: `undefined`; `preCompletionNotes`: `undefined`; `where`: \{ `assigneeName`: `string`; `categoryName`: `undefined`; `is_completed`: `boolean`; \}; \}; \}; `result`: \{ `data`: \{ `actionItemsByOrganization`: [`InterfaceActionItemInfo`](../../../../utils/interfaces/interfaces/InterfaceActionItemInfo.md)[]; `createActionItem`: `undefined`; `removeActionItem`: `undefined`; `updateActionItem`: `undefined`; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `actionItemCategoryId`: `undefined`; `actionItemId`: `string`; `allottedHours`: `undefined`; `assigneeId`: `undefined`; `assigneeType`: `undefined`; `dDate`: `undefined`; `dueDate`: `undefined`; `eventId`: `undefined`; `isCompleted`: `undefined`; `orderBy`: `undefined`; `organizationId`: `undefined`; `postCompletionNotes`: `undefined`; `preCompletionNotes`: `undefined`; `where`: `undefined`; \}; \}; `result`: \{ `data`: \{ `actionItemsByOrganization`: `undefined`; `createActionItem`: `undefined`; `removeActionItem`: \{ `_id`: `string`; \}; `updateActionItem`: `undefined`; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `actionItemCategoryId`: `undefined`; `actionItemId`: `string`; `allottedHours`: `undefined`; `assigneeId`: `string`; `assigneeType`: `string`; `dDate`: `undefined`; `dueDate`: `undefined`; `eventId`: `undefined`; `isCompleted`: `boolean`; `orderBy`: `undefined`; `organizationId`: `undefined`; `postCompletionNotes`: `string`; `preCompletionNotes`: `undefined`; `where`: `undefined`; \}; \}; `result`: \{ `data`: \{ `actionItemsByOrganization`: `undefined`; `createActionItem`: `undefined`; `removeActionItem`: `undefined`; `updateActionItem`: \{ `_id`: `string`; \}; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `actionItemCategoryId`: `string`; `actionItemId`: `string`; `allottedHours`: `number`; `assigneeId`: `string`; `assigneeType`: `string`; `dDate`: `undefined`; `dueDate`: `undefined`; `eventId`: `undefined`; `isCompleted`: `undefined`; `orderBy`: `undefined`; `organizationId`: `undefined`; `postCompletionNotes`: `string`; `preCompletionNotes`: `undefined`; `where`: `undefined`; \}; \}; `result`: \{ `data`: \{ `actionItemsByOrganization`: `undefined`; `createActionItem`: `undefined`; `removeActionItem`: `undefined`; `updateActionItem`: \{ `_id`: `string`; \}; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `actionItemCategoryId`: `string`; `actionItemId`: `string`; `allottedHours`: `number`; `assigneeId`: `string`; `assigneeType`: `string`; `dDate`: `undefined`; `dueDate`: `string`; `eventId`: `undefined`; `isCompleted`: `undefined`; `orderBy`: `undefined`; `organizationId`: `undefined`; `postCompletionNotes`: `undefined`; `preCompletionNotes`: `string`; `where`: `undefined`; \}; \}; `result`: \{ `data`: \{ `actionItemsByOrganization`: `undefined`; `createActionItem`: `undefined`; `removeActionItem`: `undefined`; `updateActionItem`: \{ `_id`: `string`; \}; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `actionItemCategoryId`: `undefined`; `actionItemId`: `string`; `allottedHours`: `undefined`; `assigneeId`: `string`; `assigneeType`: `undefined`; `dDate`: `undefined`; `dueDate`: `undefined`; `eventId`: `undefined`; `isCompleted`: `boolean`; `orderBy`: `undefined`; `organizationId`: `undefined`; `postCompletionNotes`: `string`; `preCompletionNotes`: `undefined`; `where`: `undefined`; \}; \}; `result`: \{ `data`: \{ `actionItemsByOrganization`: `undefined`; `createActionItem`: `undefined`; `removeActionItem`: `undefined`; `updateActionItem`: \{ `_id`: `string`; \}; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `actionItemCategoryId`: `string`; `actionItemId`: `string`; `allottedHours`: `number`; `assigneeId`: `string`; `assigneeType`: `string`; `dDate`: `undefined`; `dueDate`: `undefined`; `eventId`: `undefined`; `isCompleted`: `undefined`; `orderBy`: `undefined`; `organizationId`: `undefined`; `postCompletionNotes`: `undefined`; `preCompletionNotes`: `undefined`; `where`: `undefined`; \}; \}; `result`: \{ `data`: \{ `actionItemsByOrganization`: `undefined`; `createActionItem`: `undefined`; `removeActionItem`: `undefined`; `updateActionItem`: \{ `_id`: `string`; \}; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `actionItemCategoryId`: `string`; `actionItemId`: `undefined`; `allottedHours`: `number`; `assigneeId`: `string`; `assigneeType`: `string`; `dDate`: `string`; `dueDate`: `undefined`; `eventId`: `undefined`; `isCompleted`: `undefined`; `orderBy`: `undefined`; `organizationId`: `undefined`; `postCompletionNotes`: `undefined`; `preCompletionNotes`: `string`; `where`: `undefined`; \}; \}; `result`: \{ `data`: \{ `actionItemsByOrganization`: `undefined`; `createActionItem`: \{ `_id`: `string`; \}; `removeActionItem`: `undefined`; `updateActionItem`: `undefined`; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `actionItemCategoryId`: `string`; `actionItemId`: `undefined`; `allottedHours`: `number`; `assigneeId`: `string`; `assigneeType`: `string`; `dDate`: `string`; `dueDate`: `undefined`; `eventId`: `string`; `isCompleted`: `undefined`; `orderBy`: `undefined`; `organizationId`: `undefined`; `postCompletionNotes`: `undefined`; `preCompletionNotes`: `string`; `where`: `undefined`; \}; \}; `result`: \{ `data`: \{ `actionItemsByOrganization`: `undefined`; `createActionItem`: \{ `_id`: `string`; \}; `removeActionItem`: `undefined`; `updateActionItem`: `undefined`; \}; \}; \})[] - -Defined in: [src/screens/OrganizationActionItems/OrganizationActionItem.mocks.ts:21](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/OrganizationActionItems/OrganizationActionItem.mocks.ts#L21) diff --git a/docs/docs/auto-docs/screens/OrganizationActionItems/OrganizationActionItem.mocks/variables/MOCKS_EMPTY.md b/docs/docs/auto-docs/screens/OrganizationActionItems/OrganizationActionItem.mocks/variables/MOCKS_EMPTY.md deleted file mode 100644 index eb85951b06..0000000000 --- a/docs/docs/auto-docs/screens/OrganizationActionItems/OrganizationActionItem.mocks/variables/MOCKS_EMPTY.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [screens/OrganizationActionItems/OrganizationActionItem.mocks](../README.md) / MOCKS\_EMPTY - -# Variable: MOCKS\_EMPTY - -> `const` **MOCKS\_EMPTY**: (\{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `id`: `string`; \}; \}; `result`: \{ `data`: \{ `organizations`: `object`[]; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `organizationId`: `string`; `where`: \{ `is_disabled`: `boolean`; \}; \}; \}; `result`: \{ `data`: \{ `actionItemCategoriesByOrganization`: (\{ `_id`: `string`; `createdAt`: `string`; `creator`: \{ `_id`: `string`; `firstName`: `string`; `lastName`: `string`; \}; `isDisabled`: `boolean`; `name`: `string`; \} \| \{ `_id`: `undefined`; `createdAt`: `string`; `creator`: \{ `_id`: `undefined`; `firstName`: `string`; `lastName`: `string`; \}; `isDisabled`: `boolean`; `name`: `string`; \})[]; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `where`: \{ `eventId`: `string`; `hasAccepted`: `boolean`; \}; \}; \}; `result`: \{ `data`: \{ `getEventVolunteers`: (\{ `_id`: `string`; `assignments`: `any`[]; `groups`: `object`[]; `hasAccepted`: `boolean`; `hoursVolunteered`: `number`; `user`: \{ `_id`: `string`; `firstName`: `string`; `image`: `any`; `lastName`: `string`; \}; \} \| \{ `_id`: `undefined`; `assignments`: `any`[]; `groups`: `any`[]; `hasAccepted`: `boolean`; `hoursVolunteered`: `number`; `user`: \{ `_id`: `undefined`; `firstName`: `string`; `image`: `any`; `lastName`: `string`; \}; \})[]; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `where`: \{ `eventId`: `undefined`; `hasAccepted`: `boolean`; \}; \}; \}; `result`: \{ `data`: \{ `getEventVolunteers`: `any`[]; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `where`: \{ `eventId`: `string`; \}; \}; \}; `result`: \{ `data`: \{ `getEventVolunteerGroups`: (\{ `_id`: `string`; `assignments`: `any`[]; `createdAt`: `string`; `creator`: \{ `_id`: `string`; `firstName`: `string`; `image`: `any`; `lastName`: `string`; \}; `description`: `string`; `event`: \{ `_id`: `string`; \}; `leader`: \{ `_id`: `string`; `firstName`: `string`; `image`: `any`; `lastName`: `string`; \}; `name`: `string`; `volunteers`: `object`[]; `volunteersRequired`: `number`; \} \| \{ `_id`: `undefined`; `assignments`: `any`[]; `createdAt`: `string`; `creator`: \{ `_id`: `string`; `firstName`: `string`; `image`: `any`; `lastName`: `string`; \}; `description`: `string`; `event`: \{ `_id`: `string`; \}; `leader`: \{ `_id`: `string`; `firstName`: `string`; `image`: `any`; `lastName`: `string`; \}; `name`: `string`; `volunteers`: `any`[]; `volunteersRequired`: `number`; \})[]; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `eventId`: `string`; `orderBy`: `any`; `organizationId`: `string`; `where`: \{ `assigneeName`: `string`; \}; \}; \}; `result`: \{ `data`: \{ `actionItemsByOrganization`: `any`[]; \}; \}; \})[] - -Defined in: [src/screens/OrganizationActionItems/OrganizationActionItem.mocks.ts:480](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/OrganizationActionItems/OrganizationActionItem.mocks.ts#L480) diff --git a/docs/docs/auto-docs/screens/OrganizationActionItems/OrganizationActionItem.mocks/variables/MOCKS_ERROR.md b/docs/docs/auto-docs/screens/OrganizationActionItems/OrganizationActionItem.mocks/variables/MOCKS_ERROR.md deleted file mode 100644 index fb197a5bdb..0000000000 --- a/docs/docs/auto-docs/screens/OrganizationActionItems/OrganizationActionItem.mocks/variables/MOCKS_ERROR.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [screens/OrganizationActionItems/OrganizationActionItem.mocks](../README.md) / MOCKS\_ERROR - -# Variable: MOCKS\_ERROR - -> `const` **MOCKS\_ERROR**: (\{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `id`: `string`; \}; \}; `result`: \{ `data`: \{ `organizations`: `object`[]; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `organizationId`: `string`; `where`: \{ `is_disabled`: `boolean`; \}; \}; \}; `result`: \{ `data`: \{ `actionItemCategoriesByOrganization`: (\{ `_id`: `string`; `createdAt`: `string`; `creator`: \{ `_id`: `string`; `firstName`: `string`; `lastName`: `string`; \}; `isDisabled`: `boolean`; `name`: `string`; \} \| \{ `_id`: `undefined`; `createdAt`: `string`; `creator`: \{ `_id`: `undefined`; `firstName`: `string`; `lastName`: `string`; \}; `isDisabled`: `boolean`; `name`: `string`; \})[]; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `where`: \{ `eventId`: `string`; `hasAccepted`: `boolean`; \}; \}; \}; `result`: \{ `data`: \{ `getEventVolunteers`: (\{ `_id`: `string`; `assignments`: `any`[]; `groups`: `object`[]; `hasAccepted`: `boolean`; `hoursVolunteered`: `number`; `user`: \{ `_id`: `string`; `firstName`: `string`; `image`: `any`; `lastName`: `string`; \}; \} \| \{ `_id`: `undefined`; `assignments`: `any`[]; `groups`: `any`[]; `hasAccepted`: `boolean`; `hoursVolunteered`: `number`; `user`: \{ `_id`: `undefined`; `firstName`: `string`; `image`: `any`; `lastName`: `string`; \}; \})[]; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `where`: \{ `eventId`: `undefined`; `hasAccepted`: `boolean`; \}; \}; \}; `result`: \{ `data`: \{ `getEventVolunteers`: `any`[]; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `where`: \{ `eventId`: `string`; \}; \}; \}; `result`: \{ `data`: \{ `getEventVolunteerGroups`: (\{ `_id`: `string`; `assignments`: `any`[]; `createdAt`: `string`; `creator`: \{ `_id`: `string`; `firstName`: `string`; `image`: `any`; `lastName`: `string`; \}; `description`: `string`; `event`: \{ `_id`: `string`; \}; `leader`: \{ `_id`: `string`; `firstName`: `string`; `image`: `any`; `lastName`: `string`; \}; `name`: `string`; `volunteers`: `object`[]; `volunteersRequired`: `number`; \} \| \{ `_id`: `undefined`; `assignments`: `any`[]; `createdAt`: `string`; `creator`: \{ `_id`: `string`; `firstName`: `string`; `image`: `any`; `lastName`: `string`; \}; `description`: `string`; `event`: \{ `_id`: `string`; \}; `leader`: \{ `_id`: `string`; `firstName`: `string`; `image`: `any`; `lastName`: `string`; \}; `name`: `string`; `volunteers`: `any`[]; `volunteersRequired`: `number`; \})[]; \}; \}; \} \| \{ `error`: `Error`; `request`: \{ `query`: `DocumentNode`; `variables`: \{ `actionItemId`: `undefined`; `allottedHours`: `undefined`; `assigneeId`: `undefined`; `assigneeType`: `undefined`; `dDate`: `undefined`; `eventId`: `string`; `isCompleted`: `undefined`; `orderBy`: `any`; `organizationId`: `string`; `postCompletionNotes`: `undefined`; `preCompletionNotes`: `undefined`; `where`: \{ `assigneeName`: `string`; \}; \}; \}; \} \| \{ `error`: `Error`; `request`: \{ `query`: `DocumentNode`; `variables`: \{ `actionItemId`: `string`; `allottedHours`: `undefined`; `assigneeId`: `undefined`; `assigneeType`: `undefined`; `dDate`: `undefined`; `eventId`: `undefined`; `isCompleted`: `undefined`; `orderBy`: `undefined`; `organizationId`: `undefined`; `postCompletionNotes`: `undefined`; `preCompletionNotes`: `undefined`; `where`: `undefined`; \}; \}; \} \| \{ `error`: `Error`; `request`: \{ `query`: `DocumentNode`; `variables`: \{ `actionItemId`: `string`; `allottedHours`: `undefined`; `assigneeId`: `string`; `assigneeType`: `string`; `dDate`: `undefined`; `eventId`: `undefined`; `isCompleted`: `boolean`; `orderBy`: `undefined`; `organizationId`: `undefined`; `postCompletionNotes`: `string`; `preCompletionNotes`: `undefined`; `where`: `undefined`; \}; \}; \} \| \{ `error`: `Error`; `request`: \{ `query`: `DocumentNode`; `variables`: \{ `actionItemId`: `undefined`; `allottedHours`: `any`; `assigneeId`: `string`; `assigneeType`: `string`; `dDate`: `string`; `eventId`: `undefined`; `isCompleted`: `undefined`; `orderBy`: `undefined`; `organizationId`: `undefined`; `postCompletionNotes`: `undefined`; `preCompletionNotes`: `string`; `where`: `undefined`; \}; \}; \} \| \{ `error`: `Error`; `request`: \{ `query`: `DocumentNode`; `variables`: \{ `actionItemId`: `string`; `allottedHours`: `undefined`; `assigneeId`: `string`; `assigneeType`: `string`; `dDate`: `undefined`; `eventId`: `undefined`; `isCompleted`: `undefined`; `orderBy`: `undefined`; `organizationId`: `undefined`; `postCompletionNotes`: `string`; `preCompletionNotes`: `undefined`; `where`: `undefined`; \}; \}; \})[] - -Defined in: [src/screens/OrganizationActionItems/OrganizationActionItem.mocks.ts:412](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/OrganizationActionItems/OrganizationActionItem.mocks.ts#L412) diff --git a/docs/docs/auto-docs/screens/OrganizationActionItems/OrganizationActionItems/README.md b/docs/docs/auto-docs/screens/OrganizationActionItems/OrganizationActionItems/README.md deleted file mode 100644 index 4fd3908409..0000000000 --- a/docs/docs/auto-docs/screens/OrganizationActionItems/OrganizationActionItems/README.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / screens/OrganizationActionItems/OrganizationActionItems - -# screens/OrganizationActionItems/OrganizationActionItems - -## Functions - -- [default](functions/default.md) diff --git a/docs/docs/auto-docs/screens/OrganizationActionItems/OrganizationActionItems/functions/default.md b/docs/docs/auto-docs/screens/OrganizationActionItems/OrganizationActionItems/functions/default.md deleted file mode 100644 index d909f097fd..0000000000 --- a/docs/docs/auto-docs/screens/OrganizationActionItems/OrganizationActionItems/functions/default.md +++ /dev/null @@ -1,21 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [screens/OrganizationActionItems/OrganizationActionItems](../README.md) / default - -# Function: default() - -> **default**(): `JSX.Element` - -Defined in: [src/screens/OrganizationActionItems/OrganizationActionItems.tsx:51](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/OrganizationActionItems/OrganizationActionItems.tsx#L51) - -Component for managing and displaying action items within an organization. - -This component allows users to view, filter, sort, and create action items. It also handles fetching and displaying related data such as action item categories and members. - -## Returns - -`JSX.Element` - -The rendered component. diff --git a/docs/docs/auto-docs/screens/OrganizationActionItems/testObject.mocks/README.md b/docs/docs/auto-docs/screens/OrganizationActionItems/testObject.mocks/README.md deleted file mode 100644 index 4bee2792a0..0000000000 --- a/docs/docs/auto-docs/screens/OrganizationActionItems/testObject.mocks/README.md +++ /dev/null @@ -1,22 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / screens/OrganizationActionItems/testObject.mocks - -# screens/OrganizationActionItems/testObject.mocks - -## Variables - -- [actionItemCategory1](variables/actionItemCategory1.md) -- [actionItemCategory2](variables/actionItemCategory2.md) -- [actionItemCategoryListQuery](variables/actionItemCategoryListQuery.md) -- [baseActionItem](variables/baseActionItem.md) -- [groupListQuery](variables/groupListQuery.md) -- [itemWithGroup](variables/itemWithGroup.md) -- [itemWithUser](variables/itemWithUser.md) -- [itemWithUserImage](variables/itemWithUserImage.md) -- [itemWithVolunteer](variables/itemWithVolunteer.md) -- [itemWithVolunteerImage](variables/itemWithVolunteerImage.md) -- [memberListQuery](variables/memberListQuery.md) -- [volunteerListQuery](variables/volunteerListQuery.md) diff --git a/docs/docs/auto-docs/screens/OrganizationActionItems/testObject.mocks/variables/actionItemCategory1.md b/docs/docs/auto-docs/screens/OrganizationActionItems/testObject.mocks/variables/actionItemCategory1.md deleted file mode 100644 index 5012ae631c..0000000000 --- a/docs/docs/auto-docs/screens/OrganizationActionItems/testObject.mocks/variables/actionItemCategory1.md +++ /dev/null @@ -1,21 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [screens/OrganizationActionItems/testObject.mocks](../README.md) / actionItemCategory1 - -# Variable: actionItemCategory1 - -> `const` **actionItemCategory1**: `object` - -Defined in: [src/screens/OrganizationActionItems/testObject.mocks.ts:11](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/OrganizationActionItems/testObject.mocks.ts#L11) - -## Type declaration - -### \_id - -> **\_id**: `string` = `'actionItemCategoryId1'` - -### name - -> **name**: `string` = `'Category 1'` diff --git a/docs/docs/auto-docs/screens/OrganizationActionItems/testObject.mocks/variables/actionItemCategory2.md b/docs/docs/auto-docs/screens/OrganizationActionItems/testObject.mocks/variables/actionItemCategory2.md deleted file mode 100644 index ab1a879baa..0000000000 --- a/docs/docs/auto-docs/screens/OrganizationActionItems/testObject.mocks/variables/actionItemCategory2.md +++ /dev/null @@ -1,21 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [screens/OrganizationActionItems/testObject.mocks](../README.md) / actionItemCategory2 - -# Variable: actionItemCategory2 - -> `const` **actionItemCategory2**: `object` - -Defined in: [src/screens/OrganizationActionItems/testObject.mocks.ts:16](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/OrganizationActionItems/testObject.mocks.ts#L16) - -## Type declaration - -### \_id - -> **\_id**: `string` = `'actionItemCategoryId2'` - -### name - -> **name**: `string` = `'Category 2'` diff --git a/docs/docs/auto-docs/screens/OrganizationActionItems/testObject.mocks/variables/actionItemCategoryListQuery.md b/docs/docs/auto-docs/screens/OrganizationActionItems/testObject.mocks/variables/actionItemCategoryListQuery.md deleted file mode 100644 index 5c7d9b2cb4..0000000000 --- a/docs/docs/auto-docs/screens/OrganizationActionItems/testObject.mocks/variables/actionItemCategoryListQuery.md +++ /dev/null @@ -1,49 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [screens/OrganizationActionItems/testObject.mocks](../README.md) / actionItemCategoryListQuery - -# Variable: actionItemCategoryListQuery - -> `const` **actionItemCategoryListQuery**: `object` - -Defined in: [src/screens/OrganizationActionItems/testObject.mocks.ts:408](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/OrganizationActionItems/testObject.mocks.ts#L408) - -## Type declaration - -### request - -> **request**: `object` - -#### request.query - -> **query**: `DocumentNode` = `ACTION_ITEM_CATEGORY_LIST` - -#### request.variables - -> **variables**: `object` - -#### request.variables.organizationId - -> **organizationId**: `string` = `'orgId'` - -#### request.variables.where - -> **where**: `object` - -#### request.variables.where.is\_disabled - -> **is\_disabled**: `boolean` = `false` - -### result - -> **result**: `object` - -#### result.data - -> **data**: `object` - -#### result.data.actionItemCategoriesByOrganization - -> **actionItemCategoriesByOrganization**: (\{ `_id`: `string`; `createdAt`: `string`; `creator`: \{ `_id`: `string`; `firstName`: `string`; `lastName`: `string`; \}; `isDisabled`: `boolean`; `name`: `string`; \} \| \{ `_id`: `undefined`; `createdAt`: `string`; `creator`: \{ `_id`: `undefined`; `firstName`: `string`; `lastName`: `string`; \}; `isDisabled`: `boolean`; `name`: `string`; \})[] diff --git a/docs/docs/auto-docs/screens/OrganizationActionItems/testObject.mocks/variables/baseActionItem.md b/docs/docs/auto-docs/screens/OrganizationActionItems/testObject.mocks/variables/baseActionItem.md deleted file mode 100644 index 20471a9ac2..0000000000 --- a/docs/docs/auto-docs/screens/OrganizationActionItems/testObject.mocks/variables/baseActionItem.md +++ /dev/null @@ -1,57 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [screens/OrganizationActionItems/testObject.mocks](../README.md) / baseActionItem - -# Variable: baseActionItem - -> `const` **baseActionItem**: `object` - -Defined in: [src/screens/OrganizationActionItems/testObject.mocks.ts:21](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/OrganizationActionItems/testObject.mocks.ts#L21) - -## Type declaration - -### assigner - -> **assigner**: `object` - -#### assigner.\_id - -> **\_id**: `string` = `'userId'` - -#### assigner.firstName - -> **firstName**: `string` = `'Wilt'` - -#### assigner.image - -> **image**: `any` = `null` - -#### assigner.lastName - -> **lastName**: `string` = `'Shepherd'` - -### creator - -> **creator**: `object` - -#### creator.\_\_typename - -> **\_\_typename**: `string` = `'User'` - -#### creator.\_id - -> **\_id**: `string` = `'userId'` - -#### creator.firstName - -> **firstName**: `string` = `'Wilt'` - -#### creator.image - -> **image**: `any` = `null` - -#### creator.lastName - -> **lastName**: `string` = `'Shepherd'` diff --git a/docs/docs/auto-docs/screens/OrganizationActionItems/testObject.mocks/variables/groupListQuery.md b/docs/docs/auto-docs/screens/OrganizationActionItems/testObject.mocks/variables/groupListQuery.md deleted file mode 100644 index 10a8b9a0b0..0000000000 --- a/docs/docs/auto-docs/screens/OrganizationActionItems/testObject.mocks/variables/groupListQuery.md +++ /dev/null @@ -1,45 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [screens/OrganizationActionItems/testObject.mocks](../README.md) / groupListQuery - -# Variable: groupListQuery - -> `const` **groupListQuery**: `object`[] - -Defined in: [src/screens/OrganizationActionItems/testObject.mocks.ts:301](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/OrganizationActionItems/testObject.mocks.ts#L301) - -## Type declaration - -### request - -> **request**: `object` - -#### request.query - -> **query**: `DocumentNode` = `EVENT_VOLUNTEER_GROUP_LIST` - -#### request.variables - -> **variables**: `object` - -#### request.variables.where - -> **where**: `object` - -#### request.variables.where.eventId - -> **eventId**: `string` = `'eventId'` - -### result - -> **result**: `object` - -#### result.data - -> **data**: `object` - -#### result.data.getEventVolunteerGroups - -> **getEventVolunteerGroups**: (\{ `_id`: `string`; `assignments`: `any`[]; `createdAt`: `string`; `creator`: \{ `_id`: `string`; `firstName`: `string`; `image`: `any`; `lastName`: `string`; \}; `description`: `string`; `event`: \{ `_id`: `string`; \}; `leader`: \{ `_id`: `string`; `firstName`: `string`; `image`: `any`; `lastName`: `string`; \}; `name`: `string`; `volunteers`: `object`[]; `volunteersRequired`: `number`; \} \| \{ `_id`: `undefined`; `assignments`: `any`[]; `createdAt`: `string`; `creator`: \{ `_id`: `string`; `firstName`: `string`; `image`: `any`; `lastName`: `string`; \}; `description`: `string`; `event`: \{ `_id`: `string`; \}; `leader`: \{ `_id`: `string`; `firstName`: `string`; `image`: `any`; `lastName`: `string`; \}; `name`: `string`; `volunteers`: `any`[]; `volunteersRequired`: `number`; \})[] diff --git a/docs/docs/auto-docs/screens/OrganizationActionItems/testObject.mocks/variables/itemWithGroup.md b/docs/docs/auto-docs/screens/OrganizationActionItems/testObject.mocks/variables/itemWithGroup.md deleted file mode 100644 index 900ff0246c..0000000000 --- a/docs/docs/auto-docs/screens/OrganizationActionItems/testObject.mocks/variables/itemWithGroup.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [screens/OrganizationActionItems/testObject.mocks](../README.md) / itemWithGroup - -# Variable: itemWithGroup - -> `const` **itemWithGroup**: [`InterfaceActionItemInfo`](../../../../utils/interfaces/interfaces/InterfaceActionItemInfo.md) - -Defined in: [src/screens/OrganizationActionItems/testObject.mocks.ts:143](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/OrganizationActionItems/testObject.mocks.ts#L143) diff --git a/docs/docs/auto-docs/screens/OrganizationActionItems/testObject.mocks/variables/itemWithUser.md b/docs/docs/auto-docs/screens/OrganizationActionItems/testObject.mocks/variables/itemWithUser.md deleted file mode 100644 index e64fa742f0..0000000000 --- a/docs/docs/auto-docs/screens/OrganizationActionItems/testObject.mocks/variables/itemWithUser.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [screens/OrganizationActionItems/testObject.mocks](../README.md) / itemWithUser - -# Variable: itemWithUser - -> `const` **itemWithUser**: [`InterfaceActionItemInfo`](../../../../utils/interfaces/interfaces/InterfaceActionItemInfo.md) - -Defined in: [src/screens/OrganizationActionItems/testObject.mocks.ts:97](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/OrganizationActionItems/testObject.mocks.ts#L97) diff --git a/docs/docs/auto-docs/screens/OrganizationActionItems/testObject.mocks/variables/itemWithUserImage.md b/docs/docs/auto-docs/screens/OrganizationActionItems/testObject.mocks/variables/itemWithUserImage.md deleted file mode 100644 index a61a00e767..0000000000 --- a/docs/docs/auto-docs/screens/OrganizationActionItems/testObject.mocks/variables/itemWithUserImage.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [screens/OrganizationActionItems/testObject.mocks](../README.md) / itemWithUserImage - -# Variable: itemWithUserImage - -> `const` **itemWithUserImage**: [`InterfaceActionItemInfo`](../../../../utils/interfaces/interfaces/InterfaceActionItemInfo.md) - -Defined in: [src/screens/OrganizationActionItems/testObject.mocks.ts:120](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/OrganizationActionItems/testObject.mocks.ts#L120) diff --git a/docs/docs/auto-docs/screens/OrganizationActionItems/testObject.mocks/variables/itemWithVolunteer.md b/docs/docs/auto-docs/screens/OrganizationActionItems/testObject.mocks/variables/itemWithVolunteer.md deleted file mode 100644 index acffeb2d6f..0000000000 --- a/docs/docs/auto-docs/screens/OrganizationActionItems/testObject.mocks/variables/itemWithVolunteer.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [screens/OrganizationActionItems/testObject.mocks](../README.md) / itemWithVolunteer - -# Variable: itemWithVolunteer - -> `const` **itemWithVolunteer**: [`InterfaceActionItemInfo`](../../../../utils/interfaces/interfaces/InterfaceActionItemInfo.md) - -Defined in: [src/screens/OrganizationActionItems/testObject.mocks.ts:37](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/OrganizationActionItems/testObject.mocks.ts#L37) diff --git a/docs/docs/auto-docs/screens/OrganizationActionItems/testObject.mocks/variables/itemWithVolunteerImage.md b/docs/docs/auto-docs/screens/OrganizationActionItems/testObject.mocks/variables/itemWithVolunteerImage.md deleted file mode 100644 index 4e5eabeba9..0000000000 --- a/docs/docs/auto-docs/screens/OrganizationActionItems/testObject.mocks/variables/itemWithVolunteerImage.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [screens/OrganizationActionItems/testObject.mocks](../README.md) / itemWithVolunteerImage - -# Variable: itemWithVolunteerImage - -> `const` **itemWithVolunteerImage**: [`InterfaceActionItemInfo`](../../../../utils/interfaces/interfaces/InterfaceActionItemInfo.md) - -Defined in: [src/screens/OrganizationActionItems/testObject.mocks.ts:67](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/OrganizationActionItems/testObject.mocks.ts#L67) diff --git a/docs/docs/auto-docs/screens/OrganizationActionItems/testObject.mocks/variables/memberListQuery.md b/docs/docs/auto-docs/screens/OrganizationActionItems/testObject.mocks/variables/memberListQuery.md deleted file mode 100644 index e313c58bc9..0000000000 --- a/docs/docs/auto-docs/screens/OrganizationActionItems/testObject.mocks/variables/memberListQuery.md +++ /dev/null @@ -1,41 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [screens/OrganizationActionItems/testObject.mocks](../README.md) / memberListQuery - -# Variable: memberListQuery - -> `const` **memberListQuery**: `object` - -Defined in: [src/screens/OrganizationActionItems/testObject.mocks.ts:184](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/OrganizationActionItems/testObject.mocks.ts#L184) - -## Type declaration - -### request - -> **request**: `object` - -#### request.query - -> **query**: `DocumentNode` = `MEMBERS_LIST` - -#### request.variables - -> **variables**: `object` - -#### request.variables.id - -> **id**: `string` = `'orgId'` - -### result - -> **result**: `object` - -#### result.data - -> **data**: `object` - -#### result.data.organizations - -> **organizations**: `object`[] diff --git a/docs/docs/auto-docs/screens/OrganizationActionItems/testObject.mocks/variables/volunteerListQuery.md b/docs/docs/auto-docs/screens/OrganizationActionItems/testObject.mocks/variables/volunteerListQuery.md deleted file mode 100644 index cb7d7b4b48..0000000000 --- a/docs/docs/auto-docs/screens/OrganizationActionItems/testObject.mocks/variables/volunteerListQuery.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [screens/OrganizationActionItems/testObject.mocks](../README.md) / volunteerListQuery - -# Variable: volunteerListQuery - -> `const` **volunteerListQuery**: (\{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `where`: \{ `eventId`: `string`; `hasAccepted`: `boolean`; \}; \}; \}; `result`: \{ `data`: \{ `getEventVolunteers`: (\{ `_id`: `string`; `assignments`: `any`[]; `groups`: `object`[]; `hasAccepted`: `boolean`; `hoursVolunteered`: `number`; `user`: \{ `_id`: `string`; `firstName`: `string`; `image`: `any`; `lastName`: `string`; \}; \} \| \{ `_id`: `undefined`; `assignments`: `any`[]; `groups`: `any`[]; `hasAccepted`: `boolean`; `hoursVolunteered`: `number`; `user`: \{ `_id`: `undefined`; `firstName`: `string`; `image`: `any`; `lastName`: `string`; \}; \})[]; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `where`: \{ `eventId`: `undefined`; `hasAccepted`: `boolean`; \}; \}; \}; `result`: \{ `data`: \{ `getEventVolunteers`: `any`[]; \}; \}; \})[] - -Defined in: [src/screens/OrganizationActionItems/testObject.mocks.ts:228](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/OrganizationActionItems/testObject.mocks.ts#L228) diff --git a/docs/docs/auto-docs/screens/OrganizationDashboard/OrganizationDashboard/README.md b/docs/docs/auto-docs/screens/OrganizationDashboard/OrganizationDashboard/README.md deleted file mode 100644 index c34bbb3e25..0000000000 --- a/docs/docs/auto-docs/screens/OrganizationDashboard/OrganizationDashboard/README.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / screens/OrganizationDashboard/OrganizationDashboard - -# screens/OrganizationDashboard/OrganizationDashboard - -## Functions - -- [default](functions/default.md) diff --git a/docs/docs/auto-docs/screens/OrganizationDashboard/OrganizationDashboard/functions/default.md b/docs/docs/auto-docs/screens/OrganizationDashboard/OrganizationDashboard/functions/default.md deleted file mode 100644 index d727348d84..0000000000 --- a/docs/docs/auto-docs/screens/OrganizationDashboard/OrganizationDashboard/functions/default.md +++ /dev/null @@ -1,21 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [screens/OrganizationDashboard/OrganizationDashboard](../README.md) / default - -# Function: default() - -> **default**(): `JSX.Element` - -Defined in: [src/screens/OrganizationDashboard/OrganizationDashboard.tsx:44](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/OrganizationDashboard/OrganizationDashboard.tsx#L44) - -Component for displaying the organization dashboard. - -This component provides an overview of various statistics and information related to an organization, including members, admins, posts, events, blocked users, and membership requests. It also displays upcoming events and latest posts. - -## Returns - -`JSX.Element` - -The rendered component. diff --git a/docs/docs/auto-docs/screens/OrganizationDashboard/OrganizationDashboardMocks/README.md b/docs/docs/auto-docs/screens/OrganizationDashboard/OrganizationDashboardMocks/README.md deleted file mode 100644 index a56f4a1a9d..0000000000 --- a/docs/docs/auto-docs/screens/OrganizationDashboard/OrganizationDashboardMocks/README.md +++ /dev/null @@ -1,13 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / screens/OrganizationDashboard/OrganizationDashboardMocks - -# screens/OrganizationDashboard/OrganizationDashboardMocks - -## Variables - -- [EMPTY\_MOCKS](variables/EMPTY_MOCKS.md) -- [ERROR\_MOCKS](variables/ERROR_MOCKS.md) -- [MOCKS](variables/MOCKS.md) diff --git a/docs/docs/auto-docs/screens/OrganizationDashboard/OrganizationDashboardMocks/variables/EMPTY_MOCKS.md b/docs/docs/auto-docs/screens/OrganizationDashboard/OrganizationDashboardMocks/variables/EMPTY_MOCKS.md deleted file mode 100644 index df578664d0..0000000000 --- a/docs/docs/auto-docs/screens/OrganizationDashboard/OrganizationDashboardMocks/variables/EMPTY_MOCKS.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [screens/OrganizationDashboard/OrganizationDashboardMocks](../README.md) / EMPTY\_MOCKS - -# Variable: EMPTY\_MOCKS - -> `const` **EMPTY\_MOCKS**: (\{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `first`: `undefined`; `id`: `string`; `organization_id`: `undefined`; `orgId`: `undefined`; `where`: `undefined`; \}; \}; `result`: \{ `data`: \{ `eventsByOrganizationConnection`: `undefined`; `getVolunteerRanks`: `undefined`; `organizations`: `object`[]; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `first`: `number`; `id`: `string`; `organization_id`: `undefined`; `orgId`: `undefined`; `where`: `undefined`; \}; \}; `result`: \{ `data`: \{ `eventsByOrganizationConnection`: `undefined`; `getVolunteerRanks`: `undefined`; `organizations`: `object`[]; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `first`: `undefined`; `id`: `undefined`; `organization_id`: `string`; `orgId`: `undefined`; `where`: `undefined`; \}; \}; `result`: \{ `data`: \{ `eventsByOrganizationConnection`: `any`[]; `getVolunteerRanks`: `undefined`; `organizations`: `undefined`; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `first`: `undefined`; `id`: `undefined`; `organization_id`: `undefined`; `orgId`: `string`; `where`: \{ `limit`: `number`; `orderBy`: `string`; `timeFrame`: `string`; \}; \}; \}; `result`: \{ `data`: \{ `eventsByOrganizationConnection`: `undefined`; `getVolunteerRanks`: `any`[]; `organizations`: `undefined`; \}; \}; \})[] - -Defined in: [src/screens/OrganizationDashboard/OrganizationDashboardMocks.ts:329](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/OrganizationDashboard/OrganizationDashboardMocks.ts#L329) diff --git a/docs/docs/auto-docs/screens/OrganizationDashboard/OrganizationDashboardMocks/variables/ERROR_MOCKS.md b/docs/docs/auto-docs/screens/OrganizationDashboard/OrganizationDashboardMocks/variables/ERROR_MOCKS.md deleted file mode 100644 index 607de50fbd..0000000000 --- a/docs/docs/auto-docs/screens/OrganizationDashboard/OrganizationDashboardMocks/variables/ERROR_MOCKS.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [screens/OrganizationDashboard/OrganizationDashboardMocks](../README.md) / ERROR\_MOCKS - -# Variable: ERROR\_MOCKS - -> `const` **ERROR\_MOCKS**: (\{ `error`: `Error`; `request`: \{ `query`: `DocumentNode`; `variables`: \{ `first`: `undefined`; `id`: `string`; `organization_id`: `undefined`; `orgId`: `undefined`; `where`: `undefined`; \}; \}; \} \| \{ `error`: `Error`; `request`: \{ `query`: `DocumentNode`; `variables`: \{ `first`: `number`; `id`: `string`; `organization_id`: `undefined`; `orgId`: `undefined`; `where`: `undefined`; \}; \}; \} \| \{ `error`: `Error`; `request`: \{ `query`: `DocumentNode`; `variables`: \{ `first`: `undefined`; `id`: `undefined`; `organization_id`: `string`; `orgId`: `undefined`; `where`: `undefined`; \}; \}; \} \| \{ `error`: `Error`; `request`: \{ `query`: `DocumentNode`; `variables`: \{ `first`: `undefined`; `id`: `undefined`; `organization_id`: `undefined`; `orgId`: `string`; `where`: \{ `limit`: `number`; `orderBy`: `string`; `timeFrame`: `string`; \}; \}; \}; \})[] - -Defined in: [src/screens/OrganizationDashboard/OrganizationDashboardMocks.ts:448](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/OrganizationDashboard/OrganizationDashboardMocks.ts#L448) diff --git a/docs/docs/auto-docs/screens/OrganizationDashboard/OrganizationDashboardMocks/variables/MOCKS.md b/docs/docs/auto-docs/screens/OrganizationDashboard/OrganizationDashboardMocks/variables/MOCKS.md deleted file mode 100644 index 318e1f9709..0000000000 --- a/docs/docs/auto-docs/screens/OrganizationDashboard/OrganizationDashboardMocks/variables/MOCKS.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [screens/OrganizationDashboard/OrganizationDashboardMocks](../README.md) / MOCKS - -# Variable: MOCKS - -> `const` **MOCKS**: (\{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `first`: `undefined`; `id`: `string`; `organization_id`: `undefined`; `orgId`: `undefined`; `where`: `undefined`; \}; \}; `result`: \{ `data`: \{ `eventsByOrganizationConnection`: `undefined`; `getVolunteerRanks`: `undefined`; `organizations`: `object`[]; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `first`: `number`; `id`: `string`; `organization_id`: `undefined`; `orgId`: `undefined`; `where`: `undefined`; \}; \}; `result`: \{ `data`: \{ `eventsByOrganizationConnection`: `undefined`; `getVolunteerRanks`: `undefined`; `organizations`: `object`[]; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `first`: `undefined`; `id`: `undefined`; `organization_id`: `string`; `orgId`: `undefined`; `where`: `undefined`; \}; \}; `result`: \{ `data`: \{ `eventsByOrganizationConnection`: `object`[]; `getVolunteerRanks`: `undefined`; `organizations`: `undefined`; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `first`: `undefined`; `id`: `undefined`; `organization_id`: `undefined`; `orgId`: `string`; `where`: \{ `limit`: `number`; `orderBy`: `string`; `timeFrame`: `string`; \}; \}; \}; `result`: \{ `data`: \{ `eventsByOrganizationConnection`: `undefined`; `getVolunteerRanks`: `object`[]; `organizations`: `undefined`; \}; \}; \})[] - -Defined in: [src/screens/OrganizationDashboard/OrganizationDashboardMocks.ts:8](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/OrganizationDashboard/OrganizationDashboardMocks.ts#L8) diff --git a/docs/docs/auto-docs/screens/OrganizationEvents/OrganizationEvents/README.md b/docs/docs/auto-docs/screens/OrganizationEvents/OrganizationEvents/README.md deleted file mode 100644 index 9430947def..0000000000 --- a/docs/docs/auto-docs/screens/OrganizationEvents/OrganizationEvents/README.md +++ /dev/null @@ -1,15 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / screens/OrganizationEvents/OrganizationEvents - -# screens/OrganizationEvents/OrganizationEvents - -## Enumerations - -- [ViewType](enumerations/ViewType.md) - -## Functions - -- [default](functions/default.md) diff --git a/docs/docs/auto-docs/screens/OrganizationEvents/OrganizationEvents/enumerations/ViewType.md b/docs/docs/auto-docs/screens/OrganizationEvents/OrganizationEvents/enumerations/ViewType.md deleted file mode 100644 index 2d7cb2e94a..0000000000 --- a/docs/docs/auto-docs/screens/OrganizationEvents/OrganizationEvents/enumerations/ViewType.md +++ /dev/null @@ -1,33 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [screens/OrganizationEvents/OrganizationEvents](../README.md) / ViewType - -# Enumeration: ViewType - -Defined in: [src/screens/OrganizationEvents/OrganizationEvents.tsx:37](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/OrganizationEvents/OrganizationEvents.tsx#L37) - -## Enumeration Members - -### DAY - -> **DAY**: `"Day"` - -Defined in: [src/screens/OrganizationEvents/OrganizationEvents.tsx:38](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/OrganizationEvents/OrganizationEvents.tsx#L38) - -*** - -### MONTH - -> **MONTH**: `"Month View"` - -Defined in: [src/screens/OrganizationEvents/OrganizationEvents.tsx:39](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/OrganizationEvents/OrganizationEvents.tsx#L39) - -*** - -### YEAR - -> **YEAR**: `"Year View"` - -Defined in: [src/screens/OrganizationEvents/OrganizationEvents.tsx:40](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/OrganizationEvents/OrganizationEvents.tsx#L40) diff --git a/docs/docs/auto-docs/screens/OrganizationEvents/OrganizationEvents/functions/default.md b/docs/docs/auto-docs/screens/OrganizationEvents/OrganizationEvents/functions/default.md deleted file mode 100644 index f2fd42784a..0000000000 --- a/docs/docs/auto-docs/screens/OrganizationEvents/OrganizationEvents/functions/default.md +++ /dev/null @@ -1,27 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [screens/OrganizationEvents/OrganizationEvents](../README.md) / default - -# Function: default() - -> **default**(): `JSX.Element` - -Defined in: [src/screens/OrganizationEvents/OrganizationEvents.tsx:56](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/OrganizationEvents/OrganizationEvents.tsx#L56) - -Organization Events Page Component to display the events of an organization -and create new events for the organization by the admin or superadmin user. -The component uses the EventCalendar component to display the events and EventHeader component - to display the view type and create event button. - The component uses the RecurrenceOptions component to display the recurrence options for the event. - The component uses the CREATE_EVENT_MUTATION mutation to create a new event for the organization. - The component uses the ORGANIZATION_EVENT_CONNECTION_LIST and ORGANIZATIONS_LIST queries to fetch the events - and organization details. - The component uses the useLocalStorage hook to get the user details from the local storage. - -## Returns - -`JSX.Element` - -JSX.Element to display the Organization Events Page diff --git a/docs/docs/auto-docs/screens/OrganizationEvents/OrganizationEventsMocks/README.md b/docs/docs/auto-docs/screens/OrganizationEvents/OrganizationEventsMocks/README.md deleted file mode 100644 index 706082f1d8..0000000000 --- a/docs/docs/auto-docs/screens/OrganizationEvents/OrganizationEventsMocks/README.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / screens/OrganizationEvents/OrganizationEventsMocks - -# screens/OrganizationEvents/OrganizationEventsMocks - -## Variables - -- [MOCKS](variables/MOCKS.md) diff --git a/docs/docs/auto-docs/screens/OrganizationEvents/OrganizationEventsMocks/variables/MOCKS.md b/docs/docs/auto-docs/screens/OrganizationEvents/OrganizationEventsMocks/variables/MOCKS.md deleted file mode 100644 index f244738ea3..0000000000 --- a/docs/docs/auto-docs/screens/OrganizationEvents/OrganizationEventsMocks/variables/MOCKS.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [screens/OrganizationEvents/OrganizationEventsMocks](../README.md) / MOCKS - -# Variable: MOCKS - -> `const` **MOCKS**: (\{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `allDay`: `undefined`; `count`: `undefined`; `description`: `undefined`; `description_contains`: `string`; `endDate`: `undefined`; `endTime`: `undefined`; `frequency`: `undefined`; `interval`: `undefined`; `isPublic`: `undefined`; `isRegisterable`: `undefined`; `location`: `undefined`; `location_contains`: `string`; `organization_id`: `any`; `organizationId`: `undefined`; `recurrenceEndDate`: `undefined`; `recurrenceStartDate`: `undefined`; `recurring`: `undefined`; `startDate`: `undefined`; `startTime`: `undefined`; `title`: `undefined`; `title_contains`: `string`; `weekDayOccurenceInMonth`: `undefined`; `weekDays`: `undefined`; \}; \}; `result`: \{ `data`: \{ `createEvent`: `undefined`; `eventsByOrganizationConnection`: `object`[]; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `allDay`: `undefined`; `count`: `undefined`; `description`: `undefined`; `description_contains`: `string`; `endDate`: `undefined`; `endTime`: `undefined`; `frequency`: `undefined`; `interval`: `undefined`; `isPublic`: `undefined`; `isRegisterable`: `undefined`; `location`: `undefined`; `location_contains`: `string`; `organization_id`: `any`; `organizationId`: `undefined`; `recurrenceEndDate`: `undefined`; `recurrenceStartDate`: `undefined`; `recurring`: `undefined`; `startDate`: `undefined`; `startTime`: `undefined`; `title`: `undefined`; `title_contains`: `string`; `weekDayOccurenceInMonth`: `undefined`; `weekDays`: `undefined`; \}; \}; `result`: \{ `data`: \{ `createEvent`: `undefined`; `eventsByOrganizationConnection`: `object`[]; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `allDay`: `boolean`; `count`: `undefined`; `description`: `string`; `description_contains`: `undefined`; `endDate`: `string`; `endTime`: `undefined`; `frequency`: `undefined`; `interval`: `undefined`; `isPublic`: `boolean`; `isRegisterable`: `boolean`; `location`: `string`; `location_contains`: `undefined`; `organization_id`: `undefined`; `organizationId`: `any`; `recurrenceEndDate`: `undefined`; `recurrenceStartDate`: `undefined`; `recurring`: `boolean`; `startDate`: `string`; `startTime`: `undefined`; `title`: `string`; `title_contains`: `undefined`; `weekDayOccurenceInMonth`: `undefined`; `weekDays`: `undefined`; \}; \}; `result`: \{ `data`: \{ `createEvent`: \{ `_id`: `string`; \}; `eventsByOrganizationConnection`: `undefined`; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `allDay`: `boolean`; `count`: `undefined`; `description`: `string`; `description_contains`: `undefined`; `endDate`: `string`; `endTime`: `string`; `frequency`: `undefined`; `interval`: `undefined`; `isPublic`: `boolean`; `isRegisterable`: `boolean`; `location`: `string`; `location_contains`: `undefined`; `organization_id`: `undefined`; `organizationId`: `any`; `recurrenceEndDate`: `undefined`; `recurrenceStartDate`: `undefined`; `recurring`: `boolean`; `startDate`: `string`; `startTime`: `string`; `title`: `string`; `title_contains`: `undefined`; `weekDayOccurenceInMonth`: `undefined`; `weekDays`: `undefined`; \}; \}; `result`: \{ `data`: \{ `createEvent`: \{ `_id`: `string`; \}; `eventsByOrganizationConnection`: `undefined`; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `allDay`: `boolean`; `count`: `undefined`; `description`: `string`; `description_contains`: `undefined`; `endDate`: `string`; `endTime`: `string`; `frequency`: `string`; `interval`: `number`; `isPublic`: `boolean`; `isRegisterable`: `boolean`; `location`: `string`; `location_contains`: `undefined`; `organization_id`: `undefined`; `organizationId`: `any`; `recurrenceEndDate`: `any`; `recurrenceStartDate`: `string`; `recurring`: `boolean`; `startDate`: `string`; `startTime`: `string`; `title`: `string`; `title_contains`: `undefined`; `weekDayOccurenceInMonth`: `undefined`; `weekDays`: `undefined`; \}; \}; `result`: \{ `data`: \{ `createEvent`: \{ `_id`: `string`; \}; `eventsByOrganizationConnection`: `undefined`; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `allDay`: `boolean`; `count`: `undefined`; `description`: `string`; `description_contains`: `undefined`; `endDate`: `string`; `endTime`: `string`; `frequency`: `string`; `interval`: `number`; `isPublic`: `boolean`; `isRegisterable`: `boolean`; `location`: `string`; `location_contains`: `undefined`; `organization_id`: `undefined`; `organizationId`: `any`; `recurrenceEndDate`: `any`; `recurrenceStartDate`: `string`; `recurring`: `boolean`; `startDate`: `string`; `startTime`: `string`; `title`: `string`; `title_contains`: `undefined`; `weekDayOccurenceInMonth`: `undefined`; `weekDays`: `string`[]; \}; \}; `result`: \{ `data`: \{ `createEvent`: \{ `_id`: `string`; \}; `eventsByOrganizationConnection`: `undefined`; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `allDay`: `boolean`; `count`: `undefined`; `description`: `string`; `description_contains`: `undefined`; `endDate`: `string`; `endTime`: `undefined`; `frequency`: `string`; `interval`: `number`; `isPublic`: `boolean`; `isRegisterable`: `boolean`; `location`: `string`; `location_contains`: `undefined`; `organization_id`: `undefined`; `organizationId`: `any`; `recurrenceEndDate`: `string`; `recurrenceStartDate`: `string`; `recurring`: `boolean`; `startDate`: `string`; `startTime`: `undefined`; `title`: `string`; `title_contains`: `undefined`; `weekDayOccurenceInMonth`: `number`; `weekDays`: `string`[]; \}; \}; `result`: \{ `data`: \{ `createEvent`: \{ `_id`: `string`; \}; `eventsByOrganizationConnection`: `undefined`; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `allDay`: `boolean`; `count`: `number`; `description`: `string`; `description_contains`: `undefined`; `endDate`: `string`; `endTime`: `undefined`; `frequency`: `string`; `interval`: `number`; `isPublic`: `boolean`; `isRegisterable`: `boolean`; `location`: `string`; `location_contains`: `undefined`; `organization_id`: `undefined`; `organizationId`: `any`; `recurrenceEndDate`: `any`; `recurrenceStartDate`: `string`; `recurring`: `boolean`; `startDate`: `string`; `startTime`: `undefined`; `title`: `string`; `title_contains`: `undefined`; `weekDayOccurenceInMonth`: `undefined`; `weekDays`: `undefined`; \}; \}; `result`: \{ `data`: \{ `createEvent`: \{ `_id`: `string`; \}; `eventsByOrganizationConnection`: `undefined`; \}; \}; \})[] - -Defined in: [src/screens/OrganizationEvents/OrganizationEventsMocks.ts:4](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/OrganizationEvents/OrganizationEventsMocks.ts#L4) diff --git a/docs/docs/auto-docs/screens/OrganizationFundCampaign/CampaignModal/README.md b/docs/docs/auto-docs/screens/OrganizationFundCampaign/CampaignModal/README.md deleted file mode 100644 index e36d0fe887..0000000000 --- a/docs/docs/auto-docs/screens/OrganizationFundCampaign/CampaignModal/README.md +++ /dev/null @@ -1,15 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / screens/OrganizationFundCampaign/CampaignModal - -# screens/OrganizationFundCampaign/CampaignModal - -## Interfaces - -- [InterfaceCampaignModal](interfaces/InterfaceCampaignModal.md) - -## Functions - -- [default](functions/default.md) diff --git a/docs/docs/auto-docs/screens/OrganizationFundCampaign/CampaignModal/functions/default.md b/docs/docs/auto-docs/screens/OrganizationFundCampaign/CampaignModal/functions/default.md deleted file mode 100644 index d1984cbf3c..0000000000 --- a/docs/docs/auto-docs/screens/OrganizationFundCampaign/CampaignModal/functions/default.md +++ /dev/null @@ -1,37 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [screens/OrganizationFundCampaign/CampaignModal](../README.md) / default - -# Function: default() - -> **default**(`props`, `deprecatedLegacyContext`?): `ReactNode` - -Defined in: [src/screens/OrganizationFundCampaign/CampaignModal.tsx:44](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/OrganizationFundCampaign/CampaignModal.tsx#L44) - -Modal component for creating or editing a campaign. - -## Parameters - -### props - -[`InterfaceCampaignModal`](../interfaces/InterfaceCampaignModal.md) - -The props for the CampaignModal component. - -### deprecatedLegacyContext? - -`any` - -**Deprecated** - -**See** - -[React Docs](https://legacy.reactjs.org/docs/legacy-context.html#referencing-context-in-lifecycle-methods) - -## Returns - -`ReactNode` - -JSX.Element diff --git a/docs/docs/auto-docs/screens/OrganizationFundCampaign/CampaignModal/interfaces/InterfaceCampaignModal.md b/docs/docs/auto-docs/screens/OrganizationFundCampaign/CampaignModal/interfaces/InterfaceCampaignModal.md deleted file mode 100644 index dd22c32a70..0000000000 --- a/docs/docs/auto-docs/screens/OrganizationFundCampaign/CampaignModal/interfaces/InterfaceCampaignModal.md +++ /dev/null @@ -1,75 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [screens/OrganizationFundCampaign/CampaignModal](../README.md) / InterfaceCampaignModal - -# Interface: InterfaceCampaignModal - -Defined in: [src/screens/OrganizationFundCampaign/CampaignModal.tsx:28](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/OrganizationFundCampaign/CampaignModal.tsx#L28) - -Props for the CampaignModal component. - -## Properties - -### campaign - -> **campaign**: [`InterfaceCampaignInfo`](../../../../utils/interfaces/interfaces/InterfaceCampaignInfo.md) - -Defined in: [src/screens/OrganizationFundCampaign/CampaignModal.tsx:33](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/OrganizationFundCampaign/CampaignModal.tsx#L33) - -*** - -### fundId - -> **fundId**: `string` - -Defined in: [src/screens/OrganizationFundCampaign/CampaignModal.tsx:31](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/OrganizationFundCampaign/CampaignModal.tsx#L31) - -*** - -### hide() - -> **hide**: () => `void` - -Defined in: [src/screens/OrganizationFundCampaign/CampaignModal.tsx:30](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/OrganizationFundCampaign/CampaignModal.tsx#L30) - -#### Returns - -`void` - -*** - -### isOpen - -> **isOpen**: `boolean` - -Defined in: [src/screens/OrganizationFundCampaign/CampaignModal.tsx:29](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/OrganizationFundCampaign/CampaignModal.tsx#L29) - -*** - -### mode - -> **mode**: `"edit"` \| `"create"` - -Defined in: [src/screens/OrganizationFundCampaign/CampaignModal.tsx:35](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/OrganizationFundCampaign/CampaignModal.tsx#L35) - -*** - -### orgId - -> **orgId**: `string` - -Defined in: [src/screens/OrganizationFundCampaign/CampaignModal.tsx:32](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/OrganizationFundCampaign/CampaignModal.tsx#L32) - -*** - -### refetchCampaign() - -> **refetchCampaign**: () => `void` - -Defined in: [src/screens/OrganizationFundCampaign/CampaignModal.tsx:34](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/OrganizationFundCampaign/CampaignModal.tsx#L34) - -#### Returns - -`void` diff --git a/docs/docs/auto-docs/screens/OrganizationFundCampaign/OrganizationFundCampagins/README.md b/docs/docs/auto-docs/screens/OrganizationFundCampaign/OrganizationFundCampagins/README.md deleted file mode 100644 index abc8fb7652..0000000000 --- a/docs/docs/auto-docs/screens/OrganizationFundCampaign/OrganizationFundCampagins/README.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / screens/OrganizationFundCampaign/OrganizationFundCampagins - -# screens/OrganizationFundCampaign/OrganizationFundCampagins - -## Functions - -- [default](functions/default.md) diff --git a/docs/docs/auto-docs/screens/OrganizationFundCampaign/OrganizationFundCampagins/functions/default.md b/docs/docs/auto-docs/screens/OrganizationFundCampaign/OrganizationFundCampagins/functions/default.md deleted file mode 100644 index c767b96d4e..0000000000 --- a/docs/docs/auto-docs/screens/OrganizationFundCampaign/OrganizationFundCampagins/functions/default.md +++ /dev/null @@ -1,45 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [screens/OrganizationFundCampaign/OrganizationFundCampagins](../README.md) / default - -# Function: default() - -> **default**(): `Element` - -Defined in: [src/screens/OrganizationFundCampaign/OrganizationFundCampagins.tsx:78](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/OrganizationFundCampaign/OrganizationFundCampagins.tsx#L78) - -`orgFundCampaign` component displays a list of fundraising campaigns for a specific fund within an organization. -It allows users to search, sort, view and edit campaigns. - -### Functionality -- Displays a data grid with campaigns information, including their names, start and end dates, funding goals, and actions. -- Provides search functionality to filter campaigns by name. -- Offers sorting options based on funding goal and end date. -- Opens modals for creating or editing campaigns. - -### State -- `campaign`: The current campaign being edited or deleted. -- `searchTerm`: The term used for searching campaigns by name. -- `sortBy`: The current sorting criteria for campaigns. -- `modalState`: An object indicating the visibility of different modals (`same` for create/edit). -- `campaignModalMode`: Determines if the modal is in 'edit' or 'create' mode. - -### Methods -- `handleOpenModal(campaign: InterfaceCampaignInfo | null, mode: 'edit' | 'create')`: Opens the modal for creating or editing a campaign. -- `handleClick(campaignId: string)`: Navigates to the pledge details page for a specific campaign. - -### GraphQL Queries -- Uses `FUND_CAMPAIGN` query to fetch the list of campaigns based on the provided fund ID, search term, and sorting criteria. - -### Rendering -- Renders a `DataGrid` component with campaigns information. -- Displays modals for creating and editing campaigns. -- Shows error and loading states using `Loader` and error message components. - -## Returns - -`Element` - -The rendered component including breadcrumbs, search and filter controls, data grid, and modals. diff --git a/docs/docs/auto-docs/screens/OrganizationFundCampaign/OrganizationFundCampaignMocks/README.md b/docs/docs/auto-docs/screens/OrganizationFundCampaign/OrganizationFundCampaignMocks/README.md deleted file mode 100644 index a5f1934cd0..0000000000 --- a/docs/docs/auto-docs/screens/OrganizationFundCampaign/OrganizationFundCampaignMocks/README.md +++ /dev/null @@ -1,13 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / screens/OrganizationFundCampaign/OrganizationFundCampaignMocks - -# screens/OrganizationFundCampaign/OrganizationFundCampaignMocks - -## Variables - -- [EMPTY\_MOCKS](variables/EMPTY_MOCKS.md) -- [MOCK\_ERROR](variables/MOCK_ERROR.md) -- [MOCKS](variables/MOCKS.md) diff --git a/docs/docs/auto-docs/screens/OrganizationFundCampaign/OrganizationFundCampaignMocks/variables/EMPTY_MOCKS.md b/docs/docs/auto-docs/screens/OrganizationFundCampaign/OrganizationFundCampaignMocks/variables/EMPTY_MOCKS.md deleted file mode 100644 index f190100180..0000000000 --- a/docs/docs/auto-docs/screens/OrganizationFundCampaign/OrganizationFundCampaignMocks/variables/EMPTY_MOCKS.md +++ /dev/null @@ -1,65 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [screens/OrganizationFundCampaign/OrganizationFundCampaignMocks](../README.md) / EMPTY\_MOCKS - -# Variable: EMPTY\_MOCKS - -> `const` **EMPTY\_MOCKS**: `object`[] - -Defined in: [src/screens/OrganizationFundCampaign/OrganizationFundCampaignMocks.ts:300](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/OrganizationFundCampaign/OrganizationFundCampaignMocks.ts#L300) - -## Type declaration - -### request - -> **request**: `object` - -#### request.query - -> **query**: `DocumentNode` = `FUND_CAMPAIGN` - -#### request.variables - -> **variables**: `object` - -#### request.variables.id - -> **id**: `string` = `'fundId'` - -#### request.variables.orderBy - -> **orderBy**: `any` = `null` - -#### request.variables.where - -> **where**: `object` - -#### request.variables.where.name\_contains - -> **name\_contains**: `string` = `''` - -### result - -> **result**: `object` - -#### result.data - -> **data**: `object` - -#### result.data.getFundById - -> **getFundById**: `object` - -#### result.data.getFundById.campaigns - -> **campaigns**: `any`[] = `[]` - -#### result.data.getFundById.isArchived - -> **isArchived**: `boolean` = `false` - -#### result.data.getFundById.name - -> **name**: `string` = `'Fund 1'` diff --git a/docs/docs/auto-docs/screens/OrganizationFundCampaign/OrganizationFundCampaignMocks/variables/MOCKS.md b/docs/docs/auto-docs/screens/OrganizationFundCampaign/OrganizationFundCampaignMocks/variables/MOCKS.md deleted file mode 100644 index 1df96ec96e..0000000000 --- a/docs/docs/auto-docs/screens/OrganizationFundCampaign/OrganizationFundCampaignMocks/variables/MOCKS.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [screens/OrganizationFundCampaign/OrganizationFundCampaignMocks](../README.md) / MOCKS - -# Variable: MOCKS - -> `const` **MOCKS**: (\{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `currency`: `undefined`; `endDate`: `undefined`; `fundId`: `undefined`; `fundingGoal`: `undefined`; `id`: `string`; `name`: `undefined`; `orderBy`: `string`; `organizationId`: `undefined`; `startDate`: `undefined`; `where`: \{ `name_contains`: `string`; \}; \}; \}; `result`: \{ `data`: \{ `createFundraisingCampaign`: `undefined`; `getFundById`: \{ `campaigns`: `object`[]; `isArchived`: `boolean`; `name`: `string`; \}; `updateFundraisingCampaign`: `undefined`; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `currency`: `string`; `endDate`: `string`; `fundId`: `string`; `fundingGoal`: `number`; `id`: `undefined`; `name`: `string`; `orderBy`: `undefined`; `organizationId`: `string`; `startDate`: `string`; `where`: `undefined`; \}; \}; `result`: \{ `data`: \{ `createFundraisingCampaign`: \{ `_id`: `string`; \}; `getFundById`: `undefined`; `updateFundraisingCampaign`: `undefined`; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `currency`: `undefined`; `endDate`: `string`; `fundId`: `undefined`; `fundingGoal`: `number`; `id`: `string`; `name`: `string`; `orderBy`: `undefined`; `organizationId`: `undefined`; `startDate`: `string`; `where`: `undefined`; \}; \}; `result`: \{ `data`: \{ `createFundraisingCampaign`: `undefined`; `getFundById`: `undefined`; `updateFundraisingCampaign`: \{ `_id`: `string`; \}; \}; \}; \})[] - -Defined in: [src/screens/OrganizationFundCampaign/OrganizationFundCampaignMocks.ts:7](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/OrganizationFundCampaign/OrganizationFundCampaignMocks.ts#L7) diff --git a/docs/docs/auto-docs/screens/OrganizationFundCampaign/OrganizationFundCampaignMocks/variables/MOCK_ERROR.md b/docs/docs/auto-docs/screens/OrganizationFundCampaign/OrganizationFundCampaignMocks/variables/MOCK_ERROR.md deleted file mode 100644 index 5f963df065..0000000000 --- a/docs/docs/auto-docs/screens/OrganizationFundCampaign/OrganizationFundCampaignMocks/variables/MOCK_ERROR.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [screens/OrganizationFundCampaign/OrganizationFundCampaignMocks](../README.md) / MOCK\_ERROR - -# Variable: MOCK\_ERROR - -> `const` **MOCK\_ERROR**: (\{ `error`: `Error`; `request`: \{ `query`: `DocumentNode`; `variables`: \{ `currency`: `undefined`; `endDate`: `undefined`; `fundId`: `undefined`; `fundingGoal`: `undefined`; `id`: `string`; `name`: `undefined`; `orderBy`: `any`; `organizationId`: `undefined`; `startDate`: `undefined`; `where`: \{ `name_contains`: `string`; \}; \}; \}; \} \| \{ `error`: `Error`; `request`: \{ `query`: `DocumentNode`; `variables`: \{ `currency`: `string`; `endDate`: `string`; `fundId`: `string`; `fundingGoal`: `number`; `id`: `undefined`; `name`: `string`; `orderBy`: `undefined`; `organizationId`: `string`; `startDate`: `string`; `where`: `undefined`; \}; \}; \} \| \{ `error`: `Error`; `request`: \{ `query`: `DocumentNode`; `variables`: \{ `currency`: `undefined`; `endDate`: `string`; `fundId`: `undefined`; `fundingGoal`: `number`; `id`: `string`; `name`: `string`; `orderBy`: `undefined`; `organizationId`: `undefined`; `startDate`: `string`; `where`: `undefined`; \}; \}; \})[] - -Defined in: [src/screens/OrganizationFundCampaign/OrganizationFundCampaignMocks.ts:258](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/OrganizationFundCampaign/OrganizationFundCampaignMocks.ts#L258) diff --git a/docs/docs/auto-docs/screens/OrganizationFunds/FundModal/README.md b/docs/docs/auto-docs/screens/OrganizationFunds/FundModal/README.md deleted file mode 100644 index 02806e0e2b..0000000000 --- a/docs/docs/auto-docs/screens/OrganizationFunds/FundModal/README.md +++ /dev/null @@ -1,15 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / screens/OrganizationFunds/FundModal - -# screens/OrganizationFunds/FundModal - -## Interfaces - -- [InterfaceFundModal](interfaces/InterfaceFundModal.md) - -## Functions - -- [default](functions/default.md) diff --git a/docs/docs/auto-docs/screens/OrganizationFunds/FundModal/functions/default.md b/docs/docs/auto-docs/screens/OrganizationFunds/FundModal/functions/default.md deleted file mode 100644 index d932deab14..0000000000 --- a/docs/docs/auto-docs/screens/OrganizationFunds/FundModal/functions/default.md +++ /dev/null @@ -1,59 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [screens/OrganizationFunds/FundModal](../README.md) / default - -# Function: default() - -> **default**(`props`, `deprecatedLegacyContext`?): `ReactNode` - -Defined in: [src/screens/OrganizationFunds/FundModal.tsx:52](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/OrganizationFunds/FundModal.tsx#L52) - -`FundModal` component provides a modal dialog for creating or editing a fund. -It allows users to input fund details and submit them to the server. - -This component handles both the creation of new funds and the editing of existing funds, -based on the `mode` prop. It displays a form with fields for the fund's name, description, -and other relevant details. Upon submission, it interacts with the GraphQL API to save -or update the fund details and triggers a refetch of the fund data. - -### Props -- `isOpen`: A boolean indicating whether the modal is open or closed. -- `hide`: A function to close the modal. -- `refetchFunds`: A function to refetch the fund list after a successful operation. -- `fund`: The current fund object being edited or `null` if creating a new fund. -- `orgId`: The ID of the organization to which the fund belongs. -- `mode`: The mode of the modal, either 'edit' or 'create'. - -### State -- `name`: The name of the fund. -- `description`: The description of the fund. -- `amount`: The amount associated with the fund. -- `status`: The status of the fund (e.g., active, archived). - -### Methods -- `handleSubmit()`: Handles form submission, creates or updates the fund, and triggers a refetch of the fund list. -- `handleChange(event: React.ChangeEvent)`: Updates the state based on user input. - -## Parameters - -### props - -[`InterfaceFundModal`](../interfaces/InterfaceFundModal.md) - -### deprecatedLegacyContext? - -`any` - -**Deprecated** - -**See** - -[React Docs](https://legacy.reactjs.org/docs/legacy-context.html#referencing-context-in-lifecycle-methods) - -## Returns - -`ReactNode` - -The rendered modal dialog. diff --git a/docs/docs/auto-docs/screens/OrganizationFunds/FundModal/interfaces/InterfaceFundModal.md b/docs/docs/auto-docs/screens/OrganizationFunds/FundModal/interfaces/InterfaceFundModal.md deleted file mode 100644 index 320a281404..0000000000 --- a/docs/docs/auto-docs/screens/OrganizationFunds/FundModal/interfaces/InterfaceFundModal.md +++ /dev/null @@ -1,65 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [screens/OrganizationFunds/FundModal](../README.md) / InterfaceFundModal - -# Interface: InterfaceFundModal - -Defined in: [src/screens/OrganizationFunds/FundModal.tsx:15](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/OrganizationFunds/FundModal.tsx#L15) - -## Properties - -### fund - -> **fund**: [`InterfaceFundInfo`](../../../../utils/interfaces/interfaces/InterfaceFundInfo.md) - -Defined in: [src/screens/OrganizationFunds/FundModal.tsx:19](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/OrganizationFunds/FundModal.tsx#L19) - -*** - -### hide() - -> **hide**: () => `void` - -Defined in: [src/screens/OrganizationFunds/FundModal.tsx:17](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/OrganizationFunds/FundModal.tsx#L17) - -#### Returns - -`void` - -*** - -### isOpen - -> **isOpen**: `boolean` - -Defined in: [src/screens/OrganizationFunds/FundModal.tsx:16](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/OrganizationFunds/FundModal.tsx#L16) - -*** - -### mode - -> **mode**: `"edit"` \| `"create"` - -Defined in: [src/screens/OrganizationFunds/FundModal.tsx:21](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/OrganizationFunds/FundModal.tsx#L21) - -*** - -### orgId - -> **orgId**: `string` - -Defined in: [src/screens/OrganizationFunds/FundModal.tsx:20](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/OrganizationFunds/FundModal.tsx#L20) - -*** - -### refetchFunds() - -> **refetchFunds**: () => `void` - -Defined in: [src/screens/OrganizationFunds/FundModal.tsx:18](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/OrganizationFunds/FundModal.tsx#L18) - -#### Returns - -`void` diff --git a/docs/docs/auto-docs/screens/OrganizationFunds/OrganizationFunds/README.md b/docs/docs/auto-docs/screens/OrganizationFunds/OrganizationFunds/README.md deleted file mode 100644 index a719090f79..0000000000 --- a/docs/docs/auto-docs/screens/OrganizationFunds/OrganizationFunds/README.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / screens/OrganizationFunds/OrganizationFunds - -# screens/OrganizationFunds/OrganizationFunds - -## Functions - -- [default](functions/default.md) diff --git a/docs/docs/auto-docs/screens/OrganizationFunds/OrganizationFunds/functions/default.md b/docs/docs/auto-docs/screens/OrganizationFunds/OrganizationFunds/functions/default.md deleted file mode 100644 index a4d39d1b4e..0000000000 --- a/docs/docs/auto-docs/screens/OrganizationFunds/OrganizationFunds/functions/default.md +++ /dev/null @@ -1,48 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [screens/OrganizationFunds/OrganizationFunds](../README.md) / default - -# Function: default() - -> **default**(): `Element` - -Defined in: [src/screens/OrganizationFunds/OrganizationFunds.tsx:79](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/OrganizationFunds/OrganizationFunds.tsx#L79) - -`organizationFunds` component displays a list of funds for a specific organization, -allowing users to search, sort, view and edit funds. - -This component utilizes the `DataGrid` from Material-UI to present the list of funds in a tabular format, -and includes functionality for filtering and sorting. It also handles the opening and closing of modals -for creating and editing. - -It includes: -- A search input field to filter funds by name. -- A dropdown menu to sort funds by creation date. -- A button to create a new fund. -- A table to display the list of funds with columns for fund details and actions. -- Modals for creating and editing funds. - -### GraphQL Queries -- `FUND_LIST`: Fetches a list of funds for the given organization, filtered and sorted based on the provided parameters. - -### Props -- `orgId`: The ID of the organization whose funds are being managed. - -### State -- `fund`: The currently selected fund for editing or deletion. -- `searchTerm`: The current search term used for filtering funds. -- `sortBy`: The current sorting order for funds. -- `modalState`: The state of the modals (edit/create). -- `fundModalMode`: The mode of the fund modal (edit or create). - -### Methods -- `handleOpenModal(fund: InterfaceFundInfo | null, mode: 'edit' | 'create')`: Opens the fund modal with the given fund and mode. -- `handleClick(fundId: string)`: Navigates to the campaign page for the specified fund. - -## Returns - -`Element` - -The rendered component. diff --git a/docs/docs/auto-docs/screens/OrganizationFunds/OrganizationFundsMocks/README.md b/docs/docs/auto-docs/screens/OrganizationFunds/OrganizationFundsMocks/README.md deleted file mode 100644 index f62f2feafd..0000000000 --- a/docs/docs/auto-docs/screens/OrganizationFunds/OrganizationFundsMocks/README.md +++ /dev/null @@ -1,13 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / screens/OrganizationFunds/OrganizationFundsMocks - -# screens/OrganizationFunds/OrganizationFundsMocks - -## Variables - -- [MOCKS](variables/MOCKS.md) -- [MOCKS\_ERROR](variables/MOCKS_ERROR.md) -- [NO\_FUNDS](variables/NO_FUNDS.md) diff --git a/docs/docs/auto-docs/screens/OrganizationFunds/OrganizationFundsMocks/variables/MOCKS.md b/docs/docs/auto-docs/screens/OrganizationFunds/OrganizationFundsMocks/variables/MOCKS.md deleted file mode 100644 index 19b3f42844..0000000000 --- a/docs/docs/auto-docs/screens/OrganizationFunds/OrganizationFundsMocks/variables/MOCKS.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [screens/OrganizationFunds/OrganizationFundsMocks](../README.md) / MOCKS - -# Variable: MOCKS - -> `const` **MOCKS**: (\{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `filter`: `string`; `id`: `undefined`; `isArchived`: `undefined`; `isDefault`: `undefined`; `name`: `undefined`; `orderBy`: `string`; `organizationId`: `string`; `refrenceNumber`: `undefined`; `taxDeductible`: `undefined`; \}; \}; `result`: \{ `data`: \{ `createFund`: `undefined`; `fundsByOrganization`: `object`[]; `updateFund`: `undefined`; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `filter`: `undefined`; `id`: `undefined`; `isArchived`: `boolean`; `isDefault`: `boolean`; `name`: `string`; `orderBy`: `undefined`; `organizationId`: `string`; `refrenceNumber`: `string`; `taxDeductible`: `boolean`; \}; \}; `result`: \{ `data`: \{ `createFund`: \{ `_id`: `string`; \}; `fundsByOrganization`: `undefined`; `updateFund`: `undefined`; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `filter`: `undefined`; `id`: `string`; `isArchived`: `boolean`; `isDefault`: `boolean`; `name`: `string`; `orderBy`: `undefined`; `organizationId`: `undefined`; `refrenceNumber`: `string`; `taxDeductible`: `boolean`; \}; \}; `result`: \{ `data`: \{ `createFund`: `undefined`; `fundsByOrganization`: `undefined`; `updateFund`: \{ `_id`: `string`; \}; \}; \}; \})[] - -Defined in: [src/screens/OrganizationFunds/OrganizationFundsMocks.ts:7](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/OrganizationFunds/OrganizationFundsMocks.ts#L7) diff --git a/docs/docs/auto-docs/screens/OrganizationFunds/OrganizationFundsMocks/variables/MOCKS_ERROR.md b/docs/docs/auto-docs/screens/OrganizationFunds/OrganizationFundsMocks/variables/MOCKS_ERROR.md deleted file mode 100644 index 52cfa9a8b2..0000000000 --- a/docs/docs/auto-docs/screens/OrganizationFunds/OrganizationFundsMocks/variables/MOCKS_ERROR.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [screens/OrganizationFunds/OrganizationFundsMocks](../README.md) / MOCKS\_ERROR - -# Variable: MOCKS\_ERROR - -> `const` **MOCKS\_ERROR**: (\{ `error`: `Error`; `request`: \{ `query`: `DocumentNode`; `variables`: \{ `filter`: `string`; `id`: `undefined`; `isArchived`: `undefined`; `isDefault`: `undefined`; `name`: `undefined`; `orderBy`: `string`; `organizationId`: `string`; `refrenceNumber`: `undefined`; `taxDeductible`: `undefined`; \}; \}; \} \| \{ `error`: `Error`; `request`: \{ `query`: `DocumentNode`; `variables`: \{ `filter`: `undefined`; `id`: `undefined`; `isArchived`: `boolean`; `isDefault`: `boolean`; `name`: `string`; `orderBy`: `undefined`; `organizationId`: `string`; `refrenceNumber`: `string`; `taxDeductible`: `boolean`; \}; \}; \} \| \{ `error`: `Error`; `request`: \{ `query`: `DocumentNode`; `variables`: \{ `filter`: `undefined`; `id`: `string`; `isArchived`: `boolean`; `isDefault`: `boolean`; `name`: `string`; `orderBy`: `undefined`; `organizationId`: `undefined`; `refrenceNumber`: `string`; `taxDeductible`: `boolean`; \}; \}; \})[] - -Defined in: [src/screens/OrganizationFunds/OrganizationFundsMocks.ts:191](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/OrganizationFunds/OrganizationFundsMocks.ts#L191) diff --git a/docs/docs/auto-docs/screens/OrganizationFunds/OrganizationFundsMocks/variables/NO_FUNDS.md b/docs/docs/auto-docs/screens/OrganizationFunds/OrganizationFundsMocks/variables/NO_FUNDS.md deleted file mode 100644 index e02038be81..0000000000 --- a/docs/docs/auto-docs/screens/OrganizationFunds/OrganizationFundsMocks/variables/NO_FUNDS.md +++ /dev/null @@ -1,49 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [screens/OrganizationFunds/OrganizationFundsMocks](../README.md) / NO\_FUNDS - -# Variable: NO\_FUNDS - -> `const` **NO\_FUNDS**: `object`[] - -Defined in: [src/screens/OrganizationFunds/OrganizationFundsMocks.ts:173](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/OrganizationFunds/OrganizationFundsMocks.ts#L173) - -## Type declaration - -### request - -> **request**: `object` - -#### request.query - -> **query**: `DocumentNode` = `FUND_LIST` - -#### request.variables - -> **variables**: `object` - -#### request.variables.filter - -> **filter**: `string` = `''` - -#### request.variables.orderBy - -> **orderBy**: `string` = `'createdAt_DESC'` - -#### request.variables.organizationId - -> **organizationId**: `string` = `'orgId'` - -### result - -> **result**: `object` - -#### result.data - -> **data**: `object` - -#### result.data.fundsByOrganization - -> **fundsByOrganization**: `any`[] = `[]` diff --git a/docs/docs/auto-docs/screens/OrganizationPeople/AddMember/README.md b/docs/docs/auto-docs/screens/OrganizationPeople/AddMember/README.md deleted file mode 100644 index df9c166c1f..0000000000 --- a/docs/docs/auto-docs/screens/OrganizationPeople/AddMember/README.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / screens/OrganizationPeople/AddMember - -# screens/OrganizationPeople/AddMember - -## Functions - -- [default](functions/default.md) diff --git a/docs/docs/auto-docs/screens/OrganizationPeople/AddMember/functions/default.md b/docs/docs/auto-docs/screens/OrganizationPeople/AddMember/functions/default.md deleted file mode 100644 index 379041b661..0000000000 --- a/docs/docs/auto-docs/screens/OrganizationPeople/AddMember/functions/default.md +++ /dev/null @@ -1,23 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [screens/OrganizationPeople/AddMember](../README.md) / default - -# Function: default() - -> **default**(): `JSX.Element` - -Defined in: [src/screens/OrganizationPeople/AddMember.tsx:62](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/OrganizationPeople/AddMember.tsx#L62) - -AddMember component is used to add new members to the organization by selecting from -the existing users or creating a new user. -It uses the following queries and mutations: - ORGANIZATIONS_LIST, - ORGANIZATIONS_MEMBER_CONNECTION_LIST, - USERS_CONNECTION_LIST, - ADD_MEMBER_MUTATION,SIGNUP_MUTATION. - -## Returns - -`JSX.Element` diff --git a/docs/docs/auto-docs/screens/OrganizationPeople/MockDataTypes/README.md b/docs/docs/auto-docs/screens/OrganizationPeople/MockDataTypes/README.md deleted file mode 100644 index 361f573582..0000000000 --- a/docs/docs/auto-docs/screens/OrganizationPeople/MockDataTypes/README.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / screens/OrganizationPeople/MockDataTypes - -# screens/OrganizationPeople/MockDataTypes - -## Type Aliases - -- [TestMock](type-aliases/TestMock.md) diff --git a/docs/docs/auto-docs/screens/OrganizationPeople/MockDataTypes/type-aliases/TestMock.md b/docs/docs/auto-docs/screens/OrganizationPeople/MockDataTypes/type-aliases/TestMock.md deleted file mode 100644 index 334cece0f2..0000000000 --- a/docs/docs/auto-docs/screens/OrganizationPeople/MockDataTypes/type-aliases/TestMock.md +++ /dev/null @@ -1,153 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [screens/OrganizationPeople/MockDataTypes](../README.md) / TestMock - -# Type Alias: TestMock - -> **TestMock**: `object` - -Defined in: [src/screens/OrganizationPeople/MockDataTypes.ts:34](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/OrganizationPeople/MockDataTypes.ts#L34) - -## Type declaration - -### newData()? - -> `optional` **newData**: () => [`TestMock`](TestMock.md)\[`"result"`\] - -#### Returns - -[`TestMock`](TestMock.md)\[`"result"`\] - -### request - -> **request**: `object` - -#### request.query - -> **query**: `DocumentNode` - -#### request.variables - -> **variables**: `object` - -#### request.variables.email? - -> `optional` **email**: `string` - -#### request.variables.firstName? - -> `optional` **firstName**: `string` - -#### request.variables.firstName\_contains? - -> `optional` **firstName\_contains**: `string` - -#### request.variables.firstNameContains? - -> `optional` **firstNameContains**: `string` - -#### request.variables.id? - -> `optional` **id**: `string` - -#### request.variables.id\_not\_in? - -> `optional` **id\_not\_in**: `string`[] - -#### request.variables.lastName? - -> `optional` **lastName**: `string` - -#### request.variables.lastName\_contains? - -> `optional` **lastName\_contains**: `string` - -#### request.variables.lastNameContains? - -> `optional` **lastNameContains**: `string` - -#### request.variables.orgid? - -> `optional` **orgid**: `string` - -#### request.variables.orgId? - -> `optional` **orgId**: `string` - -#### request.variables.password? - -> `optional` **password**: `string` - -#### request.variables.userid? - -> `optional` **userid**: `string` - -### result - -> **result**: `object` - -#### result.\_\_typename? - -> `optional` **\_\_typename**: `string` - -#### result.data - -> **data**: `object` - -#### result.data.\_\_typename? - -> `optional` **\_\_typename**: `string` - -#### result.data.createMember? - -> `optional` **createMember**: `object` - -#### result.data.createMember.\_\_typename - -> **\_\_typename**: `string` - -#### result.data.createMember.\_id - -> **\_id**: `string` - -#### result.data.organizations? - -> `optional` **organizations**: [`InterfaceQueryOrganizationsListObject`](../../../../utils/interfaces/interfaces/InterfaceQueryOrganizationsListObject.md)[] - -#### result.data.organizationsMemberConnection? - -> `optional` **organizationsMemberConnection**: `object` - -#### result.data.organizationsMemberConnection.edges? - -> `optional` **edges**: `Edge`[] - -#### result.data.organizationsMemberConnection.user? - -> `optional` **user**: `Edge`[] - -#### result.data.signUp? - -> `optional` **signUp**: `object` - -#### result.data.signUp.accessToken? - -> `optional` **accessToken**: `string` - -#### result.data.signUp.refreshToken? - -> `optional` **refreshToken**: `string` - -#### result.data.signUp.user? - -> `optional` **user**: `object` - -#### result.data.signUp.user.\_id - -> **\_id**: `string` - -#### result.data.users? - -> `optional` **users**: `object`[] diff --git a/docs/docs/auto-docs/screens/OrganizationPeople/OrganizationPeople/README.md b/docs/docs/auto-docs/screens/OrganizationPeople/OrganizationPeople/README.md deleted file mode 100644 index 77578fc43c..0000000000 --- a/docs/docs/auto-docs/screens/OrganizationPeople/OrganizationPeople/README.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / screens/OrganizationPeople/OrganizationPeople - -# screens/OrganizationPeople/OrganizationPeople - -## Functions - -- [default](functions/default.md) diff --git a/docs/docs/auto-docs/screens/OrganizationPeople/OrganizationPeople/functions/default.md b/docs/docs/auto-docs/screens/OrganizationPeople/OrganizationPeople/functions/default.md deleted file mode 100644 index 1a6aeb22ad..0000000000 --- a/docs/docs/auto-docs/screens/OrganizationPeople/OrganizationPeople/functions/default.md +++ /dev/null @@ -1,21 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [screens/OrganizationPeople/OrganizationPeople](../README.md) / default - -# Function: default() - -> **default**(): `JSX.Element` - -Defined in: [src/screens/OrganizationPeople/OrganizationPeople.tsx:31](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/OrganizationPeople/OrganizationPeople.tsx#L31) - -OrganizationPeople component is used to display the list of members, admins and users of the organization. -It also provides the functionality to search the members, admins and users by their full name. -It also provides the functionality to remove the members and admins from the organization. - -## Returns - -`JSX.Element` - -JSX.Element which contains the list of members, admins and users of the organization. diff --git a/docs/docs/auto-docs/screens/OrganizationTags/OrganizationTags/README.md b/docs/docs/auto-docs/screens/OrganizationTags/OrganizationTags/README.md deleted file mode 100644 index baa960732c..0000000000 --- a/docs/docs/auto-docs/screens/OrganizationTags/OrganizationTags/README.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / screens/OrganizationTags/OrganizationTags - -# screens/OrganizationTags/OrganizationTags - -## Functions - -- [default](functions/default.md) diff --git a/docs/docs/auto-docs/screens/OrganizationTags/OrganizationTags/functions/default.md b/docs/docs/auto-docs/screens/OrganizationTags/OrganizationTags/functions/default.md deleted file mode 100644 index 3c1370996d..0000000000 --- a/docs/docs/auto-docs/screens/OrganizationTags/OrganizationTags/functions/default.md +++ /dev/null @@ -1,20 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [screens/OrganizationTags/OrganizationTags](../README.md) / default - -# Function: default() - -> **default**(): `JSX.Element` - -Defined in: [src/screens/OrganizationTags/OrganizationTags.tsx:39](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/OrganizationTags/OrganizationTags.tsx#L39) - -Component that renders the Organization Tags screen when the app navigates to '/orgtags/:orgId'. - -This component does not accept any props and is responsible for displaying -the content associated with the corresponding route. - -## Returns - -`JSX.Element` diff --git a/docs/docs/auto-docs/screens/OrganizationTags/OrganizationTagsMocks/README.md b/docs/docs/auto-docs/screens/OrganizationTags/OrganizationTagsMocks/README.md deleted file mode 100644 index 493d797555..0000000000 --- a/docs/docs/auto-docs/screens/OrganizationTags/OrganizationTagsMocks/README.md +++ /dev/null @@ -1,12 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / screens/OrganizationTags/OrganizationTagsMocks - -# screens/OrganizationTags/OrganizationTagsMocks - -## Variables - -- [MOCKS](variables/MOCKS.md) -- [MOCKS\_ERROR](variables/MOCKS_ERROR.md) diff --git a/docs/docs/auto-docs/screens/OrganizationTags/OrganizationTagsMocks/variables/MOCKS.md b/docs/docs/auto-docs/screens/OrganizationTags/OrganizationTagsMocks/variables/MOCKS.md deleted file mode 100644 index c09878f1c2..0000000000 --- a/docs/docs/auto-docs/screens/OrganizationTags/OrganizationTagsMocks/variables/MOCKS.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [screens/OrganizationTags/OrganizationTagsMocks](../README.md) / MOCKS - -# Variable: MOCKS - -> `const` **MOCKS**: (\{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `after`: `string`; `first`: `number`; `id`: `string`; `name`: `undefined`; `organizationId`: `undefined`; `sortedBy`: \{ `id`: `string`; \}; `where`: \{ `name`: \{ `starts_with`: `string`; \}; \}; \}; \}; `result`: \{ `data`: \{ `createUserTag`: `undefined`; `organizations`: `object`[]; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `after`: `undefined`; `first`: `number`; `id`: `string`; `name`: `undefined`; `organizationId`: `undefined`; `sortedBy`: \{ `id`: `string`; \}; `where`: \{ `name`: \{ `starts_with`: `string`; \}; \}; \}; \}; `result`: \{ `data`: \{ `createUserTag`: `undefined`; `organizations`: `object`[]; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `after`: `undefined`; `first`: `undefined`; `id`: `undefined`; `name`: `string`; `organizationId`: `string`; `sortedBy`: `undefined`; `where`: `undefined`; \}; \}; `result`: \{ `data`: \{ `createUserTag`: \{ `_id`: `string`; \}; `organizations`: `undefined`; \}; \}; \})[] - -Defined in: [src/screens/OrganizationTags/OrganizationTagsMocks.ts:5](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/OrganizationTags/OrganizationTagsMocks.ts#L5) diff --git a/docs/docs/auto-docs/screens/OrganizationTags/OrganizationTagsMocks/variables/MOCKS_ERROR.md b/docs/docs/auto-docs/screens/OrganizationTags/OrganizationTagsMocks/variables/MOCKS_ERROR.md deleted file mode 100644 index 00a2cdf2e5..0000000000 --- a/docs/docs/auto-docs/screens/OrganizationTags/OrganizationTagsMocks/variables/MOCKS_ERROR.md +++ /dev/null @@ -1,57 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [screens/OrganizationTags/OrganizationTagsMocks](../README.md) / MOCKS\_ERROR - -# Variable: MOCKS\_ERROR - -> `const` **MOCKS\_ERROR**: `object`[] - -Defined in: [src/screens/OrganizationTags/OrganizationTagsMocks.ts:413](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/OrganizationTags/OrganizationTagsMocks.ts#L413) - -## Type declaration - -### error - -> **error**: `Error` - -### request - -> **request**: `object` - -#### request.query - -> **query**: `DocumentNode` = `ORGANIZATION_USER_TAGS_LIST` - -#### request.variables - -> **variables**: `object` - -#### request.variables.first - -> **first**: `number` = `TAGS_QUERY_DATA_CHUNK_SIZE` - -#### request.variables.id - -> **id**: `string` = `'orgId'` - -#### request.variables.sortedBy - -> **sortedBy**: `object` - -#### request.variables.sortedBy.id - -> **id**: `string` = `'DESCENDING'` - -#### request.variables.where - -> **where**: `object` - -#### request.variables.where.name - -> **name**: `object` - -#### request.variables.where.name.starts\_with - -> **starts\_with**: `string` = `''` diff --git a/docs/docs/auto-docs/screens/OrganizationVenues/OrganizationVenues/README.md b/docs/docs/auto-docs/screens/OrganizationVenues/OrganizationVenues/README.md deleted file mode 100644 index dfc4287d24..0000000000 --- a/docs/docs/auto-docs/screens/OrganizationVenues/OrganizationVenues/README.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / screens/OrganizationVenues/OrganizationVenues - -# screens/OrganizationVenues/OrganizationVenues - -## Functions - -- [default](functions/default.md) diff --git a/docs/docs/auto-docs/screens/OrganizationVenues/OrganizationVenues/functions/default.md b/docs/docs/auto-docs/screens/OrganizationVenues/OrganizationVenues/functions/default.md deleted file mode 100644 index 7ed9e5ef03..0000000000 --- a/docs/docs/auto-docs/screens/OrganizationVenues/OrganizationVenues/functions/default.md +++ /dev/null @@ -1,18 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [screens/OrganizationVenues/OrganizationVenues](../README.md) / default - -# Function: default() - -> **default**(): `JSX.Element` - -Defined in: [src/screens/OrganizationVenues/OrganizationVenues.tsx:23](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/OrganizationVenues/OrganizationVenues.tsx#L23) - -Component to manage and display the list of organization venues. -Handles searching, sorting, and CRUD operations for venues. - -## Returns - -`JSX.Element` diff --git a/docs/docs/auto-docs/screens/PageNotFound/PageNotFound/README.md b/docs/docs/auto-docs/screens/PageNotFound/PageNotFound/README.md deleted file mode 100644 index 429e758991..0000000000 --- a/docs/docs/auto-docs/screens/PageNotFound/PageNotFound/README.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / screens/PageNotFound/PageNotFound - -# screens/PageNotFound/PageNotFound - -## Functions - -- [default](functions/default.md) diff --git a/docs/docs/auto-docs/screens/PageNotFound/PageNotFound/functions/default.md b/docs/docs/auto-docs/screens/PageNotFound/PageNotFound/functions/default.md deleted file mode 100644 index 2afaa42125..0000000000 --- a/docs/docs/auto-docs/screens/PageNotFound/PageNotFound/functions/default.md +++ /dev/null @@ -1,19 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [screens/PageNotFound/PageNotFound](../README.md) / default - -# Function: default() - -> **default**(): `Element` - -Defined in: [src/screens/PageNotFound/PageNotFound.tsx:15](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/PageNotFound/PageNotFound.tsx#L15) - -The `PageNotFound` component displays a 404 error page when a user navigates to a non-existent route. -It shows a message indicating that the page was not found and provides a link to redirect users back -to the appropriate home page based on their admin status. - -## Returns - -`Element` diff --git a/docs/docs/auto-docs/screens/Requests/Requests/README.md b/docs/docs/auto-docs/screens/Requests/Requests/README.md deleted file mode 100644 index b20e72c1ef..0000000000 --- a/docs/docs/auto-docs/screens/Requests/Requests/README.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / screens/Requests/Requests - -# screens/Requests/Requests - -## Functions - -- [default](functions/default.md) diff --git a/docs/docs/auto-docs/screens/Requests/Requests/functions/default.md b/docs/docs/auto-docs/screens/Requests/Requests/functions/default.md deleted file mode 100644 index b35509f275..0000000000 --- a/docs/docs/auto-docs/screens/Requests/Requests/functions/default.md +++ /dev/null @@ -1,18 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [screens/Requests/Requests](../README.md) / default - -# Function: default() - -> **default**(): `Element` - -Defined in: [src/screens/Requests/Requests.tsx:34](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/Requests/Requests.tsx#L34) - -The `Requests` component fetches and displays a paginated list of membership requests -for an organization, with functionality for searching, filtering, and infinite scrolling. - -## Returns - -`Element` diff --git a/docs/docs/auto-docs/screens/Requests/RequestsMocks/README.md b/docs/docs/auto-docs/screens/Requests/RequestsMocks/README.md deleted file mode 100644 index c463ae9308..0000000000 --- a/docs/docs/auto-docs/screens/Requests/RequestsMocks/README.md +++ /dev/null @@ -1,17 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / screens/Requests/RequestsMocks - -# screens/Requests/RequestsMocks - -## Variables - -- [EMPTY\_MOCKS](variables/EMPTY_MOCKS.md) -- [EMPTY\_REQUEST\_MOCKS](variables/EMPTY_REQUEST_MOCKS.md) -- [MOCKS](variables/MOCKS.md) -- [MOCKS\_WITH\_ERROR](variables/MOCKS_WITH_ERROR.md) -- [MOCKS2](variables/MOCKS2.md) -- [MOCKS3](variables/MOCKS3.md) -- [MOCKS4](variables/MOCKS4.md) diff --git a/docs/docs/auto-docs/screens/Requests/RequestsMocks/variables/EMPTY_MOCKS.md b/docs/docs/auto-docs/screens/Requests/RequestsMocks/variables/EMPTY_MOCKS.md deleted file mode 100644 index 25504e9875..0000000000 --- a/docs/docs/auto-docs/screens/Requests/RequestsMocks/variables/EMPTY_MOCKS.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [screens/Requests/RequestsMocks](../README.md) / EMPTY\_MOCKS - -# Variable: EMPTY\_MOCKS - -> `const` **EMPTY\_MOCKS**: (\{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `first`: `number`; `firstName_contains`: `string`; `id`: `string`; `skip`: `number`; \}; \}; `result`: \{ `data`: \{ `organizations`: `object`[]; `organizationsConnection`: `undefined`; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: `undefined`; \}; `result`: \{ `data`: \{ `organizations`: `undefined`; `organizationsConnection`: `any`[]; \}; \}; \})[] - -Defined in: [src/screens/Requests/RequestsMocks.ts:522](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/Requests/RequestsMocks.ts#L522) diff --git a/docs/docs/auto-docs/screens/Requests/RequestsMocks/variables/EMPTY_REQUEST_MOCKS.md b/docs/docs/auto-docs/screens/Requests/RequestsMocks/variables/EMPTY_REQUEST_MOCKS.md deleted file mode 100644 index d50347d4c5..0000000000 --- a/docs/docs/auto-docs/screens/Requests/RequestsMocks/variables/EMPTY_REQUEST_MOCKS.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [screens/Requests/RequestsMocks](../README.md) / EMPTY\_REQUEST\_MOCKS - -# Variable: EMPTY\_REQUEST\_MOCKS - -> `const` **EMPTY\_REQUEST\_MOCKS**: (\{ `request`: \{ `query`: `DocumentNode`; `variables`: `undefined`; \}; `result`: \{ `data`: \{ `organizations`: `undefined`; `organizationsConnection`: `object`[]; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `first`: `number`; `firstName_contains`: `string`; `id`: `string`; `skip`: `number`; \}; \}; `result`: \{ `data`: \{ `organizations`: `object`[]; `organizationsConnection`: `undefined`; \}; \}; \})[] - -Defined in: [src/screens/Requests/RequestsMocks.ts:6](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/Requests/RequestsMocks.ts#L6) diff --git a/docs/docs/auto-docs/screens/Requests/RequestsMocks/variables/MOCKS.md b/docs/docs/auto-docs/screens/Requests/RequestsMocks/variables/MOCKS.md deleted file mode 100644 index 3cdf4c651b..0000000000 --- a/docs/docs/auto-docs/screens/Requests/RequestsMocks/variables/MOCKS.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [screens/Requests/RequestsMocks](../README.md) / MOCKS - -# Variable: MOCKS - -> `const` **MOCKS**: (\{ `request`: \{ `query`: `DocumentNode`; `variables`: `undefined`; \}; `result`: \{ `data`: \{ `organizations`: `undefined`; `organizationsConnection`: `object`[]; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `first`: `number`; `firstName_contains`: `string`; `id`: `string`; `skip`: `number`; \}; \}; `result`: \{ `data`: \{ `organizations`: `object`[]; `organizationsConnection`: `undefined`; \}; \}; \})[] - -Defined in: [src/screens/Requests/RequestsMocks.ts:71](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/Requests/RequestsMocks.ts#L71) diff --git a/docs/docs/auto-docs/screens/Requests/RequestsMocks/variables/MOCKS2.md b/docs/docs/auto-docs/screens/Requests/RequestsMocks/variables/MOCKS2.md deleted file mode 100644 index 211b0c2c62..0000000000 --- a/docs/docs/auto-docs/screens/Requests/RequestsMocks/variables/MOCKS2.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [screens/Requests/RequestsMocks](../README.md) / MOCKS2 - -# Variable: MOCKS2 - -> `const` **MOCKS2**: (\{ `request`: \{ `query`: `DocumentNode`; `variables`: `undefined`; \}; `result`: \{ `data`: \{ `organizations`: `undefined`; `organizationsConnection`: `object`[]; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `first`: `number`; `firstName_contains`: `string`; `id`: `string`; `skip`: `number`; \}; \}; `result`: \{ `data`: \{ `organizations`: `object`[]; `organizationsConnection`: `undefined`; \}; \}; \})[] - -Defined in: [src/screens/Requests/RequestsMocks.ts:387](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/Requests/RequestsMocks.ts#L387) diff --git a/docs/docs/auto-docs/screens/Requests/RequestsMocks/variables/MOCKS3.md b/docs/docs/auto-docs/screens/Requests/RequestsMocks/variables/MOCKS3.md deleted file mode 100644 index a3337791f9..0000000000 --- a/docs/docs/auto-docs/screens/Requests/RequestsMocks/variables/MOCKS3.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [screens/Requests/RequestsMocks](../README.md) / MOCKS3 - -# Variable: MOCKS3 - -> `const` **MOCKS3**: (\{ `request`: \{ `query`: `DocumentNode`; `variables`: `undefined`; \}; `result`: \{ `data`: \{ `organizations`: `undefined`; `organizationsConnection`: `object`[]; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `first`: `number`; `firstName_contains`: `string`; `id`: `string`; `skip`: `number`; \}; \}; `result`: \{ `data`: \{ `organizations`: `any`[]; `organizationsConnection`: `undefined`; \}; \}; \})[] - -Defined in: [src/screens/Requests/RequestsMocks.ts:462](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/Requests/RequestsMocks.ts#L462) diff --git a/docs/docs/auto-docs/screens/Requests/RequestsMocks/variables/MOCKS4.md b/docs/docs/auto-docs/screens/Requests/RequestsMocks/variables/MOCKS4.md deleted file mode 100644 index abd2c813bf..0000000000 --- a/docs/docs/auto-docs/screens/Requests/RequestsMocks/variables/MOCKS4.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [screens/Requests/RequestsMocks](../README.md) / MOCKS4 - -# Variable: MOCKS4 - -> `const` **MOCKS4**: (\{ `request`: \{ `query`: `DocumentNode`; `variables`: `undefined`; \}; `result`: \{ `data`: \{ `organizations`: `undefined`; `organizationsConnection`: `object`[]; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `first`: `number`; `firstName_contains`: `string`; `id`: `string`; `skip`: `number`; \}; \}; `result`: \{ `data`: \{ `organizations`: `object`[]; `organizationsConnection`: `undefined`; \}; \}; \})[] - -Defined in: [src/screens/Requests/RequestsMocks.ts:155](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/Requests/RequestsMocks.ts#L155) diff --git a/docs/docs/auto-docs/screens/Requests/RequestsMocks/variables/MOCKS_WITH_ERROR.md b/docs/docs/auto-docs/screens/Requests/RequestsMocks/variables/MOCKS_WITH_ERROR.md deleted file mode 100644 index 0ba6939aea..0000000000 --- a/docs/docs/auto-docs/screens/Requests/RequestsMocks/variables/MOCKS_WITH_ERROR.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [screens/Requests/RequestsMocks](../README.md) / MOCKS\_WITH\_ERROR - -# Variable: MOCKS\_WITH\_ERROR - -> `const` **MOCKS\_WITH\_ERROR**: (\{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `first`: `number`; `firstName_contains`: `string`; `id`: `string`; `skip`: `number`; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: `undefined`; \}; \})[] - -Defined in: [src/screens/Requests/RequestsMocks.ts:556](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/Requests/RequestsMocks.ts#L556) diff --git a/docs/docs/auto-docs/screens/SubTags/SubTags/README.md b/docs/docs/auto-docs/screens/SubTags/SubTags/README.md deleted file mode 100644 index 37ac77a0df..0000000000 --- a/docs/docs/auto-docs/screens/SubTags/SubTags/README.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / screens/SubTags/SubTags - -# screens/SubTags/SubTags - -## Functions - -- [default](functions/default.md) diff --git a/docs/docs/auto-docs/screens/SubTags/SubTags/functions/default.md b/docs/docs/auto-docs/screens/SubTags/SubTags/functions/default.md deleted file mode 100644 index dae63d53f4..0000000000 --- a/docs/docs/auto-docs/screens/SubTags/SubTags/functions/default.md +++ /dev/null @@ -1,20 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [screens/SubTags/SubTags](../README.md) / default - -# Function: default() - -> **default**(): `JSX.Element` - -Defined in: [src/screens/SubTags/SubTags.tsx:40](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/SubTags/SubTags.tsx#L40) - -Component that renders the SubTags screen when the app navigates to '/orgtags/:orgId/subtags/:tagId'. - -This component does not accept any props and is responsible for displaying -the content associated with the corresponding route. - -## Returns - -`JSX.Element` diff --git a/docs/docs/auto-docs/screens/SubTags/SubTagsMocks/README.md b/docs/docs/auto-docs/screens/SubTags/SubTagsMocks/README.md deleted file mode 100644 index 1d55807317..0000000000 --- a/docs/docs/auto-docs/screens/SubTags/SubTagsMocks/README.md +++ /dev/null @@ -1,12 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / screens/SubTags/SubTagsMocks - -# screens/SubTags/SubTagsMocks - -## Variables - -- [MOCKS](variables/MOCKS.md) -- [MOCKS\_ERROR\_SUB\_TAGS](variables/MOCKS_ERROR_SUB_TAGS.md) diff --git a/docs/docs/auto-docs/screens/SubTags/SubTagsMocks/variables/MOCKS.md b/docs/docs/auto-docs/screens/SubTags/SubTagsMocks/variables/MOCKS.md deleted file mode 100644 index a8a8b058ad..0000000000 --- a/docs/docs/auto-docs/screens/SubTags/SubTagsMocks/variables/MOCKS.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [screens/SubTags/SubTagsMocks](../README.md) / MOCKS - -# Variable: MOCKS - -> `const` **MOCKS**: (\{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `after`: `string`; `first`: `number`; `id`: `string`; `name`: `undefined`; `organizationId`: `undefined`; `parentTagId`: `undefined`; `sortedBy`: \{ `id`: `string`; \}; `where`: \{ `name`: \{ `starts_with`: `string`; \}; \}; \}; \}; `result`: \{ `data`: \{ `createUserTag`: `undefined`; `getChildTags`: \{ `ancestorTags`: `any`[]; `childTags`: \{ `edges`: `object`[]; `pageInfo`: \{ `endCursor`: `string`; `hasNextPage`: `boolean`; `hasPreviousPage`: `boolean`; `startCursor`: `string`; \}; `totalCount`: `number`; \}; `name`: `string`; \}; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `after`: `undefined`; `first`: `number`; `id`: `string`; `name`: `undefined`; `organizationId`: `undefined`; `parentTagId`: `undefined`; `sortedBy`: \{ `id`: `string`; \}; `where`: \{ `name`: \{ `starts_with`: `string`; \}; \}; \}; \}; `result`: \{ `data`: \{ `createUserTag`: `undefined`; `getChildTags`: \{ `ancestorTags`: `object`[]; `childTags`: \{ `edges`: `object`[]; `pageInfo`: \{ `endCursor`: `string`; `hasNextPage`: `boolean`; `hasPreviousPage`: `boolean`; `startCursor`: `string`; \}; `totalCount`: `number`; \}; `name`: `string`; \}; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `after`: `undefined`; `first`: `undefined`; `id`: `undefined`; `name`: `string`; `organizationId`: `string`; `parentTagId`: `string`; `sortedBy`: `undefined`; `where`: `undefined`; \}; \}; `result`: \{ `data`: \{ `createUserTag`: \{ `_id`: `string`; \}; `getChildTags`: `undefined`; \}; \}; \})[] - -Defined in: [src/screens/SubTags/SubTagsMocks.ts:5](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/SubTags/SubTagsMocks.ts#L5) diff --git a/docs/docs/auto-docs/screens/SubTags/SubTagsMocks/variables/MOCKS_ERROR_SUB_TAGS.md b/docs/docs/auto-docs/screens/SubTags/SubTagsMocks/variables/MOCKS_ERROR_SUB_TAGS.md deleted file mode 100644 index 836fac8173..0000000000 --- a/docs/docs/auto-docs/screens/SubTags/SubTagsMocks/variables/MOCKS_ERROR_SUB_TAGS.md +++ /dev/null @@ -1,57 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [screens/SubTags/SubTagsMocks](../README.md) / MOCKS\_ERROR\_SUB\_TAGS - -# Variable: MOCKS\_ERROR\_SUB\_TAGS - -> `const` **MOCKS\_ERROR\_SUB\_TAGS**: `object`[] - -Defined in: [src/screens/SubTags/SubTagsMocks.ts:489](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/SubTags/SubTagsMocks.ts#L489) - -## Type declaration - -### error - -> **error**: `Error` - -### request - -> **request**: `object` - -#### request.query - -> **query**: `DocumentNode` = `USER_TAG_SUB_TAGS` - -#### request.variables - -> **variables**: `object` - -#### request.variables.first - -> **first**: `number` = `TAGS_QUERY_DATA_CHUNK_SIZE` - -#### request.variables.id - -> **id**: `string` = `'1'` - -#### request.variables.sortedBy - -> **sortedBy**: `object` - -#### request.variables.sortedBy.id - -> **id**: `string` = `'DESCENDING'` - -#### request.variables.where - -> **where**: `object` - -#### request.variables.where.name - -> **name**: `object` - -#### request.variables.where.name.starts\_with - -> **starts\_with**: `string` = `''` diff --git a/docs/docs/auto-docs/screens/UserPortal/Campaigns/Campaigns/README.md b/docs/docs/auto-docs/screens/UserPortal/Campaigns/Campaigns/README.md deleted file mode 100644 index 5807835f4b..0000000000 --- a/docs/docs/auto-docs/screens/UserPortal/Campaigns/Campaigns/README.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / screens/UserPortal/Campaigns/Campaigns - -# screens/UserPortal/Campaigns/Campaigns - -## Functions - -- [default](functions/default.md) diff --git a/docs/docs/auto-docs/screens/UserPortal/Campaigns/Campaigns/functions/default.md b/docs/docs/auto-docs/screens/UserPortal/Campaigns/Campaigns/functions/default.md deleted file mode 100644 index bf3c864c0a..0000000000 --- a/docs/docs/auto-docs/screens/UserPortal/Campaigns/Campaigns/functions/default.md +++ /dev/null @@ -1,20 +0,0 @@ -[**talawa-admin**](../../../../../README.md) - -*** - -[talawa-admin](../../../../../modules.md) / [screens/UserPortal/Campaigns/Campaigns](../README.md) / default - -# Function: default() - -> **default**(): `Element` - -Defined in: [src/screens/UserPortal/Campaigns/Campaigns.tsx:30](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/UserPortal/Campaigns/Campaigns.tsx#L30) - -The `Campaigns` component displays a list of fundraising campaigns for a specific organization. -It allows users to search, sort, and view details about each campaign. Users can also add pledges to active campaigns. - -## Returns - -`Element` - -The rendered component displaying the campaigns. diff --git a/docs/docs/auto-docs/screens/UserPortal/Campaigns/CampaignsMocks/README.md b/docs/docs/auto-docs/screens/UserPortal/Campaigns/CampaignsMocks/README.md deleted file mode 100644 index ca2d8df243..0000000000 --- a/docs/docs/auto-docs/screens/UserPortal/Campaigns/CampaignsMocks/README.md +++ /dev/null @@ -1,13 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / screens/UserPortal/Campaigns/CampaignsMocks - -# screens/UserPortal/Campaigns/CampaignsMocks - -## Variables - -- [EMPTY\_MOCKS](variables/EMPTY_MOCKS.md) -- [MOCKS](variables/MOCKS.md) -- [USER\_FUND\_CAMPAIGNS\_ERROR](variables/USER_FUND_CAMPAIGNS_ERROR.md) diff --git a/docs/docs/auto-docs/screens/UserPortal/Campaigns/CampaignsMocks/variables/EMPTY_MOCKS.md b/docs/docs/auto-docs/screens/UserPortal/Campaigns/CampaignsMocks/variables/EMPTY_MOCKS.md deleted file mode 100644 index cda21be513..0000000000 --- a/docs/docs/auto-docs/screens/UserPortal/Campaigns/CampaignsMocks/variables/EMPTY_MOCKS.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../../README.md) - -*** - -[talawa-admin](../../../../../modules.md) / [screens/UserPortal/Campaigns/CampaignsMocks](../README.md) / EMPTY\_MOCKS - -# Variable: EMPTY\_MOCKS - -> `const` **EMPTY\_MOCKS**: (\{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `id`: `string`; \}; \}; `result`: \{ `data`: \{ `user`: \{ `__typename`: `string`; `appUserProfile`: \{ `__typename`: `string`; `_id`: `string`; `adminFor`: `any`[]; `appLanguageCode`: `string`; `createdEvents`: `any`[]; `createdOrganizations`: `any`[]; `eventAdmin`: `any`[]; `isSuperAdmin`: `boolean`; `pluginCreationAllowed`: `boolean`; \}; `user`: \{ `__typename`: `string`; `_id`: `string`; `address`: \{ `__typename`: `string`; `city`: `string`; `countryCode`: `string`; `line1`: `string`; `state`: `string`; \}; `birthDate`: `any`; `createdAt`: `string`; `educationGrade`: `any`; `email`: `string`; `employmentStatus`: `any`; `firstName`: `string`; `gender`: `any`; `image`: `any`; `joinedOrganizations`: `object`[]; `lastName`: `string`; `maritalStatus`: `any`; `membershipRequests`: `any`[]; `phone`: `any`; `registeredEvents`: `any`[]; \}; \}; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `campaignOrderBy`: `string`; `where`: \{ `name_contains`: `string`; `organizationId`: `string`; \}; \}; \}; `result`: \{ `data`: \{ `getFundraisingCampaigns`: `any`[]; \}; \}; \})[] - -Defined in: [src/screens/UserPortal/Campaigns/CampaignsMocks.ts:236](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/UserPortal/Campaigns/CampaignsMocks.ts#L236) diff --git a/docs/docs/auto-docs/screens/UserPortal/Campaigns/CampaignsMocks/variables/MOCKS.md b/docs/docs/auto-docs/screens/UserPortal/Campaigns/CampaignsMocks/variables/MOCKS.md deleted file mode 100644 index 7795f3d2b2..0000000000 --- a/docs/docs/auto-docs/screens/UserPortal/Campaigns/CampaignsMocks/variables/MOCKS.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../../README.md) - -*** - -[talawa-admin](../../../../../modules.md) / [screens/UserPortal/Campaigns/CampaignsMocks](../README.md) / MOCKS - -# Variable: MOCKS - -> `const` **MOCKS**: (\{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `id`: `string`; \}; \}; `result`: \{ `data`: \{ `user`: \{ `__typename`: `string`; `appUserProfile`: \{ `__typename`: `string`; `_id`: `string`; `adminFor`: `any`[]; `appLanguageCode`: `string`; `createdEvents`: `any`[]; `createdOrganizations`: `any`[]; `eventAdmin`: `any`[]; `isSuperAdmin`: `boolean`; `pluginCreationAllowed`: `boolean`; \}; `user`: \{ `__typename`: `string`; `_id`: `string`; `address`: \{ `__typename`: `string`; `city`: `string`; `countryCode`: `string`; `line1`: `string`; `state`: `string`; \}; `birthDate`: `any`; `createdAt`: `string`; `educationGrade`: `any`; `email`: `string`; `employmentStatus`: `any`; `firstName`: `string`; `gender`: `any`; `image`: `any`; `joinedOrganizations`: `object`[]; `lastName`: `string`; `maritalStatus`: `any`; `membershipRequests`: `any`[]; `phone`: `any`; `registeredEvents`: `any`[]; \}; \}; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `campaignOrderBy`: `string`; `where`: \{ `name_contains`: `string`; `organizationId`: `string`; \}; \}; \}; `result`: \{ `data`: \{ `getFundraisingCampaigns`: `object`[]; \}; \}; \})[] - -Defined in: [src/screens/UserPortal/Campaigns/CampaignsMocks.ts:61](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/UserPortal/Campaigns/CampaignsMocks.ts#L61) diff --git a/docs/docs/auto-docs/screens/UserPortal/Campaigns/CampaignsMocks/variables/USER_FUND_CAMPAIGNS_ERROR.md b/docs/docs/auto-docs/screens/UserPortal/Campaigns/CampaignsMocks/variables/USER_FUND_CAMPAIGNS_ERROR.md deleted file mode 100644 index 7f54b8547b..0000000000 --- a/docs/docs/auto-docs/screens/UserPortal/Campaigns/CampaignsMocks/variables/USER_FUND_CAMPAIGNS_ERROR.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../../README.md) - -*** - -[talawa-admin](../../../../../modules.md) / [screens/UserPortal/Campaigns/CampaignsMocks](../README.md) / USER\_FUND\_CAMPAIGNS\_ERROR - -# Variable: USER\_FUND\_CAMPAIGNS\_ERROR - -> `const` **USER\_FUND\_CAMPAIGNS\_ERROR**: (\{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `id`: `string`; \}; \}; `result`: \{ `data`: \{ `user`: \{ `__typename`: `string`; `appUserProfile`: \{ `__typename`: `string`; `_id`: `string`; `adminFor`: `any`[]; `appLanguageCode`: `string`; `createdEvents`: `any`[]; `createdOrganizations`: `any`[]; `eventAdmin`: `any`[]; `isSuperAdmin`: `boolean`; `pluginCreationAllowed`: `boolean`; \}; `user`: \{ `__typename`: `string`; `_id`: `string`; `address`: \{ `__typename`: `string`; `city`: `string`; `countryCode`: `string`; `line1`: `string`; `state`: `string`; \}; `birthDate`: `any`; `createdAt`: `string`; `educationGrade`: `any`; `email`: `string`; `employmentStatus`: `any`; `firstName`: `string`; `gender`: `any`; `image`: `any`; `joinedOrganizations`: `object`[]; `lastName`: `string`; `maritalStatus`: `any`; `membershipRequests`: `any`[]; `phone`: `any`; `registeredEvents`: `any`[]; \}; \}; \}; \}; \} \| \{ `error`: `Error`; `request`: \{ `query`: `DocumentNode`; `variables`: \{ `campaignOrderBy`: `string`; `where`: \{ `name_contains`: `string`; `organizationId`: `string`; \}; \}; \}; \})[] - -Defined in: [src/screens/UserPortal/Campaigns/CampaignsMocks.ts:257](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/UserPortal/Campaigns/CampaignsMocks.ts#L257) diff --git a/docs/docs/auto-docs/screens/UserPortal/Campaigns/PledgeModal/README.md b/docs/docs/auto-docs/screens/UserPortal/Campaigns/PledgeModal/README.md deleted file mode 100644 index ab50791109..0000000000 --- a/docs/docs/auto-docs/screens/UserPortal/Campaigns/PledgeModal/README.md +++ /dev/null @@ -1,15 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / screens/UserPortal/Campaigns/PledgeModal - -# screens/UserPortal/Campaigns/PledgeModal - -## Interfaces - -- [InterfacePledgeModal](interfaces/InterfacePledgeModal.md) - -## Functions - -- [default](functions/default.md) diff --git a/docs/docs/auto-docs/screens/UserPortal/Campaigns/PledgeModal/functions/default.md b/docs/docs/auto-docs/screens/UserPortal/Campaigns/PledgeModal/functions/default.md deleted file mode 100644 index a64f690ba0..0000000000 --- a/docs/docs/auto-docs/screens/UserPortal/Campaigns/PledgeModal/functions/default.md +++ /dev/null @@ -1,34 +0,0 @@ -[**talawa-admin**](../../../../../README.md) - -*** - -[talawa-admin](../../../../../modules.md) / [screens/UserPortal/Campaigns/PledgeModal](../README.md) / default - -# Function: default() - -> **default**(`props`, `deprecatedLegacyContext`?): `ReactNode` - -Defined in: [src/screens/UserPortal/Campaigns/PledgeModal.tsx:54](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/UserPortal/Campaigns/PledgeModal.tsx#L54) - -`PledgeModal` is a React component that allows users to create or edit a pledge for a specific campaign. -It displays a form with inputs for pledge details such as amount, currency, dates, and users involved in the pledge. - -## Parameters - -### props - -[`InterfacePledgeModal`](../interfaces/InterfacePledgeModal.md) - -### deprecatedLegacyContext? - -`any` - -**Deprecated** - -**See** - -[React Docs](https://legacy.reactjs.org/docs/legacy-context.html#referencing-context-in-lifecycle-methods) - -## Returns - -`ReactNode` diff --git a/docs/docs/auto-docs/screens/UserPortal/Campaigns/PledgeModal/interfaces/InterfacePledgeModal.md b/docs/docs/auto-docs/screens/UserPortal/Campaigns/PledgeModal/interfaces/InterfacePledgeModal.md deleted file mode 100644 index ee1e76a4d4..0000000000 --- a/docs/docs/auto-docs/screens/UserPortal/Campaigns/PledgeModal/interfaces/InterfacePledgeModal.md +++ /dev/null @@ -1,83 +0,0 @@ -[**talawa-admin**](../../../../../README.md) - -*** - -[talawa-admin](../../../../../modules.md) / [screens/UserPortal/Campaigns/PledgeModal](../README.md) / InterfacePledgeModal - -# Interface: InterfacePledgeModal - -Defined in: [src/screens/UserPortal/Campaigns/PledgeModal.tsx:30](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/UserPortal/Campaigns/PledgeModal.tsx#L30) - -Interface representing the properties for the `PledgeModal` component. - -## Properties - -### campaignId - -> **campaignId**: `string` - -Defined in: [src/screens/UserPortal/Campaigns/PledgeModal.tsx:33](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/UserPortal/Campaigns/PledgeModal.tsx#L33) - -*** - -### endDate - -> **endDate**: `Date` - -Defined in: [src/screens/UserPortal/Campaigns/PledgeModal.tsx:37](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/UserPortal/Campaigns/PledgeModal.tsx#L37) - -*** - -### hide() - -> **hide**: () => `void` - -Defined in: [src/screens/UserPortal/Campaigns/PledgeModal.tsx:32](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/UserPortal/Campaigns/PledgeModal.tsx#L32) - -#### Returns - -`void` - -*** - -### isOpen - -> **isOpen**: `boolean` - -Defined in: [src/screens/UserPortal/Campaigns/PledgeModal.tsx:31](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/UserPortal/Campaigns/PledgeModal.tsx#L31) - -*** - -### mode - -> **mode**: `"edit"` \| `"create"` - -Defined in: [src/screens/UserPortal/Campaigns/PledgeModal.tsx:38](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/UserPortal/Campaigns/PledgeModal.tsx#L38) - -*** - -### pledge - -> **pledge**: [`InterfacePledgeInfo`](../../../../../utils/interfaces/interfaces/InterfacePledgeInfo.md) - -Defined in: [src/screens/UserPortal/Campaigns/PledgeModal.tsx:35](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/UserPortal/Campaigns/PledgeModal.tsx#L35) - -*** - -### refetchPledge() - -> **refetchPledge**: () => `void` - -Defined in: [src/screens/UserPortal/Campaigns/PledgeModal.tsx:36](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/UserPortal/Campaigns/PledgeModal.tsx#L36) - -#### Returns - -`void` - -*** - -### userId - -> **userId**: `string` - -Defined in: [src/screens/UserPortal/Campaigns/PledgeModal.tsx:34](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/UserPortal/Campaigns/PledgeModal.tsx#L34) diff --git a/docs/docs/auto-docs/screens/UserPortal/Chat/Chat/README.md b/docs/docs/auto-docs/screens/UserPortal/Chat/Chat/README.md deleted file mode 100644 index 00e857bbad..0000000000 --- a/docs/docs/auto-docs/screens/UserPortal/Chat/Chat/README.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / screens/UserPortal/Chat/Chat - -# screens/UserPortal/Chat/Chat - -## Functions - -- [default](functions/default.md) diff --git a/docs/docs/auto-docs/screens/UserPortal/Chat/Chat/functions/default.md b/docs/docs/auto-docs/screens/UserPortal/Chat/Chat/functions/default.md deleted file mode 100644 index 4034afa231..0000000000 --- a/docs/docs/auto-docs/screens/UserPortal/Chat/Chat/functions/default.md +++ /dev/null @@ -1,15 +0,0 @@ -[**talawa-admin**](../../../../../README.md) - -*** - -[talawa-admin](../../../../../modules.md) / [screens/UserPortal/Chat/Chat](../README.md) / default - -# Function: default() - -> **default**(): `JSX.Element` - -Defined in: [src/screens/UserPortal/Chat/Chat.tsx:102](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/UserPortal/Chat/Chat.tsx#L102) - -## Returns - -`JSX.Element` diff --git a/docs/docs/auto-docs/screens/UserPortal/Donate/Donate/README.md b/docs/docs/auto-docs/screens/UserPortal/Donate/Donate/README.md deleted file mode 100644 index fa9bf0a12b..0000000000 --- a/docs/docs/auto-docs/screens/UserPortal/Donate/Donate/README.md +++ /dev/null @@ -1,15 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / screens/UserPortal/Donate/Donate - -# screens/UserPortal/Donate/Donate - -## Interfaces - -- [InterfaceDonationCardProps](interfaces/InterfaceDonationCardProps.md) - -## Functions - -- [default](functions/default.md) diff --git a/docs/docs/auto-docs/screens/UserPortal/Donate/Donate/functions/default.md b/docs/docs/auto-docs/screens/UserPortal/Donate/Donate/functions/default.md deleted file mode 100644 index 7e48010ac4..0000000000 --- a/docs/docs/auto-docs/screens/UserPortal/Donate/Donate/functions/default.md +++ /dev/null @@ -1,38 +0,0 @@ -[**talawa-admin**](../../../../../README.md) - -*** - -[talawa-admin](../../../../../modules.md) / [screens/UserPortal/Donate/Donate](../README.md) / default - -# Function: default() - -> **default**(): `JSX.Element` - -Defined in: [src/screens/UserPortal/Donate/Donate.tsx:65](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/UserPortal/Donate/Donate.tsx#L65) - -`donate` component allows users to make donations to an organization and view their previous donations. - -This component fetches donation-related data using GraphQL queries and allows users to make donations -using a mutation. It supports currency selection, donation amount input, and displays a paginated list -of previous donations. - -It includes: -- An input field for searching donations. -- A dropdown to select currency. -- An input field for entering donation amount. -- A button to submit the donation. -- A list of previous donations displayed in a paginated format. -- An organization sidebar for navigation. - -### GraphQL Queries -- `ORGANIZATION_DONATION_CONNECTION_LIST`: Fetches the list of donations for the organization. -- `USER_ORGANIZATION_CONNECTION`: Fetches organization details. - -### GraphQL Mutations -- `DONATE_TO_ORGANIZATION`: Performs the donation action. - -## Returns - -`JSX.Element` - -The rendered component. diff --git a/docs/docs/auto-docs/screens/UserPortal/Donate/Donate/interfaces/InterfaceDonationCardProps.md b/docs/docs/auto-docs/screens/UserPortal/Donate/Donate/interfaces/InterfaceDonationCardProps.md deleted file mode 100644 index 6466fdf5f2..0000000000 --- a/docs/docs/auto-docs/screens/UserPortal/Donate/Donate/interfaces/InterfaceDonationCardProps.md +++ /dev/null @@ -1,57 +0,0 @@ -[**talawa-admin**](../../../../../README.md) - -*** - -[talawa-admin](../../../../../modules.md) / [screens/UserPortal/Donate/Donate](../README.md) / InterfaceDonationCardProps - -# Interface: InterfaceDonationCardProps - -Defined in: [src/screens/UserPortal/Donate/Donate.tsx:23](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/UserPortal/Donate/Donate.tsx#L23) - -## Properties - -### amount - -> **amount**: `string` - -Defined in: [src/screens/UserPortal/Donate/Donate.tsx:26](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/UserPortal/Donate/Donate.tsx#L26) - -*** - -### id - -> **id**: `string` - -Defined in: [src/screens/UserPortal/Donate/Donate.tsx:24](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/UserPortal/Donate/Donate.tsx#L24) - -*** - -### name - -> **name**: `string` - -Defined in: [src/screens/UserPortal/Donate/Donate.tsx:25](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/UserPortal/Donate/Donate.tsx#L25) - -*** - -### payPalId - -> **payPalId**: `string` - -Defined in: [src/screens/UserPortal/Donate/Donate.tsx:28](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/UserPortal/Donate/Donate.tsx#L28) - -*** - -### updatedAt - -> **updatedAt**: `string` - -Defined in: [src/screens/UserPortal/Donate/Donate.tsx:29](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/UserPortal/Donate/Donate.tsx#L29) - -*** - -### userId - -> **userId**: `string` - -Defined in: [src/screens/UserPortal/Donate/Donate.tsx:27](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/UserPortal/Donate/Donate.tsx#L27) diff --git a/docs/docs/auto-docs/screens/UserPortal/Events/Events/README.md b/docs/docs/auto-docs/screens/UserPortal/Events/Events/README.md deleted file mode 100644 index b2d99da6f3..0000000000 --- a/docs/docs/auto-docs/screens/UserPortal/Events/Events/README.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / screens/UserPortal/Events/Events - -# screens/UserPortal/Events/Events - -## Functions - -- [default](functions/default.md) diff --git a/docs/docs/auto-docs/screens/UserPortal/Events/Events/functions/default.md b/docs/docs/auto-docs/screens/UserPortal/Events/Events/functions/default.md deleted file mode 100644 index 8932dd6bc6..0000000000 --- a/docs/docs/auto-docs/screens/UserPortal/Events/Events/functions/default.md +++ /dev/null @@ -1,22 +0,0 @@ -[**talawa-admin**](../../../../../README.md) - -*** - -[talawa-admin](../../../../../modules.md) / [screens/UserPortal/Events/Events](../README.md) / default - -# Function: default() - -> **default**(): `JSX.Element` - -Defined in: [src/screens/UserPortal/Events/Events.tsx:43](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/UserPortal/Events/Events.tsx#L43) - -Component to manage and display events for an organization. - -This component allows users to view, create, and manage events within an organization. -It includes a calendar view, a form to create new events, and various filters and settings. - -## Returns - -`JSX.Element` - -The JSX element for the events management interface. diff --git a/docs/docs/auto-docs/screens/UserPortal/LeaveOrganization/LeaveOrganization/README.md b/docs/docs/auto-docs/screens/UserPortal/LeaveOrganization/LeaveOrganization/README.md deleted file mode 100644 index 62ef0a8db2..0000000000 --- a/docs/docs/auto-docs/screens/UserPortal/LeaveOrganization/LeaveOrganization/README.md +++ /dev/null @@ -1,16 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / screens/UserPortal/LeaveOrganization/LeaveOrganization - -# screens/UserPortal/LeaveOrganization/LeaveOrganization - -## Variables - -- [userEmail](variables/userEmail.md) -- [userId](variables/userId.md) - -## Functions - -- [default](functions/default.md) diff --git a/docs/docs/auto-docs/screens/UserPortal/LeaveOrganization/LeaveOrganization/functions/default.md b/docs/docs/auto-docs/screens/UserPortal/LeaveOrganization/LeaveOrganization/functions/default.md deleted file mode 100644 index 1048326ac6..0000000000 --- a/docs/docs/auto-docs/screens/UserPortal/LeaveOrganization/LeaveOrganization/functions/default.md +++ /dev/null @@ -1,15 +0,0 @@ -[**talawa-admin**](../../../../../README.md) - -*** - -[talawa-admin](../../../../../modules.md) / [screens/UserPortal/LeaveOrganization/LeaveOrganization](../README.md) / default - -# Function: default() - -> **default**(): `Element` - -Defined in: [src/screens/UserPortal/LeaveOrganization/LeaveOrganization.tsx:32](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/UserPortal/LeaveOrganization/LeaveOrganization.tsx#L32) - -## Returns - -`Element` diff --git a/docs/docs/auto-docs/screens/UserPortal/LeaveOrganization/LeaveOrganization/variables/userEmail.md b/docs/docs/auto-docs/screens/UserPortal/LeaveOrganization/LeaveOrganization/variables/userEmail.md deleted file mode 100644 index fbb51fdce9..0000000000 --- a/docs/docs/auto-docs/screens/UserPortal/LeaveOrganization/LeaveOrganization/variables/userEmail.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../../README.md) - -*** - -[talawa-admin](../../../../../modules.md) / [screens/UserPortal/LeaveOrganization/LeaveOrganization](../README.md) / userEmail - -# Variable: userEmail - -> `const` **userEmail**: `any` - -Defined in: [src/screens/UserPortal/LeaveOrganization/LeaveOrganization.tsx:13](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/UserPortal/LeaveOrganization/LeaveOrganization.tsx#L13) diff --git a/docs/docs/auto-docs/screens/UserPortal/LeaveOrganization/LeaveOrganization/variables/userId.md b/docs/docs/auto-docs/screens/UserPortal/LeaveOrganization/LeaveOrganization/variables/userId.md deleted file mode 100644 index efe04fb2db..0000000000 --- a/docs/docs/auto-docs/screens/UserPortal/LeaveOrganization/LeaveOrganization/variables/userId.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../../README.md) - -*** - -[talawa-admin](../../../../../modules.md) / [screens/UserPortal/LeaveOrganization/LeaveOrganization](../README.md) / userId - -# Variable: userId - -> `const` **userId**: `any` - -Defined in: [src/screens/UserPortal/LeaveOrganization/LeaveOrganization.tsx:21](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/UserPortal/LeaveOrganization/LeaveOrganization.tsx#L21) diff --git a/docs/docs/auto-docs/screens/UserPortal/Organizations/Organizations/README.md b/docs/docs/auto-docs/screens/UserPortal/Organizations/Organizations/README.md deleted file mode 100644 index 01e01664f8..0000000000 --- a/docs/docs/auto-docs/screens/UserPortal/Organizations/Organizations/README.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / screens/UserPortal/Organizations/Organizations - -# screens/UserPortal/Organizations/Organizations - -## Functions - -- [default](functions/default.md) diff --git a/docs/docs/auto-docs/screens/UserPortal/Organizations/Organizations/functions/default.md b/docs/docs/auto-docs/screens/UserPortal/Organizations/Organizations/functions/default.md deleted file mode 100644 index 61fc2aa836..0000000000 --- a/docs/docs/auto-docs/screens/UserPortal/Organizations/Organizations/functions/default.md +++ /dev/null @@ -1,17 +0,0 @@ -[**talawa-admin**](../../../../../README.md) - -*** - -[talawa-admin](../../../../../modules.md) / [screens/UserPortal/Organizations/Organizations](../README.md) / default - -# Function: default() - -> **default**(): `JSX.Element` - -Defined in: [src/screens/UserPortal/Organizations/Organizations.tsx:76](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/UserPortal/Organizations/Organizations.tsx#L76) - -Component for displaying and managing user organizations. - -## Returns - -`JSX.Element` diff --git a/docs/docs/auto-docs/screens/UserPortal/People/People/README.md b/docs/docs/auto-docs/screens/UserPortal/People/People/README.md deleted file mode 100644 index f2a032d34f..0000000000 --- a/docs/docs/auto-docs/screens/UserPortal/People/People/README.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / screens/UserPortal/People/People - -# screens/UserPortal/People/People - -## Functions - -- [default](functions/default.md) diff --git a/docs/docs/auto-docs/screens/UserPortal/People/People/functions/default.md b/docs/docs/auto-docs/screens/UserPortal/People/People/functions/default.md deleted file mode 100644 index afe5c5143c..0000000000 --- a/docs/docs/auto-docs/screens/UserPortal/People/People/functions/default.md +++ /dev/null @@ -1,19 +0,0 @@ -[**talawa-admin**](../../../../../README.md) - -*** - -[talawa-admin](../../../../../modules.md) / [screens/UserPortal/People/People](../README.md) / default - -# Function: default() - -> **default**(): `JSX.Element` - -Defined in: [src/screens/UserPortal/People/People.tsx:39](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/UserPortal/People/People.tsx#L39) - -`People` component displays a list of people associated with an organization. -It allows users to filter between all members and admins, search for members by their first name, -and paginate through the list. - -## Returns - -`JSX.Element` diff --git a/docs/docs/auto-docs/screens/UserPortal/Pledges/Pledges/README.md b/docs/docs/auto-docs/screens/UserPortal/Pledges/Pledges/README.md deleted file mode 100644 index a7ea6f45d9..0000000000 --- a/docs/docs/auto-docs/screens/UserPortal/Pledges/Pledges/README.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / screens/UserPortal/Pledges/Pledges - -# screens/UserPortal/Pledges/Pledges - -## Functions - -- [default](functions/default.md) diff --git a/docs/docs/auto-docs/screens/UserPortal/Pledges/Pledges/functions/default.md b/docs/docs/auto-docs/screens/UserPortal/Pledges/Pledges/functions/default.md deleted file mode 100644 index 233c67c3b2..0000000000 --- a/docs/docs/auto-docs/screens/UserPortal/Pledges/Pledges/functions/default.md +++ /dev/null @@ -1,32 +0,0 @@ -[**talawa-admin**](../../../../../README.md) - -*** - -[talawa-admin](../../../../../modules.md) / [screens/UserPortal/Pledges/Pledges](../README.md) / default - -# Function: default() - -> **default**(): `Element` - -Defined in: [src/screens/UserPortal/Pledges/Pledges.tsx:70](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/UserPortal/Pledges/Pledges.tsx#L70) - -The `Pledges` component is responsible for rendering a user's pledges within a campaign. -It fetches pledges data using Apollo Client's `useQuery` hook and displays the data -in a DataGrid with various features such as search, sorting, and modal dialogs for updating -or deleting a pledge. The component also handles various UI interactions including opening -modals for editing or deleting a pledge, showing additional pledgers in a popup, and -applying filters for searching pledges by campaign or pledger name. - -Key functionalities include: -- Fetching pledges data from the backend using GraphQL query `USER_PLEDGES`. -- Displaying pledges in a table with columns for pledgers, associated campaigns, - end dates, pledged amounts, and actions. -- Handling search and sorting of pledges. -- Opening and closing modals for updating and deleting pledges. -- Displaying additional pledgers in a popup when the list of pledgers exceeds a certain limit. - -## Returns - -`Element` - -The rendered Pledges component. diff --git a/docs/docs/auto-docs/screens/UserPortal/Pledges/PledgesMocks/README.md b/docs/docs/auto-docs/screens/UserPortal/Pledges/PledgesMocks/README.md deleted file mode 100644 index bdab99fef9..0000000000 --- a/docs/docs/auto-docs/screens/UserPortal/Pledges/PledgesMocks/README.md +++ /dev/null @@ -1,13 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / screens/UserPortal/Pledges/PledgesMocks - -# screens/UserPortal/Pledges/PledgesMocks - -## Variables - -- [EMPTY\_MOCKS](variables/EMPTY_MOCKS.md) -- [MOCKS](variables/MOCKS.md) -- [USER\_PLEDGES\_ERROR](variables/USER_PLEDGES_ERROR.md) diff --git a/docs/docs/auto-docs/screens/UserPortal/Pledges/PledgesMocks/variables/EMPTY_MOCKS.md b/docs/docs/auto-docs/screens/UserPortal/Pledges/PledgesMocks/variables/EMPTY_MOCKS.md deleted file mode 100644 index 676a2ed712..0000000000 --- a/docs/docs/auto-docs/screens/UserPortal/Pledges/PledgesMocks/variables/EMPTY_MOCKS.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../../README.md) - -*** - -[talawa-admin](../../../../../modules.md) / [screens/UserPortal/Pledges/PledgesMocks](../README.md) / EMPTY\_MOCKS - -# Variable: EMPTY\_MOCKS - -> `const` **EMPTY\_MOCKS**: (\{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `id`: `string`; \}; \}; `result`: \{ `data`: \{ `user`: \{ `__typename`: `string`; `appUserProfile`: \{ `__typename`: `string`; `_id`: `string`; `adminFor`: `any`[]; `appLanguageCode`: `string`; `createdEvents`: `any`[]; `createdOrganizations`: `any`[]; `eventAdmin`: `any`[]; `isSuperAdmin`: `boolean`; `pluginCreationAllowed`: `boolean`; \}; `user`: \{ `__typename`: `string`; `_id`: `string`; `address`: \{ `__typename`: `string`; `city`: `string`; `countryCode`: `string`; `line1`: `string`; `state`: `string`; \}; `birthDate`: `any`; `createdAt`: `string`; `educationGrade`: `any`; `email`: `string`; `employmentStatus`: `any`; `firstName`: `string`; `gender`: `any`; `image`: `any`; `joinedOrganizations`: `object`[]; `lastName`: `string`; `maritalStatus`: `any`; `membershipRequests`: `any`[]; `phone`: `any`; `registeredEvents`: `any`[]; \}; \}; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `orderBy`: `string`; `userId`: `string`; `where`: \{ `firstName_contains`: `string`; \}; \}; \}; `result`: \{ `data`: \{ `getPledgesByUserId`: `any`[]; \}; \}; \})[] - -Defined in: [src/screens/UserPortal/Pledges/PledgesMocks.ts:560](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/UserPortal/Pledges/PledgesMocks.ts#L560) diff --git a/docs/docs/auto-docs/screens/UserPortal/Pledges/PledgesMocks/variables/MOCKS.md b/docs/docs/auto-docs/screens/UserPortal/Pledges/PledgesMocks/variables/MOCKS.md deleted file mode 100644 index 825569e7ab..0000000000 --- a/docs/docs/auto-docs/screens/UserPortal/Pledges/PledgesMocks/variables/MOCKS.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../../README.md) - -*** - -[talawa-admin](../../../../../modules.md) / [screens/UserPortal/Pledges/PledgesMocks](../README.md) / MOCKS - -# Variable: MOCKS - -> `const` **MOCKS**: (\{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `id`: `string`; \}; \}; `result`: \{ `data`: \{ `user`: \{ `__typename`: `string`; `appUserProfile`: \{ `__typename`: `string`; `_id`: `string`; `adminFor`: `any`[]; `appLanguageCode`: `string`; `createdEvents`: `any`[]; `createdOrganizations`: `any`[]; `eventAdmin`: `any`[]; `isSuperAdmin`: `boolean`; `pluginCreationAllowed`: `boolean`; \}; `user`: \{ `__typename`: `string`; `_id`: `string`; `address`: \{ `__typename`: `string`; `city`: `string`; `countryCode`: `string`; `line1`: `string`; `state`: `string`; \}; `birthDate`: `any`; `createdAt`: `string`; `educationGrade`: `any`; `email`: `string`; `employmentStatus`: `any`; `firstName`: `string`; `gender`: `any`; `image`: `any`; `joinedOrganizations`: `object`[]; `lastName`: `string`; `maritalStatus`: `any`; `membershipRequests`: `any`[]; `phone`: `any`; `registeredEvents`: `any`[]; \}; \}; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `id`: `undefined`; `orderBy`: `string`; `userId`: `string`; `where`: \{ `firstName_contains`: `undefined`; `name_contains`: `string`; \}; \}; \}; `result`: \{ `data`: \{ `getPledgesByUserId`: `object`[]; `removeFundraisingCampaignPledge`: `undefined`; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `id`: `undefined`; `orderBy`: `string`; `userId`: `string`; `where`: \{ `firstName_contains`: `string`; `name_contains`: `undefined`; \}; \}; \}; `result`: \{ `data`: \{ `getPledgesByUserId`: `object`[]; `removeFundraisingCampaignPledge`: `undefined`; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `id`: `string`; `orderBy`: `undefined`; `userId`: `undefined`; `where`: `undefined`; \}; \}; `result`: \{ `data`: \{ `getPledgesByUserId`: `undefined`; `removeFundraisingCampaignPledge`: \{ `_id`: `string`; \}; \}; \}; \})[] - -Defined in: [src/screens/UserPortal/Pledges/PledgesMocks.ts:62](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/UserPortal/Pledges/PledgesMocks.ts#L62) diff --git a/docs/docs/auto-docs/screens/UserPortal/Pledges/PledgesMocks/variables/USER_PLEDGES_ERROR.md b/docs/docs/auto-docs/screens/UserPortal/Pledges/PledgesMocks/variables/USER_PLEDGES_ERROR.md deleted file mode 100644 index fd623ff343..0000000000 --- a/docs/docs/auto-docs/screens/UserPortal/Pledges/PledgesMocks/variables/USER_PLEDGES_ERROR.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../../README.md) - -*** - -[talawa-admin](../../../../../modules.md) / [screens/UserPortal/Pledges/PledgesMocks](../README.md) / USER\_PLEDGES\_ERROR - -# Variable: USER\_PLEDGES\_ERROR - -> `const` **USER\_PLEDGES\_ERROR**: (\{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `id`: `string`; \}; \}; `result`: \{ `data`: \{ `user`: \{ `__typename`: `string`; `appUserProfile`: \{ `__typename`: `string`; `_id`: `string`; `adminFor`: `any`[]; `appLanguageCode`: `string`; `createdEvents`: `any`[]; `createdOrganizations`: `any`[]; `eventAdmin`: `any`[]; `isSuperAdmin`: `boolean`; `pluginCreationAllowed`: `boolean`; \}; `user`: \{ `__typename`: `string`; `_id`: `string`; `address`: \{ `__typename`: `string`; `city`: `string`; `countryCode`: `string`; `line1`: `string`; `state`: `string`; \}; `birthDate`: `any`; `createdAt`: `string`; `educationGrade`: `any`; `email`: `string`; `employmentStatus`: `any`; `firstName`: `string`; `gender`: `any`; `image`: `any`; `joinedOrganizations`: `object`[]; `lastName`: `string`; `maritalStatus`: `any`; `membershipRequests`: `any`[]; `phone`: `any`; `registeredEvents`: `any`[]; \}; \}; \}; \}; \} \| \{ `error`: `Error`; `request`: \{ `query`: `DocumentNode`; `variables`: \{ `orderBy`: `string`; `userId`: `string`; `where`: \{ `firstName_contains`: `string`; \}; \}; \}; \})[] - -Defined in: [src/screens/UserPortal/Pledges/PledgesMocks.ts:581](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/UserPortal/Pledges/PledgesMocks.ts#L581) diff --git a/docs/docs/auto-docs/screens/UserPortal/Posts/Posts/README.md b/docs/docs/auto-docs/screens/UserPortal/Posts/Posts/README.md deleted file mode 100644 index d2590ccd5b..0000000000 --- a/docs/docs/auto-docs/screens/UserPortal/Posts/Posts/README.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / screens/UserPortal/Posts/Posts - -# screens/UserPortal/Posts/Posts - -## Functions - -- [default](functions/default.md) diff --git a/docs/docs/auto-docs/screens/UserPortal/Posts/Posts/functions/default.md b/docs/docs/auto-docs/screens/UserPortal/Posts/Posts/functions/default.md deleted file mode 100644 index c0aa2ab3a1..0000000000 --- a/docs/docs/auto-docs/screens/UserPortal/Posts/Posts/functions/default.md +++ /dev/null @@ -1,21 +0,0 @@ -[**talawa-admin**](../../../../../README.md) - -*** - -[talawa-admin](../../../../../modules.md) / [screens/UserPortal/Posts/Posts](../README.md) / default - -# Function: default() - -> **default**(): `JSX.Element` - -Defined in: [src/screens/UserPortal/Posts/Posts.tsx:112](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/UserPortal/Posts/Posts.tsx#L112) - -`home` component displays the main feed for a user, including posts, promoted content, and options to create a new post. - -It utilizes Apollo Client for fetching and managing data through GraphQL queries. The component fetches and displays posts from an organization, promoted advertisements, and handles user interactions for creating new posts. It also manages state for displaying modal dialogs and handling file uploads for new posts. - -## Returns - -`JSX.Element` - -JSX.Element - The rendered `home` component. diff --git a/docs/docs/auto-docs/screens/UserPortal/Settings/Settings/README.md b/docs/docs/auto-docs/screens/UserPortal/Settings/Settings/README.md deleted file mode 100644 index 4d0e925679..0000000000 --- a/docs/docs/auto-docs/screens/UserPortal/Settings/Settings/README.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / screens/UserPortal/Settings/Settings - -# screens/UserPortal/Settings/Settings - -## Functions - -- [default](functions/default.md) diff --git a/docs/docs/auto-docs/screens/UserPortal/Settings/Settings/functions/default.md b/docs/docs/auto-docs/screens/UserPortal/Settings/Settings/functions/default.md deleted file mode 100644 index 20cebefd16..0000000000 --- a/docs/docs/auto-docs/screens/UserPortal/Settings/Settings/functions/default.md +++ /dev/null @@ -1,20 +0,0 @@ -[**talawa-admin**](../../../../../README.md) - -*** - -[talawa-admin](../../../../../modules.md) / [screens/UserPortal/Settings/Settings](../README.md) / default - -# Function: default() - -> **default**(): `JSX.Element` - -Defined in: [src/screens/UserPortal/Settings/Settings.tsx:33](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/UserPortal/Settings/Settings.tsx#L33) - -The Settings component allows users to view and update their profile settings. -It includes functionality to handle image uploads, reset changes, and save updated user details. - -## Returns - -`JSX.Element` - -The Settings component. diff --git a/docs/docs/auto-docs/screens/UserPortal/UserScreen/UserScreen/README.md b/docs/docs/auto-docs/screens/UserPortal/UserScreen/UserScreen/README.md deleted file mode 100644 index 8ea3daaf80..0000000000 --- a/docs/docs/auto-docs/screens/UserPortal/UserScreen/UserScreen/README.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / screens/UserPortal/UserScreen/UserScreen - -# screens/UserPortal/UserScreen/UserScreen - -## Functions - -- [default](functions/default.md) diff --git a/docs/docs/auto-docs/screens/UserPortal/UserScreen/UserScreen/functions/default.md b/docs/docs/auto-docs/screens/UserPortal/UserScreen/UserScreen/functions/default.md deleted file mode 100644 index 3d477eae19..0000000000 --- a/docs/docs/auto-docs/screens/UserPortal/UserScreen/UserScreen/functions/default.md +++ /dev/null @@ -1,21 +0,0 @@ -[**talawa-admin**](../../../../../README.md) - -*** - -[talawa-admin](../../../../../modules.md) / [screens/UserPortal/UserScreen/UserScreen](../README.md) / default - -# Function: default() - -> **default**(): `Element` - -Defined in: [src/screens/UserPortal/UserScreen/UserScreen.tsx:34](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/UserPortal/UserScreen/UserScreen.tsx#L34) - -The UserScreen component serves as a container for user-specific pages -within an organization context. It provides layout and sidebar navigation -functionality based on the current organization ID and user roles. - -## Returns - -`Element` - -The UserScreen component. diff --git a/docs/docs/auto-docs/screens/UserPortal/Volunteer/Actions/Actions.mocks/README.md b/docs/docs/auto-docs/screens/UserPortal/Volunteer/Actions/Actions.mocks/README.md deleted file mode 100644 index e7efc11aeb..0000000000 --- a/docs/docs/auto-docs/screens/UserPortal/Volunteer/Actions/Actions.mocks/README.md +++ /dev/null @@ -1,13 +0,0 @@ -[**talawa-admin**](../../../../../README.md) - -*** - -[talawa-admin](../../../../../modules.md) / screens/UserPortal/Volunteer/Actions/Actions.mocks - -# screens/UserPortal/Volunteer/Actions/Actions.mocks - -## Variables - -- [EMPTY\_MOCKS](variables/EMPTY_MOCKS.md) -- [ERROR\_MOCKS](variables/ERROR_MOCKS.md) -- [MOCKS](variables/MOCKS.md) diff --git a/docs/docs/auto-docs/screens/UserPortal/Volunteer/Actions/Actions.mocks/variables/EMPTY_MOCKS.md b/docs/docs/auto-docs/screens/UserPortal/Volunteer/Actions/Actions.mocks/variables/EMPTY_MOCKS.md deleted file mode 100644 index 79f721d94c..0000000000 --- a/docs/docs/auto-docs/screens/UserPortal/Volunteer/Actions/Actions.mocks/variables/EMPTY_MOCKS.md +++ /dev/null @@ -1,57 +0,0 @@ -[**talawa-admin**](../../../../../../README.md) - -*** - -[talawa-admin](../../../../../../modules.md) / [screens/UserPortal/Volunteer/Actions/Actions.mocks](../README.md) / EMPTY\_MOCKS - -# Variable: EMPTY\_MOCKS - -> `const` **EMPTY\_MOCKS**: `object`[] - -Defined in: [src/screens/UserPortal/Volunteer/Actions/Actions.mocks.ts:232](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/UserPortal/Volunteer/Actions/Actions.mocks.ts#L232) - -## Type declaration - -### request - -> **request**: `object` - -#### request.query - -> **query**: `DocumentNode` = `ACTION_ITEMS_BY_USER` - -#### request.variables - -> **variables**: `object` - -#### request.variables.orderBy - -> **orderBy**: `any` = `null` - -#### request.variables.userId - -> **userId**: `string` = `'userId'` - -#### request.variables.where - -> **where**: `object` - -#### request.variables.where.assigneeName - -> **assigneeName**: `string` = `''` - -#### request.variables.where.orgId - -> **orgId**: `string` = `'orgId'` - -### result - -> **result**: `object` - -#### result.data - -> **data**: `object` - -#### result.data.actionItemsByUser - -> **actionItemsByUser**: `any`[] = `[]` diff --git a/docs/docs/auto-docs/screens/UserPortal/Volunteer/Actions/Actions.mocks/variables/ERROR_MOCKS.md b/docs/docs/auto-docs/screens/UserPortal/Volunteer/Actions/Actions.mocks/variables/ERROR_MOCKS.md deleted file mode 100644 index 974fbfa495..0000000000 --- a/docs/docs/auto-docs/screens/UserPortal/Volunteer/Actions/Actions.mocks/variables/ERROR_MOCKS.md +++ /dev/null @@ -1,49 +0,0 @@ -[**talawa-admin**](../../../../../../README.md) - -*** - -[talawa-admin](../../../../../../modules.md) / [screens/UserPortal/Volunteer/Actions/Actions.mocks](../README.md) / ERROR\_MOCKS - -# Variable: ERROR\_MOCKS - -> `const` **ERROR\_MOCKS**: `object`[] - -Defined in: [src/screens/UserPortal/Volunteer/Actions/Actions.mocks.ts:253](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/UserPortal/Volunteer/Actions/Actions.mocks.ts#L253) - -## Type declaration - -### error - -> **error**: `Error` - -### request - -> **request**: `object` - -#### request.query - -> **query**: `DocumentNode` = `ACTION_ITEMS_BY_USER` - -#### request.variables - -> **variables**: `object` - -#### request.variables.orderBy - -> **orderBy**: `any` = `null` - -#### request.variables.userId - -> **userId**: `string` = `'userId'` - -#### request.variables.where - -> **where**: `object` - -#### request.variables.where.assigneeName - -> **assigneeName**: `string` = `''` - -#### request.variables.where.orgId - -> **orgId**: `string` = `'orgId'` diff --git a/docs/docs/auto-docs/screens/UserPortal/Volunteer/Actions/Actions.mocks/variables/MOCKS.md b/docs/docs/auto-docs/screens/UserPortal/Volunteer/Actions/Actions.mocks/variables/MOCKS.md deleted file mode 100644 index 8c6240c013..0000000000 --- a/docs/docs/auto-docs/screens/UserPortal/Volunteer/Actions/Actions.mocks/variables/MOCKS.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../../../README.md) - -*** - -[talawa-admin](../../../../../../modules.md) / [screens/UserPortal/Volunteer/Actions/Actions.mocks](../README.md) / MOCKS - -# Variable: MOCKS - -> `const` **MOCKS**: (\{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `orderBy`: `any`; `userId`: `string`; `where`: \{ `assigneeName`: `string`; `categoryName`: `undefined`; `orgId`: `string`; \}; \}; \}; `result`: \{ `data`: \{ `actionItemsByUser`: (\{ `_id`: `string`; `actionItemCategory`: \{ `_id`: `string`; `name`: `string`; \}; `allottedHours`: `number`; `assignee`: \{ `_id`: `string`; `user`: \{ `_id`: `string`; `firstName`: `string`; `image`: `any`; `lastName`: `string`; \}; \}; `assigneeGroup`: `any`; `assigneeType`: `string`; `assigner`: \{ `_id`: `string`; `firstName`: `string`; `image`: `any`; `lastName`: `string`; \}; `assignmentDate`: `string`; `completionDate`: `string`; `creator`: \{ `_id`: `string`; `firstName`: `string`; `lastName`: `string`; \}; `dueDate`: `string`; `event`: \{ `_id`: `string`; `title`: `string`; \}; `isCompleted`: `boolean`; `postCompletionNotes`: `string`; `preCompletionNotes`: `string`; \} \| \{ `_id`: `string`; `actionItemCategory`: \{ `_id`: `string`; `name`: `string`; \}; `allottedHours`: `number`; `assignee`: `any`; `assigneeGroup`: \{ `_id`: `string`; `name`: `string`; \}; `assigneeType`: `string`; `assigner`: \{ `_id`: `string`; `firstName`: `string`; `image`: `any`; `lastName`: `string`; \}; `assignmentDate`: `string`; `completionDate`: `string`; `creator`: \{ `_id`: `string`; `firstName`: `string`; `lastName`: `string`; \}; `dueDate`: `string`; `event`: \{ `_id`: `string`; `title`: `string`; \}; `isCompleted`: `boolean`; `postCompletionNotes`: `string`; `preCompletionNotes`: `string`; \} \| \{ `_id`: `string`; `actionItemCategory`: \{ `_id`: `string`; `name`: `string`; \}; `allottedHours`: `any`; `assignee`: \{ `_id`: `string`; `user`: \{ `_id`: `string`; `firstName`: `string`; `image`: `string`; `lastName`: `string`; \}; \}; `assigneeGroup`: `any`; `assigneeType`: `string`; `assigner`: \{ `_id`: `string`; `firstName`: `string`; `image`: `any`; `lastName`: `string`; \}; `assignmentDate`: `string`; `completionDate`: `string`; `creator`: \{ `_id`: `string`; `firstName`: `string`; `lastName`: `string`; \}; `dueDate`: `string`; `event`: \{ `_id`: `string`; `title`: `string`; \}; `isCompleted`: `boolean`; `postCompletionNotes`: `string`; `preCompletionNotes`: `string`; \})[]; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `orderBy`: `string`; `userId`: `string`; `where`: \{ `assigneeName`: `string`; `categoryName`: `undefined`; `orgId`: `string`; \}; \}; \}; `result`: \{ `data`: \{ `actionItemsByUser`: (\{ `_id`: `string`; `actionItemCategory`: \{ `_id`: `string`; `name`: `string`; \}; `allottedHours`: `number`; `assignee`: \{ `_id`: `string`; `user`: \{ `_id`: `string`; `firstName`: `string`; `image`: `any`; `lastName`: `string`; \}; \}; `assigneeGroup`: `any`; `assigneeType`: `string`; `assigner`: \{ `_id`: `string`; `firstName`: `string`; `image`: `any`; `lastName`: `string`; \}; `assignmentDate`: `string`; `completionDate`: `string`; `creator`: \{ `_id`: `string`; `firstName`: `string`; `lastName`: `string`; \}; `dueDate`: `string`; `event`: \{ `_id`: `string`; `title`: `string`; \}; `isCompleted`: `boolean`; `postCompletionNotes`: `string`; `preCompletionNotes`: `string`; \} \| \{ `_id`: `string`; `actionItemCategory`: \{ `_id`: `string`; `name`: `string`; \}; `allottedHours`: `number`; `assignee`: `any`; `assigneeGroup`: \{ `_id`: `string`; `name`: `string`; \}; `assigneeType`: `string`; `assigner`: \{ `_id`: `string`; `firstName`: `string`; `image`: `any`; `lastName`: `string`; \}; `assignmentDate`: `string`; `completionDate`: `string`; `creator`: \{ `_id`: `string`; `firstName`: `string`; `lastName`: `string`; \}; `dueDate`: `string`; `event`: \{ `_id`: `string`; `title`: `string`; \}; `isCompleted`: `boolean`; `postCompletionNotes`: `string`; `preCompletionNotes`: `string`; \})[]; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `orderBy`: `any`; `userId`: `string`; `where`: \{ `assigneeName`: `undefined`; `categoryName`: `string`; `orgId`: `string`; \}; \}; \}; `result`: \{ `data`: \{ `actionItemsByUser`: (\{ `_id`: `string`; `actionItemCategory`: \{ `_id`: `string`; `name`: `string`; \}; `allottedHours`: `number`; `assignee`: \{ `_id`: `string`; `user`: \{ `_id`: `string`; `firstName`: `string`; `image`: `any`; `lastName`: `string`; \}; \}; `assigneeGroup`: `any`; `assigneeType`: `string`; `assigner`: \{ `_id`: `string`; `firstName`: `string`; `image`: `any`; `lastName`: `string`; \}; `assignmentDate`: `string`; `completionDate`: `string`; `creator`: \{ `_id`: `string`; `firstName`: `string`; `lastName`: `string`; \}; `dueDate`: `string`; `event`: \{ `_id`: `string`; `title`: `string`; \}; `isCompleted`: `boolean`; `postCompletionNotes`: `string`; `preCompletionNotes`: `string`; \} \| \{ `_id`: `string`; `actionItemCategory`: \{ `_id`: `string`; `name`: `string`; \}; `allottedHours`: `number`; `assignee`: `any`; `assigneeGroup`: \{ `_id`: `string`; `name`: `string`; \}; `assigneeType`: `string`; `assigner`: \{ `_id`: `string`; `firstName`: `string`; `image`: `any`; `lastName`: `string`; \}; `assignmentDate`: `string`; `completionDate`: `string`; `creator`: \{ `_id`: `string`; `firstName`: `string`; `lastName`: `string`; \}; `dueDate`: `string`; `event`: \{ `_id`: `string`; `title`: `string`; \}; `isCompleted`: `boolean`; `postCompletionNotes`: `string`; `preCompletionNotes`: `string`; \})[]; \}; \}; \})[] - -Defined in: [src/screens/UserPortal/Volunteer/Actions/Actions.mocks.ts:121](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/UserPortal/Volunteer/Actions/Actions.mocks.ts#L121) diff --git a/docs/docs/auto-docs/screens/UserPortal/Volunteer/Actions/Actions/README.md b/docs/docs/auto-docs/screens/UserPortal/Volunteer/Actions/Actions/README.md deleted file mode 100644 index a1142db514..0000000000 --- a/docs/docs/auto-docs/screens/UserPortal/Volunteer/Actions/Actions/README.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../../README.md) - -*** - -[talawa-admin](../../../../../modules.md) / screens/UserPortal/Volunteer/Actions/Actions - -# screens/UserPortal/Volunteer/Actions/Actions - -## Functions - -- [default](functions/default.md) diff --git a/docs/docs/auto-docs/screens/UserPortal/Volunteer/Actions/Actions/functions/default.md b/docs/docs/auto-docs/screens/UserPortal/Volunteer/Actions/Actions/functions/default.md deleted file mode 100644 index ea4be835f4..0000000000 --- a/docs/docs/auto-docs/screens/UserPortal/Volunteer/Actions/Actions/functions/default.md +++ /dev/null @@ -1,21 +0,0 @@ -[**talawa-admin**](../../../../../../README.md) - -*** - -[talawa-admin](../../../../../../modules.md) / [screens/UserPortal/Volunteer/Actions/Actions](../README.md) / default - -# Function: default() - -> **default**(): `JSX.Element` - -Defined in: [src/screens/UserPortal/Volunteer/Actions/Actions.tsx:60](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/UserPortal/Volunteer/Actions/Actions.tsx#L60) - -Component for managing and displaying action items within an organization. - -This component allows users to view, filter, sort, and create action items. It also handles fetching and displaying related data such as action item categories and members. - -## Returns - -`JSX.Element` - -The rendered component. diff --git a/docs/docs/auto-docs/screens/UserPortal/Volunteer/Groups/GroupModal/README.md b/docs/docs/auto-docs/screens/UserPortal/Volunteer/Groups/GroupModal/README.md deleted file mode 100644 index cda227a90a..0000000000 --- a/docs/docs/auto-docs/screens/UserPortal/Volunteer/Groups/GroupModal/README.md +++ /dev/null @@ -1,15 +0,0 @@ -[**talawa-admin**](../../../../../README.md) - -*** - -[talawa-admin](../../../../../modules.md) / screens/UserPortal/Volunteer/Groups/GroupModal - -# screens/UserPortal/Volunteer/Groups/GroupModal - -## Interfaces - -- [InterfaceGroupModal](interfaces/InterfaceGroupModal.md) - -## Functions - -- [default](functions/default.md) diff --git a/docs/docs/auto-docs/screens/UserPortal/Volunteer/Groups/GroupModal/functions/default.md b/docs/docs/auto-docs/screens/UserPortal/Volunteer/Groups/GroupModal/functions/default.md deleted file mode 100644 index 937b8d2989..0000000000 --- a/docs/docs/auto-docs/screens/UserPortal/Volunteer/Groups/GroupModal/functions/default.md +++ /dev/null @@ -1,51 +0,0 @@ -[**talawa-admin**](../../../../../../README.md) - -*** - -[talawa-admin](../../../../../../modules.md) / [screens/UserPortal/Volunteer/Groups/GroupModal](../README.md) / default - -# Function: default() - -> **default**(`props`, `deprecatedLegacyContext`?): `ReactNode` - -Defined in: [src/screens/UserPortal/Volunteer/Groups/GroupModal.tsx:71](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/UserPortal/Volunteer/Groups/GroupModal.tsx#L71) - -A modal dialog for creating or editing a volunteer group. - -## Parameters - -### props - -[`InterfaceGroupModal`](../interfaces/InterfaceGroupModal.md) - -### deprecatedLegacyContext? - -`any` - -**Deprecated** - -**See** - -[React Docs](https://legacy.reactjs.org/docs/legacy-context.html#referencing-context-in-lifecycle-methods) - -## Returns - -`ReactNode` - -The rendered modal component. - -The `VolunteerGroupModal` component displays a form within a modal dialog for creating or editing a Volunteer Group. -It includes fields for entering the group name, description, volunteersRequired, and selecting volunteers/leaders. - -The modal includes: -- A header with a title indicating the current mode (create or edit) and a close button. -- A form with: - - An input field for entering the group name. - - A textarea for entering the group description. - - An input field for entering the number of volunteers required. -- A submit button to create or update the pledge. - -On form submission, the component either: -- Calls `updateVoluneerGroup` mutation to update an existing group, or - -Success or error messages are displayed using toast notifications based on the result of the mutation. diff --git a/docs/docs/auto-docs/screens/UserPortal/Volunteer/Groups/GroupModal/interfaces/InterfaceGroupModal.md b/docs/docs/auto-docs/screens/UserPortal/Volunteer/Groups/GroupModal/interfaces/InterfaceGroupModal.md deleted file mode 100644 index 6c4c12a238..0000000000 --- a/docs/docs/auto-docs/screens/UserPortal/Volunteer/Groups/GroupModal/interfaces/InterfaceGroupModal.md +++ /dev/null @@ -1,57 +0,0 @@ -[**talawa-admin**](../../../../../../README.md) - -*** - -[talawa-admin](../../../../../../modules.md) / [screens/UserPortal/Volunteer/Groups/GroupModal](../README.md) / InterfaceGroupModal - -# Interface: InterfaceGroupModal - -Defined in: [src/screens/UserPortal/Volunteer/Groups/GroupModal.tsx:35](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/UserPortal/Volunteer/Groups/GroupModal.tsx#L35) - -## Properties - -### eventId - -> **eventId**: `string` - -Defined in: [src/screens/UserPortal/Volunteer/Groups/GroupModal.tsx:38](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/UserPortal/Volunteer/Groups/GroupModal.tsx#L38) - -*** - -### group - -> **group**: [`InterfaceVolunteerGroupInfo`](../../../../../../utils/interfaces/interfaces/InterfaceVolunteerGroupInfo.md) - -Defined in: [src/screens/UserPortal/Volunteer/Groups/GroupModal.tsx:39](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/UserPortal/Volunteer/Groups/GroupModal.tsx#L39) - -*** - -### hide() - -> **hide**: () => `void` - -Defined in: [src/screens/UserPortal/Volunteer/Groups/GroupModal.tsx:37](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/UserPortal/Volunteer/Groups/GroupModal.tsx#L37) - -#### Returns - -`void` - -*** - -### isOpen - -> **isOpen**: `boolean` - -Defined in: [src/screens/UserPortal/Volunteer/Groups/GroupModal.tsx:36](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/UserPortal/Volunteer/Groups/GroupModal.tsx#L36) - -*** - -### refetchGroups() - -> **refetchGroups**: () => `void` - -Defined in: [src/screens/UserPortal/Volunteer/Groups/GroupModal.tsx:40](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/UserPortal/Volunteer/Groups/GroupModal.tsx#L40) - -#### Returns - -`void` diff --git a/docs/docs/auto-docs/screens/UserPortal/Volunteer/Groups/Groups.mocks/README.md b/docs/docs/auto-docs/screens/UserPortal/Volunteer/Groups/Groups.mocks/README.md deleted file mode 100644 index fec7ae3f06..0000000000 --- a/docs/docs/auto-docs/screens/UserPortal/Volunteer/Groups/Groups.mocks/README.md +++ /dev/null @@ -1,14 +0,0 @@ -[**talawa-admin**](../../../../../README.md) - -*** - -[talawa-admin](../../../../../modules.md) / screens/UserPortal/Volunteer/Groups/Groups.mocks - -# screens/UserPortal/Volunteer/Groups/Groups.mocks - -## Variables - -- [EMPTY\_MOCKS](variables/EMPTY_MOCKS.md) -- [ERROR\_MOCKS](variables/ERROR_MOCKS.md) -- [MOCKS](variables/MOCKS.md) -- [UPDATE\_ERROR\_MOCKS](variables/UPDATE_ERROR_MOCKS.md) diff --git a/docs/docs/auto-docs/screens/UserPortal/Volunteer/Groups/Groups.mocks/variables/EMPTY_MOCKS.md b/docs/docs/auto-docs/screens/UserPortal/Volunteer/Groups/Groups.mocks/variables/EMPTY_MOCKS.md deleted file mode 100644 index f06ce5db55..0000000000 --- a/docs/docs/auto-docs/screens/UserPortal/Volunteer/Groups/Groups.mocks/variables/EMPTY_MOCKS.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../../../README.md) - -*** - -[talawa-admin](../../../../../../modules.md) / [screens/UserPortal/Volunteer/Groups/Groups.mocks](../README.md) / EMPTY\_MOCKS - -# Variable: EMPTY\_MOCKS - -> `const` **EMPTY\_MOCKS**: (\{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `orderBy`: `any`; `where`: \{ `eventId`: `undefined`; `group`: `undefined`; `leaderName`: `any`; `name_contains`: `string`; `orgId`: `string`; `status`: `undefined`; `userId`: `string`; \}; \}; \}; `result`: \{ `data`: \{ `getEventVolunteerGroups`: `any`[]; `getVolunteerMembership`: `undefined`; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `orderBy`: `undefined`; `where`: \{ `eventId`: `string`; `group`: `string`; `leaderName`: `undefined`; `name_contains`: `undefined`; `orgId`: `undefined`; `status`: `string`; `userId`: `undefined`; \}; \}; \}; `result`: \{ `data`: \{ `getEventVolunteerGroups`: `undefined`; `getVolunteerMembership`: `any`[]; \}; \}; \})[] - -Defined in: [src/screens/UserPortal/Volunteer/Groups/Groups.mocks.ts:368](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/UserPortal/Volunteer/Groups/Groups.mocks.ts#L368) diff --git a/docs/docs/auto-docs/screens/UserPortal/Volunteer/Groups/Groups.mocks/variables/ERROR_MOCKS.md b/docs/docs/auto-docs/screens/UserPortal/Volunteer/Groups/Groups.mocks/variables/ERROR_MOCKS.md deleted file mode 100644 index 3cf5d8fc70..0000000000 --- a/docs/docs/auto-docs/screens/UserPortal/Volunteer/Groups/Groups.mocks/variables/ERROR_MOCKS.md +++ /dev/null @@ -1,53 +0,0 @@ -[**talawa-admin**](../../../../../../README.md) - -*** - -[talawa-admin](../../../../../../modules.md) / [screens/UserPortal/Volunteer/Groups/Groups.mocks](../README.md) / ERROR\_MOCKS - -# Variable: ERROR\_MOCKS - -> `const` **ERROR\_MOCKS**: `object`[] - -Defined in: [src/screens/UserPortal/Volunteer/Groups/Groups.mocks.ts:407](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/UserPortal/Volunteer/Groups/Groups.mocks.ts#L407) - -## Type declaration - -### error - -> **error**: `Error` - -### request - -> **request**: `object` - -#### request.query - -> **query**: `DocumentNode` = `EVENT_VOLUNTEER_GROUP_LIST` - -#### request.variables - -> **variables**: `object` - -#### request.variables.orderBy - -> **orderBy**: `any` = `null` - -#### request.variables.where - -> **where**: `object` - -#### request.variables.where.leaderName - -> **leaderName**: `any` = `null` - -#### request.variables.where.name\_contains - -> **name\_contains**: `string` = `''` - -#### request.variables.where.orgId - -> **orgId**: `string` = `'orgId'` - -#### request.variables.where.userId - -> **userId**: `string` = `'userId'` diff --git a/docs/docs/auto-docs/screens/UserPortal/Volunteer/Groups/Groups.mocks/variables/MOCKS.md b/docs/docs/auto-docs/screens/UserPortal/Volunteer/Groups/Groups.mocks/variables/MOCKS.md deleted file mode 100644 index 30fc111ab6..0000000000 --- a/docs/docs/auto-docs/screens/UserPortal/Volunteer/Groups/Groups.mocks/variables/MOCKS.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../../../README.md) - -*** - -[talawa-admin](../../../../../../modules.md) / [screens/UserPortal/Volunteer/Groups/Groups.mocks](../README.md) / MOCKS - -# Variable: MOCKS - -> `const` **MOCKS**: (\{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `data`: `undefined`; `id`: `undefined`; `orderBy`: `string`; `status`: `undefined`; `where`: \{ `eventId`: `undefined`; `groupId`: `undefined`; `leaderName`: `any`; `name_contains`: `string`; `orgId`: `string`; `status`: `undefined`; `userId`: `string`; \}; \}; \}; `result`: \{ `data`: \{ `getEventVolunteerGroups`: `object`[]; `getVolunteerMembership`: `undefined`; `updateEventVolunteerGroup`: `undefined`; `updateVolunteerMembership`: `undefined`; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `data`: `undefined`; `id`: `undefined`; `orderBy`: `any`; `status`: `undefined`; `where`: \{ `eventId`: `undefined`; `groupId`: `undefined`; `leaderName`: `string`; `name_contains`: `any`; `orgId`: `string`; `status`: `undefined`; `userId`: `string`; \}; \}; \}; `result`: \{ `data`: \{ `getEventVolunteerGroups`: `object`[]; `getVolunteerMembership`: `undefined`; `updateEventVolunteerGroup`: `undefined`; `updateVolunteerMembership`: `undefined`; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `data`: `undefined`; `id`: `undefined`; `orderBy`: `undefined`; `status`: `undefined`; `where`: \{ `eventId`: `string`; `groupId`: `string`; `leaderName`: `undefined`; `name_contains`: `undefined`; `orgId`: `undefined`; `status`: `string`; `userId`: `undefined`; \}; \}; \}; `result`: \{ `data`: \{ `getEventVolunteerGroups`: `undefined`; `getVolunteerMembership`: `object`[]; `updateEventVolunteerGroup`: `undefined`; `updateVolunteerMembership`: `undefined`; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `data`: `undefined`; `id`: `string`; `orderBy`: `undefined`; `status`: `string`; `where`: `undefined`; \}; \}; `result`: \{ `data`: \{ `getEventVolunteerGroups`: `undefined`; `getVolunteerMembership`: `undefined`; `updateEventVolunteerGroup`: `undefined`; `updateVolunteerMembership`: \{ `_id`: `string`; \}; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `data`: \{ `description`: `string`; `eventId`: `string`; `name`: `string`; `volunteersRequired`: `number`; \}; `id`: `string`; `orderBy`: `undefined`; `status`: `undefined`; `where`: `undefined`; \}; \}; `result`: \{ `data`: \{ `getEventVolunteerGroups`: `undefined`; `getVolunteerMembership`: `undefined`; `updateEventVolunteerGroup`: \{ `_id`: `string`; \}; `updateVolunteerMembership`: `undefined`; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `data`: \{ `description`: `undefined`; `eventId`: `string`; `name`: `undefined`; `volunteersRequired`: `undefined`; \}; `id`: `string`; `orderBy`: `undefined`; `status`: `undefined`; `where`: `undefined`; \}; \}; `result`: \{ `data`: \{ `getEventVolunteerGroups`: `undefined`; `getVolunteerMembership`: `undefined`; `updateEventVolunteerGroup`: \{ `_id`: `string`; \}; `updateVolunteerMembership`: `undefined`; \}; \}; \})[] - -Defined in: [src/screens/UserPortal/Volunteer/Groups/Groups.mocks.ts:163](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/UserPortal/Volunteer/Groups/Groups.mocks.ts#L163) diff --git a/docs/docs/auto-docs/screens/UserPortal/Volunteer/Groups/Groups.mocks/variables/UPDATE_ERROR_MOCKS.md b/docs/docs/auto-docs/screens/UserPortal/Volunteer/Groups/Groups.mocks/variables/UPDATE_ERROR_MOCKS.md deleted file mode 100644 index 0c9d1257a8..0000000000 --- a/docs/docs/auto-docs/screens/UserPortal/Volunteer/Groups/Groups.mocks/variables/UPDATE_ERROR_MOCKS.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../../../README.md) - -*** - -[talawa-admin](../../../../../../modules.md) / [screens/UserPortal/Volunteer/Groups/Groups.mocks](../README.md) / UPDATE\_ERROR\_MOCKS - -# Variable: UPDATE\_ERROR\_MOCKS - -> `const` **UPDATE\_ERROR\_MOCKS**: (\{ `error`: `undefined`; `request`: \{ `query`: `DocumentNode`; `variables`: \{ `data`: `undefined`; `id`: `undefined`; `status`: `undefined`; `where`: \{ `eventId`: `string`; `groupId`: `string`; `status`: `string`; \}; \}; \}; `result`: \{ `data`: \{ `getVolunteerMembership`: `object`[]; \}; \}; \} \| \{ `error`: `Error`; `request`: \{ `query`: `DocumentNode`; `variables`: \{ `data`: `undefined`; `id`: `string`; `status`: `string`; `where`: `undefined`; \}; \}; `result`: `undefined`; \} \| \{ `error`: `Error`; `request`: \{ `query`: `DocumentNode`; `variables`: \{ `data`: \{ `description`: `string`; `eventId`: `string`; `name`: `string`; `volunteersRequired`: `number`; \}; `id`: `string`; `status`: `undefined`; `where`: `undefined`; \}; \}; `result`: `undefined`; \})[] - -Defined in: [src/screens/UserPortal/Volunteer/Groups/Groups.mocks.ts:425](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/UserPortal/Volunteer/Groups/Groups.mocks.ts#L425) diff --git a/docs/docs/auto-docs/screens/UserPortal/Volunteer/Groups/Groups/README.md b/docs/docs/auto-docs/screens/UserPortal/Volunteer/Groups/Groups/README.md deleted file mode 100644 index b7f737ab07..0000000000 --- a/docs/docs/auto-docs/screens/UserPortal/Volunteer/Groups/Groups/README.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../../README.md) - -*** - -[talawa-admin](../../../../../modules.md) / screens/UserPortal/Volunteer/Groups/Groups - -# screens/UserPortal/Volunteer/Groups/Groups - -## Functions - -- [default](functions/default.md) diff --git a/docs/docs/auto-docs/screens/UserPortal/Volunteer/Groups/Groups/functions/default.md b/docs/docs/auto-docs/screens/UserPortal/Volunteer/Groups/Groups/functions/default.md deleted file mode 100644 index 0268aeff32..0000000000 --- a/docs/docs/auto-docs/screens/UserPortal/Volunteer/Groups/Groups/functions/default.md +++ /dev/null @@ -1,20 +0,0 @@ -[**talawa-admin**](../../../../../../README.md) - -*** - -[talawa-admin](../../../../../../modules.md) / [screens/UserPortal/Volunteer/Groups/Groups](../README.md) / default - -# Function: default() - -> **default**(): `JSX.Element` - -Defined in: [src/screens/UserPortal/Volunteer/Groups/Groups.tsx:55](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/UserPortal/Volunteer/Groups/Groups.tsx#L55) - -Component for managing volunteer groups for an event. -This component allows users to view, filter, sort, and create action items. It also provides a modal for creating and editing action items. - -## Returns - -`JSX.Element` - -The rendered component. diff --git a/docs/docs/auto-docs/screens/UserPortal/Volunteer/Invitations/Invitations.mocks/README.md b/docs/docs/auto-docs/screens/UserPortal/Volunteer/Invitations/Invitations.mocks/README.md deleted file mode 100644 index 205f594b35..0000000000 --- a/docs/docs/auto-docs/screens/UserPortal/Volunteer/Invitations/Invitations.mocks/README.md +++ /dev/null @@ -1,14 +0,0 @@ -[**talawa-admin**](../../../../../README.md) - -*** - -[talawa-admin](../../../../../modules.md) / screens/UserPortal/Volunteer/Invitations/Invitations.mocks - -# screens/UserPortal/Volunteer/Invitations/Invitations.mocks - -## Variables - -- [EMPTY\_MOCKS](variables/EMPTY_MOCKS.md) -- [ERROR\_MOCKS](variables/ERROR_MOCKS.md) -- [MOCKS](variables/MOCKS.md) -- [UPDATE\_ERROR\_MOCKS](variables/UPDATE_ERROR_MOCKS.md) diff --git a/docs/docs/auto-docs/screens/UserPortal/Volunteer/Invitations/Invitations.mocks/variables/EMPTY_MOCKS.md b/docs/docs/auto-docs/screens/UserPortal/Volunteer/Invitations/Invitations.mocks/variables/EMPTY_MOCKS.md deleted file mode 100644 index 71818983f0..0000000000 --- a/docs/docs/auto-docs/screens/UserPortal/Volunteer/Invitations/Invitations.mocks/variables/EMPTY_MOCKS.md +++ /dev/null @@ -1,53 +0,0 @@ -[**talawa-admin**](../../../../../../README.md) - -*** - -[talawa-admin](../../../../../../modules.md) / [screens/UserPortal/Volunteer/Invitations/Invitations.mocks](../README.md) / EMPTY\_MOCKS - -# Variable: EMPTY\_MOCKS - -> `const` **EMPTY\_MOCKS**: `object`[] - -Defined in: [src/screens/UserPortal/Volunteer/Invitations/Invitations.mocks.ts:189](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/UserPortal/Volunteer/Invitations/Invitations.mocks.ts#L189) - -## Type declaration - -### request - -> **request**: `object` - -#### request.query - -> **query**: `DocumentNode` = `USER_VOLUNTEER_MEMBERSHIP` - -#### request.variables - -> **variables**: `object` - -#### request.variables.where - -> **where**: `object` - -#### request.variables.where.filter - -> **filter**: `any` = `null` - -#### request.variables.where.status - -> **status**: `string` = `'invited'` - -#### request.variables.where.userId - -> **userId**: `string` = `'userId'` - -### result - -> **result**: `object` - -#### result.data - -> **data**: `object` - -#### result.data.getVolunteerMembership - -> **getVolunteerMembership**: `any`[] = `[]` diff --git a/docs/docs/auto-docs/screens/UserPortal/Volunteer/Invitations/Invitations.mocks/variables/ERROR_MOCKS.md b/docs/docs/auto-docs/screens/UserPortal/Volunteer/Invitations/Invitations.mocks/variables/ERROR_MOCKS.md deleted file mode 100644 index 8c2bafed7e..0000000000 --- a/docs/docs/auto-docs/screens/UserPortal/Volunteer/Invitations/Invitations.mocks/variables/ERROR_MOCKS.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../../../README.md) - -*** - -[talawa-admin](../../../../../../modules.md) / [screens/UserPortal/Volunteer/Invitations/Invitations.mocks](../README.md) / ERROR\_MOCKS - -# Variable: ERROR\_MOCKS - -> `const` **ERROR\_MOCKS**: (\{ `error`: `Error`; `request`: \{ `query`: `DocumentNode`; `variables`: \{ `id`: `undefined`; `status`: `undefined`; `where`: \{ `filter`: `any`; `status`: `string`; `userId`: `string`; \}; \}; \}; \} \| \{ `error`: `Error`; `request`: \{ `query`: `DocumentNode`; `variables`: \{ `id`: `string`; `status`: `string`; `where`: `undefined`; \}; \}; \})[] - -Defined in: [src/screens/UserPortal/Volunteer/Invitations/Invitations.mocks.ts:209](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/UserPortal/Volunteer/Invitations/Invitations.mocks.ts#L209) diff --git a/docs/docs/auto-docs/screens/UserPortal/Volunteer/Invitations/Invitations.mocks/variables/MOCKS.md b/docs/docs/auto-docs/screens/UserPortal/Volunteer/Invitations/Invitations.mocks/variables/MOCKS.md deleted file mode 100644 index 2faaf1c1be..0000000000 --- a/docs/docs/auto-docs/screens/UserPortal/Volunteer/Invitations/Invitations.mocks/variables/MOCKS.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../../../README.md) - -*** - -[talawa-admin](../../../../../../modules.md) / [screens/UserPortal/Volunteer/Invitations/Invitations.mocks](../README.md) / MOCKS - -# Variable: MOCKS - -> `const` **MOCKS**: (\{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `id`: `undefined`; `orderBy`: `undefined`; `status`: `undefined`; `where`: \{ `eventTitle`: `undefined`; `filter`: `any`; `status`: `string`; `userId`: `string`; \}; \}; \}; `result`: \{ `data`: \{ `getVolunteerMembership`: (\{ `_id`: `string`; `createdAt`: `string`; `event`: \{ `_id`: `string`; `startDate`: `string`; `title`: `string`; \}; `group`: `any`; `status`: `string`; `volunteer`: \{ `_id`: `string`; `user`: \{ `_id`: `string`; `firstName`: `string`; `image`: `string`; `lastName`: `string`; \}; \}; \} \| \{ `_id`: `string`; `createdAt`: `string`; `event`: \{ `_id`: `string`; `startDate`: `string`; `title`: `string`; \}; `group`: \{ `_id`: `string`; `name`: `string`; \}; `status`: `string`; `volunteer`: \{ `_id`: `string`; `user`: \{ `_id`: `string`; `firstName`: `string`; `image`: `any`; `lastName`: `string`; \}; \}; \})[]; `updateVolunteerMembership`: `undefined`; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `id`: `undefined`; `orderBy`: `string`; `status`: `undefined`; `where`: \{ `eventTitle`: `undefined`; `filter`: `any`; `status`: `string`; `userId`: `string`; \}; \}; \}; `result`: \{ `data`: \{ `getVolunteerMembership`: (\{ `_id`: `string`; `createdAt`: `string`; `event`: \{ `_id`: `string`; `startDate`: `string`; `title`: `string`; \}; `group`: `any`; `status`: `string`; `volunteer`: \{ `_id`: `string`; `user`: \{ `_id`: `string`; `firstName`: `string`; `image`: `string`; `lastName`: `string`; \}; \}; \} \| \{ `_id`: `string`; `createdAt`: `string`; `event`: \{ `_id`: `string`; `startDate`: `string`; `title`: `string`; \}; `group`: \{ `_id`: `string`; `name`: `string`; \}; `status`: `string`; `volunteer`: \{ `_id`: `string`; `user`: \{ `_id`: `string`; `firstName`: `string`; `image`: `any`; `lastName`: `string`; \}; \}; \})[]; `updateVolunteerMembership`: `undefined`; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `id`: `undefined`; `orderBy`: `undefined`; `status`: `undefined`; `where`: \{ `eventTitle`: `undefined`; `filter`: `string`; `status`: `string`; `userId`: `string`; \}; \}; \}; `result`: \{ `data`: \{ `getVolunteerMembership`: `object`[]; `updateVolunteerMembership`: `undefined`; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `id`: `undefined`; `orderBy`: `undefined`; `status`: `undefined`; `where`: \{ `eventTitle`: `undefined`; `filter`: `string`; `status`: `string`; `userId`: `string`; \}; \}; \}; `result`: \{ `data`: \{ `getVolunteerMembership`: `object`[]; `updateVolunteerMembership`: `undefined`; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `id`: `undefined`; `orderBy`: `undefined`; `status`: `undefined`; `where`: \{ `eventTitle`: `string`; `filter`: `any`; `status`: `string`; `userId`: `string`; \}; \}; \}; `result`: \{ `data`: \{ `getVolunteerMembership`: `object`[]; `updateVolunteerMembership`: `undefined`; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `id`: `string`; `orderBy`: `undefined`; `status`: `string`; `where`: `undefined`; \}; \}; `result`: \{ `data`: \{ `getVolunteerMembership`: `undefined`; `updateVolunteerMembership`: \{ `_id`: `string`; \}; \}; \}; \})[] - -Defined in: [src/screens/UserPortal/Volunteer/Invitations/Invitations.mocks.ts:49](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/UserPortal/Volunteer/Invitations/Invitations.mocks.ts#L49) diff --git a/docs/docs/auto-docs/screens/UserPortal/Volunteer/Invitations/Invitations.mocks/variables/UPDATE_ERROR_MOCKS.md b/docs/docs/auto-docs/screens/UserPortal/Volunteer/Invitations/Invitations.mocks/variables/UPDATE_ERROR_MOCKS.md deleted file mode 100644 index b1d3ede33d..0000000000 --- a/docs/docs/auto-docs/screens/UserPortal/Volunteer/Invitations/Invitations.mocks/variables/UPDATE_ERROR_MOCKS.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../../../README.md) - -*** - -[talawa-admin](../../../../../../modules.md) / [screens/UserPortal/Volunteer/Invitations/Invitations.mocks](../README.md) / UPDATE\_ERROR\_MOCKS - -# Variable: UPDATE\_ERROR\_MOCKS - -> `const` **UPDATE\_ERROR\_MOCKS**: (\{ `error`: `undefined`; `request`: \{ `query`: `DocumentNode`; `variables`: \{ `id`: `undefined`; `status`: `undefined`; `where`: \{ `filter`: `any`; `status`: `string`; `userId`: `string`; \}; \}; \}; `result`: \{ `data`: \{ `getVolunteerMembership`: (\{ `_id`: `string`; `createdAt`: `string`; `event`: \{ `_id`: `string`; `startDate`: `string`; `title`: `string`; \}; `group`: `any`; `status`: `string`; `volunteer`: \{ `_id`: `string`; `user`: \{ `_id`: `string`; `firstName`: `string`; `image`: `string`; `lastName`: `string`; \}; \}; \} \| \{ `_id`: `string`; `createdAt`: `string`; `event`: \{ `_id`: `string`; `startDate`: `string`; `title`: `string`; \}; `group`: \{ `_id`: `string`; `name`: `string`; \}; `status`: `string`; `volunteer`: \{ `_id`: `string`; `user`: \{ `_id`: `string`; `firstName`: `string`; `image`: `any`; `lastName`: `string`; \}; \}; \})[]; \}; \}; \} \| \{ `error`: `Error`; `request`: \{ `query`: `DocumentNode`; `variables`: \{ `id`: `string`; `status`: `string`; `where`: `undefined`; \}; \}; `result`: `undefined`; \})[] - -Defined in: [src/screens/UserPortal/Volunteer/Invitations/Invitations.mocks.ts:235](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/UserPortal/Volunteer/Invitations/Invitations.mocks.ts#L235) diff --git a/docs/docs/auto-docs/screens/UserPortal/Volunteer/Invitations/Invitations/README.md b/docs/docs/auto-docs/screens/UserPortal/Volunteer/Invitations/Invitations/README.md deleted file mode 100644 index 42bc4fdae1..0000000000 --- a/docs/docs/auto-docs/screens/UserPortal/Volunteer/Invitations/Invitations/README.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../../README.md) - -*** - -[talawa-admin](../../../../../modules.md) / screens/UserPortal/Volunteer/Invitations/Invitations - -# screens/UserPortal/Volunteer/Invitations/Invitations - -## Functions - -- [default](functions/default.md) diff --git a/docs/docs/auto-docs/screens/UserPortal/Volunteer/Invitations/Invitations/functions/default.md b/docs/docs/auto-docs/screens/UserPortal/Volunteer/Invitations/Invitations/functions/default.md deleted file mode 100644 index 7960f2e9c9..0000000000 --- a/docs/docs/auto-docs/screens/UserPortal/Volunteer/Invitations/Invitations/functions/default.md +++ /dev/null @@ -1,20 +0,0 @@ -[**talawa-admin**](../../../../../../README.md) - -*** - -[talawa-admin](../../../../../../modules.md) / [screens/UserPortal/Volunteer/Invitations/Invitations](../README.md) / default - -# Function: default() - -> **default**(): `Element` - -Defined in: [src/screens/UserPortal/Volunteer/Invitations/Invitations.tsx:32](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/UserPortal/Volunteer/Invitations/Invitations.tsx#L32) - -The `Invitations` component displays list of invites for the user to volunteer. -It allows the user to search, sort, and accept/reject invites. - -## Returns - -`Element` - -The rendered component displaying the upcoming events. diff --git a/docs/docs/auto-docs/screens/UserPortal/Volunteer/UpcomingEvents/UpcomingEvents.mocks/README.md b/docs/docs/auto-docs/screens/UserPortal/Volunteer/UpcomingEvents/UpcomingEvents.mocks/README.md deleted file mode 100644 index f5e969cd87..0000000000 --- a/docs/docs/auto-docs/screens/UserPortal/Volunteer/UpcomingEvents/UpcomingEvents.mocks/README.md +++ /dev/null @@ -1,14 +0,0 @@ -[**talawa-admin**](../../../../../README.md) - -*** - -[talawa-admin](../../../../../modules.md) / screens/UserPortal/Volunteer/UpcomingEvents/UpcomingEvents.mocks - -# screens/UserPortal/Volunteer/UpcomingEvents/UpcomingEvents.mocks - -## Variables - -- [CREATE\_ERROR\_MOCKS](variables/CREATE_ERROR_MOCKS.md) -- [EMPTY\_MOCKS](variables/EMPTY_MOCKS.md) -- [ERROR\_MOCKS](variables/ERROR_MOCKS.md) -- [MOCKS](variables/MOCKS.md) diff --git a/docs/docs/auto-docs/screens/UserPortal/Volunteer/UpcomingEvents/UpcomingEvents.mocks/variables/CREATE_ERROR_MOCKS.md b/docs/docs/auto-docs/screens/UserPortal/Volunteer/UpcomingEvents/UpcomingEvents.mocks/variables/CREATE_ERROR_MOCKS.md deleted file mode 100644 index b126e405be..0000000000 --- a/docs/docs/auto-docs/screens/UserPortal/Volunteer/UpcomingEvents/UpcomingEvents.mocks/variables/CREATE_ERROR_MOCKS.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../../../README.md) - -*** - -[talawa-admin](../../../../../../modules.md) / [screens/UserPortal/Volunteer/UpcomingEvents/UpcomingEvents.mocks](../README.md) / CREATE\_ERROR\_MOCKS - -# Variable: CREATE\_ERROR\_MOCKS - -> `const` **CREATE\_ERROR\_MOCKS**: (\{ `error`: `undefined`; `request`: \{ `query`: `DocumentNode`; `variables`: \{ `data`: `undefined`; `first`: `any`; `location_contains`: `string`; `organization_id`: `string`; `skip`: `any`; `title_contains`: `string`; `upcomingOnly`: `boolean`; \}; \}; `result`: \{ `data`: \{ `eventsByOrganizationConnection`: `object`[]; \}; \}; \} \| \{ `error`: `Error`; `request`: \{ `query`: `DocumentNode`; `variables`: \{ `data`: \{ `event`: `string`; `group`: `any`; `status`: `string`; `userId`: `string`; \}; `first`: `undefined`; `location_contains`: `undefined`; `organization_id`: `undefined`; `skip`: `undefined`; `title_contains`: `undefined`; `upcomingOnly`: `undefined`; \}; \}; `result`: `undefined`; \})[] - -Defined in: [src/screens/UserPortal/Volunteer/UpcomingEvents/UpcomingEvents.mocks.ts:248](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/UserPortal/Volunteer/UpcomingEvents/UpcomingEvents.mocks.ts#L248) diff --git a/docs/docs/auto-docs/screens/UserPortal/Volunteer/UpcomingEvents/UpcomingEvents.mocks/variables/EMPTY_MOCKS.md b/docs/docs/auto-docs/screens/UserPortal/Volunteer/UpcomingEvents/UpcomingEvents.mocks/variables/EMPTY_MOCKS.md deleted file mode 100644 index b62f711bbc..0000000000 --- a/docs/docs/auto-docs/screens/UserPortal/Volunteer/UpcomingEvents/UpcomingEvents.mocks/variables/EMPTY_MOCKS.md +++ /dev/null @@ -1,61 +0,0 @@ -[**talawa-admin**](../../../../../../README.md) - -*** - -[talawa-admin](../../../../../../modules.md) / [screens/UserPortal/Volunteer/UpcomingEvents/UpcomingEvents.mocks](../README.md) / EMPTY\_MOCKS - -# Variable: EMPTY\_MOCKS - -> `const` **EMPTY\_MOCKS**: `object`[] - -Defined in: [src/screens/UserPortal/Volunteer/UpcomingEvents/UpcomingEvents.mocks.ts:210](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/UserPortal/Volunteer/UpcomingEvents/UpcomingEvents.mocks.ts#L210) - -## Type declaration - -### request - -> **request**: `object` - -#### request.query - -> **query**: `DocumentNode` = `USER_EVENTS_VOLUNTEER` - -#### request.variables - -> **variables**: `object` - -#### request.variables.first - -> **first**: `any` = `null` - -#### request.variables.location\_contains - -> **location\_contains**: `string` = `''` - -#### request.variables.organization\_id - -> **organization\_id**: `string` = `'orgId'` - -#### request.variables.skip - -> **skip**: `any` = `null` - -#### request.variables.title\_contains - -> **title\_contains**: `string` = `''` - -#### request.variables.upcomingOnly - -> **upcomingOnly**: `boolean` = `true` - -### result - -> **result**: `object` - -#### result.data - -> **data**: `object` - -#### result.data.eventsByOrganizationConnection - -> **eventsByOrganizationConnection**: `any`[] = `[]` diff --git a/docs/docs/auto-docs/screens/UserPortal/Volunteer/UpcomingEvents/UpcomingEvents.mocks/variables/ERROR_MOCKS.md b/docs/docs/auto-docs/screens/UserPortal/Volunteer/UpcomingEvents/UpcomingEvents.mocks/variables/ERROR_MOCKS.md deleted file mode 100644 index 9f9be734e4..0000000000 --- a/docs/docs/auto-docs/screens/UserPortal/Volunteer/UpcomingEvents/UpcomingEvents.mocks/variables/ERROR_MOCKS.md +++ /dev/null @@ -1,53 +0,0 @@ -[**talawa-admin**](../../../../../../README.md) - -*** - -[talawa-admin](../../../../../../modules.md) / [screens/UserPortal/Volunteer/UpcomingEvents/UpcomingEvents.mocks](../README.md) / ERROR\_MOCKS - -# Variable: ERROR\_MOCKS - -> `const` **ERROR\_MOCKS**: `object`[] - -Defined in: [src/screens/UserPortal/Volunteer/UpcomingEvents/UpcomingEvents.mocks.ts:231](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/UserPortal/Volunteer/UpcomingEvents/UpcomingEvents.mocks.ts#L231) - -## Type declaration - -### error - -> **error**: `Error` - -### request - -> **request**: `object` - -#### request.query - -> **query**: `DocumentNode` = `USER_EVENTS_VOLUNTEER` - -#### request.variables - -> **variables**: `object` - -#### request.variables.first - -> **first**: `any` = `null` - -#### request.variables.location\_contains - -> **location\_contains**: `string` = `''` - -#### request.variables.organization\_id - -> **organization\_id**: `string` = `'orgId'` - -#### request.variables.skip - -> **skip**: `any` = `null` - -#### request.variables.title\_contains - -> **title\_contains**: `string` = `''` - -#### request.variables.upcomingOnly - -> **upcomingOnly**: `boolean` = `true` diff --git a/docs/docs/auto-docs/screens/UserPortal/Volunteer/UpcomingEvents/UpcomingEvents.mocks/variables/MOCKS.md b/docs/docs/auto-docs/screens/UserPortal/Volunteer/UpcomingEvents/UpcomingEvents.mocks/variables/MOCKS.md deleted file mode 100644 index f466a20de4..0000000000 --- a/docs/docs/auto-docs/screens/UserPortal/Volunteer/UpcomingEvents/UpcomingEvents.mocks/variables/MOCKS.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../../../README.md) - -*** - -[talawa-admin](../../../../../../modules.md) / [screens/UserPortal/Volunteer/UpcomingEvents/UpcomingEvents.mocks](../README.md) / MOCKS - -# Variable: MOCKS - -> `const` **MOCKS**: (\{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `data`: `undefined`; `first`: `any`; `location_contains`: `string`; `organization_id`: `string`; `skip`: `any`; `title_contains`: `string`; `upcomingOnly`: `boolean`; \}; \}; `result`: \{ `data`: \{ `createVolunteerMembership`: `undefined`; `eventsByOrganizationConnection`: `object`[]; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `data`: \{ `event`: `string`; `group`: `string`; `status`: `string`; `userId`: `string`; \}; `first`: `undefined`; `location_contains`: `undefined`; `organization_id`: `undefined`; `skip`: `undefined`; `title_contains`: `undefined`; `upcomingOnly`: `undefined`; \}; \}; `result`: \{ `data`: \{ `createVolunteerMembership`: \{ `_id`: `string`; \}; `eventsByOrganizationConnection`: `undefined`; \}; \}; \})[] - -Defined in: [src/screens/UserPortal/Volunteer/UpcomingEvents/UpcomingEvents.mocks.ts:113](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/UserPortal/Volunteer/UpcomingEvents/UpcomingEvents.mocks.ts#L113) diff --git a/docs/docs/auto-docs/screens/UserPortal/Volunteer/UpcomingEvents/UpcomingEvents/README.md b/docs/docs/auto-docs/screens/UserPortal/Volunteer/UpcomingEvents/UpcomingEvents/README.md deleted file mode 100644 index b1e26a9030..0000000000 --- a/docs/docs/auto-docs/screens/UserPortal/Volunteer/UpcomingEvents/UpcomingEvents/README.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../../README.md) - -*** - -[talawa-admin](../../../../../modules.md) / screens/UserPortal/Volunteer/UpcomingEvents/UpcomingEvents - -# screens/UserPortal/Volunteer/UpcomingEvents/UpcomingEvents - -## Functions - -- [default](functions/default.md) diff --git a/docs/docs/auto-docs/screens/UserPortal/Volunteer/UpcomingEvents/UpcomingEvents/functions/default.md b/docs/docs/auto-docs/screens/UserPortal/Volunteer/UpcomingEvents/UpcomingEvents/functions/default.md deleted file mode 100644 index 350e909b0a..0000000000 --- a/docs/docs/auto-docs/screens/UserPortal/Volunteer/UpcomingEvents/UpcomingEvents/functions/default.md +++ /dev/null @@ -1,20 +0,0 @@ -[**talawa-admin**](../../../../../../README.md) - -*** - -[talawa-admin](../../../../../../modules.md) / [screens/UserPortal/Volunteer/UpcomingEvents/UpcomingEvents](../README.md) / default - -# Function: default() - -> **default**(): `Element` - -Defined in: [src/screens/UserPortal/Volunteer/UpcomingEvents/UpcomingEvents.tsx:42](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/UserPortal/Volunteer/UpcomingEvents/UpcomingEvents.tsx#L42) - -The `UpcomingEvents` component displays list of upcoming events for the user to volunteer. -It allows the user to search, sort, and volunteer for events/volunteer groups. - -## Returns - -`Element` - -The rendered component displaying the upcoming events. diff --git a/docs/docs/auto-docs/screens/UserPortal/Volunteer/VolunteerManagement/README.md b/docs/docs/auto-docs/screens/UserPortal/Volunteer/VolunteerManagement/README.md deleted file mode 100644 index 0953d11021..0000000000 --- a/docs/docs/auto-docs/screens/UserPortal/Volunteer/VolunteerManagement/README.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / screens/UserPortal/Volunteer/VolunteerManagement - -# screens/UserPortal/Volunteer/VolunteerManagement - -## Functions - -- [default](functions/default.md) diff --git a/docs/docs/auto-docs/screens/UserPortal/Volunteer/VolunteerManagement/functions/default.md b/docs/docs/auto-docs/screens/UserPortal/Volunteer/VolunteerManagement/functions/default.md deleted file mode 100644 index ad11a489a8..0000000000 --- a/docs/docs/auto-docs/screens/UserPortal/Volunteer/VolunteerManagement/functions/default.md +++ /dev/null @@ -1,25 +0,0 @@ -[**talawa-admin**](../../../../../README.md) - -*** - -[talawa-admin](../../../../../modules.md) / [screens/UserPortal/Volunteer/VolunteerManagement](../README.md) / default - -# Function: default() - -> **default**(): `Element` - -Defined in: [src/screens/UserPortal/Volunteer/VolunteerManagement.tsx:58](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/UserPortal/Volunteer/VolunteerManagement.tsx#L58) - -`VolunteerManagement` component handles the display and navigation of different event management sections. - -It provides a tabbed interface for: -- Viewing upcoming events to volunteer -- Managing volunteer requests -- Managing volunteer invitations -- Managing volunteer groups - -## Returns - -`Element` - -JSX.Element - The `VolunteerManagement` component. diff --git a/docs/docs/auto-docs/screens/Users/Users/README.md b/docs/docs/auto-docs/screens/Users/Users/README.md deleted file mode 100644 index c5507d7ad8..0000000000 --- a/docs/docs/auto-docs/screens/Users/Users/README.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / screens/Users/Users - -# screens/Users/Users - -## Functions - -- [default](functions/default.md) diff --git a/docs/docs/auto-docs/screens/Users/Users/functions/default.md b/docs/docs/auto-docs/screens/Users/Users/functions/default.md deleted file mode 100644 index e4b8bde37e..0000000000 --- a/docs/docs/auto-docs/screens/Users/Users/functions/default.md +++ /dev/null @@ -1,55 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [screens/Users/Users](../README.md) / default - -# Function: default() - -> **default**(): `Element` - -Defined in: [src/screens/Users/Users.tsx:64](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/Users/Users.tsx#L64) - -The `Users` component is responsible for displaying a list of users in a paginated and sortable format. -It supports search functionality, filtering, and sorting of users. The component integrates with GraphQL -for fetching and managing user data and displays results with infinite scrolling. - -## Features: -- **Search:** Allows users to search for users by their first name. -- **Sorting:** Provides options to sort users by creation date (newest or oldest). -- **Filtering:** Enables filtering users based on their roles (admin, superadmin, user, etc.). -- **Pagination:** Utilizes infinite scrolling to load more users as the user scrolls down. - -## GraphQL Queries: -- `USER_LIST`: Fetches a list of users with specified search, sorting, and pagination parameters. -- `ORGANIZATION_CONNECTION_LIST`: Fetches a list of organizations to verify organization existence. - -## Component State: -- `isLoading`: Indicates whether the component is currently loading data. -- `hasMore`: Indicates if there are more users to load. -- `isLoadingMore`: Indicates if more users are currently being loaded. -- `searchByName`: The current search query for user names. -- `sortingOption`: The current sorting option (newest or oldest). -- `filteringOption`: The current filtering option (admin, superadmin, user, cancel). -- `displayedUsers`: The list of users currently displayed, filtered and sorted. - -## Event Handlers: -- `handleSearch`: Handles searching users by name and refetches the user list. -- `handleSearchByEnter`: Handles search input when the Enter key is pressed. -- `handleSearchByBtnClick`: Handles search input when the search button is clicked. -- `resetAndRefetch`: Resets search and refetches the user list with default parameters. -- `loadMoreUsers`: Loads more users when scrolling reaches the end of the list. -- `handleSorting`: Updates sorting option and refetches the user list. -- `handleFiltering`: Updates filtering option and refetches the user list. - -## Rendering: -- Displays a search input and button for searching users. -- Provides dropdowns for sorting and filtering users. -- Renders a table of users with infinite scrolling support. -- Shows appropriate messages when no users are found or when search yields no results. - -## Returns - -`Element` - -The rendered `Users` component. diff --git a/docs/docs/auto-docs/screens/Users/UsersMocks/README.md b/docs/docs/auto-docs/screens/Users/UsersMocks/README.md deleted file mode 100644 index b81d997236..0000000000 --- a/docs/docs/auto-docs/screens/Users/UsersMocks/README.md +++ /dev/null @@ -1,13 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / screens/Users/UsersMocks - -# screens/Users/UsersMocks - -## Variables - -- [EMPTY\_MOCKS](variables/EMPTY_MOCKS.md) -- [MOCKS](variables/MOCKS.md) -- [MOCKS2](variables/MOCKS2.md) diff --git a/docs/docs/auto-docs/screens/Users/UsersMocks/variables/EMPTY_MOCKS.md b/docs/docs/auto-docs/screens/Users/UsersMocks/variables/EMPTY_MOCKS.md deleted file mode 100644 index a2005fb05e..0000000000 --- a/docs/docs/auto-docs/screens/Users/UsersMocks/variables/EMPTY_MOCKS.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [screens/Users/UsersMocks](../README.md) / EMPTY\_MOCKS - -# Variable: EMPTY\_MOCKS - -> `const` **EMPTY\_MOCKS**: (\{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `first`: `number`; `firstName_contains`: `string`; `lastName_contains`: `string`; `skip`: `number`; \}; \}; `result`: \{ `data`: \{ `organizationsConnection`: `undefined`; `users`: `any`[]; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: `undefined`; \}; `result`: \{ `data`: \{ `organizationsConnection`: `any`[]; `users`: `undefined`; \}; \}; \})[] - -Defined in: [src/screens/Users/UsersMocks.ts:477](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/Users/UsersMocks.ts#L477) diff --git a/docs/docs/auto-docs/screens/Users/UsersMocks/variables/MOCKS.md b/docs/docs/auto-docs/screens/Users/UsersMocks/variables/MOCKS.md deleted file mode 100644 index 8be94e695b..0000000000 --- a/docs/docs/auto-docs/screens/Users/UsersMocks/variables/MOCKS.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [screens/Users/UsersMocks](../README.md) / MOCKS - -# Variable: MOCKS - -> `const` **MOCKS**: (\{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `first`: `undefined`; `firstName_contains`: `undefined`; `id`: `string`; `lastName_contains`: `undefined`; `skip`: `undefined`; \}; \}; `result`: \{ `data`: \{ `organizationsConnection`: `undefined`; `user`: \{ `email`: `string`; `firstName`: `string`; `image`: `string`; `lastName`: `string`; \}; `users`: `undefined`; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `first`: `number`; `firstName_contains`: `string`; `id`: `undefined`; `lastName_contains`: `string`; `skip`: `number`; \}; \}; `result`: \{ `data`: \{ `organizationsConnection`: `undefined`; `user`: `undefined`; `users`: `object`[]; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: `undefined`; \}; `result`: \{ `data`: \{ `organizationsConnection`: `object`[]; `user`: `undefined`; `users`: `undefined`; \}; \}; \})[] - -Defined in: [src/screens/Users/UsersMocks.ts:7](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/Users/UsersMocks.ts#L7) diff --git a/docs/docs/auto-docs/screens/Users/UsersMocks/variables/MOCKS2.md b/docs/docs/auto-docs/screens/Users/UsersMocks/variables/MOCKS2.md deleted file mode 100644 index cd8533a65a..0000000000 --- a/docs/docs/auto-docs/screens/Users/UsersMocks/variables/MOCKS2.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [screens/Users/UsersMocks](../README.md) / MOCKS2 - -# Variable: MOCKS2 - -> `const` **MOCKS2**: (\{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `first`: `undefined`; `firstName_contains`: `undefined`; `id`: `string`; `lastName_contains`: `undefined`; `skip`: `undefined`; \}; \}; `result`: \{ `data`: \{ `organizationsConnection`: `undefined`; `user`: \{ `email`: `string`; `firstName`: `string`; `image`: `string`; `lastName`: `string`; \}; `users`: `undefined`; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `first`: `number`; `firstName_contains`: `string`; `id`: `undefined`; `lastName_contains`: `string`; `skip`: `number`; \}; \}; `result`: \{ `data`: \{ `organizationsConnection`: `undefined`; `user`: `undefined`; `users`: `object`[]; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: `undefined`; \}; `result`: \{ `data`: \{ `organizationsConnection`: `object`[]; `user`: `undefined`; `users`: `undefined`; \}; \}; \})[] - -Defined in: [src/screens/Users/UsersMocks.ts:242](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/screens/Users/UsersMocks.ts#L242) diff --git a/docs/docs/auto-docs/setup/askAndSetDockerOption/askAndSetDockerOption/README.md b/docs/docs/auto-docs/setup/askAndSetDockerOption/askAndSetDockerOption/README.md deleted file mode 100644 index 5bc0942e50..0000000000 --- a/docs/docs/auto-docs/setup/askAndSetDockerOption/askAndSetDockerOption/README.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / setup/askAndSetDockerOption/askAndSetDockerOption - -# setup/askAndSetDockerOption/askAndSetDockerOption - -## Functions - -- [default](functions/default.md) diff --git a/docs/docs/auto-docs/setup/askAndSetDockerOption/askAndSetDockerOption/functions/default.md b/docs/docs/auto-docs/setup/askAndSetDockerOption/askAndSetDockerOption/functions/default.md deleted file mode 100644 index cf03440a84..0000000000 --- a/docs/docs/auto-docs/setup/askAndSetDockerOption/askAndSetDockerOption/functions/default.md +++ /dev/null @@ -1,15 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [setup/askAndSetDockerOption/askAndSetDockerOption](../README.md) / default - -# Function: default() - -> **default**(): `Promise`\<`void`\> - -Defined in: [src/setup/askAndSetDockerOption/askAndSetDockerOption.ts:6](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/setup/askAndSetDockerOption/askAndSetDockerOption.ts#L6) - -## Returns - -`Promise`\<`void`\> diff --git a/docs/docs/auto-docs/setup/askAndUpdatePort/askAndUpdatePort/README.md b/docs/docs/auto-docs/setup/askAndUpdatePort/askAndUpdatePort/README.md deleted file mode 100644 index 4e2b85a2e9..0000000000 --- a/docs/docs/auto-docs/setup/askAndUpdatePort/askAndUpdatePort/README.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / setup/askAndUpdatePort/askAndUpdatePort - -# setup/askAndUpdatePort/askAndUpdatePort - -## Functions - -- [default](functions/default.md) diff --git a/docs/docs/auto-docs/setup/askAndUpdatePort/askAndUpdatePort/functions/default.md b/docs/docs/auto-docs/setup/askAndUpdatePort/askAndUpdatePort/functions/default.md deleted file mode 100644 index bc7efe8fcf..0000000000 --- a/docs/docs/auto-docs/setup/askAndUpdatePort/askAndUpdatePort/functions/default.md +++ /dev/null @@ -1,15 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [setup/askAndUpdatePort/askAndUpdatePort](../README.md) / default - -# Function: default() - -> **default**(): `Promise`\<`void`\> - -Defined in: [src/setup/askAndUpdatePort/askAndUpdatePort.ts:6](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/setup/askAndUpdatePort/askAndUpdatePort.ts#L6) - -## Returns - -`Promise`\<`void`\> diff --git a/docs/docs/auto-docs/setup/askForCustomPort/askForCustomPort/README.md b/docs/docs/auto-docs/setup/askForCustomPort/askForCustomPort/README.md deleted file mode 100644 index c8b95ca472..0000000000 --- a/docs/docs/auto-docs/setup/askForCustomPort/askForCustomPort/README.md +++ /dev/null @@ -1,13 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / setup/askForCustomPort/askForCustomPort - -# setup/askForCustomPort/askForCustomPort - -## Functions - -- [askForCustomPort](functions/askForCustomPort.md) -- [reservedPortWarning](functions/reservedPortWarning.md) -- [validatePort](functions/validatePort.md) diff --git a/docs/docs/auto-docs/setup/askForCustomPort/askForCustomPort/functions/askForCustomPort.md b/docs/docs/auto-docs/setup/askForCustomPort/askForCustomPort/functions/askForCustomPort.md deleted file mode 100644 index ef3141856f..0000000000 --- a/docs/docs/auto-docs/setup/askForCustomPort/askForCustomPort/functions/askForCustomPort.md +++ /dev/null @@ -1,15 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [setup/askForCustomPort/askForCustomPort](../README.md) / askForCustomPort - -# Function: askForCustomPort() - -> **askForCustomPort**(): `Promise`\<`number`\> - -Defined in: [src/setup/askForCustomPort/askForCustomPort.ts:32](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/setup/askForCustomPort/askForCustomPort.ts#L32) - -## Returns - -`Promise`\<`number`\> diff --git a/docs/docs/auto-docs/setup/askForCustomPort/askForCustomPort/functions/reservedPortWarning.md b/docs/docs/auto-docs/setup/askForCustomPort/askForCustomPort/functions/reservedPortWarning.md deleted file mode 100644 index 27fd610209..0000000000 --- a/docs/docs/auto-docs/setup/askForCustomPort/askForCustomPort/functions/reservedPortWarning.md +++ /dev/null @@ -1,21 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [setup/askForCustomPort/askForCustomPort](../README.md) / reservedPortWarning - -# Function: reservedPortWarning() - -> **reservedPortWarning**(`port`): `Promise`\<`boolean`\> - -Defined in: [src/setup/askForCustomPort/askForCustomPort.ts:19](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/setup/askForCustomPort/askForCustomPort.ts#L19) - -## Parameters - -### port - -`number` - -## Returns - -`Promise`\<`boolean`\> diff --git a/docs/docs/auto-docs/setup/askForCustomPort/askForCustomPort/functions/validatePort.md b/docs/docs/auto-docs/setup/askForCustomPort/askForCustomPort/functions/validatePort.md deleted file mode 100644 index 6e147bae34..0000000000 --- a/docs/docs/auto-docs/setup/askForCustomPort/askForCustomPort/functions/validatePort.md +++ /dev/null @@ -1,21 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [setup/askForCustomPort/askForCustomPort](../README.md) / validatePort - -# Function: validatePort() - -> **validatePort**(`input`): `string` \| `boolean` - -Defined in: [src/setup/askForCustomPort/askForCustomPort.ts:6](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/setup/askForCustomPort/askForCustomPort.ts#L6) - -## Parameters - -### input - -`string` - -## Returns - -`string` \| `boolean` diff --git a/docs/docs/auto-docs/setup/askForDocker/askForDocker/README.md b/docs/docs/auto-docs/setup/askForDocker/askForDocker/README.md deleted file mode 100644 index b583b3e007..0000000000 --- a/docs/docs/auto-docs/setup/askForDocker/askForDocker/README.md +++ /dev/null @@ -1,12 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / setup/askForDocker/askForDocker - -# setup/askForDocker/askForDocker - -## Functions - -- [askAndUpdateTalawaApiUrl](functions/askAndUpdateTalawaApiUrl.md) -- [askForDocker](functions/askForDocker.md) diff --git a/docs/docs/auto-docs/setup/askForDocker/askForDocker/functions/askAndUpdateTalawaApiUrl.md b/docs/docs/auto-docs/setup/askForDocker/askForDocker/functions/askAndUpdateTalawaApiUrl.md deleted file mode 100644 index d4718f4fbb..0000000000 --- a/docs/docs/auto-docs/setup/askForDocker/askForDocker/functions/askAndUpdateTalawaApiUrl.md +++ /dev/null @@ -1,15 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [setup/askForDocker/askForDocker](../README.md) / askAndUpdateTalawaApiUrl - -# Function: askAndUpdateTalawaApiUrl() - -> **askAndUpdateTalawaApiUrl**(): `Promise`\<`void`\> - -Defined in: [src/setup/askForDocker/askForDocker.ts:33](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/setup/askForDocker/askForDocker.ts#L33) - -## Returns - -`Promise`\<`void`\> diff --git a/docs/docs/auto-docs/setup/askForDocker/askForDocker/functions/askForDocker.md b/docs/docs/auto-docs/setup/askForDocker/askForDocker/functions/askForDocker.md deleted file mode 100644 index 576cf24ae2..0000000000 --- a/docs/docs/auto-docs/setup/askForDocker/askForDocker/functions/askForDocker.md +++ /dev/null @@ -1,15 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [setup/askForDocker/askForDocker](../README.md) / askForDocker - -# Function: askForDocker() - -> **askForDocker**(): `Promise`\<`string`\> - -Defined in: [src/setup/askForDocker/askForDocker.ts:12](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/setup/askForDocker/askForDocker.ts#L12) - -## Returns - -`Promise`\<`string`\> diff --git a/docs/docs/auto-docs/setup/askForTalawaApiUrl/askForTalawaApiUrl/README.md b/docs/docs/auto-docs/setup/askForTalawaApiUrl/askForTalawaApiUrl/README.md deleted file mode 100644 index 6dc585fbca..0000000000 --- a/docs/docs/auto-docs/setup/askForTalawaApiUrl/askForTalawaApiUrl/README.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / setup/askForTalawaApiUrl/askForTalawaApiUrl - -# setup/askForTalawaApiUrl/askForTalawaApiUrl - -## Functions - -- [askForTalawaApiUrl](functions/askForTalawaApiUrl.md) diff --git a/docs/docs/auto-docs/setup/askForTalawaApiUrl/askForTalawaApiUrl/functions/askForTalawaApiUrl.md b/docs/docs/auto-docs/setup/askForTalawaApiUrl/askForTalawaApiUrl/functions/askForTalawaApiUrl.md deleted file mode 100644 index bb7a9c19af..0000000000 --- a/docs/docs/auto-docs/setup/askForTalawaApiUrl/askForTalawaApiUrl/functions/askForTalawaApiUrl.md +++ /dev/null @@ -1,15 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [setup/askForTalawaApiUrl/askForTalawaApiUrl](../README.md) / askForTalawaApiUrl - -# Function: askForTalawaApiUrl() - -> **askForTalawaApiUrl**(): `Promise`\<`string`\> - -Defined in: [src/setup/askForTalawaApiUrl/askForTalawaApiUrl.ts:3](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/setup/askForTalawaApiUrl/askForTalawaApiUrl.ts#L3) - -## Returns - -`Promise`\<`string`\> diff --git a/docs/docs/auto-docs/setup/checkConnection/checkConnection/README.md b/docs/docs/auto-docs/setup/checkConnection/checkConnection/README.md deleted file mode 100644 index fc95bee4c5..0000000000 --- a/docs/docs/auto-docs/setup/checkConnection/checkConnection/README.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / setup/checkConnection/checkConnection - -# setup/checkConnection/checkConnection - -## Functions - -- [checkConnection](functions/checkConnection.md) diff --git a/docs/docs/auto-docs/setup/checkConnection/checkConnection/functions/checkConnection.md b/docs/docs/auto-docs/setup/checkConnection/checkConnection/functions/checkConnection.md deleted file mode 100644 index a7530db9f2..0000000000 --- a/docs/docs/auto-docs/setup/checkConnection/checkConnection/functions/checkConnection.md +++ /dev/null @@ -1,21 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [setup/checkConnection/checkConnection](../README.md) / checkConnection - -# Function: checkConnection() - -> **checkConnection**(`url`): `Promise`\<`any`\> - -Defined in: [src/setup/checkConnection/checkConnection.ts:1](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/setup/checkConnection/checkConnection.ts#L1) - -## Parameters - -### url - -`string` - -## Returns - -`Promise`\<`any`\> diff --git a/docs/docs/auto-docs/setup/checkEnvFile/checkEnvFile/README.md b/docs/docs/auto-docs/setup/checkEnvFile/checkEnvFile/README.md deleted file mode 100644 index d31ac84642..0000000000 --- a/docs/docs/auto-docs/setup/checkEnvFile/checkEnvFile/README.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / setup/checkEnvFile/checkEnvFile - -# setup/checkEnvFile/checkEnvFile - -## Functions - -- [checkEnvFile](functions/checkEnvFile.md) diff --git a/docs/docs/auto-docs/setup/checkEnvFile/checkEnvFile/functions/checkEnvFile.md b/docs/docs/auto-docs/setup/checkEnvFile/checkEnvFile/functions/checkEnvFile.md deleted file mode 100644 index 724579034b..0000000000 --- a/docs/docs/auto-docs/setup/checkEnvFile/checkEnvFile/functions/checkEnvFile.md +++ /dev/null @@ -1,15 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [setup/checkEnvFile/checkEnvFile](../README.md) / checkEnvFile - -# Function: checkEnvFile() - -> **checkEnvFile**(): `void` - -Defined in: [src/setup/checkEnvFile/checkEnvFile.ts:6](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/setup/checkEnvFile/checkEnvFile.ts#L6) - -## Returns - -`void` diff --git a/docs/docs/auto-docs/setup/updateEnvFile/updateEnvFile/README.md b/docs/docs/auto-docs/setup/updateEnvFile/updateEnvFile/README.md deleted file mode 100644 index 2737884456..0000000000 --- a/docs/docs/auto-docs/setup/updateEnvFile/updateEnvFile/README.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / setup/updateEnvFile/updateEnvFile - -# setup/updateEnvFile/updateEnvFile - -## Functions - -- [default](functions/default.md) diff --git a/docs/docs/auto-docs/setup/updateEnvFile/updateEnvFile/functions/default.md b/docs/docs/auto-docs/setup/updateEnvFile/updateEnvFile/functions/default.md deleted file mode 100644 index 32e56a9d63..0000000000 --- a/docs/docs/auto-docs/setup/updateEnvFile/updateEnvFile/functions/default.md +++ /dev/null @@ -1,25 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [setup/updateEnvFile/updateEnvFile](../README.md) / default - -# Function: default() - -> **default**(`key`, `value`): `void` - -Defined in: [src/setup/updateEnvFile/updateEnvFile.ts:3](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/setup/updateEnvFile/updateEnvFile.ts#L3) - -## Parameters - -### key - -`string` - -### value - -`string` - -## Returns - -`void` diff --git a/docs/docs/auto-docs/setup/validateRecaptcha/validateRecaptcha/README.md b/docs/docs/auto-docs/setup/validateRecaptcha/validateRecaptcha/README.md deleted file mode 100644 index 0cd2f31bb8..0000000000 --- a/docs/docs/auto-docs/setup/validateRecaptcha/validateRecaptcha/README.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / setup/validateRecaptcha/validateRecaptcha - -# setup/validateRecaptcha/validateRecaptcha - -## Functions - -- [validateRecaptcha](functions/validateRecaptcha.md) diff --git a/docs/docs/auto-docs/setup/validateRecaptcha/validateRecaptcha/functions/validateRecaptcha.md b/docs/docs/auto-docs/setup/validateRecaptcha/validateRecaptcha/functions/validateRecaptcha.md deleted file mode 100644 index 0837a2957e..0000000000 --- a/docs/docs/auto-docs/setup/validateRecaptcha/validateRecaptcha/functions/validateRecaptcha.md +++ /dev/null @@ -1,21 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [setup/validateRecaptcha/validateRecaptcha](../README.md) / validateRecaptcha - -# Function: validateRecaptcha() - -> **validateRecaptcha**(`string`): `boolean` - -Defined in: [src/setup/validateRecaptcha/validateRecaptcha.ts:1](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/setup/validateRecaptcha/validateRecaptcha.ts#L1) - -## Parameters - -### string - -`string` - -## Returns - -`boolean` diff --git a/docs/docs/auto-docs/setupTests/README.md b/docs/docs/auto-docs/setupTests/README.md deleted file mode 100644 index 60ca3ade7d..0000000000 --- a/docs/docs/auto-docs/setupTests/README.md +++ /dev/null @@ -1,7 +0,0 @@ -[**talawa-admin**](../README.md) - -*** - -[talawa-admin](../modules.md) / setupTests - -# setupTests diff --git a/docs/docs/auto-docs/state/README.md b/docs/docs/auto-docs/state/README.md deleted file mode 100644 index cefc734da4..0000000000 --- a/docs/docs/auto-docs/state/README.md +++ /dev/null @@ -1,13 +0,0 @@ -[**talawa-admin**](../README.md) - -*** - -[talawa-admin](../modules.md) / state - -# state - -## References - -### actionCreators - -Renames and re-exports [state/action-creators](action-creators/README.md) diff --git a/docs/docs/auto-docs/state/action-creators/README.md b/docs/docs/auto-docs/state/action-creators/README.md deleted file mode 100644 index f511ab1645..0000000000 --- a/docs/docs/auto-docs/state/action-creators/README.md +++ /dev/null @@ -1,15 +0,0 @@ -[**talawa-admin**](../../README.md) - -*** - -[talawa-admin](../../modules.md) / state/action-creators - -# state/action-creators - -## Functions - -- [installPlugin](functions/installPlugin.md) -- [removePlugin](functions/removePlugin.md) -- [updateInstalled](functions/updateInstalled.md) -- [updatePluginLinks](functions/updatePluginLinks.md) -- [updateTargets](functions/updateTargets.md) diff --git a/docs/docs/auto-docs/state/action-creators/functions/installPlugin.md b/docs/docs/auto-docs/state/action-creators/functions/installPlugin.md deleted file mode 100644 index 2c093e94a8..0000000000 --- a/docs/docs/auto-docs/state/action-creators/functions/installPlugin.md +++ /dev/null @@ -1,31 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / [state/action-creators](../README.md) / installPlugin - -# Function: installPlugin() - -> **installPlugin**(`plugin`): (`dispatch`) => `void` - -Defined in: [src/state/action-creators/index.ts:10](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/state/action-creators/index.ts#L10) - -## Parameters - -### plugin - -`any` - -## Returns - -`Function` - -### Parameters - -#### dispatch - -`any` - -### Returns - -`void` diff --git a/docs/docs/auto-docs/state/action-creators/functions/removePlugin.md b/docs/docs/auto-docs/state/action-creators/functions/removePlugin.md deleted file mode 100644 index 8c8b5b8a32..0000000000 --- a/docs/docs/auto-docs/state/action-creators/functions/removePlugin.md +++ /dev/null @@ -1,31 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / [state/action-creators](../README.md) / removePlugin - -# Function: removePlugin() - -> **removePlugin**(`plugin`): (`dispatch`) => `void` - -Defined in: [src/state/action-creators/index.ts:19](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/state/action-creators/index.ts#L19) - -## Parameters - -### plugin - -`any` - -## Returns - -`Function` - -### Parameters - -#### dispatch - -`any` - -### Returns - -`void` diff --git a/docs/docs/auto-docs/state/action-creators/functions/updateInstalled.md b/docs/docs/auto-docs/state/action-creators/functions/updateInstalled.md deleted file mode 100644 index 69f69fde55..0000000000 --- a/docs/docs/auto-docs/state/action-creators/functions/updateInstalled.md +++ /dev/null @@ -1,31 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / [state/action-creators](../README.md) / updateInstalled - -# Function: updateInstalled() - -> **updateInstalled**(`plugin`): (`dispatch`) => `void` - -Defined in: [src/state/action-creators/index.ts:1](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/state/action-creators/index.ts#L1) - -## Parameters - -### plugin - -`any` - -## Returns - -`Function` - -### Parameters - -#### dispatch - -`any` - -### Returns - -`void` diff --git a/docs/docs/auto-docs/state/action-creators/functions/updatePluginLinks.md b/docs/docs/auto-docs/state/action-creators/functions/updatePluginLinks.md deleted file mode 100644 index cb987c33c9..0000000000 --- a/docs/docs/auto-docs/state/action-creators/functions/updatePluginLinks.md +++ /dev/null @@ -1,31 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / [state/action-creators](../README.md) / updatePluginLinks - -# Function: updatePluginLinks() - -> **updatePluginLinks**(`plugins`): (`dispatch`) => `void` - -Defined in: [src/state/action-creators/index.ts:28](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/state/action-creators/index.ts#L28) - -## Parameters - -### plugins - -`any` - -## Returns - -`Function` - -### Parameters - -#### dispatch - -`any` - -### Returns - -`void` diff --git a/docs/docs/auto-docs/state/action-creators/functions/updateTargets.md b/docs/docs/auto-docs/state/action-creators/functions/updateTargets.md deleted file mode 100644 index 0fe8b41978..0000000000 --- a/docs/docs/auto-docs/state/action-creators/functions/updateTargets.md +++ /dev/null @@ -1,31 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / [state/action-creators](../README.md) / updateTargets - -# Function: updateTargets() - -> **updateTargets**(`orgId`): (`dispatch`) => `void` - -Defined in: [src/state/action-creators/index.ts:37](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/state/action-creators/index.ts#L37) - -## Parameters - -### orgId - -`string` - -## Returns - -`Function` - -### Parameters - -#### dispatch - -`any` - -### Returns - -`void` diff --git a/docs/docs/auto-docs/state/helpers/Action/README.md b/docs/docs/auto-docs/state/helpers/Action/README.md deleted file mode 100644 index 6fa88902cb..0000000000 --- a/docs/docs/auto-docs/state/helpers/Action/README.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / state/helpers/Action - -# state/helpers/Action - -## Interfaces - -- [InterfaceAction](interfaces/InterfaceAction.md) diff --git a/docs/docs/auto-docs/state/helpers/Action/interfaces/InterfaceAction.md b/docs/docs/auto-docs/state/helpers/Action/interfaces/InterfaceAction.md deleted file mode 100644 index 94a9beb63d..0000000000 --- a/docs/docs/auto-docs/state/helpers/Action/interfaces/InterfaceAction.md +++ /dev/null @@ -1,25 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [state/helpers/Action](../README.md) / InterfaceAction - -# Interface: InterfaceAction - -Defined in: [src/state/helpers/Action.ts:1](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/state/helpers/Action.ts#L1) - -## Properties - -### payload - -> **payload**: `any` - -Defined in: [src/state/helpers/Action.ts:3](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/state/helpers/Action.ts#L3) - -*** - -### type - -> **type**: `string` - -Defined in: [src/state/helpers/Action.ts:2](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/state/helpers/Action.ts#L2) diff --git a/docs/docs/auto-docs/state/hooks/README.md b/docs/docs/auto-docs/state/hooks/README.md deleted file mode 100644 index 2f225831f2..0000000000 --- a/docs/docs/auto-docs/state/hooks/README.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../README.md) - -*** - -[talawa-admin](../../modules.md) / state/hooks - -# state/hooks - -## Functions - -- [useAppDispatch](functions/useAppDispatch.md) diff --git a/docs/docs/auto-docs/state/hooks/functions/useAppDispatch.md b/docs/docs/auto-docs/state/hooks/functions/useAppDispatch.md deleted file mode 100644 index f1da5931f4..0000000000 --- a/docs/docs/auto-docs/state/hooks/functions/useAppDispatch.md +++ /dev/null @@ -1,25 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / [state/hooks](../README.md) / useAppDispatch - -# Function: useAppDispatch() - -> **useAppDispatch**\<`AppDispatch`\>(): `AppDispatch` - -Defined in: [src/state/hooks.ts:5](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/state/hooks.ts#L5) - -Returns the dispatch function from the Redux store. - -## Type Parameters - -• **AppDispatch** *extends* `ThunkDispatch`\<\{ `appRoutes`: \{ `components`: [`ComponentType`](../../reducers/routesReducer/type-aliases/ComponentType.md)[]; `targets`: [`TargetsType`](../../reducers/routesReducer/type-aliases/TargetsType.md)[]; \}; `plugins`: `any`; `userRoutes`: \{ `components`: [`ComponentType`](../../reducers/userRoutesReducer/type-aliases/ComponentType.md)[]; `targets`: [`TargetsType`](../../reducers/userRoutesReducer/type-aliases/TargetsType.md)[]; \}; \}, `undefined`, `UnknownAction`\> & `Dispatch`\<[`InterfaceAction`](../../helpers/Action/interfaces/InterfaceAction.md)\> = `ThunkDispatch`\<\{ `appRoutes`: \{ `components`: [`ComponentType`](../../reducers/routesReducer/type-aliases/ComponentType.md)[]; `targets`: [`TargetsType`](../../reducers/routesReducer/type-aliases/TargetsType.md)[]; \}; `plugins`: `any`; `userRoutes`: \{ `components`: [`ComponentType`](../../reducers/userRoutesReducer/type-aliases/ComponentType.md)[]; `targets`: [`TargetsType`](../../reducers/userRoutesReducer/type-aliases/TargetsType.md)[]; \}; \}, `undefined`, `UnknownAction`\> & `Dispatch`\<[`InterfaceAction`](../../helpers/Action/interfaces/InterfaceAction.md)\> - -The specific type of the dispatch function. - -## Returns - -`AppDispatch` - -The dispatch function from the Redux store. diff --git a/docs/docs/auto-docs/state/reducers/README.md b/docs/docs/auto-docs/state/reducers/README.md deleted file mode 100644 index 72d86d2b9d..0000000000 --- a/docs/docs/auto-docs/state/reducers/README.md +++ /dev/null @@ -1,15 +0,0 @@ -[**talawa-admin**](../../README.md) - -*** - -[talawa-admin](../../modules.md) / state/reducers - -# state/reducers - -## Type Aliases - -- [RootState](type-aliases/RootState.md) - -## Functions - -- [reducers](functions/reducers.md) diff --git a/docs/docs/auto-docs/state/reducers/functions/reducers.md b/docs/docs/auto-docs/state/reducers/functions/reducers.md deleted file mode 100644 index 5269810607..0000000000 --- a/docs/docs/auto-docs/state/reducers/functions/reducers.md +++ /dev/null @@ -1,53 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / [state/reducers](../README.md) / reducers - -# Function: reducers() - -> **reducers**(`state`, `action`): `object` - -Defined in: [src/state/reducers/index.ts:6](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/state/reducers/index.ts#L6) - -## Parameters - -### state - -\{ `appRoutes`: \{ `components`: [`ComponentType`](../routesReducer/type-aliases/ComponentType.md)[]; `targets`: [`TargetsType`](../routesReducer/type-aliases/TargetsType.md)[]; \}; `plugins`: `any`; `userRoutes`: \{ `components`: [`ComponentType`](../userRoutesReducer/type-aliases/ComponentType.md)[]; `targets`: [`TargetsType`](../userRoutesReducer/type-aliases/TargetsType.md)[]; \}; \} | `Partial`\<\{ `appRoutes`: `never`; `plugins`: `never`; `userRoutes`: `never`; \}\> - -### action - -[`InterfaceAction`](../../helpers/Action/interfaces/InterfaceAction.md) - -## Returns - -`object` - -### appRoutes - -> **appRoutes**: `object` = `routesReducer` - -#### appRoutes.components - -> **components**: [`ComponentType`](../routesReducer/type-aliases/ComponentType.md)[] - -#### appRoutes.targets - -> **targets**: [`TargetsType`](../routesReducer/type-aliases/TargetsType.md)[] - -### plugins - -> **plugins**: `any` = `pluginReducer` - -### userRoutes - -> **userRoutes**: `object` = `userRoutesReducer` - -#### userRoutes.components - -> **components**: [`ComponentType`](../userRoutesReducer/type-aliases/ComponentType.md)[] - -#### userRoutes.targets - -> **targets**: [`TargetsType`](../userRoutesReducer/type-aliases/TargetsType.md)[] diff --git a/docs/docs/auto-docs/state/reducers/pluginReducer/README.md b/docs/docs/auto-docs/state/reducers/pluginReducer/README.md deleted file mode 100644 index 34b5b9734c..0000000000 --- a/docs/docs/auto-docs/state/reducers/pluginReducer/README.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / state/reducers/pluginReducer - -# state/reducers/pluginReducer - -## Functions - -- [default](functions/default.md) diff --git a/docs/docs/auto-docs/state/reducers/pluginReducer/functions/default.md b/docs/docs/auto-docs/state/reducers/pluginReducer/functions/default.md deleted file mode 100644 index db3a72cc4d..0000000000 --- a/docs/docs/auto-docs/state/reducers/pluginReducer/functions/default.md +++ /dev/null @@ -1,25 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [state/reducers/pluginReducer](../README.md) / default - -# Function: default() - -> **default**(`state`, `action`): `any` - -Defined in: [src/state/reducers/pluginReducer.ts:3](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/state/reducers/pluginReducer.ts#L3) - -## Parameters - -### state - -`any` = `INITIAL_STATE` - -### action - -[`InterfaceAction`](../../../helpers/Action/interfaces/InterfaceAction.md) - -## Returns - -`any` diff --git a/docs/docs/auto-docs/state/reducers/routesReducer/README.md b/docs/docs/auto-docs/state/reducers/routesReducer/README.md deleted file mode 100644 index 2448c6d427..0000000000 --- a/docs/docs/auto-docs/state/reducers/routesReducer/README.md +++ /dev/null @@ -1,17 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / state/reducers/routesReducer - -# state/reducers/routesReducer - -## Type Aliases - -- [ComponentType](type-aliases/ComponentType.md) -- [SubTargetType](type-aliases/SubTargetType.md) -- [TargetsType](type-aliases/TargetsType.md) - -## Functions - -- [default](functions/default.md) diff --git a/docs/docs/auto-docs/state/reducers/routesReducer/functions/default.md b/docs/docs/auto-docs/state/reducers/routesReducer/functions/default.md deleted file mode 100644 index e8343d8e51..0000000000 --- a/docs/docs/auto-docs/state/reducers/routesReducer/functions/default.md +++ /dev/null @@ -1,39 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [state/reducers/routesReducer](../README.md) / default - -# Function: default() - -> **default**(`state`, `action`): `object` - -Defined in: [src/state/reducers/routesReducer.ts:16](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/state/reducers/routesReducer.ts#L16) - -## Parameters - -### state - -#### components - -[`ComponentType`](../type-aliases/ComponentType.md)[] - -#### targets - -[`TargetsType`](../type-aliases/TargetsType.md)[] = `...` - -### action - -[`InterfaceAction`](../../../helpers/Action/interfaces/InterfaceAction.md) - -## Returns - -`object` - -### components - -> **components**: [`ComponentType`](../type-aliases/ComponentType.md)[] - -### targets - -> **targets**: [`TargetsType`](../type-aliases/TargetsType.md)[] diff --git a/docs/docs/auto-docs/state/reducers/routesReducer/type-aliases/ComponentType.md b/docs/docs/auto-docs/state/reducers/routesReducer/type-aliases/ComponentType.md deleted file mode 100644 index 75a96d4a11..0000000000 --- a/docs/docs/auto-docs/state/reducers/routesReducer/type-aliases/ComponentType.md +++ /dev/null @@ -1,29 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [state/reducers/routesReducer](../README.md) / ComponentType - -# Type Alias: ComponentType - -> **ComponentType**: `object` - -Defined in: [src/state/reducers/routesReducer.ts:55](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/state/reducers/routesReducer.ts#L55) - -## Type declaration - -### comp\_id - -> **comp\_id**: `string` \| `null` - -### component - -> **component**: `string` \| `null` - -### name - -> **name**: `string` - -### subTargets? - -> `optional` **subTargets**: `object`[] diff --git a/docs/docs/auto-docs/state/reducers/routesReducer/type-aliases/SubTargetType.md b/docs/docs/auto-docs/state/reducers/routesReducer/type-aliases/SubTargetType.md deleted file mode 100644 index a57e520872..0000000000 --- a/docs/docs/auto-docs/state/reducers/routesReducer/type-aliases/SubTargetType.md +++ /dev/null @@ -1,29 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [state/reducers/routesReducer](../README.md) / SubTargetType - -# Type Alias: SubTargetType - -> **SubTargetType**: `object` - -Defined in: [src/state/reducers/routesReducer.ts:9](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/state/reducers/routesReducer.ts#L9) - -## Type declaration - -### comp\_id? - -> `optional` **comp\_id**: `string` - -### icon? - -> `optional` **icon**: `string` - -### name? - -> `optional` **name**: `string` - -### url - -> **url**: `string` diff --git a/docs/docs/auto-docs/state/reducers/routesReducer/type-aliases/TargetsType.md b/docs/docs/auto-docs/state/reducers/routesReducer/type-aliases/TargetsType.md deleted file mode 100644 index a5a9267589..0000000000 --- a/docs/docs/auto-docs/state/reducers/routesReducer/type-aliases/TargetsType.md +++ /dev/null @@ -1,25 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [state/reducers/routesReducer](../README.md) / TargetsType - -# Type Alias: TargetsType - -> **TargetsType**: `object` - -Defined in: [src/state/reducers/routesReducer.ts:3](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/state/reducers/routesReducer.ts#L3) - -## Type declaration - -### name - -> **name**: `string` - -### subTargets? - -> `optional` **subTargets**: [`SubTargetType`](SubTargetType.md)[] - -### url? - -> `optional` **url**: `string` diff --git a/docs/docs/auto-docs/state/reducers/type-aliases/RootState.md b/docs/docs/auto-docs/state/reducers/type-aliases/RootState.md deleted file mode 100644 index 08dc7f1212..0000000000 --- a/docs/docs/auto-docs/state/reducers/type-aliases/RootState.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / [state/reducers](../README.md) / RootState - -# Type Alias: RootState - -> **RootState**: `ReturnType`\<*typeof* [`reducers`](../functions/reducers.md)\> - -Defined in: [src/state/reducers/index.ts:12](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/state/reducers/index.ts#L12) diff --git a/docs/docs/auto-docs/state/reducers/userRoutesReducer/README.md b/docs/docs/auto-docs/state/reducers/userRoutesReducer/README.md deleted file mode 100644 index 517d683035..0000000000 --- a/docs/docs/auto-docs/state/reducers/userRoutesReducer/README.md +++ /dev/null @@ -1,17 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / state/reducers/userRoutesReducer - -# state/reducers/userRoutesReducer - -## Type Aliases - -- [ComponentType](type-aliases/ComponentType.md) -- [SubTargetType](type-aliases/SubTargetType.md) -- [TargetsType](type-aliases/TargetsType.md) - -## Functions - -- [default](functions/default.md) diff --git a/docs/docs/auto-docs/state/reducers/userRoutesReducer/functions/default.md b/docs/docs/auto-docs/state/reducers/userRoutesReducer/functions/default.md deleted file mode 100644 index d670532ce1..0000000000 --- a/docs/docs/auto-docs/state/reducers/userRoutesReducer/functions/default.md +++ /dev/null @@ -1,39 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [state/reducers/userRoutesReducer](../README.md) / default - -# Function: default() - -> **default**(`state`, `action`): `object` - -Defined in: [src/state/reducers/userRoutesReducer.ts:16](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/state/reducers/userRoutesReducer.ts#L16) - -## Parameters - -### state - -#### components - -[`ComponentType`](../type-aliases/ComponentType.md)[] - -#### targets - -[`TargetsType`](../type-aliases/TargetsType.md)[] = `...` - -### action - -[`InterfaceAction`](../../../helpers/Action/interfaces/InterfaceAction.md) - -## Returns - -`object` - -### components - -> **components**: [`ComponentType`](../type-aliases/ComponentType.md)[] - -### targets - -> **targets**: [`TargetsType`](../type-aliases/TargetsType.md)[] diff --git a/docs/docs/auto-docs/state/reducers/userRoutesReducer/type-aliases/ComponentType.md b/docs/docs/auto-docs/state/reducers/userRoutesReducer/type-aliases/ComponentType.md deleted file mode 100644 index b730eb53e4..0000000000 --- a/docs/docs/auto-docs/state/reducers/userRoutesReducer/type-aliases/ComponentType.md +++ /dev/null @@ -1,29 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [state/reducers/userRoutesReducer](../README.md) / ComponentType - -# Type Alias: ComponentType - -> **ComponentType**: `object` - -Defined in: [src/state/reducers/userRoutesReducer.ts:32](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/state/reducers/userRoutesReducer.ts#L32) - -## Type declaration - -### comp\_id - -> **comp\_id**: `string` \| `null` - -### component - -> **component**: `string` \| `null` - -### name - -> **name**: `string` - -### subTargets? - -> `optional` **subTargets**: `object`[] diff --git a/docs/docs/auto-docs/state/reducers/userRoutesReducer/type-aliases/SubTargetType.md b/docs/docs/auto-docs/state/reducers/userRoutesReducer/type-aliases/SubTargetType.md deleted file mode 100644 index 056c83d7d0..0000000000 --- a/docs/docs/auto-docs/state/reducers/userRoutesReducer/type-aliases/SubTargetType.md +++ /dev/null @@ -1,29 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [state/reducers/userRoutesReducer](../README.md) / SubTargetType - -# Type Alias: SubTargetType - -> **SubTargetType**: `object` - -Defined in: [src/state/reducers/userRoutesReducer.ts:9](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/state/reducers/userRoutesReducer.ts#L9) - -## Type declaration - -### comp\_id? - -> `optional` **comp\_id**: `string` - -### icon? - -> `optional` **icon**: `string` - -### name? - -> `optional` **name**: `string` - -### url - -> **url**: `string` diff --git a/docs/docs/auto-docs/state/reducers/userRoutesReducer/type-aliases/TargetsType.md b/docs/docs/auto-docs/state/reducers/userRoutesReducer/type-aliases/TargetsType.md deleted file mode 100644 index 1dd6b0b1d4..0000000000 --- a/docs/docs/auto-docs/state/reducers/userRoutesReducer/type-aliases/TargetsType.md +++ /dev/null @@ -1,25 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [state/reducers/userRoutesReducer](../README.md) / TargetsType - -# Type Alias: TargetsType - -> **TargetsType**: `object` - -Defined in: [src/state/reducers/userRoutesReducer.ts:3](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/state/reducers/userRoutesReducer.ts#L3) - -## Type declaration - -### name - -> **name**: `string` - -### subTargets? - -> `optional` **subTargets**: [`SubTargetType`](SubTargetType.md)[] - -### url? - -> `optional` **url**: `string` diff --git a/docs/docs/auto-docs/state/store/README.md b/docs/docs/auto-docs/state/store/README.md deleted file mode 100644 index ff82f6a3f1..0000000000 --- a/docs/docs/auto-docs/state/store/README.md +++ /dev/null @@ -1,15 +0,0 @@ -[**talawa-admin**](../../README.md) - -*** - -[talawa-admin](../../modules.md) / state/store - -# state/store - -## Type Aliases - -- [AppDispatch](type-aliases/AppDispatch.md) - -## Variables - -- [store](variables/store.md) diff --git a/docs/docs/auto-docs/state/store/type-aliases/AppDispatch.md b/docs/docs/auto-docs/state/store/type-aliases/AppDispatch.md deleted file mode 100644 index 7723dd1273..0000000000 --- a/docs/docs/auto-docs/state/store/type-aliases/AppDispatch.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / [state/store](../README.md) / AppDispatch - -# Type Alias: AppDispatch - -> **AppDispatch**: *typeof* `store.dispatch` - -Defined in: [src/state/store.ts:8](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/state/store.ts#L8) diff --git a/docs/docs/auto-docs/state/store/variables/store.md b/docs/docs/auto-docs/state/store/variables/store.md deleted file mode 100644 index c965972c3e..0000000000 --- a/docs/docs/auto-docs/state/store/variables/store.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / [state/store](../README.md) / store - -# Variable: store - -> `const` **store**: `EnhancedStore`\<\{ `appRoutes`: \{ `components`: [`ComponentType`](../../reducers/routesReducer/type-aliases/ComponentType.md)[]; `targets`: [`TargetsType`](../../reducers/routesReducer/type-aliases/TargetsType.md)[]; \}; `plugins`: `any`; `userRoutes`: \{ `components`: [`ComponentType`](../../reducers/userRoutesReducer/type-aliases/ComponentType.md)[]; `targets`: [`TargetsType`](../../reducers/userRoutesReducer/type-aliases/TargetsType.md)[]; \}; \}, [`InterfaceAction`](../../helpers/Action/interfaces/InterfaceAction.md), `Tuple`\<\[`StoreEnhancer`\<\{\}\>, `StoreEnhancer`\]\>\> - -Defined in: [src/state/store.ts:4](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/state/store.ts#L4) diff --git a/docs/docs/auto-docs/subComponents/SortingButton/README.md b/docs/docs/auto-docs/subComponents/SortingButton/README.md deleted file mode 100644 index 7911c94d94..0000000000 --- a/docs/docs/auto-docs/subComponents/SortingButton/README.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../README.md) - -*** - -[talawa-admin](../../modules.md) / subComponents/SortingButton - -# subComponents/SortingButton - -## Functions - -- [default](functions/default.md) diff --git a/docs/docs/auto-docs/subComponents/SortingButton/functions/default.md b/docs/docs/auto-docs/subComponents/SortingButton/functions/default.md deleted file mode 100644 index 4b5f30094a..0000000000 --- a/docs/docs/auto-docs/subComponents/SortingButton/functions/default.md +++ /dev/null @@ -1,38 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / [subComponents/SortingButton](../README.md) / default - -# Function: default() - -> **default**(`props`, `deprecatedLegacyContext`?): `ReactNode` - -Defined in: [src/subComponents/SortingButton.tsx:43](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/subComponents/SortingButton.tsx#L43) - -SortingButton component renders a Dropdown with sorting options. -It allows users to select a sorting option and triggers a callback on selection. - -## Parameters - -### props - -`InterfaceSortingButtonProps` - -The properties for the SortingButton component. - -### deprecatedLegacyContext? - -`any` - -**Deprecated** - -**See** - -[React Docs](https://legacy.reactjs.org/docs/legacy-context.html#referencing-context-in-lifecycle-methods) - -## Returns - -`ReactNode` - -The rendered SortingButton component. diff --git a/docs/docs/auto-docs/utils/StaticMockLink/README.md b/docs/docs/auto-docs/utils/StaticMockLink/README.md deleted file mode 100644 index b5e8d26b04..0000000000 --- a/docs/docs/auto-docs/utils/StaticMockLink/README.md +++ /dev/null @@ -1,19 +0,0 @@ -[**talawa-admin**](../../README.md) - -*** - -[talawa-admin](../../modules.md) / utils/StaticMockLink - -# utils/StaticMockLink - -## Classes - -- [StaticMockLink](classes/StaticMockLink.md) - -## Interfaces - -- [InterfaceMockApolloLink](interfaces/InterfaceMockApolloLink.md) - -## Functions - -- [mockSingleLink](functions/mockSingleLink.md) diff --git a/docs/docs/auto-docs/utils/StaticMockLink/classes/StaticMockLink.md b/docs/docs/auto-docs/utils/StaticMockLink/classes/StaticMockLink.md deleted file mode 100644 index 9c9f1c071b..0000000000 --- a/docs/docs/auto-docs/utils/StaticMockLink/classes/StaticMockLink.md +++ /dev/null @@ -1,94 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / [utils/StaticMockLink](../README.md) / StaticMockLink - -# Class: StaticMockLink - -Defined in: [src/utils/StaticMockLink.ts:30](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/StaticMockLink.ts#L30) - -Similar to the standard Apollo MockLink, but doesn't consume a mock -when it is used allowing it to be used in places like Storybook. - -## Extends - -- `unknown` - -## Constructors - -### new StaticMockLink() - -> **new StaticMockLink**(`mockedResponses`, `addTypename`): [`StaticMockLink`](StaticMockLink.md) - -Defined in: [src/utils/StaticMockLink.ts:35](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/StaticMockLink.ts#L35) - -#### Parameters - -##### mockedResponses - -readonly `MockedResponse`[] - -##### addTypename - -`boolean` = `true` - -#### Returns - -[`StaticMockLink`](StaticMockLink.md) - -#### Overrides - -`ApolloLink.constructor` - -## Properties - -### addTypename - -> **addTypename**: `boolean` = `true` - -Defined in: [src/utils/StaticMockLink.ts:32](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/StaticMockLink.ts#L32) - -*** - -### operation? - -> `optional` **operation**: `Operation` - -Defined in: [src/utils/StaticMockLink.ts:31](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/StaticMockLink.ts#L31) - -## Methods - -### addMockedResponse() - -> **addMockedResponse**(`mockedResponse`): `void` - -Defined in: [src/utils/StaticMockLink.ts:45](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/StaticMockLink.ts#L45) - -#### Parameters - -##### mockedResponse - -`MockedResponse` - -#### Returns - -`void` - -*** - -### request() - -> **request**(`operation`): `any` - -Defined in: [src/utils/StaticMockLink.ts:60](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/StaticMockLink.ts#L60) - -#### Parameters - -##### operation - -`any` - -#### Returns - -`any` diff --git a/docs/docs/auto-docs/utils/StaticMockLink/functions/mockSingleLink.md b/docs/docs/auto-docs/utils/StaticMockLink/functions/mockSingleLink.md deleted file mode 100644 index 203e9b97a4..0000000000 --- a/docs/docs/auto-docs/utils/StaticMockLink/functions/mockSingleLink.md +++ /dev/null @@ -1,21 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / [utils/StaticMockLink](../README.md) / mockSingleLink - -# Function: mockSingleLink() - -> **mockSingleLink**(...`mockedResponses`): [`InterfaceMockApolloLink`](../interfaces/InterfaceMockApolloLink.md) - -Defined in: [src/utils/StaticMockLink.ts:164](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/StaticMockLink.ts#L164) - -## Parameters - -### mockedResponses - -...`any`[] - -## Returns - -[`InterfaceMockApolloLink`](../interfaces/InterfaceMockApolloLink.md) diff --git a/docs/docs/auto-docs/utils/StaticMockLink/interfaces/InterfaceMockApolloLink.md b/docs/docs/auto-docs/utils/StaticMockLink/interfaces/InterfaceMockApolloLink.md deleted file mode 100644 index 60ab0135f0..0000000000 --- a/docs/docs/auto-docs/utils/StaticMockLink/interfaces/InterfaceMockApolloLink.md +++ /dev/null @@ -1,21 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / [utils/StaticMockLink](../README.md) / InterfaceMockApolloLink - -# Interface: InterfaceMockApolloLink - -Defined in: [src/utils/StaticMockLink.ts:157](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/StaticMockLink.ts#L157) - -## Extends - -- `unknown` - -## Properties - -### operation? - -> `optional` **operation**: `Operation` - -Defined in: [src/utils/StaticMockLink.ts:158](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/StaticMockLink.ts#L158) diff --git a/docs/docs/auto-docs/utils/chartToPdf/README.md b/docs/docs/auto-docs/utils/chartToPdf/README.md deleted file mode 100644 index c2c888be7c..0000000000 --- a/docs/docs/auto-docs/utils/chartToPdf/README.md +++ /dev/null @@ -1,13 +0,0 @@ -[**talawa-admin**](../../README.md) - -*** - -[talawa-admin](../../modules.md) / utils/chartToPdf - -# utils/chartToPdf - -## Functions - -- [exportDemographicsToCSV](functions/exportDemographicsToCSV.md) -- [exportToCSV](functions/exportToCSV.md) -- [exportTrendsToCSV](functions/exportTrendsToCSV.md) diff --git a/docs/docs/auto-docs/utils/chartToPdf/functions/exportDemographicsToCSV.md b/docs/docs/auto-docs/utils/chartToPdf/functions/exportDemographicsToCSV.md deleted file mode 100644 index 0551ed56e9..0000000000 --- a/docs/docs/auto-docs/utils/chartToPdf/functions/exportDemographicsToCSV.md +++ /dev/null @@ -1,29 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / [utils/chartToPdf](../README.md) / exportDemographicsToCSV - -# Function: exportDemographicsToCSV() - -> **exportDemographicsToCSV**(`selectedCategory`, `categoryLabels`, `categoryData`): `void` - -Defined in: [src/utils/chartToPdf.ts:80](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/chartToPdf.ts#L80) - -## Parameters - -### selectedCategory - -`string` - -### categoryLabels - -`string`[] - -### categoryData - -`number`[] - -## Returns - -`void` diff --git a/docs/docs/auto-docs/utils/chartToPdf/functions/exportToCSV.md b/docs/docs/auto-docs/utils/chartToPdf/functions/exportToCSV.md deleted file mode 100644 index b390c58af6..0000000000 --- a/docs/docs/auto-docs/utils/chartToPdf/functions/exportToCSV.md +++ /dev/null @@ -1,25 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / [utils/chartToPdf](../README.md) / exportToCSV - -# Function: exportToCSV() - -> **exportToCSV**(`data`, `filename`): `void` - -Defined in: [src/utils/chartToPdf.ts:3](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/chartToPdf.ts#L3) - -## Parameters - -### data - -`CSVData` - -### filename - -`string` - -## Returns - -`void` diff --git a/docs/docs/auto-docs/utils/chartToPdf/functions/exportTrendsToCSV.md b/docs/docs/auto-docs/utils/chartToPdf/functions/exportTrendsToCSV.md deleted file mode 100644 index 26523599d0..0000000000 --- a/docs/docs/auto-docs/utils/chartToPdf/functions/exportTrendsToCSV.md +++ /dev/null @@ -1,37 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / [utils/chartToPdf](../README.md) / exportTrendsToCSV - -# Function: exportTrendsToCSV() - -> **exportTrendsToCSV**(`eventLabels`, `attendeeCounts`, `maleCounts`, `femaleCounts`, `otherCounts`): `void` - -Defined in: [src/utils/chartToPdf.ts:50](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/chartToPdf.ts#L50) - -## Parameters - -### eventLabels - -`string`[] - -### attendeeCounts - -`number`[] - -### maleCounts - -`number`[] - -### femaleCounts - -`number`[] - -### otherCounts - -`number`[] - -## Returns - -`void` diff --git a/docs/docs/auto-docs/utils/convertToBase64/README.md b/docs/docs/auto-docs/utils/convertToBase64/README.md deleted file mode 100644 index c1f44af7de..0000000000 --- a/docs/docs/auto-docs/utils/convertToBase64/README.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../README.md) - -*** - -[talawa-admin](../../modules.md) / utils/convertToBase64 - -# utils/convertToBase64 - -## Functions - -- [default](functions/default.md) diff --git a/docs/docs/auto-docs/utils/convertToBase64/functions/default.md b/docs/docs/auto-docs/utils/convertToBase64/functions/default.md deleted file mode 100644 index edd76ae76e..0000000000 --- a/docs/docs/auto-docs/utils/convertToBase64/functions/default.md +++ /dev/null @@ -1,21 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / [utils/convertToBase64](../README.md) / default - -# Function: default() - -> **default**(`file`): `Promise`\<`string`\> - -Defined in: [src/utils/convertToBase64.ts:1](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/convertToBase64.ts#L1) - -## Parameters - -### file - -`File` - -## Returns - -`Promise`\<`string`\> diff --git a/docs/docs/auto-docs/utils/currency/README.md b/docs/docs/auto-docs/utils/currency/README.md deleted file mode 100644 index 9ff14d9251..0000000000 --- a/docs/docs/auto-docs/utils/currency/README.md +++ /dev/null @@ -1,12 +0,0 @@ -[**talawa-admin**](../../README.md) - -*** - -[talawa-admin](../../modules.md) / utils/currency - -# utils/currency - -## Variables - -- [currencyOptions](variables/currencyOptions.md) -- [currencySymbols](variables/currencySymbols.md) diff --git a/docs/docs/auto-docs/utils/currency/variables/currencyOptions.md b/docs/docs/auto-docs/utils/currency/variables/currencyOptions.md deleted file mode 100644 index f2eb30d128..0000000000 --- a/docs/docs/auto-docs/utils/currency/variables/currencyOptions.md +++ /dev/null @@ -1,21 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / [utils/currency](../README.md) / currencyOptions - -# Variable: currencyOptions - -> `const` **currencyOptions**: `object`[] - -Defined in: [src/utils/currency.ts:1](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/currency.ts#L1) - -## Type declaration - -### label - -> **label**: `string` = `'AED'` - -### value - -> **value**: `string` = `'AED'` diff --git a/docs/docs/auto-docs/utils/currency/variables/currencySymbols.md b/docs/docs/auto-docs/utils/currency/variables/currencySymbols.md deleted file mode 100644 index 111f1dc386..0000000000 --- a/docs/docs/auto-docs/utils/currency/variables/currencySymbols.md +++ /dev/null @@ -1,15 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / [utils/currency](../README.md) / currencySymbols - -# Variable: currencySymbols - -> `const` **currencySymbols**: `object` - -Defined in: [src/utils/currency.ts:166](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/currency.ts#L166) - -## Index Signature - -\[`key`: `string`\]: `string` diff --git a/docs/docs/auto-docs/utils/dateFormatter/README.md b/docs/docs/auto-docs/utils/dateFormatter/README.md deleted file mode 100644 index 43d7c90a59..0000000000 --- a/docs/docs/auto-docs/utils/dateFormatter/README.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../README.md) - -*** - -[talawa-admin](../../modules.md) / utils/dateFormatter - -# utils/dateFormatter - -## Functions - -- [formatDate](functions/formatDate.md) diff --git a/docs/docs/auto-docs/utils/dateFormatter/functions/formatDate.md b/docs/docs/auto-docs/utils/dateFormatter/functions/formatDate.md deleted file mode 100644 index 39f3f2795d..0000000000 --- a/docs/docs/auto-docs/utils/dateFormatter/functions/formatDate.md +++ /dev/null @@ -1,21 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / [utils/dateFormatter](../README.md) / formatDate - -# Function: formatDate() - -> **formatDate**(`dateString`): `string` - -Defined in: [src/utils/dateFormatter.ts:1](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/dateFormatter.ts#L1) - -## Parameters - -### dateString - -`string` - -## Returns - -`string` diff --git a/docs/docs/auto-docs/utils/errorHandler/README.md b/docs/docs/auto-docs/utils/errorHandler/README.md deleted file mode 100644 index f3524157ba..0000000000 --- a/docs/docs/auto-docs/utils/errorHandler/README.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../README.md) - -*** - -[talawa-admin](../../modules.md) / utils/errorHandler - -# utils/errorHandler - -## Functions - -- [errorHandler](functions/errorHandler.md) diff --git a/docs/docs/auto-docs/utils/errorHandler/functions/errorHandler.md b/docs/docs/auto-docs/utils/errorHandler/functions/errorHandler.md deleted file mode 100644 index 07defcae36..0000000000 --- a/docs/docs/auto-docs/utils/errorHandler/functions/errorHandler.md +++ /dev/null @@ -1,29 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / [utils/errorHandler](../README.md) / errorHandler - -# Function: errorHandler() - -> **errorHandler**(`a`, `error`): `void` - -Defined in: [src/utils/errorHandler.tsx:10](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/errorHandler.tsx#L10) - -This function is used to handle api errors in the application. -It takes in the error object and displays the error message to the user. -If the error is due to the Talawa API being unavailable, it displays a custom message. And for other error cases, it is using regular expression (case-insensitive) to match and show valid messages - -## Parameters - -### a - -`unknown` - -### error - -`unknown` - -## Returns - -`void` diff --git a/docs/docs/auto-docs/utils/fieldTypes/README.md b/docs/docs/auto-docs/utils/fieldTypes/README.md deleted file mode 100644 index e61e877617..0000000000 --- a/docs/docs/auto-docs/utils/fieldTypes/README.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../README.md) - -*** - -[talawa-admin](../../modules.md) / utils/fieldTypes - -# utils/fieldTypes - -## Variables - -- [default](variables/default.md) diff --git a/docs/docs/auto-docs/utils/fieldTypes/variables/default.md b/docs/docs/auto-docs/utils/fieldTypes/variables/default.md deleted file mode 100644 index 280948f76f..0000000000 --- a/docs/docs/auto-docs/utils/fieldTypes/variables/default.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / [utils/fieldTypes](../README.md) / default - -# Variable: default - -> `const` **default**: `string`[] - -Defined in: [src/utils/fieldTypes.ts:1](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/fieldTypes.ts#L1) diff --git a/docs/docs/auto-docs/utils/formEnumFields/README.md b/docs/docs/auto-docs/utils/formEnumFields/README.md deleted file mode 100644 index bf7f8e43f9..0000000000 --- a/docs/docs/auto-docs/utils/formEnumFields/README.md +++ /dev/null @@ -1,16 +0,0 @@ -[**talawa-admin**](../../README.md) - -*** - -[talawa-admin](../../modules.md) / utils/formEnumFields - -# utils/formEnumFields - -## Variables - -- [countryOptions](variables/countryOptions.md) -- [educationGradeEnum](variables/educationGradeEnum.md) -- [employmentStatusEnum](variables/employmentStatusEnum.md) -- [genderEnum](variables/genderEnum.md) -- [maritalStatusEnum](variables/maritalStatusEnum.md) -- [userRoleEnum](variables/userRoleEnum.md) diff --git a/docs/docs/auto-docs/utils/formEnumFields/variables/countryOptions.md b/docs/docs/auto-docs/utils/formEnumFields/variables/countryOptions.md deleted file mode 100644 index 69569d5789..0000000000 --- a/docs/docs/auto-docs/utils/formEnumFields/variables/countryOptions.md +++ /dev/null @@ -1,21 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / [utils/formEnumFields](../README.md) / countryOptions - -# Variable: countryOptions - -> `const` **countryOptions**: `object`[] - -Defined in: [src/utils/formEnumFields.ts:1](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/formEnumFields.ts#L1) - -## Type declaration - -### label - -> **label**: `string` = `'Afghanistan'` - -### value - -> **value**: `string` = `'af'` diff --git a/docs/docs/auto-docs/utils/formEnumFields/variables/educationGradeEnum.md b/docs/docs/auto-docs/utils/formEnumFields/variables/educationGradeEnum.md deleted file mode 100644 index 62b222056f..0000000000 --- a/docs/docs/auto-docs/utils/formEnumFields/variables/educationGradeEnum.md +++ /dev/null @@ -1,21 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / [utils/formEnumFields](../README.md) / educationGradeEnum - -# Variable: educationGradeEnum - -> `const` **educationGradeEnum**: `object`[] - -Defined in: [src/utils/formEnumFields.ts:202](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/formEnumFields.ts#L202) - -## Type declaration - -### label - -> **label**: `string` = `'No-Grade'` - -### value - -> **value**: `string` = `'NO_GRADE'` diff --git a/docs/docs/auto-docs/utils/formEnumFields/variables/employmentStatusEnum.md b/docs/docs/auto-docs/utils/formEnumFields/variables/employmentStatusEnum.md deleted file mode 100644 index d6491ca52a..0000000000 --- a/docs/docs/auto-docs/utils/formEnumFields/variables/employmentStatusEnum.md +++ /dev/null @@ -1,21 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / [utils/formEnumFields](../README.md) / employmentStatusEnum - -# Variable: employmentStatusEnum - -> `const` **employmentStatusEnum**: `object`[] - -Defined in: [src/utils/formEnumFields.ts:311](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/formEnumFields.ts#L311) - -## Type declaration - -### label - -> **label**: `string` = `'Full-Time'` - -### value - -> **value**: `string` = `'FULL_TIME'` diff --git a/docs/docs/auto-docs/utils/formEnumFields/variables/genderEnum.md b/docs/docs/auto-docs/utils/formEnumFields/variables/genderEnum.md deleted file mode 100644 index 105b900a7c..0000000000 --- a/docs/docs/auto-docs/utils/formEnumFields/variables/genderEnum.md +++ /dev/null @@ -1,21 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / [utils/formEnumFields](../README.md) / genderEnum - -# Variable: genderEnum - -> `const` **genderEnum**: `object`[] - -Defined in: [src/utils/formEnumFields.ts:296](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/formEnumFields.ts#L296) - -## Type declaration - -### label - -> **label**: `string` = `'Male'` - -### value - -> **value**: `string` = `'MALE'` diff --git a/docs/docs/auto-docs/utils/formEnumFields/variables/maritalStatusEnum.md b/docs/docs/auto-docs/utils/formEnumFields/variables/maritalStatusEnum.md deleted file mode 100644 index a43a0c0238..0000000000 --- a/docs/docs/auto-docs/utils/formEnumFields/variables/maritalStatusEnum.md +++ /dev/null @@ -1,21 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / [utils/formEnumFields](../README.md) / maritalStatusEnum - -# Variable: maritalStatusEnum - -> `const` **maritalStatusEnum**: `object`[] - -Defined in: [src/utils/formEnumFields.ts:269](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/formEnumFields.ts#L269) - -## Type declaration - -### label - -> **label**: `string` = `'Single'` - -### value - -> **value**: `string` = `'SINGLE'` diff --git a/docs/docs/auto-docs/utils/formEnumFields/variables/userRoleEnum.md b/docs/docs/auto-docs/utils/formEnumFields/variables/userRoleEnum.md deleted file mode 100644 index c24a791eaa..0000000000 --- a/docs/docs/auto-docs/utils/formEnumFields/variables/userRoleEnum.md +++ /dev/null @@ -1,21 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / [utils/formEnumFields](../README.md) / userRoleEnum - -# Variable: userRoleEnum - -> `const` **userRoleEnum**: `object`[] - -Defined in: [src/utils/formEnumFields.ts:326](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/formEnumFields.ts#L326) - -## Type declaration - -### label - -> **label**: `string` = `'User'` - -### value - -> **value**: `string` = `'USER'` diff --git a/docs/docs/auto-docs/utils/getOrganizationId/README.md b/docs/docs/auto-docs/utils/getOrganizationId/README.md deleted file mode 100644 index 6b1d1d6da4..0000000000 --- a/docs/docs/auto-docs/utils/getOrganizationId/README.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../README.md) - -*** - -[talawa-admin](../../modules.md) / utils/getOrganizationId - -# utils/getOrganizationId - -## Functions - -- [default](functions/default.md) diff --git a/docs/docs/auto-docs/utils/getOrganizationId/functions/default.md b/docs/docs/auto-docs/utils/getOrganizationId/functions/default.md deleted file mode 100644 index 9c3574ad73..0000000000 --- a/docs/docs/auto-docs/utils/getOrganizationId/functions/default.md +++ /dev/null @@ -1,21 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / [utils/getOrganizationId](../README.md) / default - -# Function: default() - -> **default**(`url`): `string` - -Defined in: [src/utils/getOrganizationId.ts:2](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/getOrganizationId.ts#L2) - -## Parameters - -### url - -`string` - -## Returns - -`string` diff --git a/docs/docs/auto-docs/utils/getRefreshToken/README.md b/docs/docs/auto-docs/utils/getRefreshToken/README.md deleted file mode 100644 index 8c60657a42..0000000000 --- a/docs/docs/auto-docs/utils/getRefreshToken/README.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../README.md) - -*** - -[talawa-admin](../../modules.md) / utils/getRefreshToken - -# utils/getRefreshToken - -## Functions - -- [refreshToken](functions/refreshToken.md) diff --git a/docs/docs/auto-docs/utils/getRefreshToken/functions/refreshToken.md b/docs/docs/auto-docs/utils/getRefreshToken/functions/refreshToken.md deleted file mode 100644 index 187e756984..0000000000 --- a/docs/docs/auto-docs/utils/getRefreshToken/functions/refreshToken.md +++ /dev/null @@ -1,15 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / [utils/getRefreshToken](../README.md) / refreshToken - -# Function: refreshToken() - -> **refreshToken**(): `Promise`\<`boolean`\> - -Defined in: [src/utils/getRefreshToken.ts:6](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/getRefreshToken.ts#L6) - -## Returns - -`Promise`\<`boolean`\> diff --git a/docs/docs/auto-docs/utils/i18n/README.md b/docs/docs/auto-docs/utils/i18n/README.md deleted file mode 100644 index 155261730a..0000000000 --- a/docs/docs/auto-docs/utils/i18n/README.md +++ /dev/null @@ -1,7 +0,0 @@ -[**talawa-admin**](../../README.md) - -*** - -[talawa-admin](../../modules.md) / utils/i18n - -# utils/i18n diff --git a/docs/docs/auto-docs/utils/i18nForTest/README.md b/docs/docs/auto-docs/utils/i18nForTest/README.md deleted file mode 100644 index 2c5825d093..0000000000 --- a/docs/docs/auto-docs/utils/i18nForTest/README.md +++ /dev/null @@ -1,7 +0,0 @@ -[**talawa-admin**](../../README.md) - -*** - -[talawa-admin](../../modules.md) / utils/i18nForTest - -# utils/i18nForTest diff --git a/docs/docs/auto-docs/utils/interfaces/README.md b/docs/docs/auto-docs/utils/interfaces/README.md deleted file mode 100644 index 0e3a96e48c..0000000000 --- a/docs/docs/auto-docs/utils/interfaces/README.md +++ /dev/null @@ -1,60 +0,0 @@ -[**talawa-admin**](../../README.md) - -*** - -[talawa-admin](../../modules.md) / utils/interfaces - -# utils/interfaces - -## Interfaces - -- [InterfaceActionItemCategoryInfo](interfaces/InterfaceActionItemCategoryInfo.md) -- [InterfaceActionItemCategoryList](interfaces/InterfaceActionItemCategoryList.md) -- [InterfaceActionItemInfo](interfaces/InterfaceActionItemInfo.md) -- [InterfaceActionItemList](interfaces/InterfaceActionItemList.md) -- [InterfaceAddOnSpotAttendeeProps](interfaces/InterfaceAddOnSpotAttendeeProps.md) -- [InterfaceAddress](interfaces/InterfaceAddress.md) -- [InterfaceAgendaItemCategoryInfo](interfaces/InterfaceAgendaItemCategoryInfo.md) -- [InterfaceAgendaItemCategoryList](interfaces/InterfaceAgendaItemCategoryList.md) -- [InterfaceAgendaItemInfo](interfaces/InterfaceAgendaItemInfo.md) -- [InterfaceAgendaItemList](interfaces/InterfaceAgendaItemList.md) -- [InterfaceBaseEvent](interfaces/InterfaceBaseEvent.md) -- [InterfaceCampaignInfo](interfaces/InterfaceCampaignInfo.md) -- [InterfaceCreateFund](interfaces/InterfaceCreateFund.md) -- [InterfaceCreatePledge](interfaces/InterfaceCreatePledge.md) -- [InterfaceCreateVolunteerGroup](interfaces/InterfaceCreateVolunteerGroup.md) -- [InterfaceCustomFieldData](interfaces/InterfaceCustomFieldData.md) -- [InterfaceEventVolunteerInfo](interfaces/InterfaceEventVolunteerInfo.md) -- [InterfaceFormData](interfaces/InterfaceFormData.md) -- [InterfaceFundInfo](interfaces/InterfaceFundInfo.md) -- [InterfaceMapType](interfaces/InterfaceMapType.md) -- [InterfaceMemberInfo](interfaces/InterfaceMemberInfo.md) -- [InterfaceMembersList](interfaces/InterfaceMembersList.md) -- [InterfaceOrgConnectionInfoType](interfaces/InterfaceOrgConnectionInfoType.md) -- [InterfaceOrgConnectionType](interfaces/InterfaceOrgConnectionType.md) -- [InterfacePledgeInfo](interfaces/InterfacePledgeInfo.md) -- [InterfacePostCard](interfaces/InterfacePostCard.md) -- [InterfacePostForm](interfaces/InterfacePostForm.md) -- [InterfaceQueryBlockPageMemberListItem](interfaces/InterfaceQueryBlockPageMemberListItem.md) -- [InterfaceQueryFundCampaignsPledges](interfaces/InterfaceQueryFundCampaignsPledges.md) -- [InterfaceQueryMembershipRequestsListItem](interfaces/InterfaceQueryMembershipRequestsListItem.md) -- [InterfaceQueryOrganizationAdvertisementListItem](interfaces/InterfaceQueryOrganizationAdvertisementListItem.md) -- [InterfaceQueryOrganizationEventListItem](interfaces/InterfaceQueryOrganizationEventListItem.md) -- [InterfaceQueryOrganizationFundCampaigns](interfaces/InterfaceQueryOrganizationFundCampaigns.md) -- [InterfaceQueryOrganizationListObject](interfaces/InterfaceQueryOrganizationListObject.md) -- [InterfaceQueryOrganizationPostListItem](interfaces/InterfaceQueryOrganizationPostListItem.md) -- [InterfaceQueryOrganizationsListObject](interfaces/InterfaceQueryOrganizationsListObject.md) -- [InterfaceQueryOrganizationUserTags](interfaces/InterfaceQueryOrganizationUserTags.md) -- [InterfaceQueryUserListItem](interfaces/InterfaceQueryUserListItem.md) -- [InterfaceQueryUserTagChildTags](interfaces/InterfaceQueryUserTagChildTags.md) -- [InterfaceQueryUserTagsAssignedMembers](interfaces/InterfaceQueryUserTagsAssignedMembers.md) -- [InterfaceQueryUserTagsMembersToAssignTo](interfaces/InterfaceQueryUserTagsMembersToAssignTo.md) -- [InterfaceQueryVenueListItem](interfaces/InterfaceQueryVenueListItem.md) -- [InterfaceTagData](interfaces/InterfaceTagData.md) -- [InterfaceUserCampaign](interfaces/InterfaceUserCampaign.md) -- [InterfaceUserEvents](interfaces/InterfaceUserEvents.md) -- [InterfaceUserInfo](interfaces/InterfaceUserInfo.md) -- [InterfaceUserType](interfaces/InterfaceUserType.md) -- [InterfaceVolunteerGroupInfo](interfaces/InterfaceVolunteerGroupInfo.md) -- [InterfaceVolunteerMembership](interfaces/InterfaceVolunteerMembership.md) -- [InterfaceVolunteerRank](interfaces/InterfaceVolunteerRank.md) diff --git a/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceActionItemCategoryInfo.md b/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceActionItemCategoryInfo.md deleted file mode 100644 index b363d0daec..0000000000 --- a/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceActionItemCategoryInfo.md +++ /dev/null @@ -1,61 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / [utils/interfaces](../README.md) / InterfaceActionItemCategoryInfo - -# Interface: InterfaceActionItemCategoryInfo - -Defined in: [src/utils/interfaces.ts:31](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L31) - -## Properties - -### \_id - -> **\_id**: `string` - -Defined in: [src/utils/interfaces.ts:32](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L32) - -*** - -### createdAt - -> **createdAt**: `string` - -Defined in: [src/utils/interfaces.ts:35](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L35) - -*** - -### creator - -> **creator**: `object` - -Defined in: [src/utils/interfaces.ts:36](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L36) - -#### \_id - -> **\_id**: `string` - -#### firstName - -> **firstName**: `string` - -#### lastName - -> **lastName**: `string` - -*** - -### isDisabled - -> **isDisabled**: `boolean` - -Defined in: [src/utils/interfaces.ts:34](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L34) - -*** - -### name - -> **name**: `string` - -Defined in: [src/utils/interfaces.ts:33](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L33) diff --git a/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceActionItemCategoryList.md b/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceActionItemCategoryList.md deleted file mode 100644 index e685e7e002..0000000000 --- a/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceActionItemCategoryList.md +++ /dev/null @@ -1,17 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / [utils/interfaces](../README.md) / InterfaceActionItemCategoryList - -# Interface: InterfaceActionItemCategoryList - -Defined in: [src/utils/interfaces.ts:39](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L39) - -## Properties - -### actionItemCategoriesByOrganization - -> **actionItemCategoriesByOrganization**: [`InterfaceActionItemCategoryInfo`](InterfaceActionItemCategoryInfo.md)[] - -Defined in: [src/utils/interfaces.ts:40](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L40) diff --git a/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceActionItemInfo.md b/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceActionItemInfo.md deleted file mode 100644 index d3c61db23b..0000000000 --- a/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceActionItemInfo.md +++ /dev/null @@ -1,153 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / [utils/interfaces](../README.md) / InterfaceActionItemInfo - -# Interface: InterfaceActionItemInfo - -Defined in: [src/utils/interfaces.ts:43](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L43) - -## Properties - -### \_id - -> **\_id**: `string` - -Defined in: [src/utils/interfaces.ts:44](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L44) - -*** - -### actionItemCategory - -> **actionItemCategory**: `object` - -Defined in: [src/utils/interfaces.ts:50](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L50) - -#### \_id - -> **\_id**: `string` - -#### name - -> **name**: `string` - -*** - -### allottedHours - -> **allottedHours**: `number` - -Defined in: [src/utils/interfaces.ts:65](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L65) - -*** - -### assignee - -> **assignee**: [`InterfaceEventVolunteerInfo`](InterfaceEventVolunteerInfo.md) - -Defined in: [src/utils/interfaces.ts:46](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L46) - -*** - -### assigneeGroup - -> **assigneeGroup**: [`InterfaceVolunteerGroupInfo`](InterfaceVolunteerGroupInfo.md) - -Defined in: [src/utils/interfaces.ts:47](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L47) - -*** - -### assigneeType - -> **assigneeType**: `"User"` \| `"EventVolunteer"` \| `"EventVolunteerGroup"` - -Defined in: [src/utils/interfaces.ts:45](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L45) - -*** - -### assigneeUser - -> **assigneeUser**: [`InterfaceUserInfo`](InterfaceUserInfo.md) - -Defined in: [src/utils/interfaces.ts:48](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L48) - -*** - -### assigner - -> **assigner**: [`InterfaceUserInfo`](InterfaceUserInfo.md) - -Defined in: [src/utils/interfaces.ts:49](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L49) - -*** - -### assignmentDate - -> **assignmentDate**: `Date` - -Defined in: [src/utils/interfaces.ts:56](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L56) - -*** - -### completionDate - -> **completionDate**: `Date` - -Defined in: [src/utils/interfaces.ts:58](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L58) - -*** - -### creator - -> **creator**: [`InterfaceUserInfo`](InterfaceUserInfo.md) - -Defined in: [src/utils/interfaces.ts:64](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L64) - -*** - -### dueDate - -> **dueDate**: `Date` - -Defined in: [src/utils/interfaces.ts:57](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L57) - -*** - -### event - -> **event**: `object` - -Defined in: [src/utils/interfaces.ts:60](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L60) - -#### \_id - -> **\_id**: `string` - -#### title - -> **title**: `string` - -*** - -### isCompleted - -> **isCompleted**: `boolean` - -Defined in: [src/utils/interfaces.ts:59](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L59) - -*** - -### postCompletionNotes - -> **postCompletionNotes**: `string` - -Defined in: [src/utils/interfaces.ts:55](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L55) - -*** - -### preCompletionNotes - -> **preCompletionNotes**: `string` - -Defined in: [src/utils/interfaces.ts:54](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L54) diff --git a/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceActionItemList.md b/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceActionItemList.md deleted file mode 100644 index 3d605e0b1c..0000000000 --- a/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceActionItemList.md +++ /dev/null @@ -1,17 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / [utils/interfaces](../README.md) / InterfaceActionItemList - -# Interface: InterfaceActionItemList - -Defined in: [src/utils/interfaces.ts:68](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L68) - -## Properties - -### actionItemsByOrganization - -> **actionItemsByOrganization**: [`InterfaceActionItemInfo`](InterfaceActionItemInfo.md)[] - -Defined in: [src/utils/interfaces.ts:69](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L69) diff --git a/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceAddOnSpotAttendeeProps.md b/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceAddOnSpotAttendeeProps.md deleted file mode 100644 index eba6666462..0000000000 --- a/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceAddOnSpotAttendeeProps.md +++ /dev/null @@ -1,41 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / [utils/interfaces](../README.md) / InterfaceAddOnSpotAttendeeProps - -# Interface: InterfaceAddOnSpotAttendeeProps - -Defined in: [src/utils/interfaces.ts:546](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L546) - -## Properties - -### handleClose() - -> **handleClose**: () => `void` - -Defined in: [src/utils/interfaces.ts:548](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L548) - -#### Returns - -`void` - -*** - -### reloadMembers() - -> **reloadMembers**: () => `void` - -Defined in: [src/utils/interfaces.ts:549](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L549) - -#### Returns - -`void` - -*** - -### show - -> **show**: `boolean` - -Defined in: [src/utils/interfaces.ts:547](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L547) diff --git a/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceAddress.md b/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceAddress.md deleted file mode 100644 index e1be9502cc..0000000000 --- a/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceAddress.md +++ /dev/null @@ -1,73 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / [utils/interfaces](../README.md) / InterfaceAddress - -# Interface: InterfaceAddress - -Defined in: [src/utils/interfaces.ts:453](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L453) - -## Properties - -### city - -> **city**: `string` - -Defined in: [src/utils/interfaces.ts:454](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L454) - -*** - -### countryCode - -> **countryCode**: `string` - -Defined in: [src/utils/interfaces.ts:455](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L455) - -*** - -### dependentLocality - -> **dependentLocality**: `string` - -Defined in: [src/utils/interfaces.ts:456](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L456) - -*** - -### line1 - -> **line1**: `string` - -Defined in: [src/utils/interfaces.ts:457](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L457) - -*** - -### line2 - -> **line2**: `string` - -Defined in: [src/utils/interfaces.ts:458](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L458) - -*** - -### postalCode - -> **postalCode**: `string` - -Defined in: [src/utils/interfaces.ts:459](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L459) - -*** - -### sortingCode - -> **sortingCode**: `string` - -Defined in: [src/utils/interfaces.ts:460](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L460) - -*** - -### state - -> **state**: `string` - -Defined in: [src/utils/interfaces.ts:461](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L461) diff --git a/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceAgendaItemCategoryInfo.md b/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceAgendaItemCategoryInfo.md deleted file mode 100644 index a27dd7a27a..0000000000 --- a/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceAgendaItemCategoryInfo.md +++ /dev/null @@ -1,53 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / [utils/interfaces](../README.md) / InterfaceAgendaItemCategoryInfo - -# Interface: InterfaceAgendaItemCategoryInfo - -Defined in: [src/utils/interfaces.ts:531](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L531) - -## Properties - -### \_id - -> **\_id**: `string` - -Defined in: [src/utils/interfaces.ts:532](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L532) - -*** - -### createdBy - -> **createdBy**: `object` - -Defined in: [src/utils/interfaces.ts:535](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L535) - -#### \_id - -> **\_id**: `string` - -#### firstName - -> **firstName**: `string` - -#### lastName - -> **lastName**: `string` - -*** - -### description - -> **description**: `string` - -Defined in: [src/utils/interfaces.ts:534](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L534) - -*** - -### name - -> **name**: `string` - -Defined in: [src/utils/interfaces.ts:533](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L533) diff --git a/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceAgendaItemCategoryList.md b/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceAgendaItemCategoryList.md deleted file mode 100644 index 9208bfa769..0000000000 --- a/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceAgendaItemCategoryList.md +++ /dev/null @@ -1,17 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / [utils/interfaces](../README.md) / InterfaceAgendaItemCategoryList - -# Interface: InterfaceAgendaItemCategoryList - -Defined in: [src/utils/interfaces.ts:542](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L542) - -## Properties - -### agendaItemCategoriesByOrganization - -> **agendaItemCategoriesByOrganization**: [`InterfaceAgendaItemCategoryInfo`](InterfaceAgendaItemCategoryInfo.md)[] - -Defined in: [src/utils/interfaces.ts:543](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L543) diff --git a/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceAgendaItemInfo.md b/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceAgendaItemInfo.md deleted file mode 100644 index 2d4170392d..0000000000 --- a/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceAgendaItemInfo.md +++ /dev/null @@ -1,153 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / [utils/interfaces](../README.md) / InterfaceAgendaItemInfo - -# Interface: InterfaceAgendaItemInfo - -Defined in: [src/utils/interfaces.ts:560](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L560) - -## Properties - -### \_id - -> **\_id**: `string` - -Defined in: [src/utils/interfaces.ts:561](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L561) - -*** - -### attachments - -> **attachments**: `string`[] - -Defined in: [src/utils/interfaces.ts:565](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L565) - -*** - -### categories - -> **categories**: `object`[] - -Defined in: [src/utils/interfaces.ts:578](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L578) - -#### \_id - -> **\_id**: `string` - -#### name - -> **name**: `string` - -*** - -### createdBy - -> **createdBy**: `object` - -Defined in: [src/utils/interfaces.ts:566](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L566) - -#### \_id - -> **\_id**: `string` - -#### firstName - -> **firstName**: `string` - -#### lastName - -> **lastName**: `string` - -*** - -### description - -> **description**: `string` - -Defined in: [src/utils/interfaces.ts:563](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L563) - -*** - -### duration - -> **duration**: `string` - -Defined in: [src/utils/interfaces.ts:564](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L564) - -*** - -### organization - -> **organization**: `object` - -Defined in: [src/utils/interfaces.ts:582](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L582) - -#### \_id - -> **\_id**: `string` - -#### name - -> **name**: `string` - -*** - -### relatedEvent - -> **relatedEvent**: `object` - -Defined in: [src/utils/interfaces.ts:586](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L586) - -#### \_id - -> **\_id**: `string` - -#### title - -> **title**: `string` - -*** - -### sequence - -> **sequence**: `number` - -Defined in: [src/utils/interfaces.ts:577](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L577) - -*** - -### title - -> **title**: `string` - -Defined in: [src/utils/interfaces.ts:562](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L562) - -*** - -### urls - -> **urls**: `string`[] - -Defined in: [src/utils/interfaces.ts:571](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L571) - -*** - -### users - -> **users**: `object`[] - -Defined in: [src/utils/interfaces.ts:572](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L572) - -#### \_id - -> **\_id**: `string` - -#### firstName - -> **firstName**: `string` - -#### lastName - -> **lastName**: `string` diff --git a/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceAgendaItemList.md b/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceAgendaItemList.md deleted file mode 100644 index 08955600e1..0000000000 --- a/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceAgendaItemList.md +++ /dev/null @@ -1,17 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / [utils/interfaces](../README.md) / InterfaceAgendaItemList - -# Interface: InterfaceAgendaItemList - -Defined in: [src/utils/interfaces.ts:592](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L592) - -## Properties - -### agendaItemByEvent - -> **agendaItemByEvent**: [`InterfaceAgendaItemInfo`](InterfaceAgendaItemInfo.md)[] - -Defined in: [src/utils/interfaces.ts:593](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L593) diff --git a/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceBaseEvent.md b/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceBaseEvent.md deleted file mode 100644 index fedb8ea220..0000000000 --- a/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceBaseEvent.md +++ /dev/null @@ -1,94 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / [utils/interfaces](../README.md) / InterfaceBaseEvent - -# Interface: InterfaceBaseEvent - -Defined in: [src/utils/interfaces.ts:18](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L18) - -## Extended by - -- [`InterfaceQueryOrganizationEventListItem`](InterfaceQueryOrganizationEventListItem.md) -- [`InterfaceUserEvents`](InterfaceUserEvents.md) - -## Properties - -### \_id - -> **\_id**: `string` - -Defined in: [src/utils/interfaces.ts:19](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L19) - -*** - -### allDay - -> **allDay**: `boolean` - -Defined in: [src/utils/interfaces.ts:27](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L27) - -*** - -### description - -> **description**: `string` - -Defined in: [src/utils/interfaces.ts:21](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L21) - -*** - -### endDate - -> **endDate**: `string` - -Defined in: [src/utils/interfaces.ts:23](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L23) - -*** - -### endTime - -> **endTime**: `string` - -Defined in: [src/utils/interfaces.ts:26](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L26) - -*** - -### location - -> **location**: `string` - -Defined in: [src/utils/interfaces.ts:24](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L24) - -*** - -### recurring - -> **recurring**: `boolean` - -Defined in: [src/utils/interfaces.ts:28](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L28) - -*** - -### startDate - -> **startDate**: `string` - -Defined in: [src/utils/interfaces.ts:22](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L22) - -*** - -### startTime - -> **startTime**: `string` - -Defined in: [src/utils/interfaces.ts:25](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L25) - -*** - -### title - -> **title**: `string` - -Defined in: [src/utils/interfaces.ts:20](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L20) diff --git a/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceCampaignInfo.md b/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceCampaignInfo.md deleted file mode 100644 index 9a6cb0fac5..0000000000 --- a/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceCampaignInfo.md +++ /dev/null @@ -1,65 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / [utils/interfaces](../README.md) / InterfaceCampaignInfo - -# Interface: InterfaceCampaignInfo - -Defined in: [src/utils/interfaces.ts:362](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L362) - -## Properties - -### \_id - -> **\_id**: `string` - -Defined in: [src/utils/interfaces.ts:363](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L363) - -*** - -### createdAt - -> **createdAt**: `string` - -Defined in: [src/utils/interfaces.ts:368](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L368) - -*** - -### currency - -> **currency**: `string` - -Defined in: [src/utils/interfaces.ts:369](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L369) - -*** - -### endDate - -> **endDate**: `Date` - -Defined in: [src/utils/interfaces.ts:367](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L367) - -*** - -### fundingGoal - -> **fundingGoal**: `number` - -Defined in: [src/utils/interfaces.ts:365](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L365) - -*** - -### name - -> **name**: `string` - -Defined in: [src/utils/interfaces.ts:364](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L364) - -*** - -### startDate - -> **startDate**: `Date` - -Defined in: [src/utils/interfaces.ts:366](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L366) diff --git a/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceCreateFund.md b/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceCreateFund.md deleted file mode 100644 index 5e0a8a39a8..0000000000 --- a/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceCreateFund.md +++ /dev/null @@ -1,49 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / [utils/interfaces](../README.md) / InterfaceCreateFund - -# Interface: InterfaceCreateFund - -Defined in: [src/utils/interfaces.ts:463](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L463) - -## Properties - -### fundName - -> **fundName**: `string` - -Defined in: [src/utils/interfaces.ts:464](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L464) - -*** - -### fundRef - -> **fundRef**: `string` - -Defined in: [src/utils/interfaces.ts:465](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L465) - -*** - -### isArchived - -> **isArchived**: `boolean` - -Defined in: [src/utils/interfaces.ts:467](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L467) - -*** - -### isDefault - -> **isDefault**: `boolean` - -Defined in: [src/utils/interfaces.ts:466](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L466) - -*** - -### taxDeductible - -> **taxDeductible**: `boolean` - -Defined in: [src/utils/interfaces.ts:468](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L468) diff --git a/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceCreatePledge.md b/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceCreatePledge.md deleted file mode 100644 index 4a0deef43c..0000000000 --- a/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceCreatePledge.md +++ /dev/null @@ -1,49 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / [utils/interfaces](../README.md) / InterfaceCreatePledge - -# Interface: InterfaceCreatePledge - -Defined in: [src/utils/interfaces.ts:508](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L508) - -## Properties - -### pledgeAmount - -> **pledgeAmount**: `number` - -Defined in: [src/utils/interfaces.ts:510](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L510) - -*** - -### pledgeCurrency - -> **pledgeCurrency**: `string` - -Defined in: [src/utils/interfaces.ts:511](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L511) - -*** - -### pledgeEndDate - -> **pledgeEndDate**: `Date` - -Defined in: [src/utils/interfaces.ts:513](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L513) - -*** - -### pledgeStartDate - -> **pledgeStartDate**: `Date` - -Defined in: [src/utils/interfaces.ts:512](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L512) - -*** - -### pledgeUsers - -> **pledgeUsers**: [`InterfaceUserInfo`](InterfaceUserInfo.md)[] - -Defined in: [src/utils/interfaces.ts:509](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L509) diff --git a/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceCreateVolunteerGroup.md b/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceCreateVolunteerGroup.md deleted file mode 100644 index 40d6858ba6..0000000000 --- a/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceCreateVolunteerGroup.md +++ /dev/null @@ -1,49 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / [utils/interfaces](../README.md) / InterfaceCreateVolunteerGroup - -# Interface: InterfaceCreateVolunteerGroup - -Defined in: [src/utils/interfaces.ts:648](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L648) - -## Properties - -### description - -> **description**: `string` - -Defined in: [src/utils/interfaces.ts:650](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L650) - -*** - -### leader - -> **leader**: [`InterfaceUserInfo`](InterfaceUserInfo.md) - -Defined in: [src/utils/interfaces.ts:651](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L651) - -*** - -### name - -> **name**: `string` - -Defined in: [src/utils/interfaces.ts:649](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L649) - -*** - -### volunteersRequired - -> **volunteersRequired**: `number` - -Defined in: [src/utils/interfaces.ts:652](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L652) - -*** - -### volunteerUsers - -> **volunteerUsers**: [`InterfaceUserInfo`](InterfaceUserInfo.md)[] - -Defined in: [src/utils/interfaces.ts:653](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L653) diff --git a/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceCustomFieldData.md b/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceCustomFieldData.md deleted file mode 100644 index deb7cbd149..0000000000 --- a/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceCustomFieldData.md +++ /dev/null @@ -1,25 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / [utils/interfaces](../README.md) / InterfaceCustomFieldData - -# Interface: InterfaceCustomFieldData - -Defined in: [src/utils/interfaces.ts:600](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L600) - -## Properties - -### name - -> **name**: `string` - -Defined in: [src/utils/interfaces.ts:602](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L602) - -*** - -### type - -> **type**: `string` - -Defined in: [src/utils/interfaces.ts:601](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L601) diff --git a/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceEventVolunteerInfo.md b/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceEventVolunteerInfo.md deleted file mode 100644 index 999d6f6915..0000000000 --- a/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceEventVolunteerInfo.md +++ /dev/null @@ -1,73 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / [utils/interfaces](../README.md) / InterfaceEventVolunteerInfo - -# Interface: InterfaceEventVolunteerInfo - -Defined in: [src/utils/interfaces.ts:605](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L605) - -## Properties - -### \_id - -> **\_id**: `string` - -Defined in: [src/utils/interfaces.ts:606](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L606) - -*** - -### assignments - -> **assignments**: `object`[] - -Defined in: [src/utils/interfaces.ts:610](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L610) - -#### \_id - -> **\_id**: `string` - -*** - -### groups - -> **groups**: `object`[] - -Defined in: [src/utils/interfaces.ts:613](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L613) - -#### \_id - -> **\_id**: `string` - -#### name - -> **name**: `string` - -#### volunteers - -> **volunteers**: `object`[] - -*** - -### hasAccepted - -> **hasAccepted**: `boolean` - -Defined in: [src/utils/interfaces.ts:607](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L607) - -*** - -### hoursVolunteered - -> **hoursVolunteered**: `number` - -Defined in: [src/utils/interfaces.ts:608](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L608) - -*** - -### user - -> **user**: [`InterfaceUserInfo`](InterfaceUserInfo.md) - -Defined in: [src/utils/interfaces.ts:609](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L609) diff --git a/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceFormData.md b/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceFormData.md deleted file mode 100644 index 22d2d1edb6..0000000000 --- a/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceFormData.md +++ /dev/null @@ -1,49 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / [utils/interfaces](../README.md) / InterfaceFormData - -# Interface: InterfaceFormData - -Defined in: [src/utils/interfaces.ts:552](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L552) - -## Properties - -### email - -> **email**: `string` - -Defined in: [src/utils/interfaces.ts:555](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L555) - -*** - -### firstName - -> **firstName**: `string` - -Defined in: [src/utils/interfaces.ts:553](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L553) - -*** - -### gender - -> **gender**: `string` - -Defined in: [src/utils/interfaces.ts:557](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L557) - -*** - -### lastName - -> **lastName**: `string` - -Defined in: [src/utils/interfaces.ts:554](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L554) - -*** - -### phoneNo - -> **phoneNo**: `string` - -Defined in: [src/utils/interfaces.ts:556](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L556) diff --git a/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceFundInfo.md b/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceFundInfo.md deleted file mode 100644 index 5efc1491dd..0000000000 --- a/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceFundInfo.md +++ /dev/null @@ -1,93 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / [utils/interfaces](../README.md) / InterfaceFundInfo - -# Interface: InterfaceFundInfo - -Defined in: [src/utils/interfaces.ts:351](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L351) - -## Properties - -### \_id - -> **\_id**: `string` - -Defined in: [src/utils/interfaces.ts:352](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L352) - -*** - -### createdAt - -> **createdAt**: `string` - -Defined in: [src/utils/interfaces.ts:358](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L358) - -*** - -### creator - -> **creator**: `object` - -Defined in: [src/utils/interfaces.ts:360](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L360) - -#### \_id - -> **\_id**: `string` - -#### firstName - -> **firstName**: `string` - -#### lastName - -> **lastName**: `string` - -*** - -### isArchived - -> **isArchived**: `boolean` - -Defined in: [src/utils/interfaces.ts:356](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L356) - -*** - -### isDefault - -> **isDefault**: `boolean` - -Defined in: [src/utils/interfaces.ts:357](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L357) - -*** - -### name - -> **name**: `string` - -Defined in: [src/utils/interfaces.ts:353](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L353) - -*** - -### organizationId - -> **organizationId**: `string` - -Defined in: [src/utils/interfaces.ts:359](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L359) - -*** - -### refrenceNumber - -> **refrenceNumber**: `string` - -Defined in: [src/utils/interfaces.ts:354](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L354) - -*** - -### taxDeductible - -> **taxDeductible**: `boolean` - -Defined in: [src/utils/interfaces.ts:355](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L355) diff --git a/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceMapType.md b/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceMapType.md deleted file mode 100644 index 501f7b4569..0000000000 --- a/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceMapType.md +++ /dev/null @@ -1,13 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / [utils/interfaces](../README.md) / InterfaceMapType - -# Interface: InterfaceMapType - -Defined in: [src/utils/interfaces.ts:596](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L596) - -## Indexable - -\[`key`: `string`\]: `string` diff --git a/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceMemberInfo.md b/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceMemberInfo.md deleted file mode 100644 index a18b78c9cd..0000000000 --- a/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceMemberInfo.md +++ /dev/null @@ -1,69 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / [utils/interfaces](../README.md) / InterfaceMemberInfo - -# Interface: InterfaceMemberInfo - -Defined in: [src/utils/interfaces.ts:79](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L79) - -## Properties - -### \_id - -> **\_id**: `string` - -Defined in: [src/utils/interfaces.ts:80](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L80) - -*** - -### createdAt - -> **createdAt**: `string` - -Defined in: [src/utils/interfaces.ts:85](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L85) - -*** - -### email - -> **email**: `string` - -Defined in: [src/utils/interfaces.ts:83](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L83) - -*** - -### firstName - -> **firstName**: `string` - -Defined in: [src/utils/interfaces.ts:81](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L81) - -*** - -### image - -> **image**: `string` - -Defined in: [src/utils/interfaces.ts:84](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L84) - -*** - -### lastName - -> **lastName**: `string` - -Defined in: [src/utils/interfaces.ts:82](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L82) - -*** - -### organizationsBlockedBy - -> **organizationsBlockedBy**: `object`[] - -Defined in: [src/utils/interfaces.ts:86](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L86) - -#### \_id - -> **\_id**: `string` diff --git a/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceMembersList.md b/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceMembersList.md deleted file mode 100644 index 502e9bd0a4..0000000000 --- a/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceMembersList.md +++ /dev/null @@ -1,25 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / [utils/interfaces](../README.md) / InterfaceMembersList - -# Interface: InterfaceMembersList - -Defined in: [src/utils/interfaces.ts:72](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L72) - -## Properties - -### organizations - -> **organizations**: `object`[] - -Defined in: [src/utils/interfaces.ts:73](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L73) - -#### \_id - -> **\_id**: `string` - -#### members - -> **members**: [`InterfaceMemberInfo`](InterfaceMemberInfo.md)[] diff --git a/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceOrgConnectionInfoType.md b/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceOrgConnectionInfoType.md deleted file mode 100644 index 90ed8396be..0000000000 --- a/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceOrgConnectionInfoType.md +++ /dev/null @@ -1,93 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / [utils/interfaces](../README.md) / InterfaceOrgConnectionInfoType - -# Interface: InterfaceOrgConnectionInfoType - -Defined in: [src/utils/interfaces.ts:91](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L91) - -## Properties - -### \_id - -> **\_id**: `string` - -Defined in: [src/utils/interfaces.ts:92](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L92) - -*** - -### address - -> **address**: [`InterfaceAddress`](InterfaceAddress.md) - -Defined in: [src/utils/interfaces.ts:107](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L107) - -*** - -### admins - -> **admins**: `object`[] - -Defined in: [src/utils/interfaces.ts:103](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L103) - -#### \_id - -> **\_id**: `string` - -*** - -### createdAt - -> **createdAt**: `string` - -Defined in: [src/utils/interfaces.ts:106](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L106) - -*** - -### creator - -> **creator**: `object` - -Defined in: [src/utils/interfaces.ts:94](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L94) - -#### \_id - -> **\_id**: `string` - -#### firstName - -> **firstName**: `string` - -#### lastName - -> **lastName**: `string` - -*** - -### image - -> **image**: `string` - -Defined in: [src/utils/interfaces.ts:93](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L93) - -*** - -### members - -> **members**: `object`[] - -Defined in: [src/utils/interfaces.ts:100](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L100) - -#### \_id - -> **\_id**: `string` - -*** - -### name - -> **name**: `string` - -Defined in: [src/utils/interfaces.ts:99](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L99) diff --git a/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceOrgConnectionType.md b/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceOrgConnectionType.md deleted file mode 100644 index 46c8057fa2..0000000000 --- a/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceOrgConnectionType.md +++ /dev/null @@ -1,17 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / [utils/interfaces](../README.md) / InterfaceOrgConnectionType - -# Interface: InterfaceOrgConnectionType - -Defined in: [src/utils/interfaces.ts:109](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L109) - -## Properties - -### organizationsConnection - -> **organizationsConnection**: [`InterfaceOrgConnectionInfoType`](InterfaceOrgConnectionInfoType.md)[] - -Defined in: [src/utils/interfaces.ts:110](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L110) diff --git a/docs/docs/auto-docs/utils/interfaces/interfaces/InterfacePledgeInfo.md b/docs/docs/auto-docs/utils/interfaces/interfaces/InterfacePledgeInfo.md deleted file mode 100644 index 877c7a7ba8..0000000000 --- a/docs/docs/auto-docs/utils/interfaces/interfaces/InterfacePledgeInfo.md +++ /dev/null @@ -1,77 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / [utils/interfaces](../README.md) / InterfacePledgeInfo - -# Interface: InterfacePledgeInfo - -Defined in: [src/utils/interfaces.ts:371](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L371) - -## Properties - -### \_id - -> **\_id**: `string` - -Defined in: [src/utils/interfaces.ts:372](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L372) - -*** - -### amount - -> **amount**: `number` - -Defined in: [src/utils/interfaces.ts:374](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L374) - -*** - -### campaign? - -> `optional` **campaign**: `object` - -Defined in: [src/utils/interfaces.ts:373](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L373) - -#### \_id - -> **\_id**: `string` - -#### endDate - -> **endDate**: `Date` - -#### name - -> **name**: `string` - -*** - -### currency - -> **currency**: `string` - -Defined in: [src/utils/interfaces.ts:375](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L375) - -*** - -### endDate - -> **endDate**: `string` - -Defined in: [src/utils/interfaces.ts:376](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L376) - -*** - -### startDate - -> **startDate**: `string` - -Defined in: [src/utils/interfaces.ts:377](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L377) - -*** - -### users - -> **users**: [`InterfaceUserInfo`](InterfaceUserInfo.md)[] - -Defined in: [src/utils/interfaces.ts:378](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L378) diff --git a/docs/docs/auto-docs/utils/interfaces/interfaces/InterfacePostCard.md b/docs/docs/auto-docs/utils/interfaces/interfaces/InterfacePostCard.md deleted file mode 100644 index 16522989a9..0000000000 --- a/docs/docs/auto-docs/utils/interfaces/interfaces/InterfacePostCard.md +++ /dev/null @@ -1,173 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / [utils/interfaces](../README.md) / InterfacePostCard - -# Interface: InterfacePostCard - -Defined in: [src/utils/interfaces.ts:471](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L471) - -## Properties - -### commentCount - -> **commentCount**: `number` - -Defined in: [src/utils/interfaces.ts:485](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L485) - -*** - -### comments - -> **comments**: `object`[] - -Defined in: [src/utils/interfaces.ts:486](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L486) - -#### creator - -> **creator**: `object` - -##### creator.email - -> **email**: `string` - -##### creator.firstName - -> **firstName**: `string` - -##### creator.id - -> **id**: `string` - -##### creator.lastName - -> **lastName**: `string` - -#### id - -> **id**: `string` - -#### likeCount - -> **likeCount**: `number` - -#### likedBy - -> **likedBy**: `object`[] - -#### text - -> **text**: `string` - -*** - -### creator - -> **creator**: `object` - -Defined in: [src/utils/interfaces.ts:473](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L473) - -#### email - -> **email**: `string` - -#### firstName - -> **firstName**: `string` - -#### id - -> **id**: `string` - -#### lastName - -> **lastName**: `string` - -*** - -### fetchPosts() - -> **fetchPosts**: () => `void` - -Defined in: [src/utils/interfaces.ts:505](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L505) - -#### Returns - -`void` - -*** - -### id - -> **id**: `string` - -Defined in: [src/utils/interfaces.ts:472](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L472) - -*** - -### image - -> **image**: `string` - -Defined in: [src/utils/interfaces.ts:480](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L480) - -*** - -### likeCount - -> **likeCount**: `number` - -Defined in: [src/utils/interfaces.ts:484](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L484) - -*** - -### likedBy - -> **likedBy**: `object`[] - -Defined in: [src/utils/interfaces.ts:500](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L500) - -#### firstName - -> **firstName**: `string` - -#### id - -> **id**: `string` - -#### lastName - -> **lastName**: `string` - -*** - -### postedAt - -> **postedAt**: `string` - -Defined in: [src/utils/interfaces.ts:479](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L479) - -*** - -### text - -> **text**: `string` - -Defined in: [src/utils/interfaces.ts:482](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L482) - -*** - -### title - -> **title**: `string` - -Defined in: [src/utils/interfaces.ts:483](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L483) - -*** - -### video - -> **video**: `string` - -Defined in: [src/utils/interfaces.ts:481](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L481) diff --git a/docs/docs/auto-docs/utils/interfaces/interfaces/InterfacePostForm.md b/docs/docs/auto-docs/utils/interfaces/interfaces/InterfacePostForm.md deleted file mode 100644 index 03b94961b2..0000000000 --- a/docs/docs/auto-docs/utils/interfaces/interfaces/InterfacePostForm.md +++ /dev/null @@ -1,49 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / [utils/interfaces](../README.md) / InterfacePostForm - -# Interface: InterfacePostForm - -Defined in: [src/utils/interfaces.ts:173](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L173) - -## Properties - -### pinned - -> **pinned**: `boolean` - -Defined in: [src/utils/interfaces.ts:178](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L178) - -*** - -### postinfo - -> **postinfo**: `string` - -Defined in: [src/utils/interfaces.ts:175](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L175) - -*** - -### postphoto - -> **postphoto**: `string` - -Defined in: [src/utils/interfaces.ts:176](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L176) - -*** - -### posttitle - -> **posttitle**: `string` - -Defined in: [src/utils/interfaces.ts:174](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L174) - -*** - -### postvideo - -> **postvideo**: `string` - -Defined in: [src/utils/interfaces.ts:177](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L177) diff --git a/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceQueryBlockPageMemberListItem.md b/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceQueryBlockPageMemberListItem.md deleted file mode 100644 index 121d5bb3db..0000000000 --- a/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceQueryBlockPageMemberListItem.md +++ /dev/null @@ -1,53 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / [utils/interfaces](../README.md) / InterfaceQueryBlockPageMemberListItem - -# Interface: InterfaceQueryBlockPageMemberListItem - -Defined in: [src/utils/interfaces.ts:386](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L386) - -## Properties - -### \_id - -> **\_id**: `string` - -Defined in: [src/utils/interfaces.ts:387](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L387) - -*** - -### email - -> **email**: `string` - -Defined in: [src/utils/interfaces.ts:390](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L390) - -*** - -### firstName - -> **firstName**: `string` - -Defined in: [src/utils/interfaces.ts:388](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L388) - -*** - -### lastName - -> **lastName**: `string` - -Defined in: [src/utils/interfaces.ts:389](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L389) - -*** - -### organizationsBlockedBy - -> **organizationsBlockedBy**: `object`[] - -Defined in: [src/utils/interfaces.ts:391](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L391) - -#### \_id - -> **\_id**: `string` diff --git a/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceQueryFundCampaignsPledges.md b/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceQueryFundCampaignsPledges.md deleted file mode 100644 index 2fa6b70ae0..0000000000 --- a/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceQueryFundCampaignsPledges.md +++ /dev/null @@ -1,69 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / [utils/interfaces](../README.md) / InterfaceQueryFundCampaignsPledges - -# Interface: InterfaceQueryFundCampaignsPledges - -Defined in: [src/utils/interfaces.ts:340](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L340) - -## Properties - -### currency - -> **currency**: `string` - -Defined in: [src/utils/interfaces.ts:346](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L346) - -*** - -### endDate - -> **endDate**: `Date` - -Defined in: [src/utils/interfaces.ts:348](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L348) - -*** - -### fundId - -> **fundId**: `object` - -Defined in: [src/utils/interfaces.ts:341](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L341) - -#### name - -> **name**: `string` - -*** - -### fundingGoal - -> **fundingGoal**: `number` - -Defined in: [src/utils/interfaces.ts:345](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L345) - -*** - -### name - -> **name**: `string` - -Defined in: [src/utils/interfaces.ts:344](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L344) - -*** - -### pledges - -> **pledges**: [`InterfacePledgeInfo`](InterfacePledgeInfo.md)[] - -Defined in: [src/utils/interfaces.ts:349](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L349) - -*** - -### startDate - -> **startDate**: `Date` - -Defined in: [src/utils/interfaces.ts:347](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L347) diff --git a/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceQueryMembershipRequestsListItem.md b/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceQueryMembershipRequestsListItem.md deleted file mode 100644 index 7e66eb2d3f..0000000000 --- a/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceQueryMembershipRequestsListItem.md +++ /dev/null @@ -1,25 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / [utils/interfaces](../README.md) / InterfaceQueryMembershipRequestsListItem - -# Interface: InterfaceQueryMembershipRequestsListItem - -Defined in: [src/utils/interfaces.ts:516](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L516) - -## Properties - -### organizations - -> **organizations**: `object`[] - -Defined in: [src/utils/interfaces.ts:517](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L517) - -#### \_id - -> **\_id**: `string` - -#### membershipRequests - -> **membershipRequests**: `object`[] diff --git a/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceQueryOrganizationAdvertisementListItem.md b/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceQueryOrganizationAdvertisementListItem.md deleted file mode 100644 index b78289b982..0000000000 --- a/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceQueryOrganizationAdvertisementListItem.md +++ /dev/null @@ -1,45 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / [utils/interfaces](../README.md) / InterfaceQueryOrganizationAdvertisementListItem - -# Interface: InterfaceQueryOrganizationAdvertisementListItem - -Defined in: [src/utils/interfaces.ts:296](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L296) - -## Properties - -### advertisements - -> **advertisements**: `object` - -Defined in: [src/utils/interfaces.ts:297](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L297) - -#### edges - -> **edges**: `object`[] - -#### pageInfo - -> **pageInfo**: `object` - -##### pageInfo.endCursor - -> **endCursor**: `string` - -##### pageInfo.hasNextPage - -> **hasNextPage**: `boolean` - -##### pageInfo.hasPreviousPage - -> **hasPreviousPage**: `boolean` - -##### pageInfo.startCursor - -> **startCursor**: `string` - -#### totalCount - -> **totalCount**: `number` diff --git a/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceQueryOrganizationEventListItem.md b/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceQueryOrganizationEventListItem.md deleted file mode 100644 index d2c118930b..0000000000 --- a/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceQueryOrganizationEventListItem.md +++ /dev/null @@ -1,149 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / [utils/interfaces](../README.md) / InterfaceQueryOrganizationEventListItem - -# Interface: InterfaceQueryOrganizationEventListItem - -Defined in: [src/utils/interfaces.ts:380](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L380) - -## Extends - -- [`InterfaceBaseEvent`](InterfaceBaseEvent.md) - -## Properties - -### \_id - -> **\_id**: `string` - -Defined in: [src/utils/interfaces.ts:19](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L19) - -#### Inherited from - -[`InterfaceBaseEvent`](InterfaceBaseEvent.md).[`_id`](InterfaceBaseEvent.md#_id) - -*** - -### allDay - -> **allDay**: `boolean` - -Defined in: [src/utils/interfaces.ts:27](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L27) - -#### Inherited from - -[`InterfaceBaseEvent`](InterfaceBaseEvent.md).[`allDay`](InterfaceBaseEvent.md#allday) - -*** - -### description - -> **description**: `string` - -Defined in: [src/utils/interfaces.ts:21](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L21) - -#### Inherited from - -[`InterfaceBaseEvent`](InterfaceBaseEvent.md).[`description`](InterfaceBaseEvent.md#description) - -*** - -### endDate - -> **endDate**: `string` - -Defined in: [src/utils/interfaces.ts:23](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L23) - -#### Inherited from - -[`InterfaceBaseEvent`](InterfaceBaseEvent.md).[`endDate`](InterfaceBaseEvent.md#enddate) - -*** - -### endTime - -> **endTime**: `string` - -Defined in: [src/utils/interfaces.ts:26](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L26) - -#### Inherited from - -[`InterfaceBaseEvent`](InterfaceBaseEvent.md).[`endTime`](InterfaceBaseEvent.md#endtime) - -*** - -### isPublic - -> **isPublic**: `boolean` - -Defined in: [src/utils/interfaces.ts:382](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L382) - -*** - -### isRegisterable - -> **isRegisterable**: `boolean` - -Defined in: [src/utils/interfaces.ts:383](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L383) - -*** - -### location - -> **location**: `string` - -Defined in: [src/utils/interfaces.ts:24](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L24) - -#### Inherited from - -[`InterfaceBaseEvent`](InterfaceBaseEvent.md).[`location`](InterfaceBaseEvent.md#location) - -*** - -### recurring - -> **recurring**: `boolean` - -Defined in: [src/utils/interfaces.ts:28](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L28) - -#### Inherited from - -[`InterfaceBaseEvent`](InterfaceBaseEvent.md).[`recurring`](InterfaceBaseEvent.md#recurring) - -*** - -### startDate - -> **startDate**: `string` - -Defined in: [src/utils/interfaces.ts:22](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L22) - -#### Inherited from - -[`InterfaceBaseEvent`](InterfaceBaseEvent.md).[`startDate`](InterfaceBaseEvent.md#startdate) - -*** - -### startTime - -> **startTime**: `string` - -Defined in: [src/utils/interfaces.ts:25](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L25) - -#### Inherited from - -[`InterfaceBaseEvent`](InterfaceBaseEvent.md).[`startTime`](InterfaceBaseEvent.md#starttime) - -*** - -### title - -> **title**: `string` - -Defined in: [src/utils/interfaces.ts:20](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L20) - -#### Inherited from - -[`InterfaceBaseEvent`](InterfaceBaseEvent.md).[`title`](InterfaceBaseEvent.md#title) diff --git a/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceQueryOrganizationFundCampaigns.md b/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceQueryOrganizationFundCampaigns.md deleted file mode 100644 index bc165b3d17..0000000000 --- a/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceQueryOrganizationFundCampaigns.md +++ /dev/null @@ -1,61 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / [utils/interfaces](../README.md) / InterfaceQueryOrganizationFundCampaigns - -# Interface: InterfaceQueryOrganizationFundCampaigns - -Defined in: [src/utils/interfaces.ts:319](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L319) - -## Properties - -### campaigns - -> **campaigns**: `object`[] - -Defined in: [src/utils/interfaces.ts:322](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L322) - -#### \_id - -> **\_id**: `string` - -#### createdAt - -> **createdAt**: `string` - -#### currency - -> **currency**: `string` - -#### endDate - -> **endDate**: `Date` - -#### fundingGoal - -> **fundingGoal**: `number` - -#### name - -> **name**: `string` - -#### startDate - -> **startDate**: `Date` - -*** - -### isArchived - -> **isArchived**: `boolean` - -Defined in: [src/utils/interfaces.ts:321](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L321) - -*** - -### name - -> **name**: `string` - -Defined in: [src/utils/interfaces.ts:320](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L320) diff --git a/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceQueryOrganizationListObject.md b/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceQueryOrganizationListObject.md deleted file mode 100644 index e12dd6baeb..0000000000 --- a/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceQueryOrganizationListObject.md +++ /dev/null @@ -1,89 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / [utils/interfaces](../README.md) / InterfaceQueryOrganizationListObject - -# Interface: InterfaceQueryOrganizationListObject - -Defined in: [src/utils/interfaces.ts:155](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L155) - -## Properties - -### \_id - -> **\_id**: `string` - -Defined in: [src/utils/interfaces.ts:156](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L156) - -*** - -### address - -> **address**: [`InterfaceAddress`](InterfaceAddress.md) - -Defined in: [src/utils/interfaces.ts:170](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L170) - -*** - -### admins - -> **admins**: `object`[] - -Defined in: [src/utils/interfaces.ts:166](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L166) - -#### \_id - -> **\_id**: `string` - -*** - -### createdAt - -> **createdAt**: `string` - -Defined in: [src/utils/interfaces.ts:169](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L169) - -*** - -### creator - -> **creator**: `object` - -Defined in: [src/utils/interfaces.ts:158](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L158) - -#### firstName - -> **firstName**: `string` - -#### lastName - -> **lastName**: `string` - -*** - -### image - -> **image**: `string` - -Defined in: [src/utils/interfaces.ts:157](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L157) - -*** - -### members - -> **members**: `object`[] - -Defined in: [src/utils/interfaces.ts:163](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L163) - -#### \_id - -> **\_id**: `string` - -*** - -### name - -> **name**: `string` - -Defined in: [src/utils/interfaces.ts:162](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L162) diff --git a/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceQueryOrganizationPostListItem.md b/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceQueryOrganizationPostListItem.md deleted file mode 100644 index acef2a8df6..0000000000 --- a/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceQueryOrganizationPostListItem.md +++ /dev/null @@ -1,45 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / [utils/interfaces](../README.md) / InterfaceQueryOrganizationPostListItem - -# Interface: InterfaceQueryOrganizationPostListItem - -Defined in: [src/utils/interfaces.ts:180](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L180) - -## Properties - -### posts - -> **posts**: `object` - -Defined in: [src/utils/interfaces.ts:181](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L181) - -#### edges - -> **edges**: `object`[] - -#### pageInfo - -> **pageInfo**: `object` - -##### pageInfo.endCursor - -> **endCursor**: `string` - -##### pageInfo.hasNextPage - -> **hasNextPage**: `boolean` - -##### pageInfo.hasPreviousPage - -> **hasPreviousPage**: `boolean` - -##### pageInfo.startCursor - -> **startCursor**: `string` - -#### totalCount - -> **totalCount**: `number` diff --git a/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceQueryOrganizationUserTags.md b/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceQueryOrganizationUserTags.md deleted file mode 100644 index 2e85b243fd..0000000000 --- a/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceQueryOrganizationUserTags.md +++ /dev/null @@ -1,17 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / [utils/interfaces](../README.md) / InterfaceQueryOrganizationUserTags - -# Interface: InterfaceQueryOrganizationUserTags - -Defined in: [src/utils/interfaces.ts:269](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L269) - -## Properties - -### userTags - -> **userTags**: `InterfaceTagNodeData` - -Defined in: [src/utils/interfaces.ts:270](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L270) diff --git a/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceQueryOrganizationsListObject.md b/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceQueryOrganizationsListObject.md deleted file mode 100644 index a6b3624ecc..0000000000 --- a/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceQueryOrganizationsListObject.md +++ /dev/null @@ -1,189 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / [utils/interfaces](../README.md) / InterfaceQueryOrganizationsListObject - -# Interface: InterfaceQueryOrganizationsListObject - -Defined in: [src/utils/interfaces.ts:113](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L113) - -## Properties - -### \_id - -> **\_id**: `string` - -Defined in: [src/utils/interfaces.ts:114](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L114) - -*** - -### address - -> **address**: [`InterfaceAddress`](InterfaceAddress.md) - -Defined in: [src/utils/interfaces.ts:123](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L123) - -*** - -### admins - -> **admins**: `object`[] - -Defined in: [src/utils/interfaces.ts:132](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L132) - -#### \_id - -> **\_id**: `string` - -#### createdAt - -> **createdAt**: `string` - -#### email - -> **email**: `string` - -#### firstName - -> **firstName**: `string` - -#### lastName - -> **lastName**: `string` - -*** - -### blockedUsers - -> **blockedUsers**: `object`[] - -Defined in: [src/utils/interfaces.ts:147](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L147) - -#### \_id - -> **\_id**: `string` - -#### email - -> **email**: `string` - -#### firstName - -> **firstName**: `string` - -#### lastName - -> **lastName**: `string` - -*** - -### creator - -> **creator**: `object` - -Defined in: [src/utils/interfaces.ts:116](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L116) - -#### email - -> **email**: `string` - -#### firstName - -> **firstName**: `string` - -#### lastName - -> **lastName**: `string` - -*** - -### description - -> **description**: `string` - -Defined in: [src/utils/interfaces.ts:122](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L122) - -*** - -### image - -> **image**: `string` - -Defined in: [src/utils/interfaces.ts:115](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L115) - -*** - -### members - -> **members**: `object`[] - -Defined in: [src/utils/interfaces.ts:126](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L126) - -#### \_id - -> **\_id**: `string` - -#### email - -> **email**: `string` - -#### firstName - -> **firstName**: `string` - -#### lastName - -> **lastName**: `string` - -*** - -### membershipRequests - -> **membershipRequests**: `object`[] - -Defined in: [src/utils/interfaces.ts:139](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L139) - -#### \_id - -> **\_id**: `string` - -#### user - -> **user**: `object` - -##### user.email - -> **email**: `string` - -##### user.firstName - -> **firstName**: `string` - -##### user.lastName - -> **lastName**: `string` - -*** - -### name - -> **name**: `string` - -Defined in: [src/utils/interfaces.ts:121](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L121) - -*** - -### userRegistrationRequired - -> **userRegistrationRequired**: `boolean` - -Defined in: [src/utils/interfaces.ts:124](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L124) - -*** - -### visibleInSearch - -> **visibleInSearch**: `boolean` - -Defined in: [src/utils/interfaces.ts:125](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L125) diff --git a/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceQueryUserListItem.md b/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceQueryUserListItem.md deleted file mode 100644 index 59b2296d79..0000000000 --- a/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceQueryUserListItem.md +++ /dev/null @@ -1,89 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / [utils/interfaces](../README.md) / InterfaceQueryUserListItem - -# Interface: InterfaceQueryUserListItem - -Defined in: [src/utils/interfaces.ts:396](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L396) - -## Properties - -### appUserProfile - -> **appUserProfile**: `object` - -Defined in: [src/utils/interfaces.ts:435](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L435) - -#### \_id - -> **\_id**: `string` - -#### adminFor - -> **adminFor**: `object`[] - -#### createdEvents - -> **createdEvents**: `object`[] - -#### createdOrganizations - -> **createdOrganizations**: `object`[] - -#### eventAdmin - -> **eventAdmin**: `object`[] - -#### isSuperAdmin - -> **isSuperAdmin**: `boolean` - -*** - -### user - -> **user**: `object` - -Defined in: [src/utils/interfaces.ts:397](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L397) - -#### \_id - -> **\_id**: `string` - -#### createdAt - -> **createdAt**: `string` - -#### email - -> **email**: `string` - -#### firstName - -> **firstName**: `string` - -#### image - -> **image**: `string` - -#### joinedOrganizations - -> **joinedOrganizations**: `object`[] - -#### lastName - -> **lastName**: `string` - -#### membershipRequests - -> **membershipRequests**: `object`[] - -#### organizationsBlockedBy - -> **organizationsBlockedBy**: `object`[] - -#### registeredEvents - -> **registeredEvents**: `object`[] diff --git a/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceQueryUserTagChildTags.md b/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceQueryUserTagChildTags.md deleted file mode 100644 index ccdfa86de0..0000000000 --- a/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceQueryUserTagChildTags.md +++ /dev/null @@ -1,41 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / [utils/interfaces](../README.md) / InterfaceQueryUserTagChildTags - -# Interface: InterfaceQueryUserTagChildTags - -Defined in: [src/utils/interfaces.ts:273](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L273) - -## Properties - -### ancestorTags - -> **ancestorTags**: `object`[] - -Defined in: [src/utils/interfaces.ts:276](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L276) - -#### \_id - -> **\_id**: `string` - -#### name - -> **name**: `string` - -*** - -### childTags - -> **childTags**: `InterfaceTagNodeData` - -Defined in: [src/utils/interfaces.ts:275](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L275) - -*** - -### name - -> **name**: `string` - -Defined in: [src/utils/interfaces.ts:274](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L274) diff --git a/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceQueryUserTagsAssignedMembers.md b/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceQueryUserTagsAssignedMembers.md deleted file mode 100644 index 4597be30b1..0000000000 --- a/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceQueryUserTagsAssignedMembers.md +++ /dev/null @@ -1,41 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / [utils/interfaces](../README.md) / InterfaceQueryUserTagsAssignedMembers - -# Interface: InterfaceQueryUserTagsAssignedMembers - -Defined in: [src/utils/interfaces.ts:282](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L282) - -## Properties - -### ancestorTags - -> **ancestorTags**: `object`[] - -Defined in: [src/utils/interfaces.ts:285](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L285) - -#### \_id - -> **\_id**: `string` - -#### name - -> **name**: `string` - -*** - -### name - -> **name**: `string` - -Defined in: [src/utils/interfaces.ts:283](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L283) - -*** - -### usersAssignedTo - -> **usersAssignedTo**: `InterfaceTagMembersData` - -Defined in: [src/utils/interfaces.ts:284](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L284) diff --git a/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceQueryUserTagsMembersToAssignTo.md b/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceQueryUserTagsMembersToAssignTo.md deleted file mode 100644 index 0e79c67bd2..0000000000 --- a/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceQueryUserTagsMembersToAssignTo.md +++ /dev/null @@ -1,25 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / [utils/interfaces](../README.md) / InterfaceQueryUserTagsMembersToAssignTo - -# Interface: InterfaceQueryUserTagsMembersToAssignTo - -Defined in: [src/utils/interfaces.ts:291](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L291) - -## Properties - -### name - -> **name**: `string` - -Defined in: [src/utils/interfaces.ts:292](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L292) - -*** - -### usersToAssignTo - -> **usersToAssignTo**: `InterfaceTagMembersData` - -Defined in: [src/utils/interfaces.ts:293](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L293) diff --git a/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceQueryVenueListItem.md b/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceQueryVenueListItem.md deleted file mode 100644 index d647eab137..0000000000 --- a/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceQueryVenueListItem.md +++ /dev/null @@ -1,49 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / [utils/interfaces](../README.md) / InterfaceQueryVenueListItem - -# Interface: InterfaceQueryVenueListItem - -Defined in: [src/utils/interfaces.ts:445](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L445) - -## Properties - -### \_id - -> **\_id**: `string` - -Defined in: [src/utils/interfaces.ts:446](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L446) - -*** - -### capacity - -> **capacity**: `string` - -Defined in: [src/utils/interfaces.ts:450](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L450) - -*** - -### description - -> **description**: `string` - -Defined in: [src/utils/interfaces.ts:448](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L448) - -*** - -### image - -> **image**: `string` - -Defined in: [src/utils/interfaces.ts:449](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L449) - -*** - -### name - -> **name**: `string` - -Defined in: [src/utils/interfaces.ts:447](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L447) diff --git a/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceTagData.md b/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceTagData.md deleted file mode 100644 index a7d36735fe..0000000000 --- a/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceTagData.md +++ /dev/null @@ -1,77 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / [utils/interfaces](../README.md) / InterfaceTagData - -# Interface: InterfaceTagData - -Defined in: [src/utils/interfaces.ts:222](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L222) - -## Properties - -### \_id - -> **\_id**: `string` - -Defined in: [src/utils/interfaces.ts:223](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L223) - -*** - -### ancestorTags - -> **ancestorTags**: `object`[] - -Defined in: [src/utils/interfaces.ts:232](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L232) - -#### \_id - -> **\_id**: `string` - -#### name - -> **name**: `string` - -*** - -### childTags - -> **childTags**: `object` - -Defined in: [src/utils/interfaces.ts:229](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L229) - -#### totalCount - -> **totalCount**: `number` - -*** - -### name - -> **name**: `string` - -Defined in: [src/utils/interfaces.ts:224](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L224) - -*** - -### parentTag - -> **parentTag**: `object` - -Defined in: [src/utils/interfaces.ts:225](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L225) - -#### \_id - -> **\_id**: `string` - -*** - -### usersAssignedTo - -> **usersAssignedTo**: `object` - -Defined in: [src/utils/interfaces.ts:226](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L226) - -#### totalCount - -> **totalCount**: `number` diff --git a/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceUserCampaign.md b/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceUserCampaign.md deleted file mode 100644 index e75249ee39..0000000000 --- a/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceUserCampaign.md +++ /dev/null @@ -1,57 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / [utils/interfaces](../README.md) / InterfaceUserCampaign - -# Interface: InterfaceUserCampaign - -Defined in: [src/utils/interfaces.ts:332](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L332) - -## Properties - -### \_id - -> **\_id**: `string` - -Defined in: [src/utils/interfaces.ts:333](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L333) - -*** - -### currency - -> **currency**: `string` - -Defined in: [src/utils/interfaces.ts:338](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L338) - -*** - -### endDate - -> **endDate**: `Date` - -Defined in: [src/utils/interfaces.ts:337](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L337) - -*** - -### fundingGoal - -> **fundingGoal**: `number` - -Defined in: [src/utils/interfaces.ts:335](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L335) - -*** - -### name - -> **name**: `string` - -Defined in: [src/utils/interfaces.ts:334](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L334) - -*** - -### startDate - -> **startDate**: `Date` - -Defined in: [src/utils/interfaces.ts:336](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L336) diff --git a/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceUserEvents.md b/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceUserEvents.md deleted file mode 100644 index fcf95fc82f..0000000000 --- a/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceUserEvents.md +++ /dev/null @@ -1,181 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / [utils/interfaces](../README.md) / InterfaceUserEvents - -# Interface: InterfaceUserEvents - -Defined in: [src/utils/interfaces.ts:656](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L656) - -## Extends - -- [`InterfaceBaseEvent`](InterfaceBaseEvent.md) - -## Properties - -### \_id - -> **\_id**: `string` - -Defined in: [src/utils/interfaces.ts:19](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L19) - -#### Inherited from - -[`InterfaceBaseEvent`](InterfaceBaseEvent.md).[`_id`](InterfaceBaseEvent.md#_id) - -*** - -### allDay - -> **allDay**: `boolean` - -Defined in: [src/utils/interfaces.ts:27](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L27) - -#### Inherited from - -[`InterfaceBaseEvent`](InterfaceBaseEvent.md).[`allDay`](InterfaceBaseEvent.md#allday) - -*** - -### description - -> **description**: `string` - -Defined in: [src/utils/interfaces.ts:21](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L21) - -#### Inherited from - -[`InterfaceBaseEvent`](InterfaceBaseEvent.md).[`description`](InterfaceBaseEvent.md#description) - -*** - -### endDate - -> **endDate**: `string` - -Defined in: [src/utils/interfaces.ts:23](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L23) - -#### Inherited from - -[`InterfaceBaseEvent`](InterfaceBaseEvent.md).[`endDate`](InterfaceBaseEvent.md#enddate) - -*** - -### endTime - -> **endTime**: `string` - -Defined in: [src/utils/interfaces.ts:26](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L26) - -#### Inherited from - -[`InterfaceBaseEvent`](InterfaceBaseEvent.md).[`endTime`](InterfaceBaseEvent.md#endtime) - -*** - -### location - -> **location**: `string` - -Defined in: [src/utils/interfaces.ts:24](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L24) - -#### Inherited from - -[`InterfaceBaseEvent`](InterfaceBaseEvent.md).[`location`](InterfaceBaseEvent.md#location) - -*** - -### recurring - -> **recurring**: `boolean` - -Defined in: [src/utils/interfaces.ts:28](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L28) - -#### Inherited from - -[`InterfaceBaseEvent`](InterfaceBaseEvent.md).[`recurring`](InterfaceBaseEvent.md#recurring) - -*** - -### startDate - -> **startDate**: `string` - -Defined in: [src/utils/interfaces.ts:22](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L22) - -#### Inherited from - -[`InterfaceBaseEvent`](InterfaceBaseEvent.md).[`startDate`](InterfaceBaseEvent.md#startdate) - -*** - -### startTime - -> **startTime**: `string` - -Defined in: [src/utils/interfaces.ts:25](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L25) - -#### Inherited from - -[`InterfaceBaseEvent`](InterfaceBaseEvent.md).[`startTime`](InterfaceBaseEvent.md#starttime) - -*** - -### title - -> **title**: `string` - -Defined in: [src/utils/interfaces.ts:20](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L20) - -#### Inherited from - -[`InterfaceBaseEvent`](InterfaceBaseEvent.md).[`title`](InterfaceBaseEvent.md#title) - -*** - -### volunteerGroups - -> **volunteerGroups**: `object`[] - -Defined in: [src/utils/interfaces.ts:657](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L657) - -#### \_id - -> **\_id**: `string` - -#### description - -> **description**: `string` - -#### name - -> **name**: `string` - -#### volunteers - -> **volunteers**: `object`[] - -#### volunteersRequired - -> **volunteersRequired**: `number` - -*** - -### volunteers - -> **volunteers**: `object`[] - -Defined in: [src/utils/interfaces.ts:664](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L664) - -#### \_id - -> **\_id**: `string` - -#### user - -> **user**: `object` - -##### user.\_id - -> **\_id**: `string` diff --git a/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceUserInfo.md b/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceUserInfo.md deleted file mode 100644 index 26ca712cc3..0000000000 --- a/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceUserInfo.md +++ /dev/null @@ -1,41 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / [utils/interfaces](../README.md) / InterfaceUserInfo - -# Interface: InterfaceUserInfo - -Defined in: [src/utils/interfaces.ts:10](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L10) - -## Properties - -### \_id - -> **\_id**: `string` - -Defined in: [src/utils/interfaces.ts:11](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L11) - -*** - -### firstName - -> **firstName**: `string` - -Defined in: [src/utils/interfaces.ts:12](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L12) - -*** - -### image? - -> `optional` **image**: `string` - -Defined in: [src/utils/interfaces.ts:14](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L14) - -*** - -### lastName - -> **lastName**: `string` - -Defined in: [src/utils/interfaces.ts:13](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L13) diff --git a/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceUserType.md b/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceUserType.md deleted file mode 100644 index c2e31ce14a..0000000000 --- a/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceUserType.md +++ /dev/null @@ -1,33 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / [utils/interfaces](../README.md) / InterfaceUserType - -# Interface: InterfaceUserType - -Defined in: [src/utils/interfaces.ts:1](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L1) - -## Properties - -### user - -> **user**: `object` - -Defined in: [src/utils/interfaces.ts:2](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L2) - -#### email - -> **email**: `string` - -#### firstName - -> **firstName**: `string` - -#### image - -> **image**: `string` - -#### lastName - -> **lastName**: `string` diff --git a/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceVolunteerGroupInfo.md b/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceVolunteerGroupInfo.md deleted file mode 100644 index 714b14505e..0000000000 --- a/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceVolunteerGroupInfo.md +++ /dev/null @@ -1,125 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / [utils/interfaces](../README.md) / InterfaceVolunteerGroupInfo - -# Interface: InterfaceVolunteerGroupInfo - -Defined in: [src/utils/interfaces.ts:622](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L622) - -## Properties - -### \_id - -> **\_id**: `string` - -Defined in: [src/utils/interfaces.ts:623](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L623) - -*** - -### assignments - -> **assignments**: `object`[] - -Defined in: [src/utils/interfaces.ts:637](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L637) - -#### \_id - -> **\_id**: `string` - -#### actionItemCategory - -> **actionItemCategory**: `object` - -##### actionItemCategory.\_id - -> **\_id**: `string` - -##### actionItemCategory.name - -> **name**: `string` - -#### allottedHours - -> **allottedHours**: `number` - -#### isCompleted - -> **isCompleted**: `boolean` - -*** - -### createdAt - -> **createdAt**: `string` - -Defined in: [src/utils/interfaces.ts:630](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L630) - -*** - -### creator - -> **creator**: [`InterfaceUserInfo`](InterfaceUserInfo.md) - -Defined in: [src/utils/interfaces.ts:631](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L631) - -*** - -### description - -> **description**: `string` - -Defined in: [src/utils/interfaces.ts:625](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L625) - -*** - -### event - -> **event**: `object` - -Defined in: [src/utils/interfaces.ts:626](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L626) - -#### \_id - -> **\_id**: `string` - -*** - -### leader - -> **leader**: [`InterfaceUserInfo`](InterfaceUserInfo.md) - -Defined in: [src/utils/interfaces.ts:632](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L632) - -*** - -### name - -> **name**: `string` - -Defined in: [src/utils/interfaces.ts:624](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L624) - -*** - -### volunteers - -> **volunteers**: `object`[] - -Defined in: [src/utils/interfaces.ts:633](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L633) - -#### \_id - -> **\_id**: `string` - -#### user - -> **user**: [`InterfaceUserInfo`](InterfaceUserInfo.md) - -*** - -### volunteersRequired - -> **volunteersRequired**: `number` - -Defined in: [src/utils/interfaces.ts:629](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L629) diff --git a/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceVolunteerMembership.md b/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceVolunteerMembership.md deleted file mode 100644 index addd1b68ee..0000000000 --- a/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceVolunteerMembership.md +++ /dev/null @@ -1,85 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / [utils/interfaces](../README.md) / InterfaceVolunteerMembership - -# Interface: InterfaceVolunteerMembership - -Defined in: [src/utils/interfaces.ts:672](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L672) - -## Properties - -### \_id - -> **\_id**: `string` - -Defined in: [src/utils/interfaces.ts:673](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L673) - -*** - -### createdAt - -> **createdAt**: `string` - -Defined in: [src/utils/interfaces.ts:675](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L675) - -*** - -### event - -> **event**: `object` - -Defined in: [src/utils/interfaces.ts:676](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L676) - -#### \_id - -> **\_id**: `string` - -#### startDate - -> **startDate**: `string` - -#### title - -> **title**: `string` - -*** - -### group - -> **group**: `object` - -Defined in: [src/utils/interfaces.ts:685](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L685) - -#### \_id - -> **\_id**: `string` - -#### name - -> **name**: `string` - -*** - -### status - -> **status**: `string` - -Defined in: [src/utils/interfaces.ts:674](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L674) - -*** - -### volunteer - -> **volunteer**: `object` - -Defined in: [src/utils/interfaces.ts:681](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L681) - -#### \_id - -> **\_id**: `string` - -#### user - -> **user**: [`InterfaceUserInfo`](InterfaceUserInfo.md) diff --git a/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceVolunteerRank.md b/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceVolunteerRank.md deleted file mode 100644 index 76d34af664..0000000000 --- a/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceVolunteerRank.md +++ /dev/null @@ -1,53 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / [utils/interfaces](../README.md) / InterfaceVolunteerRank - -# Interface: InterfaceVolunteerRank - -Defined in: [src/utils/interfaces.ts:691](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L691) - -## Properties - -### hoursVolunteered - -> **hoursVolunteered**: `number` - -Defined in: [src/utils/interfaces.ts:693](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L693) - -*** - -### rank - -> **rank**: `number` - -Defined in: [src/utils/interfaces.ts:692](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L692) - -*** - -### user - -> **user**: `object` - -Defined in: [src/utils/interfaces.ts:694](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/interfaces.ts#L694) - -#### \_id - -> **\_id**: `string` - -#### email - -> **email**: `string` - -#### firstName - -> **firstName**: `string` - -#### image - -> **image**: `string` - -#### lastName - -> **lastName**: `string` diff --git a/docs/docs/auto-docs/utils/languages/README.md b/docs/docs/auto-docs/utils/languages/README.md deleted file mode 100644 index 0cd8ec1f27..0000000000 --- a/docs/docs/auto-docs/utils/languages/README.md +++ /dev/null @@ -1,12 +0,0 @@ -[**talawa-admin**](../../README.md) - -*** - -[talawa-admin](../../modules.md) / utils/languages - -# utils/languages - -## Variables - -- [languageArray](variables/languageArray.md) -- [languages](variables/languages.md) diff --git a/docs/docs/auto-docs/utils/languages/variables/languageArray.md b/docs/docs/auto-docs/utils/languages/variables/languageArray.md deleted file mode 100644 index a48f985e01..0000000000 --- a/docs/docs/auto-docs/utils/languages/variables/languageArray.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / [utils/languages](../README.md) / languageArray - -# Variable: languageArray - -> `const` **languageArray**: `string`[] - -Defined in: [src/utils/languages.ts:1](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/languages.ts#L1) diff --git a/docs/docs/auto-docs/utils/languages/variables/languages.md b/docs/docs/auto-docs/utils/languages/variables/languages.md deleted file mode 100644 index 03ff2de05c..0000000000 --- a/docs/docs/auto-docs/utils/languages/variables/languages.md +++ /dev/null @@ -1,25 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / [utils/languages](../README.md) / languages - -# Variable: languages - -> `const` **languages**: `object`[] - -Defined in: [src/utils/languages.ts:3](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/languages.ts#L3) - -## Type declaration - -### code - -> **code**: `string` = `'en'` - -### country\_code - -> **country\_code**: `string` = `'gb'` - -### name - -> **name**: `string` = `'English'` diff --git a/docs/docs/auto-docs/utils/linkValidator/README.md b/docs/docs/auto-docs/utils/linkValidator/README.md deleted file mode 100644 index 873411eb0c..0000000000 --- a/docs/docs/auto-docs/utils/linkValidator/README.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../README.md) - -*** - -[talawa-admin](../../modules.md) / utils/linkValidator - -# utils/linkValidator - -## Functions - -- [isValidLink](functions/isValidLink.md) diff --git a/docs/docs/auto-docs/utils/linkValidator/functions/isValidLink.md b/docs/docs/auto-docs/utils/linkValidator/functions/isValidLink.md deleted file mode 100644 index 9cfe71ad9b..0000000000 --- a/docs/docs/auto-docs/utils/linkValidator/functions/isValidLink.md +++ /dev/null @@ -1,21 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / [utils/linkValidator](../README.md) / isValidLink - -# Function: isValidLink() - -> **isValidLink**(`link`): `boolean` - -Defined in: [src/utils/linkValidator.ts:1](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/linkValidator.ts#L1) - -## Parameters - -### link - -`string` - -## Returns - -`boolean` diff --git a/docs/docs/auto-docs/utils/organizationTagsUtils/README.md b/docs/docs/auto-docs/utils/organizationTagsUtils/README.md deleted file mode 100644 index 5608ca2592..0000000000 --- a/docs/docs/auto-docs/utils/organizationTagsUtils/README.md +++ /dev/null @@ -1,24 +0,0 @@ -[**talawa-admin**](../../README.md) - -*** - -[talawa-admin](../../modules.md) / utils/organizationTagsUtils - -# utils/organizationTagsUtils - -## Interfaces - -- [InterfaceOrganizationSubTagsQuery](interfaces/InterfaceOrganizationSubTagsQuery.md) -- [InterfaceOrganizationTagsQuery](interfaces/InterfaceOrganizationTagsQuery.md) -- [InterfaceTagAssignedMembersQuery](interfaces/InterfaceTagAssignedMembersQuery.md) -- [InterfaceTagUsersToAssignToQuery](interfaces/InterfaceTagUsersToAssignToQuery.md) - -## Type Aliases - -- [SortedByType](type-aliases/SortedByType.md) -- [TagActionType](type-aliases/TagActionType.md) - -## Variables - -- [dataGridStyle](variables/dataGridStyle.md) -- [TAGS\_QUERY\_DATA\_CHUNK\_SIZE](variables/TAGS_QUERY_DATA_CHUNK_SIZE.md) diff --git a/docs/docs/auto-docs/utils/organizationTagsUtils/interfaces/InterfaceOrganizationSubTagsQuery.md b/docs/docs/auto-docs/utils/organizationTagsUtils/interfaces/InterfaceOrganizationSubTagsQuery.md deleted file mode 100644 index 1148162fea..0000000000 --- a/docs/docs/auto-docs/utils/organizationTagsUtils/interfaces/InterfaceOrganizationSubTagsQuery.md +++ /dev/null @@ -1,83 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / [utils/organizationTagsUtils](../README.md) / InterfaceOrganizationSubTagsQuery - -# Interface: InterfaceOrganizationSubTagsQuery - -Defined in: [src/utils/organizationTagsUtils.ts:83](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/organizationTagsUtils.ts#L83) - -## Extends - -- `InterfaceBaseQueryResult` - -## Properties - -### data? - -> `optional` **data**: `object` - -Defined in: [src/utils/organizationTagsUtils.ts:85](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/organizationTagsUtils.ts#L85) - -#### getChildTags - -> **getChildTags**: [`InterfaceQueryUserTagChildTags`](../../interfaces/interfaces/InterfaceQueryUserTagChildTags.md) - -*** - -### error? - -> `optional` **error**: `ApolloError` - -Defined in: [src/utils/organizationTagsUtils.ts:54](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/organizationTagsUtils.ts#L54) - -#### Inherited from - -`InterfaceBaseQueryResult.error` - -*** - -### fetchMore() - -> **fetchMore**: (`options`) => `void` - -Defined in: [src/utils/organizationTagsUtils.ts:88](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/organizationTagsUtils.ts#L88) - -#### Parameters - -##### options - -`InterfaceBaseFetchMoreOptions`\<\{ `getChildTags`: [`InterfaceQueryUserTagChildTags`](../../interfaces/interfaces/InterfaceQueryUserTagChildTags.md); \}\> - -#### Returns - -`void` - -*** - -### loading - -> **loading**: `boolean` - -Defined in: [src/utils/organizationTagsUtils.ts:53](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/organizationTagsUtils.ts#L53) - -#### Inherited from - -`InterfaceBaseQueryResult.loading` - -*** - -### refetch()? - -> `optional` **refetch**: () => `void` - -Defined in: [src/utils/organizationTagsUtils.ts:55](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/organizationTagsUtils.ts#L55) - -#### Returns - -`void` - -#### Inherited from - -`InterfaceBaseQueryResult.refetch` diff --git a/docs/docs/auto-docs/utils/organizationTagsUtils/interfaces/InterfaceOrganizationTagsQuery.md b/docs/docs/auto-docs/utils/organizationTagsUtils/interfaces/InterfaceOrganizationTagsQuery.md deleted file mode 100644 index 4d7682b8be..0000000000 --- a/docs/docs/auto-docs/utils/organizationTagsUtils/interfaces/InterfaceOrganizationTagsQuery.md +++ /dev/null @@ -1,83 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / [utils/organizationTagsUtils](../README.md) / InterfaceOrganizationTagsQuery - -# Interface: InterfaceOrganizationTagsQuery - -Defined in: [src/utils/organizationTagsUtils.ts:71](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/organizationTagsUtils.ts#L71) - -## Extends - -- `InterfaceBaseQueryResult` - -## Properties - -### data? - -> `optional` **data**: `object` - -Defined in: [src/utils/organizationTagsUtils.ts:73](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/organizationTagsUtils.ts#L73) - -#### organizations - -> **organizations**: [`InterfaceQueryOrganizationUserTags`](../../interfaces/interfaces/InterfaceQueryOrganizationUserTags.md)[] - -*** - -### error? - -> `optional` **error**: `ApolloError` - -Defined in: [src/utils/organizationTagsUtils.ts:54](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/organizationTagsUtils.ts#L54) - -#### Inherited from - -`InterfaceBaseQueryResult.error` - -*** - -### fetchMore() - -> **fetchMore**: (`options`) => `void` - -Defined in: [src/utils/organizationTagsUtils.ts:76](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/organizationTagsUtils.ts#L76) - -#### Parameters - -##### options - -`InterfaceBaseFetchMoreOptions`\<\{ `organizations`: [`InterfaceQueryOrganizationUserTags`](../../interfaces/interfaces/InterfaceQueryOrganizationUserTags.md)[]; \}\> - -#### Returns - -`void` - -*** - -### loading - -> **loading**: `boolean` - -Defined in: [src/utils/organizationTagsUtils.ts:53](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/organizationTagsUtils.ts#L53) - -#### Inherited from - -`InterfaceBaseQueryResult.loading` - -*** - -### refetch()? - -> `optional` **refetch**: () => `void` - -Defined in: [src/utils/organizationTagsUtils.ts:55](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/organizationTagsUtils.ts#L55) - -#### Returns - -`void` - -#### Inherited from - -`InterfaceBaseQueryResult.refetch` diff --git a/docs/docs/auto-docs/utils/organizationTagsUtils/interfaces/InterfaceTagAssignedMembersQuery.md b/docs/docs/auto-docs/utils/organizationTagsUtils/interfaces/InterfaceTagAssignedMembersQuery.md deleted file mode 100644 index f78ea94f5a..0000000000 --- a/docs/docs/auto-docs/utils/organizationTagsUtils/interfaces/InterfaceTagAssignedMembersQuery.md +++ /dev/null @@ -1,83 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / [utils/organizationTagsUtils](../README.md) / InterfaceTagAssignedMembersQuery - -# Interface: InterfaceTagAssignedMembersQuery - -Defined in: [src/utils/organizationTagsUtils.ts:95](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/organizationTagsUtils.ts#L95) - -## Extends - -- `InterfaceBaseQueryResult` - -## Properties - -### data? - -> `optional` **data**: `object` - -Defined in: [src/utils/organizationTagsUtils.ts:97](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/organizationTagsUtils.ts#L97) - -#### getAssignedUsers - -> **getAssignedUsers**: [`InterfaceQueryUserTagsAssignedMembers`](../../interfaces/interfaces/InterfaceQueryUserTagsAssignedMembers.md) - -*** - -### error? - -> `optional` **error**: `ApolloError` - -Defined in: [src/utils/organizationTagsUtils.ts:54](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/organizationTagsUtils.ts#L54) - -#### Inherited from - -`InterfaceBaseQueryResult.error` - -*** - -### fetchMore() - -> **fetchMore**: (`options`) => `void` - -Defined in: [src/utils/organizationTagsUtils.ts:100](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/organizationTagsUtils.ts#L100) - -#### Parameters - -##### options - -`InterfaceBaseFetchMoreOptions`\<\{ `getAssignedUsers`: [`InterfaceQueryUserTagsAssignedMembers`](../../interfaces/interfaces/InterfaceQueryUserTagsAssignedMembers.md); \}\> - -#### Returns - -`void` - -*** - -### loading - -> **loading**: `boolean` - -Defined in: [src/utils/organizationTagsUtils.ts:53](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/organizationTagsUtils.ts#L53) - -#### Inherited from - -`InterfaceBaseQueryResult.loading` - -*** - -### refetch()? - -> `optional` **refetch**: () => `void` - -Defined in: [src/utils/organizationTagsUtils.ts:55](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/organizationTagsUtils.ts#L55) - -#### Returns - -`void` - -#### Inherited from - -`InterfaceBaseQueryResult.refetch` diff --git a/docs/docs/auto-docs/utils/organizationTagsUtils/interfaces/InterfaceTagUsersToAssignToQuery.md b/docs/docs/auto-docs/utils/organizationTagsUtils/interfaces/InterfaceTagUsersToAssignToQuery.md deleted file mode 100644 index f91cfa726c..0000000000 --- a/docs/docs/auto-docs/utils/organizationTagsUtils/interfaces/InterfaceTagUsersToAssignToQuery.md +++ /dev/null @@ -1,83 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / [utils/organizationTagsUtils](../README.md) / InterfaceTagUsersToAssignToQuery - -# Interface: InterfaceTagUsersToAssignToQuery - -Defined in: [src/utils/organizationTagsUtils.ts:107](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/organizationTagsUtils.ts#L107) - -## Extends - -- `InterfaceBaseQueryResult` - -## Properties - -### data? - -> `optional` **data**: `object` - -Defined in: [src/utils/organizationTagsUtils.ts:109](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/organizationTagsUtils.ts#L109) - -#### getUsersToAssignTo - -> **getUsersToAssignTo**: [`InterfaceQueryUserTagsMembersToAssignTo`](../../interfaces/interfaces/InterfaceQueryUserTagsMembersToAssignTo.md) - -*** - -### error? - -> `optional` **error**: `ApolloError` - -Defined in: [src/utils/organizationTagsUtils.ts:54](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/organizationTagsUtils.ts#L54) - -#### Inherited from - -`InterfaceBaseQueryResult.error` - -*** - -### fetchMore() - -> **fetchMore**: (`options`) => `void` - -Defined in: [src/utils/organizationTagsUtils.ts:112](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/organizationTagsUtils.ts#L112) - -#### Parameters - -##### options - -`InterfaceBaseFetchMoreOptions`\<\{ `getUsersToAssignTo`: [`InterfaceQueryUserTagsMembersToAssignTo`](../../interfaces/interfaces/InterfaceQueryUserTagsMembersToAssignTo.md); \}\> - -#### Returns - -`void` - -*** - -### loading - -> **loading**: `boolean` - -Defined in: [src/utils/organizationTagsUtils.ts:53](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/organizationTagsUtils.ts#L53) - -#### Inherited from - -`InterfaceBaseQueryResult.loading` - -*** - -### refetch()? - -> `optional` **refetch**: () => `void` - -Defined in: [src/utils/organizationTagsUtils.ts:55](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/organizationTagsUtils.ts#L55) - -#### Returns - -`void` - -#### Inherited from - -`InterfaceBaseQueryResult.refetch` diff --git a/docs/docs/auto-docs/utils/organizationTagsUtils/type-aliases/SortedByType.md b/docs/docs/auto-docs/utils/organizationTagsUtils/type-aliases/SortedByType.md deleted file mode 100644 index c9e35d36eb..0000000000 --- a/docs/docs/auto-docs/utils/organizationTagsUtils/type-aliases/SortedByType.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / [utils/organizationTagsUtils](../README.md) / SortedByType - -# Type Alias: SortedByType - -> **SortedByType**: `"ASCENDING"` \| `"DESCENDING"` - -Defined in: [src/utils/organizationTagsUtils.ts:48](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/organizationTagsUtils.ts#L48) diff --git a/docs/docs/auto-docs/utils/organizationTagsUtils/type-aliases/TagActionType.md b/docs/docs/auto-docs/utils/organizationTagsUtils/type-aliases/TagActionType.md deleted file mode 100644 index e163be36b4..0000000000 --- a/docs/docs/auto-docs/utils/organizationTagsUtils/type-aliases/TagActionType.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / [utils/organizationTagsUtils](../README.md) / TagActionType - -# Type Alias: TagActionType - -> **TagActionType**: `"assignToTags"` \| `"removeFromTags"` - -Defined in: [src/utils/organizationTagsUtils.ts:45](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/organizationTagsUtils.ts#L45) diff --git a/docs/docs/auto-docs/utils/organizationTagsUtils/variables/TAGS_QUERY_DATA_CHUNK_SIZE.md b/docs/docs/auto-docs/utils/organizationTagsUtils/variables/TAGS_QUERY_DATA_CHUNK_SIZE.md deleted file mode 100644 index f6fbd7bc42..0000000000 --- a/docs/docs/auto-docs/utils/organizationTagsUtils/variables/TAGS_QUERY_DATA_CHUNK_SIZE.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / [utils/organizationTagsUtils](../README.md) / TAGS\_QUERY\_DATA\_CHUNK\_SIZE - -# Variable: TAGS\_QUERY\_DATA\_CHUNK\_SIZE - -> `const` **TAGS\_QUERY\_DATA\_CHUNK\_SIZE**: `10` = `10` - -Defined in: [src/utils/organizationTagsUtils.ts:42](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/organizationTagsUtils.ts#L42) diff --git a/docs/docs/auto-docs/utils/organizationTagsUtils/variables/dataGridStyle.md b/docs/docs/auto-docs/utils/organizationTagsUtils/variables/dataGridStyle.md deleted file mode 100644 index 64488a8307..0000000000 --- a/docs/docs/auto-docs/utils/organizationTagsUtils/variables/dataGridStyle.md +++ /dev/null @@ -1,85 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / [utils/organizationTagsUtils](../README.md) / dataGridStyle - -# Variable: dataGridStyle - -> `const` **dataGridStyle**: `object` - -Defined in: [src/utils/organizationTagsUtils.ts:12](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/organizationTagsUtils.ts#L12) - -## Type declaration - -#### & .MuiDataGrid-main - -> **MuiDataGrid-main**: `object` - -#### & .MuiDataGrid-main.borderRadius - -> **borderRadius**: `string` = `'0.1rem'` - -#### & .MuiDataGrid-root - -> **MuiDataGrid-root**: `object` - -#### & .MuiDataGrid-root.borderRadius - -> **borderRadius**: `string` = `'0.1rem'` - -#### & .MuiDataGrid-row:hover - -> **MuiDataGrid-row:hover**: `object` - -#### & .MuiDataGrid-row:hover.backgroundColor - -> **backgroundColor**: `string` = `'transparent'` - -#### & .MuiDataGrid-row.Mui-hovered - -> **Mui-hovered**: `object` - -#### & .MuiDataGrid-row.Mui-hovered.backgroundColor - -> **backgroundColor**: `string` = `'transparent'` - -#### & .MuiDataGrid-topContainer - -> **MuiDataGrid-topContainer**: `object` - -#### & .MuiDataGrid-topContainer.position - -> **position**: `string` = `'fixed'` - -#### & .MuiDataGrid-topContainer.top - -> **top**: `number` = `290` - -#### & .MuiDataGrid-topContainer.zIndex - -> **zIndex**: `number` = `1` - -#### & .MuiDataGrid-virtualScrollerContent - -> **MuiDataGrid-virtualScrollerContent**: `object` - -#### & .MuiDataGrid-virtualScrollerContent.marginTop - -> **marginTop**: `number` = `6.5` - -#### &.MuiDataGrid-root .MuiDataGrid-cell:focus-within - -> **MuiDataGrid-cell:focus-within**: `object` - -#### &.MuiDataGrid-root .MuiDataGrid-cell:focus-within.outline - -> **outline**: `string` = `'none !important'` - -#### &.MuiDataGrid-root .MuiDataGrid-columnHeader:focus-within - -> **MuiDataGrid-columnHeader:focus-within**: `object` - -#### &.MuiDataGrid-root .MuiDataGrid-columnHeader:focus-within.outline - -> **outline**: `string` = `'none'` diff --git a/docs/docs/auto-docs/utils/recurrenceUtils/README.md b/docs/docs/auto-docs/utils/recurrenceUtils/README.md deleted file mode 100644 index 6b49ed3c40..0000000000 --- a/docs/docs/auto-docs/utils/recurrenceUtils/README.md +++ /dev/null @@ -1,163 +0,0 @@ -[**talawa-admin**](../../README.md) - -*** - -[talawa-admin](../../modules.md) / utils/recurrenceUtils - -# utils/recurrenceUtils - -## References - -### allInstances - -Re-exports [allInstances](recurrenceConstants/variables/allInstances.md) - -*** - -### dayNames - -Re-exports [dayNames](recurrenceConstants/variables/dayNames.md) - -*** - -### Days - -Re-exports [Days](recurrenceConstants/variables/Days.md) - -*** - -### daysOptions - -Re-exports [daysOptions](recurrenceConstants/variables/daysOptions.md) - -*** - -### endsAfter - -Re-exports [endsAfter](recurrenceConstants/variables/endsAfter.md) - -*** - -### endsNever - -Re-exports [endsNever](recurrenceConstants/variables/endsNever.md) - -*** - -### endsOn - -Re-exports [endsOn](recurrenceConstants/variables/endsOn.md) - -*** - -### frequencies - -Re-exports [frequencies](recurrenceConstants/variables/frequencies.md) - -*** - -### Frequency - -Re-exports [Frequency](recurrenceTypes/enumerations/Frequency.md) - -*** - -### getRecurrenceRuleText - -Re-exports [getRecurrenceRuleText](recurrenceUtilityFunctions/functions/getRecurrenceRuleText.md) - -*** - -### getWeekDayOccurenceInMonth - -Re-exports [getWeekDayOccurenceInMonth](recurrenceUtilityFunctions/functions/getWeekDayOccurenceInMonth.md) - -*** - -### hasRecurrenceRuleChanged - -Re-exports [hasRecurrenceRuleChanged](recurrenceUtilityFunctions/functions/hasRecurrenceRuleChanged.md) - -*** - -### haveInstanceDatesChanged - -Re-exports [haveInstanceDatesChanged](recurrenceUtilityFunctions/functions/haveInstanceDatesChanged.md) - -*** - -### InterfaceRecurrenceRule - -Re-exports [InterfaceRecurrenceRule](recurrenceTypes/interfaces/InterfaceRecurrenceRule.md) - -*** - -### InterfaceRecurrenceRuleState - -Re-exports [InterfaceRecurrenceRuleState](recurrenceTypes/interfaces/InterfaceRecurrenceRuleState.md) - -*** - -### isLastOccurenceOfWeekDay - -Re-exports [isLastOccurenceOfWeekDay](recurrenceUtilityFunctions/functions/isLastOccurenceOfWeekDay.md) - -*** - -### mondayToFriday - -Re-exports [mondayToFriday](recurrenceConstants/variables/mondayToFriday.md) - -*** - -### monthNames - -Re-exports [monthNames](recurrenceConstants/variables/monthNames.md) - -*** - -### RecurrenceEndOption - -Re-exports [RecurrenceEndOption](recurrenceTypes/enumerations/RecurrenceEndOption.md) - -*** - -### recurrenceEndOptions - -Re-exports [recurrenceEndOptions](recurrenceConstants/variables/recurrenceEndOptions.md) - -*** - -### recurringEventMutationOptions - -Re-exports [recurringEventMutationOptions](recurrenceConstants/variables/recurringEventMutationOptions.md) - -*** - -### RecurringEventMutationType - -Re-exports [RecurringEventMutationType](recurrenceTypes/enumerations/RecurringEventMutationType.md) - -*** - -### thisAndFollowingInstances - -Re-exports [thisAndFollowingInstances](recurrenceConstants/variables/thisAndFollowingInstances.md) - -*** - -### thisInstance - -Re-exports [thisInstance](recurrenceConstants/variables/thisInstance.md) - -*** - -### weekDayOccurences - -Re-exports [weekDayOccurences](recurrenceConstants/variables/weekDayOccurences.md) - -*** - -### WeekDays - -Re-exports [WeekDays](recurrenceTypes/enumerations/WeekDays.md) diff --git a/docs/docs/auto-docs/utils/recurrenceUtils/recurrenceConstants/README.md b/docs/docs/auto-docs/utils/recurrenceUtils/recurrenceConstants/README.md deleted file mode 100644 index 5f014f1c9c..0000000000 --- a/docs/docs/auto-docs/utils/recurrenceUtils/recurrenceConstants/README.md +++ /dev/null @@ -1,25 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / utils/recurrenceUtils/recurrenceConstants - -# utils/recurrenceUtils/recurrenceConstants - -## Variables - -- [allInstances](variables/allInstances.md) -- [dayNames](variables/dayNames.md) -- [Days](variables/Days.md) -- [daysOptions](variables/daysOptions.md) -- [endsAfter](variables/endsAfter.md) -- [endsNever](variables/endsNever.md) -- [endsOn](variables/endsOn.md) -- [frequencies](variables/frequencies.md) -- [mondayToFriday](variables/mondayToFriday.md) -- [monthNames](variables/monthNames.md) -- [recurrenceEndOptions](variables/recurrenceEndOptions.md) -- [recurringEventMutationOptions](variables/recurringEventMutationOptions.md) -- [thisAndFollowingInstances](variables/thisAndFollowingInstances.md) -- [thisInstance](variables/thisInstance.md) -- [weekDayOccurences](variables/weekDayOccurences.md) diff --git a/docs/docs/auto-docs/utils/recurrenceUtils/recurrenceConstants/variables/Days.md b/docs/docs/auto-docs/utils/recurrenceUtils/recurrenceConstants/variables/Days.md deleted file mode 100644 index 2636959da8..0000000000 --- a/docs/docs/auto-docs/utils/recurrenceUtils/recurrenceConstants/variables/Days.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [utils/recurrenceUtils/recurrenceConstants](../README.md) / Days - -# Variable: Days - -> `const` **Days**: [`WeekDays`](../../recurrenceTypes/enumerations/WeekDays.md)[] - -Defined in: [src/utils/recurrenceUtils/recurrenceConstants.ts:24](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/recurrenceUtils/recurrenceConstants.ts#L24) diff --git a/docs/docs/auto-docs/utils/recurrenceUtils/recurrenceConstants/variables/allInstances.md b/docs/docs/auto-docs/utils/recurrenceUtils/recurrenceConstants/variables/allInstances.md deleted file mode 100644 index 4cc48162fb..0000000000 --- a/docs/docs/auto-docs/utils/recurrenceUtils/recurrenceConstants/variables/allInstances.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [utils/recurrenceUtils/recurrenceConstants](../README.md) / allInstances - -# Variable: allInstances - -> `const` **allInstances**: [`allInstances`](../../recurrenceTypes/enumerations/RecurringEventMutationType.md#allinstances) = `RecurringEventMutationType.allInstances` - -Defined in: [src/utils/recurrenceUtils/recurrenceConstants.ts:46](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/recurrenceUtils/recurrenceConstants.ts#L46) diff --git a/docs/docs/auto-docs/utils/recurrenceUtils/recurrenceConstants/variables/dayNames.md b/docs/docs/auto-docs/utils/recurrenceUtils/recurrenceConstants/variables/dayNames.md deleted file mode 100644 index 7c14efdf22..0000000000 --- a/docs/docs/auto-docs/utils/recurrenceUtils/recurrenceConstants/variables/dayNames.md +++ /dev/null @@ -1,41 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [utils/recurrenceUtils/recurrenceConstants](../README.md) / dayNames - -# Variable: dayNames - -> `const` **dayNames**: `object` - -Defined in: [src/utils/recurrenceUtils/recurrenceConstants.ts:60](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/recurrenceUtils/recurrenceConstants.ts#L60) - -## Type declaration - -### FRIDAY - -> **FRIDAY**: `string` = `'Friday'` - -### MONDAY - -> **MONDAY**: `string` = `'Monday'` - -### SATURDAY - -> **SATURDAY**: `string` = `'Saturday'` - -### SUNDAY - -> **SUNDAY**: `string` = `'Sunday'` - -### THURSDAY - -> **THURSDAY**: `string` = `'Thursday'` - -### TUESDAY - -> **TUESDAY**: `string` = `'Tuesday'` - -### WEDNESDAY - -> **WEDNESDAY**: `string` = `'Wednesday'` diff --git a/docs/docs/auto-docs/utils/recurrenceUtils/recurrenceConstants/variables/daysOptions.md b/docs/docs/auto-docs/utils/recurrenceUtils/recurrenceConstants/variables/daysOptions.md deleted file mode 100644 index b3e7d8e3d0..0000000000 --- a/docs/docs/auto-docs/utils/recurrenceUtils/recurrenceConstants/variables/daysOptions.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [utils/recurrenceUtils/recurrenceConstants](../README.md) / daysOptions - -# Variable: daysOptions - -> `const` **daysOptions**: `string`[] - -Defined in: [src/utils/recurrenceUtils/recurrenceConstants.ts:21](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/recurrenceUtils/recurrenceConstants.ts#L21) diff --git a/docs/docs/auto-docs/utils/recurrenceUtils/recurrenceConstants/variables/endsAfter.md b/docs/docs/auto-docs/utils/recurrenceUtils/recurrenceConstants/variables/endsAfter.md deleted file mode 100644 index 3b5a66cf25..0000000000 --- a/docs/docs/auto-docs/utils/recurrenceUtils/recurrenceConstants/variables/endsAfter.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [utils/recurrenceUtils/recurrenceConstants](../README.md) / endsAfter - -# Variable: endsAfter - -> `const` **endsAfter**: [`after`](../../recurrenceTypes/enumerations/RecurrenceEndOption.md#after) = `RecurrenceEndOption.after` - -Defined in: [src/utils/recurrenceUtils/recurrenceConstants.ts:37](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/recurrenceUtils/recurrenceConstants.ts#L37) diff --git a/docs/docs/auto-docs/utils/recurrenceUtils/recurrenceConstants/variables/endsNever.md b/docs/docs/auto-docs/utils/recurrenceUtils/recurrenceConstants/variables/endsNever.md deleted file mode 100644 index c812f7f963..0000000000 --- a/docs/docs/auto-docs/utils/recurrenceUtils/recurrenceConstants/variables/endsNever.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [utils/recurrenceUtils/recurrenceConstants](../README.md) / endsNever - -# Variable: endsNever - -> `const` **endsNever**: [`never`](../../recurrenceTypes/enumerations/RecurrenceEndOption.md#never) = `RecurrenceEndOption.never` - -Defined in: [src/utils/recurrenceUtils/recurrenceConstants.ts:35](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/recurrenceUtils/recurrenceConstants.ts#L35) diff --git a/docs/docs/auto-docs/utils/recurrenceUtils/recurrenceConstants/variables/endsOn.md b/docs/docs/auto-docs/utils/recurrenceUtils/recurrenceConstants/variables/endsOn.md deleted file mode 100644 index f635cd1b99..0000000000 --- a/docs/docs/auto-docs/utils/recurrenceUtils/recurrenceConstants/variables/endsOn.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [utils/recurrenceUtils/recurrenceConstants](../README.md) / endsOn - -# Variable: endsOn - -> `const` **endsOn**: [`on`](../../recurrenceTypes/enumerations/RecurrenceEndOption.md#on) = `RecurrenceEndOption.on` - -Defined in: [src/utils/recurrenceUtils/recurrenceConstants.ts:36](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/recurrenceUtils/recurrenceConstants.ts#L36) diff --git a/docs/docs/auto-docs/utils/recurrenceUtils/recurrenceConstants/variables/frequencies.md b/docs/docs/auto-docs/utils/recurrenceUtils/recurrenceConstants/variables/frequencies.md deleted file mode 100644 index 2bb70643bc..0000000000 --- a/docs/docs/auto-docs/utils/recurrenceUtils/recurrenceConstants/variables/frequencies.md +++ /dev/null @@ -1,29 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [utils/recurrenceUtils/recurrenceConstants](../README.md) / frequencies - -# Variable: frequencies - -> `const` **frequencies**: `object` - -Defined in: [src/utils/recurrenceUtils/recurrenceConstants.ts:13](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/recurrenceUtils/recurrenceConstants.ts#L13) - -## Type declaration - -### DAILY - -> **DAILY**: `string` = `'Day'` - -### MONTHLY - -> **MONTHLY**: `string` = `'Month'` - -### WEEKLY - -> **WEEKLY**: `string` = `'Week'` - -### YEARLY - -> **YEARLY**: `string` = `'Year'` diff --git a/docs/docs/auto-docs/utils/recurrenceUtils/recurrenceConstants/variables/mondayToFriday.md b/docs/docs/auto-docs/utils/recurrenceUtils/recurrenceConstants/variables/mondayToFriday.md deleted file mode 100644 index 6ca3580662..0000000000 --- a/docs/docs/auto-docs/utils/recurrenceUtils/recurrenceConstants/variables/mondayToFriday.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [utils/recurrenceUtils/recurrenceConstants](../README.md) / mondayToFriday - -# Variable: mondayToFriday - -> `const` **mondayToFriday**: ([`MONDAY`](../../recurrenceTypes/enumerations/WeekDays.md#monday) \| [`TUESDAY`](../../recurrenceTypes/enumerations/WeekDays.md#tuesday) \| [`WEDNESDAY`](../../recurrenceTypes/enumerations/WeekDays.md#wednesday) \| [`THURSDAY`](../../recurrenceTypes/enumerations/WeekDays.md#thursday) \| [`FRIDAY`](../../recurrenceTypes/enumerations/WeekDays.md#friday))[] - -Defined in: [src/utils/recurrenceUtils/recurrenceConstants.ts:55](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/recurrenceUtils/recurrenceConstants.ts#L55) diff --git a/docs/docs/auto-docs/utils/recurrenceUtils/recurrenceConstants/variables/monthNames.md b/docs/docs/auto-docs/utils/recurrenceUtils/recurrenceConstants/variables/monthNames.md deleted file mode 100644 index a860f7f8bc..0000000000 --- a/docs/docs/auto-docs/utils/recurrenceUtils/recurrenceConstants/variables/monthNames.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [utils/recurrenceUtils/recurrenceConstants](../README.md) / monthNames - -# Variable: monthNames - -> `const` **monthNames**: `string`[] - -Defined in: [src/utils/recurrenceUtils/recurrenceConstants.ts:71](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/recurrenceUtils/recurrenceConstants.ts#L71) diff --git a/docs/docs/auto-docs/utils/recurrenceUtils/recurrenceConstants/variables/recurrenceEndOptions.md b/docs/docs/auto-docs/utils/recurrenceUtils/recurrenceConstants/variables/recurrenceEndOptions.md deleted file mode 100644 index 1847cbf02b..0000000000 --- a/docs/docs/auto-docs/utils/recurrenceUtils/recurrenceConstants/variables/recurrenceEndOptions.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [utils/recurrenceUtils/recurrenceConstants](../README.md) / recurrenceEndOptions - -# Variable: recurrenceEndOptions - -> `const` **recurrenceEndOptions**: [`RecurrenceEndOption`](../../recurrenceTypes/enumerations/RecurrenceEndOption.md)[] - -Defined in: [src/utils/recurrenceUtils/recurrenceConstants.ts:40](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/recurrenceUtils/recurrenceConstants.ts#L40) diff --git a/docs/docs/auto-docs/utils/recurrenceUtils/recurrenceConstants/variables/recurringEventMutationOptions.md b/docs/docs/auto-docs/utils/recurrenceUtils/recurrenceConstants/variables/recurringEventMutationOptions.md deleted file mode 100644 index 5e42a3ae47..0000000000 --- a/docs/docs/auto-docs/utils/recurrenceUtils/recurrenceConstants/variables/recurringEventMutationOptions.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [utils/recurrenceUtils/recurrenceConstants](../README.md) / recurringEventMutationOptions - -# Variable: recurringEventMutationOptions - -> `const` **recurringEventMutationOptions**: [`RecurringEventMutationType`](../../recurrenceTypes/enumerations/RecurringEventMutationType.md)[] - -Defined in: [src/utils/recurrenceUtils/recurrenceConstants.ts:48](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/recurrenceUtils/recurrenceConstants.ts#L48) diff --git a/docs/docs/auto-docs/utils/recurrenceUtils/recurrenceConstants/variables/thisAndFollowingInstances.md b/docs/docs/auto-docs/utils/recurrenceUtils/recurrenceConstants/variables/thisAndFollowingInstances.md deleted file mode 100644 index 4e8b497475..0000000000 --- a/docs/docs/auto-docs/utils/recurrenceUtils/recurrenceConstants/variables/thisAndFollowingInstances.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [utils/recurrenceUtils/recurrenceConstants](../README.md) / thisAndFollowingInstances - -# Variable: thisAndFollowingInstances - -> `const` **thisAndFollowingInstances**: [`thisAndFollowingInstances`](../../recurrenceTypes/enumerations/RecurringEventMutationType.md#thisandfollowinginstances) = `RecurringEventMutationType.thisAndFollowingInstances` - -Defined in: [src/utils/recurrenceUtils/recurrenceConstants.ts:44](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/recurrenceUtils/recurrenceConstants.ts#L44) diff --git a/docs/docs/auto-docs/utils/recurrenceUtils/recurrenceConstants/variables/thisInstance.md b/docs/docs/auto-docs/utils/recurrenceUtils/recurrenceConstants/variables/thisInstance.md deleted file mode 100644 index a1ebb58482..0000000000 --- a/docs/docs/auto-docs/utils/recurrenceUtils/recurrenceConstants/variables/thisInstance.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [utils/recurrenceUtils/recurrenceConstants](../README.md) / thisInstance - -# Variable: thisInstance - -> `const` **thisInstance**: [`thisInstance`](../../recurrenceTypes/enumerations/RecurringEventMutationType.md#thisinstance) = `RecurringEventMutationType.thisInstance` - -Defined in: [src/utils/recurrenceUtils/recurrenceConstants.ts:43](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/recurrenceUtils/recurrenceConstants.ts#L43) diff --git a/docs/docs/auto-docs/utils/recurrenceUtils/recurrenceConstants/variables/weekDayOccurences.md b/docs/docs/auto-docs/utils/recurrenceUtils/recurrenceConstants/variables/weekDayOccurences.md deleted file mode 100644 index 78de3d8a8d..0000000000 --- a/docs/docs/auto-docs/utils/recurrenceUtils/recurrenceConstants/variables/weekDayOccurences.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [utils/recurrenceUtils/recurrenceConstants](../README.md) / weekDayOccurences - -# Variable: weekDayOccurences - -> `const` **weekDayOccurences**: `string`[] - -Defined in: [src/utils/recurrenceUtils/recurrenceConstants.ts:87](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/recurrenceUtils/recurrenceConstants.ts#L87) diff --git a/docs/docs/auto-docs/utils/recurrenceUtils/recurrenceTypes/README.md b/docs/docs/auto-docs/utils/recurrenceUtils/recurrenceTypes/README.md deleted file mode 100644 index 9e054c6133..0000000000 --- a/docs/docs/auto-docs/utils/recurrenceUtils/recurrenceTypes/README.md +++ /dev/null @@ -1,19 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / utils/recurrenceUtils/recurrenceTypes - -# utils/recurrenceUtils/recurrenceTypes - -## Enumerations - -- [Frequency](enumerations/Frequency.md) -- [RecurrenceEndOption](enumerations/RecurrenceEndOption.md) -- [RecurringEventMutationType](enumerations/RecurringEventMutationType.md) -- [WeekDays](enumerations/WeekDays.md) - -## Interfaces - -- [InterfaceRecurrenceRule](interfaces/InterfaceRecurrenceRule.md) -- [InterfaceRecurrenceRuleState](interfaces/InterfaceRecurrenceRuleState.md) diff --git a/docs/docs/auto-docs/utils/recurrenceUtils/recurrenceTypes/enumerations/Frequency.md b/docs/docs/auto-docs/utils/recurrenceUtils/recurrenceTypes/enumerations/Frequency.md deleted file mode 100644 index 46d340ce75..0000000000 --- a/docs/docs/auto-docs/utils/recurrenceUtils/recurrenceTypes/enumerations/Frequency.md +++ /dev/null @@ -1,41 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [utils/recurrenceUtils/recurrenceTypes](../README.md) / Frequency - -# Enumeration: Frequency - -Defined in: [src/utils/recurrenceUtils/recurrenceTypes.ts:28](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/recurrenceUtils/recurrenceTypes.ts#L28) - -## Enumeration Members - -### DAILY - -> **DAILY**: `"DAILY"` - -Defined in: [src/utils/recurrenceUtils/recurrenceTypes.ts:29](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/recurrenceUtils/recurrenceTypes.ts#L29) - -*** - -### MONTHLY - -> **MONTHLY**: `"MONTHLY"` - -Defined in: [src/utils/recurrenceUtils/recurrenceTypes.ts:31](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/recurrenceUtils/recurrenceTypes.ts#L31) - -*** - -### WEEKLY - -> **WEEKLY**: `"WEEKLY"` - -Defined in: [src/utils/recurrenceUtils/recurrenceTypes.ts:30](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/recurrenceUtils/recurrenceTypes.ts#L30) - -*** - -### YEARLY - -> **YEARLY**: `"YEARLY"` - -Defined in: [src/utils/recurrenceUtils/recurrenceTypes.ts:32](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/recurrenceUtils/recurrenceTypes.ts#L32) diff --git a/docs/docs/auto-docs/utils/recurrenceUtils/recurrenceTypes/enumerations/RecurrenceEndOption.md b/docs/docs/auto-docs/utils/recurrenceUtils/recurrenceTypes/enumerations/RecurrenceEndOption.md deleted file mode 100644 index a344d9df2d..0000000000 --- a/docs/docs/auto-docs/utils/recurrenceUtils/recurrenceTypes/enumerations/RecurrenceEndOption.md +++ /dev/null @@ -1,33 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [utils/recurrenceUtils/recurrenceTypes](../README.md) / RecurrenceEndOption - -# Enumeration: RecurrenceEndOption - -Defined in: [src/utils/recurrenceUtils/recurrenceTypes.ts:48](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/recurrenceUtils/recurrenceTypes.ts#L48) - -## Enumeration Members - -### after - -> **after**: `"after"` - -Defined in: [src/utils/recurrenceUtils/recurrenceTypes.ts:51](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/recurrenceUtils/recurrenceTypes.ts#L51) - -*** - -### never - -> **never**: `"never"` - -Defined in: [src/utils/recurrenceUtils/recurrenceTypes.ts:49](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/recurrenceUtils/recurrenceTypes.ts#L49) - -*** - -### on - -> **on**: `"on"` - -Defined in: [src/utils/recurrenceUtils/recurrenceTypes.ts:50](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/recurrenceUtils/recurrenceTypes.ts#L50) diff --git a/docs/docs/auto-docs/utils/recurrenceUtils/recurrenceTypes/enumerations/RecurringEventMutationType.md b/docs/docs/auto-docs/utils/recurrenceUtils/recurrenceTypes/enumerations/RecurringEventMutationType.md deleted file mode 100644 index 26f84d6059..0000000000 --- a/docs/docs/auto-docs/utils/recurrenceUtils/recurrenceTypes/enumerations/RecurringEventMutationType.md +++ /dev/null @@ -1,33 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [utils/recurrenceUtils/recurrenceTypes](../README.md) / RecurringEventMutationType - -# Enumeration: RecurringEventMutationType - -Defined in: [src/utils/recurrenceUtils/recurrenceTypes.ts:55](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/recurrenceUtils/recurrenceTypes.ts#L55) - -## Enumeration Members - -### allInstances - -> **allInstances**: `"allInstances"` - -Defined in: [src/utils/recurrenceUtils/recurrenceTypes.ts:58](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/recurrenceUtils/recurrenceTypes.ts#L58) - -*** - -### thisAndFollowingInstances - -> **thisAndFollowingInstances**: `"thisAndFollowingInstances"` - -Defined in: [src/utils/recurrenceUtils/recurrenceTypes.ts:57](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/recurrenceUtils/recurrenceTypes.ts#L57) - -*** - -### thisInstance - -> **thisInstance**: `"thisInstance"` - -Defined in: [src/utils/recurrenceUtils/recurrenceTypes.ts:56](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/recurrenceUtils/recurrenceTypes.ts#L56) diff --git a/docs/docs/auto-docs/utils/recurrenceUtils/recurrenceTypes/enumerations/WeekDays.md b/docs/docs/auto-docs/utils/recurrenceUtils/recurrenceTypes/enumerations/WeekDays.md deleted file mode 100644 index 70932b82c5..0000000000 --- a/docs/docs/auto-docs/utils/recurrenceUtils/recurrenceTypes/enumerations/WeekDays.md +++ /dev/null @@ -1,65 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [utils/recurrenceUtils/recurrenceTypes](../README.md) / WeekDays - -# Enumeration: WeekDays - -Defined in: [src/utils/recurrenceUtils/recurrenceTypes.ts:36](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/recurrenceUtils/recurrenceTypes.ts#L36) - -## Enumeration Members - -### FRIDAY - -> **FRIDAY**: `"FRIDAY"` - -Defined in: [src/utils/recurrenceUtils/recurrenceTypes.ts:42](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/recurrenceUtils/recurrenceTypes.ts#L42) - -*** - -### MONDAY - -> **MONDAY**: `"MONDAY"` - -Defined in: [src/utils/recurrenceUtils/recurrenceTypes.ts:38](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/recurrenceUtils/recurrenceTypes.ts#L38) - -*** - -### SATURDAY - -> **SATURDAY**: `"SATURDAY"` - -Defined in: [src/utils/recurrenceUtils/recurrenceTypes.ts:43](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/recurrenceUtils/recurrenceTypes.ts#L43) - -*** - -### SUNDAY - -> **SUNDAY**: `"SUNDAY"` - -Defined in: [src/utils/recurrenceUtils/recurrenceTypes.ts:37](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/recurrenceUtils/recurrenceTypes.ts#L37) - -*** - -### THURSDAY - -> **THURSDAY**: `"THURSDAY"` - -Defined in: [src/utils/recurrenceUtils/recurrenceTypes.ts:41](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/recurrenceUtils/recurrenceTypes.ts#L41) - -*** - -### TUESDAY - -> **TUESDAY**: `"TUESDAY"` - -Defined in: [src/utils/recurrenceUtils/recurrenceTypes.ts:39](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/recurrenceUtils/recurrenceTypes.ts#L39) - -*** - -### WEDNESDAY - -> **WEDNESDAY**: `"WEDNESDAY"` - -Defined in: [src/utils/recurrenceUtils/recurrenceTypes.ts:40](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/recurrenceUtils/recurrenceTypes.ts#L40) diff --git a/docs/docs/auto-docs/utils/recurrenceUtils/recurrenceTypes/interfaces/InterfaceRecurrenceRule.md b/docs/docs/auto-docs/utils/recurrenceUtils/recurrenceTypes/interfaces/InterfaceRecurrenceRule.md deleted file mode 100644 index 9c6a300992..0000000000 --- a/docs/docs/auto-docs/utils/recurrenceUtils/recurrenceTypes/interfaces/InterfaceRecurrenceRule.md +++ /dev/null @@ -1,65 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [utils/recurrenceUtils/recurrenceTypes](../README.md) / InterfaceRecurrenceRule - -# Interface: InterfaceRecurrenceRule - -Defined in: [src/utils/recurrenceUtils/recurrenceTypes.ts:17](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/recurrenceUtils/recurrenceTypes.ts#L17) - -## Properties - -### count - -> **count**: `number` - -Defined in: [src/utils/recurrenceUtils/recurrenceTypes.ts:23](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/recurrenceUtils/recurrenceTypes.ts#L23) - -*** - -### frequency - -> **frequency**: [`Frequency`](../enumerations/Frequency.md) - -Defined in: [src/utils/recurrenceUtils/recurrenceTypes.ts:20](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/recurrenceUtils/recurrenceTypes.ts#L20) - -*** - -### interval - -> **interval**: `number` - -Defined in: [src/utils/recurrenceUtils/recurrenceTypes.ts:22](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/recurrenceUtils/recurrenceTypes.ts#L22) - -*** - -### recurrenceEndDate - -> **recurrenceEndDate**: `string` - -Defined in: [src/utils/recurrenceUtils/recurrenceTypes.ts:19](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/recurrenceUtils/recurrenceTypes.ts#L19) - -*** - -### recurrenceStartDate - -> **recurrenceStartDate**: `string` - -Defined in: [src/utils/recurrenceUtils/recurrenceTypes.ts:18](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/recurrenceUtils/recurrenceTypes.ts#L18) - -*** - -### weekDayOccurenceInMonth - -> **weekDayOccurenceInMonth**: `number` - -Defined in: [src/utils/recurrenceUtils/recurrenceTypes.ts:24](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/recurrenceUtils/recurrenceTypes.ts#L24) - -*** - -### weekDays - -> **weekDays**: [`WeekDays`](../enumerations/WeekDays.md)[] - -Defined in: [src/utils/recurrenceUtils/recurrenceTypes.ts:21](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/recurrenceUtils/recurrenceTypes.ts#L21) diff --git a/docs/docs/auto-docs/utils/recurrenceUtils/recurrenceTypes/interfaces/InterfaceRecurrenceRuleState.md b/docs/docs/auto-docs/utils/recurrenceUtils/recurrenceTypes/interfaces/InterfaceRecurrenceRuleState.md deleted file mode 100644 index 95304fbe19..0000000000 --- a/docs/docs/auto-docs/utils/recurrenceUtils/recurrenceTypes/interfaces/InterfaceRecurrenceRuleState.md +++ /dev/null @@ -1,65 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [utils/recurrenceUtils/recurrenceTypes](../README.md) / InterfaceRecurrenceRuleState - -# Interface: InterfaceRecurrenceRuleState - -Defined in: [src/utils/recurrenceUtils/recurrenceTypes.ts:6](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/recurrenceUtils/recurrenceTypes.ts#L6) - -## Properties - -### count - -> **count**: `number` - -Defined in: [src/utils/recurrenceUtils/recurrenceTypes.ts:12](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/recurrenceUtils/recurrenceTypes.ts#L12) - -*** - -### frequency - -> **frequency**: [`Frequency`](../enumerations/Frequency.md) - -Defined in: [src/utils/recurrenceUtils/recurrenceTypes.ts:9](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/recurrenceUtils/recurrenceTypes.ts#L9) - -*** - -### interval - -> **interval**: `number` - -Defined in: [src/utils/recurrenceUtils/recurrenceTypes.ts:11](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/recurrenceUtils/recurrenceTypes.ts#L11) - -*** - -### recurrenceEndDate - -> **recurrenceEndDate**: `Date` - -Defined in: [src/utils/recurrenceUtils/recurrenceTypes.ts:8](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/recurrenceUtils/recurrenceTypes.ts#L8) - -*** - -### recurrenceStartDate - -> **recurrenceStartDate**: `Date` - -Defined in: [src/utils/recurrenceUtils/recurrenceTypes.ts:7](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/recurrenceUtils/recurrenceTypes.ts#L7) - -*** - -### weekDayOccurenceInMonth - -> **weekDayOccurenceInMonth**: `number` - -Defined in: [src/utils/recurrenceUtils/recurrenceTypes.ts:13](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/recurrenceUtils/recurrenceTypes.ts#L13) - -*** - -### weekDays - -> **weekDays**: [`WeekDays`](../enumerations/WeekDays.md)[] - -Defined in: [src/utils/recurrenceUtils/recurrenceTypes.ts:10](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/recurrenceUtils/recurrenceTypes.ts#L10) diff --git a/docs/docs/auto-docs/utils/recurrenceUtils/recurrenceUtilityFunctions/README.md b/docs/docs/auto-docs/utils/recurrenceUtils/recurrenceUtilityFunctions/README.md deleted file mode 100644 index f4775336c8..0000000000 --- a/docs/docs/auto-docs/utils/recurrenceUtils/recurrenceUtilityFunctions/README.md +++ /dev/null @@ -1,15 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / utils/recurrenceUtils/recurrenceUtilityFunctions - -# utils/recurrenceUtils/recurrenceUtilityFunctions - -## Functions - -- [getRecurrenceRuleText](functions/getRecurrenceRuleText.md) -- [getWeekDayOccurenceInMonth](functions/getWeekDayOccurenceInMonth.md) -- [hasRecurrenceRuleChanged](functions/hasRecurrenceRuleChanged.md) -- [haveInstanceDatesChanged](functions/haveInstanceDatesChanged.md) -- [isLastOccurenceOfWeekDay](functions/isLastOccurenceOfWeekDay.md) diff --git a/docs/docs/auto-docs/utils/recurrenceUtils/recurrenceUtilityFunctions/functions/getRecurrenceRuleText.md b/docs/docs/auto-docs/utils/recurrenceUtils/recurrenceUtilityFunctions/functions/getRecurrenceRuleText.md deleted file mode 100644 index 9827c0a26a..0000000000 --- a/docs/docs/auto-docs/utils/recurrenceUtils/recurrenceUtilityFunctions/functions/getRecurrenceRuleText.md +++ /dev/null @@ -1,21 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [utils/recurrenceUtils/recurrenceUtilityFunctions](../README.md) / getRecurrenceRuleText - -# Function: getRecurrenceRuleText() - -> **getRecurrenceRuleText**(`recurrenceRuleState`): `string` - -Defined in: [src/utils/recurrenceUtils/recurrenceUtilityFunctions.ts:22](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/recurrenceUtils/recurrenceUtilityFunctions.ts#L22) - -## Parameters - -### recurrenceRuleState - -[`InterfaceRecurrenceRuleState`](../../recurrenceTypes/interfaces/InterfaceRecurrenceRuleState.md) - -## Returns - -`string` diff --git a/docs/docs/auto-docs/utils/recurrenceUtils/recurrenceUtilityFunctions/functions/getWeekDayOccurenceInMonth.md b/docs/docs/auto-docs/utils/recurrenceUtils/recurrenceUtilityFunctions/functions/getWeekDayOccurenceInMonth.md deleted file mode 100644 index babafcdf38..0000000000 --- a/docs/docs/auto-docs/utils/recurrenceUtils/recurrenceUtilityFunctions/functions/getWeekDayOccurenceInMonth.md +++ /dev/null @@ -1,21 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [utils/recurrenceUtils/recurrenceUtilityFunctions](../README.md) / getWeekDayOccurenceInMonth - -# Function: getWeekDayOccurenceInMonth() - -> **getWeekDayOccurenceInMonth**(`date`): `number` - -Defined in: [src/utils/recurrenceUtils/recurrenceUtilityFunctions.ts:126](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/recurrenceUtils/recurrenceUtilityFunctions.ts#L126) - -## Parameters - -### date - -`Date` - -## Returns - -`number` diff --git a/docs/docs/auto-docs/utils/recurrenceUtils/recurrenceUtilityFunctions/functions/hasRecurrenceRuleChanged.md b/docs/docs/auto-docs/utils/recurrenceUtils/recurrenceUtilityFunctions/functions/hasRecurrenceRuleChanged.md deleted file mode 100644 index 4fcf0a0dc5..0000000000 --- a/docs/docs/auto-docs/utils/recurrenceUtils/recurrenceUtilityFunctions/functions/hasRecurrenceRuleChanged.md +++ /dev/null @@ -1,25 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [utils/recurrenceUtils/recurrenceUtilityFunctions](../README.md) / hasRecurrenceRuleChanged - -# Function: hasRecurrenceRuleChanged() - -> **hasRecurrenceRuleChanged**(`originalRecurrencerule`, `recurrenceRuleState`): `boolean` - -Defined in: [src/utils/recurrenceUtils/recurrenceUtilityFunctions.ts:167](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/recurrenceUtils/recurrenceUtilityFunctions.ts#L167) - -## Parameters - -### originalRecurrencerule - -[`InterfaceRecurrenceRule`](../../recurrenceTypes/interfaces/InterfaceRecurrenceRule.md) - -### recurrenceRuleState - -[`InterfaceRecurrenceRuleState`](../../recurrenceTypes/interfaces/InterfaceRecurrenceRuleState.md) - -## Returns - -`boolean` diff --git a/docs/docs/auto-docs/utils/recurrenceUtils/recurrenceUtilityFunctions/functions/haveInstanceDatesChanged.md b/docs/docs/auto-docs/utils/recurrenceUtils/recurrenceUtilityFunctions/functions/haveInstanceDatesChanged.md deleted file mode 100644 index 2b5cb1febe..0000000000 --- a/docs/docs/auto-docs/utils/recurrenceUtils/recurrenceUtilityFunctions/functions/haveInstanceDatesChanged.md +++ /dev/null @@ -1,33 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [utils/recurrenceUtils/recurrenceUtilityFunctions](../README.md) / haveInstanceDatesChanged - -# Function: haveInstanceDatesChanged() - -> **haveInstanceDatesChanged**(`instanceOriginalStartDate`, `instanceOriginalEndDate`, `instanceNewStartDate`, `instanceNewEndDate`): `boolean` - -Defined in: [src/utils/recurrenceUtils/recurrenceUtilityFunctions.ts:154](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/recurrenceUtils/recurrenceUtilityFunctions.ts#L154) - -## Parameters - -### instanceOriginalStartDate - -`string` - -### instanceOriginalEndDate - -`string` - -### instanceNewStartDate - -`string` - -### instanceNewEndDate - -`string` - -## Returns - -`boolean` diff --git a/docs/docs/auto-docs/utils/recurrenceUtils/recurrenceUtilityFunctions/functions/isLastOccurenceOfWeekDay.md b/docs/docs/auto-docs/utils/recurrenceUtils/recurrenceUtilityFunctions/functions/isLastOccurenceOfWeekDay.md deleted file mode 100644 index 853c095350..0000000000 --- a/docs/docs/auto-docs/utils/recurrenceUtils/recurrenceUtilityFunctions/functions/isLastOccurenceOfWeekDay.md +++ /dev/null @@ -1,21 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [utils/recurrenceUtils/recurrenceUtilityFunctions](../README.md) / isLastOccurenceOfWeekDay - -# Function: isLastOccurenceOfWeekDay() - -> **isLastOccurenceOfWeekDay**(`date`): `boolean` - -Defined in: [src/utils/recurrenceUtils/recurrenceUtilityFunctions.ts:136](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/recurrenceUtils/recurrenceUtilityFunctions.ts#L136) - -## Parameters - -### date - -`Date` - -## Returns - -`boolean` diff --git a/docs/docs/auto-docs/utils/timezoneUtils/README.md b/docs/docs/auto-docs/utils/timezoneUtils/README.md deleted file mode 100644 index 0ad5953d55..0000000000 --- a/docs/docs/auto-docs/utils/timezoneUtils/README.md +++ /dev/null @@ -1,25 +0,0 @@ -[**talawa-admin**](../../README.md) - -*** - -[talawa-admin](../../modules.md) / utils/timezoneUtils - -# utils/timezoneUtils - -## References - -### dateTimeFields - -Re-exports [dateTimeFields](dateTimeConfig/variables/dateTimeFields.md) - -*** - -### requestMiddleware - -Re-exports [requestMiddleware](dateTimeMiddleware/variables/requestMiddleware.md) - -*** - -### responseMiddleware - -Re-exports [responseMiddleware](dateTimeMiddleware/variables/responseMiddleware.md) diff --git a/docs/docs/auto-docs/utils/timezoneUtils/dateTimeConfig/README.md b/docs/docs/auto-docs/utils/timezoneUtils/dateTimeConfig/README.md deleted file mode 100644 index 52595efe84..0000000000 --- a/docs/docs/auto-docs/utils/timezoneUtils/dateTimeConfig/README.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / utils/timezoneUtils/dateTimeConfig - -# utils/timezoneUtils/dateTimeConfig - -## Variables - -- [dateTimeFields](variables/dateTimeFields.md) diff --git a/docs/docs/auto-docs/utils/timezoneUtils/dateTimeConfig/variables/dateTimeFields.md b/docs/docs/auto-docs/utils/timezoneUtils/dateTimeConfig/variables/dateTimeFields.md deleted file mode 100644 index f478a5718d..0000000000 --- a/docs/docs/auto-docs/utils/timezoneUtils/dateTimeConfig/variables/dateTimeFields.md +++ /dev/null @@ -1,21 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [utils/timezoneUtils/dateTimeConfig](../README.md) / dateTimeFields - -# Variable: dateTimeFields - -> `const` **dateTimeFields**: `object` - -Defined in: [src/utils/timezoneUtils/dateTimeConfig.ts:3](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/timezoneUtils/dateTimeConfig.ts#L3) - -## Type declaration - -### directFields - -> **directFields**: `string`[] - -### pairedFields - -> **pairedFields**: `object`[] diff --git a/docs/docs/auto-docs/utils/timezoneUtils/dateTimeMiddleware/README.md b/docs/docs/auto-docs/utils/timezoneUtils/dateTimeMiddleware/README.md deleted file mode 100644 index 666abbffd4..0000000000 --- a/docs/docs/auto-docs/utils/timezoneUtils/dateTimeMiddleware/README.md +++ /dev/null @@ -1,12 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / utils/timezoneUtils/dateTimeMiddleware - -# utils/timezoneUtils/dateTimeMiddleware - -## Variables - -- [requestMiddleware](variables/requestMiddleware.md) -- [responseMiddleware](variables/responseMiddleware.md) diff --git a/docs/docs/auto-docs/utils/timezoneUtils/dateTimeMiddleware/variables/requestMiddleware.md b/docs/docs/auto-docs/utils/timezoneUtils/dateTimeMiddleware/variables/requestMiddleware.md deleted file mode 100644 index 09b0bf9b59..0000000000 --- a/docs/docs/auto-docs/utils/timezoneUtils/dateTimeMiddleware/variables/requestMiddleware.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [utils/timezoneUtils/dateTimeMiddleware](../README.md) / requestMiddleware - -# Variable: requestMiddleware - -> `const` **requestMiddleware**: `any` - -Defined in: [src/utils/timezoneUtils/dateTimeMiddleware.ts:84](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/timezoneUtils/dateTimeMiddleware.ts#L84) diff --git a/docs/docs/auto-docs/utils/timezoneUtils/dateTimeMiddleware/variables/responseMiddleware.md b/docs/docs/auto-docs/utils/timezoneUtils/dateTimeMiddleware/variables/responseMiddleware.md deleted file mode 100644 index caa6f87e21..0000000000 --- a/docs/docs/auto-docs/utils/timezoneUtils/dateTimeMiddleware/variables/responseMiddleware.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [utils/timezoneUtils/dateTimeMiddleware](../README.md) / responseMiddleware - -# Variable: responseMiddleware - -> `const` **responseMiddleware**: `any` - -Defined in: [src/utils/timezoneUtils/dateTimeMiddleware.ts:94](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/timezoneUtils/dateTimeMiddleware.ts#L94) diff --git a/docs/docs/auto-docs/utils/useLocalstorage/README.md b/docs/docs/auto-docs/utils/useLocalstorage/README.md deleted file mode 100644 index 9766800b4b..0000000000 --- a/docs/docs/auto-docs/utils/useLocalstorage/README.md +++ /dev/null @@ -1,21 +0,0 @@ -[**talawa-admin**](../../README.md) - -*** - -[talawa-admin](../../modules.md) / utils/useLocalstorage - -# utils/useLocalstorage - -## Functions - -- [getItem](functions/getItem.md) -- [getStorageKey](functions/getStorageKey.md) -- [removeItem](functions/removeItem.md) -- [setItem](functions/setItem.md) -- [useLocalStorage](functions/useLocalStorage.md) - -## References - -### default - -Renames and re-exports [useLocalStorage](functions/useLocalStorage.md) diff --git a/docs/docs/auto-docs/utils/useLocalstorage/functions/getItem.md b/docs/docs/auto-docs/utils/useLocalstorage/functions/getItem.md deleted file mode 100644 index 3172cab223..0000000000 --- a/docs/docs/auto-docs/utils/useLocalstorage/functions/getItem.md +++ /dev/null @@ -1,33 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / [utils/useLocalstorage](../README.md) / getItem - -# Function: getItem() - -> **getItem**(`prefix`, `key`): `any` - -Defined in: [src/utils/useLocalstorage.ts:29](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/useLocalstorage.ts#L29) - -Retrieves the stored value for the given key from local storage. - -## Parameters - -### prefix - -`string` - -Prefix to be added to the key, common for all keys. - -### key - -`string` - -The unique name identifying the value. - -## Returns - -`any` - -- The stored value for the given key from local storage. diff --git a/docs/docs/auto-docs/utils/useLocalstorage/functions/getStorageKey.md b/docs/docs/auto-docs/utils/useLocalstorage/functions/getStorageKey.md deleted file mode 100644 index acd61344cc..0000000000 --- a/docs/docs/auto-docs/utils/useLocalstorage/functions/getStorageKey.md +++ /dev/null @@ -1,33 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / [utils/useLocalstorage](../README.md) / getStorageKey - -# Function: getStorageKey() - -> **getStorageKey**(`prefix`, `key`): `string` - -Defined in: [src/utils/useLocalstorage.ts:19](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/useLocalstorage.ts#L19) - -Generates the prefixed key for storage. - -## Parameters - -### prefix - -`string` - -Prefix to be added to the key, common for all keys. - -### key - -`string` - -The unique name identifying the value. - -## Returns - -`string` - -- Prefixed key. diff --git a/docs/docs/auto-docs/utils/useLocalstorage/functions/removeItem.md b/docs/docs/auto-docs/utils/useLocalstorage/functions/removeItem.md deleted file mode 100644 index 43cfd488ac..0000000000 --- a/docs/docs/auto-docs/utils/useLocalstorage/functions/removeItem.md +++ /dev/null @@ -1,31 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / [utils/useLocalstorage](../README.md) / removeItem - -# Function: removeItem() - -> **removeItem**(`prefix`, `key`): `void` - -Defined in: [src/utils/useLocalstorage.ts:51](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/useLocalstorage.ts#L51) - -Removes the value associated with the given key from local storage. - -## Parameters - -### prefix - -`string` - -Prefix to be added to the key, common for all keys. - -### key - -`string` - -The unique name identifying the value. - -## Returns - -`void` diff --git a/docs/docs/auto-docs/utils/useLocalstorage/functions/setItem.md b/docs/docs/auto-docs/utils/useLocalstorage/functions/setItem.md deleted file mode 100644 index c15b708f37..0000000000 --- a/docs/docs/auto-docs/utils/useLocalstorage/functions/setItem.md +++ /dev/null @@ -1,37 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / [utils/useLocalstorage](../README.md) / setItem - -# Function: setItem() - -> **setItem**(`prefix`, `key`, `value`): `void` - -Defined in: [src/utils/useLocalstorage.ts:41](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/useLocalstorage.ts#L41) - -Sets the value for the given key in local storage. - -## Parameters - -### prefix - -`string` - -Prefix to be added to the key, common for all keys. - -### key - -`string` - -The unique name identifying the value. - -### value - -`any` - -The value for the key. - -## Returns - -`void` diff --git a/docs/docs/auto-docs/utils/useLocalstorage/functions/useLocalStorage.md b/docs/docs/auto-docs/utils/useLocalstorage/functions/useLocalStorage.md deleted file mode 100644 index b62d706972..0000000000 --- a/docs/docs/auto-docs/utils/useLocalstorage/functions/useLocalStorage.md +++ /dev/null @@ -1,27 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / [utils/useLocalstorage](../README.md) / useLocalStorage - -# Function: useLocalStorage() - -> **useLocalStorage**(`prefix`): `InterfaceStorageHelper` - -Defined in: [src/utils/useLocalstorage.ts:61](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/useLocalstorage.ts#L61) - -Custom hook for simplified localStorage operations. - -## Parameters - -### prefix - -`string` = `PREFIX` - -Prefix to be added to the key, common for all keys. Default is 'Talawa-admin'. - -## Returns - -`InterfaceStorageHelper` - -- Functions to getItem, setItem, removeItem, and getStorageKey. diff --git a/docs/docs/auto-docs/utils/useSession/README.md b/docs/docs/auto-docs/utils/useSession/README.md deleted file mode 100644 index ead72ee336..0000000000 --- a/docs/docs/auto-docs/utils/useSession/README.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../README.md) - -*** - -[talawa-admin](../../modules.md) / utils/useSession - -# utils/useSession - -## Functions - -- [default](functions/default.md) diff --git a/docs/docs/auto-docs/utils/useSession/functions/default.md b/docs/docs/auto-docs/utils/useSession/functions/default.md deleted file mode 100644 index 35aa62b61a..0000000000 --- a/docs/docs/auto-docs/utils/useSession/functions/default.md +++ /dev/null @@ -1,26 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / [utils/useSession](../README.md) / default - -# Function: default() - -> **default**(): `UseSessionReturnType` - -Defined in: [src/utils/useSession.tsx:30](https://github.com/bint-Eve/talawa-admin/blob/e05e1a03180dbbfc7ba850102958ea6b6cd4b01e/src/utils/useSession.tsx#L30) - -Custom hook for managing user session timeouts in a React application. - -This hook handles: -- Starting and ending the user session. -- Displaying a warning toast at half of the session timeout duration. -- Logging the user out and displaying a session expiration toast when the session times out. -- Automatically resetting the timers when user activity is detected. -- Pausing session timers when the tab is inactive and resuming them when it becomes active again. - -## Returns - -`UseSessionReturnType` - -UseSessionReturnType - An object with methods to start and end the session, and to handle logout. diff --git a/docs/docs/auto-docs/vite-env/README.md b/docs/docs/auto-docs/vite-env/README.md deleted file mode 100644 index c86cac2cc7..0000000000 --- a/docs/docs/auto-docs/vite-env/README.md +++ /dev/null @@ -1,7 +0,0 @@ -[**talawa-admin**](../README.md) - -*** - -[talawa-admin](../modules.md) / vite-env - -# vite-env diff --git a/docs/docs/intro.md b/docs/docs/intro.md deleted file mode 100644 index 7534844312..0000000000 --- a/docs/docs/intro.md +++ /dev/null @@ -1,47 +0,0 @@ ---- -sidebar_position: 1 ---- - -# Tutorial Intro - -Let's discover **Docusaurus in less than 5 minutes**. - -## Getting Started - -Get started by **creating a new site**. - -Or **try Docusaurus immediately** with **[docusaurus.new]**. - -### What you'll need - -- version 18.0 or above: - - When installing Node.js, you are recommended to check all checkboxes related to dependencies. - -## Generate a new site - -Generate a new Docusaurus site using the **classic template**. - -The classic template will automatically be added to your project after you run the command: - -```bash -npm init docusaurus@latest my-website classic -``` - -You can type this command into Command Prompt, Powershell, Terminal, or any other integrated terminal of your code editor. - -The command also installs all necessary dependencies you need to run Docusaurus. - -## Start your site - -Run the development server: - -```bash -cd my-website -npm run start -``` - -The `cd` command changes the directory you're working with. In order to work with your newly created Docusaurus site, you'll need to navigate the terminal there. - -The `npm run start` command builds your website locally and serves it through a development server, ready for you to view at http://localhost:3000/. - -Open `docs/intro.md` (this page) and edit some lines: the site **reloads automatically** and displays your changes. diff --git a/docs/package.json b/docs/package.json index 65e9e455b5..8e308fcee7 100644 --- a/docs/package.json +++ b/docs/package.json @@ -15,8 +15,8 @@ "typecheck": "tsc" }, "dependencies": { - "@docusaurus/core": "3.6.3", - "@docusaurus/preset-classic": "3.6.3", + "@docusaurus/core": "^3.7.0", + "@docusaurus/preset-classic": "^3.7.0", "@mdx-js/react": "^3.0.0", "clsx": "^2.0.0", "docusaurus": "^1.14.7", @@ -25,9 +25,9 @@ "react-dom": "^18.0.0" }, "devDependencies": { - "@docusaurus/module-type-aliases": "3.6.3", + "@docusaurus/module-type-aliases": "^3.7.0", "@docusaurus/tsconfig": "3.6.3", - "@docusaurus/types": "3.6.3", + "@docusaurus/types": "^3.7.0", "typescript": "~5.6.2" }, "browserslist": { diff --git a/package.json b/package.json index 4949705fe2..f6d84b3474 100644 --- a/package.json +++ b/package.json @@ -91,7 +91,7 @@ "lint-staged": "lint-staged --concurrent false", "setup": "tsx setup.ts", "check-localstorage": "node scripts/githooks/check-localstorage-usage.js", - "generate-docs": "typedoc --out docs/docs/auto-docs --plugin typedoc-plugin-markdown --theme markdown --tsconfig tsconfig.docs.json --excludePrivate --excludeProtected --excludeExternals --hideGenerator --categorizeByGroup true --entryPointStrategy expand --entryPoints \"src/**/*.ts\" \"src/**/*.tsx\" --exclude \"**/*.{test,spec,stories}.{ts,tsx}\" --exclude \"**/__tests__/**\" --exclude \"**/__mocks__/**\" --exclude \"**/node_modules/**\" --cleanOutputDir true --skipErrorChecking --logLevel Warn" + "generate-docs": "typedoc --out docs/docs/auto-docs --plugin typedoc-plugin-markdown --theme markdown --tsconfig tsconfig.docs.json --excludePrivate --excludeProtected --excludeExternals --hideGenerator --categorizeByGroup true --entryPointStrategy expand --entryPoints \"src/**/*.ts\" \"src/**/*.tsx\" --exclude \"src/vite-env.d.ts\" --exclude \"**/*.{test,spec,stories}.{ts,tsx}\" --exclude \"**/__tests__/**\" --exclude \"**/__mocks__/**\" --exclude \"**/node_modules/**\" --cleanOutputDir true --skipErrorChecking --logLevel Warn" }, "eslintConfig": { "extends": [ diff --git a/talawa-admin-docs/.nojekyll b/talawa-admin-docs/.nojekyll deleted file mode 100644 index e2ac6616ad..0000000000 --- a/talawa-admin-docs/.nojekyll +++ /dev/null @@ -1 +0,0 @@ -TypeDoc added this file to prevent GitHub Pages from using Jekyll. You can turn off this behavior by setting the `githubPages` option to false. \ No newline at end of file diff --git a/talawa-admin-docs/Dockerfile b/talawa-admin-docs/Dockerfile deleted file mode 100644 index e69de29bb2..0000000000 diff --git a/talawa-admin-docs/README.md b/talawa-admin-docs/README.md deleted file mode 100644 index 82dc89754c..0000000000 --- a/talawa-admin-docs/README.md +++ /dev/null @@ -1,52 +0,0 @@ -talawa-admin / [Modules](modules.md) - -# Talawa Admin -💬 Join the community on Slack. The link can be found in the `Talawa` [README.md](https://github.com/PalisadoesFoundation/talawa) file. - -![talawa-logo-lite-200x200](https://github.com/PalisadoesFoundation/talawa-admin/assets/16875803/26291ec5-d3c1-4135-8bc7-80885dff613d) - -[![License: GPL v3](https://img.shields.io/badge/License-GPLv3-blue.svg)](https://www.gnu.org/licenses/gpl-3.0) -[![GitHub stars](https://img.shields.io/github/stars/PalisadoesFoundation/talawa-admin.svg?style=social&label=Star&maxAge=2592000)](https://github.com/PalisadoesFoundation/talawa-admin) -[![GitHub forks](https://img.shields.io/github/forks/PalisadoesFoundation/talawa-admin.svg?style=social&label=Fork&maxAge=2592000)](https://github.com/PalisadoesFoundation/talawa-admin) -[![codecov](https://codecov.io/gh/PalisadoesFoundation/talawa-admin/branch/develop/graph/badge.svg?token=II0R0RREES)](https://codecov.io/gh/PalisadoesFoundation/talawa-admin) - -Talawa is a modular open source project to manage group activities of both non-profit organizations and businesses. - -Core features include: - -1. Membership management -2. Groups management -3. Event registrations -4. Recurring meetings -5. Facilities registrations - -`talawa` is based on the original `quito` code created by the [Palisadoes Foundation][pfd] as part of its annual Calico Challenge program. Calico provides paid summer internships for Jamaican university students to work on selected open source projects. They are mentored by software professionals and receive stipends based on the completion of predefined milestones. Calico was started in 2015. Visit [The Palisadoes Foundation's website](http://www.palisadoes.org/) for more details on its origin and activities. - -# Table of Contents - -\ + +- [Talawa Components](#talawa-components) +- [Documentation](#documentation) +- [Videos](#videos) + + + +# Talawa Components + +`talawa` has these major software components: + +1. **talawa**: [A mobile application with social media features](https://github.com/PalisadoesFoundation/talawa) +1. **talawa-api**: [An API providing access to user data and features](https://github.com/PalisadoesFoundation/talawa-api) +1. **talawa-admin**: [A web based administrative portal](https://github.com/PalisadoesFoundation/talawa-admin) +1. **talawa-docs**: [The online documentation website](https://github.com/PalisadoesFoundation/talawa-docs) + +# Documentation + +1. You can install the software for this repository using the steps in our [INSTALLATION.md](_media/INSTALLATION.md) file. +1. Do you want to contribute to our code base? Look at our [CONTRIBUTING.md](_media/CONTRIBUTING.md) file to get started. There you'll also find links to: + 1. Our code of conduct documentation in the [CODE_OF_CONDUCT.md](_media/CODE_OF_CONDUCT.md) file. + 1. How we handle the processing of new and existing issues in our [ISSUE_GUIDELINES.md](_media/ISSUE_GUIDELINES.md) file. + 1. The methodologies we use to manage our pull requests in our [PR_GUIDELINES.md](_media/PR_GUIDELINES.md) file. +1. The `talawa` documentation can be found at our [docs.talawa.io](https://docs.talawa.io) site. + 1. It is automatically generated from the markdown files stored in our [Talawa-Docs GitHub repository](https://github.com/PalisadoesFoundation/talawa-docs). This makes it easy for you to update our documenation. + +# Videos + +1. Visit our [YouTube Channel playlists](https://www.youtube.com/@PalisadoesOrganization/playlists) for more insights + 1. The "[Getting Started - Developers](https://www.youtube.com/watch?v=YpBUoHxEeyg&list=PLv50qHwThlJUIzscg9a80a9-HmAlmUdCF&index=1)" videos are extremely helpful for new open source contributors. diff --git a/docs/docs/auto-docs/_media/CODE_OF_CONDUCT.md b/docs/docs/auto-docs/_media/CODE_OF_CONDUCT.md new file mode 100644 index 0000000000..b82fab3779 --- /dev/null +++ b/docs/docs/auto-docs/_media/CODE_OF_CONDUCT.md @@ -0,0 +1,150 @@ +# Contributor Covenant Code of Conduct + +# Table of Contents + + + +- [Our Pledge](#our-pledge) +- [Our Standards](#our-standards) +- [Enforcement Responsibilities](#enforcement-responsibilities) +- [Scope](#scope) +- [Enforcement](#enforcement) +- [Enforcement Guidelines](#enforcement-guidelines) + - [1. Correction](#1-correction) + - [2. Warning](#2-warning) + - [3. Temporary Ban](#3-temporary-ban) + - [4. Permanent Ban](#4-permanent-ban) +- [Attribution](#attribution) + + + +## Our Pledge + +We as members, contributors, and leaders pledge to make participation in our +community a harassment-free experience for everyone, regardless of age, body +size, visible or invisible disability, ethnicity, sex characteristics, gender +identity and expression, level of experience, education, socio-economic status, +nationality, personal appearance, race, caste, color, religion, or sexual identity +and orientation. + +We pledge to act and interact in ways that contribute to an open, welcoming, +diverse, inclusive, and healthy community. + +## Our Standards + +Examples of behavior that contributes to a positive environment for our +community include: + +- Demonstrating empathy and kindness toward other people +- Being respectful of differing opinions, viewpoints, and experiences +- Giving and gracefully accepting constructive feedback +- Accepting responsibility and apologizing to those affected by our mistakes, + and learning from the experience +- Focusing on what is best not just for us as individuals, but for the + overall community + +Examples of unacceptable behavior include: + +- The use of sexualized language or imagery, and sexual attention or + advances of any kind +- Trolling, insulting or derogatory comments, and personal or political attacks +- Public or private harassment +- Publishing others' private information, such as a physical or email + address, without their explicit permission +- Other conduct which could reasonably be considered inappropriate in a + professional setting + +## Enforcement Responsibilities + +Community leaders are responsible for clarifying and enforcing our standards of +acceptable behavior and will take appropriate and fair corrective action in +response to any behavior that they deem inappropriate, threatening, offensive, +or harmful. + +Community leaders have the right and responsibility to remove, edit, or reject +comments, commits, code, wiki edits, issues, and other contributions that are +not aligned to this Code of Conduct, and will communicate reasons for moderation +decisions when appropriate. + +## Scope + +This Code of Conduct applies within all community spaces, and also applies when +an individual is officially representing the community in public spaces. +Examples of representing our community include using an official e-mail address, +posting via an official social media account, or acting as an appointed +representative at an online or offline event. + +## Enforcement + +Instances of abusive, harassing, or otherwise unacceptable behavior may be +reported to the community leaders responsible for enforcement at [The Palisadoes Foundation](http://www.palisadoes.org/) + +All complaints will be reviewed and investigated promptly and fairly. + +All community leaders are obligated to respect the privacy and security of the +reporter of any incident. + +## Enforcement Guidelines + +Community leaders will follow these Community Impact Guidelines in determining +the consequences for any action they deem in violation of this Code of Conduct: + +### 1. Correction + +**Community Impact**: Use of inappropriate language or other behavior deemed +unprofessional or unwelcome in the community. + +**Consequence**: A private, written warning from community leaders, providing +clarity around the nature of the violation and an explanation of why the +behavior was inappropriate. A public apology may be requested. + +### 2. Warning + +**Community Impact**: A violation through a single incident or series +of actions. + +**Consequence**: A warning with consequences for continued behavior. No +interaction with the people involved, including unsolicited interaction with +those enforcing the Code of Conduct, for a specified period of time. This +includes avoiding interactions in community spaces as well as external channels +like social media. Violating these terms may lead to a temporary or +permanent ban. + +### 3. Temporary Ban + +**Community Impact**: A serious violation of community standards, including +sustained inappropriate behavior. + +**Consequence**: A temporary ban from any sort of interaction or public +communication with the community for a specified period of time. No public or +private interaction with the people involved, including unsolicited interaction +with those enforcing the Code of Conduct, is allowed during this period. +Violating these terms may lead to a permanent ban. + +### 4. Permanent Ban + +**Community Impact**: Demonstrating a pattern of violation of community +standards, including sustained inappropriate behavior, harassment of an +individual, or aggression toward or disparagement of classes of individuals. + +**Consequence**: A permanent ban from any sort of public interaction within +the community. + +## Attribution + +This Code of Conduct is adapted from the [Contributor Covenant][homepage], +version 2.0, available at +[https://www.contributor-covenant.org/version/2/0/code_of_conduct.html][v2.0]. + +Community Impact Guidelines were inspired by +[Mozilla's code of conduct enforcement ladder][mozilla coc]. + +For answers to common questions about this code of conduct, see the FAQ at +[https://www.contributor-covenant.org/faq][faq]. Translations are available +at [https://www.contributor-covenant.org/translations][translations]. + +[homepage]: https://www.contributor-covenant.org +[v2.0]: https://www.contributor-covenant.org/version/2/0/code_of_conduct.html +[mozilla coc]: https://github.com/mozilla/diversity +[faq]: https://www.contributor-covenant.org/faq +[translations]: https://www.contributor-covenant.org/translations diff --git a/docs/docs/auto-docs/_media/CONTRIBUTING.md b/docs/docs/auto-docs/_media/CONTRIBUTING.md new file mode 100644 index 0000000000..dbe448c807 --- /dev/null +++ b/docs/docs/auto-docs/_media/CONTRIBUTING.md @@ -0,0 +1,179 @@ +# Contributing to Talawa-Admin + +Thank you for your interest in contributing to Talawa Admin. Regardless of the size of the contribution you make, all contributions are welcome and are appreciated. + +If you are new to contributing to open source, please read the Open Source Guides on [How to Contribute to Open Source](https://opensource.guide/how-to-contribute/). + +## Table of Contents + + + +- [Code of Conduct](#code-of-conduct) +- [Videos](#videos) +- [Ways to Contribute](#ways-to-contribute) + - [Our Development Process](#our-development-process) + - [Issues](#issues) + - [Pull Requests](#pull-requests) + - [Branching Strategy](#branching-strategy) + - [Conflict Resolution](#conflict-resolution) + - [Contributing Code](#contributing-code) +- [Internships](#internships) +- [Community](#community) + + + +## Code of Conduct + +A safe environment is required for everyone to contribute. Read our [Code of Conduct Guide](CODE_OF_CONDUCT.md) to understand what this means. Let us know immediately if you have unacceptable experiences in this area. + +No one should fear voicing their opinion. Respones must be respectful. + +## Videos + +1. Visit our [YouTube Channel playlists](https://www.youtube.com/@PalisadoesOrganization/playlists) for more insights + 1. The "[Getting Started - Developers](https://www.youtube.com/watch?v=YpBUoHxEeyg&list=PLv50qHwThlJUIzscg9a80a9-HmAlmUdCF&index=1)" videos are extremely helpful for new open source contributors. + +## Ways to Contribute + +If you are ready to start contributing code right away, get ready! + +1. Join our Slack and introduce yourself. See details on how to join below in the Community section. + 1. This repository has its own dedicated channel. + 1. There are many persons on the various channels who are willing to assist you in getting started. +1. Take a look at our issues (**_after reading our guidelines below_**): + 1. We have a list of [good first issues](https://github.com/PalisadoesFoundation/talawa-admin/labels/good%20first%20issue) that contain challenges with a limited scope for beginners. + 1. There are issues for creating tests for our code base. We need to increase reliablility. Try those issues, or create your own for files that don't already have tests. This is another good strategy for beginners. + 1. There are [dormant issues on which nobody has worked for some time](https://github.com/PalisadoesFoundation/talawa-admin/issues?q=is%3Aopen+is%3Aissue+label%3Ano-issue-activity). These are another place to start + 1. There may also be [dormant PRs on which nobody has worked for some time](https://github.com/PalisadoesFoundation/talawa-admin/issues?q=is%3Aopen+is%3Aissue+label%3Ano-issue-activity+label%3Ano-pr-activity)! +1. Create an issue based on a bug you have found or a feature you would like to add. We value meaningful sugestions and will prioritize them. + +Welcome aboard! + +### Our Development Process + +We utilize GitHub issues and pull requests to keep track of issues and contributions from the community. + +#### Issues + +Make sure you are following [issue report guidelines](ISSUE_GUIDELINES.md) available here before creating any new issues on Talawa Admin project. + +#### Pull Requests + +[Pull Request guidelines](PR_GUIDELINES.md) is best resource to follow to start working on open issues. + +#### Branching Strategy + +For Talawa Admin, we had employed the following branching strategy to simplify the development process and to ensure that only stable code is pushed to the `main` branch: + +- `develop`: For unstable code and bug fixing +- `main`: Where the stable production ready code lies. This is our default branch. + +#### Conflict Resolution + +When multiple developers are working on issues there is bound to be a conflict of interest (not to be confused with git conflicts) among issues, PRs or even ideas. Usually these conflicts are resolved in a **First Come First Serve** basis however there are certain exceptions to it. + +- In the cases where you feel your potential issues could be an extension or in conflict with other PRs it is important to ask the author of the PR in the slack channel or in their PRs or issues themselves why he/she did not write code for something that would require minimal effort on their part. +- Based on basic courtesy, it is good practice to let the person who created a function apply and test that function when needed. +- Last but not the least, communication is important make sure to talk to other contributors, in these cases, in slack channel or in a issue/PR thread. +- As a last resort the Admins would be responsible for deciding how to resolve this conflict. + +### Contributing Code + +Code contributions to Talawa come in the form of pull requests. These are done by forking the repo and making changes locally. + +Make sure you have read the [Documentation for Setting up the Project](https://github.com/PalisadoesFoundation/talawa-admin#project-setup) + +The process of proposing a change to Talawa Admin can be summarized as: + +1. Fork the Talawa Admin repository and branch off `develop`. +1. Your newly forked repository can be cloned locally using `git clone `. +1. Make the Palisadoes Foundation's repo your `git upstream` for your local repo. +1. Make the desired changes to the Talawa Admin project. +1. Run the app and test your changes. +1. If you've added code, then test suites must be added. + + 1. **_General_:** + + 1. We need to get to 100% test coverage for the app. We periodically increase the desired test coverage for our pull requests to meet this goal. + 1. Pull requests that don't meet the minimum test coverage levels will not be accepted. This may mean that you will have to create tests for code you did not write. You can decide which part of the code base needs additional tests if this happens to you. + + 2. **_Testing_:** + + 1. Test using this set of commands: + + ``` + npm install + npm run test --watchAll=false --coverage + ``` + + 2. Debug tests in browser + + You can see the output of failing tests in broswer by running `jest-preview` package before running your tests + + ``` + npm install + npm run jest-preview + npm run test --watchAll=false --coverage + ``` + + You don't need to re-run the `npm run jest-preview` command each time, simply run the `npm run test` command if the Jest Preview server is already running in the background, it'll automatically detect any failing tests and show the preview at `http://localhost:3336` as shown in this screenshot - + + ![Debugging Test Demo](./public/images/jest-preview.webp) + + 3. **_Test Code Coverage_:** + + 1. _General Information_ + 1. The current code coverage of the repo is: [![codecov](https://codecov.io/gh/PalisadoesFoundation/talawa-admin/branch/develop/graph/badge.svg?token=II0R0RREES)](https://codecov.io/gh/PalisadoesFoundation/talawa-admin) + 2. You can determine the percentage test coverage of your code by running these two commands in sequence: + ``` + npm install + npm run test --watchAll=false --coverage + genhtml coverage/lcov.info -o coverage + ``` + 3. The output of the `npm run test` command will give you a tablular coverage report per file + 4. The overall coverage rate will be visible on the penultimate line of the `genhtml` command's output. + 5. The `genhtml` command is part of the Linux `lcov` package. Similar packages can be found for Windows and MacOS. + 6. The currently acceptable coverage rate can be found in the [GitHub Pull Request file](.github/workflows/pull-requests.yml). Search for the value below the line containing `min_coverage`. + 2. _Testing Individual Files_ + 1. You can test an individual file by running this command: + ``` + npm run test --watchAll=false /path/to/test/file + ``` + 2. You can get the test coverage report for that file by running this command. The report will list all tests in the suite. Those tests that are not run will have zero values. You will need to look for the output line relevant to your test file. + ``` + npm run test --watchAll=false --coverage /path/to/test/file + ``` + 3. _Creating your code coverage account_ + + 1. You can also see your code coverage online for your fork of the repo. This is provided by `codecov.io` + + 1. Go to this link: `https://app.codecov.io/gh/XXXX/YYYY` where XXXX is your GitHub account username and YYYY is the name of the repository + 2. Login to `codecov.io` using your GitHub account, and add your **repo** and **branches** to the `codecov.io` dashboard. + ![Debugging Test Demo](/public/images/codecov/authorise-codecov-github.jpg) + 3. Remember to add the `Repository Upload Token` for your forked repo. This can be found under `Settings` of your `codecov.io` account. + + 4. Click on Setup Repo option + ![Debugging Test Demo]() + 5. Use the value of this token to create a secret named CODE_COV for your forked repo. + [![Code-cov-token.jpg](/public/images/codecov/Code-cov-token.jpg)]() + [![addd-your-key.jpg](/public/images/codecov/addd-your-key.jpg)]() + 6. You will see your code coverage reports with every push to your repo after following these steps + [![results.jpg](/public/images/codecov/results.jpg)]() + +1. After making changes you can add them to git locally using `git add `(to add changes only in a particular file) or `git add .` (to add all changes). +1. After adding the changes you need to commit them using `git commit -m ''`(look at the commit guidelines below for commit messages). +1. Once you have successfully commited your changes, you need to push the changes to the forked repo on github using: `git push origin `.(Here branch name must be name of the branch you want to push the changes to.) +1. Now create a pull request to the Talawa-admin repository from your forked repo. Open an issue regarding the same and link your PR to it. +1. Ensure the test suite passes, either locally or on CI once a PR has been created. +1. Review and address comments on your pull request if requested. + +## Internships + +If you are participating in any of the various internship programs we are members of, then please read the [introduction guides on our documentation website](https://docs.talawa.io/docs/). + +## Community + +There are many ways to communicate with the community. + +1. The Palisadoes Foundation has a Slack channel where members can assist with support and clarification. Visit the [Talawa GitHub repository home page](https://github.com/PalisadoesFoundation/talawa) for the link to join our slack channel. +1. We also have a technical email list run by [freelists.org](https://www.freelists.org/). Search for "palisadoes" and join. Members on this list are also periodically added to our marketing email list that focuses on less technical aspects of our work. diff --git a/docs/docs/auto-docs/_media/INSTALLATION.md b/docs/docs/auto-docs/_media/INSTALLATION.md new file mode 100644 index 0000000000..3c09f69e33 --- /dev/null +++ b/docs/docs/auto-docs/_media/INSTALLATION.md @@ -0,0 +1,382 @@ +# Talawa-Admin Installation + +This document provides instructions on how to set up and start a running instance of `talawa-admin` on your local system. The instructions are written to be followed in sequence so make sure to go through each of them step by step without skipping any sections. + +# Table of Contents + + + +- [Installation Steps Summary](#installation-steps-summary) +- [Prerequisites](#prerequisites) + - [Install git](#install-git) + - [Setting up this repository](#setting-up-this-repository) + - [Install node.js](#install-nodejs) + - [Install TypeScript](#install-typescript) + - [Install Required Packages](#install-required-packages) +- [Installation using Docker](#installation-using-docker) + - [Prerequisites](#prerequisites-1) + - [Development Setup](#development-setup) + + + +# Installation Steps Summary + +Installation is not difficult, but there are many steps. This is a brief explanation of what needs to be done: + +1. Install `git` +2. Download the code from GitHub using `git` +3. Install `node.js` (Node), the runtime environment the application will need to work. +4. Configure the Node Package Manager (`npm`) to automatically use the correct version of Node for our application. +5. Use `npm` to install TypeScript, the language the application is written in. +6. Install other supporting software such as the database. +7. Configure the application +8. Start the application + +These steps are explained in more detail in the sections that follow. + +# Prerequisites + +In this section we'll explain how to set up all the prerequisite software packages to get you up and running. + +## Install git + +The easiest way to get the latest copies of our code is to install the `git` package on your computer. + +Follow the setup guide for `git` on official [git docs](https://git-scm.com/downloads). Basic `git` knowledge is required for open source contribution so make sure you're comfortable with it. [Here's](https://youtu.be/apGV9Kg7ics) a good tutorial to get started with `git` and `github`. + +## Setting up this repository + +First you need a local copy of `talawa-admin`. Run the following command in the directory of choice on your local system. + +1. On your computer, navigate to the folder where you want to setup the repository. +2. Open a `cmd` (Windows) or `terminal` (Linux or MacOS) session in this folder. + 1. An easy way to do this is to right-click and choose appropriate option based on your OS. +3. **For Our Open Source Contributor Software Developers:** + + 1. Next, we'll fork and clone the `talawa-admin` repository. + 1. In your web browser, navigate to [https://github.com/PalisadoesFoundation/talawa-admin/](https://github.com/PalisadoesFoundation/talawa-admin/) and click on the `fork` button. It is placed on the right corner opposite the repository name `PalisadoesFoundation/talawa-admin`. + + ![Image with fork](public/markdown/images/install1.png) + + 1. You should now see `talawa-admin` under your repositories. It will be marked as forked from `PalisadoesFoundation/talawa-admin` + + ![Image of user's clone](public/markdown/images/install2.png) + + 1. Clone the repository to your local computer (replacing the values in `{{}}`): + ```bash + $ git clone https://github.com/{{YOUR GITHUB USERNAME}}/talawa-admin.git + cd talawa-admin + git checkout develop + ``` + - **Note:** Make sure to check out the `develop` branch + 1. You now have a local copy of the code files. For more detailed instructions on contributing code, and managing the versions of this repository with `git`, checkout our [CONTRIBUTING.md](./CONTRIBUTING.md) file. + +4. **Talawa Administrators:** + + 1. Clone the repository to your local computer using this command: + + ```bash + $ git clone https://github.com/PalisadoesFoundation/talawa-admin.git + ``` + +## Install node.js + +Best way to install and manage `node.js` is making use of node version managers. We recommend using `fnm`, which will be described in more detail later. + +Follow these steps to install the `node.js` packages in Windows, Linux and MacOS. + +1. For Windows: + 1. first install `node.js` from their website at https://nodejs.org + 1. When installing, don't click the option to install the `necessary tools`. These are not needed in our case. + 2. then install [fnm](https://github.com/Schniz/fnm). Please read all the steps in this section first. + 1. All the commands listed on this page will need to be run in a Windows terminal session in the `talawa-admin` directory. + 2. Install `fnm` using the `winget` option listed on the page. + 3. Setup `fnm` to automatically set the version of `node.js` to the version required for the repository using these steps: + 1. First, refer to the `fnm` web page's section on `Shell Setup` recommendations. + 2. Open a `Windows PowerShell` terminal window + 3. Run the recommended `Windows PowerShell` command to open `notepad`. + 4. Paste the recommended string into `notepad` + 5. Save the document. + 6. Exit `notepad` + 7. Exit PowerShell + 8. This will ensure that you are always using the correct version of `node.js` +2. For Linux and MacOS, use the terminal window. + 1. install `node.js` + 2. then install `fnm` + 1. Refer to the installation page's section on the `Shell Setup` recommendations. + 2. Run the respective recommended commands to setup your node environment + 3. This will ensure that you are always using the correct version of `node.js` + +## Install TypeScript + +TypeScript is a typed superset of JavaScript that compiles to plain JavaScript. It adds optional types, classes, and modules to JavaScript, and supports tools for large-scale JavaScript applications. + +To install TypeScript, you can use the `npm` command which comes with `node.js`: + +```bash +npm install -g typescript +``` + +This command installs TypeScript globally on your system so that it can be accessed from any project. + +## Install Required Packages + +Run the following command to install the packages and dependencies required by the app: + +``` +npm install +``` + +The prerequisites are now installed. The next step will be to get the app up and running. + +# Installation using Docker + +## Prerequisites + +1. Install Docker on your system: + - [Docker Desktop for Windows/Mac](https://www.docker.com/products/docker-desktop) + - [Docker Engine for Linux](https://docs.docker.com/engine/install/) + +### Development Setup + +If you prefer to use Docker, you can install the app using the following command: + +1. Create a `.env` file as described in the Configuration section + +2. Build the Docker Image: + +Run the following command to build the Docker image: + +````bash +docker build -t talawa-admin . +```bash + +3. Run the Docker container: + +After the build is complete, run the Docker container using this command: + +```bash +docker run -p 4321:4321 talawa-admin +```bash + +The application will be accessible at `http://localhost:4321` + +# Configuration + +It's important to configure Talawa-Admin. Here's how to do it. + +You can use our interactive setup script for the configuration. Use the following command for the same. + +```bash +npm run setup +```bash + +All the options in "setup" can be done manually as well and here's how to do it. - [Creating .env file](#creating-env-file) + +## Creating .env file + +A file named .env is required in the root directory of talawa-admin for storing environment variables used at runtime. It is not a part of the repo and you will have to create it. For a sample of `.env` file there is a file named `.env.example` in the root directory. Create a new `.env` file by copying the contents of the `.env.example` into `.env` file. Use this command: + +```` + +cp .env.example .env + +``` + +This `.env` file must be populated with the following environment variables for `talawa-admin` to work: + +| Variable | Description | +| ------------------------------- | ------------------------------------------------- | +| PORT | Custom port for Talawa-Admin development purposes | +| REACT_APP_TALAWA_URL | URL endpoint for talawa-api graphql service | +| REACT_APP_BACKEND_WEBSOCKET_URL | URL endpoint for websocket end point | +| REACT_APP_USE_RECAPTCHA | Whether you want to use reCAPTCHA or not | +| REACT_APP_RECAPTCHA_SITE_KEY | Site key for authentication using reCAPTCHA | + +Follow the instructions from the sections [Setting up PORT in .env file](#setting-up-port-in-env-file), [Setting up REACT_APP_TALAWA_URL in .env file](#setting-up-REACT_APP_TALAWA_URL-in-env-file), [Setting up REACT_APP_BACKEND_WEBSOCKET_URL in .env file](#setting-up-react_app_backend_websocket_url-in-env-file), [Setting up REACT_APP_RECAPTCHA_SITE_KEY in .env file](#setting-up-REACT_APP_RECAPTCHA_SITE_KEY-in-env-file) and [Setting up Compiletime and Runtime logs](#setting-up-compiletime-and-runtime-logs) to set up these environment variables. + +## Setting up PORT in .env file + +Add a custom port number for Talawa-Admin development purposes to the variable named `PORT` in the `.env` file. + +## Setting up REACT_APP_TALAWA_URL in .env file + +Add the endpoint for accessing talawa-api graphql service to the variable named `REACT_APP_TALAWA_URL` in the `.env` file. + +``` + +REACT_APP_TALAWA_URL="http://API-IP-ADRESS:4000/graphql/" + +``` + +If you are a software developer working on your local system, then the URL would be: + +``` + +REACT_APP_TALAWA_URL="http://localhost:4000/graphql/" + +``` + +If you are trying to access Talawa Admin from a remote host with the API URL containing "localhost", You will have to change the API URL to + +``` + +REACT_APP_TALAWA_URL="http://YOUR-REMOTE-ADDRESS:4000/graphql/" + +``` + +## Setting up REACT_APP_BACKEND_WEBSOCKET_URL in .env file + +The endpoint for accessing talawa-api WebSocket graphql service for handling subscriptions is automatically added to the variable named `REACT_APP_BACKEND_WEBSOCKET_URL` in the `.env` file. + +``` + +REACT_APP_BACKEND_WEBSOCKET_URL="ws://API-IP-ADRESS:4000/graphql/" + +``` + +If you are a software developer working on your local system, then the URL would be: + +``` + +REACT_APP_BACKEND_WEBSOCKET_URL="ws://localhost:4000/graphql/" + +``` + +If you are trying to access Talawa Admin from a remote host with the API URL containing "localhost", You will have to change the API URL to + +``` + +REACT_APP_BACKEND_WEBSOCKET_URL="ws://YOUR-REMOTE-ADDRESS:4000/graphql/" + +``` + +For additional details, please refer the `How to Access the Talawa-API URL` section in the INSTALLATION.md file found in the [Talawa-API repo](https://github.com/PalisadoesFoundation/talawa-api). + +## Setting up REACT_APP_RECAPTCHA_SITE_KEY in .env file + +You may not want to setup reCAPTCHA since the project will still work. Moreover, it is recommended to not set it up in development environment. + +Just skip to the [Post Configuration Steps](#post-configuration-steps) if you don't want to set it up. Else, read the following steps. + +If you want to setup Google reCAPTCHA now, you may refer to the `RECAPTCHA` section in the INSTALLATION.md file found in [Talawa-API repo](https://github.com/PalisadoesFoundation/talawa-api). + +`Talawa-admin` needs the `reCAPTCHA site key` for the `reCAPTCHA` service you set up during `talawa-api` installation as shown in this screenshot: + +![reCAPTCHA site key](./public/images/REACT_SITE_KEY.webp) + +Copy/paste this `reCAPTCHA site key` to the variable named `REACT_APP_RECAPTCHA_SITE_KEY` in `.env` file. + +``` + +REACT_APP_RECAPTCHA_SITE_KEY="this_is_the_recaptcha_key" + +``` + +## Setting up Compiletime and Runtime logs + +Set the `ALLOW_LOGS` to "YES" if you want warnings , info and error messages in your console or leave it blank if you dont need them or want to keep the console clean + +# Post Configuration Steps + +It's now time to start Talawa-Admin and get it running + +## Running Talawa-Admin + +Run the following command to start `talawa-admin` development server: + +``` + +npm run serve + +``` + +## Accessing Talawa-Admin + +By default `talawa-admin` runs on port `4321` on your system's localhost. It is available on the following endpoint: + +``` + +http://localhost:4321/ + +``` + +If you have specified a custom port number in your `.env` file, Talawa-Admin will run on the following endpoint: + +``` + +http://localhost:${{customPort}}/ + +``` + +Replace `${{customPort}}` with the actual custom port number you have configured in your `.env` file. + +## Talawa-Admin Registration + +The first time you navigate to the running talawa-admin's website you'll land at talawa-admin registration page. Sign up using whatever credentials you want and create the account. Make sure to remember the email and password you entered because they'll be used to sign you in later on. + +## Talawa-Admin Login + +Now sign in to talawa-admin using the `email` and `password` you used to sign up. + +# Testing + +It is important to test our code. If you are a contributor, please follow these steps. + +## Running tests + +You can run the tests for `talawa-admin` using this command: + +``` + +npm run test + +``` + +## Debugging tests + +You can see the output of failing tests in broswer by running `jest-preview` package before running your tests + +``` + +npm run jest-preview +npm run test + +``` + +You don't need to re-run the `npm run jest-preview` command each time, simply run the `npm run test` command if the Jest Preview server is already running in the background, it'll automatically detect any failing tests and show the preview at `http://localhost:3336` as shown in this screenshot - + +![Debugging Test Demo](./public/images/jest-preview.webp) + +## Linting code files + +You can lint your code files using this command: + +``` + +npm run lint:fix + +``` + +## Husky for Git Hooks + +We are using the package `Husky` to run git hooks that run according to different git workflows. + +#### pre-commit hook + +We run a pre-commit hook which automatically runs code quality checks each time you make a commit and also fixes some of the issues. This way you don't have to run them manually each time. + +If you don't want these pre-commit checks running on each commit, you can manually opt out of it using the `--no-verify` flag with your commit message as shown:- + + git commit -m "commit message" --no-verify + +#### post-merge hook + +We are also running a post-merge(post-pull) hook which will automatically run "npm install" only if there is any change made to pakage.json file so that the developer has all the required dependencies when pulling files from remote. + +If you don't want this hook to run, you can manually opt out of this using the `no verify` flag while using the merge command(git pull): + + git pull --no-verify + +
+``` diff --git a/docs/docs/auto-docs/_media/ISSUE_GUIDELINES.md b/docs/docs/auto-docs/_media/ISSUE_GUIDELINES.md new file mode 100644 index 0000000000..5170de5839 --- /dev/null +++ b/docs/docs/auto-docs/_media/ISSUE_GUIDELINES.md @@ -0,0 +1,59 @@ +# Issue Report Guidelines + +:+1::tada: First off, thanks for taking the time to contribute! :tada::+1: + +In order to give everyone a chance to submit a issues reports and contribute to the Talawa project, we have put restrictions in place. This section outlines the guidelines that should be imposed upon issue reports in the Talawa project. + +___ +## Table of Contents + + + +- [Issue Management](#issue-management) + - [New Issues](#new-issues) + - [Existing Issues](#existing-issues) + - [Feature Request Issues](#feature-request-issues) + - [Monitoring the Creation of New Issues](#monitoring-the-creation-of-new-issues) +- [General Guidelines](#general-guidelines) + + + +___ +## Issue Management + +In all cases please use the [GitHub open issue search](https://github.com/PalisadoesFoundation/talawa-admin/issues) to check whether the issue has already been reported. + +### New Issues +To create new issues follow these steps: + +1. Your issue may have already been created. Search for duplicate open issues before submitting yours.for similar deficiencies in the code.duplicate issues are created. +1. Verify whether the issue has been fixed by trying to reproduce it using the latest master or development branch in the repository. +1. Click on the [`New Issue`](https://github.com/PalisadoesFoundation/talawa-admin/issues/new/choose) button +1. Use the templates to create a standardized report of what needs to be done and why. +1. If you want to be assigned the issue that you have created, then add a comment immediately after submitting it. + +We welcome contributors who find new ways to make the code better. + +### Existing Issues + +You can also be a valuable contributor by searching for dormant issues. Here's how you can do that: + +1. **Previously Assigned Issues**: We regularly review issues and add a [`no-issue-activity`](https://github.com/PalisadoesFoundation/talawa-admin/issues?q=is%3Aissue+is%3Aopen+label%3Ano-issue-activity) label to them. Use the issue comments to ask whether the assignee is still working on the issue, and if not, ask for the issue to be assigned to you. +1. **Unassigned Issues**: If the issue is already reported and [not assigned to anyone](https://github.com/PalisadoesFoundation/talawa-admin/issues?q=is%3Aissue+is%3Aopen+no%3Aassignee) and you are interested in working on the issue then: + 1. Ask for the issue to be assigned to you in the issue comments + 2. Ask our contributors to assign it to you in `#talawa` slack channel. + +Working on these types of existing issues is a good way of getting started with the community. + +### Feature Request Issues + +Feature requests are welcome. But take a moment to find out whether your idea fits with the scope and aims of the project. It's up to you to make a strong case to convince the mentors of the merits of this feature. Please provide as much detail and context as possible. + +### Monitoring the Creation of New Issues +1. Join our `#talawa-github` slack channel for automatic issue and pull request updates. + +## General Guidelines + +1. Discuss issues in our various slack channels when necessary +2. Please do not derail or troll issues. +3. Keep the discussion on topic and respect the opinions of others. diff --git a/docs/docs/auto-docs/_media/PR_GUIDELINES.md b/docs/docs/auto-docs/_media/PR_GUIDELINES.md new file mode 100644 index 0000000000..4c904c782d --- /dev/null +++ b/docs/docs/auto-docs/_media/PR_GUIDELINES.md @@ -0,0 +1,69 @@ +# Pull Request Guidelines + +:+1::tada: First off, thanks for taking the time to contribute! :tada::+1: + +In order to give everyone a chance to submit a pull request and contribute to the Talawa project, we have put restrictions in place. This section outlines the guidelines that should be imposed upon pull requests in the Talawa project. + +# Table of Contents + + + +- [Pull Requests and Issues](#pull-requests-and-issues) +- [Linting and Formatting](#linting-and-formatting) +- [Testing](#testing) +- [Pull Request Processing](#pull-request-processing) + - [Only submit PRs against our `develop` branch, not the default `main` branch](#only-submit-prs-against-our-develop-branch-not-the-default-main-branch) + + + +## Pull Requests and Issues + +1. Do not start working on any open issue and raise a PR unless the issue is assigned to you. PRs that don't meet these guidelines will be closed. +1. Pull requests must be based on [open issues](https://github.com/PalisadoesFoundation/talawa-admin/issues) available. +1. [Use this method to automatically close the issue when the PR is completed.](https://docs.github.com/en/github/managing-your-work-on-github/linking-a-pull-request-to-an-issue) + +## Linting and Formatting + +All the pull requests must have code that is properly linted and formatted, so that uniformity across the repository can be ensured. + +Before opening a PR, you can run the following scripts to automatically lint and format the code properly: + +``` +npm run lint:fix +npm run format:fix +``` + +Both of these scripts also have a `check` counterpart, which would be used by the GitHub CI to ensure that the code is properly formatted. +You can run the following scripts yourself to ensure that your pull request doesn't fail due to linting and formatting errors: + +``` +npm run lint:check +npm run format:check +``` + +## Testing + +1. All pull requests must have test units. If, for some reason, it is not possible to add tests, please let us know and explain why. In that case, you'll need to tell us what steps you followed to manually test your changes. +1. Please read our [CONTRIBUTING.md](CONTRIBUTING.md) document for details on our testing policy. + +## Pull Request Processing +These are key guidelines for the procedure: + +### Only submit PRs against our `develop` branch, not the default `main` branch + +1. Only submit PRs against our `develop` branch. The default is `main`, so you will have to modify this before submitting your PR for review. PRs made against `main` will be closed. +1. We do not accept draft Pull Requests. They will be closed if submitted. We focus on work that is ready for immediate review. +1. Removing assigned reviewers from your Pull Request will cause it to be closed. The quality of our code is very important to us. Therefore we make experienced maintainers of our code base review your code. Removing these assigned persons is not in the best interest of this goal. +1. If you have not done so already, please read the `Pull Requests and Issues` and `Testing` sections above. +1. Each contributor may only create one pull request at a time. We have this rule in place due to our limited resources - if everyone was allowed to post multiple pull requests, we would not be able to review them properly. It is also better for contributors because you can focus on creating one quality PR - so spend time making sure it is as good as it can be. +1. Upon successful push to the fork, check if all tests are passing; if not, fix the issues and then create a pull request. +1. If the pull request's code quality is not up to par, or it would break the app, it will more likely be closed. So please be careful when creating a PR. +1. Please follow the PR template provided. Ensure the PR title clearly describes the problem it is solving. In the description, include the relevant issue number, snapshots, and videos after changes are added. +1. If you are borrowing a code, please disclose it. It is fine and sometimes even recommended to borrow code, but we need to know about it to assess your work. If we find out that your pull request contains a lot of code copied from elsewhere, we will close the pull request. +1. No Work In Progress. ONLY completed and working pull requests and with respective test units will be accepted. A WIP would fall under rule 4 and be closed immediately. +1. Please do not @mention contributors and mentors. Sometimes it takes time before we can review your pull request or answer your questions, but we'll get to it sooner or later. @mentioning someone just adds to the pile of notifications we get and it won't make us look at your issue faster. +1. Do not force push. If you make changes to your pull request, please simply add a new commit, as that makes it easy for us to review your new changes. If you force push, we'll have to review everything from the beginning. +1. PR should be small, easy to review and should follow standard coding styles. +1. If PR has conflicts because of recently added changes to the same file, resolve issues, test new changes, and submit PR again for review. +1. PRs should be atomic. That is, they should address one item (issue or feature) +1. After submitting PR, if you are not replying within 48 hours, then in that case, we may need to assign the issue to other contributors based on the priority of the issue. diff --git a/docs/docs/auto-docs/assets/svgs/social-icons/README.md b/docs/docs/auto-docs/assets/svgs/social-icons/README.md new file mode 100644 index 0000000000..ea42cd11bd --- /dev/null +++ b/docs/docs/auto-docs/assets/svgs/social-icons/README.md @@ -0,0 +1,7 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / assets/svgs/social-icons + +# assets/svgs/social-icons diff --git a/docs/docs/auto-docs/components/AddOn/AddOn/README.md b/docs/docs/auto-docs/components/AddOn/AddOn/README.md new file mode 100644 index 0000000000..3fb85e739b --- /dev/null +++ b/docs/docs/auto-docs/components/AddOn/AddOn/README.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / components/AddOn/AddOn + +# components/AddOn/AddOn + +## Functions + +- [default](functions/default.md) diff --git a/docs/docs/auto-docs/components/AddOn/AddOn/functions/default.md b/docs/docs/auto-docs/components/AddOn/AddOn/functions/default.md new file mode 100644 index 0000000000..4dcce33cf0 --- /dev/null +++ b/docs/docs/auto-docs/components/AddOn/AddOn/functions/default.md @@ -0,0 +1,27 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [components/AddOn/AddOn](../README.md) / default + +# Function: default() + +> **default**(`__namedParameters`): `JSX.Element` + +Defined in: [src/components/AddOn/AddOn.tsx:22](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/AddOn/AddOn.tsx#L22) + +The AddOn component is used to wrap children within a plugin container. +It also accepts additional properties (`extras` and `name`) to allow for +extensibility and custom naming. + +## Parameters + +### \_\_namedParameters + +`InterfaceAddOnProps` + +## Returns + +`JSX.Element` + +The JSX element representing the AddOn component. diff --git a/docs/docs/auto-docs/components/AddOn/core/AddOnEntry/AddOnEntry/README.md b/docs/docs/auto-docs/components/AddOn/core/AddOnEntry/AddOnEntry/README.md new file mode 100644 index 0000000000..66c7ecc60f --- /dev/null +++ b/docs/docs/auto-docs/components/AddOn/core/AddOnEntry/AddOnEntry/README.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../../../README.md) + +*** + +[talawa-admin](../../../../../modules.md) / components/AddOn/core/AddOnEntry/AddOnEntry + +# components/AddOn/core/AddOnEntry/AddOnEntry + +## Functions + +- [default](functions/default.md) diff --git a/docs/docs/auto-docs/components/AddOn/core/AddOnEntry/AddOnEntry/functions/default.md b/docs/docs/auto-docs/components/AddOn/core/AddOnEntry/AddOnEntry/functions/default.md new file mode 100644 index 0000000000..b3c7db8b70 --- /dev/null +++ b/docs/docs/auto-docs/components/AddOn/core/AddOnEntry/AddOnEntry/functions/default.md @@ -0,0 +1,43 @@ +[**talawa-admin**](../../../../../../README.md) + +*** + +[talawa-admin](../../../../../../modules.md) / [components/AddOn/core/AddOnEntry/AddOnEntry](../README.md) / default + +# Function: default() + +> **default**(`props`): `JSX.Element` + +Defined in: [src/components/AddOn/core/AddOnEntry/AddOnEntry.tsx:46](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/AddOn/core/AddOnEntry/AddOnEntry.tsx#L46) + +A React component that represents an add-on entry, displaying its details and allowing installation or uninstallation. + +## Parameters + +### props + +`InterfaceAddOnEntryProps` + +The properties for the component. + +## Returns + +`JSX.Element` + +A JSX element containing the add-on entry. + +## Example + +```tsx + {}} +/> +``` diff --git a/docs/docs/auto-docs/components/AddOn/core/AddOnEntry/AddOnEntryMocks/README.md b/docs/docs/auto-docs/components/AddOn/core/AddOnEntry/AddOnEntryMocks/README.md new file mode 100644 index 0000000000..04fe5af8f5 --- /dev/null +++ b/docs/docs/auto-docs/components/AddOn/core/AddOnEntry/AddOnEntryMocks/README.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../../../README.md) + +*** + +[talawa-admin](../../../../../modules.md) / components/AddOn/core/AddOnEntry/AddOnEntryMocks + +# components/AddOn/core/AddOnEntry/AddOnEntryMocks + +## Variables + +- [ADD\_ON\_ENTRY\_MOCK](variables/ADD_ON_ENTRY_MOCK.md) diff --git a/docs/docs/auto-docs/components/AddOn/core/AddOnEntry/AddOnEntryMocks/variables/ADD_ON_ENTRY_MOCK.md b/docs/docs/auto-docs/components/AddOn/core/AddOnEntry/AddOnEntryMocks/variables/ADD_ON_ENTRY_MOCK.md new file mode 100644 index 0000000000..7cf2c39d66 --- /dev/null +++ b/docs/docs/auto-docs/components/AddOn/core/AddOnEntry/AddOnEntryMocks/variables/ADD_ON_ENTRY_MOCK.md @@ -0,0 +1,65 @@ +[**talawa-admin**](../../../../../../README.md) + +*** + +[talawa-admin](../../../../../../modules.md) / [components/AddOn/core/AddOnEntry/AddOnEntryMocks](../README.md) / ADD\_ON\_ENTRY\_MOCK + +# Variable: ADD\_ON\_ENTRY\_MOCK + +> `const` **ADD\_ON\_ENTRY\_MOCK**: `object`[] + +Defined in: [src/components/AddOn/core/AddOnEntry/AddOnEntryMocks.ts:13](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/AddOn/core/AddOnEntry/AddOnEntryMocks.ts#L13) + +## Type declaration + +### request + +> **request**: `object` + +#### request.query + +> **query**: `DocumentNode` = `UPDATE_INSTALL_STATUS_PLUGIN_MUTATION` + +#### request.variables + +> **variables**: `object` + +#### request.variables.id + +> **id**: `string` = `'1'` + +#### request.variables.orgId + +> **orgId**: `string` = `'undefined'` + +### result + +> **result**: `object` + +#### result.data + +> **data**: `object` + +#### result.data.updatePluginStatus + +> **updatePluginStatus**: `object` = `updatePluginStatus` + +#### result.data.updatePluginStatus.\_id + +> **\_id**: `string` = `'123'` + +#### result.data.updatePluginStatus.pluginCreatedBy + +> **pluginCreatedBy**: `string` = `'John Doe'` + +#### result.data.updatePluginStatus.pluginDesc + +> **pluginDesc**: `string` = `'This is a sample plugin description.'` + +#### result.data.updatePluginStatus.pluginName + +> **pluginName**: `string` = `'Sample Plugin'` + +#### result.data.updatePluginStatus.uninstalledOrgs + +> **uninstalledOrgs**: `never`[] = `[]` diff --git a/docs/docs/auto-docs/components/AddOn/core/AddOnRegister/AddOnRegister/README.md b/docs/docs/auto-docs/components/AddOn/core/AddOnRegister/AddOnRegister/README.md new file mode 100644 index 0000000000..cf56d90951 --- /dev/null +++ b/docs/docs/auto-docs/components/AddOn/core/AddOnRegister/AddOnRegister/README.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../../../README.md) + +*** + +[talawa-admin](../../../../../modules.md) / components/AddOn/core/AddOnRegister/AddOnRegister + +# components/AddOn/core/AddOnRegister/AddOnRegister + +## Functions + +- [default](functions/default.md) diff --git a/docs/docs/auto-docs/components/AddOn/core/AddOnRegister/AddOnRegister/functions/default.md b/docs/docs/auto-docs/components/AddOn/core/AddOnRegister/AddOnRegister/functions/default.md new file mode 100644 index 0000000000..5c868759c2 --- /dev/null +++ b/docs/docs/auto-docs/components/AddOn/core/AddOnRegister/AddOnRegister/functions/default.md @@ -0,0 +1,32 @@ +[**talawa-admin**](../../../../../../README.md) + +*** + +[talawa-admin](../../../../../../modules.md) / [components/AddOn/core/AddOnRegister/AddOnRegister](../README.md) / default + +# Function: default() + +> **default**(`__namedParameters`): `JSX.Element` + +Defined in: [src/components/AddOn/core/AddOnRegister/AddOnRegister.tsx:38](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/AddOn/core/AddOnRegister/AddOnRegister.tsx#L38) + +A React component for registering a new add-on plugin. + +This component: +- Displays a button to open a modal for plugin registration. +- Contains a form in the modal for entering plugin details. +- Uses GraphQL mutation to register the plugin. +- Uses `react-i18next` for localization and `react-toastify` for notifications. +- Redirects to the organization list page if no `orgId` is found in the URL. + +## Parameters + +### \_\_namedParameters + +`InterfaceAddOnRegisterProps` + +## Returns + +`JSX.Element` + +A JSX element containing the button and modal for plugin registration. diff --git a/docs/docs/auto-docs/components/AddOn/core/AddOnStore/AddOnStore/README.md b/docs/docs/auto-docs/components/AddOn/core/AddOnStore/AddOnStore/README.md new file mode 100644 index 0000000000..bfbd8077d0 --- /dev/null +++ b/docs/docs/auto-docs/components/AddOn/core/AddOnStore/AddOnStore/README.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../../../README.md) + +*** + +[talawa-admin](../../../../../modules.md) / components/AddOn/core/AddOnStore/AddOnStore + +# components/AddOn/core/AddOnStore/AddOnStore + +## Functions + +- [default](functions/default.md) diff --git a/docs/docs/auto-docs/components/AddOn/core/AddOnStore/AddOnStore/functions/default.md b/docs/docs/auto-docs/components/AddOn/core/AddOnStore/AddOnStore/functions/default.md new file mode 100644 index 0000000000..d2177b6919 --- /dev/null +++ b/docs/docs/auto-docs/components/AddOn/core/AddOnStore/AddOnStore/functions/default.md @@ -0,0 +1,25 @@ +[**talawa-admin**](../../../../../../README.md) + +*** + +[talawa-admin](../../../../../../modules.md) / [components/AddOn/core/AddOnStore/AddOnStore](../README.md) / default + +# Function: default() + +> **default**(): `JSX.Element` + +Defined in: [src/components/AddOn/core/AddOnStore/AddOnStore.tsx:37](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/AddOn/core/AddOnStore/AddOnStore.tsx#L37) + +Component for managing and displaying plugins in the store. + +This component: +- Displays a search input and filter options. +- Uses tabs to switch between available and installed plugins. +- Fetches plugins from a GraphQL endpoint and filters them based on search criteria. +- Utilizes Redux store to manage plugin data. + +## Returns + +`JSX.Element` + +A JSX element containing the UI for the add-on store. diff --git a/docs/docs/auto-docs/components/AddOn/support/components/Action/Action/README.md b/docs/docs/auto-docs/components/AddOn/support/components/Action/Action/README.md new file mode 100644 index 0000000000..016a824d7f --- /dev/null +++ b/docs/docs/auto-docs/components/AddOn/support/components/Action/Action/README.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../../../../README.md) + +*** + +[talawa-admin](../../../../../../modules.md) / components/AddOn/support/components/Action/Action + +# components/AddOn/support/components/Action/Action + +## Functions + +- [default](functions/default.md) diff --git a/docs/docs/auto-docs/components/AddOn/support/components/Action/Action/functions/default.md b/docs/docs/auto-docs/components/AddOn/support/components/Action/Action/functions/default.md new file mode 100644 index 0000000000..4d1682c64d --- /dev/null +++ b/docs/docs/auto-docs/components/AddOn/support/components/Action/Action/functions/default.md @@ -0,0 +1,35 @@ +[**talawa-admin**](../../../../../../../README.md) + +*** + +[talawa-admin](../../../../../../../modules.md) / [components/AddOn/support/components/Action/Action](../README.md) / default + +# Function: default() + +> **default**(`props`): `JSX.Element` + +Defined in: [src/components/AddOn/support/components/Action/Action.tsx:29](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/AddOn/support/components/Action/Action.tsx#L29) + +A React component that renders a labeled container for embedded actions. + +## Parameters + +### props + +`InterfaceActionProps` + +The properties for the component. + +## Returns + +`JSX.Element` + +A JSX element containing the label and child elements. + +## Example + +```ts + + + +``` diff --git a/docs/docs/auto-docs/components/AddOn/support/components/MainContent/MainContent/README.md b/docs/docs/auto-docs/components/AddOn/support/components/MainContent/MainContent/README.md new file mode 100644 index 0000000000..96985c44dc --- /dev/null +++ b/docs/docs/auto-docs/components/AddOn/support/components/MainContent/MainContent/README.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../../../../README.md) + +*** + +[talawa-admin](../../../../../../modules.md) / components/AddOn/support/components/MainContent/MainContent + +# components/AddOn/support/components/MainContent/MainContent + +## Functions + +- [default](functions/default.md) diff --git a/docs/docs/auto-docs/components/AddOn/support/components/MainContent/MainContent/functions/default.md b/docs/docs/auto-docs/components/AddOn/support/components/MainContent/MainContent/functions/default.md new file mode 100644 index 0000000000..4b4ddbebdd --- /dev/null +++ b/docs/docs/auto-docs/components/AddOn/support/components/MainContent/MainContent/functions/default.md @@ -0,0 +1,35 @@ +[**talawa-admin**](../../../../../../../README.md) + +*** + +[talawa-admin](../../../../../../../modules.md) / [components/AddOn/support/components/MainContent/MainContent](../README.md) / default + +# Function: default() + +> **default**(`props`): `JSX.Element` + +Defined in: [src/components/AddOn/support/components/MainContent/MainContent.tsx:25](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/AddOn/support/components/MainContent/MainContent.tsx#L25) + +A React component that renders a main content container with additional styles. + +## Parameters + +### props + +`InterfaceMainContentProps` + +The properties for the component. + +## Returns + +`JSX.Element` + +A JSX element containing the main content container with the provided child elements. + +## Example + +```ts + +

Main content goes here

+
+``` diff --git a/docs/docs/auto-docs/components/AddOn/support/components/SidePanel/SidePanel/README.md b/docs/docs/auto-docs/components/AddOn/support/components/SidePanel/SidePanel/README.md new file mode 100644 index 0000000000..1280bc8469 --- /dev/null +++ b/docs/docs/auto-docs/components/AddOn/support/components/SidePanel/SidePanel/README.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../../../../README.md) + +*** + +[talawa-admin](../../../../../../modules.md) / components/AddOn/support/components/SidePanel/SidePanel + +# components/AddOn/support/components/SidePanel/SidePanel + +## Functions + +- [default](functions/default.md) diff --git a/docs/docs/auto-docs/components/AddOn/support/components/SidePanel/SidePanel/functions/default.md b/docs/docs/auto-docs/components/AddOn/support/components/SidePanel/SidePanel/functions/default.md new file mode 100644 index 0000000000..fff744c3f0 --- /dev/null +++ b/docs/docs/auto-docs/components/AddOn/support/components/SidePanel/SidePanel/functions/default.md @@ -0,0 +1,35 @@ +[**talawa-admin**](../../../../../../../README.md) + +*** + +[talawa-admin](../../../../../../../modules.md) / [components/AddOn/support/components/SidePanel/SidePanel](../README.md) / default + +# Function: default() + +> **default**(`props`): `JSX.Element` + +Defined in: [src/components/AddOn/support/components/SidePanel/SidePanel.tsx:30](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/AddOn/support/components/SidePanel/SidePanel.tsx#L30) + +A React component that renders a side panel with an optional collapse state. + +## Parameters + +### props + +`InterfaceSidePanelProps` + +The properties for the component. + +## Returns + +`JSX.Element` + +A JSX element containing the side panel with the provided child elements. + +## Example + +```ts + +

Side panel content

+
+``` diff --git a/docs/docs/auto-docs/components/AddOn/support/services/Plugin.helper/README.md b/docs/docs/auto-docs/components/AddOn/support/services/Plugin.helper/README.md new file mode 100644 index 0000000000..a0cb53abad --- /dev/null +++ b/docs/docs/auto-docs/components/AddOn/support/services/Plugin.helper/README.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../../../README.md) + +*** + +[talawa-admin](../../../../../modules.md) / components/AddOn/support/services/Plugin.helper + +# components/AddOn/support/services/Plugin.helper + +## Classes + +- [default](classes/default.md) diff --git a/docs/docs/auto-docs/components/AddOn/support/services/Plugin.helper/classes/default.md b/docs/docs/auto-docs/components/AddOn/support/services/Plugin.helper/classes/default.md new file mode 100644 index 0000000000..2796b1a5d1 --- /dev/null +++ b/docs/docs/auto-docs/components/AddOn/support/services/Plugin.helper/classes/default.md @@ -0,0 +1,77 @@ +[**talawa-admin**](../../../../../../README.md) + +*** + +[talawa-admin](../../../../../../modules.md) / [components/AddOn/support/services/Plugin.helper](../README.md) / default + +# Class: default + +Defined in: [src/components/AddOn/support/services/Plugin.helper.ts:5](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/AddOn/support/services/Plugin.helper.ts#L5) + +Helper class for managing plugin-related tasks such as fetching store data, installed plugins, and generating plugin links. + +## Constructors + +### new default() + +> **new default**(): [`default`](default.md) + +#### Returns + +[`default`](default.md) + +## Methods + +### fetchInstalled() + +> **fetchInstalled**(): `Promise`\<`any`\> + +Defined in: [src/components/AddOn/support/services/Plugin.helper.ts:21](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/AddOn/support/services/Plugin.helper.ts#L21) + +Fetches the list of installed plugins from a local server. + +#### Returns + +`Promise`\<`any`\> + +A promise that resolves to the installed plugins data in JSON format. + +*** + +### fetchStore() + +> **fetchStore**(): `Promise`\<`any`\> + +Defined in: [src/components/AddOn/support/services/Plugin.helper.ts:11](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/AddOn/support/services/Plugin.helper.ts#L11) + +Fetches the store data from a local server. + +#### Returns + +`Promise`\<`any`\> + +A promise that resolves to the store data in JSON format. + +*** + +### generateLinks() + +> **generateLinks**(`plugins`): `object`[] + +Defined in: [src/components/AddOn/support/services/Plugin.helper.ts:32](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/AddOn/support/services/Plugin.helper.ts#L32) + +Generates an array of links for the enabled plugins. + +#### Parameters + +##### plugins + +`any`[] + +An array of plugin objects. + +#### Returns + +`object`[] + +An array of objects containing the name and URL of each enabled plugin. diff --git a/docs/docs/auto-docs/components/AddOn/support/services/Render.helper/README.md b/docs/docs/auto-docs/components/AddOn/support/services/Render.helper/README.md new file mode 100644 index 0000000000..e6cace69dd --- /dev/null +++ b/docs/docs/auto-docs/components/AddOn/support/services/Render.helper/README.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../../../README.md) + +*** + +[talawa-admin](../../../../../modules.md) / components/AddOn/support/services/Render.helper + +# components/AddOn/support/services/Render.helper + +## Classes + +- [default](classes/default.md) diff --git a/docs/docs/auto-docs/components/AddOn/support/services/Render.helper/classes/default.md b/docs/docs/auto-docs/components/AddOn/support/services/Render.helper/classes/default.md new file mode 100644 index 0000000000..5cf16f6abf --- /dev/null +++ b/docs/docs/auto-docs/components/AddOn/support/services/Render.helper/classes/default.md @@ -0,0 +1,19 @@ +[**talawa-admin**](../../../../../../README.md) + +*** + +[talawa-admin](../../../../../../modules.md) / [components/AddOn/support/services/Render.helper](../README.md) / default + +# Class: default + +Defined in: [src/components/AddOn/support/services/Render.helper.ts:1](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/AddOn/support/services/Render.helper.ts#L1) + +## Constructors + +### new default() + +> **new default**(): [`default`](default.md) + +#### Returns + +[`default`](default.md) diff --git a/docs/docs/auto-docs/components/AddPeopleToTag/AddPeopleToTag/README.md b/docs/docs/auto-docs/components/AddPeopleToTag/AddPeopleToTag/README.md new file mode 100644 index 0000000000..1f8f9dcc9b --- /dev/null +++ b/docs/docs/auto-docs/components/AddPeopleToTag/AddPeopleToTag/README.md @@ -0,0 +1,15 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / components/AddPeopleToTag/AddPeopleToTag + +# components/AddPeopleToTag/AddPeopleToTag + +## Interfaces + +- [InterfaceAddPeopleToTagProps](interfaces/InterfaceAddPeopleToTagProps.md) + +## Functions + +- [default](functions/default.md) diff --git a/docs/docs/auto-docs/components/AddPeopleToTag/AddPeopleToTag/functions/default.md b/docs/docs/auto-docs/components/AddPeopleToTag/AddPeopleToTag/functions/default.md new file mode 100644 index 0000000000..2cd961985a --- /dev/null +++ b/docs/docs/auto-docs/components/AddPeopleToTag/AddPeopleToTag/functions/default.md @@ -0,0 +1,31 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [components/AddPeopleToTag/AddPeopleToTag](../README.md) / default + +# Function: default() + +> **default**(`props`, `deprecatedLegacyContext`?): `ReactNode` + +Defined in: [src/components/AddPeopleToTag/AddPeopleToTag.tsx:42](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/AddPeopleToTag/AddPeopleToTag.tsx#L42) + +## Parameters + +### props + +[`InterfaceAddPeopleToTagProps`](../interfaces/InterfaceAddPeopleToTagProps.md) + +### deprecatedLegacyContext? + +`any` + +**Deprecated** + +**See** + +[React Docs](https://legacy.reactjs.org/docs/legacy-context.html#referencing-context-in-lifecycle-methods) + +## Returns + +`ReactNode` diff --git a/docs/docs/auto-docs/components/AddPeopleToTag/AddPeopleToTag/interfaces/InterfaceAddPeopleToTagProps.md b/docs/docs/auto-docs/components/AddPeopleToTag/AddPeopleToTag/interfaces/InterfaceAddPeopleToTagProps.md new file mode 100644 index 0000000000..3f9d006931 --- /dev/null +++ b/docs/docs/auto-docs/components/AddPeopleToTag/AddPeopleToTag/interfaces/InterfaceAddPeopleToTagProps.md @@ -0,0 +1,59 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [components/AddPeopleToTag/AddPeopleToTag](../README.md) / InterfaceAddPeopleToTagProps + +# Interface: InterfaceAddPeopleToTagProps + +Defined in: [src/components/AddPeopleToTag/AddPeopleToTag.tsx:28](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/AddPeopleToTag/AddPeopleToTag.tsx#L28) + +Props for the `AddPeopleToTag` component. + +## Properties + +### addPeopleToTagModalIsOpen + +> **addPeopleToTagModalIsOpen**: `boolean` + +Defined in: [src/components/AddPeopleToTag/AddPeopleToTag.tsx:29](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/AddPeopleToTag/AddPeopleToTag.tsx#L29) + +*** + +### hideAddPeopleToTagModal() + +> **hideAddPeopleToTagModal**: () => `void` + +Defined in: [src/components/AddPeopleToTag/AddPeopleToTag.tsx:30](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/AddPeopleToTag/AddPeopleToTag.tsx#L30) + +#### Returns + +`void` + +*** + +### refetchAssignedMembersData() + +> **refetchAssignedMembersData**: () => `void` + +Defined in: [src/components/AddPeopleToTag/AddPeopleToTag.tsx:31](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/AddPeopleToTag/AddPeopleToTag.tsx#L31) + +#### Returns + +`void` + +*** + +### t + +> **t**: `TFunction`\<`"manageTag"`\> + +Defined in: [src/components/AddPeopleToTag/AddPeopleToTag.tsx:32](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/AddPeopleToTag/AddPeopleToTag.tsx#L32) + +*** + +### tCommon + +> **tCommon**: `TFunction`\<`"common"`\> + +Defined in: [src/components/AddPeopleToTag/AddPeopleToTag.tsx:33](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/AddPeopleToTag/AddPeopleToTag.tsx#L33) diff --git a/docs/docs/auto-docs/components/AddPeopleToTag/AddPeopleToTagsMocks/README.md b/docs/docs/auto-docs/components/AddPeopleToTag/AddPeopleToTagsMocks/README.md new file mode 100644 index 0000000000..fefcf7c92a --- /dev/null +++ b/docs/docs/auto-docs/components/AddPeopleToTag/AddPeopleToTagsMocks/README.md @@ -0,0 +1,12 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / components/AddPeopleToTag/AddPeopleToTagsMocks + +# components/AddPeopleToTag/AddPeopleToTagsMocks + +## Variables + +- [MOCKS](variables/MOCKS.md) +- [MOCKS\_ERROR](variables/MOCKS_ERROR.md) diff --git a/docs/docs/auto-docs/components/AddPeopleToTag/AddPeopleToTagsMocks/variables/MOCKS.md b/docs/docs/auto-docs/components/AddPeopleToTag/AddPeopleToTagsMocks/variables/MOCKS.md new file mode 100644 index 0000000000..3642e12577 --- /dev/null +++ b/docs/docs/auto-docs/components/AddPeopleToTag/AddPeopleToTagsMocks/variables/MOCKS.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [components/AddPeopleToTag/AddPeopleToTagsMocks](../README.md) / MOCKS + +# Variable: MOCKS + +> `const` **MOCKS**: (\{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `after`: `undefined`; `first`: `number`; `id`: `string`; `tagId`: `undefined`; `userIds`: `undefined`; `where`: \{ `firstName`: \{ `starts_with`: `string`; \}; `lastName`: \{ `starts_with`: `string`; \}; \}; \}; \}; `result`: \{ `data`: \{ `addPeopleToUserTag`: `undefined`; `getUsersToAssignTo`: \{ `name`: `string`; `usersToAssignTo`: \{ `edges`: `object`[]; `pageInfo`: \{ `endCursor`: `string`; `hasNextPage`: `boolean`; `hasPreviousPage`: `boolean`; `startCursor`: `string`; \}; `totalCount`: `number`; \}; \}; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `after`: `string`; `first`: `number`; `id`: `string`; `tagId`: `undefined`; `userIds`: `undefined`; `where`: \{ `firstName`: \{ `starts_with`: `string`; \}; `lastName`: \{ `starts_with`: `string`; \}; \}; \}; \}; `result`: \{ `data`: \{ `addPeopleToUserTag`: `undefined`; `getUsersToAssignTo`: \{ `name`: `string`; `usersToAssignTo`: \{ `edges`: `object`[]; `pageInfo`: \{ `endCursor`: `string`; `hasNextPage`: `boolean`; `hasPreviousPage`: `boolean`; `startCursor`: `string`; \}; `totalCount`: `number`; \}; \}; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `after`: `undefined`; `first`: `undefined`; `id`: `undefined`; `tagId`: `string`; `userIds`: `string`[]; `where`: `undefined`; \}; \}; `result`: \{ `data`: \{ `addPeopleToUserTag`: \{ `_id`: `string`; \}; `getUsersToAssignTo`: `undefined`; \}; \}; \})[] + +Defined in: [src/components/AddPeopleToTag/AddPeopleToTagsMocks.ts:5](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/AddPeopleToTag/AddPeopleToTagsMocks.ts#L5) diff --git a/docs/docs/auto-docs/components/AddPeopleToTag/AddPeopleToTagsMocks/variables/MOCKS_ERROR.md b/docs/docs/auto-docs/components/AddPeopleToTag/AddPeopleToTagsMocks/variables/MOCKS_ERROR.md new file mode 100644 index 0000000000..ff854009dd --- /dev/null +++ b/docs/docs/auto-docs/components/AddPeopleToTag/AddPeopleToTagsMocks/variables/MOCKS_ERROR.md @@ -0,0 +1,57 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [components/AddPeopleToTag/AddPeopleToTagsMocks](../README.md) / MOCKS\_ERROR + +# Variable: MOCKS\_ERROR + +> `const` **MOCKS\_ERROR**: `object`[] + +Defined in: [src/components/AddPeopleToTag/AddPeopleToTagsMocks.ts:277](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/AddPeopleToTag/AddPeopleToTagsMocks.ts#L277) + +## Type declaration + +### error + +> **error**: `Error` + +### request + +> **request**: `object` + +#### request.query + +> **query**: `DocumentNode` = `USER_TAGS_MEMBERS_TO_ASSIGN_TO` + +#### request.variables + +> **variables**: `object` + +#### request.variables.first + +> **first**: `number` = `TAGS_QUERY_DATA_CHUNK_SIZE` + +#### request.variables.id + +> **id**: `string` = `'1'` + +#### request.variables.where + +> **where**: `object` + +#### request.variables.where.firstName + +> **firstName**: `object` + +#### request.variables.where.firstName.starts\_with + +> **starts\_with**: `string` = `''` + +#### request.variables.where.lastName + +> **lastName**: `object` + +#### request.variables.where.lastName.starts\_with + +> **starts\_with**: `string` = `''` diff --git a/docs/docs/auto-docs/components/Advertisements/Advertisements/README.md b/docs/docs/auto-docs/components/Advertisements/Advertisements/README.md new file mode 100644 index 0000000000..a80e38ea71 --- /dev/null +++ b/docs/docs/auto-docs/components/Advertisements/Advertisements/README.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / components/Advertisements/Advertisements + +# components/Advertisements/Advertisements + +## Functions + +- [default](functions/default.md) diff --git a/docs/docs/auto-docs/components/Advertisements/Advertisements/functions/default.md b/docs/docs/auto-docs/components/Advertisements/Advertisements/functions/default.md new file mode 100644 index 0000000000..b7acf2e80d --- /dev/null +++ b/docs/docs/auto-docs/components/Advertisements/Advertisements/functions/default.md @@ -0,0 +1,15 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [components/Advertisements/Advertisements](../README.md) / default + +# Function: default() + +> **default**(): `JSX.Element` + +Defined in: [src/components/Advertisements/Advertisements.tsx:14](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/Advertisements/Advertisements.tsx#L14) + +## Returns + +`JSX.Element` diff --git a/docs/docs/auto-docs/components/Advertisements/core/AdvertisementEntry/AdvertisementEntry/README.md b/docs/docs/auto-docs/components/Advertisements/core/AdvertisementEntry/AdvertisementEntry/README.md new file mode 100644 index 0000000000..14277b3d34 --- /dev/null +++ b/docs/docs/auto-docs/components/Advertisements/core/AdvertisementEntry/AdvertisementEntry/README.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../../../README.md) + +*** + +[talawa-admin](../../../../../modules.md) / components/Advertisements/core/AdvertisementEntry/AdvertisementEntry + +# components/Advertisements/core/AdvertisementEntry/AdvertisementEntry + +## Functions + +- [default](functions/default.md) diff --git a/docs/docs/auto-docs/components/Advertisements/core/AdvertisementEntry/AdvertisementEntry/functions/default.md b/docs/docs/auto-docs/components/Advertisements/core/AdvertisementEntry/AdvertisementEntry/functions/default.md new file mode 100644 index 0000000000..23e01c6d0f --- /dev/null +++ b/docs/docs/auto-docs/components/Advertisements/core/AdvertisementEntry/AdvertisementEntry/functions/default.md @@ -0,0 +1,28 @@ +[**talawa-admin**](../../../../../../README.md) + +*** + +[talawa-admin](../../../../../../modules.md) / [components/Advertisements/core/AdvertisementEntry/AdvertisementEntry](../README.md) / default + +# Function: default() + +> **default**(`props`): `JSX.Element` + +Defined in: [src/components/Advertisements/core/AdvertisementEntry/AdvertisementEntry.tsx:31](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/Advertisements/core/AdvertisementEntry/AdvertisementEntry.tsx#L31) + +Component for displaying an advertisement entry. +Allows viewing, editing, and deleting of the advertisement. + +## Parameters + +### props + +`InterfaceAddOnEntryProps` + +Component properties + +## Returns + +`JSX.Element` + +The rendered component diff --git a/docs/docs/auto-docs/components/Advertisements/core/AdvertisementRegister/AdvertisementRegister/README.md b/docs/docs/auto-docs/components/Advertisements/core/AdvertisementRegister/AdvertisementRegister/README.md new file mode 100644 index 0000000000..c4b017d6ef --- /dev/null +++ b/docs/docs/auto-docs/components/Advertisements/core/AdvertisementRegister/AdvertisementRegister/README.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../../../README.md) + +*** + +[talawa-admin](../../../../../modules.md) / components/Advertisements/core/AdvertisementRegister/AdvertisementRegister + +# components/Advertisements/core/AdvertisementRegister/AdvertisementRegister + +## Functions + +- [default](functions/default.md) diff --git a/docs/docs/auto-docs/components/Advertisements/core/AdvertisementRegister/AdvertisementRegister/functions/default.md b/docs/docs/auto-docs/components/Advertisements/core/AdvertisementRegister/AdvertisementRegister/functions/default.md new file mode 100644 index 0000000000..3af42e3b8e --- /dev/null +++ b/docs/docs/auto-docs/components/Advertisements/core/AdvertisementRegister/AdvertisementRegister/functions/default.md @@ -0,0 +1,36 @@ +[**talawa-admin**](../../../../../../README.md) + +*** + +[talawa-admin](../../../../../../modules.md) / [components/Advertisements/core/AdvertisementRegister/AdvertisementRegister](../README.md) / default + +# Function: default() + +> **default**(`props`): `JSX.Element` + +Defined in: [src/components/Advertisements/core/AdvertisementRegister/AdvertisementRegister.tsx:60](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/Advertisements/core/AdvertisementRegister/AdvertisementRegister.tsx#L60) + +Component for registering or editing an advertisement. + +## Parameters + +### props + +`InterfaceAddOnRegisterProps` + +Contains form status, advertisement details, and a function to update parent state. + +## Returns + +`JSX.Element` + +A JSX element that renders a form inside a modal for creating or editing an advertisement. + +## Example + +```tsx + console.log(value)} +/> +``` diff --git a/docs/docs/auto-docs/components/AgendaCategory/AgendaCategoryContainer/README.md b/docs/docs/auto-docs/components/AgendaCategory/AgendaCategoryContainer/README.md new file mode 100644 index 0000000000..cefa1a1fe2 --- /dev/null +++ b/docs/docs/auto-docs/components/AgendaCategory/AgendaCategoryContainer/README.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / components/AgendaCategory/AgendaCategoryContainer + +# components/AgendaCategory/AgendaCategoryContainer + +## Functions + +- [default](functions/default.md) diff --git a/docs/docs/auto-docs/components/AgendaCategory/AgendaCategoryContainer/functions/default.md b/docs/docs/auto-docs/components/AgendaCategory/AgendaCategoryContainer/functions/default.md new file mode 100644 index 0000000000..3c48de87a9 --- /dev/null +++ b/docs/docs/auto-docs/components/AgendaCategory/AgendaCategoryContainer/functions/default.md @@ -0,0 +1,47 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [components/AgendaCategory/AgendaCategoryContainer](../README.md) / default + +# Function: default() + +> **default**(`props`): `JSX.Element` + +Defined in: [src/components/AgendaCategory/AgendaCategoryContainer.tsx:34](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/AgendaCategory/AgendaCategoryContainer.tsx#L34) + +Component for displaying and managing agenda item categories. + +## Parameters + +### props + +Contains agenda category data and functions for data management. + +#### agendaCategoryConnection + +`"Organization"` + +#### agendaCategoryData + +`undefined` \| [`InterfaceAgendaItemCategoryInfo`](../../../../utils/interfaces/interfaces/InterfaceAgendaItemCategoryInfo.md)[] + +#### agendaCategoryRefetch + +() => `void` + +## Returns + +`JSX.Element` + +A JSX element that renders agenda item categories with options to preview, edit, and delete. + +## Example + +```tsx + +``` diff --git a/docs/docs/auto-docs/components/AgendaCategory/AgendaCategoryContainerMocks/README.md b/docs/docs/auto-docs/components/AgendaCategory/AgendaCategoryContainerMocks/README.md new file mode 100644 index 0000000000..e655973093 --- /dev/null +++ b/docs/docs/auto-docs/components/AgendaCategory/AgendaCategoryContainerMocks/README.md @@ -0,0 +1,12 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / components/AgendaCategory/AgendaCategoryContainerMocks + +# components/AgendaCategory/AgendaCategoryContainerMocks + +## Variables + +- [MOCKS](variables/MOCKS.md) +- [MOCKS\_ERROR\_MUTATIONS](variables/MOCKS_ERROR_MUTATIONS.md) diff --git a/docs/docs/auto-docs/components/AgendaCategory/AgendaCategoryContainerMocks/variables/MOCKS.md b/docs/docs/auto-docs/components/AgendaCategory/AgendaCategoryContainerMocks/variables/MOCKS.md new file mode 100644 index 0000000000..0d195e027f --- /dev/null +++ b/docs/docs/auto-docs/components/AgendaCategory/AgendaCategoryContainerMocks/variables/MOCKS.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [components/AgendaCategory/AgendaCategoryContainerMocks](../README.md) / MOCKS + +# Variable: MOCKS + +> `const` **MOCKS**: (\{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `deleteAgendaCategoryId`: `undefined`; `input`: \{ `description`: `string`; `name`: `string`; \}; `updateAgendaCategoryId`: `string`; \}; \}; `result`: \{ `data`: \{ `deleteAgendaCategory`: `undefined`; `updateAgendaCategory`: \{ `_id`: `string`; \}; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `deleteAgendaCategoryId`: `string`; `input`: `undefined`; `updateAgendaCategoryId`: `undefined`; \}; \}; `result`: \{ `data`: \{ `deleteAgendaCategory`: \{ `_id`: `string`; \}; `updateAgendaCategory`: `undefined`; \}; \}; \})[] + +Defined in: [src/components/AgendaCategory/AgendaCategoryContainerMocks.ts:6](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/AgendaCategory/AgendaCategoryContainerMocks.ts#L6) diff --git a/docs/docs/auto-docs/components/AgendaCategory/AgendaCategoryContainerMocks/variables/MOCKS_ERROR_MUTATIONS.md b/docs/docs/auto-docs/components/AgendaCategory/AgendaCategoryContainerMocks/variables/MOCKS_ERROR_MUTATIONS.md new file mode 100644 index 0000000000..4288ed00db --- /dev/null +++ b/docs/docs/auto-docs/components/AgendaCategory/AgendaCategoryContainerMocks/variables/MOCKS_ERROR_MUTATIONS.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [components/AgendaCategory/AgendaCategoryContainerMocks](../README.md) / MOCKS\_ERROR\_MUTATIONS + +# Variable: MOCKS\_ERROR\_MUTATIONS + +> `const` **MOCKS\_ERROR\_MUTATIONS**: (\{ `error`: `Error`; `request`: \{ `query`: `DocumentNode`; `variables`: \{ `deleteAgendaCategoryId`: `undefined`; `input`: \{ `description`: `string`; `name`: `string`; \}; `updateAgendaCategoryId`: `string`; \}; \}; \} \| \{ `error`: `Error`; `request`: \{ `query`: `DocumentNode`; `variables`: \{ `deleteAgendaCategoryId`: `string`; `input`: `undefined`; `updateAgendaCategoryId`: `undefined`; \}; \}; \})[] + +Defined in: [src/components/AgendaCategory/AgendaCategoryContainerMocks.ts:81](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/AgendaCategory/AgendaCategoryContainerMocks.ts#L81) diff --git a/docs/docs/auto-docs/components/AgendaCategory/AgendaCategoryContainerProps/README.md b/docs/docs/auto-docs/components/AgendaCategory/AgendaCategoryContainerProps/README.md new file mode 100644 index 0000000000..5162a0870f --- /dev/null +++ b/docs/docs/auto-docs/components/AgendaCategory/AgendaCategoryContainerProps/README.md @@ -0,0 +1,12 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / components/AgendaCategory/AgendaCategoryContainerProps + +# components/AgendaCategory/AgendaCategoryContainerProps + +## Variables + +- [props](variables/props.md) +- [props2](variables/props2.md) diff --git a/docs/docs/auto-docs/components/AgendaCategory/AgendaCategoryContainerProps/variables/props.md b/docs/docs/auto-docs/components/AgendaCategory/AgendaCategoryContainerProps/variables/props.md new file mode 100644 index 0000000000..ca54596207 --- /dev/null +++ b/docs/docs/auto-docs/components/AgendaCategory/AgendaCategoryContainerProps/variables/props.md @@ -0,0 +1,25 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [components/AgendaCategory/AgendaCategoryContainerProps](../README.md) / props + +# Variable: props + +> `const` **props**: `object` + +Defined in: [src/components/AgendaCategory/AgendaCategoryContainerProps.ts:4](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/AgendaCategory/AgendaCategoryContainerProps.ts#L4) + +## Type declaration + +### agendaCategoryConnection + +> **agendaCategoryConnection**: `"Organization"` + +### agendaCategoryData + +> **agendaCategoryData**: `object`[] + +### agendaCategoryRefetch + +> **agendaCategoryRefetch**: `Mock` diff --git a/docs/docs/auto-docs/components/AgendaCategory/AgendaCategoryContainerProps/variables/props2.md b/docs/docs/auto-docs/components/AgendaCategory/AgendaCategoryContainerProps/variables/props2.md new file mode 100644 index 0000000000..ede70b966e --- /dev/null +++ b/docs/docs/auto-docs/components/AgendaCategory/AgendaCategoryContainerProps/variables/props2.md @@ -0,0 +1,25 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [components/AgendaCategory/AgendaCategoryContainerProps](../README.md) / props2 + +# Variable: props2 + +> `const` **props2**: `object` + +Defined in: [src/components/AgendaCategory/AgendaCategoryContainerProps.ts:31](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/AgendaCategory/AgendaCategoryContainerProps.ts#L31) + +## Type declaration + +### agendaCategoryConnection + +> **agendaCategoryConnection**: `"Organization"` + +### agendaCategoryData + +> **agendaCategoryData**: `never`[] = `[]` + +### agendaCategoryRefetch + +> **agendaCategoryRefetch**: `Mock` diff --git a/docs/docs/auto-docs/components/AgendaItems/AgendaItemsContainer/README.md b/docs/docs/auto-docs/components/AgendaItems/AgendaItemsContainer/README.md new file mode 100644 index 0000000000..7ac39feddc --- /dev/null +++ b/docs/docs/auto-docs/components/AgendaItems/AgendaItemsContainer/README.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / components/AgendaItems/AgendaItemsContainer + +# components/AgendaItems/AgendaItemsContainer + +## Functions + +- [default](functions/default.md) diff --git a/docs/docs/auto-docs/components/AgendaItems/AgendaItemsContainer/functions/default.md b/docs/docs/auto-docs/components/AgendaItems/AgendaItemsContainer/functions/default.md new file mode 100644 index 0000000000..49c2130859 --- /dev/null +++ b/docs/docs/auto-docs/components/AgendaItems/AgendaItemsContainer/functions/default.md @@ -0,0 +1,43 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [components/AgendaItems/AgendaItemsContainer](../README.md) / default + +# Function: default() + +> **default**(`props`): `JSX.Element` + +Defined in: [src/components/AgendaItems/AgendaItemsContainer.tsx:32](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/AgendaItems/AgendaItemsContainer.tsx#L32) + +Component for displaying and managing agenda items. +Supports drag-and-drop functionality, and includes modals for previewing, +updating, and deleting agenda items. + +## Parameters + +### props + +The props for the component. + +#### agendaItemCategories + +`undefined` \| [`InterfaceAgendaItemCategoryInfo`](../../../../utils/interfaces/interfaces/InterfaceAgendaItemCategoryInfo.md)[] + +#### agendaItemConnection + +`"Event"` + +#### agendaItemData + +`undefined` \| [`InterfaceAgendaItemInfo`](../../../../utils/interfaces/interfaces/InterfaceAgendaItemInfo.md)[] + +#### agendaItemRefetch + +() => `void` + +## Returns + +`JSX.Element` + +JSX.Element diff --git a/docs/docs/auto-docs/components/AgendaItems/AgendaItemsContainerMocks/README.md b/docs/docs/auto-docs/components/AgendaItems/AgendaItemsContainerMocks/README.md new file mode 100644 index 0000000000..5922fb87b2 --- /dev/null +++ b/docs/docs/auto-docs/components/AgendaItems/AgendaItemsContainerMocks/README.md @@ -0,0 +1,12 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / components/AgendaItems/AgendaItemsContainerMocks + +# components/AgendaItems/AgendaItemsContainerMocks + +## Variables + +- [MOCKS](variables/MOCKS.md) +- [MOCKS\_ERROR](variables/MOCKS_ERROR.md) diff --git a/docs/docs/auto-docs/components/AgendaItems/AgendaItemsContainerMocks/variables/MOCKS.md b/docs/docs/auto-docs/components/AgendaItems/AgendaItemsContainerMocks/variables/MOCKS.md new file mode 100644 index 0000000000..0a8e70531c --- /dev/null +++ b/docs/docs/auto-docs/components/AgendaItems/AgendaItemsContainerMocks/variables/MOCKS.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [components/AgendaItems/AgendaItemsContainerMocks](../README.md) / MOCKS + +# Variable: MOCKS + +> `const` **MOCKS**: (\{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `input`: \{ `description`: `string`; `title`: `string`; \}; `removeAgendaItemId`: `undefined`; `updateAgendaItemId`: `string`; \}; \}; `result`: \{ `data`: \{ `removeAgendaItem`: `undefined`; `updateAgendaItem`: \{ `_id`: `string`; \}; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `input`: `undefined`; `removeAgendaItemId`: `string`; `updateAgendaItemId`: `undefined`; \}; \}; `result`: \{ `data`: \{ `removeAgendaItem`: \{ `_id`: `string`; \}; `updateAgendaItem`: `undefined`; \}; \}; \})[] + +Defined in: [src/components/AgendaItems/AgendaItemsContainerMocks.ts:6](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/AgendaItems/AgendaItemsContainerMocks.ts#L6) diff --git a/docs/docs/auto-docs/components/AgendaItems/AgendaItemsContainerMocks/variables/MOCKS_ERROR.md b/docs/docs/auto-docs/components/AgendaItems/AgendaItemsContainerMocks/variables/MOCKS_ERROR.md new file mode 100644 index 0000000000..926a4ef896 --- /dev/null +++ b/docs/docs/auto-docs/components/AgendaItems/AgendaItemsContainerMocks/variables/MOCKS_ERROR.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [components/AgendaItems/AgendaItemsContainerMocks](../README.md) / MOCKS\_ERROR + +# Variable: MOCKS\_ERROR + +> `const` **MOCKS\_ERROR**: (\{ `error`: `Error`; `request`: \{ `query`: `DocumentNode`; `variables`: \{ `input`: \{ `description`: `string`; `title`: `string`; \}; `removeAgendaItemId`: `undefined`; `updateAgendaItemId`: `string`; \}; \}; \} \| \{ `error`: `Error`; `request`: \{ `query`: `DocumentNode`; `variables`: \{ `input`: `undefined`; `removeAgendaItemId`: `string`; `updateAgendaItemId`: `undefined`; \}; \}; \})[] + +Defined in: [src/components/AgendaItems/AgendaItemsContainerMocks.ts:96](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/AgendaItems/AgendaItemsContainerMocks.ts#L96) diff --git a/docs/docs/auto-docs/components/AgendaItems/AgendaItemsContainerProps/README.md b/docs/docs/auto-docs/components/AgendaItems/AgendaItemsContainerProps/README.md new file mode 100644 index 0000000000..c8fed11bb8 --- /dev/null +++ b/docs/docs/auto-docs/components/AgendaItems/AgendaItemsContainerProps/README.md @@ -0,0 +1,12 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / components/AgendaItems/AgendaItemsContainerProps + +# components/AgendaItems/AgendaItemsContainerProps + +## Variables + +- [props](variables/props.md) +- [props2](variables/props2.md) diff --git a/docs/docs/auto-docs/components/AgendaItems/AgendaItemsContainerProps/variables/props.md b/docs/docs/auto-docs/components/AgendaItems/AgendaItemsContainerProps/variables/props.md new file mode 100644 index 0000000000..b2e3c4b0ed --- /dev/null +++ b/docs/docs/auto-docs/components/AgendaItems/AgendaItemsContainerProps/variables/props.md @@ -0,0 +1,29 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [components/AgendaItems/AgendaItemsContainerProps](../README.md) / props + +# Variable: props + +> `const` **props**: `object` + +Defined in: [src/components/AgendaItems/AgendaItemsContainerProps.ts:4](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/AgendaItems/AgendaItemsContainerProps.ts#L4) + +## Type declaration + +### agendaItemCategories + +> **agendaItemCategories**: `object`[] + +### agendaItemConnection + +> **agendaItemConnection**: `"Event"` + +### agendaItemData + +> **agendaItemData**: `object`[] + +### agendaItemRefetch + +> **agendaItemRefetch**: `Mock` diff --git a/docs/docs/auto-docs/components/AgendaItems/AgendaItemsContainerProps/variables/props2.md b/docs/docs/auto-docs/components/AgendaItems/AgendaItemsContainerProps/variables/props2.md new file mode 100644 index 0000000000..2dcd3c4936 --- /dev/null +++ b/docs/docs/auto-docs/components/AgendaItems/AgendaItemsContainerProps/variables/props2.md @@ -0,0 +1,29 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [components/AgendaItems/AgendaItemsContainerProps](../README.md) / props2 + +# Variable: props2 + +> `const` **props2**: `object` + +Defined in: [src/components/AgendaItems/AgendaItemsContainerProps.ts:97](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/AgendaItems/AgendaItemsContainerProps.ts#L97) + +## Type declaration + +### agendaItemCategories + +> **agendaItemCategories**: `never`[] = `[]` + +### agendaItemConnection + +> **agendaItemConnection**: `"Event"` + +### agendaItemData + +> **agendaItemData**: `never`[] = `[]` + +### agendaItemRefetch + +> **agendaItemRefetch**: `Mock` diff --git a/docs/docs/auto-docs/components/AgendaItems/AgendaItemsCreateModal/README.md b/docs/docs/auto-docs/components/AgendaItems/AgendaItemsCreateModal/README.md new file mode 100644 index 0000000000..af532f7ea5 --- /dev/null +++ b/docs/docs/auto-docs/components/AgendaItems/AgendaItemsCreateModal/README.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / components/AgendaItems/AgendaItemsCreateModal + +# components/AgendaItems/AgendaItemsCreateModal + +## Functions + +- [default](functions/default.md) diff --git a/docs/docs/auto-docs/components/AgendaItems/AgendaItemsCreateModal/functions/default.md b/docs/docs/auto-docs/components/AgendaItems/AgendaItemsCreateModal/functions/default.md new file mode 100644 index 0000000000..1023e000da --- /dev/null +++ b/docs/docs/auto-docs/components/AgendaItems/AgendaItemsCreateModal/functions/default.md @@ -0,0 +1,34 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [components/AgendaItems/AgendaItemsCreateModal](../README.md) / default + +# Function: default() + +> **default**(`props`, `deprecatedLegacyContext`?): `ReactNode` + +Defined in: [src/components/AgendaItems/AgendaItemsCreateModal.tsx:43](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/AgendaItems/AgendaItemsCreateModal.tsx#L43) + +Component for creating a new agenda item. +Displays a modal form where users can input details for a new agenda item, including title, description, duration, categories, URLs, and attachments. + +## Parameters + +### props + +`InterfaceAgendaItemsCreateModalProps` + +### deprecatedLegacyContext? + +`any` + +**Deprecated** + +**See** + +[React Docs](https://legacy.reactjs.org/docs/legacy-context.html#referencing-context-in-lifecycle-methods) + +## Returns + +`ReactNode` diff --git a/docs/docs/auto-docs/components/AgendaItems/AgendaItemsDeleteModal/README.md b/docs/docs/auto-docs/components/AgendaItems/AgendaItemsDeleteModal/README.md new file mode 100644 index 0000000000..e4cf4d5114 --- /dev/null +++ b/docs/docs/auto-docs/components/AgendaItems/AgendaItemsDeleteModal/README.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / components/AgendaItems/AgendaItemsDeleteModal + +# components/AgendaItems/AgendaItemsDeleteModal + +## Functions + +- [default](functions/default.md) diff --git a/docs/docs/auto-docs/components/AgendaItems/AgendaItemsDeleteModal/functions/default.md b/docs/docs/auto-docs/components/AgendaItems/AgendaItemsDeleteModal/functions/default.md new file mode 100644 index 0000000000..8b3247067d --- /dev/null +++ b/docs/docs/auto-docs/components/AgendaItems/AgendaItemsDeleteModal/functions/default.md @@ -0,0 +1,34 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [components/AgendaItems/AgendaItemsDeleteModal](../README.md) / default + +# Function: default() + +> **default**(`props`, `deprecatedLegacyContext`?): `ReactNode` + +Defined in: [src/components/AgendaItems/AgendaItemsDeleteModal.tsx:23](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/AgendaItems/AgendaItemsDeleteModal.tsx#L23) + +Modal component for confirming the deletion of an agenda item. +Displays a confirmation dialog when a user attempts to delete an agenda item. + +## Parameters + +### props + +`InterfaceAgendaItemsDeleteModalProps` + +### deprecatedLegacyContext? + +`any` + +**Deprecated** + +**See** + +[React Docs](https://legacy.reactjs.org/docs/legacy-context.html#referencing-context-in-lifecycle-methods) + +## Returns + +`ReactNode` diff --git a/docs/docs/auto-docs/components/AgendaItems/AgendaItemsPreviewModal/README.md b/docs/docs/auto-docs/components/AgendaItems/AgendaItemsPreviewModal/README.md new file mode 100644 index 0000000000..83e0e2b11d --- /dev/null +++ b/docs/docs/auto-docs/components/AgendaItems/AgendaItemsPreviewModal/README.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / components/AgendaItems/AgendaItemsPreviewModal + +# components/AgendaItems/AgendaItemsPreviewModal + +## Functions + +- [default](functions/default.md) diff --git a/docs/docs/auto-docs/components/AgendaItems/AgendaItemsPreviewModal/functions/default.md b/docs/docs/auto-docs/components/AgendaItems/AgendaItemsPreviewModal/functions/default.md new file mode 100644 index 0000000000..f6a6ff13b7 --- /dev/null +++ b/docs/docs/auto-docs/components/AgendaItems/AgendaItemsPreviewModal/functions/default.md @@ -0,0 +1,35 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [components/AgendaItems/AgendaItemsPreviewModal](../README.md) / default + +# Function: default() + +> **default**(`props`, `deprecatedLegacyContext`?): `ReactNode` + +Defined in: [src/components/AgendaItems/AgendaItemsPreviewModal.tsx:41](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/AgendaItems/AgendaItemsPreviewModal.tsx#L41) + +Modal component for previewing details of an agenda item. +Displays the details of the selected agenda item, including its categories, title, description, duration, creator, URLs, and attachments. +Also provides options to update or delete the agenda item. + +## Parameters + +### props + +`InterfaceAgendaItemsPreviewModalProps` + +### deprecatedLegacyContext? + +`any` + +**Deprecated** + +**See** + +[React Docs](https://legacy.reactjs.org/docs/legacy-context.html#referencing-context-in-lifecycle-methods) + +## Returns + +`ReactNode` diff --git a/docs/docs/auto-docs/components/AgendaItems/AgendaItemsUpdateModal/README.md b/docs/docs/auto-docs/components/AgendaItems/AgendaItemsUpdateModal/README.md new file mode 100644 index 0000000000..08535ac0bc --- /dev/null +++ b/docs/docs/auto-docs/components/AgendaItems/AgendaItemsUpdateModal/README.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / components/AgendaItems/AgendaItemsUpdateModal + +# components/AgendaItems/AgendaItemsUpdateModal + +## Functions + +- [default](functions/default.md) diff --git a/docs/docs/auto-docs/components/AgendaItems/AgendaItemsUpdateModal/functions/default.md b/docs/docs/auto-docs/components/AgendaItems/AgendaItemsUpdateModal/functions/default.md new file mode 100644 index 0000000000..996bbc599b --- /dev/null +++ b/docs/docs/auto-docs/components/AgendaItems/AgendaItemsUpdateModal/functions/default.md @@ -0,0 +1,35 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [components/AgendaItems/AgendaItemsUpdateModal](../README.md) / default + +# Function: default() + +> **default**(`props`, `deprecatedLegacyContext`?): `ReactNode` + +Defined in: [src/components/AgendaItems/AgendaItemsUpdateModal.tsx:49](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/AgendaItems/AgendaItemsUpdateModal.tsx#L49) + +Modal component for updating details of an agenda item. +Provides a form to update the agenda item's title, description, duration, categories, URLs, and attachments. +Also includes functionality to add, remove URLs and attachments. + +## Parameters + +### props + +`InterfaceAgendaItemsUpdateModalProps` + +### deprecatedLegacyContext? + +`any` + +**Deprecated** + +**See** + +[React Docs](https://legacy.reactjs.org/docs/legacy-context.html#referencing-context-in-lifecycle-methods) + +## Returns + +`ReactNode` diff --git a/docs/docs/auto-docs/components/Avatar/Avatar/README.md b/docs/docs/auto-docs/components/Avatar/Avatar/README.md new file mode 100644 index 0000000000..9cdcde35ad --- /dev/null +++ b/docs/docs/auto-docs/components/Avatar/Avatar/README.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / components/Avatar/Avatar + +# components/Avatar/Avatar + +## Functions + +- [default](functions/default.md) diff --git a/docs/docs/auto-docs/components/Avatar/Avatar/functions/default.md b/docs/docs/auto-docs/components/Avatar/Avatar/functions/default.md new file mode 100644 index 0000000000..c5bfe7d6eb --- /dev/null +++ b/docs/docs/auto-docs/components/Avatar/Avatar/functions/default.md @@ -0,0 +1,26 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [components/Avatar/Avatar](../README.md) / default + +# Function: default() + +> **default**(`__namedParameters`): `Element` + +Defined in: [src/components/Avatar/Avatar.tsx:29](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/Avatar/Avatar.tsx#L29) + +A component that generates and displays an avatar based on the provided name. +The avatar is generated using the DiceBear library with the initials style. + +## Parameters + +### \_\_namedParameters + +`InterfaceAvatarProps` + +## Returns + +`Element` + +JSX.Element - The rendered avatar image component. diff --git a/docs/docs/auto-docs/components/ChangeLanguageDropdown/ChangeLanguageDropDown/README.md b/docs/docs/auto-docs/components/ChangeLanguageDropdown/ChangeLanguageDropDown/README.md new file mode 100644 index 0000000000..fb7e82ebb4 --- /dev/null +++ b/docs/docs/auto-docs/components/ChangeLanguageDropdown/ChangeLanguageDropDown/README.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / components/ChangeLanguageDropdown/ChangeLanguageDropDown + +# components/ChangeLanguageDropdown/ChangeLanguageDropDown + +## Functions + +- [default](functions/default.md) diff --git a/docs/docs/auto-docs/components/ChangeLanguageDropdown/ChangeLanguageDropDown/functions/default.md b/docs/docs/auto-docs/components/ChangeLanguageDropdown/ChangeLanguageDropDown/functions/default.md new file mode 100644 index 0000000000..cab36fed1c --- /dev/null +++ b/docs/docs/auto-docs/components/ChangeLanguageDropdown/ChangeLanguageDropDown/functions/default.md @@ -0,0 +1,28 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [components/ChangeLanguageDropdown/ChangeLanguageDropDown](../README.md) / default + +# Function: default() + +> **default**(`props`): `Element` + +Defined in: [src/components/ChangeLanguageDropdown/ChangeLanguageDropDown.tsx:29](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/ChangeLanguageDropdown/ChangeLanguageDropDown.tsx#L29) + +A dropdown component that allows users to change the application's language. +It updates the user's language preference in the backend and stores the selection in cookies. + +## Parameters + +### props + +`InterfaceChangeLanguageDropDownProps` + +The properties for customizing the dropdown component. + +## Returns + +`Element` + +JSX.Element - The rendered dropdown component for changing languages. diff --git a/docs/docs/auto-docs/components/CheckIn/CheckInModal/README.md b/docs/docs/auto-docs/components/CheckIn/CheckInModal/README.md new file mode 100644 index 0000000000..93e35d3191 --- /dev/null +++ b/docs/docs/auto-docs/components/CheckIn/CheckInModal/README.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / components/CheckIn/CheckInModal + +# components/CheckIn/CheckInModal + +## Functions + +- [CheckInModal](functions/CheckInModal.md) diff --git a/docs/docs/auto-docs/components/CheckIn/CheckInModal/functions/CheckInModal.md b/docs/docs/auto-docs/components/CheckIn/CheckInModal/functions/CheckInModal.md new file mode 100644 index 0000000000..55b47eb4a7 --- /dev/null +++ b/docs/docs/auto-docs/components/CheckIn/CheckInModal/functions/CheckInModal.md @@ -0,0 +1,26 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [components/CheckIn/CheckInModal](../README.md) / CheckInModal + +# Function: CheckInModal() + +> **CheckInModal**(`__namedParameters`): `Element` + +Defined in: [src/components/CheckIn/CheckInModal.tsx:26](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/CheckIn/CheckInModal.tsx#L26) + +Modal component for managing event check-ins. Displays a list of attendees +and their check-in statuses, allowing for filtering by user name. + +## Parameters + +### \_\_namedParameters + +[`InterfaceModalProp`](../../types/interfaces/InterfaceModalProp.md) + +## Returns + +`Element` + +JSX.Element - The rendered modal component. diff --git a/docs/docs/auto-docs/components/CheckIn/CheckInWrapper/README.md b/docs/docs/auto-docs/components/CheckIn/CheckInWrapper/README.md new file mode 100644 index 0000000000..47606eb0df --- /dev/null +++ b/docs/docs/auto-docs/components/CheckIn/CheckInWrapper/README.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / components/CheckIn/CheckInWrapper + +# components/CheckIn/CheckInWrapper + +## Functions + +- [CheckInWrapper](functions/CheckInWrapper.md) diff --git a/docs/docs/auto-docs/components/CheckIn/CheckInWrapper/functions/CheckInWrapper.md b/docs/docs/auto-docs/components/CheckIn/CheckInWrapper/functions/CheckInWrapper.md new file mode 100644 index 0000000000..3baa8a75a9 --- /dev/null +++ b/docs/docs/auto-docs/components/CheckIn/CheckInWrapper/functions/CheckInWrapper.md @@ -0,0 +1,27 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [components/CheckIn/CheckInWrapper](../README.md) / CheckInWrapper + +# Function: CheckInWrapper() + +> **CheckInWrapper**(`eventId`): `Element` + +Defined in: [src/components/CheckIn/CheckInWrapper.tsx:17](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/CheckIn/CheckInWrapper.tsx#L17) + +Wrapper component that displays a button to open the CheckInModal. + +## Parameters + +### eventId + +`PropType` + +The ID of the event for which check-in management is being handled. + +## Returns + +`Element` + +JSX.Element - The rendered CheckInWrapper component. diff --git a/docs/docs/auto-docs/components/CheckIn/TableRow/README.md b/docs/docs/auto-docs/components/CheckIn/TableRow/README.md new file mode 100644 index 0000000000..d603432368 --- /dev/null +++ b/docs/docs/auto-docs/components/CheckIn/TableRow/README.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / components/CheckIn/TableRow + +# components/CheckIn/TableRow + +## Functions + +- [TableRow](functions/TableRow.md) diff --git a/docs/docs/auto-docs/components/CheckIn/TableRow/functions/TableRow.md b/docs/docs/auto-docs/components/CheckIn/TableRow/functions/TableRow.md new file mode 100644 index 0000000000..f98c7a8968 --- /dev/null +++ b/docs/docs/auto-docs/components/CheckIn/TableRow/functions/TableRow.md @@ -0,0 +1,32 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [components/CheckIn/TableRow](../README.md) / TableRow + +# Function: TableRow() + +> **TableRow**(`__namedParameters`): `Element` + +Defined in: [src/components/CheckIn/TableRow.tsx:19](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/CheckIn/TableRow.tsx#L19) + +Component that represents a single row in the check-in table. +Allows users to mark themselves as checked in and download a tag if they are already checked in. + +## Parameters + +### \_\_namedParameters + +#### data + +[`InterfaceTableCheckIn`](../../types/interfaces/InterfaceTableCheckIn.md) + +#### refetch + +() => `void` + +## Returns + +`Element` + +JSX.Element - The rendered TableRow component. diff --git a/docs/docs/auto-docs/components/CheckIn/mocks/README.md b/docs/docs/auto-docs/components/CheckIn/mocks/README.md new file mode 100644 index 0000000000..9173908595 --- /dev/null +++ b/docs/docs/auto-docs/components/CheckIn/mocks/README.md @@ -0,0 +1,13 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / components/CheckIn/mocks + +# components/CheckIn/mocks + +## Variables + +- [checkInMutationSuccess](variables/checkInMutationSuccess.md) +- [checkInMutationUnsuccess](variables/checkInMutationUnsuccess.md) +- [checkInQueryMock](variables/checkInQueryMock.md) diff --git a/docs/docs/auto-docs/components/CheckIn/mocks/variables/checkInMutationSuccess.md b/docs/docs/auto-docs/components/CheckIn/mocks/variables/checkInMutationSuccess.md new file mode 100644 index 0000000000..040b2275e4 --- /dev/null +++ b/docs/docs/auto-docs/components/CheckIn/mocks/variables/checkInMutationSuccess.md @@ -0,0 +1,49 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [components/CheckIn/mocks](../README.md) / checkInMutationSuccess + +# Variable: checkInMutationSuccess + +> `const` **checkInMutationSuccess**: `object`[] + +Defined in: [src/components/CheckIn/mocks.ts:46](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/CheckIn/mocks.ts#L46) + +## Type declaration + +### request + +> **request**: `object` + +#### request.query + +> **query**: `DocumentNode` = `MARK_CHECKIN` + +#### request.variables + +> **variables**: `object` + +#### request.variables.eventId + +> **eventId**: `string` = `'event123'` + +#### request.variables.userId + +> **userId**: `string` = `'user123'` + +### result + +> **result**: `object` + +#### result.data + +> **data**: `object` + +#### result.data.checkIn + +> **checkIn**: `object` + +#### result.data.checkIn.\_id + +> **\_id**: `string` = `'123'` diff --git a/docs/docs/auto-docs/components/CheckIn/mocks/variables/checkInMutationUnsuccess.md b/docs/docs/auto-docs/components/CheckIn/mocks/variables/checkInMutationUnsuccess.md new file mode 100644 index 0000000000..df4af4b925 --- /dev/null +++ b/docs/docs/auto-docs/components/CheckIn/mocks/variables/checkInMutationUnsuccess.md @@ -0,0 +1,37 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [components/CheckIn/mocks](../README.md) / checkInMutationUnsuccess + +# Variable: checkInMutationUnsuccess + +> `const` **checkInMutationUnsuccess**: `object`[] + +Defined in: [src/components/CheckIn/mocks.ts:65](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/CheckIn/mocks.ts#L65) + +## Type declaration + +### error + +> **error**: `Error` + +### request + +> **request**: `object` + +#### request.query + +> **query**: `DocumentNode` = `MARK_CHECKIN` + +#### request.variables + +> **variables**: `object` + +#### request.variables.eventId + +> **eventId**: `string` = `'event123'` + +#### request.variables.userId + +> **userId**: `string` = `'user123'` diff --git a/docs/docs/auto-docs/components/CheckIn/mocks/variables/checkInQueryMock.md b/docs/docs/auto-docs/components/CheckIn/mocks/variables/checkInQueryMock.md new file mode 100644 index 0000000000..8aeb7cfba2 --- /dev/null +++ b/docs/docs/auto-docs/components/CheckIn/mocks/variables/checkInQueryMock.md @@ -0,0 +1,37 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [components/CheckIn/mocks](../README.md) / checkInQueryMock + +# Variable: checkInQueryMock + +> `const` **checkInQueryMock**: `object`[] + +Defined in: [src/components/CheckIn/mocks.ts:34](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/CheckIn/mocks.ts#L34) + +## Type declaration + +### request + +> **request**: `object` + +#### request.query + +> **query**: `DocumentNode` = `EVENT_CHECKINS` + +#### request.variables + +> **variables**: `object` + +#### request.variables.id + +> **id**: `string` = `'event123'` + +### result + +> **result**: `object` + +#### result.data + +> **data**: [`InterfaceAttendeeQueryResponse`](../../types/interfaces/InterfaceAttendeeQueryResponse.md) = `checkInQueryData` diff --git a/docs/docs/auto-docs/components/CheckIn/tagTemplate/README.md b/docs/docs/auto-docs/components/CheckIn/tagTemplate/README.md new file mode 100644 index 0000000000..fdb4f3533e --- /dev/null +++ b/docs/docs/auto-docs/components/CheckIn/tagTemplate/README.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / components/CheckIn/tagTemplate + +# components/CheckIn/tagTemplate + +## Variables + +- [tagTemplate](variables/tagTemplate.md) diff --git a/docs/docs/auto-docs/components/CheckIn/tagTemplate/variables/tagTemplate.md b/docs/docs/auto-docs/components/CheckIn/tagTemplate/variables/tagTemplate.md new file mode 100644 index 0000000000..edd5dc663a --- /dev/null +++ b/docs/docs/auto-docs/components/CheckIn/tagTemplate/variables/tagTemplate.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [components/CheckIn/tagTemplate](../README.md) / tagTemplate + +# Variable: tagTemplate + +> `const` **tagTemplate**: `Template` + +Defined in: [src/components/CheckIn/tagTemplate.ts:4](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/CheckIn/tagTemplate.ts#L4) diff --git a/docs/docs/auto-docs/components/CheckIn/types/README.md b/docs/docs/auto-docs/components/CheckIn/types/README.md new file mode 100644 index 0000000000..1750d4df6e --- /dev/null +++ b/docs/docs/auto-docs/components/CheckIn/types/README.md @@ -0,0 +1,16 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / components/CheckIn/types + +# components/CheckIn/types + +## Interfaces + +- [InterfaceAttendeeCheckIn](interfaces/InterfaceAttendeeCheckIn.md) +- [InterfaceAttendeeQueryResponse](interfaces/InterfaceAttendeeQueryResponse.md) +- [InterfaceModalProp](interfaces/InterfaceModalProp.md) +- [InterfaceTableCheckIn](interfaces/InterfaceTableCheckIn.md) +- [InterfaceTableData](interfaces/InterfaceTableData.md) +- [InterfaceUser](interfaces/InterfaceUser.md) diff --git a/docs/docs/auto-docs/components/CheckIn/types/interfaces/InterfaceAttendeeCheckIn.md b/docs/docs/auto-docs/components/CheckIn/types/interfaces/InterfaceAttendeeCheckIn.md new file mode 100644 index 0000000000..7f950df6e9 --- /dev/null +++ b/docs/docs/auto-docs/components/CheckIn/types/interfaces/InterfaceAttendeeCheckIn.md @@ -0,0 +1,33 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [components/CheckIn/types](../README.md) / InterfaceAttendeeCheckIn + +# Interface: InterfaceAttendeeCheckIn + +Defined in: [src/components/CheckIn/types.ts:7](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/CheckIn/types.ts#L7) + +## Properties + +### \_id + +> **\_id**: `string` + +Defined in: [src/components/CheckIn/types.ts:8](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/CheckIn/types.ts#L8) + +*** + +### checkIn + +> **checkIn**: `null` \| \{ `_id`: `string`; `time`: `string`; \} + +Defined in: [src/components/CheckIn/types.ts:10](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/CheckIn/types.ts#L10) + +*** + +### user + +> **user**: [`InterfaceUser`](InterfaceUser.md) + +Defined in: [src/components/CheckIn/types.ts:9](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/CheckIn/types.ts#L9) diff --git a/docs/docs/auto-docs/components/CheckIn/types/interfaces/InterfaceAttendeeQueryResponse.md b/docs/docs/auto-docs/components/CheckIn/types/interfaces/InterfaceAttendeeQueryResponse.md new file mode 100644 index 0000000000..2ca9345e5b --- /dev/null +++ b/docs/docs/auto-docs/components/CheckIn/types/interfaces/InterfaceAttendeeQueryResponse.md @@ -0,0 +1,25 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [components/CheckIn/types](../README.md) / InterfaceAttendeeQueryResponse + +# Interface: InterfaceAttendeeQueryResponse + +Defined in: [src/components/CheckIn/types.ts:16](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/CheckIn/types.ts#L16) + +## Properties + +### event + +> **event**: `object` + +Defined in: [src/components/CheckIn/types.ts:17](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/CheckIn/types.ts#L17) + +#### \_id + +> **\_id**: `string` + +#### attendeesCheckInStatus + +> **attendeesCheckInStatus**: [`InterfaceAttendeeCheckIn`](InterfaceAttendeeCheckIn.md)[] diff --git a/docs/docs/auto-docs/components/CheckIn/types/interfaces/InterfaceModalProp.md b/docs/docs/auto-docs/components/CheckIn/types/interfaces/InterfaceModalProp.md new file mode 100644 index 0000000000..899b65d168 --- /dev/null +++ b/docs/docs/auto-docs/components/CheckIn/types/interfaces/InterfaceModalProp.md @@ -0,0 +1,37 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [components/CheckIn/types](../README.md) / InterfaceModalProp + +# Interface: InterfaceModalProp + +Defined in: [src/components/CheckIn/types.ts:23](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/CheckIn/types.ts#L23) + +## Properties + +### eventId + +> **eventId**: `string` + +Defined in: [src/components/CheckIn/types.ts:25](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/CheckIn/types.ts#L25) + +*** + +### handleClose() + +> **handleClose**: () => `void` + +Defined in: [src/components/CheckIn/types.ts:26](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/CheckIn/types.ts#L26) + +#### Returns + +`void` + +*** + +### show + +> **show**: `boolean` + +Defined in: [src/components/CheckIn/types.ts:24](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/CheckIn/types.ts#L24) diff --git a/docs/docs/auto-docs/components/CheckIn/types/interfaces/InterfaceTableCheckIn.md b/docs/docs/auto-docs/components/CheckIn/types/interfaces/InterfaceTableCheckIn.md new file mode 100644 index 0000000000..eeefcb9029 --- /dev/null +++ b/docs/docs/auto-docs/components/CheckIn/types/interfaces/InterfaceTableCheckIn.md @@ -0,0 +1,49 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [components/CheckIn/types](../README.md) / InterfaceTableCheckIn + +# Interface: InterfaceTableCheckIn + +Defined in: [src/components/CheckIn/types.ts:29](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/CheckIn/types.ts#L29) + +## Properties + +### checkIn + +> **checkIn**: `null` \| \{ `_id`: `string`; `time`: `string`; \} + +Defined in: [src/components/CheckIn/types.ts:33](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/CheckIn/types.ts#L33) + +*** + +### eventId + +> **eventId**: `string` + +Defined in: [src/components/CheckIn/types.ts:37](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/CheckIn/types.ts#L37) + +*** + +### id + +> **id**: `string` + +Defined in: [src/components/CheckIn/types.ts:30](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/CheckIn/types.ts#L30) + +*** + +### name + +> **name**: `string` + +Defined in: [src/components/CheckIn/types.ts:31](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/CheckIn/types.ts#L31) + +*** + +### userId + +> **userId**: `string` + +Defined in: [src/components/CheckIn/types.ts:32](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/CheckIn/types.ts#L32) diff --git a/docs/docs/auto-docs/components/CheckIn/types/interfaces/InterfaceTableData.md b/docs/docs/auto-docs/components/CheckIn/types/interfaces/InterfaceTableData.md new file mode 100644 index 0000000000..e64c0d8a84 --- /dev/null +++ b/docs/docs/auto-docs/components/CheckIn/types/interfaces/InterfaceTableData.md @@ -0,0 +1,33 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [components/CheckIn/types](../README.md) / InterfaceTableData + +# Interface: InterfaceTableData + +Defined in: [src/components/CheckIn/types.ts:40](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/CheckIn/types.ts#L40) + +## Properties + +### checkInData + +> **checkInData**: [`InterfaceTableCheckIn`](InterfaceTableCheckIn.md) + +Defined in: [src/components/CheckIn/types.ts:43](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/CheckIn/types.ts#L43) + +*** + +### id + +> **id**: `string` + +Defined in: [src/components/CheckIn/types.ts:42](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/CheckIn/types.ts#L42) + +*** + +### userName + +> **userName**: `string` + +Defined in: [src/components/CheckIn/types.ts:41](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/CheckIn/types.ts#L41) diff --git a/docs/docs/auto-docs/components/CheckIn/types/interfaces/InterfaceUser.md b/docs/docs/auto-docs/components/CheckIn/types/interfaces/InterfaceUser.md new file mode 100644 index 0000000000..a894a4bbc0 --- /dev/null +++ b/docs/docs/auto-docs/components/CheckIn/types/interfaces/InterfaceUser.md @@ -0,0 +1,33 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [components/CheckIn/types](../README.md) / InterfaceUser + +# Interface: InterfaceUser + +Defined in: [src/components/CheckIn/types.ts:1](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/CheckIn/types.ts#L1) + +## Properties + +### \_id + +> **\_id**: `string` + +Defined in: [src/components/CheckIn/types.ts:2](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/CheckIn/types.ts#L2) + +*** + +### firstName + +> **firstName**: `string` + +Defined in: [src/components/CheckIn/types.ts:3](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/CheckIn/types.ts#L3) + +*** + +### lastName + +> **lastName**: `string` + +Defined in: [src/components/CheckIn/types.ts:4](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/CheckIn/types.ts#L4) diff --git a/docs/docs/auto-docs/components/CollapsibleDropdown/CollapsibleDropdown/README.md b/docs/docs/auto-docs/components/CollapsibleDropdown/CollapsibleDropdown/README.md new file mode 100644 index 0000000000..d79ea7e55b --- /dev/null +++ b/docs/docs/auto-docs/components/CollapsibleDropdown/CollapsibleDropdown/README.md @@ -0,0 +1,15 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / components/CollapsibleDropdown/CollapsibleDropdown + +# components/CollapsibleDropdown/CollapsibleDropdown + +## Interfaces + +- [InterfaceCollapsibleDropdown](interfaces/InterfaceCollapsibleDropdown.md) + +## Functions + +- [default](functions/default.md) diff --git a/docs/docs/auto-docs/components/CollapsibleDropdown/CollapsibleDropdown/functions/default.md b/docs/docs/auto-docs/components/CollapsibleDropdown/CollapsibleDropdown/functions/default.md new file mode 100644 index 0000000000..4307ee9050 --- /dev/null +++ b/docs/docs/auto-docs/components/CollapsibleDropdown/CollapsibleDropdown/functions/default.md @@ -0,0 +1,25 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [components/CollapsibleDropdown/CollapsibleDropdown](../README.md) / default + +# Function: default() + +> **default**(`__namedParameters`): `Element` + +Defined in: [src/components/CollapsibleDropdown/CollapsibleDropdown.tsx:24](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/CollapsibleDropdown/CollapsibleDropdown.tsx#L24) + +A collapsible dropdown component that toggles visibility of sub-targets. + +## Parameters + +### \_\_namedParameters + +[`InterfaceCollapsibleDropdown`](../interfaces/InterfaceCollapsibleDropdown.md) + +## Returns + +`Element` + +JSX.Element - The rendered CollapsibleDropdown component. diff --git a/docs/docs/auto-docs/components/CollapsibleDropdown/CollapsibleDropdown/interfaces/InterfaceCollapsibleDropdown.md b/docs/docs/auto-docs/components/CollapsibleDropdown/CollapsibleDropdown/interfaces/InterfaceCollapsibleDropdown.md new file mode 100644 index 0000000000..200ce000df --- /dev/null +++ b/docs/docs/auto-docs/components/CollapsibleDropdown/CollapsibleDropdown/interfaces/InterfaceCollapsibleDropdown.md @@ -0,0 +1,33 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [components/CollapsibleDropdown/CollapsibleDropdown](../README.md) / InterfaceCollapsibleDropdown + +# Interface: InterfaceCollapsibleDropdown + +Defined in: [src/components/CollapsibleDropdown/CollapsibleDropdown.tsx:9](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/CollapsibleDropdown/CollapsibleDropdown.tsx#L9) + +## Properties + +### setShowDropdown + +> **setShowDropdown**: `Dispatch`\<`SetStateAction`\<`boolean`\>\> + +Defined in: [src/components/CollapsibleDropdown/CollapsibleDropdown.tsx:12](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/CollapsibleDropdown/CollapsibleDropdown.tsx#L12) + +*** + +### showDropdown + +> **showDropdown**: `boolean` + +Defined in: [src/components/CollapsibleDropdown/CollapsibleDropdown.tsx:10](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/CollapsibleDropdown/CollapsibleDropdown.tsx#L10) + +*** + +### target + +> **target**: [`TargetsType`](../../../../state/reducers/routesReducer/type-aliases/TargetsType.md) + +Defined in: [src/components/CollapsibleDropdown/CollapsibleDropdown.tsx:11](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/CollapsibleDropdown/CollapsibleDropdown.tsx#L11) diff --git a/docs/docs/auto-docs/components/ContriStats/ContriStats/README.md b/docs/docs/auto-docs/components/ContriStats/ContriStats/README.md new file mode 100644 index 0000000000..587df84c24 --- /dev/null +++ b/docs/docs/auto-docs/components/ContriStats/ContriStats/README.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / components/ContriStats/ContriStats + +# components/ContriStats/ContriStats + +## Functions + +- [default](functions/default.md) diff --git a/docs/docs/auto-docs/components/ContriStats/ContriStats/functions/default.md b/docs/docs/auto-docs/components/ContriStats/ContriStats/functions/default.md new file mode 100644 index 0000000000..c4d6434254 --- /dev/null +++ b/docs/docs/auto-docs/components/ContriStats/ContriStats/functions/default.md @@ -0,0 +1,25 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [components/ContriStats/ContriStats](../README.md) / default + +# Function: default() + +> **default**(`__namedParameters`): `JSX.Element` + +Defined in: [src/components/ContriStats/ContriStats.tsx:22](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/ContriStats/ContriStats.tsx#L22) + +A component that displays contribution statistics. + +## Parameters + +### \_\_namedParameters + +`InterfaceContriStatsProps` + +## Returns + +`JSX.Element` + +JSX.Element - The rendered component displaying the contribution stats. diff --git a/docs/docs/auto-docs/components/CurrentHourIndicator/CurrentHourIndicator/README.md b/docs/docs/auto-docs/components/CurrentHourIndicator/CurrentHourIndicator/README.md new file mode 100644 index 0000000000..f48317f2f1 --- /dev/null +++ b/docs/docs/auto-docs/components/CurrentHourIndicator/CurrentHourIndicator/README.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / components/CurrentHourIndicator/CurrentHourIndicator + +# components/CurrentHourIndicator/CurrentHourIndicator + +## Functions + +- [default](functions/default.md) diff --git a/docs/docs/auto-docs/components/CurrentHourIndicator/CurrentHourIndicator/functions/default.md b/docs/docs/auto-docs/components/CurrentHourIndicator/CurrentHourIndicator/functions/default.md new file mode 100644 index 0000000000..f80c9e251a --- /dev/null +++ b/docs/docs/auto-docs/components/CurrentHourIndicator/CurrentHourIndicator/functions/default.md @@ -0,0 +1,19 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [components/CurrentHourIndicator/CurrentHourIndicator](../README.md) / default + +# Function: default() + +> **default**(): `Element` + +Defined in: [src/components/CurrentHourIndicator/CurrentHourIndicator.tsx:9](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/CurrentHourIndicator/CurrentHourIndicator.tsx#L9) + +A component that displays an indicator for the current hour. + +## Returns + +`Element` + +JSX.Element - The rendered component showing the current hour indicator. diff --git a/docs/docs/auto-docs/components/DynamicDropDown/DynamicDropDown/README.md b/docs/docs/auto-docs/components/DynamicDropDown/DynamicDropDown/README.md new file mode 100644 index 0000000000..d1af600000 --- /dev/null +++ b/docs/docs/auto-docs/components/DynamicDropDown/DynamicDropDown/README.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / components/DynamicDropDown/DynamicDropDown + +# components/DynamicDropDown/DynamicDropDown + +## Functions + +- [default](functions/default.md) diff --git a/docs/docs/auto-docs/components/DynamicDropDown/DynamicDropDown/functions/default.md b/docs/docs/auto-docs/components/DynamicDropDown/DynamicDropDown/functions/default.md new file mode 100644 index 0000000000..c2e3c26c5a --- /dev/null +++ b/docs/docs/auto-docs/components/DynamicDropDown/DynamicDropDown/functions/default.md @@ -0,0 +1,32 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [components/DynamicDropDown/DynamicDropDown](../README.md) / default + +# Function: default() + +> **default**\<`T`\>(`__namedParameters`): `Element` + +Defined in: [src/components/DynamicDropDown/DynamicDropDown.tsx:34](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/DynamicDropDown/DynamicDropDown.tsx#L34) + +A dynamic dropdown component that allows users to select an option. + +This component renders a dropdown with a toggle button. Clicking the button +opens a menu with options. When an option is selected, it updates the form state. + +## Type Parameters + +• **T** *extends* `Record`\<`string`, `unknown`\> + +## Parameters + +### \_\_namedParameters + +`InterfaceChangeDropDownProps`\<`T`\> + +## Returns + +`Element` + +JSX.Element - The rendered dropdown component. diff --git a/docs/docs/auto-docs/components/EditCustomFieldDropDown/EditCustomFieldDropDown/README.md b/docs/docs/auto-docs/components/EditCustomFieldDropDown/EditCustomFieldDropDown/README.md new file mode 100644 index 0000000000..045ad51fde --- /dev/null +++ b/docs/docs/auto-docs/components/EditCustomFieldDropDown/EditCustomFieldDropDown/README.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / components/EditCustomFieldDropDown/EditCustomFieldDropDown + +# components/EditCustomFieldDropDown/EditCustomFieldDropDown + +## Functions + +- [default](functions/default.md) diff --git a/docs/docs/auto-docs/components/EditCustomFieldDropDown/EditCustomFieldDropDown/functions/default.md b/docs/docs/auto-docs/components/EditCustomFieldDropDown/EditCustomFieldDropDown/functions/default.md new file mode 100644 index 0000000000..ebb919095d --- /dev/null +++ b/docs/docs/auto-docs/components/EditCustomFieldDropDown/EditCustomFieldDropDown/functions/default.md @@ -0,0 +1,29 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [components/EditCustomFieldDropDown/EditCustomFieldDropDown](../README.md) / default + +# Function: default() + +> **default**(`__namedParameters`): `Element` + +Defined in: [src/components/EditCustomFieldDropDown/EditCustomFieldDropDown.tsx:33](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/EditCustomFieldDropDown/EditCustomFieldDropDown.tsx#L33) + +A dropdown component for editing custom field types. + +This component displays a dropdown menu that allows users to select a custom field type. +It shows the current type of the field and provides a list of available types to choose from. +When a new type is selected, it updates the custom field data. + +## Parameters + +### \_\_namedParameters + +`InterfaceEditCustomFieldDropDownProps` + +## Returns + +`Element` + +JSX.Element - The rendered dropdown component. diff --git a/docs/docs/auto-docs/components/EventCalendar/EventCalendar/README.md b/docs/docs/auto-docs/components/EventCalendar/EventCalendar/README.md new file mode 100644 index 0000000000..1472b8295d --- /dev/null +++ b/docs/docs/auto-docs/components/EventCalendar/EventCalendar/README.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / components/EventCalendar/EventCalendar + +# components/EventCalendar/EventCalendar + +## Functions + +- [default](functions/default.md) diff --git a/docs/docs/auto-docs/components/EventCalendar/EventCalendar/functions/default.md b/docs/docs/auto-docs/components/EventCalendar/EventCalendar/functions/default.md new file mode 100644 index 0000000000..5b532ca97f --- /dev/null +++ b/docs/docs/auto-docs/components/EventCalendar/EventCalendar/functions/default.md @@ -0,0 +1,31 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [components/EventCalendar/EventCalendar](../README.md) / default + +# Function: default() + +> **default**(`props`, `deprecatedLegacyContext`?): `ReactNode` + +Defined in: [src/components/EventCalendar/EventCalendar.tsx:58](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/EventCalendar/EventCalendar.tsx#L58) + +## Parameters + +### props + +`InterfaceCalendarProps` + +### deprecatedLegacyContext? + +`any` + +**Deprecated** + +**See** + +[React Docs](https://legacy.reactjs.org/docs/legacy-context.html#referencing-context-in-lifecycle-methods) + +## Returns + +`ReactNode` diff --git a/docs/docs/auto-docs/components/EventCalendar/EventHeader/README.md b/docs/docs/auto-docs/components/EventCalendar/EventHeader/README.md new file mode 100644 index 0000000000..61eb1fc8da --- /dev/null +++ b/docs/docs/auto-docs/components/EventCalendar/EventHeader/README.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / components/EventCalendar/EventHeader + +# components/EventCalendar/EventHeader + +## Functions + +- [default](functions/default.md) diff --git a/docs/docs/auto-docs/components/EventCalendar/EventHeader/functions/default.md b/docs/docs/auto-docs/components/EventCalendar/EventHeader/functions/default.md new file mode 100644 index 0000000000..8fc3c1a306 --- /dev/null +++ b/docs/docs/auto-docs/components/EventCalendar/EventHeader/functions/default.md @@ -0,0 +1,26 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [components/EventCalendar/EventHeader](../README.md) / default + +# Function: default() + +> **default**(`__namedParameters`): `JSX.Element` + +Defined in: [src/components/EventCalendar/EventHeader.tsx:27](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/EventCalendar/EventHeader.tsx#L27) + +EventHeader component displays the header for the event calendar. +It includes a search field, view type dropdown, event type dropdown, and a button to create an event. + +## Parameters + +### \_\_namedParameters + +`InterfaceEventHeaderProps` + +## Returns + +`JSX.Element` + +JSX.Element - The rendered EventHeader component. diff --git a/docs/docs/auto-docs/components/EventCalendar/YearlyEventCalender/README.md b/docs/docs/auto-docs/components/EventCalendar/YearlyEventCalender/README.md new file mode 100644 index 0000000000..c7eb5d8b30 --- /dev/null +++ b/docs/docs/auto-docs/components/EventCalendar/YearlyEventCalender/README.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / components/EventCalendar/YearlyEventCalender + +# components/EventCalendar/YearlyEventCalender + +## Functions + +- [default](functions/default.md) diff --git a/docs/docs/auto-docs/components/EventCalendar/YearlyEventCalender/functions/default.md b/docs/docs/auto-docs/components/EventCalendar/YearlyEventCalender/functions/default.md new file mode 100644 index 0000000000..afb7aca407 --- /dev/null +++ b/docs/docs/auto-docs/components/EventCalendar/YearlyEventCalender/functions/default.md @@ -0,0 +1,38 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [components/EventCalendar/YearlyEventCalender](../README.md) / default + +# Function: default() + +> **default**(`props`, `deprecatedLegacyContext`?): `ReactNode` + +Defined in: [src/components/EventCalendar/YearlyEventCalender.tsx:95](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/EventCalendar/YearlyEventCalender.tsx#L95) + +Calendar component to display events for a selected year. + +This component renders a yearly calendar with navigation to view previous and next years. +It displays events for each day, with functionality to expand and view details of events. + +## Parameters + +### props + +`InterfaceCalendarProps` + +### deprecatedLegacyContext? + +`any` + +**Deprecated** + +**See** + +[React Docs](https://legacy.reactjs.org/docs/legacy-context.html#referencing-context-in-lifecycle-methods) + +## Returns + +`ReactNode` + +JSX.Element - The rendered calendar component. diff --git a/docs/docs/auto-docs/components/EventCalendar/constants/README.md b/docs/docs/auto-docs/components/EventCalendar/constants/README.md new file mode 100644 index 0000000000..0cc41207b0 --- /dev/null +++ b/docs/docs/auto-docs/components/EventCalendar/constants/README.md @@ -0,0 +1,14 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / components/EventCalendar/constants + +# components/EventCalendar/constants + +## Variables + +- [holidays](variables/holidays.md) +- [hours](variables/hours.md) +- [months](variables/months.md) +- [weekdays](variables/weekdays.md) diff --git a/docs/docs/auto-docs/components/EventCalendar/constants/variables/holidays.md b/docs/docs/auto-docs/components/EventCalendar/constants/variables/holidays.md new file mode 100644 index 0000000000..7d3650e1ab --- /dev/null +++ b/docs/docs/auto-docs/components/EventCalendar/constants/variables/holidays.md @@ -0,0 +1,25 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [components/EventCalendar/constants](../README.md) / holidays + +# Variable: holidays + +> `const` **holidays**: `object`[] + +Defined in: [src/components/EventCalendar/constants.js:1](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/EventCalendar/constants.js#L1) + +## Type declaration + +### date + +> **date**: `string` = `'05-01'` + +### month + +> **month**: `string` = `'May'` + +### name + +> **name**: `string` = `'May Day / Labour Day'` diff --git a/docs/docs/auto-docs/components/EventCalendar/constants/variables/hours.md b/docs/docs/auto-docs/components/EventCalendar/constants/variables/hours.md new file mode 100644 index 0000000000..d253fc95ad --- /dev/null +++ b/docs/docs/auto-docs/components/EventCalendar/constants/variables/hours.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [components/EventCalendar/constants](../README.md) / hours + +# Variable: hours + +> `const` **hours**: `string`[] + +Defined in: [src/components/EventCalendar/constants.js:31](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/EventCalendar/constants.js#L31) diff --git a/docs/docs/auto-docs/components/EventCalendar/constants/variables/months.md b/docs/docs/auto-docs/components/EventCalendar/constants/variables/months.md new file mode 100644 index 0000000000..c8babf9ad6 --- /dev/null +++ b/docs/docs/auto-docs/components/EventCalendar/constants/variables/months.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [components/EventCalendar/constants](../README.md) / months + +# Variable: months + +> `const` **months**: `string`[] + +Defined in: [src/components/EventCalendar/constants.js:17](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/EventCalendar/constants.js#L17) diff --git a/docs/docs/auto-docs/components/EventCalendar/constants/variables/weekdays.md b/docs/docs/auto-docs/components/EventCalendar/constants/variables/weekdays.md new file mode 100644 index 0000000000..2d8ba17bbb --- /dev/null +++ b/docs/docs/auto-docs/components/EventCalendar/constants/variables/weekdays.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [components/EventCalendar/constants](../README.md) / weekdays + +# Variable: weekdays + +> `const` **weekdays**: `string`[] + +Defined in: [src/components/EventCalendar/constants.js:16](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/EventCalendar/constants.js#L16) diff --git a/docs/docs/auto-docs/components/EventDashboardScreen/EventDashboardScreen/README.md b/docs/docs/auto-docs/components/EventDashboardScreen/EventDashboardScreen/README.md new file mode 100644 index 0000000000..8ab5d2ee2b --- /dev/null +++ b/docs/docs/auto-docs/components/EventDashboardScreen/EventDashboardScreen/README.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / components/EventDashboardScreen/EventDashboardScreen + +# components/EventDashboardScreen/EventDashboardScreen + +## Functions + +- [default](functions/default.md) diff --git a/docs/docs/auto-docs/components/EventDashboardScreen/EventDashboardScreen/functions/default.md b/docs/docs/auto-docs/components/EventDashboardScreen/EventDashboardScreen/functions/default.md new file mode 100644 index 0000000000..db42608b4c --- /dev/null +++ b/docs/docs/auto-docs/components/EventDashboardScreen/EventDashboardScreen/functions/default.md @@ -0,0 +1,20 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [components/EventDashboardScreen/EventDashboardScreen](../README.md) / default + +# Function: default() + +> **default**(): `Element` + +Defined in: [src/components/EventDashboardScreen/EventDashboardScreen.tsx:21](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/EventDashboardScreen/EventDashboardScreen.tsx#L21) + +The EventDashboardScreen component is the main dashboard view for event management. +It includes navigation, a sidebar, and a profile dropdown. + +## Returns + +`Element` + +JSX.Element - The rendered EventDashboardScreen component. diff --git a/docs/docs/auto-docs/components/EventListCard/EventListCard/README.md b/docs/docs/auto-docs/components/EventListCard/EventListCard/README.md new file mode 100644 index 0000000000..413bd041b0 --- /dev/null +++ b/docs/docs/auto-docs/components/EventListCard/EventListCard/README.md @@ -0,0 +1,15 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / components/EventListCard/EventListCard + +# components/EventListCard/EventListCard + +## Interfaces + +- [InterfaceEventListCardProps](interfaces/InterfaceEventListCardProps.md) + +## Functions + +- [default](functions/default.md) diff --git a/docs/docs/auto-docs/components/EventListCard/EventListCard/functions/default.md b/docs/docs/auto-docs/components/EventListCard/EventListCard/functions/default.md new file mode 100644 index 0000000000..e7d3558dd4 --- /dev/null +++ b/docs/docs/auto-docs/components/EventListCard/EventListCard/functions/default.md @@ -0,0 +1,27 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [components/EventListCard/EventListCard](../README.md) / default + +# Function: default() + +> **default**(`props`): `JSX.Element` + +Defined in: [src/components/EventListCard/EventListCard.tsx:45](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/EventListCard/EventListCard.tsx#L45) + +Component that displays an event card with a modal for event details. + +## Parameters + +### props + +[`InterfaceEventListCardProps`](../interfaces/InterfaceEventListCardProps.md) + +The props for the EventListCard component. + +## Returns + +`JSX.Element` + +The rendered EventListCard component. diff --git a/docs/docs/auto-docs/components/EventListCard/EventListCard/interfaces/InterfaceEventListCardProps.md b/docs/docs/auto-docs/components/EventListCard/EventListCard/interfaces/InterfaceEventListCardProps.md new file mode 100644 index 0000000000..e40fce27a8 --- /dev/null +++ b/docs/docs/auto-docs/components/EventListCard/EventListCard/interfaces/InterfaceEventListCardProps.md @@ -0,0 +1,183 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [components/EventListCard/EventListCard](../README.md) / InterfaceEventListCardProps + +# Interface: InterfaceEventListCardProps + +Defined in: [src/components/EventListCard/EventListCard.tsx:11](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/EventListCard/EventListCard.tsx#L11) + +Props for the EventListCard component. + +## Properties + +### allDay + +> **allDay**: `boolean` + +Defined in: [src/components/EventListCard/EventListCard.tsx:23](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/EventListCard/EventListCard.tsx#L23) + +*** + +### creator? + +> `optional` **creator**: `object` + +Defined in: [src/components/EventListCard/EventListCard.tsx:32](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/EventListCard/EventListCard.tsx#L32) + +#### \_id + +> **\_id**: `string` + +#### firstName + +> **firstName**: `string` + +#### lastName + +> **lastName**: `string` + +*** + +### endDate + +> **endDate**: `string` + +Defined in: [src/components/EventListCard/EventListCard.tsx:20](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/EventListCard/EventListCard.tsx#L20) + +*** + +### endTime + +> **endTime**: `null` \| `string` + +Defined in: [src/components/EventListCard/EventListCard.tsx:22](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/EventListCard/EventListCard.tsx#L22) + +*** + +### eventDescription + +> **eventDescription**: `string` + +Defined in: [src/components/EventListCard/EventListCard.tsx:18](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/EventListCard/EventListCard.tsx#L18) + +*** + +### eventLocation + +> **eventLocation**: `string` + +Defined in: [src/components/EventListCard/EventListCard.tsx:16](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/EventListCard/EventListCard.tsx#L16) + +*** + +### eventName + +> **eventName**: `string` + +Defined in: [src/components/EventListCard/EventListCard.tsx:17](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/EventListCard/EventListCard.tsx#L17) + +*** + +### id + +> **id**: `string` + +Defined in: [src/components/EventListCard/EventListCard.tsx:15](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/EventListCard/EventListCard.tsx#L15) + +*** + +### isPublic + +> **isPublic**: `boolean` + +Defined in: [src/components/EventListCard/EventListCard.tsx:27](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/EventListCard/EventListCard.tsx#L27) + +*** + +### isRecurringEventException + +> **isRecurringEventException**: `boolean` + +Defined in: [src/components/EventListCard/EventListCard.tsx:26](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/EventListCard/EventListCard.tsx#L26) + +*** + +### isRegisterable + +> **isRegisterable**: `boolean` + +Defined in: [src/components/EventListCard/EventListCard.tsx:28](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/EventListCard/EventListCard.tsx#L28) + +*** + +### key + +> **key**: `string` + +Defined in: [src/components/EventListCard/EventListCard.tsx:14](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/EventListCard/EventListCard.tsx#L14) + +*** + +### recurrenceRule + +> **recurrenceRule**: `null` \| [`InterfaceRecurrenceRule`](../../../../utils/recurrenceUtils/recurrenceTypes/interfaces/InterfaceRecurrenceRule.md) + +Defined in: [src/components/EventListCard/EventListCard.tsx:25](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/EventListCard/EventListCard.tsx#L25) + +*** + +### recurring + +> **recurring**: `boolean` + +Defined in: [src/components/EventListCard/EventListCard.tsx:24](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/EventListCard/EventListCard.tsx#L24) + +*** + +### refetchEvents()? + +> `optional` **refetchEvents**: () => `void` + +Defined in: [src/components/EventListCard/EventListCard.tsx:12](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/EventListCard/EventListCard.tsx#L12) + +#### Returns + +`void` + +*** + +### registrants? + +> `optional` **registrants**: `object`[] + +Defined in: [src/components/EventListCard/EventListCard.tsx:29](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/EventListCard/EventListCard.tsx#L29) + +#### \_id + +> **\_id**: `string` + +*** + +### startDate + +> **startDate**: `string` + +Defined in: [src/components/EventListCard/EventListCard.tsx:19](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/EventListCard/EventListCard.tsx#L19) + +*** + +### startTime + +> **startTime**: `null` \| `string` + +Defined in: [src/components/EventListCard/EventListCard.tsx:21](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/EventListCard/EventListCard.tsx#L21) + +*** + +### userRole? + +> `optional` **userRole**: `string` + +Defined in: [src/components/EventListCard/EventListCard.tsx:13](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/EventListCard/EventListCard.tsx#L13) diff --git a/docs/docs/auto-docs/components/EventListCard/EventListCardMocks/README.md b/docs/docs/auto-docs/components/EventListCard/EventListCardMocks/README.md new file mode 100644 index 0000000000..f3e178dc1b --- /dev/null +++ b/docs/docs/auto-docs/components/EventListCard/EventListCardMocks/README.md @@ -0,0 +1,12 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / components/EventListCard/EventListCardMocks + +# components/EventListCard/EventListCardMocks + +## Variables + +- [ERROR\_MOCKS](variables/ERROR_MOCKS.md) +- [MOCKS](variables/MOCKS.md) diff --git a/docs/docs/auto-docs/components/EventListCard/EventListCardMocks/variables/ERROR_MOCKS.md b/docs/docs/auto-docs/components/EventListCard/EventListCardMocks/variables/ERROR_MOCKS.md new file mode 100644 index 0000000000..75e9981393 --- /dev/null +++ b/docs/docs/auto-docs/components/EventListCard/EventListCardMocks/variables/ERROR_MOCKS.md @@ -0,0 +1,33 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [components/EventListCard/EventListCardMocks](../README.md) / ERROR\_MOCKS + +# Variable: ERROR\_MOCKS + +> `const` **ERROR\_MOCKS**: `object`[] + +Defined in: [src/components/EventListCard/EventListCardMocks.ts:191](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/EventListCard/EventListCardMocks.ts#L191) + +## Type declaration + +### error + +> **error**: `Error` + +### request + +> **request**: `object` + +#### request.query + +> **query**: `DocumentNode` = `DELETE_EVENT_MUTATION` + +#### request.variables + +> **variables**: `object` + +#### request.variables.id + +> **id**: `string` = `'1'` diff --git a/docs/docs/auto-docs/components/EventListCard/EventListCardMocks/variables/MOCKS.md b/docs/docs/auto-docs/components/EventListCard/EventListCardMocks/variables/MOCKS.md new file mode 100644 index 0000000000..e7a59d272d --- /dev/null +++ b/docs/docs/auto-docs/components/EventListCard/EventListCardMocks/variables/MOCKS.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [components/EventListCard/EventListCardMocks](../README.md) / MOCKS + +# Variable: MOCKS + +> `const` **MOCKS**: (\{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `allDay`: `undefined`; `description`: `undefined`; `endDate`: `undefined`; `endTime`: `undefined`; `eventId`: `undefined`; `frequency`: `undefined`; `id`: `string`; `interval`: `undefined`; `isPublic`: `undefined`; `isRegisterable`: `undefined`; `location`: `undefined`; `recurrenceEndDate`: `undefined`; `recurrenceStartDate`: `undefined`; `recurring`: `undefined`; `recurringEventDeleteType`: `undefined`; `recurringEventUpdateType`: `undefined`; `startDate`: `undefined`; `startTime`: `undefined`; `title`: `undefined`; `weekDayOccurenceInMonth`: `undefined`; `weekDays`: `undefined`; \}; \}; `result`: \{ `data`: \{ `registerForEvent`: `undefined`; `removeEvent`: \{ `_id`: `string`; \}; `updateEvent`: `undefined`; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `allDay`: `undefined`; `description`: `undefined`; `endDate`: `undefined`; `endTime`: `undefined`; `eventId`: `undefined`; `frequency`: `undefined`; `id`: `string`; `interval`: `undefined`; `isPublic`: `undefined`; `isRegisterable`: `undefined`; `location`: `undefined`; `recurrenceEndDate`: `undefined`; `recurrenceStartDate`: `undefined`; `recurring`: `undefined`; `recurringEventDeleteType`: `string`; `recurringEventUpdateType`: `undefined`; `startDate`: `undefined`; `startTime`: `undefined`; `title`: `undefined`; `weekDayOccurenceInMonth`: `undefined`; `weekDays`: `undefined`; \}; \}; `result`: \{ `data`: \{ `registerForEvent`: `undefined`; `removeEvent`: \{ `_id`: `string`; \}; `updateEvent`: `undefined`; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `allDay`: `boolean`; `description`: `string`; `endDate`: `string`; `endTime`: `undefined`; `eventId`: `undefined`; `frequency`: `undefined`; `id`: `string`; `interval`: `undefined`; `isPublic`: `boolean`; `isRegisterable`: `boolean`; `location`: `string`; `recurrenceEndDate`: `undefined`; `recurrenceStartDate`: `undefined`; `recurring`: `boolean`; `recurringEventDeleteType`: `undefined`; `recurringEventUpdateType`: `undefined`; `startDate`: `string`; `startTime`: `undefined`; `title`: `string`; `weekDayOccurenceInMonth`: `undefined`; `weekDays`: `undefined`; \}; \}; `result`: \{ `data`: \{ `registerForEvent`: `undefined`; `removeEvent`: `undefined`; `updateEvent`: \{ `_id`: `string`; \}; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `allDay`: `boolean`; `description`: `string`; `endDate`: `string`; `endTime`: `string`; `eventId`: `undefined`; `frequency`: `undefined`; `id`: `string`; `interval`: `undefined`; `isPublic`: `boolean`; `isRegisterable`: `boolean`; `location`: `string`; `recurrenceEndDate`: `undefined`; `recurrenceStartDate`: `undefined`; `recurring`: `boolean`; `recurringEventDeleteType`: `undefined`; `recurringEventUpdateType`: `undefined`; `startDate`: `string`; `startTime`: `string`; `title`: `string`; `weekDayOccurenceInMonth`: `undefined`; `weekDays`: `undefined`; \}; \}; `result`: \{ `data`: \{ `registerForEvent`: `undefined`; `removeEvent`: `undefined`; `updateEvent`: \{ `_id`: `string`; \}; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `allDay`: `boolean`; `description`: `string`; `endDate`: `string`; `endTime`: `undefined`; `eventId`: `undefined`; `frequency`: `string`; `id`: `string`; `interval`: `number`; `isPublic`: `boolean`; `isRegisterable`: `boolean`; `location`: `string`; `recurrenceEndDate`: `null`; `recurrenceStartDate`: `string`; `recurring`: `boolean`; `recurringEventDeleteType`: `undefined`; `recurringEventUpdateType`: `string`; `startDate`: `string`; `startTime`: `undefined`; `title`: `string`; `weekDayOccurenceInMonth`: `undefined`; `weekDays`: `string`[]; \}; \}; `result`: \{ `data`: \{ `registerForEvent`: `undefined`; `removeEvent`: `undefined`; `updateEvent`: \{ `_id`: `string`; \}; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `allDay`: `boolean`; `description`: `string`; `endDate`: `string`; `endTime`: `undefined`; `eventId`: `undefined`; `frequency`: `string`; `id`: `string`; `interval`: `number`; `isPublic`: `boolean`; `isRegisterable`: `boolean`; `location`: `string`; `recurrenceEndDate`: `string`; `recurrenceStartDate`: `string`; `recurring`: `boolean`; `recurringEventDeleteType`: `undefined`; `recurringEventUpdateType`: `string`; `startDate`: `string`; `startTime`: `undefined`; `title`: `string`; `weekDayOccurenceInMonth`: `number`; `weekDays`: `string`[]; \}; \}; `result`: \{ `data`: \{ `registerForEvent`: `undefined`; `removeEvent`: `undefined`; `updateEvent`: \{ `_id`: `string`; \}; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `allDay`: `boolean`; `description`: `string`; `endDate`: `string`; `endTime`: `undefined`; `eventId`: `undefined`; `frequency`: `string`; `id`: `string`; `interval`: `number`; `isPublic`: `boolean`; `isRegisterable`: `boolean`; `location`: `string`; `recurrenceEndDate`: `null`; `recurrenceStartDate`: `string`; `recurring`: `boolean`; `recurringEventDeleteType`: `undefined`; `recurringEventUpdateType`: `string`; `startDate`: `string`; `startTime`: `undefined`; `title`: `string`; `weekDayOccurenceInMonth`: `undefined`; `weekDays`: `undefined`; \}; \}; `result`: \{ `data`: \{ `registerForEvent`: `undefined`; `removeEvent`: `undefined`; `updateEvent`: \{ `_id`: `string`; \}; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `allDay`: `undefined`; `description`: `undefined`; `endDate`: `undefined`; `endTime`: `undefined`; `eventId`: `string`; `frequency`: `undefined`; `id`: `undefined`; `interval`: `undefined`; `isPublic`: `undefined`; `isRegisterable`: `undefined`; `location`: `undefined`; `recurrenceEndDate`: `undefined`; `recurrenceStartDate`: `undefined`; `recurring`: `undefined`; `recurringEventDeleteType`: `undefined`; `recurringEventUpdateType`: `undefined`; `startDate`: `undefined`; `startTime`: `undefined`; `title`: `undefined`; `weekDayOccurenceInMonth`: `undefined`; `weekDays`: `undefined`; \}; \}; `result`: \{ `data`: \{ `registerForEvent`: `object`[]; `removeEvent`: `undefined`; `updateEvent`: `undefined`; \}; \}; \})[] + +Defined in: [src/components/EventListCard/EventListCardMocks.ts:7](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/EventListCard/EventListCardMocks.ts#L7) diff --git a/docs/docs/auto-docs/components/EventListCard/EventListCardModals/README.md b/docs/docs/auto-docs/components/EventListCard/EventListCardModals/README.md new file mode 100644 index 0000000000..a431dca3dd --- /dev/null +++ b/docs/docs/auto-docs/components/EventListCard/EventListCardModals/README.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / components/EventListCard/EventListCardModals + +# components/EventListCard/EventListCardModals + +## Functions + +- [default](functions/default.md) diff --git a/docs/docs/auto-docs/components/EventListCard/EventListCardModals/functions/default.md b/docs/docs/auto-docs/components/EventListCard/EventListCardModals/functions/default.md new file mode 100644 index 0000000000..69ae7f715b --- /dev/null +++ b/docs/docs/auto-docs/components/EventListCard/EventListCardModals/functions/default.md @@ -0,0 +1,28 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [components/EventListCard/EventListCardModals](../README.md) / default + +# Function: default() + +> **default**(`props`): `JSX.Element` + +Defined in: [src/components/EventListCard/EventListCardModals.tsx:72](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/EventListCard/EventListCardModals.tsx#L72) + +The `EventListCardModals` component displays the modals related to events, such as viewing, +updating, and deleting events. + +## Parameters + +### props + +`InterfaceEventListCardModalProps` + +The properties for the component. + +## Returns + +`JSX.Element` + +A JSX element containing the event modals. diff --git a/docs/docs/auto-docs/components/EventListCard/EventListCardProps/README.md b/docs/docs/auto-docs/components/EventListCard/EventListCardProps/README.md new file mode 100644 index 0000000000..57a365ea63 --- /dev/null +++ b/docs/docs/auto-docs/components/EventListCard/EventListCardProps/README.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / components/EventListCard/EventListCardProps + +# components/EventListCard/EventListCardProps + +## Variables + +- [props](variables/props.md) diff --git a/docs/docs/auto-docs/components/EventListCard/EventListCardProps/variables/props.md b/docs/docs/auto-docs/components/EventListCard/EventListCardProps/variables/props.md new file mode 100644 index 0000000000..935847c5ad --- /dev/null +++ b/docs/docs/auto-docs/components/EventListCard/EventListCardProps/variables/props.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [components/EventListCard/EventListCardProps](../README.md) / props + +# Variable: props + +> `const` **props**: [`InterfaceEventListCardProps`](../../EventListCard/interfaces/InterfaceEventListCardProps.md)[] + +Defined in: [src/components/EventListCard/EventListCardProps.ts:4](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/EventListCard/EventListCardProps.ts#L4) diff --git a/docs/docs/auto-docs/components/EventManagement/Dashboard/EventDashboard.mocks/README.md b/docs/docs/auto-docs/components/EventManagement/Dashboard/EventDashboard.mocks/README.md new file mode 100644 index 0000000000..6077bc4772 --- /dev/null +++ b/docs/docs/auto-docs/components/EventManagement/Dashboard/EventDashboard.mocks/README.md @@ -0,0 +1,12 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / components/EventManagement/Dashboard/EventDashboard.mocks + +# components/EventManagement/Dashboard/EventDashboard.mocks + +## Variables + +- [MOCKS\_WITH\_TIME](variables/MOCKS_WITH_TIME.md) +- [MOCKS\_WITHOUT\_TIME](variables/MOCKS_WITHOUT_TIME.md) diff --git a/docs/docs/auto-docs/components/EventManagement/Dashboard/EventDashboard.mocks/variables/MOCKS_WITHOUT_TIME.md b/docs/docs/auto-docs/components/EventManagement/Dashboard/EventDashboard.mocks/variables/MOCKS_WITHOUT_TIME.md new file mode 100644 index 0000000000..46322a32fb --- /dev/null +++ b/docs/docs/auto-docs/components/EventManagement/Dashboard/EventDashboard.mocks/variables/MOCKS_WITHOUT_TIME.md @@ -0,0 +1,101 @@ +[**talawa-admin**](../../../../../README.md) + +*** + +[talawa-admin](../../../../../modules.md) / [components/EventManagement/Dashboard/EventDashboard.mocks](../README.md) / MOCKS\_WITHOUT\_TIME + +# Variable: MOCKS\_WITHOUT\_TIME + +> `const` **MOCKS\_WITHOUT\_TIME**: `object`[] + +Defined in: [src/components/EventManagement/Dashboard/EventDashboard.mocks.ts:34](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/EventManagement/Dashboard/EventDashboard.mocks.ts#L34) + +## Type declaration + +### request + +> **request**: `object` + +#### request.query + +> **query**: `DocumentNode` = `EVENT_DETAILS` + +#### request.variables + +> **variables**: `object` + +#### request.variables.id + +> **id**: `string` = `'event123'` + +### result + +> **result**: `object` + +#### result.data + +> **data**: `object` + +#### result.data.event + +> **event**: `object` + +#### result.data.event.\_id + +> **\_id**: `string` = `'event123'` + +#### result.data.event.allDay + +> **allDay**: `boolean` = `true` + +#### result.data.event.attendees + +> **attendees**: `object`[] + +#### result.data.event.creator + +> **creator**: `object` + +#### result.data.event.creator.\_id + +> **\_id**: `string` = `'creator1'` + +#### result.data.event.creator.firstName + +> **firstName**: `string` = `'John'` + +#### result.data.event.creator.lastName + +> **lastName**: `string` = `'Doe'` + +#### result.data.event.description + +> **description**: `string` = `'Test Description'` + +#### result.data.event.endDate + +> **endDate**: `string` = `'2024-01-02'` + +#### result.data.event.endTime + +> **endTime**: `null` = `null` + +#### result.data.event.location + +> **location**: `string` = `'India'` + +#### result.data.event.recurring + +> **recurring**: `boolean` = `false` + +#### result.data.event.startDate + +> **startDate**: `string` = `'2024-01-01'` + +#### result.data.event.startTime + +> **startTime**: `null` = `null` + +#### result.data.event.title + +> **title**: `string` = `'Test Event'` diff --git a/docs/docs/auto-docs/components/EventManagement/Dashboard/EventDashboard.mocks/variables/MOCKS_WITH_TIME.md b/docs/docs/auto-docs/components/EventManagement/Dashboard/EventDashboard.mocks/variables/MOCKS_WITH_TIME.md new file mode 100644 index 0000000000..9b4c72388f --- /dev/null +++ b/docs/docs/auto-docs/components/EventManagement/Dashboard/EventDashboard.mocks/variables/MOCKS_WITH_TIME.md @@ -0,0 +1,101 @@ +[**talawa-admin**](../../../../../README.md) + +*** + +[talawa-admin](../../../../../modules.md) / [components/EventManagement/Dashboard/EventDashboard.mocks](../README.md) / MOCKS\_WITH\_TIME + +# Variable: MOCKS\_WITH\_TIME + +> `const` **MOCKS\_WITH\_TIME**: `object`[] + +Defined in: [src/components/EventManagement/Dashboard/EventDashboard.mocks.ts:3](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/EventManagement/Dashboard/EventDashboard.mocks.ts#L3) + +## Type declaration + +### request + +> **request**: `object` + +#### request.query + +> **query**: `DocumentNode` = `EVENT_DETAILS` + +#### request.variables + +> **variables**: `object` + +#### request.variables.id + +> **id**: `string` = `'event123'` + +### result + +> **result**: `object` + +#### result.data + +> **data**: `object` + +#### result.data.event + +> **event**: `object` + +#### result.data.event.\_id + +> **\_id**: `string` = `'event123'` + +#### result.data.event.allDay + +> **allDay**: `boolean` = `false` + +#### result.data.event.attendees + +> **attendees**: `object`[] + +#### result.data.event.creator + +> **creator**: `object` + +#### result.data.event.creator.\_id + +> **\_id**: `string` = `'creator1'` + +#### result.data.event.creator.firstName + +> **firstName**: `string` = `'John'` + +#### result.data.event.creator.lastName + +> **lastName**: `string` = `'Doe'` + +#### result.data.event.description + +> **description**: `string` = `'Test Description'` + +#### result.data.event.endDate + +> **endDate**: `string` = `'2024-01-02'` + +#### result.data.event.endTime + +> **endTime**: `string` = `'17:00:00'` + +#### result.data.event.location + +> **location**: `string` = `'India'` + +#### result.data.event.recurring + +> **recurring**: `boolean` = `false` + +#### result.data.event.startDate + +> **startDate**: `string` = `'2024-01-01'` + +#### result.data.event.startTime + +> **startTime**: `string` = `'09:00:00'` + +#### result.data.event.title + +> **title**: `string` = `'Test Event'` diff --git a/docs/docs/auto-docs/components/EventManagement/Dashboard/EventDashboard/README.md b/docs/docs/auto-docs/components/EventManagement/Dashboard/EventDashboard/README.md new file mode 100644 index 0000000000..8a531a757e --- /dev/null +++ b/docs/docs/auto-docs/components/EventManagement/Dashboard/EventDashboard/README.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / components/EventManagement/Dashboard/EventDashboard + +# components/EventManagement/Dashboard/EventDashboard + +## Functions + +- [default](functions/default.md) diff --git a/docs/docs/auto-docs/components/EventManagement/Dashboard/EventDashboard/functions/default.md b/docs/docs/auto-docs/components/EventManagement/Dashboard/EventDashboard/functions/default.md new file mode 100644 index 0000000000..a837383772 --- /dev/null +++ b/docs/docs/auto-docs/components/EventManagement/Dashboard/EventDashboard/functions/default.md @@ -0,0 +1,29 @@ +[**talawa-admin**](../../../../../README.md) + +*** + +[talawa-admin](../../../../../modules.md) / [components/EventManagement/Dashboard/EventDashboard](../README.md) / default + +# Function: default() + +> **default**(`props`): `Element` + +Defined in: [src/components/EventManagement/Dashboard/EventDashboard.tsx:20](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/EventManagement/Dashboard/EventDashboard.tsx#L20) + +Component that displays event details. + +## Parameters + +### props + +The props for the EventDashboard component. + +#### eventId + +`string` + +## Returns + +`Element` + +The rendered EventDashboard component. diff --git a/docs/docs/auto-docs/components/EventManagement/EventAgendaItems/EventAgendaItems/README.md b/docs/docs/auto-docs/components/EventManagement/EventAgendaItems/EventAgendaItems/README.md new file mode 100644 index 0000000000..986421c468 --- /dev/null +++ b/docs/docs/auto-docs/components/EventManagement/EventAgendaItems/EventAgendaItems/README.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / components/EventManagement/EventAgendaItems/EventAgendaItems + +# components/EventManagement/EventAgendaItems/EventAgendaItems + +## Functions + +- [default](functions/default.md) diff --git a/docs/docs/auto-docs/components/EventManagement/EventAgendaItems/EventAgendaItems/functions/default.md b/docs/docs/auto-docs/components/EventManagement/EventAgendaItems/EventAgendaItems/functions/default.md new file mode 100644 index 0000000000..49307b2aa5 --- /dev/null +++ b/docs/docs/auto-docs/components/EventManagement/EventAgendaItems/EventAgendaItems/functions/default.md @@ -0,0 +1,29 @@ +[**talawa-admin**](../../../../../README.md) + +*** + +[talawa-admin](../../../../../modules.md) / [components/EventManagement/EventAgendaItems/EventAgendaItems](../README.md) / default + +# Function: default() + +> **default**(`props`): `JSX.Element` + +Defined in: [src/components/EventManagement/EventAgendaItems/EventAgendaItems.tsx:33](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/EventManagement/EventAgendaItems/EventAgendaItems.tsx#L33) + +Component to manage and display agenda items for a specific event. + +## Parameters + +### props + +The component props. + +#### eventId + +`string` + +## Returns + +`JSX.Element` + +The rendered component. diff --git a/docs/docs/auto-docs/components/EventManagement/EventAgendaItems/EventAgendaItemsMocks/README.md b/docs/docs/auto-docs/components/EventManagement/EventAgendaItems/EventAgendaItemsMocks/README.md new file mode 100644 index 0000000000..26246e02f3 --- /dev/null +++ b/docs/docs/auto-docs/components/EventManagement/EventAgendaItems/EventAgendaItemsMocks/README.md @@ -0,0 +1,13 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / components/EventManagement/EventAgendaItems/EventAgendaItemsMocks + +# components/EventManagement/EventAgendaItems/EventAgendaItemsMocks + +## Variables + +- [MOCKS](variables/MOCKS.md) +- [MOCKS\_ERROR\_MUTATION](variables/MOCKS_ERROR_MUTATION.md) +- [MOCKS\_ERROR\_QUERY](variables/MOCKS_ERROR_QUERY.md) diff --git a/docs/docs/auto-docs/components/EventManagement/EventAgendaItems/EventAgendaItemsMocks/variables/MOCKS.md b/docs/docs/auto-docs/components/EventManagement/EventAgendaItems/EventAgendaItemsMocks/variables/MOCKS.md new file mode 100644 index 0000000000..702860bdfc --- /dev/null +++ b/docs/docs/auto-docs/components/EventManagement/EventAgendaItems/EventAgendaItemsMocks/variables/MOCKS.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../../../README.md) + +*** + +[talawa-admin](../../../../../modules.md) / [components/EventManagement/EventAgendaItems/EventAgendaItemsMocks](../README.md) / MOCKS + +# Variable: MOCKS + +> `const` **MOCKS**: (\{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `input`: `undefined`; `organizationId`: `string`; `relatedEventId`: `undefined`; \}; \}; `result`: \{ `data`: \{ `agendaItemByEvent`: `undefined`; `agendaItemCategoriesByOrganization`: `object`[]; `createAgendaItem`: `undefined`; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `input`: `undefined`; `organizationId`: `undefined`; `relatedEventId`: `string`; \}; \}; `result`: \{ `data`: \{ `agendaItemByEvent`: `object`[]; `agendaItemCategoriesByOrganization`: `undefined`; `createAgendaItem`: `undefined`; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `input`: \{ `attachments`: `never`[]; `categories`: `string`[]; `description`: `string`; `duration`: `string`; `organizationId`: `string`; `relatedEventId`: `string`; `sequence`: `number`; `title`: `string`; `urls`: `never`[]; \}; `organizationId`: `undefined`; `relatedEventId`: `undefined`; \}; \}; `result`: \{ `data`: \{ `agendaItemByEvent`: `undefined`; `agendaItemCategoriesByOrganization`: `undefined`; `createAgendaItem`: \{ `_id`: `string`; \}; \}; \}; \})[] + +Defined in: [src/components/EventManagement/EventAgendaItems/EventAgendaItemsMocks.ts:6](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/EventManagement/EventAgendaItems/EventAgendaItemsMocks.ts#L6) diff --git a/docs/docs/auto-docs/components/EventManagement/EventAgendaItems/EventAgendaItemsMocks/variables/MOCKS_ERROR_MUTATION.md b/docs/docs/auto-docs/components/EventManagement/EventAgendaItems/EventAgendaItemsMocks/variables/MOCKS_ERROR_MUTATION.md new file mode 100644 index 0000000000..4d6d8496a1 --- /dev/null +++ b/docs/docs/auto-docs/components/EventManagement/EventAgendaItems/EventAgendaItemsMocks/variables/MOCKS_ERROR_MUTATION.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../../../README.md) + +*** + +[talawa-admin](../../../../../modules.md) / [components/EventManagement/EventAgendaItems/EventAgendaItemsMocks](../README.md) / MOCKS\_ERROR\_MUTATION + +# Variable: MOCKS\_ERROR\_MUTATION + +> `const` **MOCKS\_ERROR\_MUTATION**: (\{ `error`: `Error`; `request`: \{ `query`: `DocumentNode`; `variables`: \{ `input`: \{ `attachments`: `never`[]; `categories`: `string`[]; `description`: `string`; `duration`: `string`; `organizationId`: `string`; `relatedEventId`: `string`; `sequence`: `number`; `title`: `string`; `urls`: `never`[]; \}; `organizationId`: `undefined`; `relatedEventId`: `undefined`; \}; \}; \} \| \{ `error`: `Error`; `request`: \{ `query`: `DocumentNode`; `variables`: \{ `input`: `undefined`; `organizationId`: `undefined`; `relatedEventId`: `string`; \}; \}; \} \| \{ `error`: `Error`; `request`: \{ `query`: `DocumentNode`; `variables`: \{ `input`: `undefined`; `organizationId`: `string`; `relatedEventId`: `undefined`; \}; \}; \})[] + +Defined in: [src/components/EventManagement/EventAgendaItems/EventAgendaItemsMocks.ts:97](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/EventManagement/EventAgendaItems/EventAgendaItemsMocks.ts#L97) diff --git a/docs/docs/auto-docs/components/EventManagement/EventAgendaItems/EventAgendaItemsMocks/variables/MOCKS_ERROR_QUERY.md b/docs/docs/auto-docs/components/EventManagement/EventAgendaItems/EventAgendaItemsMocks/variables/MOCKS_ERROR_QUERY.md new file mode 100644 index 0000000000..498335dddd --- /dev/null +++ b/docs/docs/auto-docs/components/EventManagement/EventAgendaItems/EventAgendaItemsMocks/variables/MOCKS_ERROR_QUERY.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../../../README.md) + +*** + +[talawa-admin](../../../../../modules.md) / [components/EventManagement/EventAgendaItems/EventAgendaItemsMocks](../README.md) / MOCKS\_ERROR\_QUERY + +# Variable: MOCKS\_ERROR\_QUERY + +> `const` **MOCKS\_ERROR\_QUERY**: `never`[] = `[]` + +Defined in: [src/components/EventManagement/EventAgendaItems/EventAgendaItemsMocks.ts:133](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/EventManagement/EventAgendaItems/EventAgendaItemsMocks.ts#L133) diff --git a/docs/docs/auto-docs/components/EventManagement/EventAttendance/Attendance.mocks/README.md b/docs/docs/auto-docs/components/EventManagement/EventAttendance/Attendance.mocks/README.md new file mode 100644 index 0000000000..d618005d2e --- /dev/null +++ b/docs/docs/auto-docs/components/EventManagement/EventAttendance/Attendance.mocks/README.md @@ -0,0 +1,12 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / components/EventManagement/EventAttendance/Attendance.mocks + +# components/EventManagement/EventAttendance/Attendance.mocks + +## Variables + +- [MOCKS](variables/MOCKS.md) +- [MOCKS\_ERROR](variables/MOCKS_ERROR.md) diff --git a/docs/docs/auto-docs/components/EventManagement/EventAttendance/Attendance.mocks/variables/MOCKS.md b/docs/docs/auto-docs/components/EventManagement/EventAttendance/Attendance.mocks/variables/MOCKS.md new file mode 100644 index 0000000000..7df0ea2b2d --- /dev/null +++ b/docs/docs/auto-docs/components/EventManagement/EventAttendance/Attendance.mocks/variables/MOCKS.md @@ -0,0 +1,41 @@ +[**talawa-admin**](../../../../../README.md) + +*** + +[talawa-admin](../../../../../modules.md) / [components/EventManagement/EventAttendance/Attendance.mocks](../README.md) / MOCKS + +# Variable: MOCKS + +> `const` **MOCKS**: `object`[] + +Defined in: [src/components/EventManagement/EventAttendance/Attendance.mocks.ts:3](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/EventManagement/EventAttendance/Attendance.mocks.ts#L3) + +## Type declaration + +### request + +> **request**: `object` + +#### request.query + +> **query**: `DocumentNode` = `EVENT_ATTENDEES` + +#### request.variables + +> **variables**: `object` = `{}` + +### result + +> **result**: `object` + +#### result.data + +> **data**: `object` + +#### result.data.event + +> **event**: `object` + +#### result.data.event.attendees + +> **attendees**: `object`[] diff --git a/docs/docs/auto-docs/components/EventManagement/EventAttendance/Attendance.mocks/variables/MOCKS_ERROR.md b/docs/docs/auto-docs/components/EventManagement/EventAttendance/Attendance.mocks/variables/MOCKS_ERROR.md new file mode 100644 index 0000000000..a91064c91f --- /dev/null +++ b/docs/docs/auto-docs/components/EventManagement/EventAttendance/Attendance.mocks/variables/MOCKS_ERROR.md @@ -0,0 +1,29 @@ +[**talawa-admin**](../../../../../README.md) + +*** + +[talawa-admin](../../../../../modules.md) / [components/EventManagement/EventAttendance/Attendance.mocks](../README.md) / MOCKS\_ERROR + +# Variable: MOCKS\_ERROR + +> `const` **MOCKS\_ERROR**: `object`[] + +Defined in: [src/components/EventManagement/EventAttendance/Attendance.mocks.ts:54](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/EventManagement/EventAttendance/Attendance.mocks.ts#L54) + +## Type declaration + +### error + +> **error**: `Error` + +### request + +> **request**: `object` + +#### request.query + +> **query**: `DocumentNode` = `EVENT_ATTENDEES` + +#### request.variables + +> **variables**: `object` = `{}` diff --git a/docs/docs/auto-docs/components/EventManagement/EventAttendance/AttendedEventList/README.md b/docs/docs/auto-docs/components/EventManagement/EventAttendance/AttendedEventList/README.md new file mode 100644 index 0000000000..9b16ced2f2 --- /dev/null +++ b/docs/docs/auto-docs/components/EventManagement/EventAttendance/AttendedEventList/README.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / components/EventManagement/EventAttendance/AttendedEventList + +# components/EventManagement/EventAttendance/AttendedEventList + +## Functions + +- [default](functions/default.md) diff --git a/docs/docs/auto-docs/components/EventManagement/EventAttendance/AttendedEventList/functions/default.md b/docs/docs/auto-docs/components/EventManagement/EventAttendance/AttendedEventList/functions/default.md new file mode 100644 index 0000000000..236ecd54c5 --- /dev/null +++ b/docs/docs/auto-docs/components/EventManagement/EventAttendance/AttendedEventList/functions/default.md @@ -0,0 +1,35 @@ +[**talawa-admin**](../../../../../README.md) + +*** + +[talawa-admin](../../../../../modules.md) / [components/EventManagement/EventAttendance/AttendedEventList](../README.md) / default + +# Function: default() + +> **default**(`props`, `deprecatedLegacyContext`?): `ReactNode` + +Defined in: [src/components/EventManagement/EventAttendance/AttendedEventList.tsx:16](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/EventManagement/EventAttendance/AttendedEventList.tsx#L16) + +Component to display a list of events attended by a member + +## Parameters + +### props + +`InterfaceEventsAttended` + +### deprecatedLegacyContext? + +`any` + +**Deprecated** + +**See** + +[React Docs](https://legacy.reactjs.org/docs/legacy-context.html#referencing-context-in-lifecycle-methods) + +## Returns + +`ReactNode` + +A table row containing event details with a link to the event diff --git a/docs/docs/auto-docs/components/EventManagement/EventAttendance/EventAttendance/README.md b/docs/docs/auto-docs/components/EventManagement/EventAttendance/EventAttendance/README.md new file mode 100644 index 0000000000..5cc3bcb609 --- /dev/null +++ b/docs/docs/auto-docs/components/EventManagement/EventAttendance/EventAttendance/README.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / components/EventManagement/EventAttendance/EventAttendance + +# components/EventManagement/EventAttendance/EventAttendance + +## Functions + +- [default](functions/default.md) diff --git a/docs/docs/auto-docs/components/EventManagement/EventAttendance/EventAttendance/functions/default.md b/docs/docs/auto-docs/components/EventManagement/EventAttendance/EventAttendance/functions/default.md new file mode 100644 index 0000000000..2462865559 --- /dev/null +++ b/docs/docs/auto-docs/components/EventManagement/EventAttendance/EventAttendance/functions/default.md @@ -0,0 +1,20 @@ +[**talawa-admin**](../../../../../README.md) + +*** + +[talawa-admin](../../../../../modules.md) / [components/EventManagement/EventAttendance/EventAttendance](../README.md) / default + +# Function: default() + +> **default**(): `JSX.Element` + +Defined in: [src/components/EventManagement/EventAttendance/EventAttendance.tsx:34](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/EventManagement/EventAttendance/EventAttendance.tsx#L34) + +Component to manage and display event attendance information +Includes filtering and sorting functionality for attendees + +## Returns + +`JSX.Element` + +JSX element containing the event attendance interface diff --git a/docs/docs/auto-docs/components/EventManagement/EventAttendance/EventStatistics/README.md b/docs/docs/auto-docs/components/EventManagement/EventAttendance/EventStatistics/README.md new file mode 100644 index 0000000000..28c111d1ec --- /dev/null +++ b/docs/docs/auto-docs/components/EventManagement/EventAttendance/EventStatistics/README.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / components/EventManagement/EventAttendance/EventStatistics + +# components/EventManagement/EventAttendance/EventStatistics + +## Functions + +- [AttendanceStatisticsModal](functions/AttendanceStatisticsModal.md) diff --git a/docs/docs/auto-docs/components/EventManagement/EventAttendance/EventStatistics/functions/AttendanceStatisticsModal.md b/docs/docs/auto-docs/components/EventManagement/EventAttendance/EventStatistics/functions/AttendanceStatisticsModal.md new file mode 100644 index 0000000000..a5c4c0684f --- /dev/null +++ b/docs/docs/auto-docs/components/EventManagement/EventAttendance/EventStatistics/functions/AttendanceStatisticsModal.md @@ -0,0 +1,36 @@ +[**talawa-admin**](../../../../../README.md) + +*** + +[talawa-admin](../../../../../modules.md) / [components/EventManagement/EventAttendance/EventStatistics](../README.md) / AttendanceStatisticsModal + +# Function: AttendanceStatisticsModal() + +> **AttendanceStatisticsModal**(`props`, `deprecatedLegacyContext`?): `ReactNode` + +Defined in: [src/components/EventManagement/EventAttendance/EventStatistics.tsx:50](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/EventManagement/EventAttendance/EventStatistics.tsx#L50) + +Component to display statistical information about event attendance +Shows metrics like total attendees, filtering options, and attendance trends + +## Parameters + +### props + +[`InterfaceAttendanceStatisticsModalProps`](../../InterfaceEvents/interfaces/InterfaceAttendanceStatisticsModalProps.md) + +### deprecatedLegacyContext? + +`any` + +**Deprecated** + +**See** + +[React Docs](https://legacy.reactjs.org/docs/legacy-context.html#referencing-context-in-lifecycle-methods) + +## Returns + +`ReactNode` + +JSX element with event statistics dashboard diff --git a/docs/docs/auto-docs/components/EventManagement/EventAttendance/InterfaceEvents/README.md b/docs/docs/auto-docs/components/EventManagement/EventAttendance/InterfaceEvents/README.md new file mode 100644 index 0000000000..aeb9b6a842 --- /dev/null +++ b/docs/docs/auto-docs/components/EventManagement/EventAttendance/InterfaceEvents/README.md @@ -0,0 +1,14 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / components/EventManagement/EventAttendance/InterfaceEvents + +# components/EventManagement/EventAttendance/InterfaceEvents + +## Interfaces + +- [InterfaceAttendanceStatisticsModalProps](interfaces/InterfaceAttendanceStatisticsModalProps.md) +- [InterfaceEvent](interfaces/InterfaceEvent.md) +- [InterfaceMember](interfaces/InterfaceMember.md) +- [InterfaceRecurringEvent](interfaces/InterfaceRecurringEvent.md) diff --git a/docs/docs/auto-docs/components/EventManagement/EventAttendance/InterfaceEvents/interfaces/InterfaceAttendanceStatisticsModalProps.md b/docs/docs/auto-docs/components/EventManagement/EventAttendance/InterfaceEvents/interfaces/InterfaceAttendanceStatisticsModalProps.md new file mode 100644 index 0000000000..4da68d9034 --- /dev/null +++ b/docs/docs/auto-docs/components/EventManagement/EventAttendance/InterfaceEvents/interfaces/InterfaceAttendanceStatisticsModalProps.md @@ -0,0 +1,75 @@ +[**talawa-admin**](../../../../../README.md) + +*** + +[talawa-admin](../../../../../modules.md) / [components/EventManagement/EventAttendance/InterfaceEvents](../README.md) / InterfaceAttendanceStatisticsModalProps + +# Interface: InterfaceAttendanceStatisticsModalProps + +Defined in: [src/components/EventManagement/EventAttendance/InterfaceEvents.ts:1](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/EventManagement/EventAttendance/InterfaceEvents.ts#L1) + +## Properties + +### handleClose() + +> **handleClose**: () => `void` + +Defined in: [src/components/EventManagement/EventAttendance/InterfaceEvents.ts:3](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/EventManagement/EventAttendance/InterfaceEvents.ts#L3) + +#### Returns + +`void` + +*** + +### memberData + +> **memberData**: [`InterfaceMember`](InterfaceMember.md)[] + +Defined in: [src/components/EventManagement/EventAttendance/InterfaceEvents.ts:9](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/EventManagement/EventAttendance/InterfaceEvents.ts#L9) + +*** + +### show + +> **show**: `boolean` + +Defined in: [src/components/EventManagement/EventAttendance/InterfaceEvents.ts:2](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/EventManagement/EventAttendance/InterfaceEvents.ts#L2) + +*** + +### statistics + +> **statistics**: `object` + +Defined in: [src/components/EventManagement/EventAttendance/InterfaceEvents.ts:4](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/EventManagement/EventAttendance/InterfaceEvents.ts#L4) + +#### attendanceRate + +> **attendanceRate**: `number` + +#### membersAttended + +> **membersAttended**: `number` + +#### totalMembers + +> **totalMembers**: `number` + +*** + +### t() + +> **t**: (`key`) => `string` + +Defined in: [src/components/EventManagement/EventAttendance/InterfaceEvents.ts:10](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/EventManagement/EventAttendance/InterfaceEvents.ts#L10) + +#### Parameters + +##### key + +`string` + +#### Returns + +`string` diff --git a/docs/docs/auto-docs/components/EventManagement/EventAttendance/InterfaceEvents/interfaces/InterfaceEvent.md b/docs/docs/auto-docs/components/EventManagement/EventAttendance/InterfaceEvents/interfaces/InterfaceEvent.md new file mode 100644 index 0000000000..9f1b86f8aa --- /dev/null +++ b/docs/docs/auto-docs/components/EventManagement/EventAttendance/InterfaceEvents/interfaces/InterfaceEvent.md @@ -0,0 +1,189 @@ +[**talawa-admin**](../../../../../README.md) + +*** + +[talawa-admin](../../../../../modules.md) / [components/EventManagement/EventAttendance/InterfaceEvents](../README.md) / InterfaceEvent + +# Interface: InterfaceEvent + +Defined in: [src/components/EventManagement/EventAttendance/InterfaceEvents.ts:35](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/EventManagement/EventAttendance/InterfaceEvents.ts#L35) + +## Properties + +### \_\_typename + +> **\_\_typename**: `string` + +Defined in: [src/components/EventManagement/EventAttendance/InterfaceEvents.ts:66](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/EventManagement/EventAttendance/InterfaceEvents.ts#L66) + +*** + +### \_id + +> **\_id**: `string` + +Defined in: [src/components/EventManagement/EventAttendance/InterfaceEvents.ts:36](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/EventManagement/EventAttendance/InterfaceEvents.ts#L36) + +*** + +### allDay + +> **allDay**: `boolean` + +Defined in: [src/components/EventManagement/EventAttendance/InterfaceEvents.ts:44](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/EventManagement/EventAttendance/InterfaceEvents.ts#L44) + +*** + +### attendees + +> **attendees**: `object`[] + +Defined in: [src/components/EventManagement/EventAttendance/InterfaceEvents.ts:58](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/EventManagement/EventAttendance/InterfaceEvents.ts#L58) + +#### \_id + +> **\_id**: `string` + +#### birthDate + +> **birthDate**: `string` + +#### email + +> **email**: `string` + +#### firstName + +> **firstName**: `string` + +#### gender + +> **gender**: `string` + +#### lastName + +> **lastName**: `string` + +*** + +### description + +> **description**: `string` + +Defined in: [src/components/EventManagement/EventAttendance/InterfaceEvents.ts:38](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/EventManagement/EventAttendance/InterfaceEvents.ts#L38) + +*** + +### endDate + +> **endDate**: `string` + +Defined in: [src/components/EventManagement/EventAttendance/InterfaceEvents.ts:40](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/EventManagement/EventAttendance/InterfaceEvents.ts#L40) + +*** + +### endTime + +> **endTime**: `string` + +Defined in: [src/components/EventManagement/EventAttendance/InterfaceEvents.ts:43](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/EventManagement/EventAttendance/InterfaceEvents.ts#L43) + +*** + +### isPublic + +> **isPublic**: `boolean` + +Defined in: [src/components/EventManagement/EventAttendance/InterfaceEvents.ts:56](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/EventManagement/EventAttendance/InterfaceEvents.ts#L56) + +*** + +### isRecurringEventException + +> **isRecurringEventException**: `boolean` + +Defined in: [src/components/EventManagement/EventAttendance/InterfaceEvents.ts:55](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/EventManagement/EventAttendance/InterfaceEvents.ts#L55) + +*** + +### isRegisterable + +> **isRegisterable**: `boolean` + +Defined in: [src/components/EventManagement/EventAttendance/InterfaceEvents.ts:57](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/EventManagement/EventAttendance/InterfaceEvents.ts#L57) + +*** + +### location + +> **location**: `string` + +Defined in: [src/components/EventManagement/EventAttendance/InterfaceEvents.ts:41](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/EventManagement/EventAttendance/InterfaceEvents.ts#L41) + +*** + +### recurrenceRule + +> **recurrenceRule**: `object` + +Defined in: [src/components/EventManagement/EventAttendance/InterfaceEvents.ts:46](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/EventManagement/EventAttendance/InterfaceEvents.ts#L46) + +#### count? + +> `optional` **count**: `number` + +#### frequency + +> **frequency**: `string` + +#### interval + +> **interval**: `number` + +#### recurrenceEndDate? + +> `optional` **recurrenceEndDate**: `null` \| `string` + +#### recurrenceStartDate + +> **recurrenceStartDate**: `string` + +#### weekDayOccurenceInMonth? + +> `optional` **weekDayOccurenceInMonth**: `number` + +#### weekDays + +> **weekDays**: `string`[] + +*** + +### recurring + +> **recurring**: `boolean` + +Defined in: [src/components/EventManagement/EventAttendance/InterfaceEvents.ts:45](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/EventManagement/EventAttendance/InterfaceEvents.ts#L45) + +*** + +### startDate + +> **startDate**: `string` + +Defined in: [src/components/EventManagement/EventAttendance/InterfaceEvents.ts:39](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/EventManagement/EventAttendance/InterfaceEvents.ts#L39) + +*** + +### startTime + +> **startTime**: `string` + +Defined in: [src/components/EventManagement/EventAttendance/InterfaceEvents.ts:42](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/EventManagement/EventAttendance/InterfaceEvents.ts#L42) + +*** + +### title + +> **title**: `string` + +Defined in: [src/components/EventManagement/EventAttendance/InterfaceEvents.ts:37](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/EventManagement/EventAttendance/InterfaceEvents.ts#L37) diff --git a/docs/docs/auto-docs/components/EventManagement/EventAttendance/InterfaceEvents/interfaces/InterfaceMember.md b/docs/docs/auto-docs/components/EventManagement/EventAttendance/InterfaceEvents/interfaces/InterfaceMember.md new file mode 100644 index 0000000000..4dcec3a62f --- /dev/null +++ b/docs/docs/auto-docs/components/EventManagement/EventAttendance/InterfaceEvents/interfaces/InterfaceMember.md @@ -0,0 +1,97 @@ +[**talawa-admin**](../../../../../README.md) + +*** + +[talawa-admin](../../../../../modules.md) / [components/EventManagement/EventAttendance/InterfaceEvents](../README.md) / InterfaceMember + +# Interface: InterfaceMember + +Defined in: [src/components/EventManagement/EventAttendance/InterfaceEvents.ts:13](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/EventManagement/EventAttendance/InterfaceEvents.ts#L13) + +## Properties + +### \_\_typename + +> **\_\_typename**: `string` + +Defined in: [src/components/EventManagement/EventAttendance/InterfaceEvents.ts:23](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/EventManagement/EventAttendance/InterfaceEvents.ts#L23) + +*** + +### \_id + +> **\_id**: `string` + +Defined in: [src/components/EventManagement/EventAttendance/InterfaceEvents.ts:24](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/EventManagement/EventAttendance/InterfaceEvents.ts#L24) + +*** + +### birthDate + +> **birthDate**: `Date` + +Defined in: [src/components/EventManagement/EventAttendance/InterfaceEvents.ts:22](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/EventManagement/EventAttendance/InterfaceEvents.ts#L22) + +*** + +### createdAt + +> **createdAt**: `string` + +Defined in: [src/components/EventManagement/EventAttendance/InterfaceEvents.ts:14](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/EventManagement/EventAttendance/InterfaceEvents.ts#L14) + +*** + +### email + +> **email**: `` `${string}@${string}.${string}` `` + +Defined in: [src/components/EventManagement/EventAttendance/InterfaceEvents.ts:17](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/EventManagement/EventAttendance/InterfaceEvents.ts#L17) + +*** + +### eventsAttended? + +> `optional` **eventsAttended**: `object`[] + +Defined in: [src/components/EventManagement/EventAttendance/InterfaceEvents.ts:19](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/EventManagement/EventAttendance/InterfaceEvents.ts#L19) + +#### \_id + +> **\_id**: `string` + +*** + +### firstName + +> **firstName**: `string` + +Defined in: [src/components/EventManagement/EventAttendance/InterfaceEvents.ts:15](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/EventManagement/EventAttendance/InterfaceEvents.ts#L15) + +*** + +### gender + +> **gender**: `string` + +Defined in: [src/components/EventManagement/EventAttendance/InterfaceEvents.ts:18](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/EventManagement/EventAttendance/InterfaceEvents.ts#L18) + +*** + +### lastName + +> **lastName**: `string` + +Defined in: [src/components/EventManagement/EventAttendance/InterfaceEvents.ts:16](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/EventManagement/EventAttendance/InterfaceEvents.ts#L16) + +*** + +### tagsAssignedWith + +> **tagsAssignedWith**: `object` + +Defined in: [src/components/EventManagement/EventAttendance/InterfaceEvents.ts:25](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/EventManagement/EventAttendance/InterfaceEvents.ts#L25) + +#### edges + +> **edges**: `object`[] diff --git a/docs/docs/auto-docs/components/EventManagement/EventAttendance/InterfaceEvents/interfaces/InterfaceRecurringEvent.md b/docs/docs/auto-docs/components/EventManagement/EventAttendance/InterfaceEvents/interfaces/InterfaceRecurringEvent.md new file mode 100644 index 0000000000..035fa85b0d --- /dev/null +++ b/docs/docs/auto-docs/components/EventManagement/EventAttendance/InterfaceEvents/interfaces/InterfaceRecurringEvent.md @@ -0,0 +1,89 @@ +[**talawa-admin**](../../../../../README.md) + +*** + +[talawa-admin](../../../../../modules.md) / [components/EventManagement/EventAttendance/InterfaceEvents](../README.md) / InterfaceRecurringEvent + +# Interface: InterfaceRecurringEvent + +Defined in: [src/components/EventManagement/EventAttendance/InterfaceEvents.ts:69](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/EventManagement/EventAttendance/InterfaceEvents.ts#L69) + +## Properties + +### \_id + +> **\_id**: `string` + +Defined in: [src/components/EventManagement/EventAttendance/InterfaceEvents.ts:70](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/EventManagement/EventAttendance/InterfaceEvents.ts#L70) + +*** + +### attendees + +> **attendees**: `object`[] + +Defined in: [src/components/EventManagement/EventAttendance/InterfaceEvents.ts:76](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/EventManagement/EventAttendance/InterfaceEvents.ts#L76) + +#### \_id + +> **\_id**: `string` + +#### gender + +> **gender**: `"MALE"` \| `"FEMALE"` \| `"OTHER"` \| `"PREFER_NOT_TO_SAY"` + +*** + +### endDate + +> **endDate**: `string` + +Defined in: [src/components/EventManagement/EventAttendance/InterfaceEvents.ts:73](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/EventManagement/EventAttendance/InterfaceEvents.ts#L73) + +*** + +### frequency + +> **frequency**: `string` + +Defined in: [src/components/EventManagement/EventAttendance/InterfaceEvents.ts:74](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/EventManagement/EventAttendance/InterfaceEvents.ts#L74) + +*** + +### interval + +> **interval**: `number` + +Defined in: [src/components/EventManagement/EventAttendance/InterfaceEvents.ts:75](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/EventManagement/EventAttendance/InterfaceEvents.ts#L75) + +*** + +### isPublic + +> **isPublic**: `boolean` + +Defined in: [src/components/EventManagement/EventAttendance/InterfaceEvents.ts:80](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/EventManagement/EventAttendance/InterfaceEvents.ts#L80) + +*** + +### isRegisterable + +> **isRegisterable**: `boolean` + +Defined in: [src/components/EventManagement/EventAttendance/InterfaceEvents.ts:81](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/EventManagement/EventAttendance/InterfaceEvents.ts#L81) + +*** + +### startDate + +> **startDate**: `string` + +Defined in: [src/components/EventManagement/EventAttendance/InterfaceEvents.ts:72](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/EventManagement/EventAttendance/InterfaceEvents.ts#L72) + +*** + +### title + +> **title**: `string` + +Defined in: [src/components/EventManagement/EventAttendance/InterfaceEvents.ts:71](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/EventManagement/EventAttendance/InterfaceEvents.ts#L71) diff --git a/docs/docs/auto-docs/components/EventManagement/EventRegistrant/EventRegistrants/README.md b/docs/docs/auto-docs/components/EventManagement/EventRegistrant/EventRegistrants/README.md new file mode 100644 index 0000000000..5cea6aa16c --- /dev/null +++ b/docs/docs/auto-docs/components/EventManagement/EventRegistrant/EventRegistrants/README.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / components/EventManagement/EventRegistrant/EventRegistrants + +# components/EventManagement/EventRegistrant/EventRegistrants + +## Functions + +- [default](functions/default.md) diff --git a/docs/docs/auto-docs/components/EventManagement/EventRegistrant/EventRegistrants/functions/default.md b/docs/docs/auto-docs/components/EventManagement/EventRegistrant/EventRegistrants/functions/default.md new file mode 100644 index 0000000000..f1ea3f9ae8 --- /dev/null +++ b/docs/docs/auto-docs/components/EventManagement/EventRegistrant/EventRegistrants/functions/default.md @@ -0,0 +1,20 @@ +[**talawa-admin**](../../../../../README.md) + +*** + +[talawa-admin](../../../../../modules.md) / [components/EventManagement/EventRegistrant/EventRegistrants](../README.md) / default + +# Function: default() + +> **default**(): `JSX.Element` + +Defined in: [src/components/EventManagement/EventRegistrant/EventRegistrants.tsx:34](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/EventManagement/EventRegistrant/EventRegistrants.tsx#L34) + +Component to manage and display event registrant information +Includes adding new registrants and check-in functionality for registrants + +## Returns + +`JSX.Element` + +JSX element containing the event attendance interface diff --git a/docs/docs/auto-docs/components/EventManagement/EventRegistrant/Registrations.mocks/README.md b/docs/docs/auto-docs/components/EventManagement/EventRegistrant/Registrations.mocks/README.md new file mode 100644 index 0000000000..3b775ce0f9 --- /dev/null +++ b/docs/docs/auto-docs/components/EventManagement/EventRegistrant/Registrations.mocks/README.md @@ -0,0 +1,12 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / components/EventManagement/EventRegistrant/Registrations.mocks + +# components/EventManagement/EventRegistrant/Registrations.mocks + +## Variables + +- [REGISTRANTS\_MOCKS](variables/REGISTRANTS_MOCKS.md) +- [REGISTRANTS\_MOCKS\_ERROR](variables/REGISTRANTS_MOCKS_ERROR.md) diff --git a/docs/docs/auto-docs/components/EventManagement/EventRegistrant/Registrations.mocks/variables/REGISTRANTS_MOCKS.md b/docs/docs/auto-docs/components/EventManagement/EventRegistrant/Registrations.mocks/variables/REGISTRANTS_MOCKS.md new file mode 100644 index 0000000000..a454e88464 --- /dev/null +++ b/docs/docs/auto-docs/components/EventManagement/EventRegistrant/Registrations.mocks/variables/REGISTRANTS_MOCKS.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../../../README.md) + +*** + +[talawa-admin](../../../../../modules.md) / [components/EventManagement/EventRegistrant/Registrations.mocks](../README.md) / REGISTRANTS\_MOCKS + +# Variable: REGISTRANTS\_MOCKS + +> `const` **REGISTRANTS\_MOCKS**: (\{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `eventId`: `string`; `id`: `undefined`; \}; \}; `result`: \{ `data`: \{ `event`: `undefined`; `getEventAttendeesByEventId`: `object`[]; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `eventId`: `undefined`; `id`: `string`; \}; \}; `result`: \{ `data`: \{ `event`: \{ `attendees`: `object`[]; \}; `getEventAttendeesByEventId`: `undefined`; \}; \}; \})[] + +Defined in: [src/components/EventManagement/EventRegistrant/Registrations.mocks.ts:3](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/EventManagement/EventRegistrant/Registrations.mocks.ts#L3) diff --git a/docs/docs/auto-docs/components/EventManagement/EventRegistrant/Registrations.mocks/variables/REGISTRANTS_MOCKS_ERROR.md b/docs/docs/auto-docs/components/EventManagement/EventRegistrant/Registrations.mocks/variables/REGISTRANTS_MOCKS_ERROR.md new file mode 100644 index 0000000000..6742d796fa --- /dev/null +++ b/docs/docs/auto-docs/components/EventManagement/EventRegistrant/Registrations.mocks/variables/REGISTRANTS_MOCKS_ERROR.md @@ -0,0 +1,33 @@ +[**talawa-admin**](../../../../../README.md) + +*** + +[talawa-admin](../../../../../modules.md) / [components/EventManagement/EventRegistrant/Registrations.mocks](../README.md) / REGISTRANTS\_MOCKS\_ERROR + +# Variable: REGISTRANTS\_MOCKS\_ERROR + +> `const` **REGISTRANTS\_MOCKS\_ERROR**: `object`[] + +Defined in: [src/components/EventManagement/EventRegistrant/Registrations.mocks.ts:58](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/EventManagement/EventRegistrant/Registrations.mocks.ts#L58) + +## Type declaration + +### error + +> **error**: `Error` + +### request + +> **request**: `object` + +#### request.query + +> **query**: `DocumentNode` = `EVENT_REGISTRANTS` + +#### request.variables + +> **variables**: `object` + +#### request.variables.eventId + +> **eventId**: `string` = `'event123'` diff --git a/docs/docs/auto-docs/components/EventRegistrantsModal/AddOnSpotAttendee/README.md b/docs/docs/auto-docs/components/EventRegistrantsModal/AddOnSpotAttendee/README.md new file mode 100644 index 0000000000..0d20c6918e --- /dev/null +++ b/docs/docs/auto-docs/components/EventRegistrantsModal/AddOnSpotAttendee/README.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / components/EventRegistrantsModal/AddOnSpotAttendee + +# components/EventRegistrantsModal/AddOnSpotAttendee + +## Functions + +- [default](functions/default.md) diff --git a/docs/docs/auto-docs/components/EventRegistrantsModal/AddOnSpotAttendee/functions/default.md b/docs/docs/auto-docs/components/EventRegistrantsModal/AddOnSpotAttendee/functions/default.md new file mode 100644 index 0000000000..e819d24532 --- /dev/null +++ b/docs/docs/auto-docs/components/EventRegistrantsModal/AddOnSpotAttendee/functions/default.md @@ -0,0 +1,35 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [components/EventRegistrantsModal/AddOnSpotAttendee](../README.md) / default + +# Function: default() + +> **default**(`props`, `deprecatedLegacyContext`?): `ReactNode` + +Defined in: [src/components/EventRegistrantsModal/AddOnSpotAttendee.tsx:21](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/EventRegistrantsModal/AddOnSpotAttendee.tsx#L21) + +Modal component for adding on-spot attendees to an event + +## Parameters + +### props + +[`InterfaceAddOnSpotAttendeeProps`](../../../../utils/interfaces/interfaces/InterfaceAddOnSpotAttendeeProps.md) + +### deprecatedLegacyContext? + +`any` + +**Deprecated** + +**See** + +[React Docs](https://legacy.reactjs.org/docs/legacy-context.html#referencing-context-in-lifecycle-methods) + +## Returns + +`ReactNode` + +Modal component with form for adding new attendee diff --git a/docs/docs/auto-docs/components/EventRegistrantsModal/EventRegistrantsModal/README.md b/docs/docs/auto-docs/components/EventRegistrantsModal/EventRegistrantsModal/README.md new file mode 100644 index 0000000000..f4c911304e --- /dev/null +++ b/docs/docs/auto-docs/components/EventRegistrantsModal/EventRegistrantsModal/README.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / components/EventRegistrantsModal/EventRegistrantsModal + +# components/EventRegistrantsModal/EventRegistrantsModal + +## Functions + +- [EventRegistrantsModal](functions/EventRegistrantsModal.md) diff --git a/docs/docs/auto-docs/components/EventRegistrantsModal/EventRegistrantsModal/functions/EventRegistrantsModal.md b/docs/docs/auto-docs/components/EventRegistrantsModal/EventRegistrantsModal/functions/EventRegistrantsModal.md new file mode 100644 index 0000000000..df455a00c6 --- /dev/null +++ b/docs/docs/auto-docs/components/EventRegistrantsModal/EventRegistrantsModal/functions/EventRegistrantsModal.md @@ -0,0 +1,26 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [components/EventRegistrantsModal/EventRegistrantsModal](../README.md) / EventRegistrantsModal + +# Function: EventRegistrantsModal() + +> **EventRegistrantsModal**(`props`): `Element` + +Defined in: [src/components/EventRegistrantsModal/EventRegistrantsModal.tsx:44](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/EventRegistrantsModal/EventRegistrantsModal.tsx#L44) + +Modal component for managing event registrants. +Allows adding and removing attendees from an event. + +## Parameters + +### props + +`ModalPropType` + +## Returns + +`Element` + +JSX element representing the modal. diff --git a/docs/docs/auto-docs/components/EventRegistrantsModal/EventRegistrantsWrapper/README.md b/docs/docs/auto-docs/components/EventRegistrantsModal/EventRegistrantsWrapper/README.md new file mode 100644 index 0000000000..198804f459 --- /dev/null +++ b/docs/docs/auto-docs/components/EventRegistrantsModal/EventRegistrantsWrapper/README.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / components/EventRegistrantsModal/EventRegistrantsWrapper + +# components/EventRegistrantsModal/EventRegistrantsWrapper + +## Functions + +- [EventRegistrantsWrapper](functions/EventRegistrantsWrapper.md) diff --git a/docs/docs/auto-docs/components/EventRegistrantsModal/EventRegistrantsWrapper/functions/EventRegistrantsWrapper.md b/docs/docs/auto-docs/components/EventRegistrantsModal/EventRegistrantsWrapper/functions/EventRegistrantsWrapper.md new file mode 100644 index 0000000000..0bd2a280f1 --- /dev/null +++ b/docs/docs/auto-docs/components/EventRegistrantsModal/EventRegistrantsWrapper/functions/EventRegistrantsWrapper.md @@ -0,0 +1,25 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [components/EventRegistrantsModal/EventRegistrantsWrapper](../README.md) / EventRegistrantsWrapper + +# Function: EventRegistrantsWrapper() + +> **EventRegistrantsWrapper**(`__namedParameters`): `Element` + +Defined in: [src/components/EventRegistrantsModal/EventRegistrantsWrapper.tsx:20](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/EventRegistrantsModal/EventRegistrantsWrapper.tsx#L20) + +Wrapper component that displays a button to show the event registrants modal. + +## Parameters + +### \_\_namedParameters + +`PropType` + +## Returns + +`Element` + +JSX element representing the wrapper with a button to show the modal. diff --git a/docs/docs/auto-docs/components/EventStats/EventStats/README.md b/docs/docs/auto-docs/components/EventStats/EventStats/README.md new file mode 100644 index 0000000000..37b49f4e4e --- /dev/null +++ b/docs/docs/auto-docs/components/EventStats/EventStats/README.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / components/EventStats/EventStats + +# components/EventStats/EventStats + +## Functions + +- [EventStats](functions/EventStats.md) diff --git a/docs/docs/auto-docs/components/EventStats/EventStats/functions/EventStats.md b/docs/docs/auto-docs/components/EventStats/EventStats/functions/EventStats.md new file mode 100644 index 0000000000..378924d9d7 --- /dev/null +++ b/docs/docs/auto-docs/components/EventStats/EventStats/functions/EventStats.md @@ -0,0 +1,26 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [components/EventStats/EventStats](../README.md) / EventStats + +# Function: EventStats() + +> **EventStats**(`__namedParameters`): `Element` + +Defined in: [src/components/EventStats/EventStats.tsx:27](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/EventStats/EventStats.tsx#L27) + +Component that displays event statistics in a modal. +Shows feedback, reviews, and average rating for the event. + +## Parameters + +### \_\_namedParameters + +`ModalPropType` + +## Returns + +`Element` + +JSX element representing the event statistics modal. diff --git a/docs/docs/auto-docs/components/EventStats/EventStatsWrapper/README.md b/docs/docs/auto-docs/components/EventStats/EventStatsWrapper/README.md new file mode 100644 index 0000000000..5e00a71e19 --- /dev/null +++ b/docs/docs/auto-docs/components/EventStats/EventStatsWrapper/README.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / components/EventStats/EventStatsWrapper + +# components/EventStats/EventStatsWrapper + +## Functions + +- [EventStatsWrapper](functions/EventStatsWrapper.md) diff --git a/docs/docs/auto-docs/components/EventStats/EventStatsWrapper/functions/EventStatsWrapper.md b/docs/docs/auto-docs/components/EventStats/EventStatsWrapper/functions/EventStatsWrapper.md new file mode 100644 index 0000000000..6b16d5e7e5 --- /dev/null +++ b/docs/docs/auto-docs/components/EventStats/EventStatsWrapper/functions/EventStatsWrapper.md @@ -0,0 +1,27 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [components/EventStats/EventStatsWrapper](../README.md) / EventStatsWrapper + +# Function: EventStatsWrapper() + +> **EventStatsWrapper**(`eventId`): `Element` + +Defined in: [src/components/EventStats/EventStatsWrapper.tsx:18](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/EventStats/EventStatsWrapper.tsx#L18) + +Wrapper component that displays a button to show event statistics. + +## Parameters + +### eventId + +`PropType` + +The ID of the event. + +## Returns + +`Element` + +JSX element representing the wrapper with a button to view event statistics. diff --git a/docs/docs/auto-docs/components/EventStats/Statistics/AverageRating/README.md b/docs/docs/auto-docs/components/EventStats/Statistics/AverageRating/README.md new file mode 100644 index 0000000000..8f37a3f2fb --- /dev/null +++ b/docs/docs/auto-docs/components/EventStats/Statistics/AverageRating/README.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / components/EventStats/Statistics/AverageRating + +# components/EventStats/Statistics/AverageRating + +## Functions + +- [AverageRating](functions/AverageRating.md) diff --git a/docs/docs/auto-docs/components/EventStats/Statistics/AverageRating/functions/AverageRating.md b/docs/docs/auto-docs/components/EventStats/Statistics/AverageRating/functions/AverageRating.md new file mode 100644 index 0000000000..a82b5df2a5 --- /dev/null +++ b/docs/docs/auto-docs/components/EventStats/Statistics/AverageRating/functions/AverageRating.md @@ -0,0 +1,28 @@ +[**talawa-admin**](../../../../../README.md) + +*** + +[talawa-admin](../../../../../modules.md) / [components/EventStats/Statistics/AverageRating](../README.md) / AverageRating + +# Function: AverageRating() + +> **AverageRating**(`data`): `Element` + +Defined in: [src/components/EventStats/Statistics/AverageRating.tsx:33](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/EventStats/Statistics/AverageRating.tsx#L33) + +Component that displays the average rating for an event. +Shows a rating value and a star rating icon. + +## Parameters + +### data + +`ModalPropType` + +Data containing the average feedback score to be displayed. + +## Returns + +`Element` + +JSX element representing the average rating card with a star rating. diff --git a/docs/docs/auto-docs/components/EventStats/Statistics/Feedback/README.md b/docs/docs/auto-docs/components/EventStats/Statistics/Feedback/README.md new file mode 100644 index 0000000000..b319a633ca --- /dev/null +++ b/docs/docs/auto-docs/components/EventStats/Statistics/Feedback/README.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / components/EventStats/Statistics/Feedback + +# components/EventStats/Statistics/Feedback + +## Functions + +- [FeedbackStats](functions/FeedbackStats.md) diff --git a/docs/docs/auto-docs/components/EventStats/Statistics/Feedback/functions/FeedbackStats.md b/docs/docs/auto-docs/components/EventStats/Statistics/Feedback/functions/FeedbackStats.md new file mode 100644 index 0000000000..4e3fce0e64 --- /dev/null +++ b/docs/docs/auto-docs/components/EventStats/Statistics/Feedback/functions/FeedbackStats.md @@ -0,0 +1,28 @@ +[**talawa-admin**](../../../../../README.md) + +*** + +[talawa-admin](../../../../../modules.md) / [components/EventStats/Statistics/Feedback](../README.md) / FeedbackStats + +# Function: FeedbackStats() + +> **FeedbackStats**(`data`): `Element` + +Defined in: [src/components/EventStats/Statistics/Feedback.tsx:34](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/EventStats/Statistics/Feedback.tsx#L34) + +Component that displays a pie chart of feedback ratings for an event. +Shows how many people gave each rating. + +## Parameters + +### data + +`ModalPropType` + +Data containing event feedback to be displayed in the chart. + +## Returns + +`Element` + +JSX element representing the feedback analysis card with a pie chart. diff --git a/docs/docs/auto-docs/components/EventStats/Statistics/Review/README.md b/docs/docs/auto-docs/components/EventStats/Statistics/Review/README.md new file mode 100644 index 0000000000..570c0082b2 --- /dev/null +++ b/docs/docs/auto-docs/components/EventStats/Statistics/Review/README.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / components/EventStats/Statistics/Review + +# components/EventStats/Statistics/Review + +## Functions + +- [ReviewStats](functions/ReviewStats.md) diff --git a/docs/docs/auto-docs/components/EventStats/Statistics/Review/functions/ReviewStats.md b/docs/docs/auto-docs/components/EventStats/Statistics/Review/functions/ReviewStats.md new file mode 100644 index 0000000000..579ec75733 --- /dev/null +++ b/docs/docs/auto-docs/components/EventStats/Statistics/Review/functions/ReviewStats.md @@ -0,0 +1,28 @@ +[**talawa-admin**](../../../../../README.md) + +*** + +[talawa-admin](../../../../../modules.md) / [components/EventStats/Statistics/Review](../README.md) / ReviewStats + +# Function: ReviewStats() + +> **ReviewStats**(`data`): `Element` + +Defined in: [src/components/EventStats/Statistics/Review.tsx:30](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/EventStats/Statistics/Review.tsx#L30) + +Component that displays reviews for an event. +Shows a list of reviews with ratings and text. + +## Parameters + +### data + +`ModalPropType` + +Data containing event feedback to be displayed. + +## Returns + +`Element` + +JSX element representing the reviews card. diff --git a/docs/docs/auto-docs/components/GroupChatDetails/GroupChatDetails/README.md b/docs/docs/auto-docs/components/GroupChatDetails/GroupChatDetails/README.md new file mode 100644 index 0000000000..262c3f8919 --- /dev/null +++ b/docs/docs/auto-docs/components/GroupChatDetails/GroupChatDetails/README.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / components/GroupChatDetails/GroupChatDetails + +# components/GroupChatDetails/GroupChatDetails + +## Functions + +- [default](functions/default.md) diff --git a/docs/docs/auto-docs/components/GroupChatDetails/GroupChatDetails/functions/default.md b/docs/docs/auto-docs/components/GroupChatDetails/GroupChatDetails/functions/default.md new file mode 100644 index 0000000000..4b43ce775e --- /dev/null +++ b/docs/docs/auto-docs/components/GroupChatDetails/GroupChatDetails/functions/default.md @@ -0,0 +1,25 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [components/GroupChatDetails/GroupChatDetails](../README.md) / default + +# Function: default() + +> **default**(`__namedParameters`): `JSX.Element` + +Defined in: [src/components/GroupChatDetails/GroupChatDetails.tsx:120](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/GroupChatDetails/GroupChatDetails.tsx#L120) + +Component for displaying and managing group chat details. + +## Parameters + +### \_\_namedParameters + +`InterfaceGoroupChatDetailsProps` + +## Returns + +`JSX.Element` + +The rendered component. diff --git a/docs/docs/auto-docs/components/HolidayCards/HolidayCard/README.md b/docs/docs/auto-docs/components/HolidayCards/HolidayCard/README.md new file mode 100644 index 0000000000..4bf1aa700e --- /dev/null +++ b/docs/docs/auto-docs/components/HolidayCards/HolidayCard/README.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / components/HolidayCards/HolidayCard + +# components/HolidayCards/HolidayCard + +## Functions + +- [default](functions/default.md) diff --git a/docs/docs/auto-docs/components/HolidayCards/HolidayCard/functions/default.md b/docs/docs/auto-docs/components/HolidayCards/HolidayCard/functions/default.md new file mode 100644 index 0000000000..1883ee450f --- /dev/null +++ b/docs/docs/auto-docs/components/HolidayCards/HolidayCard/functions/default.md @@ -0,0 +1,27 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [components/HolidayCards/HolidayCard](../README.md) / default + +# Function: default() + +> **default**(`props`): `Element` + +Defined in: [src/components/HolidayCards/HolidayCard.tsx:15](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/HolidayCards/HolidayCard.tsx#L15) + +Component that displays a card with the name of a holiday. + +## Parameters + +### props + +`InterfaceHolidayList` + +Contains the holidayName to be displayed on the card. + +## Returns + +`Element` + +JSX element representing a card with the holiday name. diff --git a/docs/docs/auto-docs/components/IconComponent/IconComponent/README.md b/docs/docs/auto-docs/components/IconComponent/IconComponent/README.md new file mode 100644 index 0000000000..925ecf21a9 --- /dev/null +++ b/docs/docs/auto-docs/components/IconComponent/IconComponent/README.md @@ -0,0 +1,15 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / components/IconComponent/IconComponent + +# components/IconComponent/IconComponent + +## Interfaces + +- [InterfaceIconComponent](interfaces/InterfaceIconComponent.md) + +## Functions + +- [default](functions/default.md) diff --git a/docs/docs/auto-docs/components/IconComponent/IconComponent/functions/default.md b/docs/docs/auto-docs/components/IconComponent/IconComponent/functions/default.md new file mode 100644 index 0000000000..2822630b89 --- /dev/null +++ b/docs/docs/auto-docs/components/IconComponent/IconComponent/functions/default.md @@ -0,0 +1,27 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [components/IconComponent/IconComponent](../README.md) / default + +# Function: default() + +> **default**(`props`): `Element` + +Defined in: [src/components/IconComponent/IconComponent.tsx:39](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/IconComponent/IconComponent.tsx#L39) + +Renders an icon based on the provided name. + +## Parameters + +### props + +[`InterfaceIconComponent`](../interfaces/InterfaceIconComponent.md) + +Contains the name of the icon and optional styles (fill, height, width). + +## Returns + +`Element` + +JSX element representing the icon. diff --git a/docs/docs/auto-docs/components/IconComponent/IconComponent/interfaces/InterfaceIconComponent.md b/docs/docs/auto-docs/components/IconComponent/IconComponent/interfaces/InterfaceIconComponent.md new file mode 100644 index 0000000000..72955d55ff --- /dev/null +++ b/docs/docs/auto-docs/components/IconComponent/IconComponent/interfaces/InterfaceIconComponent.md @@ -0,0 +1,41 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [components/IconComponent/IconComponent](../README.md) / InterfaceIconComponent + +# Interface: InterfaceIconComponent + +Defined in: [src/components/IconComponent/IconComponent.tsx:27](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/IconComponent/IconComponent.tsx#L27) + +## Properties + +### fill? + +> `optional` **fill**: `string` + +Defined in: [src/components/IconComponent/IconComponent.tsx:29](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/IconComponent/IconComponent.tsx#L29) + +*** + +### height? + +> `optional` **height**: `string` + +Defined in: [src/components/IconComponent/IconComponent.tsx:30](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/IconComponent/IconComponent.tsx#L30) + +*** + +### name + +> **name**: `string` + +Defined in: [src/components/IconComponent/IconComponent.tsx:28](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/IconComponent/IconComponent.tsx#L28) + +*** + +### width? + +> `optional` **width**: `string` + +Defined in: [src/components/IconComponent/IconComponent.tsx:31](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/IconComponent/IconComponent.tsx#L31) diff --git a/docs/docs/auto-docs/components/InfiniteScrollLoader/InfiniteScrollLoader/README.md b/docs/docs/auto-docs/components/InfiniteScrollLoader/InfiniteScrollLoader/README.md new file mode 100644 index 0000000000..3d896e2472 --- /dev/null +++ b/docs/docs/auto-docs/components/InfiniteScrollLoader/InfiniteScrollLoader/README.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / components/InfiniteScrollLoader/InfiniteScrollLoader + +# components/InfiniteScrollLoader/InfiniteScrollLoader + +## Functions + +- [default](functions/default.md) diff --git a/docs/docs/auto-docs/components/InfiniteScrollLoader/InfiniteScrollLoader/functions/default.md b/docs/docs/auto-docs/components/InfiniteScrollLoader/InfiniteScrollLoader/functions/default.md new file mode 100644 index 0000000000..de12177c4d --- /dev/null +++ b/docs/docs/auto-docs/components/InfiniteScrollLoader/InfiniteScrollLoader/functions/default.md @@ -0,0 +1,17 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [components/InfiniteScrollLoader/InfiniteScrollLoader](../README.md) / default + +# Function: default() + +> **default**(): `Element` + +Defined in: [src/components/InfiniteScrollLoader/InfiniteScrollLoader.tsx:8](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/InfiniteScrollLoader/InfiniteScrollLoader.tsx#L8) + +A Loader for infinite scroll. + +## Returns + +`Element` diff --git a/docs/docs/auto-docs/components/LeftDrawer/LeftDrawer/README.md b/docs/docs/auto-docs/components/LeftDrawer/LeftDrawer/README.md new file mode 100644 index 0000000000..aa0d9e2266 --- /dev/null +++ b/docs/docs/auto-docs/components/LeftDrawer/LeftDrawer/README.md @@ -0,0 +1,15 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / components/LeftDrawer/LeftDrawer + +# components/LeftDrawer/LeftDrawer + +## Interfaces + +- [InterfaceLeftDrawerProps](interfaces/InterfaceLeftDrawerProps.md) + +## Functions + +- [default](functions/default.md) diff --git a/docs/docs/auto-docs/components/LeftDrawer/LeftDrawer/functions/default.md b/docs/docs/auto-docs/components/LeftDrawer/LeftDrawer/functions/default.md new file mode 100644 index 0000000000..d1ebf71fdf --- /dev/null +++ b/docs/docs/auto-docs/components/LeftDrawer/LeftDrawer/functions/default.md @@ -0,0 +1,25 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [components/LeftDrawer/LeftDrawer](../README.md) / default + +# Function: default() + +> **default**(`__namedParameters`): `Element` + +Defined in: [src/components/LeftDrawer/LeftDrawer.tsx:24](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/LeftDrawer/LeftDrawer.tsx#L24) + +LeftDrawer component for displaying navigation options. + +## Parameters + +### \_\_namedParameters + +[`InterfaceLeftDrawerProps`](../interfaces/InterfaceLeftDrawerProps.md) + +## Returns + +`Element` + +JSX element for the left navigation drawer. diff --git a/docs/docs/auto-docs/components/LeftDrawer/LeftDrawer/interfaces/InterfaceLeftDrawerProps.md b/docs/docs/auto-docs/components/LeftDrawer/LeftDrawer/interfaces/InterfaceLeftDrawerProps.md new file mode 100644 index 0000000000..ff48534a2f --- /dev/null +++ b/docs/docs/auto-docs/components/LeftDrawer/LeftDrawer/interfaces/InterfaceLeftDrawerProps.md @@ -0,0 +1,25 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [components/LeftDrawer/LeftDrawer](../README.md) / InterfaceLeftDrawerProps + +# Interface: InterfaceLeftDrawerProps + +Defined in: [src/components/LeftDrawer/LeftDrawer.tsx:12](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/LeftDrawer/LeftDrawer.tsx#L12) + +## Properties + +### hideDrawer + +> **hideDrawer**: `null` \| `boolean` + +Defined in: [src/components/LeftDrawer/LeftDrawer.tsx:13](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/LeftDrawer/LeftDrawer.tsx#L13) + +*** + +### setHideDrawer + +> **setHideDrawer**: `Dispatch`\<`SetStateAction`\<`null` \| `boolean`\>\> + +Defined in: [src/components/LeftDrawer/LeftDrawer.tsx:14](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/LeftDrawer/LeftDrawer.tsx#L14) diff --git a/docs/docs/auto-docs/components/LeftDrawerOrg/LeftDrawerOrg/README.md b/docs/docs/auto-docs/components/LeftDrawerOrg/LeftDrawerOrg/README.md new file mode 100644 index 0000000000..eba6903f72 --- /dev/null +++ b/docs/docs/auto-docs/components/LeftDrawerOrg/LeftDrawerOrg/README.md @@ -0,0 +1,15 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / components/LeftDrawerOrg/LeftDrawerOrg + +# components/LeftDrawerOrg/LeftDrawerOrg + +## Interfaces + +- [InterfaceLeftDrawerProps](interfaces/InterfaceLeftDrawerProps.md) + +## Functions + +- [default](functions/default.md) diff --git a/docs/docs/auto-docs/components/LeftDrawerOrg/LeftDrawerOrg/functions/default.md b/docs/docs/auto-docs/components/LeftDrawerOrg/LeftDrawerOrg/functions/default.md new file mode 100644 index 0000000000..3d2034a5f5 --- /dev/null +++ b/docs/docs/auto-docs/components/LeftDrawerOrg/LeftDrawerOrg/functions/default.md @@ -0,0 +1,25 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [components/LeftDrawerOrg/LeftDrawerOrg](../README.md) / default + +# Function: default() + +> **default**(`__namedParameters`): `Element` + +Defined in: [src/components/LeftDrawerOrg/LeftDrawerOrg.tsx:35](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/LeftDrawerOrg/LeftDrawerOrg.tsx#L35) + +LeftDrawerOrg component for displaying organization details and navigation options. + +## Parameters + +### \_\_namedParameters + +[`InterfaceLeftDrawerProps`](../interfaces/InterfaceLeftDrawerProps.md) + +## Returns + +`Element` + +JSX element for the left navigation drawer with organization details. diff --git a/docs/docs/auto-docs/components/LeftDrawerOrg/LeftDrawerOrg/interfaces/InterfaceLeftDrawerProps.md b/docs/docs/auto-docs/components/LeftDrawerOrg/LeftDrawerOrg/interfaces/InterfaceLeftDrawerProps.md new file mode 100644 index 0000000000..27cf8cbf67 --- /dev/null +++ b/docs/docs/auto-docs/components/LeftDrawerOrg/LeftDrawerOrg/interfaces/InterfaceLeftDrawerProps.md @@ -0,0 +1,41 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [components/LeftDrawerOrg/LeftDrawerOrg](../README.md) / InterfaceLeftDrawerProps + +# Interface: InterfaceLeftDrawerProps + +Defined in: [src/components/LeftDrawerOrg/LeftDrawerOrg.tsx:18](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/LeftDrawerOrg/LeftDrawerOrg.tsx#L18) + +## Properties + +### hideDrawer + +> **hideDrawer**: `null` \| `boolean` + +Defined in: [src/components/LeftDrawerOrg/LeftDrawerOrg.tsx:21](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/LeftDrawerOrg/LeftDrawerOrg.tsx#L21) + +*** + +### orgId + +> **orgId**: `string` + +Defined in: [src/components/LeftDrawerOrg/LeftDrawerOrg.tsx:19](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/LeftDrawerOrg/LeftDrawerOrg.tsx#L19) + +*** + +### setHideDrawer + +> **setHideDrawer**: `Dispatch`\<`SetStateAction`\<`null` \| `boolean`\>\> + +Defined in: [src/components/LeftDrawerOrg/LeftDrawerOrg.tsx:22](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/LeftDrawerOrg/LeftDrawerOrg.tsx#L22) + +*** + +### targets + +> **targets**: [`TargetsType`](../../../../state/reducers/routesReducer/type-aliases/TargetsType.md)[] + +Defined in: [src/components/LeftDrawerOrg/LeftDrawerOrg.tsx:20](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/LeftDrawerOrg/LeftDrawerOrg.tsx#L20) diff --git a/docs/docs/auto-docs/components/Loader/Loader/README.md b/docs/docs/auto-docs/components/Loader/Loader/README.md new file mode 100644 index 0000000000..6121de4969 --- /dev/null +++ b/docs/docs/auto-docs/components/Loader/Loader/README.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / components/Loader/Loader + +# components/Loader/Loader + +## Functions + +- [default](functions/default.md) diff --git a/docs/docs/auto-docs/components/Loader/Loader/functions/default.md b/docs/docs/auto-docs/components/Loader/Loader/functions/default.md new file mode 100644 index 0000000000..5e271e3c8a --- /dev/null +++ b/docs/docs/auto-docs/components/Loader/Loader/functions/default.md @@ -0,0 +1,25 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [components/Loader/Loader](../README.md) / default + +# Function: default() + +> **default**(`props`): `Element` + +Defined in: [src/components/Loader/Loader.tsx:17](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/Loader/Loader.tsx#L17) + +Loader component for displaying a loading spinner. + +## Parameters + +### props + +`InterfaceLoaderProps` + +## Returns + +`Element` + +JSX element for a loading spinner. diff --git a/docs/docs/auto-docs/components/LoginPortalToggle/LoginPortalToggle/README.md b/docs/docs/auto-docs/components/LoginPortalToggle/LoginPortalToggle/README.md new file mode 100644 index 0000000000..e671f4ec8f --- /dev/null +++ b/docs/docs/auto-docs/components/LoginPortalToggle/LoginPortalToggle/README.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / components/LoginPortalToggle/LoginPortalToggle + +# components/LoginPortalToggle/LoginPortalToggle + +## Functions + +- [default](functions/default.md) diff --git a/docs/docs/auto-docs/components/LoginPortalToggle/LoginPortalToggle/functions/default.md b/docs/docs/auto-docs/components/LoginPortalToggle/LoginPortalToggle/functions/default.md new file mode 100644 index 0000000000..51acbc4c26 --- /dev/null +++ b/docs/docs/auto-docs/components/LoginPortalToggle/LoginPortalToggle/functions/default.md @@ -0,0 +1,27 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [components/LoginPortalToggle/LoginPortalToggle](../README.md) / default + +# Function: default() + +> **default**(`onToggle`): `JSX.Element` + +Defined in: [src/components/LoginPortalToggle/LoginPortalToggle.tsx:18](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/LoginPortalToggle/LoginPortalToggle.tsx#L18) + +Component for toggling between admin and user login portals. + +## Parameters + +### onToggle + +`InterfaceLoginPortalToggleProps` + +Callback function to handle role changes ('admin' or 'user'). + +## Returns + +`JSX.Element` + +JSX element for login portal toggle. diff --git a/docs/docs/auto-docs/components/MemberDetail/EventsAttendedByMember/README.md b/docs/docs/auto-docs/components/MemberDetail/EventsAttendedByMember/README.md new file mode 100644 index 0000000000..f6d25bb237 --- /dev/null +++ b/docs/docs/auto-docs/components/MemberDetail/EventsAttendedByMember/README.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / components/MemberDetail/EventsAttendedByMember + +# components/MemberDetail/EventsAttendedByMember + +## Functions + +- [default](functions/default.md) diff --git a/docs/docs/auto-docs/components/MemberDetail/EventsAttendedByMember/functions/default.md b/docs/docs/auto-docs/components/MemberDetail/EventsAttendedByMember/functions/default.md new file mode 100644 index 0000000000..d7fb78111a --- /dev/null +++ b/docs/docs/auto-docs/components/MemberDetail/EventsAttendedByMember/functions/default.md @@ -0,0 +1,21 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [components/MemberDetail/EventsAttendedByMember](../README.md) / default + +# Function: default() + +> **default**(`__namedParameters`): `JSX.Element` + +Defined in: [src/components/MemberDetail/EventsAttendedByMember.tsx:15](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/MemberDetail/EventsAttendedByMember.tsx#L15) + +## Parameters + +### \_\_namedParameters + +`InterfaceEventsAttendedByMember` + +## Returns + +`JSX.Element` diff --git a/docs/docs/auto-docs/components/MemberDetail/EventsAttendedCardItem/README.md b/docs/docs/auto-docs/components/MemberDetail/EventsAttendedCardItem/README.md new file mode 100644 index 0000000000..54a651098f --- /dev/null +++ b/docs/docs/auto-docs/components/MemberDetail/EventsAttendedCardItem/README.md @@ -0,0 +1,15 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / components/MemberDetail/EventsAttendedCardItem + +# components/MemberDetail/EventsAttendedCardItem + +## Interfaces + +- [InterfaceCardItem](interfaces/InterfaceCardItem.md) + +## Functions + +- [default](functions/default.md) diff --git a/docs/docs/auto-docs/components/MemberDetail/EventsAttendedCardItem/functions/default.md b/docs/docs/auto-docs/components/MemberDetail/EventsAttendedCardItem/functions/default.md new file mode 100644 index 0000000000..cfe2e91bbd --- /dev/null +++ b/docs/docs/auto-docs/components/MemberDetail/EventsAttendedCardItem/functions/default.md @@ -0,0 +1,21 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [components/MemberDetail/EventsAttendedCardItem](../README.md) / default + +# Function: default() + +> **default**(`props`): `Element` + +Defined in: [src/components/MemberDetail/EventsAttendedCardItem.tsx:26](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/MemberDetail/EventsAttendedCardItem.tsx#L26) + +## Parameters + +### props + +[`InterfaceCardItem`](../interfaces/InterfaceCardItem.md) + +## Returns + +`Element` diff --git a/docs/docs/auto-docs/components/MemberDetail/EventsAttendedCardItem/interfaces/InterfaceCardItem.md b/docs/docs/auto-docs/components/MemberDetail/EventsAttendedCardItem/interfaces/InterfaceCardItem.md new file mode 100644 index 0000000000..5b5065faee --- /dev/null +++ b/docs/docs/auto-docs/components/MemberDetail/EventsAttendedCardItem/interfaces/InterfaceCardItem.md @@ -0,0 +1,88 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [components/MemberDetail/EventsAttendedCardItem](../README.md) / InterfaceCardItem + +# Interface: InterfaceCardItem + +Defined in: [src/components/MemberDetail/EventsAttendedCardItem.tsx:16](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/MemberDetail/EventsAttendedCardItem.tsx#L16) + +Card component to display individual event attendance information +Shows event details including title, date, location and organization + +## Param + +Organization ID + +## Param + +Event ID + +## Param + +Event start date + +## Param + +Event title + +## Param + +Event location + +## Properties + +### creator? + +> `optional` **creator**: `string` + +Defined in: [src/components/MemberDetail/EventsAttendedCardItem.tsx:20](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/MemberDetail/EventsAttendedCardItem.tsx#L20) + +*** + +### eventId? + +> `optional` **eventId**: `string` + +Defined in: [src/components/MemberDetail/EventsAttendedCardItem.tsx:22](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/MemberDetail/EventsAttendedCardItem.tsx#L22) + +*** + +### location? + +> `optional` **location**: `string` + +Defined in: [src/components/MemberDetail/EventsAttendedCardItem.tsx:21](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/MemberDetail/EventsAttendedCardItem.tsx#L21) + +*** + +### orgId? + +> `optional` **orgId**: `string` + +Defined in: [src/components/MemberDetail/EventsAttendedCardItem.tsx:23](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/MemberDetail/EventsAttendedCardItem.tsx#L23) + +*** + +### startdate? + +> `optional` **startdate**: `string` + +Defined in: [src/components/MemberDetail/EventsAttendedCardItem.tsx:19](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/MemberDetail/EventsAttendedCardItem.tsx#L19) + +*** + +### time? + +> `optional` **time**: `string` + +Defined in: [src/components/MemberDetail/EventsAttendedCardItem.tsx:18](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/MemberDetail/EventsAttendedCardItem.tsx#L18) + +*** + +### title + +> **title**: `string` + +Defined in: [src/components/MemberDetail/EventsAttendedCardItem.tsx:17](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/MemberDetail/EventsAttendedCardItem.tsx#L17) diff --git a/docs/docs/auto-docs/components/MemberDetail/EventsAttendedMemberModal/README.md b/docs/docs/auto-docs/components/MemberDetail/EventsAttendedMemberModal/README.md new file mode 100644 index 0000000000..fb1b316570 --- /dev/null +++ b/docs/docs/auto-docs/components/MemberDetail/EventsAttendedMemberModal/README.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / components/MemberDetail/EventsAttendedMemberModal + +# components/MemberDetail/EventsAttendedMemberModal + +## Functions + +- [default](functions/default.md) diff --git a/docs/docs/auto-docs/components/MemberDetail/EventsAttendedMemberModal/functions/default.md b/docs/docs/auto-docs/components/MemberDetail/EventsAttendedMemberModal/functions/default.md new file mode 100644 index 0000000000..c6cee6c20c --- /dev/null +++ b/docs/docs/auto-docs/components/MemberDetail/EventsAttendedMemberModal/functions/default.md @@ -0,0 +1,31 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [components/MemberDetail/EventsAttendedMemberModal](../README.md) / default + +# Function: default() + +> **default**(`props`, `deprecatedLegacyContext`?): `ReactNode` + +Defined in: [src/components/MemberDetail/EventsAttendedMemberModal.tsx:39](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/MemberDetail/EventsAttendedMemberModal.tsx#L39) + +## Parameters + +### props + +`InterfaceEventsAttendedMemberModalProps` + +### deprecatedLegacyContext? + +`any` + +**Deprecated** + +**See** + +[React Docs](https://legacy.reactjs.org/docs/legacy-context.html#referencing-context-in-lifecycle-methods) + +## Returns + +`ReactNode` diff --git a/docs/docs/auto-docs/components/MemberDetail/customTableCell/README.md b/docs/docs/auto-docs/components/MemberDetail/customTableCell/README.md new file mode 100644 index 0000000000..b73565cc94 --- /dev/null +++ b/docs/docs/auto-docs/components/MemberDetail/customTableCell/README.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / components/MemberDetail/customTableCell + +# components/MemberDetail/customTableCell + +## Functions + +- [CustomTableCell](functions/CustomTableCell.md) diff --git a/docs/docs/auto-docs/components/MemberDetail/customTableCell/functions/CustomTableCell.md b/docs/docs/auto-docs/components/MemberDetail/customTableCell/functions/CustomTableCell.md new file mode 100644 index 0000000000..18fd6cf0e6 --- /dev/null +++ b/docs/docs/auto-docs/components/MemberDetail/customTableCell/functions/CustomTableCell.md @@ -0,0 +1,37 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [components/MemberDetail/customTableCell](../README.md) / CustomTableCell + +# Function: CustomTableCell() + +> **CustomTableCell**(`props`, `deprecatedLegacyContext`?): `ReactNode` + +Defined in: [src/components/MemberDetail/customTableCell.tsx:13](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/MemberDetail/customTableCell.tsx#L13) + +Custom table cell component to display event details + +## Parameters + +### props + +#### eventId + +`string` + +### deprecatedLegacyContext? + +`any` + +**Deprecated** + +**See** + +[React Docs](https://legacy.reactjs.org/docs/legacy-context.html#referencing-context-in-lifecycle-methods) + +## Returns + +`ReactNode` + +TableRow component with event information diff --git a/docs/docs/auto-docs/components/MemberRequestCard/MemberRequestCard/README.md b/docs/docs/auto-docs/components/MemberRequestCard/MemberRequestCard/README.md new file mode 100644 index 0000000000..0e2ff9bf92 --- /dev/null +++ b/docs/docs/auto-docs/components/MemberRequestCard/MemberRequestCard/README.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / components/MemberRequestCard/MemberRequestCard + +# components/MemberRequestCard/MemberRequestCard + +## Functions + +- [default](functions/default.md) diff --git a/docs/docs/auto-docs/components/MemberRequestCard/MemberRequestCard/functions/default.md b/docs/docs/auto-docs/components/MemberRequestCard/MemberRequestCard/functions/default.md new file mode 100644 index 0000000000..80dc0ac3dd --- /dev/null +++ b/docs/docs/auto-docs/components/MemberRequestCard/MemberRequestCard/functions/default.md @@ -0,0 +1,27 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [components/MemberRequestCard/MemberRequestCard](../README.md) / default + +# Function: default() + +> **default**(`props`): `JSX.Element` + +Defined in: [src/components/MemberRequestCard/MemberRequestCard.tsx:31](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/MemberRequestCard/MemberRequestCard.tsx#L31) + +Component for displaying and managing member requests. + +## Parameters + +### props + +`InterfaceMemberRequestCardProps` + +Properties for the member request card. + +## Returns + +`JSX.Element` + +JSX element for member request card. diff --git a/docs/docs/auto-docs/components/NotFound/NotFound/README.md b/docs/docs/auto-docs/components/NotFound/NotFound/README.md new file mode 100644 index 0000000000..5b37138d23 --- /dev/null +++ b/docs/docs/auto-docs/components/NotFound/NotFound/README.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / components/NotFound/NotFound + +# components/NotFound/NotFound + +## Functions + +- [default](functions/default.md) diff --git a/docs/docs/auto-docs/components/NotFound/NotFound/functions/default.md b/docs/docs/auto-docs/components/NotFound/NotFound/functions/default.md new file mode 100644 index 0000000000..4975e6f228 --- /dev/null +++ b/docs/docs/auto-docs/components/NotFound/NotFound/functions/default.md @@ -0,0 +1,25 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [components/NotFound/NotFound](../README.md) / default + +# Function: default() + +> **default**(`props`): `JSX.Element` + +Defined in: [src/components/NotFound/NotFound.tsx:18](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/NotFound/NotFound.tsx#L18) + +Component to display a "Not Found" message. + +## Parameters + +### props + +`InterfaceNotFoundProps` + +## Returns + +`JSX.Element` + +JSX element for the "Not Found" page. diff --git a/docs/docs/auto-docs/components/OrgAdminListCard/OrgAdminListCard/README.md b/docs/docs/auto-docs/components/OrgAdminListCard/OrgAdminListCard/README.md new file mode 100644 index 0000000000..8ad3c4634a --- /dev/null +++ b/docs/docs/auto-docs/components/OrgAdminListCard/OrgAdminListCard/README.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / components/OrgAdminListCard/OrgAdminListCard + +# components/OrgAdminListCard/OrgAdminListCard + +## Functions + +- [default](functions/default.md) diff --git a/docs/docs/auto-docs/components/OrgAdminListCard/OrgAdminListCard/functions/default.md b/docs/docs/auto-docs/components/OrgAdminListCard/OrgAdminListCard/functions/default.md new file mode 100644 index 0000000000..c5bb982840 --- /dev/null +++ b/docs/docs/auto-docs/components/OrgAdminListCard/OrgAdminListCard/functions/default.md @@ -0,0 +1,25 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [components/OrgAdminListCard/OrgAdminListCard](../README.md) / default + +# Function: default() + +> **default**(`props`): `JSX.Element` + +Defined in: [src/components/OrgAdminListCard/OrgAdminListCard.tsx:22](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/OrgAdminListCard/OrgAdminListCard.tsx#L22) + +Component to confirm and handle the removal of an admin. + +## Parameters + +### props + +`InterfaceOrgPeopleListCardProps` + +## Returns + +`JSX.Element` + +JSX element for the removal confirmation modal. diff --git a/docs/docs/auto-docs/components/OrgContriCards/OrgContriCards/README.md b/docs/docs/auto-docs/components/OrgContriCards/OrgContriCards/README.md new file mode 100644 index 0000000000..6837afa7f4 --- /dev/null +++ b/docs/docs/auto-docs/components/OrgContriCards/OrgContriCards/README.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / components/OrgContriCards/OrgContriCards + +# components/OrgContriCards/OrgContriCards + +## Functions + +- [default](functions/default.md) diff --git a/docs/docs/auto-docs/components/OrgContriCards/OrgContriCards/functions/default.md b/docs/docs/auto-docs/components/OrgContriCards/OrgContriCards/functions/default.md new file mode 100644 index 0000000000..565b4d6a99 --- /dev/null +++ b/docs/docs/auto-docs/components/OrgContriCards/OrgContriCards/functions/default.md @@ -0,0 +1,30 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [components/OrgContriCards/OrgContriCards](../README.md) / default + +# Function: default() + +> **default**(`props`): `JSX.Element` + +Defined in: [src/components/OrgContriCards/OrgContriCards.tsx:30](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/OrgContriCards/OrgContriCards.tsx#L30) + +Component to display organization contribution cards + +This component shows the contribution details of a user in a card format. It includes +the user's name, email, contribution date, transaction ID, and the contribution amount. + +## Parameters + +### props + +`InterfaceOrgContriCardsProps` + +The properties passed to the component + +## Returns + +`JSX.Element` + +JSX.Element representing a contribution card diff --git a/docs/docs/auto-docs/components/OrgDelete/OrgDelete/README.md b/docs/docs/auto-docs/components/OrgDelete/OrgDelete/README.md new file mode 100644 index 0000000000..61d0992c04 --- /dev/null +++ b/docs/docs/auto-docs/components/OrgDelete/OrgDelete/README.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / components/OrgDelete/OrgDelete + +# components/OrgDelete/OrgDelete + +## Functions + +- [default](functions/default.md) diff --git a/docs/docs/auto-docs/components/OrgDelete/OrgDelete/functions/default.md b/docs/docs/auto-docs/components/OrgDelete/OrgDelete/functions/default.md new file mode 100644 index 0000000000..daea31febd --- /dev/null +++ b/docs/docs/auto-docs/components/OrgDelete/OrgDelete/functions/default.md @@ -0,0 +1,21 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [components/OrgDelete/OrgDelete](../README.md) / default + +# Function: default() + +> **default**(): `JSX.Element` + +Defined in: [src/components/OrgDelete/OrgDelete.tsx:11](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/OrgDelete/OrgDelete.tsx#L11) + +Component for displaying organization deletion message + +This component renders a message related to deleting an organization. + +## Returns + +`JSX.Element` + +JSX.Element representing the organization deletion message diff --git a/docs/docs/auto-docs/components/OrgListCard/OrgListCard/README.md b/docs/docs/auto-docs/components/OrgListCard/OrgListCard/README.md new file mode 100644 index 0000000000..48cc0da29f --- /dev/null +++ b/docs/docs/auto-docs/components/OrgListCard/OrgListCard/README.md @@ -0,0 +1,15 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / components/OrgListCard/OrgListCard + +# components/OrgListCard/OrgListCard + +## Interfaces + +- [InterfaceOrgListCardProps](interfaces/InterfaceOrgListCardProps.md) + +## Functions + +- [default](functions/default.md) diff --git a/docs/docs/auto-docs/components/OrgListCard/OrgListCard/functions/default.md b/docs/docs/auto-docs/components/OrgListCard/OrgListCard/functions/default.md new file mode 100644 index 0000000000..955184846a --- /dev/null +++ b/docs/docs/auto-docs/components/OrgListCard/OrgListCard/functions/default.md @@ -0,0 +1,31 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [components/OrgListCard/OrgListCard](../README.md) / default + +# Function: default() + +> **default**(`props`): `JSX.Element` + +Defined in: [src/components/OrgListCard/OrgListCard.tsx:38](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/OrgListCard/OrgListCard.tsx#L38) + +Component for displaying a list card for an organization + +This component renders a card that displays information about an organization, +including its name, address, members, and admins. It also provides a button +to manage the organization, navigating to the organization's dashboard. + +## Parameters + +### props + +[`InterfaceOrgListCardProps`](../interfaces/InterfaceOrgListCardProps.md) + +The properties passed to the component + +## Returns + +`JSX.Element` + +JSX.Element representing an organization list card diff --git a/docs/docs/auto-docs/components/OrgListCard/OrgListCard/interfaces/InterfaceOrgListCardProps.md b/docs/docs/auto-docs/components/OrgListCard/OrgListCard/interfaces/InterfaceOrgListCardProps.md new file mode 100644 index 0000000000..ba4d564cb7 --- /dev/null +++ b/docs/docs/auto-docs/components/OrgListCard/OrgListCard/interfaces/InterfaceOrgListCardProps.md @@ -0,0 +1,19 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [components/OrgListCard/OrgListCard](../README.md) / InterfaceOrgListCardProps + +# Interface: InterfaceOrgListCardProps + +Defined in: [src/components/OrgListCard/OrgListCard.tsx:24](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/OrgListCard/OrgListCard.tsx#L24) + +Props for the OrgListCard component + +## Properties + +### data + +> **data**: [`InterfaceOrgConnectionInfoType`](../../../../utils/interfaces/interfaces/InterfaceOrgConnectionInfoType.md) + +Defined in: [src/components/OrgListCard/OrgListCard.tsx:25](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/OrgListCard/OrgListCard.tsx#L25) diff --git a/docs/docs/auto-docs/components/OrgListCard/TruncatedText/README.md b/docs/docs/auto-docs/components/OrgListCard/TruncatedText/README.md new file mode 100644 index 0000000000..fac93a67cb --- /dev/null +++ b/docs/docs/auto-docs/components/OrgListCard/TruncatedText/README.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / components/OrgListCard/TruncatedText + +# components/OrgListCard/TruncatedText + +## Functions + +- [default](functions/default.md) diff --git a/docs/docs/auto-docs/components/OrgListCard/TruncatedText/functions/default.md b/docs/docs/auto-docs/components/OrgListCard/TruncatedText/functions/default.md new file mode 100644 index 0000000000..b2993682db --- /dev/null +++ b/docs/docs/auto-docs/components/OrgListCard/TruncatedText/functions/default.md @@ -0,0 +1,47 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [components/OrgListCard/TruncatedText](../README.md) / default + +# Function: default() + +> **default**(`props`, `deprecatedLegacyContext`?): `ReactNode` + +Defined in: [src/components/OrgListCard/TruncatedText.tsx:31](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/OrgListCard/TruncatedText.tsx#L31) + +A React functional component that displays text and truncates it with an ellipsis (`...`) +if the text exceeds the available width or the `maxWidthOverride` value. + +The component adjusts the truncation dynamically based on the available space +or the `maxWidthOverride` value. It also listens for window resize events to reapply truncation. + +## Parameters + +### props + +`InterfaceTruncatedTextProps` + +The props for the component. + +### deprecatedLegacyContext? + +`any` + +**Deprecated** + +**See** + +[React Docs](https://legacy.reactjs.org/docs/legacy-context.html#referencing-context-in-lifecycle-methods) + +## Returns + +`ReactNode` + +A heading element (`
`) containing the truncated or full text. + +## Example + +```tsx + +``` diff --git a/docs/docs/auto-docs/components/OrgListCard/useDebounce/README.md b/docs/docs/auto-docs/components/OrgListCard/useDebounce/README.md new file mode 100644 index 0000000000..3cbd337a25 --- /dev/null +++ b/docs/docs/auto-docs/components/OrgListCard/useDebounce/README.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / components/OrgListCard/useDebounce + +# components/OrgListCard/useDebounce + +## Functions + +- [default](functions/default.md) diff --git a/docs/docs/auto-docs/components/OrgListCard/useDebounce/functions/default.md b/docs/docs/auto-docs/components/OrgListCard/useDebounce/functions/default.md new file mode 100644 index 0000000000..241fce9576 --- /dev/null +++ b/docs/docs/auto-docs/components/OrgListCard/useDebounce/functions/default.md @@ -0,0 +1,61 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [components/OrgListCard/useDebounce](../README.md) / default + +# Function: default() + +> **default**\<`T`\>(`callback`, `delay`): `object` + +Defined in: [src/components/OrgListCard/useDebounce.tsx:12](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/OrgListCard/useDebounce.tsx#L12) + +A custom React hook for debouncing a callback function. +It delays the execution of the callback until after a specified delay has elapsed +since the last time the debounced function was invoked. + +## Type Parameters + +• **T** *extends* (...`args`) => `void` + +## Parameters + +### callback + +`T` + +The function to debounce. + +### delay + +`number` + +The delay in milliseconds to wait before invoking the callback. + +## Returns + +`object` + +An object with the `debouncedCallback` function and a `cancel` method to clear the timeout. + +### cancel() + +> **cancel**: () => `void` + +#### Returns + +`void` + +### debouncedCallback() + +> **debouncedCallback**: (...`args`) => `void` + +#### Parameters + +##### args + +...`Parameters`\<`T`\> + +#### Returns + +`void` diff --git a/docs/docs/auto-docs/components/OrgPeopleListCard/OrgPeopleListCard/README.md b/docs/docs/auto-docs/components/OrgPeopleListCard/OrgPeopleListCard/README.md new file mode 100644 index 0000000000..bc89def863 --- /dev/null +++ b/docs/docs/auto-docs/components/OrgPeopleListCard/OrgPeopleListCard/README.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / components/OrgPeopleListCard/OrgPeopleListCard + +# components/OrgPeopleListCard/OrgPeopleListCard + +## Functions + +- [default](functions/default.md) diff --git a/docs/docs/auto-docs/components/OrgPeopleListCard/OrgPeopleListCard/functions/default.md b/docs/docs/auto-docs/components/OrgPeopleListCard/OrgPeopleListCard/functions/default.md new file mode 100644 index 0000000000..019fd84f7f --- /dev/null +++ b/docs/docs/auto-docs/components/OrgPeopleListCard/OrgPeopleListCard/functions/default.md @@ -0,0 +1,30 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [components/OrgPeopleListCard/OrgPeopleListCard](../README.md) / default + +# Function: default() + +> **default**(`props`): `JSX.Element` + +Defined in: [src/components/OrgPeopleListCard/OrgPeopleListCard.tsx:30](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/OrgPeopleListCard/OrgPeopleListCard.tsx#L30) + +Component for displaying a modal to remove a member from an organization + +This component shows a modal that confirms the removal of a member from the organization. +It performs the removal action and displays success or error messages. + +## Parameters + +### props + +`InterfaceOrgPeopleListCardProps` + +The properties passed to the component + +## Returns + +`JSX.Element` + +JSX.Element representing the organization people list card modal diff --git a/docs/docs/auto-docs/components/OrgPostCard/DeletePostModal/README.md b/docs/docs/auto-docs/components/OrgPostCard/DeletePostModal/README.md new file mode 100644 index 0000000000..e9fcbcd946 --- /dev/null +++ b/docs/docs/auto-docs/components/OrgPostCard/DeletePostModal/README.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / components/OrgPostCard/DeletePostModal + +# components/OrgPostCard/DeletePostModal + +## Functions + +- [default](functions/default.md) diff --git a/docs/docs/auto-docs/components/OrgPostCard/DeletePostModal/functions/default.md b/docs/docs/auto-docs/components/OrgPostCard/DeletePostModal/functions/default.md new file mode 100644 index 0000000000..5ec22963c7 --- /dev/null +++ b/docs/docs/auto-docs/components/OrgPostCard/DeletePostModal/functions/default.md @@ -0,0 +1,31 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [components/OrgPostCard/DeletePostModal](../README.md) / default + +# Function: default() + +> **default**(`props`, `deprecatedLegacyContext`?): `ReactNode` + +Defined in: [src/components/OrgPostCard/DeletePostModal.tsx:20](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/OrgPostCard/DeletePostModal.tsx#L20) + +## Parameters + +### props + +`InterfaceDeletePostModalProps` + +### deprecatedLegacyContext? + +`any` + +**Deprecated** + +**See** + +[React Docs](https://legacy.reactjs.org/docs/legacy-context.html#referencing-context-in-lifecycle-methods) + +## Returns + +`ReactNode` diff --git a/docs/docs/auto-docs/components/OrgPostCard/OrgPostCard/README.md b/docs/docs/auto-docs/components/OrgPostCard/OrgPostCard/README.md new file mode 100644 index 0000000000..697b44c4da --- /dev/null +++ b/docs/docs/auto-docs/components/OrgPostCard/OrgPostCard/README.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / components/OrgPostCard/OrgPostCard + +# components/OrgPostCard/OrgPostCard + +## Functions + +- [default](functions/default.md) diff --git a/docs/docs/auto-docs/components/OrgPostCard/OrgPostCard/functions/default.md b/docs/docs/auto-docs/components/OrgPostCard/OrgPostCard/functions/default.md new file mode 100644 index 0000000000..e8799815f6 --- /dev/null +++ b/docs/docs/auto-docs/components/OrgPostCard/OrgPostCard/functions/default.md @@ -0,0 +1,21 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [components/OrgPostCard/OrgPostCard](../README.md) / default + +# Function: default() + +> **default**(`props`): `JSX.Element` + +Defined in: [src/components/OrgPostCard/OrgPostCard.tsx:29](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/OrgPostCard/OrgPostCard.tsx#L29) + +## Parameters + +### props + +`InterfaceOrgPostCardProps` + +## Returns + +`JSX.Element` diff --git a/docs/docs/auto-docs/components/OrgSettings/ActionItemCategories/CategoryModal/README.md b/docs/docs/auto-docs/components/OrgSettings/ActionItemCategories/CategoryModal/README.md new file mode 100644 index 0000000000..25ff96a2bb --- /dev/null +++ b/docs/docs/auto-docs/components/OrgSettings/ActionItemCategories/CategoryModal/README.md @@ -0,0 +1,15 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / components/OrgSettings/ActionItemCategories/CategoryModal + +# components/OrgSettings/ActionItemCategories/CategoryModal + +## Interfaces + +- [InterfaceActionItemCategoryModal](interfaces/InterfaceActionItemCategoryModal.md) + +## Functions + +- [default](functions/default.md) diff --git a/docs/docs/auto-docs/components/OrgSettings/ActionItemCategories/CategoryModal/functions/default.md b/docs/docs/auto-docs/components/OrgSettings/ActionItemCategories/CategoryModal/functions/default.md new file mode 100644 index 0000000000..3f8b06e684 --- /dev/null +++ b/docs/docs/auto-docs/components/OrgSettings/ActionItemCategories/CategoryModal/functions/default.md @@ -0,0 +1,37 @@ +[**talawa-admin**](../../../../../README.md) + +*** + +[talawa-admin](../../../../../modules.md) / [components/OrgSettings/ActionItemCategories/CategoryModal](../README.md) / default + +# Function: default() + +> **default**(`props`, `deprecatedLegacyContext`?): `ReactNode` + +Defined in: [src/components/OrgSettings/ActionItemCategories/CategoryModal.tsx:41](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/OrgSettings/ActionItemCategories/CategoryModal.tsx#L41) + +A modal component for creating and editing action item categories. + +## Parameters + +### props + +[`InterfaceActionItemCategoryModal`](../interfaces/InterfaceActionItemCategoryModal.md) + +The properties passed to the component. + +### deprecatedLegacyContext? + +`any` + +**Deprecated** + +**See** + +[React Docs](https://legacy.reactjs.org/docs/legacy-context.html#referencing-context-in-lifecycle-methods) + +## Returns + +`ReactNode` + +The `CategoryModal` component. diff --git a/docs/docs/auto-docs/components/OrgSettings/ActionItemCategories/CategoryModal/interfaces/InterfaceActionItemCategoryModal.md b/docs/docs/auto-docs/components/OrgSettings/ActionItemCategories/CategoryModal/interfaces/InterfaceActionItemCategoryModal.md new file mode 100644 index 0000000000..59aee6eead --- /dev/null +++ b/docs/docs/auto-docs/components/OrgSettings/ActionItemCategories/CategoryModal/interfaces/InterfaceActionItemCategoryModal.md @@ -0,0 +1,74 @@ +[**talawa-admin**](../../../../../README.md) + +*** + +[talawa-admin](../../../../../modules.md) / [components/OrgSettings/ActionItemCategories/CategoryModal](../README.md) / InterfaceActionItemCategoryModal + +# Interface: InterfaceActionItemCategoryModal + +Defined in: [src/components/OrgSettings/ActionItemCategories/CategoryModal.tsx:26](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/OrgSettings/ActionItemCategories/CategoryModal.tsx#L26) + +Props for the `CategoryModal` component. + +isOpen - The state of the modal. +hide - The function to hide the modal. +refetchCategories - The function to refetch the categories. +orgId - The organization ID. +category - The category to be edited. +mode - The mode of the modal. + +## Properties + +### category + +> **category**: `null` \| [`InterfaceActionItemCategoryInfo`](../../../../../utils/interfaces/interfaces/InterfaceActionItemCategoryInfo.md) + +Defined in: [src/components/OrgSettings/ActionItemCategories/CategoryModal.tsx:31](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/OrgSettings/ActionItemCategories/CategoryModal.tsx#L31) + +*** + +### hide() + +> **hide**: () => `void` + +Defined in: [src/components/OrgSettings/ActionItemCategories/CategoryModal.tsx:28](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/OrgSettings/ActionItemCategories/CategoryModal.tsx#L28) + +#### Returns + +`void` + +*** + +### isOpen + +> **isOpen**: `boolean` + +Defined in: [src/components/OrgSettings/ActionItemCategories/CategoryModal.tsx:27](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/OrgSettings/ActionItemCategories/CategoryModal.tsx#L27) + +*** + +### mode + +> **mode**: `"create"` \| `"edit"` + +Defined in: [src/components/OrgSettings/ActionItemCategories/CategoryModal.tsx:32](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/OrgSettings/ActionItemCategories/CategoryModal.tsx#L32) + +*** + +### orgId + +> **orgId**: `string` + +Defined in: [src/components/OrgSettings/ActionItemCategories/CategoryModal.tsx:30](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/OrgSettings/ActionItemCategories/CategoryModal.tsx#L30) + +*** + +### refetchCategories() + +> **refetchCategories**: () => `void` + +Defined in: [src/components/OrgSettings/ActionItemCategories/CategoryModal.tsx:29](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/OrgSettings/ActionItemCategories/CategoryModal.tsx#L29) + +#### Returns + +`void` diff --git a/docs/docs/auto-docs/components/OrgSettings/ActionItemCategories/OrgActionItemCategories/README.md b/docs/docs/auto-docs/components/OrgSettings/ActionItemCategories/OrgActionItemCategories/README.md new file mode 100644 index 0000000000..9fbcade10c --- /dev/null +++ b/docs/docs/auto-docs/components/OrgSettings/ActionItemCategories/OrgActionItemCategories/README.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / components/OrgSettings/ActionItemCategories/OrgActionItemCategories + +# components/OrgSettings/ActionItemCategories/OrgActionItemCategories + +## Functions + +- [default](functions/default.md) diff --git a/docs/docs/auto-docs/components/OrgSettings/ActionItemCategories/OrgActionItemCategories/functions/default.md b/docs/docs/auto-docs/components/OrgSettings/ActionItemCategories/OrgActionItemCategories/functions/default.md new file mode 100644 index 0000000000..4c69e90a54 --- /dev/null +++ b/docs/docs/auto-docs/components/OrgSettings/ActionItemCategories/OrgActionItemCategories/functions/default.md @@ -0,0 +1,34 @@ +[**talawa-admin**](../../../../../README.md) + +*** + +[talawa-admin](../../../../../modules.md) / [components/OrgSettings/ActionItemCategories/OrgActionItemCategories](../README.md) / default + +# Function: default() + +> **default**(`props`, `deprecatedLegacyContext`?): `ReactNode` + +Defined in: [src/components/OrgSettings/ActionItemCategories/OrgActionItemCategories.tsx:61](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/OrgSettings/ActionItemCategories/OrgActionItemCategories.tsx#L61) + +Represents the component for managing organization action item categories. +This component allows creating, updating, enabling, and disabling action item categories. + +## Parameters + +### props + +`InterfaceActionItemCategoryProps` + +### deprecatedLegacyContext? + +`any` + +**Deprecated** + +**See** + +[React Docs](https://legacy.reactjs.org/docs/legacy-context.html#referencing-context-in-lifecycle-methods) + +## Returns + +`ReactNode` diff --git a/docs/docs/auto-docs/components/OrgSettings/ActionItemCategories/OrgActionItemCategoryMocks/README.md b/docs/docs/auto-docs/components/OrgSettings/ActionItemCategories/OrgActionItemCategoryMocks/README.md new file mode 100644 index 0000000000..7141fc79d4 --- /dev/null +++ b/docs/docs/auto-docs/components/OrgSettings/ActionItemCategories/OrgActionItemCategoryMocks/README.md @@ -0,0 +1,13 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / components/OrgSettings/ActionItemCategories/OrgActionItemCategoryMocks + +# components/OrgSettings/ActionItemCategories/OrgActionItemCategoryMocks + +## Variables + +- [MOCKS](variables/MOCKS.md) +- [MOCKS\_EMPTY](variables/MOCKS_EMPTY.md) +- [MOCKS\_ERROR](variables/MOCKS_ERROR.md) diff --git a/docs/docs/auto-docs/components/OrgSettings/ActionItemCategories/OrgActionItemCategoryMocks/variables/MOCKS.md b/docs/docs/auto-docs/components/OrgSettings/ActionItemCategories/OrgActionItemCategoryMocks/variables/MOCKS.md new file mode 100644 index 0000000000..a64ae0373b --- /dev/null +++ b/docs/docs/auto-docs/components/OrgSettings/ActionItemCategories/OrgActionItemCategoryMocks/variables/MOCKS.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../../../README.md) + +*** + +[talawa-admin](../../../../../modules.md) / [components/OrgSettings/ActionItemCategories/OrgActionItemCategoryMocks](../README.md) / MOCKS + +# Variable: MOCKS + +> `const` **MOCKS**: (\{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `actionItemCategoryId`: `undefined`; `isDisabled`: `undefined`; `name`: `undefined`; `orderBy`: `string`; `organizationId`: `string`; `where`: \{ `is_disabled`: `undefined`; `name_contains`: `string`; \}; \}; \}; `result`: \{ `data`: \{ `actionItemCategoriesByOrganization`: `object`[]; `createActionItemCategory`: `undefined`; `updateActionItemCategory`: `undefined`; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `actionItemCategoryId`: `undefined`; `isDisabled`: `undefined`; `name`: `undefined`; `orderBy`: `string`; `organizationId`: `string`; `where`: \{ `is_disabled`: `boolean`; `name_contains`: `string`; \}; \}; \}; `result`: \{ `data`: \{ `actionItemCategoriesByOrganization`: `object`[]; `createActionItemCategory`: `undefined`; `updateActionItemCategory`: `undefined`; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `actionItemCategoryId`: `undefined`; `isDisabled`: `boolean`; `name`: `string`; `orderBy`: `undefined`; `organizationId`: `string`; `where`: `undefined`; \}; \}; `result`: \{ `data`: \{ `actionItemCategoriesByOrganization`: `undefined`; `createActionItemCategory`: \{ `_id`: `string`; \}; `updateActionItemCategory`: `undefined`; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `actionItemCategoryId`: `string`; `isDisabled`: `boolean`; `name`: `string`; `orderBy`: `undefined`; `organizationId`: `undefined`; `where`: `undefined`; \}; \}; `result`: \{ `data`: \{ `actionItemCategoriesByOrganization`: `undefined`; `createActionItemCategory`: `undefined`; `updateActionItemCategory`: \{ `_id`: `string`; \}; \}; \}; \})[] + +Defined in: [src/components/OrgSettings/ActionItemCategories/OrgActionItemCategoryMocks.ts:8](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/OrgSettings/ActionItemCategories/OrgActionItemCategoryMocks.ts#L8) diff --git a/docs/docs/auto-docs/components/OrgSettings/ActionItemCategories/OrgActionItemCategoryMocks/variables/MOCKS_EMPTY.md b/docs/docs/auto-docs/components/OrgSettings/ActionItemCategories/OrgActionItemCategoryMocks/variables/MOCKS_EMPTY.md new file mode 100644 index 0000000000..9eb5627dcd --- /dev/null +++ b/docs/docs/auto-docs/components/OrgSettings/ActionItemCategories/OrgActionItemCategoryMocks/variables/MOCKS_EMPTY.md @@ -0,0 +1,53 @@ +[**talawa-admin**](../../../../../README.md) + +*** + +[talawa-admin](../../../../../modules.md) / [components/OrgSettings/ActionItemCategories/OrgActionItemCategoryMocks](../README.md) / MOCKS\_EMPTY + +# Variable: MOCKS\_EMPTY + +> `const` **MOCKS\_EMPTY**: `object`[] + +Defined in: [src/components/OrgSettings/ActionItemCategories/OrgActionItemCategoryMocks.ts:236](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/OrgSettings/ActionItemCategories/OrgActionItemCategoryMocks.ts#L236) + +## Type declaration + +### request + +> **request**: `object` + +#### request.query + +> **query**: `DocumentNode` = `ACTION_ITEM_CATEGORY_LIST` + +#### request.variables + +> **variables**: `object` + +#### request.variables.orderBy + +> **orderBy**: `string` = `'createdAt_DESC'` + +#### request.variables.organizationId + +> **organizationId**: `string` = `'orgId'` + +#### request.variables.where + +> **where**: `object` + +#### request.variables.where.name\_contains + +> **name\_contains**: `string` = `''` + +### result + +> **result**: `object` + +#### result.data + +> **data**: `object` + +#### result.data.actionItemCategoriesByOrganization + +> **actionItemCategoriesByOrganization**: `never`[] = `[]` diff --git a/docs/docs/auto-docs/components/OrgSettings/ActionItemCategories/OrgActionItemCategoryMocks/variables/MOCKS_ERROR.md b/docs/docs/auto-docs/components/OrgSettings/ActionItemCategories/OrgActionItemCategoryMocks/variables/MOCKS_ERROR.md new file mode 100644 index 0000000000..dbec977949 --- /dev/null +++ b/docs/docs/auto-docs/components/OrgSettings/ActionItemCategories/OrgActionItemCategoryMocks/variables/MOCKS_ERROR.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../../../README.md) + +*** + +[talawa-admin](../../../../../modules.md) / [components/OrgSettings/ActionItemCategories/OrgActionItemCategoryMocks](../README.md) / MOCKS\_ERROR + +# Variable: MOCKS\_ERROR + +> `const` **MOCKS\_ERROR**: (\{ `error`: `Error`; `request`: \{ `query`: `DocumentNode`; `variables`: \{ `actionItemCategoryId`: `undefined`; `isDisabled`: `undefined`; `name`: `undefined`; `orderBy`: `string`; `organizationId`: `string`; `where`: \{ `name_contains`: `string`; \}; \}; \}; \} \| \{ `error`: `Error`; `request`: \{ `query`: `DocumentNode`; `variables`: \{ `actionItemCategoryId`: `undefined`; `isDisabled`: `boolean`; `name`: `string`; `orderBy`: `undefined`; `organizationId`: `string`; `where`: `undefined`; \}; \}; \} \| \{ `error`: `Error`; `request`: \{ `query`: `DocumentNode`; `variables`: \{ `actionItemCategoryId`: `string`; `isDisabled`: `boolean`; `name`: `string`; `orderBy`: `undefined`; `organizationId`: `undefined`; `where`: `undefined`; \}; \}; \})[] + +Defined in: [src/components/OrgSettings/ActionItemCategories/OrgActionItemCategoryMocks.ts:254](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/OrgSettings/ActionItemCategories/OrgActionItemCategoryMocks.ts#L254) diff --git a/docs/docs/auto-docs/components/OrgSettings/AgendaItemCategories/AgendaCategoryCreateModal/README.md b/docs/docs/auto-docs/components/OrgSettings/AgendaItemCategories/AgendaCategoryCreateModal/README.md new file mode 100644 index 0000000000..93cb2dcfd5 --- /dev/null +++ b/docs/docs/auto-docs/components/OrgSettings/AgendaItemCategories/AgendaCategoryCreateModal/README.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / components/OrgSettings/AgendaItemCategories/AgendaCategoryCreateModal + +# components/OrgSettings/AgendaItemCategories/AgendaCategoryCreateModal + +## Functions + +- [default](functions/default.md) diff --git a/docs/docs/auto-docs/components/OrgSettings/AgendaItemCategories/AgendaCategoryCreateModal/functions/default.md b/docs/docs/auto-docs/components/OrgSettings/AgendaItemCategories/AgendaCategoryCreateModal/functions/default.md new file mode 100644 index 0000000000..918f045ca9 --- /dev/null +++ b/docs/docs/auto-docs/components/OrgSettings/AgendaItemCategories/AgendaCategoryCreateModal/functions/default.md @@ -0,0 +1,35 @@ +[**talawa-admin**](../../../../../README.md) + +*** + +[talawa-admin](../../../../../modules.md) / [components/OrgSettings/AgendaItemCategories/AgendaCategoryCreateModal](../README.md) / default + +# Function: default() + +> **default**(`props`, `deprecatedLegacyContext`?): `ReactNode` + +Defined in: [src/components/OrgSettings/AgendaItemCategories/AgendaCategoryCreateModal.tsx:38](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/OrgSettings/AgendaItemCategories/AgendaCategoryCreateModal.tsx#L38) + +AgendaCategoryCreateModal component is used to create the agenda category details like name, description + +## Parameters + +### props + +`InterfaceAgendaCategoryCreateModalProps` + +### deprecatedLegacyContext? + +`any` + +**Deprecated** + +**See** + +[React Docs](https://legacy.reactjs.org/docs/legacy-context.html#referencing-context-in-lifecycle-methods) + +## Returns + +`ReactNode` + +returns the AgendaCategoryCreateModal component diff --git a/docs/docs/auto-docs/components/OrgSettings/AgendaItemCategories/AgendaCategoryDeleteModal/README.md b/docs/docs/auto-docs/components/OrgSettings/AgendaItemCategories/AgendaCategoryDeleteModal/README.md new file mode 100644 index 0000000000..206ecdb910 --- /dev/null +++ b/docs/docs/auto-docs/components/OrgSettings/AgendaItemCategories/AgendaCategoryDeleteModal/README.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / components/OrgSettings/AgendaItemCategories/AgendaCategoryDeleteModal + +# components/OrgSettings/AgendaItemCategories/AgendaCategoryDeleteModal + +## Functions + +- [default](functions/default.md) diff --git a/docs/docs/auto-docs/components/OrgSettings/AgendaItemCategories/AgendaCategoryDeleteModal/functions/default.md b/docs/docs/auto-docs/components/OrgSettings/AgendaItemCategories/AgendaCategoryDeleteModal/functions/default.md new file mode 100644 index 0000000000..e8debbf3a4 --- /dev/null +++ b/docs/docs/auto-docs/components/OrgSettings/AgendaItemCategories/AgendaCategoryDeleteModal/functions/default.md @@ -0,0 +1,35 @@ +[**talawa-admin**](../../../../../README.md) + +*** + +[talawa-admin](../../../../../modules.md) / [components/OrgSettings/AgendaItemCategories/AgendaCategoryDeleteModal](../README.md) / default + +# Function: default() + +> **default**(`props`, `deprecatedLegacyContext`?): `ReactNode` + +Defined in: [src/components/OrgSettings/AgendaItemCategories/AgendaCategoryDeleteModal.tsx:25](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/OrgSettings/AgendaItemCategories/AgendaCategoryDeleteModal.tsx#L25) + +AgendaCategoryDeleteModal component is used to delete the agenda category + +## Parameters + +### props + +`InterfaceAgendaCategoryDeleteModalProps` + +### deprecatedLegacyContext? + +`any` + +**Deprecated** + +**See** + +[React Docs](https://legacy.reactjs.org/docs/legacy-context.html#referencing-context-in-lifecycle-methods) + +## Returns + +`ReactNode` + +returns the AgendaCategoryDeleteModal component diff --git a/docs/docs/auto-docs/components/OrgSettings/AgendaItemCategories/AgendaCategoryPreviewModal/README.md b/docs/docs/auto-docs/components/OrgSettings/AgendaItemCategories/AgendaCategoryPreviewModal/README.md new file mode 100644 index 0000000000..b757415768 --- /dev/null +++ b/docs/docs/auto-docs/components/OrgSettings/AgendaItemCategories/AgendaCategoryPreviewModal/README.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / components/OrgSettings/AgendaItemCategories/AgendaCategoryPreviewModal + +# components/OrgSettings/AgendaItemCategories/AgendaCategoryPreviewModal + +## Functions + +- [default](functions/default.md) diff --git a/docs/docs/auto-docs/components/OrgSettings/AgendaItemCategories/AgendaCategoryPreviewModal/functions/default.md b/docs/docs/auto-docs/components/OrgSettings/AgendaItemCategories/AgendaCategoryPreviewModal/functions/default.md new file mode 100644 index 0000000000..c7c1c5ae73 --- /dev/null +++ b/docs/docs/auto-docs/components/OrgSettings/AgendaItemCategories/AgendaCategoryPreviewModal/functions/default.md @@ -0,0 +1,35 @@ +[**talawa-admin**](../../../../../README.md) + +*** + +[talawa-admin](../../../../../modules.md) / [components/OrgSettings/AgendaItemCategories/AgendaCategoryPreviewModal](../README.md) / default + +# Function: default() + +> **default**(`props`, `deprecatedLegacyContext`?): `ReactNode` + +Defined in: [src/components/OrgSettings/AgendaItemCategories/AgendaCategoryPreviewModal.tsx:38](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/OrgSettings/AgendaItemCategories/AgendaCategoryPreviewModal.tsx#L38) + +AgendaCategoryPreviewModal component is used to preview the agenda category details like name, description, createdBy + +## Parameters + +### props + +`InterfaceAgendaCategoryPreviewModalProps` + +### deprecatedLegacyContext? + +`any` + +**Deprecated** + +**See** + +[React Docs](https://legacy.reactjs.org/docs/legacy-context.html#referencing-context-in-lifecycle-methods) + +## Returns + +`ReactNode` + +returns the AgendaCategoryPreviewModal component diff --git a/docs/docs/auto-docs/components/OrgSettings/AgendaItemCategories/AgendaCategoryUpdateModal/README.md b/docs/docs/auto-docs/components/OrgSettings/AgendaItemCategories/AgendaCategoryUpdateModal/README.md new file mode 100644 index 0000000000..19b2d6ad70 --- /dev/null +++ b/docs/docs/auto-docs/components/OrgSettings/AgendaItemCategories/AgendaCategoryUpdateModal/README.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / components/OrgSettings/AgendaItemCategories/AgendaCategoryUpdateModal + +# components/OrgSettings/AgendaItemCategories/AgendaCategoryUpdateModal + +## Functions + +- [default](functions/default.md) diff --git a/docs/docs/auto-docs/components/OrgSettings/AgendaItemCategories/AgendaCategoryUpdateModal/functions/default.md b/docs/docs/auto-docs/components/OrgSettings/AgendaItemCategories/AgendaCategoryUpdateModal/functions/default.md new file mode 100644 index 0000000000..44b95c7da3 --- /dev/null +++ b/docs/docs/auto-docs/components/OrgSettings/AgendaItemCategories/AgendaCategoryUpdateModal/functions/default.md @@ -0,0 +1,35 @@ +[**talawa-admin**](../../../../../README.md) + +*** + +[talawa-admin](../../../../../modules.md) / [components/OrgSettings/AgendaItemCategories/AgendaCategoryUpdateModal](../README.md) / default + +# Function: default() + +> **default**(`props`, `deprecatedLegacyContext`?): `ReactNode` + +Defined in: [src/components/OrgSettings/AgendaItemCategories/AgendaCategoryUpdateModal.tsx:40](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/OrgSettings/AgendaItemCategories/AgendaCategoryUpdateModal.tsx#L40) + +AgendaCategoryUpdateModal component is used to update the agenda category details like name, description + +## Parameters + +### props + +`InterfaceAgendaCategoryUpdateModalProps` + +### deprecatedLegacyContext? + +`any` + +**Deprecated** + +**See** + +[React Docs](https://legacy.reactjs.org/docs/legacy-context.html#referencing-context-in-lifecycle-methods) + +## Returns + +`ReactNode` + +returns the AgendaCategoryUpdateModal component diff --git a/docs/docs/auto-docs/components/OrgSettings/AgendaItemCategories/OrganizationAgendaCategory/README.md b/docs/docs/auto-docs/components/OrgSettings/AgendaItemCategories/OrganizationAgendaCategory/README.md new file mode 100644 index 0000000000..c70db04ac7 --- /dev/null +++ b/docs/docs/auto-docs/components/OrgSettings/AgendaItemCategories/OrganizationAgendaCategory/README.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / components/OrgSettings/AgendaItemCategories/OrganizationAgendaCategory + +# components/OrgSettings/AgendaItemCategories/OrganizationAgendaCategory + +## Functions + +- [default](functions/default.md) diff --git a/docs/docs/auto-docs/components/OrgSettings/AgendaItemCategories/OrganizationAgendaCategory/functions/default.md b/docs/docs/auto-docs/components/OrgSettings/AgendaItemCategories/OrganizationAgendaCategory/functions/default.md new file mode 100644 index 0000000000..e6710b8626 --- /dev/null +++ b/docs/docs/auto-docs/components/OrgSettings/AgendaItemCategories/OrganizationAgendaCategory/functions/default.md @@ -0,0 +1,37 @@ +[**talawa-admin**](../../../../../README.md) + +*** + +[talawa-admin](../../../../../modules.md) / [components/OrgSettings/AgendaItemCategories/OrganizationAgendaCategory](../README.md) / default + +# Function: default() + +> **default**(`props`, `deprecatedLegacyContext`?): `ReactNode` + +Defined in: [src/components/OrgSettings/AgendaItemCategories/OrganizationAgendaCategory.tsx:31](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/OrgSettings/AgendaItemCategories/OrganizationAgendaCategory.tsx#L31) + +Component for managing and displaying agenda item categories within an organization. + +This component allows users to view, create, and manage agenda item categories. It includes functionality for displaying categories, handling creation, and managing modal visibility. + +## Parameters + +### props + +`InterfaceAgendaCategoryProps` + +### deprecatedLegacyContext? + +`any` + +**Deprecated** + +**See** + +[React Docs](https://legacy.reactjs.org/docs/legacy-context.html#referencing-context-in-lifecycle-methods) + +## Returns + +`ReactNode` + +The rendered component. diff --git a/docs/docs/auto-docs/components/OrgSettings/AgendaItemCategories/OrganizationAgendaCategoryErrorMocks/README.md b/docs/docs/auto-docs/components/OrgSettings/AgendaItemCategories/OrganizationAgendaCategoryErrorMocks/README.md new file mode 100644 index 0000000000..170de04bd0 --- /dev/null +++ b/docs/docs/auto-docs/components/OrgSettings/AgendaItemCategories/OrganizationAgendaCategoryErrorMocks/README.md @@ -0,0 +1,12 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / components/OrgSettings/AgendaItemCategories/OrganizationAgendaCategoryErrorMocks + +# components/OrgSettings/AgendaItemCategories/OrganizationAgendaCategoryErrorMocks + +## Variables + +- [MOCKS\_ERROR\_AGENDA\_ITEM\_CATEGORY\_LIST\_QUERY](variables/MOCKS_ERROR_AGENDA_ITEM_CATEGORY_LIST_QUERY.md) +- [MOCKS\_ERROR\_MUTATION](variables/MOCKS_ERROR_MUTATION.md) diff --git a/docs/docs/auto-docs/components/OrgSettings/AgendaItemCategories/OrganizationAgendaCategoryErrorMocks/variables/MOCKS_ERROR_AGENDA_ITEM_CATEGORY_LIST_QUERY.md b/docs/docs/auto-docs/components/OrgSettings/AgendaItemCategories/OrganizationAgendaCategoryErrorMocks/variables/MOCKS_ERROR_AGENDA_ITEM_CATEGORY_LIST_QUERY.md new file mode 100644 index 0000000000..efa0957704 --- /dev/null +++ b/docs/docs/auto-docs/components/OrgSettings/AgendaItemCategories/OrganizationAgendaCategoryErrorMocks/variables/MOCKS_ERROR_AGENDA_ITEM_CATEGORY_LIST_QUERY.md @@ -0,0 +1,41 @@ +[**talawa-admin**](../../../../../README.md) + +*** + +[talawa-admin](../../../../../modules.md) / [components/OrgSettings/AgendaItemCategories/OrganizationAgendaCategoryErrorMocks](../README.md) / MOCKS\_ERROR\_AGENDA\_ITEM\_CATEGORY\_LIST\_QUERY + +# Variable: MOCKS\_ERROR\_AGENDA\_ITEM\_CATEGORY\_LIST\_QUERY + +> `const` **MOCKS\_ERROR\_AGENDA\_ITEM\_CATEGORY\_LIST\_QUERY**: `object`[] + +Defined in: [src/components/OrgSettings/AgendaItemCategories/OrganizationAgendaCategoryErrorMocks.ts:5](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/OrgSettings/AgendaItemCategories/OrganizationAgendaCategoryErrorMocks.ts#L5) + +## Type declaration + +### error + +> **error**: `Error` + +### request + +> **request**: `object` + +#### request.query + +> **query**: `DocumentNode` = `AGENDA_ITEM_CATEGORY_LIST` + +#### request.variables + +> **variables**: `object` + +#### request.variables.organizationId + +> **organizationId**: `string` = `'123'` + +#### request.variables.where + +> **where**: `object` + +#### request.variables.where.name\_contains + +> **name\_contains**: `string` = `''` diff --git a/docs/docs/auto-docs/components/OrgSettings/AgendaItemCategories/OrganizationAgendaCategoryErrorMocks/variables/MOCKS_ERROR_MUTATION.md b/docs/docs/auto-docs/components/OrgSettings/AgendaItemCategories/OrganizationAgendaCategoryErrorMocks/variables/MOCKS_ERROR_MUTATION.md new file mode 100644 index 0000000000..630aa15018 --- /dev/null +++ b/docs/docs/auto-docs/components/OrgSettings/AgendaItemCategories/OrganizationAgendaCategoryErrorMocks/variables/MOCKS_ERROR_MUTATION.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../../../README.md) + +*** + +[talawa-admin](../../../../../modules.md) / [components/OrgSettings/AgendaItemCategories/OrganizationAgendaCategoryErrorMocks](../README.md) / MOCKS\_ERROR\_MUTATION + +# Variable: MOCKS\_ERROR\_MUTATION + +> `const` **MOCKS\_ERROR\_MUTATION**: (\{ `error`: `undefined`; `request`: \{ `query`: `DocumentNode`; `variables`: \{ `input`: `undefined`; `organizationId`: `string`; `where`: \{ `name_contains`: `string`; \}; \}; \}; `result`: \{ `data`: \{ `agendaItemCategoriesByOrganization`: `object`[]; \}; \}; \} \| \{ `error`: `Error`; `request`: \{ `query`: `DocumentNode`; `variables`: \{ `input`: \{ `description`: `string`; `name`: `string`; `organizationId`: `string`; \}; `organizationId`: `undefined`; `where`: `undefined`; \}; \}; `result`: `undefined`; \})[] + +Defined in: [src/components/OrgSettings/AgendaItemCategories/OrganizationAgendaCategoryErrorMocks.ts:20](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/OrgSettings/AgendaItemCategories/OrganizationAgendaCategoryErrorMocks.ts#L20) diff --git a/docs/docs/auto-docs/components/OrgSettings/AgendaItemCategories/OrganizationAgendaCategoryMocks/README.md b/docs/docs/auto-docs/components/OrgSettings/AgendaItemCategories/OrganizationAgendaCategoryMocks/README.md new file mode 100644 index 0000000000..6abcadf0c7 --- /dev/null +++ b/docs/docs/auto-docs/components/OrgSettings/AgendaItemCategories/OrganizationAgendaCategoryMocks/README.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / components/OrgSettings/AgendaItemCategories/OrganizationAgendaCategoryMocks + +# components/OrgSettings/AgendaItemCategories/OrganizationAgendaCategoryMocks + +## Variables + +- [MOCKS](variables/MOCKS.md) diff --git a/docs/docs/auto-docs/components/OrgSettings/AgendaItemCategories/OrganizationAgendaCategoryMocks/variables/MOCKS.md b/docs/docs/auto-docs/components/OrgSettings/AgendaItemCategories/OrganizationAgendaCategoryMocks/variables/MOCKS.md new file mode 100644 index 0000000000..03f8218fd4 --- /dev/null +++ b/docs/docs/auto-docs/components/OrgSettings/AgendaItemCategories/OrganizationAgendaCategoryMocks/variables/MOCKS.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../../../README.md) + +*** + +[talawa-admin](../../../../../modules.md) / [components/OrgSettings/AgendaItemCategories/OrganizationAgendaCategoryMocks](../README.md) / MOCKS + +# Variable: MOCKS + +> `const` **MOCKS**: (\{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `input`: `undefined`; `organizationId`: `string`; `where`: \{ `name_contains`: `string`; \}; \}; \}; `result`: \{ `data`: \{ `agendaItemCategoriesByOrganization`: `object`[]; `createAgendaCategory`: `undefined`; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `input`: \{ `description`: `string`; `name`: `string`; `organizationId`: `string`; \}; `organizationId`: `undefined`; `where`: `undefined`; \}; \}; `result`: \{ `data`: \{ `agendaItemCategoriesByOrganization`: `undefined`; `createAgendaCategory`: \{ `_id`: `string`; \}; \}; \}; \})[] + +Defined in: [src/components/OrgSettings/AgendaItemCategories/OrganizationAgendaCategoryMocks.ts:5](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/OrgSettings/AgendaItemCategories/OrganizationAgendaCategoryMocks.ts#L5) diff --git a/docs/docs/auto-docs/components/OrgSettings/General/DeleteOrg/DeleteOrg/README.md b/docs/docs/auto-docs/components/OrgSettings/General/DeleteOrg/DeleteOrg/README.md new file mode 100644 index 0000000000..2930197acf --- /dev/null +++ b/docs/docs/auto-docs/components/OrgSettings/General/DeleteOrg/DeleteOrg/README.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../../../README.md) + +*** + +[talawa-admin](../../../../../modules.md) / components/OrgSettings/General/DeleteOrg/DeleteOrg + +# components/OrgSettings/General/DeleteOrg/DeleteOrg + +## Functions + +- [default](functions/default.md) diff --git a/docs/docs/auto-docs/components/OrgSettings/General/DeleteOrg/DeleteOrg/functions/default.md b/docs/docs/auto-docs/components/OrgSettings/General/DeleteOrg/DeleteOrg/functions/default.md new file mode 100644 index 0000000000..cc8686373b --- /dev/null +++ b/docs/docs/auto-docs/components/OrgSettings/General/DeleteOrg/DeleteOrg/functions/default.md @@ -0,0 +1,24 @@ +[**talawa-admin**](../../../../../../README.md) + +*** + +[talawa-admin](../../../../../../modules.md) / [components/OrgSettings/General/DeleteOrg/DeleteOrg](../README.md) / default + +# Function: default() + +> **default**(): `JSX.Element` + +Defined in: [src/components/OrgSettings/General/DeleteOrg/DeleteOrg.tsx:26](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/OrgSettings/General/DeleteOrg/DeleteOrg.tsx#L26) + +A component for deleting an organization. + +It displays a card with a delete button. When the delete button is clicked, +a modal appears asking for confirmation. Depending on the type of organization +(sample or regular), it performs the delete operation and shows appropriate +success or error messages. + +## Returns + +`JSX.Element` + +JSX.Element - The rendered component with delete functionality. diff --git a/docs/docs/auto-docs/components/OrgSettings/General/GeneralSettings/README.md b/docs/docs/auto-docs/components/OrgSettings/General/GeneralSettings/README.md new file mode 100644 index 0000000000..94753fd6ad --- /dev/null +++ b/docs/docs/auto-docs/components/OrgSettings/General/GeneralSettings/README.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / components/OrgSettings/General/GeneralSettings + +# components/OrgSettings/General/GeneralSettings + +## Functions + +- [default](functions/default.md) diff --git a/docs/docs/auto-docs/components/OrgSettings/General/GeneralSettings/functions/default.md b/docs/docs/auto-docs/components/OrgSettings/General/GeneralSettings/functions/default.md new file mode 100644 index 0000000000..7d0d9e55f8 --- /dev/null +++ b/docs/docs/auto-docs/components/OrgSettings/General/GeneralSettings/functions/default.md @@ -0,0 +1,37 @@ +[**talawa-admin**](../../../../../README.md) + +*** + +[talawa-admin](../../../../../modules.md) / [components/OrgSettings/General/GeneralSettings](../README.md) / default + +# Function: default() + +> **default**(`props`, `deprecatedLegacyContext`?): `ReactNode` + +Defined in: [src/components/OrgSettings/General/GeneralSettings.tsx:23](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/OrgSettings/General/GeneralSettings.tsx#L23) + +A component for displaying general settings for an organization. + +## Parameters + +### props + +`InterfaceGeneralSettingsProps` + +The properties passed to the component. + +### deprecatedLegacyContext? + +`any` + +**Deprecated** + +**See** + +[React Docs](https://legacy.reactjs.org/docs/legacy-context.html#referencing-context-in-lifecycle-methods) + +## Returns + +`ReactNode` + +The `GeneralSettings` component. diff --git a/docs/docs/auto-docs/components/OrgSettings/General/OrgProfileFieldSettings/OrgProfileFieldSettings/README.md b/docs/docs/auto-docs/components/OrgSettings/General/OrgProfileFieldSettings/OrgProfileFieldSettings/README.md new file mode 100644 index 0000000000..da8152d8d2 --- /dev/null +++ b/docs/docs/auto-docs/components/OrgSettings/General/OrgProfileFieldSettings/OrgProfileFieldSettings/README.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../../../README.md) + +*** + +[talawa-admin](../../../../../modules.md) / components/OrgSettings/General/OrgProfileFieldSettings/OrgProfileFieldSettings + +# components/OrgSettings/General/OrgProfileFieldSettings/OrgProfileFieldSettings + +## Functions + +- [default](functions/default.md) diff --git a/docs/docs/auto-docs/components/OrgSettings/General/OrgProfileFieldSettings/OrgProfileFieldSettings/functions/default.md b/docs/docs/auto-docs/components/OrgSettings/General/OrgProfileFieldSettings/OrgProfileFieldSettings/functions/default.md new file mode 100644 index 0000000000..7e5001a40c --- /dev/null +++ b/docs/docs/auto-docs/components/OrgSettings/General/OrgProfileFieldSettings/OrgProfileFieldSettings/functions/default.md @@ -0,0 +1,22 @@ +[**talawa-admin**](../../../../../../README.md) + +*** + +[talawa-admin](../../../../../../modules.md) / [components/OrgSettings/General/OrgProfileFieldSettings/OrgProfileFieldSettings](../README.md) / default + +# Function: default() + +> **default**(): `Element` + +Defined in: [src/components/OrgSettings/General/OrgProfileFieldSettings/OrgProfileFieldSettings.tsx:26](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/OrgSettings/General/OrgProfileFieldSettings/OrgProfileFieldSettings.tsx#L26) + +Component for managing organization profile field settings + +This component allows adding and removing custom fields for an organization. +It displays existing custom fields and provides a form to add new fields. + +## Returns + +`Element` + +JSX.Element representing the organization profile field settings diff --git a/docs/docs/auto-docs/components/OrgSettings/General/OrgUpdate/OrgUpdate/README.md b/docs/docs/auto-docs/components/OrgSettings/General/OrgUpdate/OrgUpdate/README.md new file mode 100644 index 0000000000..3021f67a45 --- /dev/null +++ b/docs/docs/auto-docs/components/OrgSettings/General/OrgUpdate/OrgUpdate/README.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../../../README.md) + +*** + +[talawa-admin](../../../../../modules.md) / components/OrgSettings/General/OrgUpdate/OrgUpdate + +# components/OrgSettings/General/OrgUpdate/OrgUpdate + +## Functions + +- [default](functions/default.md) diff --git a/docs/docs/auto-docs/components/OrgSettings/General/OrgUpdate/OrgUpdate/functions/default.md b/docs/docs/auto-docs/components/OrgSettings/General/OrgUpdate/OrgUpdate/functions/default.md new file mode 100644 index 0000000000..743e1ae5c5 --- /dev/null +++ b/docs/docs/auto-docs/components/OrgSettings/General/OrgUpdate/OrgUpdate/functions/default.md @@ -0,0 +1,31 @@ +[**talawa-admin**](../../../../../../README.md) + +*** + +[talawa-admin](../../../../../../modules.md) / [components/OrgSettings/General/OrgUpdate/OrgUpdate](../README.md) / default + +# Function: default() + +> **default**(`props`): `JSX.Element` + +Defined in: [src/components/OrgSettings/General/OrgUpdate/OrgUpdate.tsx:36](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/OrgSettings/General/OrgUpdate/OrgUpdate.tsx#L36) + +Component for updating organization details. + +This component allows users to update the organization's name, description, address, +visibility settings, and upload an image. It uses GraphQL mutations and queries to +fetch and update data. + +## Parameters + +### props + +`InterfaceOrgUpdateProps` + +Component props containing the organization ID. + +## Returns + +`JSX.Element` + +The rendered component. diff --git a/docs/docs/auto-docs/components/OrgSettings/General/OrgUpdate/OrgUpdateMocks/README.md b/docs/docs/auto-docs/components/OrgSettings/General/OrgUpdate/OrgUpdateMocks/README.md new file mode 100644 index 0000000000..aec709b65b --- /dev/null +++ b/docs/docs/auto-docs/components/OrgSettings/General/OrgUpdate/OrgUpdateMocks/README.md @@ -0,0 +1,13 @@ +[**talawa-admin**](../../../../../README.md) + +*** + +[talawa-admin](../../../../../modules.md) / components/OrgSettings/General/OrgUpdate/OrgUpdateMocks + +# components/OrgSettings/General/OrgUpdate/OrgUpdateMocks + +## Variables + +- [MOCKS](variables/MOCKS.md) +- [MOCKS\_ERROR\_ORGLIST](variables/MOCKS_ERROR_ORGLIST.md) +- [MOCKS\_ERROR\_UPDATE\_ORGLIST](variables/MOCKS_ERROR_UPDATE_ORGLIST.md) diff --git a/docs/docs/auto-docs/components/OrgSettings/General/OrgUpdate/OrgUpdateMocks/variables/MOCKS.md b/docs/docs/auto-docs/components/OrgSettings/General/OrgUpdate/OrgUpdateMocks/variables/MOCKS.md new file mode 100644 index 0000000000..1f62a9166b --- /dev/null +++ b/docs/docs/auto-docs/components/OrgSettings/General/OrgUpdate/OrgUpdateMocks/variables/MOCKS.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../../../../README.md) + +*** + +[talawa-admin](../../../../../../modules.md) / [components/OrgSettings/General/OrgUpdate/OrgUpdateMocks](../README.md) / MOCKS + +# Variable: MOCKS + +> `const` **MOCKS**: (\{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `address`: `undefined`; `description`: `undefined`; `id`: `string`; `image`: `undefined`; `name`: `undefined`; `userRegistrationRequired`: `undefined`; `visibleInSearch`: `undefined`; \}; \}; `result`: \{ `data`: \{ `organizations`: `object`[]; `updateOrganization`: `undefined`; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `address`: \{ `city`: `string`; `countryCode`: `string`; `dependentLocality`: `string`; `line1`: `string`; `line2`: `string`; `postalCode`: `string`; `sortingCode`: `string`; `state`: `string`; \}; `description`: `string`; `id`: `string`; `image`: `File`; `name`: `string`; `userRegistrationRequired`: `boolean`; `visibleInSearch`: `boolean`; \}; \}; `result`: \{ `data`: \{ `organizations`: `undefined`; `updateOrganization`: \{ `_id`: `string`; `address`: \{ `city`: `string`; `countryCode`: `string`; `dependentLocality`: `string`; `line1`: `string`; `line2`: `string`; `postalCode`: `string`; `sortingCode`: `string`; `state`: `string`; \}; `description`: `string`; `name`: `string`; `userRegistrationRequired`: `boolean`; `visibleInSearch`: `boolean`; \}; \}; \}; \})[] + +Defined in: [src/components/OrgSettings/General/OrgUpdate/OrgUpdateMocks.ts:4](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/OrgSettings/General/OrgUpdate/OrgUpdateMocks.ts#L4) diff --git a/docs/docs/auto-docs/components/OrgSettings/General/OrgUpdate/OrgUpdateMocks/variables/MOCKS_ERROR_ORGLIST.md b/docs/docs/auto-docs/components/OrgSettings/General/OrgUpdate/OrgUpdateMocks/variables/MOCKS_ERROR_ORGLIST.md new file mode 100644 index 0000000000..5d07f6faac --- /dev/null +++ b/docs/docs/auto-docs/components/OrgSettings/General/OrgUpdate/OrgUpdateMocks/variables/MOCKS_ERROR_ORGLIST.md @@ -0,0 +1,33 @@ +[**talawa-admin**](../../../../../../README.md) + +*** + +[talawa-admin](../../../../../../modules.md) / [components/OrgSettings/General/OrgUpdate/OrgUpdateMocks](../README.md) / MOCKS\_ERROR\_ORGLIST + +# Variable: MOCKS\_ERROR\_ORGLIST + +> `const` **MOCKS\_ERROR\_ORGLIST**: `object`[] + +Defined in: [src/components/OrgSettings/General/OrgUpdate/OrgUpdateMocks.ts:110](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/OrgSettings/General/OrgUpdate/OrgUpdateMocks.ts#L110) + +## Type declaration + +### error + +> **error**: `Error` + +### request + +> **request**: `object` + +#### request.query + +> **query**: `DocumentNode` = `ORGANIZATIONS_LIST` + +#### request.variables + +> **variables**: `object` + +#### request.variables.id + +> **id**: `string` = `'123'` diff --git a/docs/docs/auto-docs/components/OrgSettings/General/OrgUpdate/OrgUpdateMocks/variables/MOCKS_ERROR_UPDATE_ORGLIST.md b/docs/docs/auto-docs/components/OrgSettings/General/OrgUpdate/OrgUpdateMocks/variables/MOCKS_ERROR_UPDATE_ORGLIST.md new file mode 100644 index 0000000000..656e15841a --- /dev/null +++ b/docs/docs/auto-docs/components/OrgSettings/General/OrgUpdate/OrgUpdateMocks/variables/MOCKS_ERROR_UPDATE_ORGLIST.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../../../../README.md) + +*** + +[talawa-admin](../../../../../../modules.md) / [components/OrgSettings/General/OrgUpdate/OrgUpdateMocks](../README.md) / MOCKS\_ERROR\_UPDATE\_ORGLIST + +# Variable: MOCKS\_ERROR\_UPDATE\_ORGLIST + +> `const` **MOCKS\_ERROR\_UPDATE\_ORGLIST**: (\{ `erorr`: `undefined`; `request`: \{ `query`: `DocumentNode`; `variables`: \{ `address`: `undefined`; `description`: `undefined`; `id`: `string`; `image`: `undefined`; `name`: `undefined`; `userRegistrationRequired`: `undefined`; `visibleInSearch`: `undefined`; \}; \}; `result`: \{ `data`: \{ `organizations`: `object`[]; \}; \}; \} \| \{ `erorr`: `Error`; `request`: \{ `query`: `DocumentNode`; `variables`: \{ `address`: \{ `city`: `string`; `countryCode`: `string`; `dependentLocality`: `string`; `line1`: `string`; `line2`: `string`; `postalCode`: `string`; `sortingCode`: `string`; `state`: `string`; \}; `description`: `string`; `id`: `string`; `image`: `File`; `name`: `string`; `userRegistrationRequired`: `boolean`; `visibleInSearch`: `boolean`; \}; \}; `result`: `undefined`; \})[] + +Defined in: [src/components/OrgSettings/General/OrgUpdate/OrgUpdateMocks.ts:120](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/OrgSettings/General/OrgUpdate/OrgUpdateMocks.ts#L120) diff --git a/docs/docs/auto-docs/components/OrganizationCard/OrganizationCard/README.md b/docs/docs/auto-docs/components/OrganizationCard/OrganizationCard/README.md new file mode 100644 index 0000000000..fb6c91285d --- /dev/null +++ b/docs/docs/auto-docs/components/OrganizationCard/OrganizationCard/README.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / components/OrganizationCard/OrganizationCard + +# components/OrganizationCard/OrganizationCard + +## Functions + +- [default](functions/default.md) diff --git a/docs/docs/auto-docs/components/OrganizationCard/OrganizationCard/functions/default.md b/docs/docs/auto-docs/components/OrganizationCard/OrganizationCard/functions/default.md new file mode 100644 index 0000000000..6a0f3da90a --- /dev/null +++ b/docs/docs/auto-docs/components/OrganizationCard/OrganizationCard/functions/default.md @@ -0,0 +1,27 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [components/OrganizationCard/OrganizationCard](../README.md) / default + +# Function: default() + +> **default**(`props`): `JSX.Element` + +Defined in: [src/components/OrganizationCard/OrganizationCard.tsx:18](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/OrganizationCard/OrganizationCard.tsx#L18) + +Component to display an organization's card with its image and owner details. + +## Parameters + +### props + +`InterfaceOrganizationCardProps` + +Properties for the organization card. + +## Returns + +`JSX.Element` + +JSX element representing the organization card. diff --git a/docs/docs/auto-docs/components/OrganizationCardStart/OrganizationCardStart/README.md b/docs/docs/auto-docs/components/OrganizationCardStart/OrganizationCardStart/README.md new file mode 100644 index 0000000000..bdb5ef1f8b --- /dev/null +++ b/docs/docs/auto-docs/components/OrganizationCardStart/OrganizationCardStart/README.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / components/OrganizationCardStart/OrganizationCardStart + +# components/OrganizationCardStart/OrganizationCardStart + +## Functions + +- [default](functions/default.md) diff --git a/docs/docs/auto-docs/components/OrganizationCardStart/OrganizationCardStart/functions/default.md b/docs/docs/auto-docs/components/OrganizationCardStart/OrganizationCardStart/functions/default.md new file mode 100644 index 0000000000..39229ba883 --- /dev/null +++ b/docs/docs/auto-docs/components/OrganizationCardStart/OrganizationCardStart/functions/default.md @@ -0,0 +1,25 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [components/OrganizationCardStart/OrganizationCardStart](../README.md) / default + +# Function: default() + +> **default**(`props`): `JSX.Element` + +Defined in: [src/components/OrganizationCardStart/OrganizationCardStart.tsx:18](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/OrganizationCardStart/OrganizationCardStart.tsx#L18) + +Component to display a simplified card for an organization. + +## Parameters + +### props + +`InterfaceOrganizationCardStartProps` + +## Returns + +`JSX.Element` + +JSX element representing the organization card. diff --git a/docs/docs/auto-docs/components/OrganizationDashCards/CardItem/README.md b/docs/docs/auto-docs/components/OrganizationDashCards/CardItem/README.md new file mode 100644 index 0000000000..85c9fc2dc0 --- /dev/null +++ b/docs/docs/auto-docs/components/OrganizationDashCards/CardItem/README.md @@ -0,0 +1,15 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / components/OrganizationDashCards/CardItem + +# components/OrganizationDashCards/CardItem + +## Interfaces + +- [InterfaceCardItem](interfaces/InterfaceCardItem.md) + +## Functions + +- [default](functions/default.md) diff --git a/docs/docs/auto-docs/components/OrganizationDashCards/CardItem/functions/default.md b/docs/docs/auto-docs/components/OrganizationDashCards/CardItem/functions/default.md new file mode 100644 index 0000000000..d2c8709bad --- /dev/null +++ b/docs/docs/auto-docs/components/OrganizationDashCards/CardItem/functions/default.md @@ -0,0 +1,27 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [components/OrganizationDashCards/CardItem](../README.md) / default + +# Function: default() + +> **default**(`props`): `Element` + +Defined in: [src/components/OrganizationDashCards/CardItem.tsx:35](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/OrganizationDashCards/CardItem.tsx#L35) + +Component to display a card item with various types such as Event, Post, or MembershipRequest. + +## Parameters + +### props + +[`InterfaceCardItem`](../interfaces/InterfaceCardItem.md) + +Props for the CardItem component. + +## Returns + +`Element` + +JSX element representing the card item. diff --git a/docs/docs/auto-docs/components/OrganizationDashCards/CardItem/interfaces/InterfaceCardItem.md b/docs/docs/auto-docs/components/OrganizationDashCards/CardItem/interfaces/InterfaceCardItem.md new file mode 100644 index 0000000000..6264f38cec --- /dev/null +++ b/docs/docs/auto-docs/components/OrganizationDashCards/CardItem/interfaces/InterfaceCardItem.md @@ -0,0 +1,83 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [components/OrganizationDashCards/CardItem](../README.md) / InterfaceCardItem + +# Interface: InterfaceCardItem + +Defined in: [src/components/OrganizationDashCards/CardItem.tsx:14](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/OrganizationDashCards/CardItem.tsx#L14) + +Interface for the CardItem component's props. + +## Properties + +### creator? + +> `optional` **creator**: `object` + +Defined in: [src/components/OrganizationDashCards/CardItem.tsx:20](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/OrganizationDashCards/CardItem.tsx#L20) + +#### \_id + +> **\_id**: `string` + +#### email + +> **email**: `string` + +#### firstName + +> **firstName**: `string` + +#### lastName + +> **lastName**: `string` + +*** + +### enddate? + +> `optional` **enddate**: `string` + +Defined in: [src/components/OrganizationDashCards/CardItem.tsx:19](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/OrganizationDashCards/CardItem.tsx#L19) + +*** + +### location? + +> `optional` **location**: `string` + +Defined in: [src/components/OrganizationDashCards/CardItem.tsx:26](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/OrganizationDashCards/CardItem.tsx#L26) + +*** + +### startdate? + +> `optional` **startdate**: `string` + +Defined in: [src/components/OrganizationDashCards/CardItem.tsx:18](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/OrganizationDashCards/CardItem.tsx#L18) + +*** + +### time? + +> `optional` **time**: `string` + +Defined in: [src/components/OrganizationDashCards/CardItem.tsx:17](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/OrganizationDashCards/CardItem.tsx#L17) + +*** + +### title + +> **title**: `string` + +Defined in: [src/components/OrganizationDashCards/CardItem.tsx:16](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/OrganizationDashCards/CardItem.tsx#L16) + +*** + +### type + +> **type**: `"Event"` \| `"Post"` \| `"MembershipRequest"` + +Defined in: [src/components/OrganizationDashCards/CardItem.tsx:15](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/OrganizationDashCards/CardItem.tsx#L15) diff --git a/docs/docs/auto-docs/components/OrganizationDashCards/CardItemLoading/README.md b/docs/docs/auto-docs/components/OrganizationDashCards/CardItemLoading/README.md new file mode 100644 index 0000000000..af5a47e20e --- /dev/null +++ b/docs/docs/auto-docs/components/OrganizationDashCards/CardItemLoading/README.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / components/OrganizationDashCards/CardItemLoading + +# components/OrganizationDashCards/CardItemLoading + +## Functions + +- [default](functions/default.md) diff --git a/docs/docs/auto-docs/components/OrganizationDashCards/CardItemLoading/functions/default.md b/docs/docs/auto-docs/components/OrganizationDashCards/CardItemLoading/functions/default.md new file mode 100644 index 0000000000..a9f12be062 --- /dev/null +++ b/docs/docs/auto-docs/components/OrganizationDashCards/CardItemLoading/functions/default.md @@ -0,0 +1,19 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [components/OrganizationDashCards/CardItemLoading](../README.md) / default + +# Function: default() + +> **default**(): `Element` + +Defined in: [src/components/OrganizationDashCards/CardItemLoading.tsx:8](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/OrganizationDashCards/CardItemLoading.tsx#L8) + +CardItemLoading component is a loading state for the card item. It is used when the data is being fetched. + +## Returns + +`Element` + +JSX.Element diff --git a/docs/docs/auto-docs/components/OrganizationDashCards/DashboardCard/README.md b/docs/docs/auto-docs/components/OrganizationDashCards/DashboardCard/README.md new file mode 100644 index 0000000000..c966d0184c --- /dev/null +++ b/docs/docs/auto-docs/components/OrganizationDashCards/DashboardCard/README.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / components/OrganizationDashCards/DashboardCard + +# components/OrganizationDashCards/DashboardCard + +## Functions + +- [default](functions/default.md) diff --git a/docs/docs/auto-docs/components/OrganizationDashCards/DashboardCard/functions/default.md b/docs/docs/auto-docs/components/OrganizationDashCards/DashboardCard/functions/default.md new file mode 100644 index 0000000000..4589103744 --- /dev/null +++ b/docs/docs/auto-docs/components/OrganizationDashCards/DashboardCard/functions/default.md @@ -0,0 +1,35 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [components/OrganizationDashCards/DashboardCard](../README.md) / default + +# Function: default() + +> **default**(`props`): `Element` + +Defined in: [src/components/OrganizationDashCards/DashboardCard.tsx:13](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/OrganizationDashCards/DashboardCard.tsx#L13) + +Dashboard card component is used to display the card with icon, title and count. + +## Parameters + +### props + +#### count + +`number` + +#### icon + +`ReactNode` + +#### title + +`string` + +## Returns + +`Element` + +Dashboard card component diff --git a/docs/docs/auto-docs/components/OrganizationDashCards/DashboardCardLoading/README.md b/docs/docs/auto-docs/components/OrganizationDashCards/DashboardCardLoading/README.md new file mode 100644 index 0000000000..0229ba496b --- /dev/null +++ b/docs/docs/auto-docs/components/OrganizationDashCards/DashboardCardLoading/README.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / components/OrganizationDashCards/DashboardCardLoading + +# components/OrganizationDashCards/DashboardCardLoading + +## Functions + +- [default](functions/default.md) diff --git a/docs/docs/auto-docs/components/OrganizationDashCards/DashboardCardLoading/functions/default.md b/docs/docs/auto-docs/components/OrganizationDashCards/DashboardCardLoading/functions/default.md new file mode 100644 index 0000000000..0c9f41857f --- /dev/null +++ b/docs/docs/auto-docs/components/OrganizationDashCards/DashboardCardLoading/functions/default.md @@ -0,0 +1,19 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [components/OrganizationDashCards/DashboardCardLoading](../README.md) / default + +# Function: default() + +> **default**(): `Element` + +Defined in: [src/components/OrganizationDashCards/DashboardCardLoading.tsx:10](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/OrganizationDashCards/DashboardCardLoading.tsx#L10) + +Dashboard card loading component is a loading state for the dashboard card. It is used when the data is being fetched. + +## Returns + +`Element` + +JSX.Element diff --git a/docs/docs/auto-docs/components/OrganizationScreen/OrganizationScreen/README.md b/docs/docs/auto-docs/components/OrganizationScreen/OrganizationScreen/README.md new file mode 100644 index 0000000000..f69f4d0dd9 --- /dev/null +++ b/docs/docs/auto-docs/components/OrganizationScreen/OrganizationScreen/README.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / components/OrganizationScreen/OrganizationScreen + +# components/OrganizationScreen/OrganizationScreen + +## Functions + +- [default](functions/default.md) diff --git a/docs/docs/auto-docs/components/OrganizationScreen/OrganizationScreen/functions/default.md b/docs/docs/auto-docs/components/OrganizationScreen/OrganizationScreen/functions/default.md new file mode 100644 index 0000000000..5920a56c1a --- /dev/null +++ b/docs/docs/auto-docs/components/OrganizationScreen/OrganizationScreen/functions/default.md @@ -0,0 +1,24 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [components/OrganizationScreen/OrganizationScreen](../README.md) / default + +# Function: default() + +> **default**(): `Element` + +Defined in: [src/components/OrganizationScreen/OrganizationScreen.tsx:37](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/OrganizationScreen/OrganizationScreen.tsx#L37) + +Component for the organization screen + +This component displays the organization screen and handles the layout +including a side drawer, header, and main content area. It adjusts +the layout based on the screen size and shows the appropriate content +based on the route. + +## Returns + +`Element` + +JSX.Element representing the organization screen diff --git a/docs/docs/auto-docs/components/Pagination/Pagination/README.md b/docs/docs/auto-docs/components/Pagination/Pagination/README.md new file mode 100644 index 0000000000..e4478da85f --- /dev/null +++ b/docs/docs/auto-docs/components/Pagination/Pagination/README.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / components/Pagination/Pagination + +# components/Pagination/Pagination + +## Functions + +- [default](functions/default.md) diff --git a/docs/docs/auto-docs/components/Pagination/Pagination/functions/default.md b/docs/docs/auto-docs/components/Pagination/Pagination/functions/default.md new file mode 100644 index 0000000000..3affc60aac --- /dev/null +++ b/docs/docs/auto-docs/components/Pagination/Pagination/functions/default.md @@ -0,0 +1,31 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [components/Pagination/Pagination](../README.md) / default + +# Function: default() + +> **default**(`props`): `JSX.Element` + +Defined in: [src/components/Pagination/Pagination.tsx:30](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/Pagination/Pagination.tsx#L30) + +Pagination component for navigating between pages in a table. + +This component provides buttons to navigate to the first page, previous page, +next page, and last page of a table. The visibility and functionality of the +buttons are controlled based on the current page and the total number of items. + +## Parameters + +### props + +`InterfaceTablePaginationActionsProps` + +Component properties. + +## Returns + +`JSX.Element` + +The rendered component. diff --git a/docs/docs/auto-docs/components/PaginationList/PaginationList/README.md b/docs/docs/auto-docs/components/PaginationList/PaginationList/README.md new file mode 100644 index 0000000000..97e958ec2f --- /dev/null +++ b/docs/docs/auto-docs/components/PaginationList/PaginationList/README.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / components/PaginationList/PaginationList + +# components/PaginationList/PaginationList + +## Functions + +- [default](functions/default.md) diff --git a/docs/docs/auto-docs/components/PaginationList/PaginationList/functions/default.md b/docs/docs/auto-docs/components/PaginationList/PaginationList/functions/default.md new file mode 100644 index 0000000000..500015e5e0 --- /dev/null +++ b/docs/docs/auto-docs/components/PaginationList/PaginationList/functions/default.md @@ -0,0 +1,24 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [components/PaginationList/PaginationList](../README.md) / default + +# Function: default() + +> **default**(`__namedParameters`): `Element` + +Defined in: [src/components/PaginationList/PaginationList.tsx:31](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/PaginationList/PaginationList.tsx#L31) + +A component that provides pagination controls for a table. +It uses different pagination styles based on screen size. + +## Parameters + +### \_\_namedParameters + +`InterfacePropsInterface` + +## Returns + +`Element` diff --git a/docs/docs/auto-docs/components/ProfileDropdown/ProfileDropdown/README.md b/docs/docs/auto-docs/components/ProfileDropdown/ProfileDropdown/README.md new file mode 100644 index 0000000000..7730f4adbe --- /dev/null +++ b/docs/docs/auto-docs/components/ProfileDropdown/ProfileDropdown/README.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / components/ProfileDropdown/ProfileDropdown + +# components/ProfileDropdown/ProfileDropdown + +## Functions + +- [default](functions/default.md) diff --git a/docs/docs/auto-docs/components/ProfileDropdown/ProfileDropdown/functions/default.md b/docs/docs/auto-docs/components/ProfileDropdown/ProfileDropdown/functions/default.md new file mode 100644 index 0000000000..efe5f10ca2 --- /dev/null +++ b/docs/docs/auto-docs/components/ProfileDropdown/ProfileDropdown/functions/default.md @@ -0,0 +1,26 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [components/ProfileDropdown/ProfileDropdown](../README.md) / default + +# Function: default() + +> **default**(): `Element` + +Defined in: [src/components/ProfileDropdown/ProfileDropdown.tsx:24](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/ProfileDropdown/ProfileDropdown.tsx#L24) + +Renders a profile dropdown menu for the user. + +This component displays the user's profile picture or an avatar, their name (truncated if necessary), +and their role (SuperAdmin, Admin, or User). It provides options to view the profile or log out. + +- If a user image is available, it displays that; otherwise, it shows an avatar. +- The displayed name is truncated if it exceeds a specified length. +- The logout function revokes the refresh token and clears local storage before redirecting to the home page. + +## Returns + +`Element` + +JSX.Element - The profile dropdown menu. diff --git a/docs/docs/auto-docs/components/RecurrenceOptions/CustomRecurrenceModal/README.md b/docs/docs/auto-docs/components/RecurrenceOptions/CustomRecurrenceModal/README.md new file mode 100644 index 0000000000..905215ebe4 --- /dev/null +++ b/docs/docs/auto-docs/components/RecurrenceOptions/CustomRecurrenceModal/README.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / components/RecurrenceOptions/CustomRecurrenceModal + +# components/RecurrenceOptions/CustomRecurrenceModal + +## Functions + +- [default](functions/default.md) diff --git a/docs/docs/auto-docs/components/RecurrenceOptions/CustomRecurrenceModal/functions/default.md b/docs/docs/auto-docs/components/RecurrenceOptions/CustomRecurrenceModal/functions/default.md new file mode 100644 index 0000000000..35c67c807b --- /dev/null +++ b/docs/docs/auto-docs/components/RecurrenceOptions/CustomRecurrenceModal/functions/default.md @@ -0,0 +1,41 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [components/RecurrenceOptions/CustomRecurrenceModal](../README.md) / default + +# Function: default() + +> **default**(`props`, `deprecatedLegacyContext`?): `ReactNode` + +Defined in: [src/components/RecurrenceOptions/CustomRecurrenceModal.tsx:54](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/RecurrenceOptions/CustomRecurrenceModal.tsx#L54) + +A modal for setting up custom recurrence rules. + +This component allows users to configure how often an event should repeat, and +when it should end. It includes options for daily, weekly, monthly, and yearly +recurrence, as well as specific end options. + +## Parameters + +### props + +`InterfaceCustomRecurrenceModalProps` + +The props object containing various configurations and state management functions. + +### deprecatedLegacyContext? + +`any` + +**Deprecated** + +**See** + +[React Docs](https://legacy.reactjs.org/docs/legacy-context.html#referencing-context-in-lifecycle-methods) + +## Returns + +`ReactNode` + +The JSX element representing the CustomRecurrenceModal. diff --git a/docs/docs/auto-docs/components/RecurrenceOptions/RecurrenceOptions/README.md b/docs/docs/auto-docs/components/RecurrenceOptions/RecurrenceOptions/README.md new file mode 100644 index 0000000000..64470d030e --- /dev/null +++ b/docs/docs/auto-docs/components/RecurrenceOptions/RecurrenceOptions/README.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / components/RecurrenceOptions/RecurrenceOptions + +# components/RecurrenceOptions/RecurrenceOptions + +## Functions + +- [default](functions/default.md) diff --git a/docs/docs/auto-docs/components/RecurrenceOptions/RecurrenceOptions/functions/default.md b/docs/docs/auto-docs/components/RecurrenceOptions/RecurrenceOptions/functions/default.md new file mode 100644 index 0000000000..aca5644e56 --- /dev/null +++ b/docs/docs/auto-docs/components/RecurrenceOptions/RecurrenceOptions/functions/default.md @@ -0,0 +1,49 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [components/RecurrenceOptions/RecurrenceOptions](../README.md) / default + +# Function: default() + +> **default**(`props`, `deprecatedLegacyContext`?): `ReactNode` + +Defined in: [src/components/RecurrenceOptions/RecurrenceOptions.tsx:49](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/RecurrenceOptions/RecurrenceOptions.tsx#L49) + +Renders a dropdown menu for selecting recurrence options. + +This component allows users to choose various recurrence rules (daily, weekly, monthly, yearly) for a given event. +It displays the current recurrence rule text and provides options to modify it, including a custom recurrence modal. + +The dropdown menu includes options for: +- Daily recurrence +- Weekly recurrence (including a specific day of the week or Monday to Friday) +- Monthly recurrence (on a specific day or occurrence) +- Yearly recurrence +- Custom recurrence (opens a modal for advanced settings) + +The displayed recurrence rule text is truncated if it exceeds a specified length, with an overlay showing the full text on hover. + +## Parameters + +### props + +`InterfaceRecurrenceOptionsProps` + +The properties to configure the recurrence options dropdown. + +### deprecatedLegacyContext? + +`any` + +**Deprecated** + +**See** + +[React Docs](https://legacy.reactjs.org/docs/legacy-context.html#referencing-context-in-lifecycle-methods) + +## Returns + +`ReactNode` + +JSX.Element - The recurrence options dropdown and the custom recurrence modal. diff --git a/docs/docs/auto-docs/components/RequestsTableItem/RequestsTableItem/README.md b/docs/docs/auto-docs/components/RequestsTableItem/RequestsTableItem/README.md new file mode 100644 index 0000000000..86e8b36c33 --- /dev/null +++ b/docs/docs/auto-docs/components/RequestsTableItem/RequestsTableItem/README.md @@ -0,0 +1,15 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / components/RequestsTableItem/RequestsTableItem + +# components/RequestsTableItem/RequestsTableItem + +## Interfaces + +- [InterfaceRequestsListItem](interfaces/InterfaceRequestsListItem.md) + +## Functions + +- [default](functions/default.md) diff --git a/docs/docs/auto-docs/components/RequestsTableItem/RequestsTableItem/functions/default.md b/docs/docs/auto-docs/components/RequestsTableItem/RequestsTableItem/functions/default.md new file mode 100644 index 0000000000..f1c2bb4c78 --- /dev/null +++ b/docs/docs/auto-docs/components/RequestsTableItem/RequestsTableItem/functions/default.md @@ -0,0 +1,31 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [components/RequestsTableItem/RequestsTableItem](../README.md) / default + +# Function: default() + +> **default**(`props`): `Element` + +Defined in: [src/components/RequestsTableItem/RequestsTableItem.tsx:45](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/RequestsTableItem/RequestsTableItem.tsx#L45) + +Renders a table row item for a membership request. + +This component displays user details and provides buttons to accept or reject +the membership request. It also handles showing success or error messages using +toast notifications. + +## Parameters + +### props + +`Props` + +The props object containing request details, index, and state reset function. + +## Returns + +`Element` + +The JSX element representing the RequestsTableItem. diff --git a/docs/docs/auto-docs/components/RequestsTableItem/RequestsTableItem/interfaces/InterfaceRequestsListItem.md b/docs/docs/auto-docs/components/RequestsTableItem/RequestsTableItem/interfaces/InterfaceRequestsListItem.md new file mode 100644 index 0000000000..f9f913ce6e --- /dev/null +++ b/docs/docs/auto-docs/components/RequestsTableItem/RequestsTableItem/interfaces/InterfaceRequestsListItem.md @@ -0,0 +1,39 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [components/RequestsTableItem/RequestsTableItem](../README.md) / InterfaceRequestsListItem + +# Interface: InterfaceRequestsListItem + +Defined in: [src/components/RequestsTableItem/RequestsTableItem.tsx:16](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/RequestsTableItem/RequestsTableItem.tsx#L16) + +Represents a membership request in the requests table. + +## Properties + +### \_id + +> **\_id**: `string` + +Defined in: [src/components/RequestsTableItem/RequestsTableItem.tsx:17](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/RequestsTableItem/RequestsTableItem.tsx#L17) + +*** + +### user + +> **user**: `object` + +Defined in: [src/components/RequestsTableItem/RequestsTableItem.tsx:18](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/RequestsTableItem/RequestsTableItem.tsx#L18) + +#### email + +> **email**: `string` + +#### firstName + +> **firstName**: `string` + +#### lastName + +> **lastName**: `string` diff --git a/docs/docs/auto-docs/components/RequestsTableItem/RequestsTableItemMocks/README.md b/docs/docs/auto-docs/components/RequestsTableItem/RequestsTableItemMocks/README.md new file mode 100644 index 0000000000..cc799b603d --- /dev/null +++ b/docs/docs/auto-docs/components/RequestsTableItem/RequestsTableItemMocks/README.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / components/RequestsTableItem/RequestsTableItemMocks + +# components/RequestsTableItem/RequestsTableItemMocks + +## Variables + +- [MOCKS](variables/MOCKS.md) diff --git a/docs/docs/auto-docs/components/RequestsTableItem/RequestsTableItemMocks/variables/MOCKS.md b/docs/docs/auto-docs/components/RequestsTableItem/RequestsTableItemMocks/variables/MOCKS.md new file mode 100644 index 0000000000..cf96817245 --- /dev/null +++ b/docs/docs/auto-docs/components/RequestsTableItem/RequestsTableItemMocks/variables/MOCKS.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [components/RequestsTableItem/RequestsTableItemMocks](../README.md) / MOCKS + +# Variable: MOCKS + +> `const` **MOCKS**: (\{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `id`: `string`; \}; \}; `result`: \{ `data`: \{ `acceptMembershipRequest`: \{ `_id`: `string`; \}; `rejectMembershipRequest`: `undefined`; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `id`: `string`; \}; \}; `result`: \{ `data`: \{ `acceptMembershipRequest`: `undefined`; `rejectMembershipRequest`: \{ `_id`: `string`; \}; \}; \}; \})[] + +Defined in: [src/components/RequestsTableItem/RequestsTableItemMocks.ts:6](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/RequestsTableItem/RequestsTableItemMocks.ts#L6) diff --git a/docs/docs/auto-docs/components/SecuredRoute/SecuredRoute/README.md b/docs/docs/auto-docs/components/SecuredRoute/SecuredRoute/README.md new file mode 100644 index 0000000000..3f41aee770 --- /dev/null +++ b/docs/docs/auto-docs/components/SecuredRoute/SecuredRoute/README.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / components/SecuredRoute/SecuredRoute + +# components/SecuredRoute/SecuredRoute + +## Functions + +- [default](functions/default.md) diff --git a/docs/docs/auto-docs/components/SecuredRoute/SecuredRoute/functions/default.md b/docs/docs/auto-docs/components/SecuredRoute/SecuredRoute/functions/default.md new file mode 100644 index 0000000000..1438d14b12 --- /dev/null +++ b/docs/docs/auto-docs/components/SecuredRoute/SecuredRoute/functions/default.md @@ -0,0 +1,22 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [components/SecuredRoute/SecuredRoute](../README.md) / default + +# Function: default() + +> **default**(): `Element` + +Defined in: [src/components/SecuredRoute/SecuredRoute.tsx:16](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/SecuredRoute/SecuredRoute.tsx#L16) + +A route guard that checks if the user is logged in and has the necessary permissions. + +If the user is logged in and has an admin role set, it renders the child routes. +Otherwise, it redirects to the home page or shows a 404 page if admin role is not set. + +## Returns + +`Element` + +The JSX element representing the secured route. diff --git a/docs/docs/auto-docs/components/SuperAdminScreen/SuperAdminScreen/README.md b/docs/docs/auto-docs/components/SuperAdminScreen/SuperAdminScreen/README.md new file mode 100644 index 0000000000..2bc917ec5e --- /dev/null +++ b/docs/docs/auto-docs/components/SuperAdminScreen/SuperAdminScreen/README.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / components/SuperAdminScreen/SuperAdminScreen + +# components/SuperAdminScreen/SuperAdminScreen + +## Functions + +- [default](functions/default.md) diff --git a/docs/docs/auto-docs/components/SuperAdminScreen/SuperAdminScreen/functions/default.md b/docs/docs/auto-docs/components/SuperAdminScreen/SuperAdminScreen/functions/default.md new file mode 100644 index 0000000000..519e103120 --- /dev/null +++ b/docs/docs/auto-docs/components/SuperAdminScreen/SuperAdminScreen/functions/default.md @@ -0,0 +1,20 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [components/SuperAdminScreen/SuperAdminScreen](../README.md) / default + +# Function: default() + +> **default**(): `Element` + +Defined in: [src/components/SuperAdminScreen/SuperAdminScreen.tsx:15](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/SuperAdminScreen/SuperAdminScreen.tsx#L15) + +The SuperAdminScreen component manages the layout for the Super Admin screen, +including handling the sidebar visibility and page title based on the current route. + +## Returns + +`Element` + +The JSX element representing the Super Admin screen layout. diff --git a/docs/docs/auto-docs/components/TableLoader/TableLoader/README.md b/docs/docs/auto-docs/components/TableLoader/TableLoader/README.md new file mode 100644 index 0000000000..4ea503163f --- /dev/null +++ b/docs/docs/auto-docs/components/TableLoader/TableLoader/README.md @@ -0,0 +1,15 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / components/TableLoader/TableLoader + +# components/TableLoader/TableLoader + +## Interfaces + +- [InterfaceTableLoader](interfaces/InterfaceTableLoader.md) + +## Functions + +- [default](functions/default.md) diff --git a/docs/docs/auto-docs/components/TableLoader/TableLoader/functions/default.md b/docs/docs/auto-docs/components/TableLoader/TableLoader/functions/default.md new file mode 100644 index 0000000000..5e68fc843e --- /dev/null +++ b/docs/docs/auto-docs/components/TableLoader/TableLoader/functions/default.md @@ -0,0 +1,29 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [components/TableLoader/TableLoader](../README.md) / default + +# Function: default() + +> **default**(`props`): `Element` + +Defined in: [src/components/TableLoader/TableLoader.tsx:23](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/TableLoader/TableLoader.tsx#L23) + +The TableLoader component displays a loading skeleton for tables. +It shows a specified number of rows and columns as placeholders +with a shimmering effect to indicate loading content. + +## Parameters + +### props + +[`InterfaceTableLoader`](../interfaces/InterfaceTableLoader.md) + +The properties for the TableLoader component. + +## Returns + +`Element` + +The JSX element representing the table loader. diff --git a/docs/docs/auto-docs/components/TableLoader/TableLoader/interfaces/InterfaceTableLoader.md b/docs/docs/auto-docs/components/TableLoader/TableLoader/interfaces/InterfaceTableLoader.md new file mode 100644 index 0000000000..c2012703e8 --- /dev/null +++ b/docs/docs/auto-docs/components/TableLoader/TableLoader/interfaces/InterfaceTableLoader.md @@ -0,0 +1,33 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [components/TableLoader/TableLoader](../README.md) / InterfaceTableLoader + +# Interface: InterfaceTableLoader + +Defined in: [src/components/TableLoader/TableLoader.tsx:5](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/TableLoader/TableLoader.tsx#L5) + +## Properties + +### headerTitles? + +> `optional` **headerTitles**: `string`[] + +Defined in: [src/components/TableLoader/TableLoader.tsx:7](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/TableLoader/TableLoader.tsx#L7) + +*** + +### noOfCols? + +> `optional` **noOfCols**: `number` + +Defined in: [src/components/TableLoader/TableLoader.tsx:8](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/TableLoader/TableLoader.tsx#L8) + +*** + +### noOfRows + +> **noOfRows**: `number` + +Defined in: [src/components/TableLoader/TableLoader.tsx:6](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/TableLoader/TableLoader.tsx#L6) diff --git a/docs/docs/auto-docs/components/TagActions/TagActions/README.md b/docs/docs/auto-docs/components/TagActions/TagActions/README.md new file mode 100644 index 0000000000..b150d81f56 --- /dev/null +++ b/docs/docs/auto-docs/components/TagActions/TagActions/README.md @@ -0,0 +1,15 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / components/TagActions/TagActions + +# components/TagActions/TagActions + +## Interfaces + +- [InterfaceTagActionsProps](interfaces/InterfaceTagActionsProps.md) + +## Functions + +- [default](functions/default.md) diff --git a/docs/docs/auto-docs/components/TagActions/TagActions/functions/default.md b/docs/docs/auto-docs/components/TagActions/TagActions/functions/default.md new file mode 100644 index 0000000000..9d870ce1c3 --- /dev/null +++ b/docs/docs/auto-docs/components/TagActions/TagActions/functions/default.md @@ -0,0 +1,31 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [components/TagActions/TagActions](../README.md) / default + +# Function: default() + +> **default**(`props`, `deprecatedLegacyContext`?): `ReactNode` + +Defined in: [src/components/TagActions/TagActions.tsx:44](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/TagActions/TagActions.tsx#L44) + +## Parameters + +### props + +[`InterfaceTagActionsProps`](../interfaces/InterfaceTagActionsProps.md) + +### deprecatedLegacyContext? + +`any` + +**Deprecated** + +**See** + +[React Docs](https://legacy.reactjs.org/docs/legacy-context.html#referencing-context-in-lifecycle-methods) + +## Returns + +`ReactNode` diff --git a/docs/docs/auto-docs/components/TagActions/TagActions/interfaces/InterfaceTagActionsProps.md b/docs/docs/auto-docs/components/TagActions/TagActions/interfaces/InterfaceTagActionsProps.md new file mode 100644 index 0000000000..ec6b068d83 --- /dev/null +++ b/docs/docs/auto-docs/components/TagActions/TagActions/interfaces/InterfaceTagActionsProps.md @@ -0,0 +1,55 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [components/TagActions/TagActions](../README.md) / InterfaceTagActionsProps + +# Interface: InterfaceTagActionsProps + +Defined in: [src/components/TagActions/TagActions.tsx:36](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/TagActions/TagActions.tsx#L36) + +Props for the `AssignToTags` component. + +## Properties + +### hideTagActionsModal() + +> **hideTagActionsModal**: () => `void` + +Defined in: [src/components/TagActions/TagActions.tsx:38](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/TagActions/TagActions.tsx#L38) + +#### Returns + +`void` + +*** + +### t + +> **t**: `TFunction`\<`"manageTag"`\> + +Defined in: [src/components/TagActions/TagActions.tsx:40](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/TagActions/TagActions.tsx#L40) + +*** + +### tagActionsModalIsOpen + +> **tagActionsModalIsOpen**: `boolean` + +Defined in: [src/components/TagActions/TagActions.tsx:37](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/TagActions/TagActions.tsx#L37) + +*** + +### tagActionType + +> **tagActionType**: [`TagActionType`](../../../../utils/organizationTagsUtils/type-aliases/TagActionType.md) + +Defined in: [src/components/TagActions/TagActions.tsx:39](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/TagActions/TagActions.tsx#L39) + +*** + +### tCommon + +> **tCommon**: `TFunction`\<`"common"`\> + +Defined in: [src/components/TagActions/TagActions.tsx:41](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/TagActions/TagActions.tsx#L41) diff --git a/docs/docs/auto-docs/components/TagActions/TagActionsMocks/README.md b/docs/docs/auto-docs/components/TagActions/TagActionsMocks/README.md new file mode 100644 index 0000000000..039d549e67 --- /dev/null +++ b/docs/docs/auto-docs/components/TagActions/TagActionsMocks/README.md @@ -0,0 +1,13 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / components/TagActions/TagActionsMocks + +# components/TagActions/TagActionsMocks + +## Variables + +- [MOCKS](variables/MOCKS.md) +- [MOCKS\_ERROR\_ORGANIZATION\_TAGS\_QUERY](variables/MOCKS_ERROR_ORGANIZATION_TAGS_QUERY.md) +- [MOCKS\_ERROR\_SUBTAGS\_QUERY](variables/MOCKS_ERROR_SUBTAGS_QUERY.md) diff --git a/docs/docs/auto-docs/components/TagActions/TagActionsMocks/variables/MOCKS.md b/docs/docs/auto-docs/components/TagActions/TagActionsMocks/variables/MOCKS.md new file mode 100644 index 0000000000..fc0114a003 --- /dev/null +++ b/docs/docs/auto-docs/components/TagActions/TagActionsMocks/variables/MOCKS.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [components/TagActions/TagActionsMocks](../README.md) / MOCKS + +# Variable: MOCKS + +> `const` **MOCKS**: (\{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `after`: `undefined`; `currentTagId`: `undefined`; `first`: `number`; `id`: `string`; `selectedTagIds`: `undefined`; `where`: \{ `name`: \{ `starts_with`: `string`; \}; \}; \}; \}; `result`: \{ `data`: \{ `assignToUserTags`: `undefined`; `getChildTags`: `undefined`; `organizations`: `object`[]; `removeFromUserTags`: `undefined`; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `after`: `string`; `currentTagId`: `undefined`; `first`: `number`; `id`: `string`; `selectedTagIds`: `undefined`; `where`: \{ `name`: \{ `starts_with`: `string`; \}; \}; \}; \}; `result`: \{ `data`: \{ `assignToUserTags`: `undefined`; `getChildTags`: `undefined`; `organizations`: `object`[]; `removeFromUserTags`: `undefined`; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `after`: `undefined`; `currentTagId`: `undefined`; `first`: `number`; `id`: `string`; `selectedTagIds`: `undefined`; `where`: \{ `name`: \{ `starts_with`: `string`; \}; \}; \}; \}; `result`: \{ `data`: \{ `assignToUserTags`: `undefined`; `getChildTags`: `undefined`; `organizations`: `object`[]; `removeFromUserTags`: `undefined`; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `after`: `undefined`; `currentTagId`: `undefined`; `first`: `number`; `id`: `string`; `selectedTagIds`: `undefined`; `where`: `undefined`; \}; \}; `result`: \{ `data`: \{ `assignToUserTags`: `undefined`; `getChildTags`: \{ `ancestorTags`: `never`[]; `childTags`: \{ `edges`: `object`[]; `pageInfo`: \{ `endCursor`: `string`; `hasNextPage`: `boolean`; `hasPreviousPage`: `boolean`; `startCursor`: `string`; \}; `totalCount`: `number`; \}; `name`: `string`; \}; `organizations`: `undefined`; `removeFromUserTags`: `undefined`; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `after`: `string`; `currentTagId`: `undefined`; `first`: `number`; `id`: `string`; `selectedTagIds`: `undefined`; `where`: `undefined`; \}; \}; `result`: \{ `data`: \{ `assignToUserTags`: `undefined`; `getChildTags`: \{ `ancestorTags`: `never`[]; `childTags`: \{ `edges`: `object`[]; `pageInfo`: \{ `endCursor`: `string`; `hasNextPage`: `boolean`; `hasPreviousPage`: `boolean`; `startCursor`: `string`; \}; `totalCount`: `number`; \}; `name`: `string`; \}; `organizations`: `undefined`; `removeFromUserTags`: `undefined`; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `after`: `undefined`; `currentTagId`: `string`; `first`: `undefined`; `id`: `undefined`; `selectedTagIds`: `string`[]; `where`: `undefined`; \}; \}; `result`: \{ `data`: \{ `assignToUserTags`: \{ `_id`: `string`; \}; `getChildTags`: `undefined`; `organizations`: `undefined`; `removeFromUserTags`: `undefined`; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `after`: `undefined`; `currentTagId`: `string`; `first`: `undefined`; `id`: `undefined`; `selectedTagIds`: `string`[]; `where`: `undefined`; \}; \}; `result`: \{ `data`: \{ `assignToUserTags`: `undefined`; `getChildTags`: `undefined`; `organizations`: `undefined`; `removeFromUserTags`: \{ `_id`: `string`; \}; \}; \}; \})[] + +Defined in: [src/components/TagActions/TagActionsMocks.ts:9](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/TagActions/TagActionsMocks.ts#L9) diff --git a/docs/docs/auto-docs/components/TagActions/TagActionsMocks/variables/MOCKS_ERROR_ORGANIZATION_TAGS_QUERY.md b/docs/docs/auto-docs/components/TagActions/TagActionsMocks/variables/MOCKS_ERROR_ORGANIZATION_TAGS_QUERY.md new file mode 100644 index 0000000000..d47e3c4287 --- /dev/null +++ b/docs/docs/auto-docs/components/TagActions/TagActionsMocks/variables/MOCKS_ERROR_ORGANIZATION_TAGS_QUERY.md @@ -0,0 +1,49 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [components/TagActions/TagActionsMocks](../README.md) / MOCKS\_ERROR\_ORGANIZATION\_TAGS\_QUERY + +# Variable: MOCKS\_ERROR\_ORGANIZATION\_TAGS\_QUERY + +> `const` **MOCKS\_ERROR\_ORGANIZATION\_TAGS\_QUERY**: `object`[] + +Defined in: [src/components/TagActions/TagActionsMocks.ts:622](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/TagActions/TagActionsMocks.ts#L622) + +## Type declaration + +### error + +> **error**: `Error` + +### request + +> **request**: `object` + +#### request.query + +> **query**: `DocumentNode` = `ORGANIZATION_USER_TAGS_LIST` + +#### request.variables + +> **variables**: `object` + +#### request.variables.first + +> **first**: `number` = `TAGS_QUERY_DATA_CHUNK_SIZE` + +#### request.variables.id + +> **id**: `string` = `'123'` + +#### request.variables.where + +> **where**: `object` + +#### request.variables.where.name + +> **name**: `object` + +#### request.variables.where.name.starts\_with + +> **starts\_with**: `string` = `''` diff --git a/docs/docs/auto-docs/components/TagActions/TagActionsMocks/variables/MOCKS_ERROR_SUBTAGS_QUERY.md b/docs/docs/auto-docs/components/TagActions/TagActionsMocks/variables/MOCKS_ERROR_SUBTAGS_QUERY.md new file mode 100644 index 0000000000..1ffe547855 --- /dev/null +++ b/docs/docs/auto-docs/components/TagActions/TagActionsMocks/variables/MOCKS_ERROR_SUBTAGS_QUERY.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [components/TagActions/TagActionsMocks](../README.md) / MOCKS\_ERROR\_SUBTAGS\_QUERY + +# Variable: MOCKS\_ERROR\_SUBTAGS\_QUERY + +> `const` **MOCKS\_ERROR\_SUBTAGS\_QUERY**: (\{ `error`: `undefined`; `request`: \{ `query`: `DocumentNode`; `variables`: \{ `first`: `number`; `id`: `string`; `where`: \{ `name`: \{ `starts_with`: `string`; \}; \}; \}; \}; `result`: \{ `data`: \{ `organizations`: `object`[]; \}; \}; \} \| \{ `error`: `Error`; `request`: \{ `query`: `DocumentNode`; `variables`: \{ `first`: `number`; `id`: `string`; `where`: `undefined`; \}; \}; `result`: `undefined`; \})[] + +Defined in: [src/components/TagActions/TagActionsMocks.ts:636](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/TagActions/TagActionsMocks.ts#L636) diff --git a/docs/docs/auto-docs/components/TagActions/TagNode/README.md b/docs/docs/auto-docs/components/TagActions/TagNode/README.md new file mode 100644 index 0000000000..094685e530 --- /dev/null +++ b/docs/docs/auto-docs/components/TagActions/TagNode/README.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / components/TagActions/TagNode + +# components/TagActions/TagNode + +## Functions + +- [default](functions/default.md) diff --git a/docs/docs/auto-docs/components/TagActions/TagNode/functions/default.md b/docs/docs/auto-docs/components/TagActions/TagNode/functions/default.md new file mode 100644 index 0000000000..2ea183aa1a --- /dev/null +++ b/docs/docs/auto-docs/components/TagActions/TagNode/functions/default.md @@ -0,0 +1,33 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [components/TagActions/TagNode](../README.md) / default + +# Function: default() + +> **default**(`props`, `deprecatedLegacyContext`?): `ReactNode` + +Defined in: [src/components/TagActions/TagNode.tsx:29](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/TagActions/TagNode.tsx#L29) + +Renders the Tags which can be expanded to list subtags. + +## Parameters + +### props + +`InterfaceTagNodeProps` + +### deprecatedLegacyContext? + +`any` + +**Deprecated** + +**See** + +[React Docs](https://legacy.reactjs.org/docs/legacy-context.html#referencing-context-in-lifecycle-methods) + +## Returns + +`ReactNode` diff --git a/docs/docs/auto-docs/components/TagActions/TagNodeMocks/README.md b/docs/docs/auto-docs/components/TagActions/TagNodeMocks/README.md new file mode 100644 index 0000000000..a5a0bd060a --- /dev/null +++ b/docs/docs/auto-docs/components/TagActions/TagNodeMocks/README.md @@ -0,0 +1,12 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / components/TagActions/TagNodeMocks + +# components/TagActions/TagNodeMocks + +## Variables + +- [MOCKS\_ERROR\_SUBTAGS\_QUERY1](variables/MOCKS_ERROR_SUBTAGS_QUERY1.md) +- [MOCKS1](variables/MOCKS1.md) diff --git a/docs/docs/auto-docs/components/TagActions/TagNodeMocks/variables/MOCKS1.md b/docs/docs/auto-docs/components/TagActions/TagNodeMocks/variables/MOCKS1.md new file mode 100644 index 0000000000..1bed854fb5 --- /dev/null +++ b/docs/docs/auto-docs/components/TagActions/TagNodeMocks/variables/MOCKS1.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [components/TagActions/TagNodeMocks](../README.md) / MOCKS1 + +# Variable: MOCKS1 + +> `const` **MOCKS1**: (\{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `after`: `undefined`; `first`: `number`; `id`: `string`; \}; \}; `result`: \{ `data`: \{ `getChildTags`: \{ `__typename`: `string`; `childTags`: \{ `__typename`: `string`; `edges`: `object`[]; `pageInfo`: \{ `__typename`: `string`; `endCursor`: `string`; `hasNextPage`: `boolean`; \}; \}; \}; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `after`: `string`; `first`: `number`; `id`: `string`; \}; \}; `result`: \{ `data`: \{ `getChildTags`: \{ `__typename`: `string`; `childTags`: \{ `__typename`: `string`; `edges`: `object`[]; `pageInfo`: \{ `__typename`: `string`; `endCursor`: `string`; `hasNextPage`: `boolean`; \}; \}; \}; \}; \}; \})[] + +Defined in: [src/components/TagActions/TagNodeMocks.ts:3](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/TagActions/TagNodeMocks.ts#L3) diff --git a/docs/docs/auto-docs/components/TagActions/TagNodeMocks/variables/MOCKS_ERROR_SUBTAGS_QUERY1.md b/docs/docs/auto-docs/components/TagActions/TagNodeMocks/variables/MOCKS_ERROR_SUBTAGS_QUERY1.md new file mode 100644 index 0000000000..bd4d3d0dfb --- /dev/null +++ b/docs/docs/auto-docs/components/TagActions/TagNodeMocks/variables/MOCKS_ERROR_SUBTAGS_QUERY1.md @@ -0,0 +1,37 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [components/TagActions/TagNodeMocks](../README.md) / MOCKS\_ERROR\_SUBTAGS\_QUERY1 + +# Variable: MOCKS\_ERROR\_SUBTAGS\_QUERY1 + +> `const` **MOCKS\_ERROR\_SUBTAGS\_QUERY1**: `object`[] + +Defined in: [src/components/TagActions/TagNodeMocks.ts:64](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/TagActions/TagNodeMocks.ts#L64) + +## Type declaration + +### error + +> **error**: `Error` + +### request + +> **request**: `object` + +#### request.query + +> **query**: `DocumentNode` = `USER_TAG_SUB_TAGS` + +#### request.variables + +> **variables**: `object` + +#### request.variables.first + +> **first**: `number` = `10` + +#### request.variables.id + +> **id**: `string` = `'1'` diff --git a/docs/docs/auto-docs/components/UpdateSession/UpdateSession/README.md b/docs/docs/auto-docs/components/UpdateSession/UpdateSession/README.md new file mode 100644 index 0000000000..803802d4f8 --- /dev/null +++ b/docs/docs/auto-docs/components/UpdateSession/UpdateSession/README.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / components/UpdateSession/UpdateSession + +# components/UpdateSession/UpdateSession + +## Functions + +- [default](functions/default.md) diff --git a/docs/docs/auto-docs/components/UpdateSession/UpdateSession/functions/default.md b/docs/docs/auto-docs/components/UpdateSession/UpdateSession/functions/default.md new file mode 100644 index 0000000000..7ee0b6624f --- /dev/null +++ b/docs/docs/auto-docs/components/UpdateSession/UpdateSession/functions/default.md @@ -0,0 +1,31 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [components/UpdateSession/UpdateSession](../README.md) / default + +# Function: default() + +> **default**(`props`, `deprecatedLegacyContext`?): `ReactNode` + +Defined in: [src/components/UpdateSession/UpdateSession.tsx:29](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/UpdateSession/UpdateSession.tsx#L29) + +## Parameters + +### props + +`TestInterfaceUpdateTimeoutProps` + +### deprecatedLegacyContext? + +`any` + +**Deprecated** + +**See** + +[React Docs](https://legacy.reactjs.org/docs/legacy-context.html#referencing-context-in-lifecycle-methods) + +## Returns + +`ReactNode` diff --git a/docs/docs/auto-docs/components/UserListCard/UserListCard/README.md b/docs/docs/auto-docs/components/UserListCard/UserListCard/README.md new file mode 100644 index 0000000000..c6f01125f2 --- /dev/null +++ b/docs/docs/auto-docs/components/UserListCard/UserListCard/README.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / components/UserListCard/UserListCard + +# components/UserListCard/UserListCard + +## Functions + +- [default](functions/default.md) diff --git a/docs/docs/auto-docs/components/UserListCard/UserListCard/functions/default.md b/docs/docs/auto-docs/components/UserListCard/UserListCard/functions/default.md new file mode 100644 index 0000000000..2202ac6602 --- /dev/null +++ b/docs/docs/auto-docs/components/UserListCard/UserListCard/functions/default.md @@ -0,0 +1,28 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [components/UserListCard/UserListCard](../README.md) / default + +# Function: default() + +> **default**(`props`): `JSX.Element` + +Defined in: [src/components/UserListCard/UserListCard.tsx:27](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/UserListCard/UserListCard.tsx#L27) + +The UserListCard component allows for adding a user as an admin in a specific organization. +It uses a button to trigger a mutation for updating the user's role. + +## Parameters + +### props + +`InterfaceUserListCardProps` + +The properties for the UserListCard component. + +## Returns + +`JSX.Element` + +The JSX element representing the user list card. diff --git a/docs/docs/auto-docs/components/UserPasswordUpdate/UserPasswordUpdate/README.md b/docs/docs/auto-docs/components/UserPasswordUpdate/UserPasswordUpdate/README.md new file mode 100644 index 0000000000..f40a70775b --- /dev/null +++ b/docs/docs/auto-docs/components/UserPasswordUpdate/UserPasswordUpdate/README.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / components/UserPasswordUpdate/UserPasswordUpdate + +# components/UserPasswordUpdate/UserPasswordUpdate + +## Functions + +- [default](functions/default.md) diff --git a/docs/docs/auto-docs/components/UserPasswordUpdate/UserPasswordUpdate/functions/default.md b/docs/docs/auto-docs/components/UserPasswordUpdate/UserPasswordUpdate/functions/default.md new file mode 100644 index 0000000000..4ede6de206 --- /dev/null +++ b/docs/docs/auto-docs/components/UserPasswordUpdate/UserPasswordUpdate/functions/default.md @@ -0,0 +1,38 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [components/UserPasswordUpdate/UserPasswordUpdate](../README.md) / default + +# Function: default() + +> **default**(`props`, `deprecatedLegacyContext`?): `ReactNode` + +Defined in: [src/components/UserPasswordUpdate/UserPasswordUpdate.tsx:23](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/UserPasswordUpdate/UserPasswordUpdate.tsx#L23) + +UserUpdate component allows users to update their passwords. +It handles form submission and communicates with the backend to update the user's password. + +## Parameters + +### props + +`InterfaceUserPasswordUpdateProps` + +The properties for the UserUpdate component. + +### deprecatedLegacyContext? + +`any` + +**Deprecated** + +**See** + +[React Docs](https://legacy.reactjs.org/docs/legacy-context.html#referencing-context-in-lifecycle-methods) + +## Returns + +`ReactNode` + +The JSX element for updating user password. diff --git a/docs/docs/auto-docs/components/UserPasswordUpdate/UserPasswordUpdateMocks/README.md b/docs/docs/auto-docs/components/UserPasswordUpdate/UserPasswordUpdateMocks/README.md new file mode 100644 index 0000000000..3282ccc987 --- /dev/null +++ b/docs/docs/auto-docs/components/UserPasswordUpdate/UserPasswordUpdateMocks/README.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / components/UserPasswordUpdate/UserPasswordUpdateMocks + +# components/UserPasswordUpdate/UserPasswordUpdateMocks + +## Variables + +- [MOCKS](variables/MOCKS.md) diff --git a/docs/docs/auto-docs/components/UserPasswordUpdate/UserPasswordUpdateMocks/variables/MOCKS.md b/docs/docs/auto-docs/components/UserPasswordUpdate/UserPasswordUpdateMocks/variables/MOCKS.md new file mode 100644 index 0000000000..83ed7f2a32 --- /dev/null +++ b/docs/docs/auto-docs/components/UserPasswordUpdate/UserPasswordUpdateMocks/variables/MOCKS.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [components/UserPasswordUpdate/UserPasswordUpdateMocks](../README.md) / MOCKS + +# Variable: MOCKS + +> `const` **MOCKS**: (\{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `confirmNewPassword`: `string`; `newPassword`: `string`; `previousPassword`: `string`; \}; \}; `result`: \{ `data`: \{ `users`: `object`[]; \}; `errors`: `undefined`; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `confirmNewPassword`: `string`; `newPassword`: `string`; `previousPassword`: `string`; \}; \}; `result`: \{ `data`: `undefined`; `errors`: `object`[]; \}; \})[] + +Defined in: [src/components/UserPasswordUpdate/UserPasswordUpdateMocks.ts:3](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/UserPasswordUpdate/UserPasswordUpdateMocks.ts#L3) diff --git a/docs/docs/auto-docs/components/UserPortal/ChatRoom/ChatRoom/README.md b/docs/docs/auto-docs/components/UserPortal/ChatRoom/ChatRoom/README.md new file mode 100644 index 0000000000..278150d222 --- /dev/null +++ b/docs/docs/auto-docs/components/UserPortal/ChatRoom/ChatRoom/README.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / components/UserPortal/ChatRoom/ChatRoom + +# components/UserPortal/ChatRoom/ChatRoom + +## Functions + +- [default](functions/default.md) diff --git a/docs/docs/auto-docs/components/UserPortal/ChatRoom/ChatRoom/functions/default.md b/docs/docs/auto-docs/components/UserPortal/ChatRoom/ChatRoom/functions/default.md new file mode 100644 index 0000000000..661f67002b --- /dev/null +++ b/docs/docs/auto-docs/components/UserPortal/ChatRoom/ChatRoom/functions/default.md @@ -0,0 +1,21 @@ +[**talawa-admin**](../../../../../README.md) + +*** + +[talawa-admin](../../../../../modules.md) / [components/UserPortal/ChatRoom/ChatRoom](../README.md) / default + +# Function: default() + +> **default**(`props`): `JSX.Element` + +Defined in: [src/components/UserPortal/ChatRoom/ChatRoom.tsx:100](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/UserPortal/ChatRoom/ChatRoom.tsx#L100) + +## Parameters + +### props + +`InterfaceChatRoomProps` + +## Returns + +`JSX.Element` diff --git a/docs/docs/auto-docs/components/UserPortal/CommentCard/CommentCard/README.md b/docs/docs/auto-docs/components/UserPortal/CommentCard/CommentCard/README.md new file mode 100644 index 0000000000..b611b74f48 --- /dev/null +++ b/docs/docs/auto-docs/components/UserPortal/CommentCard/CommentCard/README.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / components/UserPortal/CommentCard/CommentCard + +# components/UserPortal/CommentCard/CommentCard + +## Functions + +- [default](functions/default.md) diff --git a/docs/docs/auto-docs/components/UserPortal/CommentCard/CommentCard/functions/default.md b/docs/docs/auto-docs/components/UserPortal/CommentCard/CommentCard/functions/default.md new file mode 100644 index 0000000000..ff5d7f0180 --- /dev/null +++ b/docs/docs/auto-docs/components/UserPortal/CommentCard/CommentCard/functions/default.md @@ -0,0 +1,30 @@ +[**talawa-admin**](../../../../../README.md) + +*** + +[talawa-admin](../../../../../modules.md) / [components/UserPortal/CommentCard/CommentCard](../README.md) / default + +# Function: default() + +> **default**(`props`): `JSX.Element` + +Defined in: [src/components/UserPortal/CommentCard/CommentCard.tsx:51](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/UserPortal/CommentCard/CommentCard.tsx#L51) + +Displays a card for a single comment with options to like or dislike the comment. + +Shows the commenter's name, the comment text, and the number of likes. +Allows the user to like or dislike the comment. The button icon changes based on whether the comment is liked by the user. + +## Parameters + +### props + +`InterfaceCommentCardProps` + +The properties passed to the component. + +## Returns + +`JSX.Element` + +The rendered comment card component. diff --git a/docs/docs/auto-docs/components/UserPortal/ContactCard/ContactCard/README.md b/docs/docs/auto-docs/components/UserPortal/ContactCard/ContactCard/README.md new file mode 100644 index 0000000000..829e0d2ed6 --- /dev/null +++ b/docs/docs/auto-docs/components/UserPortal/ContactCard/ContactCard/README.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / components/UserPortal/ContactCard/ContactCard + +# components/UserPortal/ContactCard/ContactCard + +## Functions + +- [default](functions/default.md) diff --git a/docs/docs/auto-docs/components/UserPortal/ContactCard/ContactCard/functions/default.md b/docs/docs/auto-docs/components/UserPortal/ContactCard/ContactCard/functions/default.md new file mode 100644 index 0000000000..3e37c7c423 --- /dev/null +++ b/docs/docs/auto-docs/components/UserPortal/ContactCard/ContactCard/functions/default.md @@ -0,0 +1,31 @@ +[**talawa-admin**](../../../../../README.md) + +*** + +[talawa-admin](../../../../../modules.md) / [components/UserPortal/ContactCard/ContactCard](../README.md) / default + +# Function: default() + +> **default**(`props`): `JSX.Element` + +Defined in: [src/components/UserPortal/ContactCard/ContactCard.tsx:36](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/UserPortal/ContactCard/ContactCard.tsx#L36) + +Displays a card for a contact in a contact list. + +Shows the contact's name, email, and an image or avatar. +The card changes background color based on whether it is selected. +Clicking on the card sets it as the selected contact and updates the contact name. + +## Parameters + +### props + +`InterfaceContactCardProps` + +The properties passed to the component. + +## Returns + +`JSX.Element` + +The rendered contact card component. diff --git a/docs/docs/auto-docs/components/UserPortal/CreateDirectChat/CreateDirectChat/README.md b/docs/docs/auto-docs/components/UserPortal/CreateDirectChat/CreateDirectChat/README.md new file mode 100644 index 0000000000..ae31d45ce2 --- /dev/null +++ b/docs/docs/auto-docs/components/UserPortal/CreateDirectChat/CreateDirectChat/README.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / components/UserPortal/CreateDirectChat/CreateDirectChat + +# components/UserPortal/CreateDirectChat/CreateDirectChat + +## Functions + +- [default](functions/default.md) diff --git a/docs/docs/auto-docs/components/UserPortal/CreateDirectChat/CreateDirectChat/functions/default.md b/docs/docs/auto-docs/components/UserPortal/CreateDirectChat/CreateDirectChat/functions/default.md new file mode 100644 index 0000000000..895acaed7f --- /dev/null +++ b/docs/docs/auto-docs/components/UserPortal/CreateDirectChat/CreateDirectChat/functions/default.md @@ -0,0 +1,21 @@ +[**talawa-admin**](../../../../../README.md) + +*** + +[talawa-admin](../../../../../modules.md) / [components/UserPortal/CreateDirectChat/CreateDirectChat](../README.md) / default + +# Function: default() + +> **default**(`__namedParameters`): `JSX.Element` + +Defined in: [src/components/UserPortal/CreateDirectChat/CreateDirectChat.tsx:60](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/UserPortal/CreateDirectChat/CreateDirectChat.tsx#L60) + +## Parameters + +### \_\_namedParameters + +`InterfaceCreateDirectChatProps` + +## Returns + +`JSX.Element` diff --git a/docs/docs/auto-docs/components/UserPortal/CreateGroupChat/CreateGroupChat/README.md b/docs/docs/auto-docs/components/UserPortal/CreateGroupChat/CreateGroupChat/README.md new file mode 100644 index 0000000000..e1e42b76cb --- /dev/null +++ b/docs/docs/auto-docs/components/UserPortal/CreateGroupChat/CreateGroupChat/README.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / components/UserPortal/CreateGroupChat/CreateGroupChat + +# components/UserPortal/CreateGroupChat/CreateGroupChat + +## Functions + +- [default](functions/default.md) diff --git a/docs/docs/auto-docs/components/UserPortal/CreateGroupChat/CreateGroupChat/functions/default.md b/docs/docs/auto-docs/components/UserPortal/CreateGroupChat/CreateGroupChat/functions/default.md new file mode 100644 index 0000000000..ad68c544b4 --- /dev/null +++ b/docs/docs/auto-docs/components/UserPortal/CreateGroupChat/CreateGroupChat/functions/default.md @@ -0,0 +1,21 @@ +[**talawa-admin**](../../../../../README.md) + +*** + +[talawa-admin](../../../../../modules.md) / [components/UserPortal/CreateGroupChat/CreateGroupChat](../README.md) / default + +# Function: default() + +> **default**(`__namedParameters`): `JSX.Element` + +Defined in: [src/components/UserPortal/CreateGroupChat/CreateGroupChat.tsx:63](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/UserPortal/CreateGroupChat/CreateGroupChat.tsx#L63) + +## Parameters + +### \_\_namedParameters + +`InterfaceCreateGroupChatProps` + +## Returns + +`JSX.Element` diff --git a/docs/docs/auto-docs/components/UserPortal/DonationCard/DonationCard/README.md b/docs/docs/auto-docs/components/UserPortal/DonationCard/DonationCard/README.md new file mode 100644 index 0000000000..0e4045098f --- /dev/null +++ b/docs/docs/auto-docs/components/UserPortal/DonationCard/DonationCard/README.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / components/UserPortal/DonationCard/DonationCard + +# components/UserPortal/DonationCard/DonationCard + +## Functions + +- [default](functions/default.md) diff --git a/docs/docs/auto-docs/components/UserPortal/DonationCard/DonationCard/functions/default.md b/docs/docs/auto-docs/components/UserPortal/DonationCard/DonationCard/functions/default.md new file mode 100644 index 0000000000..ba31328f24 --- /dev/null +++ b/docs/docs/auto-docs/components/UserPortal/DonationCard/DonationCard/functions/default.md @@ -0,0 +1,30 @@ +[**talawa-admin**](../../../../../README.md) + +*** + +[talawa-admin](../../../../../modules.md) / [components/UserPortal/DonationCard/DonationCard](../README.md) / default + +# Function: default() + +> **default**(`props`): `JSX.Element` + +Defined in: [src/components/UserPortal/DonationCard/DonationCard.tsx:19](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/UserPortal/DonationCard/DonationCard.tsx#L19) + +Displays a card with details about a donation. + +Shows the donor's name, the amount donated, and the date of the donation. +Includes a button to view more details about the donation. + +## Parameters + +### props + +[`InterfaceDonationCardProps`](../../../../../screens/UserPortal/Donate/Donate/interfaces/InterfaceDonationCardProps.md) + +The properties passed to the component. + +## Returns + +`JSX.Element` + +The rendered donation card component. diff --git a/docs/docs/auto-docs/components/UserPortal/EventCard/EventCard/README.md b/docs/docs/auto-docs/components/UserPortal/EventCard/EventCard/README.md new file mode 100644 index 0000000000..4c08daf4d5 --- /dev/null +++ b/docs/docs/auto-docs/components/UserPortal/EventCard/EventCard/README.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / components/UserPortal/EventCard/EventCard + +# components/UserPortal/EventCard/EventCard + +## Functions + +- [default](functions/default.md) diff --git a/docs/docs/auto-docs/components/UserPortal/EventCard/EventCard/functions/default.md b/docs/docs/auto-docs/components/UserPortal/EventCard/EventCard/functions/default.md new file mode 100644 index 0000000000..681e4619b1 --- /dev/null +++ b/docs/docs/auto-docs/components/UserPortal/EventCard/EventCard/functions/default.md @@ -0,0 +1,31 @@ +[**talawa-admin**](../../../../../README.md) + +*** + +[talawa-admin](../../../../../modules.md) / [components/UserPortal/EventCard/EventCard](../README.md) / default + +# Function: default() + +> **default**(`props`): `JSX.Element` + +Defined in: [src/components/UserPortal/EventCard/EventCard.tsx:63](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/UserPortal/EventCard/EventCard.tsx#L63) + +Displays information about an event and provides an option to register for it. + +Shows the event's title, description, location, start and end dates and times, +creator's name, and registration status. Includes a button to register for the event +if the user is not already registered. + +## Parameters + +### props + +`InterfaceEventCardProps` + +The properties for the event card. + +## Returns + +`JSX.Element` + +The event card component. diff --git a/docs/docs/auto-docs/components/UserPortal/OrganizationCard/OrganizationCard/README.md b/docs/docs/auto-docs/components/UserPortal/OrganizationCard/OrganizationCard/README.md new file mode 100644 index 0000000000..25b71e5469 --- /dev/null +++ b/docs/docs/auto-docs/components/UserPortal/OrganizationCard/OrganizationCard/README.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / components/UserPortal/OrganizationCard/OrganizationCard + +# components/UserPortal/OrganizationCard/OrganizationCard + +## Functions + +- [default](functions/default.md) diff --git a/docs/docs/auto-docs/components/UserPortal/OrganizationCard/OrganizationCard/functions/default.md b/docs/docs/auto-docs/components/UserPortal/OrganizationCard/OrganizationCard/functions/default.md new file mode 100644 index 0000000000..fa41c4e98e --- /dev/null +++ b/docs/docs/auto-docs/components/UserPortal/OrganizationCard/OrganizationCard/functions/default.md @@ -0,0 +1,21 @@ +[**talawa-admin**](../../../../../README.md) + +*** + +[talawa-admin](../../../../../modules.md) / [components/UserPortal/OrganizationCard/OrganizationCard](../README.md) / default + +# Function: default() + +> **default**(`props`): `JSX.Element` + +Defined in: [src/components/UserPortal/OrganizationCard/OrganizationCard.tsx:73](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/UserPortal/OrganizationCard/OrganizationCard.tsx#L73) + +## Parameters + +### props + +`InterfaceOrganizationCardProps` + +## Returns + +`JSX.Element` diff --git a/docs/docs/auto-docs/components/UserPortal/OrganizationNavbar/OrganizationNavbar/README.md b/docs/docs/auto-docs/components/UserPortal/OrganizationNavbar/OrganizationNavbar/README.md new file mode 100644 index 0000000000..5677238173 --- /dev/null +++ b/docs/docs/auto-docs/components/UserPortal/OrganizationNavbar/OrganizationNavbar/README.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / components/UserPortal/OrganizationNavbar/OrganizationNavbar + +# components/UserPortal/OrganizationNavbar/OrganizationNavbar + +## Functions + +- [default](functions/default.md) diff --git a/docs/docs/auto-docs/components/UserPortal/OrganizationNavbar/OrganizationNavbar/functions/default.md b/docs/docs/auto-docs/components/UserPortal/OrganizationNavbar/OrganizationNavbar/functions/default.md new file mode 100644 index 0000000000..de9bed5878 --- /dev/null +++ b/docs/docs/auto-docs/components/UserPortal/OrganizationNavbar/OrganizationNavbar/functions/default.md @@ -0,0 +1,33 @@ +[**talawa-admin**](../../../../../README.md) + +*** + +[talawa-admin](../../../../../modules.md) / [components/UserPortal/OrganizationNavbar/OrganizationNavbar](../README.md) / default + +# Function: default() + +> **default**(`props`): `JSX.Element` + +Defined in: [src/components/UserPortal/OrganizationNavbar/OrganizationNavbar.tsx:44](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/UserPortal/OrganizationNavbar/OrganizationNavbar.tsx#L44) + +Displays the organization navbar with navigation options, user settings, and language selection. + +The navbar includes: +- Organization branding and name. +- Navigation links for various plugins based on user permissions. +- Language dropdown for changing the interface language. +- User dropdown for accessing settings and logging out. + +## Parameters + +### props + +`InterfaceNavbarProps` + +The properties for the navbar. + +## Returns + +`JSX.Element` + +The organization navbar component. diff --git a/docs/docs/auto-docs/components/UserPortal/OrganizationSidebar/OrganizationSidebar/README.md b/docs/docs/auto-docs/components/UserPortal/OrganizationSidebar/OrganizationSidebar/README.md new file mode 100644 index 0000000000..91d4321195 --- /dev/null +++ b/docs/docs/auto-docs/components/UserPortal/OrganizationSidebar/OrganizationSidebar/README.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / components/UserPortal/OrganizationSidebar/OrganizationSidebar + +# components/UserPortal/OrganizationSidebar/OrganizationSidebar + +## Functions + +- [default](functions/default.md) diff --git a/docs/docs/auto-docs/components/UserPortal/OrganizationSidebar/OrganizationSidebar/functions/default.md b/docs/docs/auto-docs/components/UserPortal/OrganizationSidebar/OrganizationSidebar/functions/default.md new file mode 100644 index 0000000000..9a63284d59 --- /dev/null +++ b/docs/docs/auto-docs/components/UserPortal/OrganizationSidebar/OrganizationSidebar/functions/default.md @@ -0,0 +1,29 @@ +[**talawa-admin**](../../../../../README.md) + +*** + +[talawa-admin](../../../../../modules.md) / [components/UserPortal/OrganizationSidebar/OrganizationSidebar](../README.md) / default + +# Function: default() + +> **default**(): `JSX.Element` + +Defined in: [src/components/UserPortal/OrganizationSidebar/OrganizationSidebar.tsx:36](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/UserPortal/OrganizationSidebar/OrganizationSidebar.tsx#L36) + +OrganizationSidebar displays the sidebar for an organization, showing a list of members and events. + +This component fetches and displays: +- The top 3 members of the organization with their images and names. +- The top 3 upcoming events for the organization with their titles, start, and end dates. + +It includes: +- A link to view all members. +- A link to view all events. + +The sidebar handles loading states and displays appropriate messages while data is being fetched. + +## Returns + +`JSX.Element` + +JSX.Element representing the organization sidebar. diff --git a/docs/docs/auto-docs/components/UserPortal/PeopleCard/PeopleCard/README.md b/docs/docs/auto-docs/components/UserPortal/PeopleCard/PeopleCard/README.md new file mode 100644 index 0000000000..8440febd7f --- /dev/null +++ b/docs/docs/auto-docs/components/UserPortal/PeopleCard/PeopleCard/README.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / components/UserPortal/PeopleCard/PeopleCard + +# components/UserPortal/PeopleCard/PeopleCard + +## Functions + +- [default](functions/default.md) diff --git a/docs/docs/auto-docs/components/UserPortal/PeopleCard/PeopleCard/functions/default.md b/docs/docs/auto-docs/components/UserPortal/PeopleCard/PeopleCard/functions/default.md new file mode 100644 index 0000000000..a6f86fd2ff --- /dev/null +++ b/docs/docs/auto-docs/components/UserPortal/PeopleCard/PeopleCard/functions/default.md @@ -0,0 +1,34 @@ +[**talawa-admin**](../../../../../README.md) + +*** + +[talawa-admin](../../../../../modules.md) / [components/UserPortal/PeopleCard/PeopleCard](../README.md) / default + +# Function: default() + +> **default**(`props`): `JSX.Element` + +Defined in: [src/components/UserPortal/PeopleCard/PeopleCard.tsx:30](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/UserPortal/PeopleCard/PeopleCard.tsx#L30) + +PeopleCard component displays information about a person within an organization. + +It includes: +- An image of the person or a default image if none is provided. +- The serial number of the person. +- The person's name. +- The person's email address. +- The person's role within the organization, styled with a border. + +## Parameters + +### props + +`InterfaceOrganizationCardProps` + +The properties passed to the component. + +## Returns + +`JSX.Element` + +JSX.Element representing a card with the person's details. diff --git a/docs/docs/auto-docs/components/UserPortal/PostCard/PostCard/README.md b/docs/docs/auto-docs/components/UserPortal/PostCard/PostCard/README.md new file mode 100644 index 0000000000..741a0eada0 --- /dev/null +++ b/docs/docs/auto-docs/components/UserPortal/PostCard/PostCard/README.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / components/UserPortal/PostCard/PostCard + +# components/UserPortal/PostCard/PostCard + +## Functions + +- [default](functions/default.md) diff --git a/docs/docs/auto-docs/components/UserPortal/PostCard/PostCard/functions/default.md b/docs/docs/auto-docs/components/UserPortal/PostCard/PostCard/functions/default.md new file mode 100644 index 0000000000..5647ad973d --- /dev/null +++ b/docs/docs/auto-docs/components/UserPortal/PostCard/PostCard/functions/default.md @@ -0,0 +1,34 @@ +[**talawa-admin**](../../../../../README.md) + +*** + +[talawa-admin](../../../../../modules.md) / [components/UserPortal/PostCard/PostCard](../README.md) / default + +# Function: default() + +> **default**(`props`): `JSX.Element` + +Defined in: [src/components/UserPortal/PostCard/PostCard.tsx:69](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/UserPortal/PostCard/PostCard.tsx#L69) + +PostCard component displays an individual post, including its details, interactions, and comments. + +The component allows users to: +- View the post's details in a modal. +- Edit or delete the post. +- Like or unlike the post. +- Add comments to the post. +- Like or dislike individual comments. + +## Parameters + +### props + +[`InterfacePostCard`](../../../../../utils/interfaces/interfaces/InterfacePostCard.md) + +The properties passed to the component including post details, comments, and related actions. + +## Returns + +`JSX.Element` + +JSX.Element representing a post card with interactive features. diff --git a/docs/docs/auto-docs/components/UserPortal/PromotedPost/PromotedPost/README.md b/docs/docs/auto-docs/components/UserPortal/PromotedPost/PromotedPost/README.md new file mode 100644 index 0000000000..c906e91831 --- /dev/null +++ b/docs/docs/auto-docs/components/UserPortal/PromotedPost/PromotedPost/README.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / components/UserPortal/PromotedPost/PromotedPost + +# components/UserPortal/PromotedPost/PromotedPost + +## Functions + +- [default](functions/default.md) diff --git a/docs/docs/auto-docs/components/UserPortal/PromotedPost/PromotedPost/functions/default.md b/docs/docs/auto-docs/components/UserPortal/PromotedPost/PromotedPost/functions/default.md new file mode 100644 index 0000000000..b91ad7c51a --- /dev/null +++ b/docs/docs/auto-docs/components/UserPortal/PromotedPost/PromotedPost/functions/default.md @@ -0,0 +1,32 @@ +[**talawa-admin**](../../../../../README.md) + +*** + +[talawa-admin](../../../../../modules.md) / [components/UserPortal/PromotedPost/PromotedPost](../README.md) / default + +# Function: default() + +> **default**(`props`): `JSX.Element` + +Defined in: [src/components/UserPortal/PromotedPost/PromotedPost.tsx:23](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/UserPortal/PromotedPost/PromotedPost.tsx#L23) + +PromotedPost component displays a card representing promoted content. + +This component includes: +- A header with a star icon indicating the content is promoted. +- A title and description of the promoted content. +- An optional image associated with the promoted content. + +## Parameters + +### props + +`InterfacePostCardProps` + +Properties passed to the component including an image, title, and ID. + +## Returns + +`JSX.Element` + +JSX.Element representing a card with promoted content. diff --git a/docs/docs/auto-docs/components/UserPortal/Register/Register/README.md b/docs/docs/auto-docs/components/UserPortal/Register/Register/README.md new file mode 100644 index 0000000000..5df2315aa1 --- /dev/null +++ b/docs/docs/auto-docs/components/UserPortal/Register/Register/README.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / components/UserPortal/Register/Register + +# components/UserPortal/Register/Register + +## Functions + +- [default](functions/default.md) diff --git a/docs/docs/auto-docs/components/UserPortal/Register/Register/functions/default.md b/docs/docs/auto-docs/components/UserPortal/Register/Register/functions/default.md new file mode 100644 index 0000000000..365f492cd2 --- /dev/null +++ b/docs/docs/auto-docs/components/UserPortal/Register/Register/functions/default.md @@ -0,0 +1,21 @@ +[**talawa-admin**](../../../../../README.md) + +*** + +[talawa-admin](../../../../../modules.md) / [components/UserPortal/Register/Register](../README.md) / default + +# Function: default() + +> **default**(`props`): `JSX.Element` + +Defined in: [src/components/UserPortal/Register/Register.tsx:22](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/UserPortal/Register/Register.tsx#L22) + +## Parameters + +### props + +`InterfaceRegisterProps` + +## Returns + +`JSX.Element` diff --git a/docs/docs/auto-docs/components/UserPortal/SecuredRouteForUser/SecuredRouteForUser/README.md b/docs/docs/auto-docs/components/UserPortal/SecuredRouteForUser/SecuredRouteForUser/README.md new file mode 100644 index 0000000000..3e3da099d0 --- /dev/null +++ b/docs/docs/auto-docs/components/UserPortal/SecuredRouteForUser/SecuredRouteForUser/README.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / components/UserPortal/SecuredRouteForUser/SecuredRouteForUser + +# components/UserPortal/SecuredRouteForUser/SecuredRouteForUser + +## Functions + +- [default](functions/default.md) diff --git a/docs/docs/auto-docs/components/UserPortal/SecuredRouteForUser/SecuredRouteForUser/functions/default.md b/docs/docs/auto-docs/components/UserPortal/SecuredRouteForUser/SecuredRouteForUser/functions/default.md new file mode 100644 index 0000000000..6dd1a023a1 --- /dev/null +++ b/docs/docs/auto-docs/components/UserPortal/SecuredRouteForUser/SecuredRouteForUser/functions/default.md @@ -0,0 +1,22 @@ +[**talawa-admin**](../../../../../README.md) + +*** + +[talawa-admin](../../../../../modules.md) / [components/UserPortal/SecuredRouteForUser/SecuredRouteForUser](../README.md) / default + +# Function: default() + +> **default**(): `Element` + +Defined in: [src/components/UserPortal/SecuredRouteForUser/SecuredRouteForUser.tsx:14](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/UserPortal/SecuredRouteForUser/SecuredRouteForUser.tsx#L14) + +A component that guards routes by checking if the user is logged in. +If the user is logged in and does not have 'AdminFor' set, the child routes are rendered. +If the user is not logged in, they are redirected to the homepage. +If the user is logged in but has 'AdminFor' set, a 404 page is shown. + +## Returns + +`Element` + +JSX.Element - Rendered component based on user authentication and role. diff --git a/docs/docs/auto-docs/components/UserPortal/StartPostModal/StartPostModal/README.md b/docs/docs/auto-docs/components/UserPortal/StartPostModal/StartPostModal/README.md new file mode 100644 index 0000000000..0a50b6de47 --- /dev/null +++ b/docs/docs/auto-docs/components/UserPortal/StartPostModal/StartPostModal/README.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / components/UserPortal/StartPostModal/StartPostModal + +# components/UserPortal/StartPostModal/StartPostModal + +## Functions + +- [default](functions/default.md) diff --git a/docs/docs/auto-docs/components/UserPortal/StartPostModal/StartPostModal/functions/default.md b/docs/docs/auto-docs/components/UserPortal/StartPostModal/StartPostModal/functions/default.md new file mode 100644 index 0000000000..432bbf2b26 --- /dev/null +++ b/docs/docs/auto-docs/components/UserPortal/StartPostModal/StartPostModal/functions/default.md @@ -0,0 +1,30 @@ +[**talawa-admin**](../../../../../README.md) + +*** + +[talawa-admin](../../../../../modules.md) / [components/UserPortal/StartPostModal/StartPostModal](../README.md) / default + +# Function: default() + +> **default**(`__namedParameters`): `Element` + +Defined in: [src/components/UserPortal/StartPostModal/StartPostModal.tsx:40](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/UserPortal/StartPostModal/StartPostModal.tsx#L40) + +A modal component for creating a new post. + +This modal includes: +- A form where users can input the content of the post. +- A preview of the image if provided. +- User's profile image and name displayed in the modal header. + +## Parameters + +### \_\_namedParameters + +`InterfaceStartPostModalProps` + +## Returns + +`Element` + +JSX.Element - The rendered modal component. diff --git a/docs/docs/auto-docs/components/UserPortal/UserNavbar/UserNavbar/README.md b/docs/docs/auto-docs/components/UserPortal/UserNavbar/UserNavbar/README.md new file mode 100644 index 0000000000..e5c8408b35 --- /dev/null +++ b/docs/docs/auto-docs/components/UserPortal/UserNavbar/UserNavbar/README.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / components/UserPortal/UserNavbar/UserNavbar + +# components/UserPortal/UserNavbar/UserNavbar + +## Functions + +- [default](functions/default.md) diff --git a/docs/docs/auto-docs/components/UserPortal/UserNavbar/UserNavbar/functions/default.md b/docs/docs/auto-docs/components/UserPortal/UserNavbar/UserNavbar/functions/default.md new file mode 100644 index 0000000000..8a65f38f03 --- /dev/null +++ b/docs/docs/auto-docs/components/UserPortal/UserNavbar/UserNavbar/functions/default.md @@ -0,0 +1,24 @@ +[**talawa-admin**](../../../../../README.md) + +*** + +[talawa-admin](../../../../../modules.md) / [components/UserPortal/UserNavbar/UserNavbar](../README.md) / default + +# Function: default() + +> **default**(): `JSX.Element` + +Defined in: [src/components/UserPortal/UserNavbar/UserNavbar.tsx:26](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/UserPortal/UserNavbar/UserNavbar.tsx#L26) + +Navbar component for user-specific actions and settings. + +This component provides: +- A branding image and name. +- A dropdown for language selection. +- A dropdown for user actions including profile settings and logout. + +## Returns + +`JSX.Element` + +JSX.Element - The rendered Navbar component. diff --git a/docs/docs/auto-docs/components/UserPortal/UserProfile/EventsAttendedByUser/README.md b/docs/docs/auto-docs/components/UserPortal/UserProfile/EventsAttendedByUser/README.md new file mode 100644 index 0000000000..f6715014d5 --- /dev/null +++ b/docs/docs/auto-docs/components/UserPortal/UserProfile/EventsAttendedByUser/README.md @@ -0,0 +1,17 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / components/UserPortal/UserProfile/EventsAttendedByUser + +# components/UserPortal/UserProfile/EventsAttendedByUser + +## Functions + +- [EventsAttendedByUser](functions/EventsAttendedByUser.md) + +## References + +### default + +Renames and re-exports [EventsAttendedByUser](functions/EventsAttendedByUser.md) diff --git a/docs/docs/auto-docs/components/UserPortal/UserProfile/EventsAttendedByUser/functions/EventsAttendedByUser.md b/docs/docs/auto-docs/components/UserPortal/UserProfile/EventsAttendedByUser/functions/EventsAttendedByUser.md new file mode 100644 index 0000000000..0e477d6dac --- /dev/null +++ b/docs/docs/auto-docs/components/UserPortal/UserProfile/EventsAttendedByUser/functions/EventsAttendedByUser.md @@ -0,0 +1,31 @@ +[**talawa-admin**](../../../../../README.md) + +*** + +[talawa-admin](../../../../../modules.md) / [components/UserPortal/UserProfile/EventsAttendedByUser](../README.md) / EventsAttendedByUser + +# Function: EventsAttendedByUser() + +> **EventsAttendedByUser**(`props`, `deprecatedLegacyContext`?): `ReactNode` + +Defined in: [src/components/UserPortal/UserProfile/EventsAttendedByUser.tsx:31](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/UserPortal/UserProfile/EventsAttendedByUser.tsx#L31) + +## Parameters + +### props + +`InterfaceUser` + +### deprecatedLegacyContext? + +`any` + +**Deprecated** + +**See** + +[React Docs](https://legacy.reactjs.org/docs/legacy-context.html#referencing-context-in-lifecycle-methods) + +## Returns + +`ReactNode` diff --git a/docs/docs/auto-docs/components/UserPortal/UserProfile/UserAddressFields/README.md b/docs/docs/auto-docs/components/UserPortal/UserProfile/UserAddressFields/README.md new file mode 100644 index 0000000000..fcf8648765 --- /dev/null +++ b/docs/docs/auto-docs/components/UserPortal/UserProfile/UserAddressFields/README.md @@ -0,0 +1,17 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / components/UserPortal/UserProfile/UserAddressFields + +# components/UserPortal/UserProfile/UserAddressFields + +## Functions + +- [UserAddressFields](functions/UserAddressFields.md) + +## References + +### default + +Renames and re-exports [UserAddressFields](functions/UserAddressFields.md) diff --git a/docs/docs/auto-docs/components/UserPortal/UserProfile/UserAddressFields/functions/UserAddressFields.md b/docs/docs/auto-docs/components/UserPortal/UserProfile/UserAddressFields/functions/UserAddressFields.md new file mode 100644 index 0000000000..58af4f4c39 --- /dev/null +++ b/docs/docs/auto-docs/components/UserPortal/UserProfile/UserAddressFields/functions/UserAddressFields.md @@ -0,0 +1,38 @@ +[**talawa-admin**](../../../../../README.md) + +*** + +[talawa-admin](../../../../../modules.md) / [components/UserPortal/UserProfile/UserAddressFields](../README.md) / UserAddressFields + +# Function: UserAddressFields() + +> **UserAddressFields**(`props`, `deprecatedLegacyContext`?): `ReactNode` + +Defined in: [src/components/UserPortal/UserProfile/UserAddressFields.tsx:26](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/UserPortal/UserProfile/UserAddressFields.tsx#L26) + +Form component containing address-related input fields for user profile +Includes fields for address, city, state, and country + +## Parameters + +### props + +`InterfaceUserAddressFieldsProps` + +Component props + +### deprecatedLegacyContext? + +`any` + +**Deprecated** + +**See** + +[React Docs](https://legacy.reactjs.org/docs/legacy-context.html#referencing-context-in-lifecycle-methods) + +## Returns + +`ReactNode` + +Form group with address input fields diff --git a/docs/docs/auto-docs/components/UserPortal/UserSidebar/UserSidebar/README.md b/docs/docs/auto-docs/components/UserPortal/UserSidebar/UserSidebar/README.md new file mode 100644 index 0000000000..6dba28665f --- /dev/null +++ b/docs/docs/auto-docs/components/UserPortal/UserSidebar/UserSidebar/README.md @@ -0,0 +1,15 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / components/UserPortal/UserSidebar/UserSidebar + +# components/UserPortal/UserSidebar/UserSidebar + +## Interfaces + +- [InterfaceUserSidebarProps](interfaces/InterfaceUserSidebarProps.md) + +## Functions + +- [default](functions/default.md) diff --git a/docs/docs/auto-docs/components/UserPortal/UserSidebar/UserSidebar/functions/default.md b/docs/docs/auto-docs/components/UserPortal/UserSidebar/UserSidebar/functions/default.md new file mode 100644 index 0000000000..3cf8cfb938 --- /dev/null +++ b/docs/docs/auto-docs/components/UserPortal/UserSidebar/UserSidebar/functions/default.md @@ -0,0 +1,30 @@ +[**talawa-admin**](../../../../../README.md) + +*** + +[talawa-admin](../../../../../modules.md) / [components/UserPortal/UserSidebar/UserSidebar](../README.md) / default + +# Function: default() + +> **default**(`__namedParameters`): `Element` + +Defined in: [src/components/UserPortal/UserSidebar/UserSidebar.tsx:28](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/UserPortal/UserSidebar/UserSidebar.tsx#L28) + +Sidebar component for user navigation, including links to organizations and settings. + +Provides: +- A logo and title for the sidebar. +- Navigation buttons for "My Organizations" and "Settings". +- Dynamic styling based on the active route. + +## Parameters + +### \_\_namedParameters + +[`InterfaceUserSidebarProps`](../interfaces/InterfaceUserSidebarProps.md) + +## Returns + +`Element` + +JSX.Element - The rendered sidebar component. diff --git a/docs/docs/auto-docs/components/UserPortal/UserSidebar/UserSidebar/interfaces/InterfaceUserSidebarProps.md b/docs/docs/auto-docs/components/UserPortal/UserSidebar/UserSidebar/interfaces/InterfaceUserSidebarProps.md new file mode 100644 index 0000000000..ae51b9bc0d --- /dev/null +++ b/docs/docs/auto-docs/components/UserPortal/UserSidebar/UserSidebar/interfaces/InterfaceUserSidebarProps.md @@ -0,0 +1,25 @@ +[**talawa-admin**](../../../../../README.md) + +*** + +[talawa-admin](../../../../../modules.md) / [components/UserPortal/UserSidebar/UserSidebar](../README.md) / InterfaceUserSidebarProps + +# Interface: InterfaceUserSidebarProps + +Defined in: [src/components/UserPortal/UserSidebar/UserSidebar.tsx:10](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/UserPortal/UserSidebar/UserSidebar.tsx#L10) + +## Properties + +### hideDrawer + +> **hideDrawer**: `null` \| `boolean` + +Defined in: [src/components/UserPortal/UserSidebar/UserSidebar.tsx:11](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/UserPortal/UserSidebar/UserSidebar.tsx#L11) + +*** + +### setHideDrawer + +> **setHideDrawer**: `Dispatch`\<`SetStateAction`\<`null` \| `boolean`\>\> + +Defined in: [src/components/UserPortal/UserSidebar/UserSidebar.tsx:12](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/UserPortal/UserSidebar/UserSidebar.tsx#L12) diff --git a/docs/docs/auto-docs/components/UserPortal/UserSidebarOrg/UserSidebarOrg/README.md b/docs/docs/auto-docs/components/UserPortal/UserSidebarOrg/UserSidebarOrg/README.md new file mode 100644 index 0000000000..5fc2924076 --- /dev/null +++ b/docs/docs/auto-docs/components/UserPortal/UserSidebarOrg/UserSidebarOrg/README.md @@ -0,0 +1,15 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / components/UserPortal/UserSidebarOrg/UserSidebarOrg + +# components/UserPortal/UserSidebarOrg/UserSidebarOrg + +## Interfaces + +- [InterfaceUserSidebarOrgProps](interfaces/InterfaceUserSidebarOrgProps.md) + +## Functions + +- [default](functions/default.md) diff --git a/docs/docs/auto-docs/components/UserPortal/UserSidebarOrg/UserSidebarOrg/functions/default.md b/docs/docs/auto-docs/components/UserPortal/UserSidebarOrg/UserSidebarOrg/functions/default.md new file mode 100644 index 0000000000..feb7df325f --- /dev/null +++ b/docs/docs/auto-docs/components/UserPortal/UserSidebarOrg/UserSidebarOrg/functions/default.md @@ -0,0 +1,30 @@ +[**talawa-admin**](../../../../../README.md) + +*** + +[talawa-admin](../../../../../modules.md) / [components/UserPortal/UserSidebarOrg/UserSidebarOrg](../README.md) / default + +# Function: default() + +> **default**(`__namedParameters`): `Element` + +Defined in: [src/components/UserPortal/UserSidebarOrg/UserSidebarOrg.tsx:39](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/UserPortal/UserSidebarOrg/UserSidebarOrg.tsx#L39) + +Sidebar component for user navigation within an organization. + +Provides: +- Branding with the Talawa logo. +- Displays the current organization's details. +- Navigation options with links and collapsible dropdowns. + +## Parameters + +### \_\_namedParameters + +[`InterfaceUserSidebarOrgProps`](../interfaces/InterfaceUserSidebarOrgProps.md) + +## Returns + +`Element` + +JSX.Element - The rendered sidebar component. diff --git a/docs/docs/auto-docs/components/UserPortal/UserSidebarOrg/UserSidebarOrg/interfaces/InterfaceUserSidebarOrgProps.md b/docs/docs/auto-docs/components/UserPortal/UserSidebarOrg/UserSidebarOrg/interfaces/InterfaceUserSidebarOrgProps.md new file mode 100644 index 0000000000..4cd8b26e6c --- /dev/null +++ b/docs/docs/auto-docs/components/UserPortal/UserSidebarOrg/UserSidebarOrg/interfaces/InterfaceUserSidebarOrgProps.md @@ -0,0 +1,41 @@ +[**talawa-admin**](../../../../../README.md) + +*** + +[talawa-admin](../../../../../modules.md) / [components/UserPortal/UserSidebarOrg/UserSidebarOrg](../README.md) / InterfaceUserSidebarOrgProps + +# Interface: InterfaceUserSidebarOrgProps + +Defined in: [src/components/UserPortal/UserSidebarOrg/UserSidebarOrg.tsx:17](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/UserPortal/UserSidebarOrg/UserSidebarOrg.tsx#L17) + +## Properties + +### hideDrawer + +> **hideDrawer**: `null` \| `boolean` + +Defined in: [src/components/UserPortal/UserSidebarOrg/UserSidebarOrg.tsx:20](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/UserPortal/UserSidebarOrg/UserSidebarOrg.tsx#L20) + +*** + +### orgId + +> **orgId**: `string` + +Defined in: [src/components/UserPortal/UserSidebarOrg/UserSidebarOrg.tsx:18](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/UserPortal/UserSidebarOrg/UserSidebarOrg.tsx#L18) + +*** + +### setHideDrawer + +> **setHideDrawer**: `Dispatch`\<`SetStateAction`\<`null` \| `boolean`\>\> + +Defined in: [src/components/UserPortal/UserSidebarOrg/UserSidebarOrg.tsx:21](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/UserPortal/UserSidebarOrg/UserSidebarOrg.tsx#L21) + +*** + +### targets + +> **targets**: [`TargetsType`](../../../../../state/reducers/routesReducer/type-aliases/TargetsType.md)[] + +Defined in: [src/components/UserPortal/UserSidebarOrg/UserSidebarOrg.tsx:19](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/UserPortal/UserSidebarOrg/UserSidebarOrg.tsx#L19) diff --git a/docs/docs/auto-docs/components/UserProfileSettings/DeleteUser/README.md b/docs/docs/auto-docs/components/UserProfileSettings/DeleteUser/README.md new file mode 100644 index 0000000000..aed329a07a --- /dev/null +++ b/docs/docs/auto-docs/components/UserProfileSettings/DeleteUser/README.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / components/UserProfileSettings/DeleteUser + +# components/UserProfileSettings/DeleteUser + +## Functions + +- [default](functions/default.md) diff --git a/docs/docs/auto-docs/components/UserProfileSettings/DeleteUser/functions/default.md b/docs/docs/auto-docs/components/UserProfileSettings/DeleteUser/functions/default.md new file mode 100644 index 0000000000..99326172a2 --- /dev/null +++ b/docs/docs/auto-docs/components/UserProfileSettings/DeleteUser/functions/default.md @@ -0,0 +1,34 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [components/UserProfileSettings/DeleteUser](../README.md) / default + +# Function: default() + +> **default**(`props`, `deprecatedLegacyContext`?): `ReactNode` + +Defined in: [src/components/UserProfileSettings/DeleteUser.tsx:12](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/UserProfileSettings/DeleteUser.tsx#L12) + +DeleteUser component displays a card with a button to delete a user. +It includes a message and a button to trigger the delete action. + +## Parameters + +### props + +### deprecatedLegacyContext? + +`any` + +**Deprecated** + +**See** + +[React Docs](https://legacy.reactjs.org/docs/legacy-context.html#referencing-context-in-lifecycle-methods) + +## Returns + +`ReactNode` + +The JSX element for the delete user card. diff --git a/docs/docs/auto-docs/components/UserProfileSettings/OtherSettings/README.md b/docs/docs/auto-docs/components/UserProfileSettings/OtherSettings/README.md new file mode 100644 index 0000000000..d62f597c02 --- /dev/null +++ b/docs/docs/auto-docs/components/UserProfileSettings/OtherSettings/README.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / components/UserProfileSettings/OtherSettings + +# components/UserProfileSettings/OtherSettings + +## Functions + +- [default](functions/default.md) diff --git a/docs/docs/auto-docs/components/UserProfileSettings/OtherSettings/functions/default.md b/docs/docs/auto-docs/components/UserProfileSettings/OtherSettings/functions/default.md new file mode 100644 index 0000000000..083fc667c3 --- /dev/null +++ b/docs/docs/auto-docs/components/UserProfileSettings/OtherSettings/functions/default.md @@ -0,0 +1,34 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [components/UserProfileSettings/OtherSettings](../README.md) / default + +# Function: default() + +> **default**(`props`, `deprecatedLegacyContext`?): `ReactNode` + +Defined in: [src/components/UserProfileSettings/OtherSettings.tsx:13](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/UserProfileSettings/OtherSettings.tsx#L13) + +OtherSettings component displays a card with settings options such as changing the language. +It includes a label and a dropdown for selecting a different language. + +## Parameters + +### props + +### deprecatedLegacyContext? + +`any` + +**Deprecated** + +**See** + +[React Docs](https://legacy.reactjs.org/docs/legacy-context.html#referencing-context-in-lifecycle-methods) + +## Returns + +`ReactNode` + +The JSX element for the other settings card. diff --git a/docs/docs/auto-docs/components/UserProfileSettings/UserProfile/README.md b/docs/docs/auto-docs/components/UserProfileSettings/UserProfile/README.md new file mode 100644 index 0000000000..c20ee1ebcb --- /dev/null +++ b/docs/docs/auto-docs/components/UserProfileSettings/UserProfile/README.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / components/UserProfileSettings/UserProfile + +# components/UserProfileSettings/UserProfile + +## Functions + +- [default](functions/default.md) diff --git a/docs/docs/auto-docs/components/UserProfileSettings/UserProfile/functions/default.md b/docs/docs/auto-docs/components/UserProfileSettings/UserProfile/functions/default.md new file mode 100644 index 0000000000..b5cb678b2c --- /dev/null +++ b/docs/docs/auto-docs/components/UserProfileSettings/UserProfile/functions/default.md @@ -0,0 +1,38 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [components/UserProfileSettings/UserProfile](../README.md) / default + +# Function: default() + +> **default**(`props`, `deprecatedLegacyContext`?): `ReactNode` + +Defined in: [src/components/UserProfileSettings/UserProfile.tsx:38](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/UserProfileSettings/UserProfile.tsx#L38) + +UserProfile component displays user profile details including an avatar or profile image, name, email, and join date. +It also provides a button to copy the profile link. + +## Parameters + +### props + +`InterfaceUserProfile` + +The properties to be passed into the component. + +### deprecatedLegacyContext? + +`any` + +**Deprecated** + +**See** + +[React Docs](https://legacy.reactjs.org/docs/legacy-context.html#referencing-context-in-lifecycle-methods) + +## Returns + +`ReactNode` + +The JSX element for the user profile card. diff --git a/docs/docs/auto-docs/components/UsersTableItem/UserTableItemMocks/README.md b/docs/docs/auto-docs/components/UsersTableItem/UserTableItemMocks/README.md new file mode 100644 index 0000000000..a6bc5cb05c --- /dev/null +++ b/docs/docs/auto-docs/components/UsersTableItem/UserTableItemMocks/README.md @@ -0,0 +1,13 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / components/UsersTableItem/UserTableItemMocks + +# components/UsersTableItem/UserTableItemMocks + +## Variables + +- [MOCKS](variables/MOCKS.md) +- [MOCKS\_UPDATE](variables/MOCKS_UPDATE.md) +- [MOCKS2](variables/MOCKS2.md) diff --git a/docs/docs/auto-docs/components/UsersTableItem/UserTableItemMocks/variables/MOCKS.md b/docs/docs/auto-docs/components/UsersTableItem/UserTableItemMocks/variables/MOCKS.md new file mode 100644 index 0000000000..24ab29dd4e --- /dev/null +++ b/docs/docs/auto-docs/components/UsersTableItem/UserTableItemMocks/variables/MOCKS.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [components/UsersTableItem/UserTableItemMocks](../README.md) / MOCKS + +# Variable: MOCKS + +> `const` **MOCKS**: (\{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `organizationId`: `undefined`; `orgid`: `string`; `role`: `undefined`; `userid`: `string`; `userId`: `undefined`; \}; \}; `result`: \{ `data`: \{ `removeMember`: \{ `_id`: `string`; \}; `updateUserRoleInOrganization`: `undefined`; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `organizationId`: `string`; `orgid`: `undefined`; `role`: `string`; `userid`: `undefined`; `userId`: `string`; \}; \}; `result`: \{ `data`: \{ `removeMember`: `undefined`; `updateUserRoleInOrganization`: \{ `_id`: `string`; \}; \}; \}; \})[] + +Defined in: [src/components/UsersTableItem/UserTableItemMocks.ts:6](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/UsersTableItem/UserTableItemMocks.ts#L6) diff --git a/docs/docs/auto-docs/components/UsersTableItem/UserTableItemMocks/variables/MOCKS2.md b/docs/docs/auto-docs/components/UsersTableItem/UserTableItemMocks/variables/MOCKS2.md new file mode 100644 index 0000000000..1a7d22e665 --- /dev/null +++ b/docs/docs/auto-docs/components/UsersTableItem/UserTableItemMocks/variables/MOCKS2.md @@ -0,0 +1,37 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [components/UsersTableItem/UserTableItemMocks](../README.md) / MOCKS2 + +# Variable: MOCKS2 + +> `const` **MOCKS2**: `object`[] + +Defined in: [src/components/UsersTableItem/UserTableItemMocks.ts:42](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/UsersTableItem/UserTableItemMocks.ts#L42) + +## Type declaration + +### error + +> **error**: `Error` + +### request + +> **request**: `object` + +#### request.query + +> **query**: `DocumentNode` = `REMOVE_MEMBER_MUTATION` + +#### request.variables + +> **variables**: `object` + +#### request.variables.orgid + +> **orgid**: `string` = `'abc'` + +#### request.variables.userid + +> **userid**: `string` = `'123'` diff --git a/docs/docs/auto-docs/components/UsersTableItem/UserTableItemMocks/variables/MOCKS_UPDATE.md b/docs/docs/auto-docs/components/UsersTableItem/UserTableItemMocks/variables/MOCKS_UPDATE.md new file mode 100644 index 0000000000..e5145ec475 --- /dev/null +++ b/docs/docs/auto-docs/components/UsersTableItem/UserTableItemMocks/variables/MOCKS_UPDATE.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [components/UsersTableItem/UserTableItemMocks](../README.md) / MOCKS\_UPDATE + +# Variable: MOCKS\_UPDATE + +> `const` **MOCKS\_UPDATE**: (\{ `error`: `Error`; `request`: \{ `query`: `DocumentNode`; `variables`: \{ `organizationId`: `string`; `role`: `string`; `userId`: `string`; \}; \}; `result`: `undefined`; \} \| \{ `error`: `undefined`; `request`: \{ `query`: `DocumentNode`; `variables`: \{ `organizationId`: `string`; `role`: `string`; `userId`: `string`; \}; \}; `result`: \{ `data`: \{ `updateUserRoleInOrganization`: \{ `_id`: `string`; \}; \}; \}; \})[] + +Defined in: [src/components/UsersTableItem/UserTableItemMocks.ts:55](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/UsersTableItem/UserTableItemMocks.ts#L55) diff --git a/docs/docs/auto-docs/components/UsersTableItem/UsersTableItem/README.md b/docs/docs/auto-docs/components/UsersTableItem/UsersTableItem/README.md new file mode 100644 index 0000000000..35774184ed --- /dev/null +++ b/docs/docs/auto-docs/components/UsersTableItem/UsersTableItem/README.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / components/UsersTableItem/UsersTableItem + +# components/UsersTableItem/UsersTableItem + +## Functions + +- [default](functions/default.md) diff --git a/docs/docs/auto-docs/components/UsersTableItem/UsersTableItem/functions/default.md b/docs/docs/auto-docs/components/UsersTableItem/UsersTableItem/functions/default.md new file mode 100644 index 0000000000..29a068829e --- /dev/null +++ b/docs/docs/auto-docs/components/UsersTableItem/UsersTableItem/functions/default.md @@ -0,0 +1,21 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [components/UsersTableItem/UsersTableItem](../README.md) / default + +# Function: default() + +> **default**(`props`): `Element` + +Defined in: [src/components/UsersTableItem/UsersTableItem.tsx:23](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/UsersTableItem/UsersTableItem.tsx#L23) + +## Parameters + +### props + +`Props` + +## Returns + +`Element` diff --git a/docs/docs/auto-docs/components/Venues/VenueCard/README.md b/docs/docs/auto-docs/components/Venues/VenueCard/README.md new file mode 100644 index 0000000000..f5058ba6f0 --- /dev/null +++ b/docs/docs/auto-docs/components/Venues/VenueCard/README.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / components/Venues/VenueCard + +# components/Venues/VenueCard + +## Functions + +- [default](functions/default.md) diff --git a/docs/docs/auto-docs/components/Venues/VenueCard/functions/default.md b/docs/docs/auto-docs/components/Venues/VenueCard/functions/default.md new file mode 100644 index 0000000000..9fe342fa99 --- /dev/null +++ b/docs/docs/auto-docs/components/Venues/VenueCard/functions/default.md @@ -0,0 +1,39 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [components/Venues/VenueCard](../README.md) / default + +# Function: default() + +> **default**(`__namedParameters`): `Element` + +Defined in: [src/components/Venues/VenueCard.tsx:39](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/Venues/VenueCard.tsx#L39) + +Represents a card component displaying venue information. + +This component renders a card with the venue's image, name, capacity, and description. +It also provides buttons to edit or delete the venue. + +## Parameters + +### \_\_namedParameters + +`InterfaceVenueCardProps` + +## Returns + +`Element` + +JSX.Element - The `VenueCard` component. + +## Example + +```tsx + +``` diff --git a/docs/docs/auto-docs/components/Venues/VenueModal/README.md b/docs/docs/auto-docs/components/Venues/VenueModal/README.md new file mode 100644 index 0000000000..1ef81a0b58 --- /dev/null +++ b/docs/docs/auto-docs/components/Venues/VenueModal/README.md @@ -0,0 +1,15 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / components/Venues/VenueModal + +# components/Venues/VenueModal + +## Interfaces + +- [InterfaceVenueModalProps](interfaces/InterfaceVenueModalProps.md) + +## Functions + +- [default](functions/default.md) diff --git a/docs/docs/auto-docs/components/Venues/VenueModal/functions/default.md b/docs/docs/auto-docs/components/Venues/VenueModal/functions/default.md new file mode 100644 index 0000000000..ebe4deff1b --- /dev/null +++ b/docs/docs/auto-docs/components/Venues/VenueModal/functions/default.md @@ -0,0 +1,28 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [components/Venues/VenueModal](../README.md) / default + +# Function: default() + +> **default**(`__namedParameters`): `Element` + +Defined in: [src/components/Venues/VenueModal.tsx:39](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/Venues/VenueModal.tsx#L39) + +A modal component for creating or updating venue information. + +This component displays a modal window where users can enter details for a venue, such as name, description, capacity, and an image. +It also handles submitting the form data to create or update a venue based on whether the `edit` prop is true or false. + +## Parameters + +### \_\_namedParameters + +[`InterfaceVenueModalProps`](../interfaces/InterfaceVenueModalProps.md) + +## Returns + +`Element` + +The rendered modal component. diff --git a/docs/docs/auto-docs/components/Venues/VenueModal/interfaces/InterfaceVenueModalProps.md b/docs/docs/auto-docs/components/Venues/VenueModal/interfaces/InterfaceVenueModalProps.md new file mode 100644 index 0000000000..39d8ad13e0 --- /dev/null +++ b/docs/docs/auto-docs/components/Venues/VenueModal/interfaces/InterfaceVenueModalProps.md @@ -0,0 +1,65 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [components/Venues/VenueModal](../README.md) / InterfaceVenueModalProps + +# Interface: InterfaceVenueModalProps + +Defined in: [src/components/Venues/VenueModal.tsx:15](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/Venues/VenueModal.tsx#L15) + +## Properties + +### edit + +> **edit**: `boolean` + +Defined in: [src/components/Venues/VenueModal.tsx:21](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/Venues/VenueModal.tsx#L21) + +*** + +### onHide() + +> **onHide**: () => `void` + +Defined in: [src/components/Venues/VenueModal.tsx:17](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/Venues/VenueModal.tsx#L17) + +#### Returns + +`void` + +*** + +### orgId + +> **orgId**: `string` + +Defined in: [src/components/Venues/VenueModal.tsx:19](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/Venues/VenueModal.tsx#L19) + +*** + +### refetchVenues() + +> **refetchVenues**: () => `void` + +Defined in: [src/components/Venues/VenueModal.tsx:18](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/Venues/VenueModal.tsx#L18) + +#### Returns + +`void` + +*** + +### show + +> **show**: `boolean` + +Defined in: [src/components/Venues/VenueModal.tsx:16](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/Venues/VenueModal.tsx#L16) + +*** + +### venueData? + +> `optional` **venueData**: `null` \| [`InterfaceQueryVenueListItem`](../../../../utils/interfaces/interfaces/InterfaceQueryVenueListItem.md) + +Defined in: [src/components/Venues/VenueModal.tsx:20](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/Venues/VenueModal.tsx#L20) diff --git a/docs/docs/auto-docs/components/plugins/DummyPlugin/DummyPlugin.test/README.md b/docs/docs/auto-docs/components/plugins/DummyPlugin/DummyPlugin.test/README.md new file mode 100644 index 0000000000..2a73d87fd8 --- /dev/null +++ b/docs/docs/auto-docs/components/plugins/DummyPlugin/DummyPlugin.test/README.md @@ -0,0 +1,7 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / components/plugins/DummyPlugin/DummyPlugin.test + +# components/plugins/DummyPlugin/DummyPlugin.test diff --git a/docs/docs/auto-docs/components/plugins/DummyPlugin/DummyPlugin/README.md b/docs/docs/auto-docs/components/plugins/DummyPlugin/DummyPlugin/README.md new file mode 100644 index 0000000000..c582ebf9fa --- /dev/null +++ b/docs/docs/auto-docs/components/plugins/DummyPlugin/DummyPlugin/README.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / components/plugins/DummyPlugin/DummyPlugin + +# components/plugins/DummyPlugin/DummyPlugin + +## Functions + +- [default](functions/default.md) diff --git a/docs/docs/auto-docs/components/plugins/DummyPlugin/DummyPlugin/functions/default.md b/docs/docs/auto-docs/components/plugins/DummyPlugin/DummyPlugin/functions/default.md new file mode 100644 index 0000000000..7fcd1e80f4 --- /dev/null +++ b/docs/docs/auto-docs/components/plugins/DummyPlugin/DummyPlugin/functions/default.md @@ -0,0 +1,22 @@ +[**talawa-admin**](../../../../../README.md) + +*** + +[talawa-admin](../../../../../modules.md) / [components/plugins/DummyPlugin/DummyPlugin](../README.md) / default + +# Function: default() + +> **default**(): `JSX.Element` + +Defined in: [src/components/plugins/DummyPlugin/DummyPlugin.tsx:12](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/plugins/DummyPlugin/DummyPlugin.tsx#L12) + +A dummy plugin component that renders a welcome message inside an `AddOn` component. + +This component is used for demonstration or testing purposes and does not have any +additional functionality or properties. + +## Returns + +`JSX.Element` + +JSX.Element - Renders the `AddOn` component containing a welcome message. diff --git a/docs/docs/auto-docs/components/plugins/DummyPlugin2/DummyPlugin2.test/README.md b/docs/docs/auto-docs/components/plugins/DummyPlugin2/DummyPlugin2.test/README.md new file mode 100644 index 0000000000..ca55658c24 --- /dev/null +++ b/docs/docs/auto-docs/components/plugins/DummyPlugin2/DummyPlugin2.test/README.md @@ -0,0 +1,7 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / components/plugins/DummyPlugin2/DummyPlugin2.test + +# components/plugins/DummyPlugin2/DummyPlugin2.test diff --git a/docs/docs/auto-docs/components/plugins/DummyPlugin2/DummyPlugin2/README.md b/docs/docs/auto-docs/components/plugins/DummyPlugin2/DummyPlugin2/README.md new file mode 100644 index 0000000000..e01e669542 --- /dev/null +++ b/docs/docs/auto-docs/components/plugins/DummyPlugin2/DummyPlugin2/README.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / components/plugins/DummyPlugin2/DummyPlugin2 + +# components/plugins/DummyPlugin2/DummyPlugin2 + +## Functions + +- [default](functions/default.md) diff --git a/docs/docs/auto-docs/components/plugins/DummyPlugin2/DummyPlugin2/functions/default.md b/docs/docs/auto-docs/components/plugins/DummyPlugin2/DummyPlugin2/functions/default.md new file mode 100644 index 0000000000..2abc9479b4 --- /dev/null +++ b/docs/docs/auto-docs/components/plugins/DummyPlugin2/DummyPlugin2/functions/default.md @@ -0,0 +1,21 @@ +[**talawa-admin**](../../../../../README.md) + +*** + +[talawa-admin](../../../../../modules.md) / [components/plugins/DummyPlugin2/DummyPlugin2](../README.md) / default + +# Function: default() + +> **default**(): `JSX.Element` + +Defined in: [src/components/plugins/DummyPlugin2/DummyPlugin2.tsx:10](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/plugins/DummyPlugin2/DummyPlugin2.tsx#L10) + +A placeholder component for demonstration or testing purposes. +It renders an empty `div` element. + +This component currently does not have any additional functionality +or properties. + +## Returns + +`JSX.Element` diff --git a/docs/docs/auto-docs/components/plugins/README.md b/docs/docs/auto-docs/components/plugins/README.md new file mode 100644 index 0000000000..5512e9966c --- /dev/null +++ b/docs/docs/auto-docs/components/plugins/README.md @@ -0,0 +1,19 @@ +[**talawa-admin**](../../README.md) + +*** + +[talawa-admin](../../modules.md) / components/plugins + +# components/plugins + +## References + +### DummyPlugin + +Renames and re-exports [default](DummyPlugin/DummyPlugin/functions/default.md) + +*** + +### DummyPlugin2 + +Renames and re-exports [default](DummyPlugin2/DummyPlugin2/functions/default.md) diff --git a/docs/docs/auto-docs/constants/README.md b/docs/docs/auto-docs/constants/README.md new file mode 100644 index 0000000000..1813337544 --- /dev/null +++ b/docs/docs/auto-docs/constants/README.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../README.md) + +*** + +[talawa-admin](../modules.md) / constants + +# constants + +## Variables + +- [socialMediaLinks](variables/socialMediaLinks.md) diff --git a/docs/docs/auto-docs/constants/variables/socialMediaLinks.md b/docs/docs/auto-docs/constants/variables/socialMediaLinks.md new file mode 100644 index 0000000000..17b1ec7b85 --- /dev/null +++ b/docs/docs/auto-docs/constants/variables/socialMediaLinks.md @@ -0,0 +1,25 @@ +[**talawa-admin**](../../README.md) + +*** + +[talawa-admin](../../modules.md) / [constants](../README.md) / socialMediaLinks + +# Variable: socialMediaLinks + +> `const` **socialMediaLinks**: `object`[] + +Defined in: [src/constants.ts:12](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/constants.ts#L12) + +## Type declaration + +### href + +> **href**: `string` = `'https://www.facebook.com/palisadoesproject'` + +### logo + +> **logo**: `string` = `FacebookLogo` + +### tag + +> **tag**: `string` = `'facebook'` diff --git a/docs/docs/auto-docs/index/README.md b/docs/docs/auto-docs/index/README.md new file mode 100644 index 0000000000..73aef1b7cd --- /dev/null +++ b/docs/docs/auto-docs/index/README.md @@ -0,0 +1,7 @@ +[**talawa-admin**](../README.md) + +*** + +[talawa-admin](../modules.md) / index + +# index diff --git a/docs/docs/auto-docs/modules.md b/docs/docs/auto-docs/modules.md new file mode 100644 index 0000000000..ce498993a6 --- /dev/null +++ b/docs/docs/auto-docs/modules.md @@ -0,0 +1,339 @@ +[**talawa-admin**](README.md) + +*** + +# talawa-admin + +## Modules + +- [App](App/README.md) +- [assets/svgs/social-icons](assets/svgs/social-icons/README.md) +- [components/AddOn/AddOn](components/AddOn/AddOn/README.md) +- [components/AddOn/core/AddOnEntry/AddOnEntry](components/AddOn/core/AddOnEntry/AddOnEntry/README.md) +- [components/AddOn/core/AddOnEntry/AddOnEntryMocks](components/AddOn/core/AddOnEntry/AddOnEntryMocks/README.md) +- [components/AddOn/core/AddOnRegister/AddOnRegister](components/AddOn/core/AddOnRegister/AddOnRegister/README.md) +- [components/AddOn/core/AddOnStore/AddOnStore](components/AddOn/core/AddOnStore/AddOnStore/README.md) +- [components/AddOn/support/components/Action/Action](components/AddOn/support/components/Action/Action/README.md) +- [components/AddOn/support/components/MainContent/MainContent](components/AddOn/support/components/MainContent/MainContent/README.md) +- [components/AddOn/support/components/SidePanel/SidePanel](components/AddOn/support/components/SidePanel/SidePanel/README.md) +- [components/AddOn/support/services/Plugin.helper](components/AddOn/support/services/Plugin.helper/README.md) +- [components/AddOn/support/services/Render.helper](components/AddOn/support/services/Render.helper/README.md) +- [components/AddPeopleToTag/AddPeopleToTag](components/AddPeopleToTag/AddPeopleToTag/README.md) +- [components/AddPeopleToTag/AddPeopleToTagsMocks](components/AddPeopleToTag/AddPeopleToTagsMocks/README.md) +- [components/Advertisements/Advertisements](components/Advertisements/Advertisements/README.md) +- [components/Advertisements/core/AdvertisementEntry/AdvertisementEntry](components/Advertisements/core/AdvertisementEntry/AdvertisementEntry/README.md) +- [components/Advertisements/core/AdvertisementRegister/AdvertisementRegister](components/Advertisements/core/AdvertisementRegister/AdvertisementRegister/README.md) +- [components/AgendaCategory/AgendaCategoryContainer](components/AgendaCategory/AgendaCategoryContainer/README.md) +- [components/AgendaCategory/AgendaCategoryContainerMocks](components/AgendaCategory/AgendaCategoryContainerMocks/README.md) +- [components/AgendaCategory/AgendaCategoryContainerProps](components/AgendaCategory/AgendaCategoryContainerProps/README.md) +- [components/AgendaItems/AgendaItemsContainer](components/AgendaItems/AgendaItemsContainer/README.md) +- [components/AgendaItems/AgendaItemsContainerMocks](components/AgendaItems/AgendaItemsContainerMocks/README.md) +- [components/AgendaItems/AgendaItemsContainerProps](components/AgendaItems/AgendaItemsContainerProps/README.md) +- [components/AgendaItems/AgendaItemsCreateModal](components/AgendaItems/AgendaItemsCreateModal/README.md) +- [components/AgendaItems/AgendaItemsDeleteModal](components/AgendaItems/AgendaItemsDeleteModal/README.md) +- [components/AgendaItems/AgendaItemsPreviewModal](components/AgendaItems/AgendaItemsPreviewModal/README.md) +- [components/AgendaItems/AgendaItemsUpdateModal](components/AgendaItems/AgendaItemsUpdateModal/README.md) +- [components/Avatar/Avatar](components/Avatar/Avatar/README.md) +- [components/ChangeLanguageDropdown/ChangeLanguageDropDown](components/ChangeLanguageDropdown/ChangeLanguageDropDown/README.md) +- [components/CheckIn/CheckInModal](components/CheckIn/CheckInModal/README.md) +- [components/CheckIn/CheckInWrapper](components/CheckIn/CheckInWrapper/README.md) +- [components/CheckIn/mocks](components/CheckIn/mocks/README.md) +- [components/CheckIn/TableRow](components/CheckIn/TableRow/README.md) +- [components/CheckIn/tagTemplate](components/CheckIn/tagTemplate/README.md) +- [components/CheckIn/types](components/CheckIn/types/README.md) +- [components/CollapsibleDropdown/CollapsibleDropdown](components/CollapsibleDropdown/CollapsibleDropdown/README.md) +- [components/ContriStats/ContriStats](components/ContriStats/ContriStats/README.md) +- [components/CurrentHourIndicator/CurrentHourIndicator](components/CurrentHourIndicator/CurrentHourIndicator/README.md) +- [components/DynamicDropDown/DynamicDropDown](components/DynamicDropDown/DynamicDropDown/README.md) +- [components/EditCustomFieldDropDown/EditCustomFieldDropDown](components/EditCustomFieldDropDown/EditCustomFieldDropDown/README.md) +- [components/EventCalendar/constants](components/EventCalendar/constants/README.md) +- [components/EventCalendar/EventCalendar](components/EventCalendar/EventCalendar/README.md) +- [components/EventCalendar/EventHeader](components/EventCalendar/EventHeader/README.md) +- [components/EventCalendar/YearlyEventCalender](components/EventCalendar/YearlyEventCalender/README.md) +- [components/EventDashboardScreen/EventDashboardScreen](components/EventDashboardScreen/EventDashboardScreen/README.md) +- [components/EventListCard/EventListCard](components/EventListCard/EventListCard/README.md) +- [components/EventListCard/EventListCardMocks](components/EventListCard/EventListCardMocks/README.md) +- [components/EventListCard/EventListCardModals](components/EventListCard/EventListCardModals/README.md) +- [components/EventListCard/EventListCardProps](components/EventListCard/EventListCardProps/README.md) +- [components/EventManagement/Dashboard/EventDashboard](components/EventManagement/Dashboard/EventDashboard/README.md) +- [components/EventManagement/Dashboard/EventDashboard.mocks](components/EventManagement/Dashboard/EventDashboard.mocks/README.md) +- [components/EventManagement/EventAgendaItems/EventAgendaItems](components/EventManagement/EventAgendaItems/EventAgendaItems/README.md) +- [components/EventManagement/EventAgendaItems/EventAgendaItemsMocks](components/EventManagement/EventAgendaItems/EventAgendaItemsMocks/README.md) +- [components/EventManagement/EventAttendance/Attendance.mocks](components/EventManagement/EventAttendance/Attendance.mocks/README.md) +- [components/EventManagement/EventAttendance/AttendedEventList](components/EventManagement/EventAttendance/AttendedEventList/README.md) +- [components/EventManagement/EventAttendance/EventAttendance](components/EventManagement/EventAttendance/EventAttendance/README.md) +- [components/EventManagement/EventAttendance/EventStatistics](components/EventManagement/EventAttendance/EventStatistics/README.md) +- [components/EventManagement/EventAttendance/InterfaceEvents](components/EventManagement/EventAttendance/InterfaceEvents/README.md) +- [components/EventManagement/EventRegistrant/EventRegistrants](components/EventManagement/EventRegistrant/EventRegistrants/README.md) +- [components/EventManagement/EventRegistrant/Registrations.mocks](components/EventManagement/EventRegistrant/Registrations.mocks/README.md) +- [components/EventRegistrantsModal/AddOnSpotAttendee](components/EventRegistrantsModal/AddOnSpotAttendee/README.md) +- [components/EventRegistrantsModal/EventRegistrantsModal](components/EventRegistrantsModal/EventRegistrantsModal/README.md) +- [components/EventRegistrantsModal/EventRegistrantsWrapper](components/EventRegistrantsModal/EventRegistrantsWrapper/README.md) +- [components/EventStats/EventStats](components/EventStats/EventStats/README.md) +- [components/EventStats/EventStatsWrapper](components/EventStats/EventStatsWrapper/README.md) +- [components/EventStats/Statistics/AverageRating](components/EventStats/Statistics/AverageRating/README.md) +- [components/EventStats/Statistics/Feedback](components/EventStats/Statistics/Feedback/README.md) +- [components/EventStats/Statistics/Review](components/EventStats/Statistics/Review/README.md) +- [components/GroupChatDetails/GroupChatDetails](components/GroupChatDetails/GroupChatDetails/README.md) +- [components/HolidayCards/HolidayCard](components/HolidayCards/HolidayCard/README.md) +- [components/IconComponent/IconComponent](components/IconComponent/IconComponent/README.md) +- [components/InfiniteScrollLoader/InfiniteScrollLoader](components/InfiniteScrollLoader/InfiniteScrollLoader/README.md) +- [components/LeftDrawer/LeftDrawer](components/LeftDrawer/LeftDrawer/README.md) +- [components/LeftDrawerOrg/LeftDrawerOrg](components/LeftDrawerOrg/LeftDrawerOrg/README.md) +- [components/Loader/Loader](components/Loader/Loader/README.md) +- [components/LoginPortalToggle/LoginPortalToggle](components/LoginPortalToggle/LoginPortalToggle/README.md) +- [components/MemberDetail/customTableCell](components/MemberDetail/customTableCell/README.md) +- [components/MemberDetail/EventsAttendedByMember](components/MemberDetail/EventsAttendedByMember/README.md) +- [components/MemberDetail/EventsAttendedCardItem](components/MemberDetail/EventsAttendedCardItem/README.md) +- [components/MemberDetail/EventsAttendedMemberModal](components/MemberDetail/EventsAttendedMemberModal/README.md) +- [components/MemberRequestCard/MemberRequestCard](components/MemberRequestCard/MemberRequestCard/README.md) +- [components/NotFound/NotFound](components/NotFound/NotFound/README.md) +- [components/OrgAdminListCard/OrgAdminListCard](components/OrgAdminListCard/OrgAdminListCard/README.md) +- [components/OrganizationCard/OrganizationCard](components/OrganizationCard/OrganizationCard/README.md) +- [components/OrganizationCardStart/OrganizationCardStart](components/OrganizationCardStart/OrganizationCardStart/README.md) +- [components/OrganizationDashCards/CardItem](components/OrganizationDashCards/CardItem/README.md) +- [components/OrganizationDashCards/CardItemLoading](components/OrganizationDashCards/CardItemLoading/README.md) +- [components/OrganizationDashCards/DashboardCard](components/OrganizationDashCards/DashboardCard/README.md) +- [components/OrganizationDashCards/DashboardCardLoading](components/OrganizationDashCards/DashboardCardLoading/README.md) +- [components/OrganizationScreen/OrganizationScreen](components/OrganizationScreen/OrganizationScreen/README.md) +- [components/OrgContriCards/OrgContriCards](components/OrgContriCards/OrgContriCards/README.md) +- [components/OrgDelete/OrgDelete](components/OrgDelete/OrgDelete/README.md) +- [components/OrgListCard/OrgListCard](components/OrgListCard/OrgListCard/README.md) +- [components/OrgListCard/TruncatedText](components/OrgListCard/TruncatedText/README.md) +- [components/OrgListCard/useDebounce](components/OrgListCard/useDebounce/README.md) +- [components/OrgPeopleListCard/OrgPeopleListCard](components/OrgPeopleListCard/OrgPeopleListCard/README.md) +- [components/OrgPostCard/DeletePostModal](components/OrgPostCard/DeletePostModal/README.md) +- [components/OrgPostCard/OrgPostCard](components/OrgPostCard/OrgPostCard/README.md) +- [components/OrgSettings/ActionItemCategories/CategoryModal](components/OrgSettings/ActionItemCategories/CategoryModal/README.md) +- [components/OrgSettings/ActionItemCategories/OrgActionItemCategories](components/OrgSettings/ActionItemCategories/OrgActionItemCategories/README.md) +- [components/OrgSettings/ActionItemCategories/OrgActionItemCategoryMocks](components/OrgSettings/ActionItemCategories/OrgActionItemCategoryMocks/README.md) +- [components/OrgSettings/AgendaItemCategories/AgendaCategoryCreateModal](components/OrgSettings/AgendaItemCategories/AgendaCategoryCreateModal/README.md) +- [components/OrgSettings/AgendaItemCategories/AgendaCategoryDeleteModal](components/OrgSettings/AgendaItemCategories/AgendaCategoryDeleteModal/README.md) +- [components/OrgSettings/AgendaItemCategories/AgendaCategoryPreviewModal](components/OrgSettings/AgendaItemCategories/AgendaCategoryPreviewModal/README.md) +- [components/OrgSettings/AgendaItemCategories/AgendaCategoryUpdateModal](components/OrgSettings/AgendaItemCategories/AgendaCategoryUpdateModal/README.md) +- [components/OrgSettings/AgendaItemCategories/OrganizationAgendaCategory](components/OrgSettings/AgendaItemCategories/OrganizationAgendaCategory/README.md) +- [components/OrgSettings/AgendaItemCategories/OrganizationAgendaCategoryErrorMocks](components/OrgSettings/AgendaItemCategories/OrganizationAgendaCategoryErrorMocks/README.md) +- [components/OrgSettings/AgendaItemCategories/OrganizationAgendaCategoryMocks](components/OrgSettings/AgendaItemCategories/OrganizationAgendaCategoryMocks/README.md) +- [components/OrgSettings/General/DeleteOrg/DeleteOrg](components/OrgSettings/General/DeleteOrg/DeleteOrg/README.md) +- [components/OrgSettings/General/GeneralSettings](components/OrgSettings/General/GeneralSettings/README.md) +- [components/OrgSettings/General/OrgProfileFieldSettings/OrgProfileFieldSettings](components/OrgSettings/General/OrgProfileFieldSettings/OrgProfileFieldSettings/README.md) +- [components/OrgSettings/General/OrgUpdate/OrgUpdate](components/OrgSettings/General/OrgUpdate/OrgUpdate/README.md) +- [components/OrgSettings/General/OrgUpdate/OrgUpdateMocks](components/OrgSettings/General/OrgUpdate/OrgUpdateMocks/README.md) +- [components/Pagination/Pagination](components/Pagination/Pagination/README.md) +- [components/PaginationList/PaginationList](components/PaginationList/PaginationList/README.md) +- [components/plugins](components/plugins/README.md) +- [components/plugins/DummyPlugin/DummyPlugin](components/plugins/DummyPlugin/DummyPlugin/README.md) +- [components/plugins/DummyPlugin/DummyPlugin.test](components/plugins/DummyPlugin/DummyPlugin.test/README.md) +- [components/plugins/DummyPlugin2/DummyPlugin2](components/plugins/DummyPlugin2/DummyPlugin2/README.md) +- [components/plugins/DummyPlugin2/DummyPlugin2.test](components/plugins/DummyPlugin2/DummyPlugin2.test/README.md) +- [components/ProfileDropdown/ProfileDropdown](components/ProfileDropdown/ProfileDropdown/README.md) +- [components/RecurrenceOptions/CustomRecurrenceModal](components/RecurrenceOptions/CustomRecurrenceModal/README.md) +- [components/RecurrenceOptions/RecurrenceOptions](components/RecurrenceOptions/RecurrenceOptions/README.md) +- [components/RequestsTableItem/RequestsTableItem](components/RequestsTableItem/RequestsTableItem/README.md) +- [components/RequestsTableItem/RequestsTableItemMocks](components/RequestsTableItem/RequestsTableItemMocks/README.md) +- [components/SecuredRoute/SecuredRoute](components/SecuredRoute/SecuredRoute/README.md) +- [components/SuperAdminScreen/SuperAdminScreen](components/SuperAdminScreen/SuperAdminScreen/README.md) +- [components/TableLoader/TableLoader](components/TableLoader/TableLoader/README.md) +- [components/TagActions/TagActions](components/TagActions/TagActions/README.md) +- [components/TagActions/TagActionsMocks](components/TagActions/TagActionsMocks/README.md) +- [components/TagActions/TagNode](components/TagActions/TagNode/README.md) +- [components/TagActions/TagNodeMocks](components/TagActions/TagNodeMocks/README.md) +- [components/UpdateSession/UpdateSession](components/UpdateSession/UpdateSession/README.md) +- [components/UserListCard/UserListCard](components/UserListCard/UserListCard/README.md) +- [components/UserPasswordUpdate/UserPasswordUpdate](components/UserPasswordUpdate/UserPasswordUpdate/README.md) +- [components/UserPasswordUpdate/UserPasswordUpdateMocks](components/UserPasswordUpdate/UserPasswordUpdateMocks/README.md) +- [components/UserPortal/ChatRoom/ChatRoom](components/UserPortal/ChatRoom/ChatRoom/README.md) +- [components/UserPortal/CommentCard/CommentCard](components/UserPortal/CommentCard/CommentCard/README.md) +- [components/UserPortal/ContactCard/ContactCard](components/UserPortal/ContactCard/ContactCard/README.md) +- [components/UserPortal/CreateDirectChat/CreateDirectChat](components/UserPortal/CreateDirectChat/CreateDirectChat/README.md) +- [components/UserPortal/CreateGroupChat/CreateGroupChat](components/UserPortal/CreateGroupChat/CreateGroupChat/README.md) +- [components/UserPortal/DonationCard/DonationCard](components/UserPortal/DonationCard/DonationCard/README.md) +- [components/UserPortal/EventCard/EventCard](components/UserPortal/EventCard/EventCard/README.md) +- [components/UserPortal/OrganizationCard/OrganizationCard](components/UserPortal/OrganizationCard/OrganizationCard/README.md) +- [components/UserPortal/OrganizationNavbar/OrganizationNavbar](components/UserPortal/OrganizationNavbar/OrganizationNavbar/README.md) +- [components/UserPortal/OrganizationSidebar/OrganizationSidebar](components/UserPortal/OrganizationSidebar/OrganizationSidebar/README.md) +- [components/UserPortal/PeopleCard/PeopleCard](components/UserPortal/PeopleCard/PeopleCard/README.md) +- [components/UserPortal/PostCard/PostCard](components/UserPortal/PostCard/PostCard/README.md) +- [components/UserPortal/PromotedPost/PromotedPost](components/UserPortal/PromotedPost/PromotedPost/README.md) +- [components/UserPortal/Register/Register](components/UserPortal/Register/Register/README.md) +- [components/UserPortal/SecuredRouteForUser/SecuredRouteForUser](components/UserPortal/SecuredRouteForUser/SecuredRouteForUser/README.md) +- [components/UserPortal/StartPostModal/StartPostModal](components/UserPortal/StartPostModal/StartPostModal/README.md) +- [components/UserPortal/UserNavbar/UserNavbar](components/UserPortal/UserNavbar/UserNavbar/README.md) +- [components/UserPortal/UserProfile/EventsAttendedByUser](components/UserPortal/UserProfile/EventsAttendedByUser/README.md) +- [components/UserPortal/UserProfile/UserAddressFields](components/UserPortal/UserProfile/UserAddressFields/README.md) +- [components/UserPortal/UserSidebar/UserSidebar](components/UserPortal/UserSidebar/UserSidebar/README.md) +- [components/UserPortal/UserSidebarOrg/UserSidebarOrg](components/UserPortal/UserSidebarOrg/UserSidebarOrg/README.md) +- [components/UserProfileSettings/DeleteUser](components/UserProfileSettings/DeleteUser/README.md) +- [components/UserProfileSettings/OtherSettings](components/UserProfileSettings/OtherSettings/README.md) +- [components/UserProfileSettings/UserProfile](components/UserProfileSettings/UserProfile/README.md) +- [components/UsersTableItem/UsersTableItem](components/UsersTableItem/UsersTableItem/README.md) +- [components/UsersTableItem/UserTableItemMocks](components/UsersTableItem/UserTableItemMocks/README.md) +- [components/Venues/VenueCard](components/Venues/VenueCard/README.md) +- [components/Venues/VenueModal](components/Venues/VenueModal/README.md) +- [Constant/constant](Constant/constant/README.md) +- [constants](constants/README.md) +- [GraphQl/Mutations/ActionItemCategoryMutations](GraphQl/Mutations/ActionItemCategoryMutations/README.md) +- [GraphQl/Mutations/ActionItemMutations](GraphQl/Mutations/ActionItemMutations/README.md) +- [GraphQl/Mutations/AgendaCategoryMutations](GraphQl/Mutations/AgendaCategoryMutations/README.md) +- [GraphQl/Mutations/AgendaItemMutations](GraphQl/Mutations/AgendaItemMutations/README.md) +- [GraphQl/Mutations/CampaignMutation](GraphQl/Mutations/CampaignMutation/README.md) +- [GraphQl/Mutations/CommentMutations](GraphQl/Mutations/CommentMutations/README.md) +- [GraphQl/Mutations/EventAttendeeMutations](GraphQl/Mutations/EventAttendeeMutations/README.md) +- [GraphQl/Mutations/EventVolunteerMutation](GraphQl/Mutations/EventVolunteerMutation/README.md) +- [GraphQl/Mutations/FundMutation](GraphQl/Mutations/FundMutation/README.md) +- [GraphQl/Mutations/mutations](GraphQl/Mutations/mutations/README.md) +- [GraphQl/Mutations/OrganizationMutations](GraphQl/Mutations/OrganizationMutations/README.md) +- [GraphQl/Mutations/PledgeMutation](GraphQl/Mutations/PledgeMutation/README.md) +- [GraphQl/Mutations/TagMutations](GraphQl/Mutations/TagMutations/README.md) +- [GraphQl/Mutations/VenueMutations](GraphQl/Mutations/VenueMutations/README.md) +- [GraphQl/Queries/ActionItemCategoryQueries](GraphQl/Queries/ActionItemCategoryQueries/README.md) +- [GraphQl/Queries/ActionItemQueries](GraphQl/Queries/ActionItemQueries/README.md) +- [GraphQl/Queries/AgendaCategoryQueries](GraphQl/Queries/AgendaCategoryQueries/README.md) +- [GraphQl/Queries/AgendaItemQueries](GraphQl/Queries/AgendaItemQueries/README.md) +- [GraphQl/Queries/EventVolunteerQueries](GraphQl/Queries/EventVolunteerQueries/README.md) +- [GraphQl/Queries/fundQueries](GraphQl/Queries/fundQueries/README.md) +- [GraphQl/Queries/OrganizationQueries](GraphQl/Queries/OrganizationQueries/README.md) +- [GraphQl/Queries/PlugInQueries](GraphQl/Queries/PlugInQueries/README.md) +- [GraphQl/Queries/Queries](GraphQl/Queries/Queries/README.md) +- [GraphQl/Queries/userTagQueries](GraphQl/Queries/userTagQueries/README.md) +- [index](index/README.md) +- [reportWebVitals](reportWebVitals/README.md) +- [screens/BlockUser/BlockUser](screens/BlockUser/BlockUser/README.md) +- [screens/CommunityProfile/CommunityProfile](screens/CommunityProfile/CommunityProfile/README.md) +- [screens/EventManagement/EventManagement](screens/EventManagement/EventManagement/README.md) +- [screens/EventVolunteers/Requests/Requests](screens/EventVolunteers/Requests/Requests/README.md) +- [screens/EventVolunteers/Requests/Requests.mocks](screens/EventVolunteers/Requests/Requests.mocks/README.md) +- [screens/EventVolunteers/VolunteerContainer](screens/EventVolunteers/VolunteerContainer/README.md) +- [screens/EventVolunteers/VolunteerGroups/VolunteerGroupDeleteModal](screens/EventVolunteers/VolunteerGroups/VolunteerGroupDeleteModal/README.md) +- [screens/EventVolunteers/VolunteerGroups/VolunteerGroupModal](screens/EventVolunteers/VolunteerGroups/VolunteerGroupModal/README.md) +- [screens/EventVolunteers/VolunteerGroups/VolunteerGroups](screens/EventVolunteers/VolunteerGroups/VolunteerGroups/README.md) +- [screens/EventVolunteers/VolunteerGroups/VolunteerGroups.mocks](screens/EventVolunteers/VolunteerGroups/VolunteerGroups.mocks/README.md) +- [screens/EventVolunteers/VolunteerGroups/VolunteerGroupViewModal](screens/EventVolunteers/VolunteerGroups/VolunteerGroupViewModal/README.md) +- [screens/EventVolunteers/Volunteers/VolunteerCreateModal](screens/EventVolunteers/Volunteers/VolunteerCreateModal/README.md) +- [screens/EventVolunteers/Volunteers/VolunteerDeleteModal](screens/EventVolunteers/Volunteers/VolunteerDeleteModal/README.md) +- [screens/EventVolunteers/Volunteers/Volunteers](screens/EventVolunteers/Volunteers/Volunteers/README.md) +- [screens/EventVolunteers/Volunteers/Volunteers.mocks](screens/EventVolunteers/Volunteers/Volunteers.mocks/README.md) +- [screens/EventVolunteers/Volunteers/VolunteerViewModal](screens/EventVolunteers/Volunteers/VolunteerViewModal/README.md) +- [screens/ForgotPassword/ForgotPassword](screens/ForgotPassword/ForgotPassword/README.md) +- [screens/FundCampaignPledge/FundCampaignPledge](screens/FundCampaignPledge/FundCampaignPledge/README.md) +- [screens/FundCampaignPledge/PledgeDeleteModal](screens/FundCampaignPledge/PledgeDeleteModal/README.md) +- [screens/FundCampaignPledge/PledgeModal](screens/FundCampaignPledge/PledgeModal/README.md) +- [screens/FundCampaignPledge/PledgesMocks](screens/FundCampaignPledge/PledgesMocks/README.md) +- [screens/Leaderboard/Leaderboard](screens/Leaderboard/Leaderboard/README.md) +- [screens/Leaderboard/Leaderboard.mocks](screens/Leaderboard/Leaderboard.mocks/README.md) +- [screens/LoginPage/LoginPage](screens/LoginPage/LoginPage/README.md) +- [screens/ManageTag/EditUserTagModal](screens/ManageTag/EditUserTagModal/README.md) +- [screens/ManageTag/ManageTag](screens/ManageTag/ManageTag/README.md) +- [screens/ManageTag/ManageTagMockComponents/MockAddPeopleToTag](screens/ManageTag/ManageTagMockComponents/MockAddPeopleToTag/README.md) +- [screens/ManageTag/ManageTagMockComponents/MockTagActions](screens/ManageTag/ManageTagMockComponents/MockTagActions/README.md) +- [screens/ManageTag/ManageTagMocks](screens/ManageTag/ManageTagMocks/README.md) +- [screens/ManageTag/RemoveUserTagModal](screens/ManageTag/RemoveUserTagModal/README.md) +- [screens/ManageTag/UnassignUserTagModal](screens/ManageTag/UnassignUserTagModal/README.md) +- [screens/MemberDetail/MemberDetail](screens/MemberDetail/MemberDetail/README.md) +- [screens/MemberDetail/MemberDetailMocks](screens/MemberDetail/MemberDetailMocks/README.md) +- [screens/OrganizationActionItems/ItemDeleteModal](screens/OrganizationActionItems/ItemDeleteModal/README.md) +- [screens/OrganizationActionItems/ItemModal](screens/OrganizationActionItems/ItemModal/README.md) +- [screens/OrganizationActionItems/ItemUpdateStatusModal](screens/OrganizationActionItems/ItemUpdateStatusModal/README.md) +- [screens/OrganizationActionItems/ItemViewModal](screens/OrganizationActionItems/ItemViewModal/README.md) +- [screens/OrganizationActionItems/OrganizationActionItem.mocks](screens/OrganizationActionItems/OrganizationActionItem.mocks/README.md) +- [screens/OrganizationActionItems/OrganizationActionItems](screens/OrganizationActionItems/OrganizationActionItems/README.md) +- [screens/OrganizationActionItems/testObject.mocks](screens/OrganizationActionItems/testObject.mocks/README.md) +- [screens/OrganizationDashboard/OrganizationDashboard](screens/OrganizationDashboard/OrganizationDashboard/README.md) +- [screens/OrganizationDashboard/OrganizationDashboardMocks](screens/OrganizationDashboard/OrganizationDashboardMocks/README.md) +- [screens/OrganizationEvents/OrganizationEvents](screens/OrganizationEvents/OrganizationEvents/README.md) +- [screens/OrganizationEvents/OrganizationEventsMocks](screens/OrganizationEvents/OrganizationEventsMocks/README.md) +- [screens/OrganizationFundCampaign/CampaignModal](screens/OrganizationFundCampaign/CampaignModal/README.md) +- [screens/OrganizationFundCampaign/OrganizationFundCampagins](screens/OrganizationFundCampaign/OrganizationFundCampagins/README.md) +- [screens/OrganizationFundCampaign/OrganizationFundCampaignMocks](screens/OrganizationFundCampaign/OrganizationFundCampaignMocks/README.md) +- [screens/OrganizationFunds/FundModal](screens/OrganizationFunds/FundModal/README.md) +- [screens/OrganizationFunds/OrganizationFunds](screens/OrganizationFunds/OrganizationFunds/README.md) +- [screens/OrganizationFunds/OrganizationFundsMocks](screens/OrganizationFunds/OrganizationFundsMocks/README.md) +- [screens/OrganizationPeople/AddMember](screens/OrganizationPeople/AddMember/README.md) +- [screens/OrganizationPeople/MockDataTypes](screens/OrganizationPeople/MockDataTypes/README.md) +- [screens/OrganizationPeople/OrganizationPeople](screens/OrganizationPeople/OrganizationPeople/README.md) +- [screens/OrganizationTags/OrganizationTags](screens/OrganizationTags/OrganizationTags/README.md) +- [screens/OrganizationTags/OrganizationTagsMocks](screens/OrganizationTags/OrganizationTagsMocks/README.md) +- [screens/OrganizationVenues/OrganizationVenues](screens/OrganizationVenues/OrganizationVenues/README.md) +- [screens/OrgContribution/OrgContribution](screens/OrgContribution/OrgContribution/README.md) +- [screens/OrgList/OrganizationModal](screens/OrgList/OrganizationModal/README.md) +- [screens/OrgList/OrgList](screens/OrgList/OrgList/README.md) +- [screens/OrgList/OrgListMocks](screens/OrgList/OrgListMocks/README.md) +- [screens/OrgPost/OrgPost](screens/OrgPost/OrgPost/README.md) +- [screens/OrgSettings/OrgSettings](screens/OrgSettings/OrgSettings/README.md) +- [screens/OrgSettings/OrgSettings.mocks](screens/OrgSettings/OrgSettings.mocks/README.md) +- [screens/PageNotFound/PageNotFound](screens/PageNotFound/PageNotFound/README.md) +- [screens/Requests/Requests](screens/Requests/Requests/README.md) +- [screens/Requests/RequestsMocks](screens/Requests/RequestsMocks/README.md) +- [screens/SubTags/SubTags](screens/SubTags/SubTags/README.md) +- [screens/SubTags/SubTagsMocks](screens/SubTags/SubTagsMocks/README.md) +- [screens/UserPortal/Campaigns/Campaigns](screens/UserPortal/Campaigns/Campaigns/README.md) +- [screens/UserPortal/Campaigns/CampaignsMocks](screens/UserPortal/Campaigns/CampaignsMocks/README.md) +- [screens/UserPortal/Campaigns/PledgeModal](screens/UserPortal/Campaigns/PledgeModal/README.md) +- [screens/UserPortal/Chat/Chat](screens/UserPortal/Chat/Chat/README.md) +- [screens/UserPortal/Donate/Donate](screens/UserPortal/Donate/Donate/README.md) +- [screens/UserPortal/Events/Events](screens/UserPortal/Events/Events/README.md) +- [screens/UserPortal/LeaveOrganization/LeaveOrganization](screens/UserPortal/LeaveOrganization/LeaveOrganization/README.md) +- [screens/UserPortal/Organizations/Organizations](screens/UserPortal/Organizations/Organizations/README.md) +- [screens/UserPortal/People/People](screens/UserPortal/People/People/README.md) +- [screens/UserPortal/Pledges/Pledges](screens/UserPortal/Pledges/Pledges/README.md) +- [screens/UserPortal/Pledges/PledgesMocks](screens/UserPortal/Pledges/PledgesMocks/README.md) +- [screens/UserPortal/Posts/Posts](screens/UserPortal/Posts/Posts/README.md) +- [screens/UserPortal/Settings/Settings](screens/UserPortal/Settings/Settings/README.md) +- [screens/UserPortal/UserScreen/UserScreen](screens/UserPortal/UserScreen/UserScreen/README.md) +- [screens/UserPortal/Volunteer/Actions/Actions](screens/UserPortal/Volunteer/Actions/Actions/README.md) +- [screens/UserPortal/Volunteer/Actions/Actions.mocks](screens/UserPortal/Volunteer/Actions/Actions.mocks/README.md) +- [screens/UserPortal/Volunteer/Groups/GroupModal](screens/UserPortal/Volunteer/Groups/GroupModal/README.md) +- [screens/UserPortal/Volunteer/Groups/Groups](screens/UserPortal/Volunteer/Groups/Groups/README.md) +- [screens/UserPortal/Volunteer/Groups/Groups.mocks](screens/UserPortal/Volunteer/Groups/Groups.mocks/README.md) +- [screens/UserPortal/Volunteer/Invitations/Invitations](screens/UserPortal/Volunteer/Invitations/Invitations/README.md) +- [screens/UserPortal/Volunteer/Invitations/Invitations.mocks](screens/UserPortal/Volunteer/Invitations/Invitations.mocks/README.md) +- [screens/UserPortal/Volunteer/UpcomingEvents/UpcomingEvents](screens/UserPortal/Volunteer/UpcomingEvents/UpcomingEvents/README.md) +- [screens/UserPortal/Volunteer/UpcomingEvents/UpcomingEvents.mocks](screens/UserPortal/Volunteer/UpcomingEvents/UpcomingEvents.mocks/README.md) +- [screens/UserPortal/Volunteer/VolunteerManagement](screens/UserPortal/Volunteer/VolunteerManagement/README.md) +- [screens/Users/Users](screens/Users/Users/README.md) +- [screens/Users/UsersMocks](screens/Users/UsersMocks/README.md) +- [setup/askAndSetDockerOption/askAndSetDockerOption](setup/askAndSetDockerOption/askAndSetDockerOption/README.md) +- [setup/askAndUpdatePort/askAndUpdatePort](setup/askAndUpdatePort/askAndUpdatePort/README.md) +- [setup/askForCustomPort/askForCustomPort](setup/askForCustomPort/askForCustomPort/README.md) +- [setup/askForDocker/askForDocker](setup/askForDocker/askForDocker/README.md) +- [setup/askForTalawaApiUrl/askForTalawaApiUrl](setup/askForTalawaApiUrl/askForTalawaApiUrl/README.md) +- [setup/checkConnection/checkConnection](setup/checkConnection/checkConnection/README.md) +- [setup/checkEnvFile/checkEnvFile](setup/checkEnvFile/checkEnvFile/README.md) +- [setup/updateEnvFile/updateEnvFile](setup/updateEnvFile/updateEnvFile/README.md) +- [setup/validateRecaptcha/validateRecaptcha](setup/validateRecaptcha/validateRecaptcha/README.md) +- [setupTests](setupTests/README.md) +- [state](state/README.md) +- [state/action-creators](state/action-creators/README.md) +- [state/helpers/Action](state/helpers/Action/README.md) +- [state/hooks](state/hooks/README.md) +- [state/reducers](state/reducers/README.md) +- [state/reducers/pluginReducer](state/reducers/pluginReducer/README.md) +- [state/reducers/routesReducer](state/reducers/routesReducer/README.md) +- [state/reducers/userRoutesReducer](state/reducers/userRoutesReducer/README.md) +- [state/store](state/store/README.md) +- [subComponents/SortingButton](subComponents/SortingButton/README.md) +- [utils/chartToPdf](utils/chartToPdf/README.md) +- [utils/convertToBase64](utils/convertToBase64/README.md) +- [utils/currency](utils/currency/README.md) +- [utils/dateFormatter](utils/dateFormatter/README.md) +- [utils/errorHandler](utils/errorHandler/README.md) +- [utils/fieldTypes](utils/fieldTypes/README.md) +- [utils/formEnumFields](utils/formEnumFields/README.md) +- [utils/getOrganizationId](utils/getOrganizationId/README.md) +- [utils/getRefreshToken](utils/getRefreshToken/README.md) +- [utils/i18n](utils/i18n/README.md) +- [utils/i18nForTest](utils/i18nForTest/README.md) +- [utils/interfaces](utils/interfaces/README.md) +- [utils/languages](utils/languages/README.md) +- [utils/linkValidator](utils/linkValidator/README.md) +- [utils/organizationTagsUtils](utils/organizationTagsUtils/README.md) +- [utils/recurrenceUtils](utils/recurrenceUtils/README.md) +- [utils/recurrenceUtils/recurrenceConstants](utils/recurrenceUtils/recurrenceConstants/README.md) +- [utils/recurrenceUtils/recurrenceTypes](utils/recurrenceUtils/recurrenceTypes/README.md) +- [utils/recurrenceUtils/recurrenceUtilityFunctions](utils/recurrenceUtils/recurrenceUtilityFunctions/README.md) +- [utils/StaticMockLink](utils/StaticMockLink/README.md) +- [utils/timezoneUtils](utils/timezoneUtils/README.md) +- [utils/timezoneUtils/dateTimeConfig](utils/timezoneUtils/dateTimeConfig/README.md) +- [utils/timezoneUtils/dateTimeMiddleware](utils/timezoneUtils/dateTimeMiddleware/README.md) +- [utils/useLocalstorage](utils/useLocalstorage/README.md) +- [utils/useSession](utils/useSession/README.md) diff --git a/docs/docs/auto-docs/reportWebVitals/README.md b/docs/docs/auto-docs/reportWebVitals/README.md new file mode 100644 index 0000000000..7d1257e8c6 --- /dev/null +++ b/docs/docs/auto-docs/reportWebVitals/README.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../README.md) + +*** + +[talawa-admin](../modules.md) / reportWebVitals + +# reportWebVitals + +## Functions + +- [default](functions/default.md) diff --git a/docs/docs/auto-docs/reportWebVitals/functions/default.md b/docs/docs/auto-docs/reportWebVitals/functions/default.md new file mode 100644 index 0000000000..5e60b354e6 --- /dev/null +++ b/docs/docs/auto-docs/reportWebVitals/functions/default.md @@ -0,0 +1,21 @@ +[**talawa-admin**](../../README.md) + +*** + +[talawa-admin](../../modules.md) / [reportWebVitals](../README.md) / default + +# Function: default() + +> **default**(`onPerfEntry`?): `void` + +Defined in: [src/reportWebVitals.ts:4](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/reportWebVitals.ts#L4) + +## Parameters + +### onPerfEntry? + +(`metric`) => `void` + +## Returns + +`void` diff --git a/docs/docs/auto-docs/screens/BlockUser/BlockUser/README.md b/docs/docs/auto-docs/screens/BlockUser/BlockUser/README.md new file mode 100644 index 0000000000..5966130741 --- /dev/null +++ b/docs/docs/auto-docs/screens/BlockUser/BlockUser/README.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / screens/BlockUser/BlockUser + +# screens/BlockUser/BlockUser + +## Functions + +- [default](functions/default.md) diff --git a/docs/docs/auto-docs/screens/BlockUser/BlockUser/functions/default.md b/docs/docs/auto-docs/screens/BlockUser/BlockUser/functions/default.md new file mode 100644 index 0000000000..60613c706a --- /dev/null +++ b/docs/docs/auto-docs/screens/BlockUser/BlockUser/functions/default.md @@ -0,0 +1,28 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [screens/BlockUser/BlockUser](../README.md) / default + +# Function: default() + +> **default**(): `Element` + +Defined in: [src/screens/BlockUser/BlockUser.tsx:45](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/BlockUser/BlockUser.tsx#L45) + +Requests component displays and manages a list of users that can be blocked or unblocked. + +This component allows users to search for members by their first name or last name, +toggle between viewing blocked and all members, and perform block/unblock operations. + +## Returns + +`Element` + +JSX.Element - The `Requests` component. + +## Example + +```tsx + +``` diff --git a/docs/docs/auto-docs/screens/CommunityProfile/CommunityProfile/README.md b/docs/docs/auto-docs/screens/CommunityProfile/CommunityProfile/README.md new file mode 100644 index 0000000000..4cfeaf8531 --- /dev/null +++ b/docs/docs/auto-docs/screens/CommunityProfile/CommunityProfile/README.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / screens/CommunityProfile/CommunityProfile + +# screens/CommunityProfile/CommunityProfile + +## Functions + +- [default](functions/default.md) diff --git a/docs/docs/auto-docs/screens/CommunityProfile/CommunityProfile/functions/default.md b/docs/docs/auto-docs/screens/CommunityProfile/CommunityProfile/functions/default.md new file mode 100644 index 0000000000..457706c83d --- /dev/null +++ b/docs/docs/auto-docs/screens/CommunityProfile/CommunityProfile/functions/default.md @@ -0,0 +1,30 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [screens/CommunityProfile/CommunityProfile](../README.md) / default + +# Function: default() + +> **default**(): `Element` + +Defined in: [src/screens/CommunityProfile/CommunityProfile.tsx:40](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/CommunityProfile/CommunityProfile.tsx#L40) + +`CommunityProfile` component allows users to view and update their community profile details. + +It includes functionalities to: +- Display current community profile information +- Update profile details including social media links and logo +- Reset profile changes to the initial state + +## Returns + +`Element` + +JSX.Element - The `CommunityProfile` component. + +## Example + +```tsx + +``` diff --git a/docs/docs/auto-docs/screens/EventManagement/EventManagement/README.md b/docs/docs/auto-docs/screens/EventManagement/EventManagement/README.md new file mode 100644 index 0000000000..65b8b007de --- /dev/null +++ b/docs/docs/auto-docs/screens/EventManagement/EventManagement/README.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / screens/EventManagement/EventManagement + +# screens/EventManagement/EventManagement + +## Functions + +- [default](functions/default.md) diff --git a/docs/docs/auto-docs/screens/EventManagement/EventManagement/functions/default.md b/docs/docs/auto-docs/screens/EventManagement/EventManagement/functions/default.md new file mode 100644 index 0000000000..e3bd716dc1 --- /dev/null +++ b/docs/docs/auto-docs/screens/EventManagement/EventManagement/functions/default.md @@ -0,0 +1,34 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [screens/EventManagement/EventManagement](../README.md) / default + +# Function: default() + +> **default**(): `Element` + +Defined in: [src/screens/EventManagement/EventManagement.tsx:91](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/EventManagement/EventManagement.tsx#L91) + +`EventManagement` component handles the display and navigation of different event management sections. + +It provides a tabbed interface for: +- Viewing event dashboard +- Managing event registrants +- Handling event actions +- Reviewing event agendas +- Viewing event statistics +- Managing event volunteers +- Managing event attendance + +## Returns + +`Element` + +JSX.Element - The `EventManagement` component. + +## Example + +```tsx + +``` diff --git a/docs/docs/auto-docs/screens/EventVolunteers/Requests/Requests.mocks/README.md b/docs/docs/auto-docs/screens/EventVolunteers/Requests/Requests.mocks/README.md new file mode 100644 index 0000000000..75a66f86b6 --- /dev/null +++ b/docs/docs/auto-docs/screens/EventVolunteers/Requests/Requests.mocks/README.md @@ -0,0 +1,14 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / screens/EventVolunteers/Requests/Requests.mocks + +# screens/EventVolunteers/Requests/Requests.mocks + +## Variables + +- [EMPTY\_MOCKS](variables/EMPTY_MOCKS.md) +- [ERROR\_MOCKS](variables/ERROR_MOCKS.md) +- [MOCKS](variables/MOCKS.md) +- [UPDATE\_ERROR\_MOCKS](variables/UPDATE_ERROR_MOCKS.md) diff --git a/docs/docs/auto-docs/screens/EventVolunteers/Requests/Requests.mocks/variables/EMPTY_MOCKS.md b/docs/docs/auto-docs/screens/EventVolunteers/Requests/Requests.mocks/variables/EMPTY_MOCKS.md new file mode 100644 index 0000000000..b066f45b11 --- /dev/null +++ b/docs/docs/auto-docs/screens/EventVolunteers/Requests/Requests.mocks/variables/EMPTY_MOCKS.md @@ -0,0 +1,49 @@ +[**talawa-admin**](../../../../../README.md) + +*** + +[talawa-admin](../../../../../modules.md) / [screens/EventVolunteers/Requests/Requests.mocks](../README.md) / EMPTY\_MOCKS + +# Variable: EMPTY\_MOCKS + +> `const` **EMPTY\_MOCKS**: `object`[] + +Defined in: [src/screens/EventVolunteers/Requests/Requests.mocks.ts:148](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/EventVolunteers/Requests/Requests.mocks.ts#L148) + +## Type declaration + +### request + +> **request**: `object` + +#### request.query + +> **query**: `DocumentNode` = `USER_VOLUNTEER_MEMBERSHIP` + +#### request.variables + +> **variables**: `object` + +#### request.variables.where + +> **where**: `object` + +#### request.variables.where.eventId + +> **eventId**: `string` = `'eventId'` + +#### request.variables.where.status + +> **status**: `string` = `'requested'` + +### result + +> **result**: `object` + +#### result.data + +> **data**: `object` + +#### result.data.getVolunteerMembership + +> **getVolunteerMembership**: `never`[] = `[]` diff --git a/docs/docs/auto-docs/screens/EventVolunteers/Requests/Requests.mocks/variables/ERROR_MOCKS.md b/docs/docs/auto-docs/screens/EventVolunteers/Requests/Requests.mocks/variables/ERROR_MOCKS.md new file mode 100644 index 0000000000..2736e6c72e --- /dev/null +++ b/docs/docs/auto-docs/screens/EventVolunteers/Requests/Requests.mocks/variables/ERROR_MOCKS.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../../../README.md) + +*** + +[talawa-admin](../../../../../modules.md) / [screens/EventVolunteers/Requests/Requests.mocks](../README.md) / ERROR\_MOCKS + +# Variable: ERROR\_MOCKS + +> `const` **ERROR\_MOCKS**: (\{ `error`: `Error`; `request`: \{ `query`: `DocumentNode`; `variables`: \{ `id`: `undefined`; `orderBy`: `undefined`; `status`: `undefined`; `where`: \{ `eventId`: `string`; `status`: `string`; `userName`: `undefined`; \}; \}; \}; \} \| \{ `error`: `Error`; `request`: \{ `query`: `DocumentNode`; `variables`: \{ `id`: `string`; `orderBy`: `undefined`; `status`: `string`; `where`: `undefined`; \}; \}; \})[] + +Defined in: [src/screens/EventVolunteers/Requests/Requests.mocks.ts:167](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/EventVolunteers/Requests/Requests.mocks.ts#L167) diff --git a/docs/docs/auto-docs/screens/EventVolunteers/Requests/Requests.mocks/variables/MOCKS.md b/docs/docs/auto-docs/screens/EventVolunteers/Requests/Requests.mocks/variables/MOCKS.md new file mode 100644 index 0000000000..13e345dbe6 --- /dev/null +++ b/docs/docs/auto-docs/screens/EventVolunteers/Requests/Requests.mocks/variables/MOCKS.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../../../README.md) + +*** + +[talawa-admin](../../../../../modules.md) / [screens/EventVolunteers/Requests/Requests.mocks](../README.md) / MOCKS + +# Variable: MOCKS + +> `const` **MOCKS**: (\{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `id`: `undefined`; `orderBy`: `undefined`; `status`: `undefined`; `where`: \{ `eventId`: `string`; `status`: `string`; `userName`: `undefined`; \}; \}; \}; `result`: \{ `data`: \{ `getVolunteerMembership`: (\{ `_id`: `string`; `createdAt`: `string`; `event`: \{ `_id`: `string`; `startDate`: `string`; `title`: `string`; \}; `group`: `null`; `status`: `string`; `volunteer`: \{ `_id`: `string`; `user`: \{ `_id`: `string`; `firstName`: `string`; `image`: `string`; `lastName`: `string`; \}; \}; \} \| \{ `_id`: `string`; `createdAt`: `string`; `event`: \{ `_id`: `string`; `startDate`: `string`; `title`: `string`; \}; `group`: `null`; `status`: `string`; `volunteer`: \{ `_id`: `string`; `user`: \{ `_id`: `string`; `firstName`: `string`; `image`: `null`; `lastName`: `string`; \}; \}; \})[]; `updateVolunteerMembership`: `undefined`; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `id`: `undefined`; `orderBy`: `string`; `status`: `undefined`; `where`: \{ `eventId`: `string`; `status`: `string`; `userName`: `undefined`; \}; \}; \}; `result`: \{ `data`: \{ `getVolunteerMembership`: (\{ `_id`: `string`; `createdAt`: `string`; `event`: \{ `_id`: `string`; `startDate`: `string`; `title`: `string`; \}; `group`: `null`; `status`: `string`; `volunteer`: \{ `_id`: `string`; `user`: \{ `_id`: `string`; `firstName`: `string`; `image`: `string`; `lastName`: `string`; \}; \}; \} \| \{ `_id`: `string`; `createdAt`: `string`; `event`: \{ `_id`: `string`; `startDate`: `string`; `title`: `string`; \}; `group`: `null`; `status`: `string`; `volunteer`: \{ `_id`: `string`; `user`: \{ `_id`: `string`; `firstName`: `string`; `image`: `null`; `lastName`: `string`; \}; \}; \})[]; `updateVolunteerMembership`: `undefined`; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `id`: `undefined`; `orderBy`: `undefined`; `status`: `undefined`; `where`: \{ `eventId`: `string`; `status`: `string`; `userName`: `string`; \}; \}; \}; `result`: \{ `data`: \{ `getVolunteerMembership`: `object`[]; `updateVolunteerMembership`: `undefined`; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `id`: `string`; `orderBy`: `undefined`; `status`: `string`; `where`: `undefined`; \}; \}; `result`: \{ `data`: \{ `getVolunteerMembership`: `undefined`; `updateVolunteerMembership`: \{ `_id`: `string`; \}; \}; \}; \})[] + +Defined in: [src/screens/EventVolunteers/Requests/Requests.mocks.ts:46](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/EventVolunteers/Requests/Requests.mocks.ts#L46) diff --git a/docs/docs/auto-docs/screens/EventVolunteers/Requests/Requests.mocks/variables/UPDATE_ERROR_MOCKS.md b/docs/docs/auto-docs/screens/EventVolunteers/Requests/Requests.mocks/variables/UPDATE_ERROR_MOCKS.md new file mode 100644 index 0000000000..98f30df5f4 --- /dev/null +++ b/docs/docs/auto-docs/screens/EventVolunteers/Requests/Requests.mocks/variables/UPDATE_ERROR_MOCKS.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../../../README.md) + +*** + +[talawa-admin](../../../../../modules.md) / [screens/EventVolunteers/Requests/Requests.mocks](../README.md) / UPDATE\_ERROR\_MOCKS + +# Variable: UPDATE\_ERROR\_MOCKS + +> `const` **UPDATE\_ERROR\_MOCKS**: (\{ `error`: `undefined`; `request`: \{ `query`: `DocumentNode`; `variables`: \{ `id`: `undefined`; `status`: `undefined`; `where`: \{ `eventId`: `string`; `status`: `string`; \}; \}; \}; `result`: \{ `data`: \{ `getVolunteerMembership`: (\{ `_id`: `string`; `createdAt`: `string`; `event`: \{ `_id`: `string`; `startDate`: `string`; `title`: `string`; \}; `group`: `null`; `status`: `string`; `volunteer`: \{ `_id`: `string`; `user`: \{ `_id`: `string`; `firstName`: `string`; `image`: `string`; `lastName`: `string`; \}; \}; \} \| \{ `_id`: `string`; `createdAt`: `string`; `event`: \{ `_id`: `string`; `startDate`: `string`; `title`: `string`; \}; `group`: `null`; `status`: `string`; `volunteer`: \{ `_id`: `string`; `user`: \{ `_id`: `string`; `firstName`: `string`; `image`: `null`; `lastName`: `string`; \}; \}; \})[]; \}; \}; \} \| \{ `error`: `Error`; `request`: \{ `query`: `DocumentNode`; `variables`: \{ `id`: `string`; `status`: `string`; `where`: `undefined`; \}; \}; `result`: `undefined`; \})[] + +Defined in: [src/screens/EventVolunteers/Requests/Requests.mocks.ts:194](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/EventVolunteers/Requests/Requests.mocks.ts#L194) diff --git a/docs/docs/auto-docs/screens/EventVolunteers/Requests/Requests/README.md b/docs/docs/auto-docs/screens/EventVolunteers/Requests/Requests/README.md new file mode 100644 index 0000000000..669266bca9 --- /dev/null +++ b/docs/docs/auto-docs/screens/EventVolunteers/Requests/Requests/README.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / screens/EventVolunteers/Requests/Requests + +# screens/EventVolunteers/Requests/Requests + +## Functions + +- [default](functions/default.md) diff --git a/docs/docs/auto-docs/screens/EventVolunteers/Requests/Requests/functions/default.md b/docs/docs/auto-docs/screens/EventVolunteers/Requests/Requests/functions/default.md new file mode 100644 index 0000000000..876d5834ce --- /dev/null +++ b/docs/docs/auto-docs/screens/EventVolunteers/Requests/Requests/functions/default.md @@ -0,0 +1,21 @@ +[**talawa-admin**](../../../../../README.md) + +*** + +[talawa-admin](../../../../../modules.md) / [screens/EventVolunteers/Requests/Requests](../README.md) / default + +# Function: default() + +> **default**(): `JSX.Element` + +Defined in: [src/screens/EventVolunteers/Requests/Requests.tsx:53](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/EventVolunteers/Requests/Requests.tsx#L53) + +Component for managing and displaying Volunteer Membership requests for an event. + +This component allows users to view, filter, sort, and create action items. It also allows users to accept or reject volunteer membership requests. + +## Returns + +`JSX.Element` + +The rendered component. diff --git a/docs/docs/auto-docs/screens/EventVolunteers/VolunteerContainer/README.md b/docs/docs/auto-docs/screens/EventVolunteers/VolunteerContainer/README.md new file mode 100644 index 0000000000..03cc6c6ef1 --- /dev/null +++ b/docs/docs/auto-docs/screens/EventVolunteers/VolunteerContainer/README.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / screens/EventVolunteers/VolunteerContainer + +# screens/EventVolunteers/VolunteerContainer + +## Functions + +- [default](functions/default.md) diff --git a/docs/docs/auto-docs/screens/EventVolunteers/VolunteerContainer/functions/default.md b/docs/docs/auto-docs/screens/EventVolunteers/VolunteerContainer/functions/default.md new file mode 100644 index 0000000000..d8798982aa --- /dev/null +++ b/docs/docs/auto-docs/screens/EventVolunteers/VolunteerContainer/functions/default.md @@ -0,0 +1,21 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [screens/EventVolunteers/VolunteerContainer](../README.md) / default + +# Function: default() + +> **default**(): `JSX.Element` + +Defined in: [src/screens/EventVolunteers/VolunteerContainer.tsx:18](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/EventVolunteers/VolunteerContainer.tsx#L18) + +Container Component for Volunteer or VolunteerGroups as per selection. + +This component allows users switch between Volunteers and VolunteerGroups. + +## Returns + +`JSX.Element` + +The rendered component. diff --git a/docs/docs/auto-docs/screens/EventVolunteers/VolunteerGroups/VolunteerGroupDeleteModal/README.md b/docs/docs/auto-docs/screens/EventVolunteers/VolunteerGroups/VolunteerGroupDeleteModal/README.md new file mode 100644 index 0000000000..d744309fca --- /dev/null +++ b/docs/docs/auto-docs/screens/EventVolunteers/VolunteerGroups/VolunteerGroupDeleteModal/README.md @@ -0,0 +1,15 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / screens/EventVolunteers/VolunteerGroups/VolunteerGroupDeleteModal + +# screens/EventVolunteers/VolunteerGroups/VolunteerGroupDeleteModal + +## Interfaces + +- [InterfaceDeleteVolunteerGroupModal](interfaces/InterfaceDeleteVolunteerGroupModal.md) + +## Functions + +- [default](functions/default.md) diff --git a/docs/docs/auto-docs/screens/EventVolunteers/VolunteerGroups/VolunteerGroupDeleteModal/functions/default.md b/docs/docs/auto-docs/screens/EventVolunteers/VolunteerGroups/VolunteerGroupDeleteModal/functions/default.md new file mode 100644 index 0000000000..88e3466059 --- /dev/null +++ b/docs/docs/auto-docs/screens/EventVolunteers/VolunteerGroups/VolunteerGroupDeleteModal/functions/default.md @@ -0,0 +1,48 @@ +[**talawa-admin**](../../../../../README.md) + +*** + +[talawa-admin](../../../../../modules.md) / [screens/EventVolunteers/VolunteerGroups/VolunteerGroupDeleteModal](../README.md) / default + +# Function: default() + +> **default**(`props`, `deprecatedLegacyContext`?): `ReactNode` + +Defined in: [src/screens/EventVolunteers/VolunteerGroups/VolunteerGroupDeleteModal.tsx:42](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/EventVolunteers/VolunteerGroups/VolunteerGroupDeleteModal.tsx#L42) + +A modal dialog for confirming the deletion of a volunteer group. + +## Parameters + +### props + +[`InterfaceDeleteVolunteerGroupModal`](../interfaces/InterfaceDeleteVolunteerGroupModal.md) + +### deprecatedLegacyContext? + +`any` + +**Deprecated** + +**See** + +[React Docs](https://legacy.reactjs.org/docs/legacy-context.html#referencing-context-in-lifecycle-methods) + +## Returns + +`ReactNode` + +The rendered modal component. + +The `VolunteerGroupDeleteModal` component displays a confirmation dialog when a user attempts to delete a volunteer group. +It allows the user to either confirm or cancel the deletion. +On confirmation, the `deleteVolunteerGroup` mutation is called to remove the volunteer group from the database, +and the `refetchGroups` function is invoked to update the list of volunteer groups. +A success or error toast notification is shown based on the result of the deletion operation. + +The modal includes: +- A header with a title and a close button. +- A body with a message asking for confirmation. +- A footer with "Yes" and "No" buttons to confirm or cancel the deletion. + +The `deleteVolunteerGroup` mutation is used to perform the deletion operation. diff --git a/docs/docs/auto-docs/screens/EventVolunteers/VolunteerGroups/VolunteerGroupDeleteModal/interfaces/InterfaceDeleteVolunteerGroupModal.md b/docs/docs/auto-docs/screens/EventVolunteers/VolunteerGroups/VolunteerGroupDeleteModal/interfaces/InterfaceDeleteVolunteerGroupModal.md new file mode 100644 index 0000000000..a44f1b5589 --- /dev/null +++ b/docs/docs/auto-docs/screens/EventVolunteers/VolunteerGroups/VolunteerGroupDeleteModal/interfaces/InterfaceDeleteVolunteerGroupModal.md @@ -0,0 +1,49 @@ +[**talawa-admin**](../../../../../README.md) + +*** + +[talawa-admin](../../../../../modules.md) / [screens/EventVolunteers/VolunteerGroups/VolunteerGroupDeleteModal](../README.md) / InterfaceDeleteVolunteerGroupModal + +# Interface: InterfaceDeleteVolunteerGroupModal + +Defined in: [src/screens/EventVolunteers/VolunteerGroups/VolunteerGroupDeleteModal.tsx:10](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/EventVolunteers/VolunteerGroups/VolunteerGroupDeleteModal.tsx#L10) + +## Properties + +### group + +> **group**: `null` \| [`InterfaceVolunteerGroupInfo`](../../../../../utils/interfaces/interfaces/InterfaceVolunteerGroupInfo.md) + +Defined in: [src/screens/EventVolunteers/VolunteerGroups/VolunteerGroupDeleteModal.tsx:13](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/EventVolunteers/VolunteerGroups/VolunteerGroupDeleteModal.tsx#L13) + +*** + +### hide() + +> **hide**: () => `void` + +Defined in: [src/screens/EventVolunteers/VolunteerGroups/VolunteerGroupDeleteModal.tsx:12](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/EventVolunteers/VolunteerGroups/VolunteerGroupDeleteModal.tsx#L12) + +#### Returns + +`void` + +*** + +### isOpen + +> **isOpen**: `boolean` + +Defined in: [src/screens/EventVolunteers/VolunteerGroups/VolunteerGroupDeleteModal.tsx:11](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/EventVolunteers/VolunteerGroups/VolunteerGroupDeleteModal.tsx#L11) + +*** + +### refetchGroups() + +> **refetchGroups**: () => `void` + +Defined in: [src/screens/EventVolunteers/VolunteerGroups/VolunteerGroupDeleteModal.tsx:14](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/EventVolunteers/VolunteerGroups/VolunteerGroupDeleteModal.tsx#L14) + +#### Returns + +`void` diff --git a/docs/docs/auto-docs/screens/EventVolunteers/VolunteerGroups/VolunteerGroupModal/README.md b/docs/docs/auto-docs/screens/EventVolunteers/VolunteerGroups/VolunteerGroupModal/README.md new file mode 100644 index 0000000000..51f59d0b3d --- /dev/null +++ b/docs/docs/auto-docs/screens/EventVolunteers/VolunteerGroups/VolunteerGroupModal/README.md @@ -0,0 +1,15 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / screens/EventVolunteers/VolunteerGroups/VolunteerGroupModal + +# screens/EventVolunteers/VolunteerGroups/VolunteerGroupModal + +## Interfaces + +- [InterfaceVolunteerGroupModal](interfaces/InterfaceVolunteerGroupModal.md) + +## Functions + +- [default](functions/default.md) diff --git a/docs/docs/auto-docs/screens/EventVolunteers/VolunteerGroups/VolunteerGroupModal/functions/default.md b/docs/docs/auto-docs/screens/EventVolunteers/VolunteerGroups/VolunteerGroupModal/functions/default.md new file mode 100644 index 0000000000..046079a62f --- /dev/null +++ b/docs/docs/auto-docs/screens/EventVolunteers/VolunteerGroups/VolunteerGroupModal/functions/default.md @@ -0,0 +1,54 @@ +[**talawa-admin**](../../../../../README.md) + +*** + +[talawa-admin](../../../../../modules.md) / [screens/EventVolunteers/VolunteerGroups/VolunteerGroupModal](../README.md) / default + +# Function: default() + +> **default**(`props`, `deprecatedLegacyContext`?): `ReactNode` + +Defined in: [src/screens/EventVolunteers/VolunteerGroups/VolunteerGroupModal.tsx:63](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/EventVolunteers/VolunteerGroups/VolunteerGroupModal.tsx#L63) + +A modal dialog for creating or editing a volunteer group. + +## Parameters + +### props + +[`InterfaceVolunteerGroupModal`](../interfaces/InterfaceVolunteerGroupModal.md) + +### deprecatedLegacyContext? + +`any` + +**Deprecated** + +**See** + +[React Docs](https://legacy.reactjs.org/docs/legacy-context.html#referencing-context-in-lifecycle-methods) + +## Returns + +`ReactNode` + +The rendered modal component. + +The `VolunteerGroupModal` component displays a form within a modal dialog for creating or editing a Volunteer Group. +It includes fields for entering the group name, description, volunteersRequired, and selecting volunteers/leaders. + +The modal includes: +- A header with a title indicating the current mode (create or edit) and a close button. +- A form with: + - An input field for entering the group name. + - A textarea for entering the group description. + - A multi-select dropdown for selecting leader. + - A multi-select dropdown for selecting volunteers. + - An input field for entering the number of volunteers required. +- A submit button to create or update the pledge. + +On form submission, the component either: +- Calls `updatePledge` mutation to update an existing pledge, or +- Calls `createPledge` mutation to create a new pledge. + +Success or error messages are displayed using toast notifications based on the result of the mutation. diff --git a/docs/docs/auto-docs/screens/EventVolunteers/VolunteerGroups/VolunteerGroupModal/interfaces/InterfaceVolunteerGroupModal.md b/docs/docs/auto-docs/screens/EventVolunteers/VolunteerGroups/VolunteerGroupModal/interfaces/InterfaceVolunteerGroupModal.md new file mode 100644 index 0000000000..b8c25ef289 --- /dev/null +++ b/docs/docs/auto-docs/screens/EventVolunteers/VolunteerGroups/VolunteerGroupModal/interfaces/InterfaceVolunteerGroupModal.md @@ -0,0 +1,73 @@ +[**talawa-admin**](../../../../../README.md) + +*** + +[talawa-admin](../../../../../modules.md) / [screens/EventVolunteers/VolunteerGroups/VolunteerGroupModal](../README.md) / InterfaceVolunteerGroupModal + +# Interface: InterfaceVolunteerGroupModal + +Defined in: [src/screens/EventVolunteers/VolunteerGroups/VolunteerGroupModal.tsx:21](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/EventVolunteers/VolunteerGroups/VolunteerGroupModal.tsx#L21) + +## Properties + +### eventId + +> **eventId**: `string` + +Defined in: [src/screens/EventVolunteers/VolunteerGroups/VolunteerGroupModal.tsx:24](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/EventVolunteers/VolunteerGroups/VolunteerGroupModal.tsx#L24) + +*** + +### group + +> **group**: `null` \| [`InterfaceVolunteerGroupInfo`](../../../../../utils/interfaces/interfaces/InterfaceVolunteerGroupInfo.md) + +Defined in: [src/screens/EventVolunteers/VolunteerGroups/VolunteerGroupModal.tsx:26](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/EventVolunteers/VolunteerGroups/VolunteerGroupModal.tsx#L26) + +*** + +### hide() + +> **hide**: () => `void` + +Defined in: [src/screens/EventVolunteers/VolunteerGroups/VolunteerGroupModal.tsx:23](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/EventVolunteers/VolunteerGroups/VolunteerGroupModal.tsx#L23) + +#### Returns + +`void` + +*** + +### isOpen + +> **isOpen**: `boolean` + +Defined in: [src/screens/EventVolunteers/VolunteerGroups/VolunteerGroupModal.tsx:22](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/EventVolunteers/VolunteerGroups/VolunteerGroupModal.tsx#L22) + +*** + +### mode + +> **mode**: `"create"` \| `"edit"` + +Defined in: [src/screens/EventVolunteers/VolunteerGroups/VolunteerGroupModal.tsx:28](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/EventVolunteers/VolunteerGroups/VolunteerGroupModal.tsx#L28) + +*** + +### orgId + +> **orgId**: `string` + +Defined in: [src/screens/EventVolunteers/VolunteerGroups/VolunteerGroupModal.tsx:25](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/EventVolunteers/VolunteerGroups/VolunteerGroupModal.tsx#L25) + +*** + +### refetchGroups() + +> **refetchGroups**: () => `void` + +Defined in: [src/screens/EventVolunteers/VolunteerGroups/VolunteerGroupModal.tsx:27](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/EventVolunteers/VolunteerGroups/VolunteerGroupModal.tsx#L27) + +#### Returns + +`void` diff --git a/docs/docs/auto-docs/screens/EventVolunteers/VolunteerGroups/VolunteerGroupViewModal/README.md b/docs/docs/auto-docs/screens/EventVolunteers/VolunteerGroups/VolunteerGroupViewModal/README.md new file mode 100644 index 0000000000..9e4517af04 --- /dev/null +++ b/docs/docs/auto-docs/screens/EventVolunteers/VolunteerGroups/VolunteerGroupViewModal/README.md @@ -0,0 +1,15 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / screens/EventVolunteers/VolunteerGroups/VolunteerGroupViewModal + +# screens/EventVolunteers/VolunteerGroups/VolunteerGroupViewModal + +## Interfaces + +- [InterfaceVolunteerGroupViewModal](interfaces/InterfaceVolunteerGroupViewModal.md) + +## Functions + +- [default](functions/default.md) diff --git a/docs/docs/auto-docs/screens/EventVolunteers/VolunteerGroups/VolunteerGroupViewModal/functions/default.md b/docs/docs/auto-docs/screens/EventVolunteers/VolunteerGroups/VolunteerGroupViewModal/functions/default.md new file mode 100644 index 0000000000..68fd5516bb --- /dev/null +++ b/docs/docs/auto-docs/screens/EventVolunteers/VolunteerGroups/VolunteerGroupViewModal/functions/default.md @@ -0,0 +1,41 @@ +[**talawa-admin**](../../../../../README.md) + +*** + +[talawa-admin](../../../../../modules.md) / [screens/EventVolunteers/VolunteerGroups/VolunteerGroupViewModal](../README.md) / default + +# Function: default() + +> **default**(`props`, `deprecatedLegacyContext`?): `ReactNode` + +Defined in: [src/screens/EventVolunteers/VolunteerGroups/VolunteerGroupViewModal.tsx:41](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/EventVolunteers/VolunteerGroups/VolunteerGroupViewModal.tsx#L41) + +A modal dialog for viewing volunteer group information for an event. + +## Parameters + +### props + +[`InterfaceVolunteerGroupViewModal`](../interfaces/InterfaceVolunteerGroupViewModal.md) + +### deprecatedLegacyContext? + +`any` + +**Deprecated** + +**See** + +[React Docs](https://legacy.reactjs.org/docs/legacy-context.html#referencing-context-in-lifecycle-methods) + +## Returns + +`ReactNode` + +The rendered modal component. + +The `VolunteerGroupViewModal` component displays all the fields of a volunteer group in a modal dialog. + +The modal includes: +- A header with a title and a close button. +- fields for volunteer name, status, hours volunteered, groups, and assignments. diff --git a/docs/docs/auto-docs/screens/EventVolunteers/VolunteerGroups/VolunteerGroupViewModal/interfaces/InterfaceVolunteerGroupViewModal.md b/docs/docs/auto-docs/screens/EventVolunteers/VolunteerGroups/VolunteerGroupViewModal/interfaces/InterfaceVolunteerGroupViewModal.md new file mode 100644 index 0000000000..3a34e13a98 --- /dev/null +++ b/docs/docs/auto-docs/screens/EventVolunteers/VolunteerGroups/VolunteerGroupViewModal/interfaces/InterfaceVolunteerGroupViewModal.md @@ -0,0 +1,37 @@ +[**talawa-admin**](../../../../../README.md) + +*** + +[talawa-admin](../../../../../modules.md) / [screens/EventVolunteers/VolunteerGroups/VolunteerGroupViewModal](../README.md) / InterfaceVolunteerGroupViewModal + +# Interface: InterfaceVolunteerGroupViewModal + +Defined in: [src/screens/EventVolunteers/VolunteerGroups/VolunteerGroupViewModal.tsx:19](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/EventVolunteers/VolunteerGroups/VolunteerGroupViewModal.tsx#L19) + +## Properties + +### group + +> **group**: [`InterfaceVolunteerGroupInfo`](../../../../../utils/interfaces/interfaces/InterfaceVolunteerGroupInfo.md) + +Defined in: [src/screens/EventVolunteers/VolunteerGroups/VolunteerGroupViewModal.tsx:22](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/EventVolunteers/VolunteerGroups/VolunteerGroupViewModal.tsx#L22) + +*** + +### hide() + +> **hide**: () => `void` + +Defined in: [src/screens/EventVolunteers/VolunteerGroups/VolunteerGroupViewModal.tsx:21](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/EventVolunteers/VolunteerGroups/VolunteerGroupViewModal.tsx#L21) + +#### Returns + +`void` + +*** + +### isOpen + +> **isOpen**: `boolean` + +Defined in: [src/screens/EventVolunteers/VolunteerGroups/VolunteerGroupViewModal.tsx:20](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/EventVolunteers/VolunteerGroups/VolunteerGroupViewModal.tsx#L20) diff --git a/docs/docs/auto-docs/screens/EventVolunteers/VolunteerGroups/VolunteerGroups.mocks/README.md b/docs/docs/auto-docs/screens/EventVolunteers/VolunteerGroups/VolunteerGroups.mocks/README.md new file mode 100644 index 0000000000..f9b469997c --- /dev/null +++ b/docs/docs/auto-docs/screens/EventVolunteers/VolunteerGroups/VolunteerGroups.mocks/README.md @@ -0,0 +1,13 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / screens/EventVolunteers/VolunteerGroups/VolunteerGroups.mocks + +# screens/EventVolunteers/VolunteerGroups/VolunteerGroups.mocks + +## Variables + +- [MOCKS](variables/MOCKS.md) +- [MOCKS\_EMPTY](variables/MOCKS_EMPTY.md) +- [MOCKS\_ERROR](variables/MOCKS_ERROR.md) diff --git a/docs/docs/auto-docs/screens/EventVolunteers/VolunteerGroups/VolunteerGroups.mocks/variables/MOCKS.md b/docs/docs/auto-docs/screens/EventVolunteers/VolunteerGroups/VolunteerGroups.mocks/variables/MOCKS.md new file mode 100644 index 0000000000..78cbdcc5d5 --- /dev/null +++ b/docs/docs/auto-docs/screens/EventVolunteers/VolunteerGroups/VolunteerGroups.mocks/variables/MOCKS.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../../../README.md) + +*** + +[talawa-admin](../../../../../modules.md) / [screens/EventVolunteers/VolunteerGroups/VolunteerGroups.mocks](../README.md) / MOCKS + +# Variable: MOCKS + +> `const` **MOCKS**: (\{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `data`: `undefined`; `id`: `undefined`; `orderBy`: `null`; `where`: \{ `eventId`: `string`; `leaderName`: `null`; `name_contains`: `string`; \}; \}; \}; `result`: \{ `data`: \{ `createEventVolunteerGroup`: `undefined`; `getEventVolunteerGroups`: (\{ `_id`: `string`; `assignments`: `never`[]; `createdAt`: `string`; `creator`: \{ `_id`: `string`; `firstName`: `string`; `image`: `null`; `lastName`: `string`; \}; `description`: `string`; `event`: \{ `_id`: `string`; \}; `leader`: \{ `_id`: `string`; `firstName`: `string`; `image`: `string`; `lastName`: `string`; \}; `name`: `string`; `volunteers`: `object`[]; `volunteersRequired`: `null`; \} \| \{ `_id`: `string`; `assignments`: `never`[]; `createdAt`: `string`; `creator`: \{ `_id`: `string`; `firstName`: `string`; `image`: `null`; `lastName`: `string`; \}; `description`: `string`; `event`: \{ `_id`: `string`; \}; `leader`: \{ `_id`: `string`; `firstName`: `string`; `image`: `null`; `lastName`: `string`; \}; `name`: `string`; `volunteers`: `object`[]; `volunteersRequired`: `null`; \})[]; `organizations`: `undefined`; `removeEventVolunteerGroup`: `undefined`; `updateEventVolunteerGroup`: `undefined`; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `data`: `undefined`; `id`: `undefined`; `orderBy`: `string`; `where`: \{ `eventId`: `string`; `leaderName`: `null`; `name_contains`: `string`; \}; \}; \}; `result`: \{ `data`: \{ `createEventVolunteerGroup`: `undefined`; `getEventVolunteerGroups`: (\{ `_id`: `string`; `assignments`: `never`[]; `createdAt`: `string`; `creator`: \{ `_id`: `string`; `firstName`: `string`; `image`: `null`; `lastName`: `string`; \}; `description`: `string`; `event`: \{ `_id`: `string`; \}; `leader`: \{ `_id`: `string`; `firstName`: `string`; `image`: `string`; `lastName`: `string`; \}; `name`: `string`; `volunteers`: `object`[]; `volunteersRequired`: `null`; \} \| \{ `_id`: `string`; `assignments`: `never`[]; `createdAt`: `string`; `creator`: \{ `_id`: `string`; `firstName`: `string`; `image`: `null`; `lastName`: `string`; \}; `description`: `string`; `event`: \{ `_id`: `string`; \}; `leader`: \{ `_id`: `string`; `firstName`: `string`; `image`: `null`; `lastName`: `string`; \}; `name`: `string`; `volunteers`: `object`[]; `volunteersRequired`: `null`; \})[]; `organizations`: `undefined`; `removeEventVolunteerGroup`: `undefined`; `updateEventVolunteerGroup`: `undefined`; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `data`: `undefined`; `id`: `undefined`; `orderBy`: `null`; `where`: \{ `eventId`: `string`; `leaderName`: `string`; `name_contains`: `null`; \}; \}; \}; `result`: \{ `data`: \{ `createEventVolunteerGroup`: `undefined`; `getEventVolunteerGroups`: (\{ `_id`: `string`; `assignments`: `never`[]; `createdAt`: `string`; `creator`: \{ `_id`: `string`; `firstName`: `string`; `image`: `null`; `lastName`: `string`; \}; `description`: `string`; `event`: \{ `_id`: `string`; \}; `leader`: \{ `_id`: `string`; `firstName`: `string`; `image`: `string`; `lastName`: `string`; \}; `name`: `string`; `volunteers`: `object`[]; `volunteersRequired`: `null`; \} \| \{ `_id`: `string`; `assignments`: `never`[]; `createdAt`: `string`; `creator`: \{ `_id`: `string`; `firstName`: `string`; `image`: `null`; `lastName`: `string`; \}; `description`: `string`; `event`: \{ `_id`: `string`; \}; `leader`: \{ `_id`: `string`; `firstName`: `string`; `image`: `null`; `lastName`: `string`; \}; `name`: `string`; `volunteers`: `object`[]; `volunteersRequired`: `null`; \})[]; `organizations`: `undefined`; `removeEventVolunteerGroup`: `undefined`; `updateEventVolunteerGroup`: `undefined`; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `data`: `undefined`; `id`: `string`; `orderBy`: `undefined`; `where`: `undefined`; \}; \}; `result`: \{ `data`: \{ `createEventVolunteerGroup`: `undefined`; `getEventVolunteerGroups`: `undefined`; `organizations`: `object`[]; `removeEventVolunteerGroup`: `undefined`; `updateEventVolunteerGroup`: `undefined`; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `data`: \{ `description`: `string`; `eventId`: `string`; `leaderId`: `string`; `name`: `string`; `volunteersRequired`: `number`; `volunteerUserIds`: `string`[]; \}; `id`: `undefined`; `orderBy`: `undefined`; `where`: `undefined`; \}; \}; `result`: \{ `data`: \{ `createEventVolunteerGroup`: \{ `_id`: `string`; \}; `getEventVolunteerGroups`: `undefined`; `organizations`: `undefined`; `removeEventVolunteerGroup`: `undefined`; `updateEventVolunteerGroup`: `undefined`; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `data`: `undefined`; `id`: `string`; `orderBy`: `undefined`; `where`: `undefined`; \}; \}; `result`: \{ `data`: \{ `createEventVolunteerGroup`: `undefined`; `getEventVolunteerGroups`: `undefined`; `organizations`: `undefined`; `removeEventVolunteerGroup`: \{ `_id`: `string`; \}; `updateEventVolunteerGroup`: `undefined`; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `data`: \{ `description`: `string`; `eventId`: `string`; `leaderId`: `undefined`; `name`: `string`; `volunteersRequired`: `number`; `volunteerUserIds`: `undefined`; \}; `id`: `string`; `orderBy`: `undefined`; `where`: `undefined`; \}; \}; `result`: \{ `data`: \{ `createEventVolunteerGroup`: `undefined`; `getEventVolunteerGroups`: `undefined`; `organizations`: `undefined`; `removeEventVolunteerGroup`: `undefined`; `updateEventVolunteerGroup`: \{ `_id`: `string`; \}; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `data`: \{ `description`: `undefined`; `eventId`: `string`; `leaderId`: `undefined`; `name`: `undefined`; `volunteersRequired`: `undefined`; `volunteerUserIds`: `undefined`; \}; `id`: `string`; `orderBy`: `undefined`; `where`: `undefined`; \}; \}; `result`: \{ `data`: \{ `createEventVolunteerGroup`: `undefined`; `getEventVolunteerGroups`: `undefined`; `organizations`: `undefined`; `removeEventVolunteerGroup`: `undefined`; `updateEventVolunteerGroup`: \{ `_id`: `string`; \}; \}; \}; \})[] + +Defined in: [src/screens/EventVolunteers/VolunteerGroups/VolunteerGroups.mocks.ts:114](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/EventVolunteers/VolunteerGroups/VolunteerGroups.mocks.ts#L114) diff --git a/docs/docs/auto-docs/screens/EventVolunteers/VolunteerGroups/VolunteerGroups.mocks/variables/MOCKS_EMPTY.md b/docs/docs/auto-docs/screens/EventVolunteers/VolunteerGroups/VolunteerGroups.mocks/variables/MOCKS_EMPTY.md new file mode 100644 index 0000000000..cb0ed69724 --- /dev/null +++ b/docs/docs/auto-docs/screens/EventVolunteers/VolunteerGroups/VolunteerGroups.mocks/variables/MOCKS_EMPTY.md @@ -0,0 +1,57 @@ +[**talawa-admin**](../../../../../README.md) + +*** + +[talawa-admin](../../../../../modules.md) / [screens/EventVolunteers/VolunteerGroups/VolunteerGroups.mocks](../README.md) / MOCKS\_EMPTY + +# Variable: MOCKS\_EMPTY + +> `const` **MOCKS\_EMPTY**: `object`[] + +Defined in: [src/screens/EventVolunteers/VolunteerGroups/VolunteerGroups.mocks.ts:339](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/EventVolunteers/VolunteerGroups/VolunteerGroups.mocks.ts#L339) + +## Type declaration + +### request + +> **request**: `object` + +#### request.query + +> **query**: `DocumentNode` = `EVENT_VOLUNTEER_GROUP_LIST` + +#### request.variables + +> **variables**: `object` + +#### request.variables.orderBy + +> **orderBy**: `null` = `null` + +#### request.variables.where + +> **where**: `object` + +#### request.variables.where.eventId + +> **eventId**: `string` = `'eventId'` + +#### request.variables.where.leaderName + +> **leaderName**: `null` = `null` + +#### request.variables.where.name\_contains + +> **name\_contains**: `string` = `''` + +### result + +> **result**: `object` + +#### result.data + +> **data**: `object` + +#### result.data.getEventVolunteerGroups + +> **getEventVolunteerGroups**: `never`[] = `[]` diff --git a/docs/docs/auto-docs/screens/EventVolunteers/VolunteerGroups/VolunteerGroups.mocks/variables/MOCKS_ERROR.md b/docs/docs/auto-docs/screens/EventVolunteers/VolunteerGroups/VolunteerGroups.mocks/variables/MOCKS_ERROR.md new file mode 100644 index 0000000000..102ff917d7 --- /dev/null +++ b/docs/docs/auto-docs/screens/EventVolunteers/VolunteerGroups/VolunteerGroups.mocks/variables/MOCKS_ERROR.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../../../README.md) + +*** + +[talawa-admin](../../../../../modules.md) / [screens/EventVolunteers/VolunteerGroups/VolunteerGroups.mocks](../README.md) / MOCKS\_ERROR + +# Variable: MOCKS\_ERROR + +> `const` **MOCKS\_ERROR**: (\{ `error`: `Error`; `request`: \{ `query`: `DocumentNode`; `variables`: \{ `data`: `undefined`; `id`: `undefined`; `orderBy`: `null`; `where`: \{ `eventId`: `string`; `leaderName`: `null`; `name_contains`: `string`; \}; \}; \}; `result`: `undefined`; \} \| \{ `error`: `Error`; `request`: \{ `query`: `DocumentNode`; `variables`: \{ `data`: `undefined`; `id`: `string`; `orderBy`: `undefined`; `where`: `undefined`; \}; \}; `result`: `undefined`; \} \| \{ `error`: `undefined`; `request`: \{ `query`: `DocumentNode`; `variables`: \{ `data`: `undefined`; `id`: `string`; `orderBy`: `undefined`; `where`: `undefined`; \}; \}; `result`: \{ `data`: \{ `organizations`: `object`[]; \}; \}; \} \| \{ `error`: `Error`; `request`: \{ `query`: `DocumentNode`; `variables`: \{ `data`: \{ `description`: `string`; `eventId`: `string`; `leaderId`: `string`; `name`: `string`; `volunteersRequired`: `number`; `volunteerUserIds`: `string`[]; \}; `id`: `undefined`; `orderBy`: `undefined`; `where`: `undefined`; \}; \}; `result`: `undefined`; \} \| \{ `error`: `Error`; `request`: \{ `query`: `DocumentNode`; `variables`: \{ `data`: \{ `description`: `string`; `eventId`: `string`; `leaderId`: `undefined`; `name`: `string`; `volunteersRequired`: `number`; `volunteerUserIds`: `undefined`; \}; `id`: `string`; `orderBy`: `undefined`; `where`: `undefined`; \}; \}; `result`: `undefined`; \})[] + +Defined in: [src/screens/EventVolunteers/VolunteerGroups/VolunteerGroups.mocks.ts:360](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/EventVolunteers/VolunteerGroups/VolunteerGroups.mocks.ts#L360) diff --git a/docs/docs/auto-docs/screens/EventVolunteers/VolunteerGroups/VolunteerGroups/README.md b/docs/docs/auto-docs/screens/EventVolunteers/VolunteerGroups/VolunteerGroups/README.md new file mode 100644 index 0000000000..faf3f11e82 --- /dev/null +++ b/docs/docs/auto-docs/screens/EventVolunteers/VolunteerGroups/VolunteerGroups/README.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / screens/EventVolunteers/VolunteerGroups/VolunteerGroups + +# screens/EventVolunteers/VolunteerGroups/VolunteerGroups + +## Functions + +- [default](functions/default.md) diff --git a/docs/docs/auto-docs/screens/EventVolunteers/VolunteerGroups/VolunteerGroups/functions/default.md b/docs/docs/auto-docs/screens/EventVolunteers/VolunteerGroups/VolunteerGroups/functions/default.md new file mode 100644 index 0000000000..8e35884aaa --- /dev/null +++ b/docs/docs/auto-docs/screens/EventVolunteers/VolunteerGroups/VolunteerGroups/functions/default.md @@ -0,0 +1,20 @@ +[**talawa-admin**](../../../../../README.md) + +*** + +[talawa-admin](../../../../../modules.md) / [screens/EventVolunteers/VolunteerGroups/VolunteerGroups](../README.md) / default + +# Function: default() + +> **default**(): `JSX.Element` + +Defined in: [src/screens/EventVolunteers/VolunteerGroups/VolunteerGroups.tsx:58](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/EventVolunteers/VolunteerGroups/VolunteerGroups.tsx#L58) + +Component for managing volunteer groups for an event. +This component allows users to view, filter, sort, and create action items. It also provides a modal for creating and editing action items. + +## Returns + +`JSX.Element` + +The rendered component. diff --git a/docs/docs/auto-docs/screens/EventVolunteers/Volunteers/VolunteerCreateModal/README.md b/docs/docs/auto-docs/screens/EventVolunteers/Volunteers/VolunteerCreateModal/README.md new file mode 100644 index 0000000000..6457ea9675 --- /dev/null +++ b/docs/docs/auto-docs/screens/EventVolunteers/Volunteers/VolunteerCreateModal/README.md @@ -0,0 +1,15 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / screens/EventVolunteers/Volunteers/VolunteerCreateModal + +# screens/EventVolunteers/Volunteers/VolunteerCreateModal + +## Interfaces + +- [InterfaceVolunteerCreateModal](interfaces/InterfaceVolunteerCreateModal.md) + +## Functions + +- [default](functions/default.md) diff --git a/docs/docs/auto-docs/screens/EventVolunteers/Volunteers/VolunteerCreateModal/functions/default.md b/docs/docs/auto-docs/screens/EventVolunteers/Volunteers/VolunteerCreateModal/functions/default.md new file mode 100644 index 0000000000..8e400c77ee --- /dev/null +++ b/docs/docs/auto-docs/screens/EventVolunteers/Volunteers/VolunteerCreateModal/functions/default.md @@ -0,0 +1,49 @@ +[**talawa-admin**](../../../../../README.md) + +*** + +[talawa-admin](../../../../../modules.md) / [screens/EventVolunteers/Volunteers/VolunteerCreateModal](../README.md) / default + +# Function: default() + +> **default**(`props`, `deprecatedLegacyContext`?): `ReactNode` + +Defined in: [src/screens/EventVolunteers/Volunteers/VolunteerCreateModal.tsx:48](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/EventVolunteers/Volunteers/VolunteerCreateModal.tsx#L48) + +A modal dialog for add a volunteer for an event. + +## Parameters + +### props + +[`InterfaceVolunteerCreateModal`](../interfaces/InterfaceVolunteerCreateModal.md) + +### deprecatedLegacyContext? + +`any` + +**Deprecated** + +**See** + +[React Docs](https://legacy.reactjs.org/docs/legacy-context.html#referencing-context-in-lifecycle-methods) + +## Returns + +`ReactNode` + +The rendered modal component. + +The `VolunteerCreateModal` component displays a form within a modal dialog for adding a volunteer. +It includes fields for selecting user. + +The modal includes: +- A header with a title and a close button. +- A form with: +- A multi-select dropdown for selecting user be added as volunteer. +- A submit button to create or update the pledge. + +On form submission, the component: +- Calls `addVolunteer` mutation to add a new Volunteer. + +Success or error messages are displayed using toast notifications based on the result of the mutation. diff --git a/docs/docs/auto-docs/screens/EventVolunteers/Volunteers/VolunteerCreateModal/interfaces/InterfaceVolunteerCreateModal.md b/docs/docs/auto-docs/screens/EventVolunteers/Volunteers/VolunteerCreateModal/interfaces/InterfaceVolunteerCreateModal.md new file mode 100644 index 0000000000..134b17318a --- /dev/null +++ b/docs/docs/auto-docs/screens/EventVolunteers/Volunteers/VolunteerCreateModal/interfaces/InterfaceVolunteerCreateModal.md @@ -0,0 +1,57 @@ +[**talawa-admin**](../../../../../README.md) + +*** + +[talawa-admin](../../../../../modules.md) / [screens/EventVolunteers/Volunteers/VolunteerCreateModal](../README.md) / InterfaceVolunteerCreateModal + +# Interface: InterfaceVolunteerCreateModal + +Defined in: [src/screens/EventVolunteers/Volunteers/VolunteerCreateModal.tsx:14](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/EventVolunteers/Volunteers/VolunteerCreateModal.tsx#L14) + +## Properties + +### eventId + +> **eventId**: `string` + +Defined in: [src/screens/EventVolunteers/Volunteers/VolunteerCreateModal.tsx:17](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/EventVolunteers/Volunteers/VolunteerCreateModal.tsx#L17) + +*** + +### hide() + +> **hide**: () => `void` + +Defined in: [src/screens/EventVolunteers/Volunteers/VolunteerCreateModal.tsx:16](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/EventVolunteers/Volunteers/VolunteerCreateModal.tsx#L16) + +#### Returns + +`void` + +*** + +### isOpen + +> **isOpen**: `boolean` + +Defined in: [src/screens/EventVolunteers/Volunteers/VolunteerCreateModal.tsx:15](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/EventVolunteers/Volunteers/VolunteerCreateModal.tsx#L15) + +*** + +### orgId + +> **orgId**: `string` + +Defined in: [src/screens/EventVolunteers/Volunteers/VolunteerCreateModal.tsx:18](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/EventVolunteers/Volunteers/VolunteerCreateModal.tsx#L18) + +*** + +### refetchVolunteers() + +> **refetchVolunteers**: () => `void` + +Defined in: [src/screens/EventVolunteers/Volunteers/VolunteerCreateModal.tsx:19](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/EventVolunteers/Volunteers/VolunteerCreateModal.tsx#L19) + +#### Returns + +`void` diff --git a/docs/docs/auto-docs/screens/EventVolunteers/Volunteers/VolunteerDeleteModal/README.md b/docs/docs/auto-docs/screens/EventVolunteers/Volunteers/VolunteerDeleteModal/README.md new file mode 100644 index 0000000000..b8c4b05c6f --- /dev/null +++ b/docs/docs/auto-docs/screens/EventVolunteers/Volunteers/VolunteerDeleteModal/README.md @@ -0,0 +1,15 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / screens/EventVolunteers/Volunteers/VolunteerDeleteModal + +# screens/EventVolunteers/Volunteers/VolunteerDeleteModal + +## Interfaces + +- [InterfaceDeleteVolunteerModal](interfaces/InterfaceDeleteVolunteerModal.md) + +## Functions + +- [default](functions/default.md) diff --git a/docs/docs/auto-docs/screens/EventVolunteers/Volunteers/VolunteerDeleteModal/functions/default.md b/docs/docs/auto-docs/screens/EventVolunteers/Volunteers/VolunteerDeleteModal/functions/default.md new file mode 100644 index 0000000000..6e5376ba6d --- /dev/null +++ b/docs/docs/auto-docs/screens/EventVolunteers/Volunteers/VolunteerDeleteModal/functions/default.md @@ -0,0 +1,48 @@ +[**talawa-admin**](../../../../../README.md) + +*** + +[talawa-admin](../../../../../modules.md) / [screens/EventVolunteers/Volunteers/VolunteerDeleteModal](../README.md) / default + +# Function: default() + +> **default**(`props`, `deprecatedLegacyContext`?): `ReactNode` + +Defined in: [src/screens/EventVolunteers/Volunteers/VolunteerDeleteModal.tsx:42](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/EventVolunteers/Volunteers/VolunteerDeleteModal.tsx#L42) + +A modal dialog for confirming the deletion of a volunteer. + +## Parameters + +### props + +[`InterfaceDeleteVolunteerModal`](../interfaces/InterfaceDeleteVolunteerModal.md) + +### deprecatedLegacyContext? + +`any` + +**Deprecated** + +**See** + +[React Docs](https://legacy.reactjs.org/docs/legacy-context.html#referencing-context-in-lifecycle-methods) + +## Returns + +`ReactNode` + +The rendered modal component. + +The `VolunteerDeleteModal` component displays a confirmation dialog when a user attempts to delete a volunteer. +It allows the user to either confirm or cancel the deletion. +On confirmation, the `deleteVolunteer` mutation is called to remove the pledge from the database, +and the `refetchVolunteers` function is invoked to update the list of volunteers. +A success or error toast notification is shown based on the result of the deletion operation. + +The modal includes: +- A header with a title and a close button. +- A body with a message asking for confirmation. +- A footer with "Yes" and "No" buttons to confirm or cancel the deletion. + +The `deleteVolunteer` mutation is used to perform the deletion operation. diff --git a/docs/docs/auto-docs/screens/EventVolunteers/Volunteers/VolunteerDeleteModal/interfaces/InterfaceDeleteVolunteerModal.md b/docs/docs/auto-docs/screens/EventVolunteers/Volunteers/VolunteerDeleteModal/interfaces/InterfaceDeleteVolunteerModal.md new file mode 100644 index 0000000000..05be963cb9 --- /dev/null +++ b/docs/docs/auto-docs/screens/EventVolunteers/Volunteers/VolunteerDeleteModal/interfaces/InterfaceDeleteVolunteerModal.md @@ -0,0 +1,49 @@ +[**talawa-admin**](../../../../../README.md) + +*** + +[talawa-admin](../../../../../modules.md) / [screens/EventVolunteers/Volunteers/VolunteerDeleteModal](../README.md) / InterfaceDeleteVolunteerModal + +# Interface: InterfaceDeleteVolunteerModal + +Defined in: [src/screens/EventVolunteers/Volunteers/VolunteerDeleteModal.tsx:10](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/EventVolunteers/Volunteers/VolunteerDeleteModal.tsx#L10) + +## Properties + +### hide() + +> **hide**: () => `void` + +Defined in: [src/screens/EventVolunteers/Volunteers/VolunteerDeleteModal.tsx:12](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/EventVolunteers/Volunteers/VolunteerDeleteModal.tsx#L12) + +#### Returns + +`void` + +*** + +### isOpen + +> **isOpen**: `boolean` + +Defined in: [src/screens/EventVolunteers/Volunteers/VolunteerDeleteModal.tsx:11](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/EventVolunteers/Volunteers/VolunteerDeleteModal.tsx#L11) + +*** + +### refetchVolunteers() + +> **refetchVolunteers**: () => `void` + +Defined in: [src/screens/EventVolunteers/Volunteers/VolunteerDeleteModal.tsx:14](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/EventVolunteers/Volunteers/VolunteerDeleteModal.tsx#L14) + +#### Returns + +`void` + +*** + +### volunteer + +> **volunteer**: [`InterfaceEventVolunteerInfo`](../../../../../utils/interfaces/interfaces/InterfaceEventVolunteerInfo.md) + +Defined in: [src/screens/EventVolunteers/Volunteers/VolunteerDeleteModal.tsx:13](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/EventVolunteers/Volunteers/VolunteerDeleteModal.tsx#L13) diff --git a/docs/docs/auto-docs/screens/EventVolunteers/Volunteers/VolunteerViewModal/README.md b/docs/docs/auto-docs/screens/EventVolunteers/Volunteers/VolunteerViewModal/README.md new file mode 100644 index 0000000000..8546213b41 --- /dev/null +++ b/docs/docs/auto-docs/screens/EventVolunteers/Volunteers/VolunteerViewModal/README.md @@ -0,0 +1,15 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / screens/EventVolunteers/Volunteers/VolunteerViewModal + +# screens/EventVolunteers/Volunteers/VolunteerViewModal + +## Interfaces + +- [InterfaceVolunteerViewModal](interfaces/InterfaceVolunteerViewModal.md) + +## Functions + +- [default](functions/default.md) diff --git a/docs/docs/auto-docs/screens/EventVolunteers/Volunteers/VolunteerViewModal/functions/default.md b/docs/docs/auto-docs/screens/EventVolunteers/Volunteers/VolunteerViewModal/functions/default.md new file mode 100644 index 0000000000..c0484c02e7 --- /dev/null +++ b/docs/docs/auto-docs/screens/EventVolunteers/Volunteers/VolunteerViewModal/functions/default.md @@ -0,0 +1,41 @@ +[**talawa-admin**](../../../../../README.md) + +*** + +[talawa-admin](../../../../../modules.md) / [screens/EventVolunteers/Volunteers/VolunteerViewModal](../README.md) / default + +# Function: default() + +> **default**(`props`, `deprecatedLegacyContext`?): `ReactNode` + +Defined in: [src/screens/EventVolunteers/Volunteers/VolunteerViewModal.tsx:42](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/EventVolunteers/Volunteers/VolunteerViewModal.tsx#L42) + +A modal dialog for viewing volunteer information for an event. + +## Parameters + +### props + +[`InterfaceVolunteerViewModal`](../interfaces/InterfaceVolunteerViewModal.md) + +### deprecatedLegacyContext? + +`any` + +**Deprecated** + +**See** + +[React Docs](https://legacy.reactjs.org/docs/legacy-context.html#referencing-context-in-lifecycle-methods) + +## Returns + +`ReactNode` + +The rendered modal component. + +The `VolunteerViewModal` component displays all the fields of a volunteer in a modal dialog. + +The modal includes: +- A header with a title and a close button. +- fields for volunteer name, status, hours volunteered, groups, and assignments. diff --git a/docs/docs/auto-docs/screens/EventVolunteers/Volunteers/VolunteerViewModal/interfaces/InterfaceVolunteerViewModal.md b/docs/docs/auto-docs/screens/EventVolunteers/Volunteers/VolunteerViewModal/interfaces/InterfaceVolunteerViewModal.md new file mode 100644 index 0000000000..1477878187 --- /dev/null +++ b/docs/docs/auto-docs/screens/EventVolunteers/Volunteers/VolunteerViewModal/interfaces/InterfaceVolunteerViewModal.md @@ -0,0 +1,37 @@ +[**talawa-admin**](../../../../../README.md) + +*** + +[talawa-admin](../../../../../modules.md) / [screens/EventVolunteers/Volunteers/VolunteerViewModal](../README.md) / InterfaceVolunteerViewModal + +# Interface: InterfaceVolunteerViewModal + +Defined in: [src/screens/EventVolunteers/Volunteers/VolunteerViewModal.tsx:20](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/EventVolunteers/Volunteers/VolunteerViewModal.tsx#L20) + +## Properties + +### hide() + +> **hide**: () => `void` + +Defined in: [src/screens/EventVolunteers/Volunteers/VolunteerViewModal.tsx:22](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/EventVolunteers/Volunteers/VolunteerViewModal.tsx#L22) + +#### Returns + +`void` + +*** + +### isOpen + +> **isOpen**: `boolean` + +Defined in: [src/screens/EventVolunteers/Volunteers/VolunteerViewModal.tsx:21](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/EventVolunteers/Volunteers/VolunteerViewModal.tsx#L21) + +*** + +### volunteer + +> **volunteer**: [`InterfaceEventVolunteerInfo`](../../../../../utils/interfaces/interfaces/InterfaceEventVolunteerInfo.md) + +Defined in: [src/screens/EventVolunteers/Volunteers/VolunteerViewModal.tsx:23](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/EventVolunteers/Volunteers/VolunteerViewModal.tsx#L23) diff --git a/docs/docs/auto-docs/screens/EventVolunteers/Volunteers/Volunteers.mocks/README.md b/docs/docs/auto-docs/screens/EventVolunteers/Volunteers/Volunteers.mocks/README.md new file mode 100644 index 0000000000..cc8ac8f4e0 --- /dev/null +++ b/docs/docs/auto-docs/screens/EventVolunteers/Volunteers/Volunteers.mocks/README.md @@ -0,0 +1,13 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / screens/EventVolunteers/Volunteers/Volunteers.mocks + +# screens/EventVolunteers/Volunteers/Volunteers.mocks + +## Variables + +- [MOCKS](variables/MOCKS.md) +- [MOCKS\_EMPTY](variables/MOCKS_EMPTY.md) +- [MOCKS\_ERROR](variables/MOCKS_ERROR.md) diff --git a/docs/docs/auto-docs/screens/EventVolunteers/Volunteers/Volunteers.mocks/variables/MOCKS.md b/docs/docs/auto-docs/screens/EventVolunteers/Volunteers/Volunteers.mocks/variables/MOCKS.md new file mode 100644 index 0000000000..0567d15655 --- /dev/null +++ b/docs/docs/auto-docs/screens/EventVolunteers/Volunteers/Volunteers.mocks/variables/MOCKS.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../../../README.md) + +*** + +[talawa-admin](../../../../../modules.md) / [screens/EventVolunteers/Volunteers/Volunteers.mocks](../README.md) / MOCKS + +# Variable: MOCKS + +> `const` **MOCKS**: (\{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `data`: `undefined`; `id`: `undefined`; `orderBy`: `null`; `where`: \{ `eventId`: `string`; `hasAccepted`: `undefined`; `name_contains`: `string`; \}; \}; \}; `result`: \{ `data`: \{ `createEventVolunteer`: `undefined`; `getEventVolunteers`: (\{ `_id`: `string`; `assignments`: `never`[]; `groups`: `object`[]; `hasAccepted`: `boolean`; `hoursVolunteered`: `number`; `user`: \{ `_id`: `string`; `firstName`: `string`; `image`: `null`; `lastName`: `string`; \}; \} \| \{ `_id`: `string`; `assignments`: `never`[]; `groups`: `never`[]; `hasAccepted`: `boolean`; `hoursVolunteered`: `null`; `user`: \{ `_id`: `string`; `firstName`: `string`; `image`: `string`; `lastName`: `string`; \}; \})[]; `organizations`: `undefined`; `removeEventVolunteer`: `undefined`; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `data`: `undefined`; `id`: `undefined`; `orderBy`: `string`; `where`: \{ `eventId`: `string`; `hasAccepted`: `undefined`; `name_contains`: `string`; \}; \}; \}; `result`: \{ `data`: \{ `createEventVolunteer`: `undefined`; `getEventVolunteers`: (\{ `_id`: `string`; `assignments`: `never`[]; `groups`: `object`[]; `hasAccepted`: `boolean`; `hoursVolunteered`: `number`; `user`: \{ `_id`: `string`; `firstName`: `string`; `image`: `null`; `lastName`: `string`; \}; \} \| \{ `_id`: `string`; `assignments`: `never`[]; `groups`: `never`[]; `hasAccepted`: `boolean`; `hoursVolunteered`: `null`; `user`: \{ `_id`: `string`; `firstName`: `string`; `image`: `string`; `lastName`: `string`; \}; \})[]; `organizations`: `undefined`; `removeEventVolunteer`: `undefined`; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `data`: `undefined`; `id`: `undefined`; `orderBy`: `null`; `where`: \{ `eventId`: `string`; `hasAccepted`: `boolean`; `name_contains`: `string`; \}; \}; \}; `result`: \{ `data`: \{ `createEventVolunteer`: `undefined`; `getEventVolunteers`: `object`[]; `organizations`: `undefined`; `removeEventVolunteer`: `undefined`; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `data`: `undefined`; `id`: `undefined`; `orderBy`: `null`; `where`: \{ `eventId`: `string`; `hasAccepted`: `boolean`; `name_contains`: `string`; \}; \}; \}; `result`: \{ `data`: \{ `createEventVolunteer`: `undefined`; `getEventVolunteers`: `object`[]; `organizations`: `undefined`; `removeEventVolunteer`: `undefined`; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `data`: `undefined`; `id`: `string`; `orderBy`: `undefined`; `where`: `undefined`; \}; \}; `result`: \{ `data`: \{ `createEventVolunteer`: `undefined`; `getEventVolunteers`: `undefined`; `organizations`: `undefined`; `removeEventVolunteer`: \{ `_id`: `string`; \}; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `data`: `undefined`; `id`: `string`; `orderBy`: `undefined`; `where`: `undefined`; \}; \}; `result`: \{ `data`: \{ `createEventVolunteer`: `undefined`; `getEventVolunteers`: `undefined`; `organizations`: `object`[]; `removeEventVolunteer`: `undefined`; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `data`: \{ `eventId`: `string`; `userId`: `string`; \}; `id`: `undefined`; `orderBy`: `undefined`; `where`: `undefined`; \}; \}; `result`: \{ `data`: \{ `createEventVolunteer`: \{ `_id`: `string`; \}; `getEventVolunteers`: `undefined`; `organizations`: `undefined`; `removeEventVolunteer`: `undefined`; \}; \}; \})[] + +Defined in: [src/screens/EventVolunteers/Volunteers/Volunteers.mocks.ts:46](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/EventVolunteers/Volunteers/Volunteers.mocks.ts#L46) diff --git a/docs/docs/auto-docs/screens/EventVolunteers/Volunteers/Volunteers.mocks/variables/MOCKS_EMPTY.md b/docs/docs/auto-docs/screens/EventVolunteers/Volunteers/Volunteers.mocks/variables/MOCKS_EMPTY.md new file mode 100644 index 0000000000..372df01bac --- /dev/null +++ b/docs/docs/auto-docs/screens/EventVolunteers/Volunteers/Volunteers.mocks/variables/MOCKS_EMPTY.md @@ -0,0 +1,53 @@ +[**talawa-admin**](../../../../../README.md) + +*** + +[talawa-admin](../../../../../modules.md) / [screens/EventVolunteers/Volunteers/Volunteers.mocks](../README.md) / MOCKS\_EMPTY + +# Variable: MOCKS\_EMPTY + +> `const` **MOCKS\_EMPTY**: `object`[] + +Defined in: [src/screens/EventVolunteers/Volunteers/Volunteers.mocks.ts:288](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/EventVolunteers/Volunteers/Volunteers.mocks.ts#L288) + +## Type declaration + +### request + +> **request**: `object` + +#### request.query + +> **query**: `DocumentNode` = `EVENT_VOLUNTEER_LIST` + +#### request.variables + +> **variables**: `object` + +#### request.variables.orderBy + +> **orderBy**: `null` = `null` + +#### request.variables.where + +> **where**: `object` + +#### request.variables.where.eventId + +> **eventId**: `string` = `'eventId'` + +#### request.variables.where.name\_contains + +> **name\_contains**: `string` = `''` + +### result + +> **result**: `object` + +#### result.data + +> **data**: `object` + +#### result.data.getEventVolunteers + +> **getEventVolunteers**: `never`[] = `[]` diff --git a/docs/docs/auto-docs/screens/EventVolunteers/Volunteers/Volunteers.mocks/variables/MOCKS_ERROR.md b/docs/docs/auto-docs/screens/EventVolunteers/Volunteers/Volunteers.mocks/variables/MOCKS_ERROR.md new file mode 100644 index 0000000000..558dd184b6 --- /dev/null +++ b/docs/docs/auto-docs/screens/EventVolunteers/Volunteers/Volunteers.mocks/variables/MOCKS_ERROR.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../../../README.md) + +*** + +[talawa-admin](../../../../../modules.md) / [screens/EventVolunteers/Volunteers/Volunteers.mocks](../README.md) / MOCKS\_ERROR + +# Variable: MOCKS\_ERROR + +> `const` **MOCKS\_ERROR**: (\{ `error`: `Error`; `request`: \{ `query`: `DocumentNode`; `variables`: \{ `data`: `undefined`; `id`: `undefined`; `orderBy`: `null`; `where`: \{ `eventId`: `string`; `name_contains`: `string`; \}; \}; \}; `result`: `undefined`; \} \| \{ `error`: `Error`; `request`: \{ `query`: `DocumentNode`; `variables`: \{ `data`: `undefined`; `id`: `string`; `orderBy`: `undefined`; `where`: `undefined`; \}; \}; `result`: `undefined`; \} \| \{ `error`: `undefined`; `request`: \{ `query`: `DocumentNode`; `variables`: \{ `data`: `undefined`; `id`: `string`; `orderBy`: `undefined`; `where`: `undefined`; \}; \}; `result`: \{ `data`: \{ `organizations`: `object`[]; \}; \}; \} \| \{ `error`: `Error`; `request`: \{ `query`: `DocumentNode`; `variables`: \{ `data`: \{ `eventId`: `string`; `userId`: `string`; \}; `id`: `undefined`; `orderBy`: `undefined`; `where`: `undefined`; \}; \}; `result`: `undefined`; \})[] + +Defined in: [src/screens/EventVolunteers/Volunteers/Volunteers.mocks.ts:217](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/EventVolunteers/Volunteers/Volunteers.mocks.ts#L217) diff --git a/docs/docs/auto-docs/screens/EventVolunteers/Volunteers/Volunteers/README.md b/docs/docs/auto-docs/screens/EventVolunteers/Volunteers/Volunteers/README.md new file mode 100644 index 0000000000..d4454ffc42 --- /dev/null +++ b/docs/docs/auto-docs/screens/EventVolunteers/Volunteers/Volunteers/README.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / screens/EventVolunteers/Volunteers/Volunteers + +# screens/EventVolunteers/Volunteers/Volunteers + +## Functions + +- [default](functions/default.md) diff --git a/docs/docs/auto-docs/screens/EventVolunteers/Volunteers/Volunteers/functions/default.md b/docs/docs/auto-docs/screens/EventVolunteers/Volunteers/Volunteers/functions/default.md new file mode 100644 index 0000000000..dd0c3a5a14 --- /dev/null +++ b/docs/docs/auto-docs/screens/EventVolunteers/Volunteers/Volunteers/functions/default.md @@ -0,0 +1,21 @@ +[**talawa-admin**](../../../../../README.md) + +*** + +[talawa-admin](../../../../../modules.md) / [screens/EventVolunteers/Volunteers/Volunteers](../README.md) / default + +# Function: default() + +> **default**(): `JSX.Element` + +Defined in: [src/screens/EventVolunteers/Volunteers/Volunteers.tsx:65](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/EventVolunteers/Volunteers/Volunteers.tsx#L65) + +Component for managing and displaying event volunteers related to an event. + +This component allows users to view, filter, sort, and create volunteers. It also handles fetching and displaying related data such as volunteer acceptance status, etc. + +## Returns + +`JSX.Element` + +The rendered component. diff --git a/docs/docs/auto-docs/screens/ForgotPassword/ForgotPassword/README.md b/docs/docs/auto-docs/screens/ForgotPassword/ForgotPassword/README.md new file mode 100644 index 0000000000..242cc67fcc --- /dev/null +++ b/docs/docs/auto-docs/screens/ForgotPassword/ForgotPassword/README.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / screens/ForgotPassword/ForgotPassword + +# screens/ForgotPassword/ForgotPassword + +## Functions + +- [default](functions/default.md) diff --git a/docs/docs/auto-docs/screens/ForgotPassword/ForgotPassword/functions/default.md b/docs/docs/auto-docs/screens/ForgotPassword/ForgotPassword/functions/default.md new file mode 100644 index 0000000000..331ac4ed69 --- /dev/null +++ b/docs/docs/auto-docs/screens/ForgotPassword/ForgotPassword/functions/default.md @@ -0,0 +1,29 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [screens/ForgotPassword/ForgotPassword](../README.md) / default + +# Function: default() + +> **default**(): `Element` + +Defined in: [src/screens/ForgotPassword/ForgotPassword.tsx:36](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/ForgotPassword/ForgotPassword.tsx#L36) + +`ForgotPassword` component allows users to reset their password. + +It provides two stages: +1. Entering the registered email to receive an OTP. +2. Entering the OTP and new password to reset the password. + +## Returns + +`Element` + +JSX.Element - The `ForgotPassword` component. + +## Example + +```tsx + +``` diff --git a/docs/docs/auto-docs/screens/FundCampaignPledge/FundCampaignPledge/README.md b/docs/docs/auto-docs/screens/FundCampaignPledge/FundCampaignPledge/README.md new file mode 100644 index 0000000000..6d4032a000 --- /dev/null +++ b/docs/docs/auto-docs/screens/FundCampaignPledge/FundCampaignPledge/README.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / screens/FundCampaignPledge/FundCampaignPledge + +# screens/FundCampaignPledge/FundCampaignPledge + +## Functions + +- [default](functions/default.md) diff --git a/docs/docs/auto-docs/screens/FundCampaignPledge/FundCampaignPledge/functions/default.md b/docs/docs/auto-docs/screens/FundCampaignPledge/FundCampaignPledge/functions/default.md new file mode 100644 index 0000000000..c419289a27 --- /dev/null +++ b/docs/docs/auto-docs/screens/FundCampaignPledge/FundCampaignPledge/functions/default.md @@ -0,0 +1,15 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [screens/FundCampaignPledge/FundCampaignPledge](../README.md) / default + +# Function: default() + +> **default**(): `Element` + +Defined in: [src/screens/FundCampaignPledge/FundCampaignPledge.tsx:62](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/FundCampaignPledge/FundCampaignPledge.tsx#L62) + +## Returns + +`Element` diff --git a/docs/docs/auto-docs/screens/FundCampaignPledge/PledgeDeleteModal/README.md b/docs/docs/auto-docs/screens/FundCampaignPledge/PledgeDeleteModal/README.md new file mode 100644 index 0000000000..af92bb2e5a --- /dev/null +++ b/docs/docs/auto-docs/screens/FundCampaignPledge/PledgeDeleteModal/README.md @@ -0,0 +1,15 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / screens/FundCampaignPledge/PledgeDeleteModal + +# screens/FundCampaignPledge/PledgeDeleteModal + +## Interfaces + +- [InterfaceDeletePledgeModal](interfaces/InterfaceDeletePledgeModal.md) + +## Functions + +- [default](functions/default.md) diff --git a/docs/docs/auto-docs/screens/FundCampaignPledge/PledgeDeleteModal/functions/default.md b/docs/docs/auto-docs/screens/FundCampaignPledge/PledgeDeleteModal/functions/default.md new file mode 100644 index 0000000000..8f73c3aaae --- /dev/null +++ b/docs/docs/auto-docs/screens/FundCampaignPledge/PledgeDeleteModal/functions/default.md @@ -0,0 +1,48 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [screens/FundCampaignPledge/PledgeDeleteModal](../README.md) / default + +# Function: default() + +> **default**(`props`, `deprecatedLegacyContext`?): `ReactNode` + +Defined in: [src/screens/FundCampaignPledge/PledgeDeleteModal.tsx:42](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/FundCampaignPledge/PledgeDeleteModal.tsx#L42) + +A modal dialog for confirming the deletion of a pledge. + +## Parameters + +### props + +[`InterfaceDeletePledgeModal`](../interfaces/InterfaceDeletePledgeModal.md) + +### deprecatedLegacyContext? + +`any` + +**Deprecated** + +**See** + +[React Docs](https://legacy.reactjs.org/docs/legacy-context.html#referencing-context-in-lifecycle-methods) + +## Returns + +`ReactNode` + +The rendered modal component. + +The `PledgeDeleteModal` component displays a confirmation dialog when a user attempts to delete a pledge. +It allows the user to either confirm or cancel the deletion. +On confirmation, the `deletePledge` mutation is called to remove the pledge from the database, +and the `refetchPledge` function is invoked to update the list of pledges. +A success or error toast notification is shown based on the result of the deletion operation. + +The modal includes: +- A header with a title and a close button. +- A body with a message asking for confirmation. +- A footer with "Yes" and "No" buttons to confirm or cancel the deletion. + +The `deletePledge` mutation is used to perform the deletion operation. diff --git a/docs/docs/auto-docs/screens/FundCampaignPledge/PledgeDeleteModal/interfaces/InterfaceDeletePledgeModal.md b/docs/docs/auto-docs/screens/FundCampaignPledge/PledgeDeleteModal/interfaces/InterfaceDeletePledgeModal.md new file mode 100644 index 0000000000..5f96eb37d8 --- /dev/null +++ b/docs/docs/auto-docs/screens/FundCampaignPledge/PledgeDeleteModal/interfaces/InterfaceDeletePledgeModal.md @@ -0,0 +1,49 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [screens/FundCampaignPledge/PledgeDeleteModal](../README.md) / InterfaceDeletePledgeModal + +# Interface: InterfaceDeletePledgeModal + +Defined in: [src/screens/FundCampaignPledge/PledgeDeleteModal.tsx:10](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/FundCampaignPledge/PledgeDeleteModal.tsx#L10) + +## Properties + +### hide() + +> **hide**: () => `void` + +Defined in: [src/screens/FundCampaignPledge/PledgeDeleteModal.tsx:12](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/FundCampaignPledge/PledgeDeleteModal.tsx#L12) + +#### Returns + +`void` + +*** + +### isOpen + +> **isOpen**: `boolean` + +Defined in: [src/screens/FundCampaignPledge/PledgeDeleteModal.tsx:11](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/FundCampaignPledge/PledgeDeleteModal.tsx#L11) + +*** + +### pledge + +> **pledge**: `null` \| [`InterfacePledgeInfo`](../../../../utils/interfaces/interfaces/InterfacePledgeInfo.md) + +Defined in: [src/screens/FundCampaignPledge/PledgeDeleteModal.tsx:13](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/FundCampaignPledge/PledgeDeleteModal.tsx#L13) + +*** + +### refetchPledge() + +> **refetchPledge**: () => `void` + +Defined in: [src/screens/FundCampaignPledge/PledgeDeleteModal.tsx:14](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/FundCampaignPledge/PledgeDeleteModal.tsx#L14) + +#### Returns + +`void` diff --git a/docs/docs/auto-docs/screens/FundCampaignPledge/PledgeModal/README.md b/docs/docs/auto-docs/screens/FundCampaignPledge/PledgeModal/README.md new file mode 100644 index 0000000000..0e89faf3e6 --- /dev/null +++ b/docs/docs/auto-docs/screens/FundCampaignPledge/PledgeModal/README.md @@ -0,0 +1,15 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / screens/FundCampaignPledge/PledgeModal + +# screens/FundCampaignPledge/PledgeModal + +## Interfaces + +- [InterfacePledgeModal](interfaces/InterfacePledgeModal.md) + +## Functions + +- [default](functions/default.md) diff --git a/docs/docs/auto-docs/screens/FundCampaignPledge/PledgeModal/functions/default.md b/docs/docs/auto-docs/screens/FundCampaignPledge/PledgeModal/functions/default.md new file mode 100644 index 0000000000..d2296722f0 --- /dev/null +++ b/docs/docs/auto-docs/screens/FundCampaignPledge/PledgeModal/functions/default.md @@ -0,0 +1,53 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [screens/FundCampaignPledge/PledgeModal](../README.md) / default + +# Function: default() + +> **default**(`props`, `deprecatedLegacyContext`?): `ReactNode` + +Defined in: [src/screens/FundCampaignPledge/PledgeModal.tsx:72](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/FundCampaignPledge/PledgeModal.tsx#L72) + +A modal dialog for creating or editing a pledge. + +## Parameters + +### props + +[`InterfacePledgeModal`](../interfaces/InterfacePledgeModal.md) + +### deprecatedLegacyContext? + +`any` + +**Deprecated** + +**See** + +[React Docs](https://legacy.reactjs.org/docs/legacy-context.html#referencing-context-in-lifecycle-methods) + +## Returns + +`ReactNode` + +The rendered modal component. + +The `PledgeModal` component displays a form within a modal dialog for creating or editing a pledge. +It includes fields for selecting users, entering an amount, choosing a currency, and setting start and end dates for the pledge. + +The modal includes: +- A header with a title indicating the current mode (create or edit) and a close button. +- A form with: + - A multi-select dropdown for selecting users to participate in the pledge. + - Date pickers for selecting the start and end dates of the pledge. + - A dropdown for selecting the currency of the pledge amount. + - An input field for entering the pledge amount. +- A submit button to create or update the pledge. + +On form submission, the component either: +- Calls `updatePledge` mutation to update an existing pledge, or +- Calls `createPledge` mutation to create a new pledge. + +Success or error messages are displayed using toast notifications based on the result of the mutation. diff --git a/docs/docs/auto-docs/screens/FundCampaignPledge/PledgeModal/interfaces/InterfacePledgeModal.md b/docs/docs/auto-docs/screens/FundCampaignPledge/PledgeModal/interfaces/InterfacePledgeModal.md new file mode 100644 index 0000000000..f7561c2c72 --- /dev/null +++ b/docs/docs/auto-docs/screens/FundCampaignPledge/PledgeModal/interfaces/InterfacePledgeModal.md @@ -0,0 +1,81 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [screens/FundCampaignPledge/PledgeModal](../README.md) / InterfacePledgeModal + +# Interface: InterfacePledgeModal + +Defined in: [src/screens/FundCampaignPledge/PledgeModal.tsx:28](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/FundCampaignPledge/PledgeModal.tsx#L28) + +## Properties + +### campaignId + +> **campaignId**: `string` + +Defined in: [src/screens/FundCampaignPledge/PledgeModal.tsx:31](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/FundCampaignPledge/PledgeModal.tsx#L31) + +*** + +### endDate + +> **endDate**: `Date` + +Defined in: [src/screens/FundCampaignPledge/PledgeModal.tsx:35](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/FundCampaignPledge/PledgeModal.tsx#L35) + +*** + +### hide() + +> **hide**: () => `void` + +Defined in: [src/screens/FundCampaignPledge/PledgeModal.tsx:30](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/FundCampaignPledge/PledgeModal.tsx#L30) + +#### Returns + +`void` + +*** + +### isOpen + +> **isOpen**: `boolean` + +Defined in: [src/screens/FundCampaignPledge/PledgeModal.tsx:29](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/FundCampaignPledge/PledgeModal.tsx#L29) + +*** + +### mode + +> **mode**: `"create"` \| `"edit"` + +Defined in: [src/screens/FundCampaignPledge/PledgeModal.tsx:36](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/FundCampaignPledge/PledgeModal.tsx#L36) + +*** + +### orgId + +> **orgId**: `string` + +Defined in: [src/screens/FundCampaignPledge/PledgeModal.tsx:32](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/FundCampaignPledge/PledgeModal.tsx#L32) + +*** + +### pledge + +> **pledge**: `null` \| [`InterfacePledgeInfo`](../../../../utils/interfaces/interfaces/InterfacePledgeInfo.md) + +Defined in: [src/screens/FundCampaignPledge/PledgeModal.tsx:33](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/FundCampaignPledge/PledgeModal.tsx#L33) + +*** + +### refetchPledge() + +> **refetchPledge**: () => `void` + +Defined in: [src/screens/FundCampaignPledge/PledgeModal.tsx:34](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/FundCampaignPledge/PledgeModal.tsx#L34) + +#### Returns + +`void` diff --git a/docs/docs/auto-docs/screens/FundCampaignPledge/PledgesMocks/README.md b/docs/docs/auto-docs/screens/FundCampaignPledge/PledgesMocks/README.md new file mode 100644 index 0000000000..09161cf5a8 --- /dev/null +++ b/docs/docs/auto-docs/screens/FundCampaignPledge/PledgesMocks/README.md @@ -0,0 +1,15 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / screens/FundCampaignPledge/PledgesMocks + +# screens/FundCampaignPledge/PledgesMocks + +## Variables + +- [EMPTY\_MOCKS](variables/EMPTY_MOCKS.md) +- [MOCKS](variables/MOCKS.md) +- [MOCKS\_DELETE\_PLEDGE\_ERROR](variables/MOCKS_DELETE_PLEDGE_ERROR.md) +- [MOCKS\_FUND\_CAMPAIGN\_PLEDGE\_ERROR](variables/MOCKS_FUND_CAMPAIGN_PLEDGE_ERROR.md) +- [PLEDGE\_MODAL\_MOCKS](variables/PLEDGE_MODAL_MOCKS.md) diff --git a/docs/docs/auto-docs/screens/FundCampaignPledge/PledgesMocks/variables/EMPTY_MOCKS.md b/docs/docs/auto-docs/screens/FundCampaignPledge/PledgesMocks/variables/EMPTY_MOCKS.md new file mode 100644 index 0000000000..256382d5e3 --- /dev/null +++ b/docs/docs/auto-docs/screens/FundCampaignPledge/PledgesMocks/variables/EMPTY_MOCKS.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [screens/FundCampaignPledge/PledgesMocks](../README.md) / EMPTY\_MOCKS + +# Variable: EMPTY\_MOCKS + +> `const` **EMPTY\_MOCKS**: (\{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `id`: `string`; \}; \}; `result`: \{ `data`: \{ `organizations`: `object`[]; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `pledgeOrderBy`: `string`; `where`: \{ `id`: `string`; \}; \}; \}; `result`: \{ `data`: \{ `getFundraisingCampaigns`: `object`[]; \}; \}; \})[] + +Defined in: [src/screens/FundCampaignPledge/PledgesMocks.ts:387](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/FundCampaignPledge/PledgesMocks.ts#L387) diff --git a/docs/docs/auto-docs/screens/FundCampaignPledge/PledgesMocks/variables/MOCKS.md b/docs/docs/auto-docs/screens/FundCampaignPledge/PledgesMocks/variables/MOCKS.md new file mode 100644 index 0000000000..c59d259df7 --- /dev/null +++ b/docs/docs/auto-docs/screens/FundCampaignPledge/PledgesMocks/variables/MOCKS.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [screens/FundCampaignPledge/PledgesMocks](../README.md) / MOCKS + +# Variable: MOCKS + +> `const` **MOCKS**: (\{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `id`: `string`; \}; \}; `result`: \{ `data`: \{ `organizations`: `object`[]; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `id`: `undefined`; `pledgeOrderBy`: `string`; `where`: \{ `id`: `string`; \}; \}; \}; `result`: \{ `data`: \{ `getFundraisingCampaigns`: `object`[]; `removeFundraisingCampaignPledge`: `undefined`; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `id`: `string`; `pledgeOrderBy`: `undefined`; `where`: `undefined`; \}; \}; `result`: \{ `data`: \{ `getFundraisingCampaigns`: `undefined`; `removeFundraisingCampaignPledge`: \{ `_id`: `string`; \}; \}; \}; \})[] + +Defined in: [src/screens/FundCampaignPledge/PledgesMocks.ts:49](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/FundCampaignPledge/PledgesMocks.ts#L49) diff --git a/docs/docs/auto-docs/screens/FundCampaignPledge/PledgesMocks/variables/MOCKS_DELETE_PLEDGE_ERROR.md b/docs/docs/auto-docs/screens/FundCampaignPledge/PledgesMocks/variables/MOCKS_DELETE_PLEDGE_ERROR.md new file mode 100644 index 0000000000..ae6e53b3dd --- /dev/null +++ b/docs/docs/auto-docs/screens/FundCampaignPledge/PledgesMocks/variables/MOCKS_DELETE_PLEDGE_ERROR.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [screens/FundCampaignPledge/PledgesMocks](../README.md) / MOCKS\_DELETE\_PLEDGE\_ERROR + +# Variable: MOCKS\_DELETE\_PLEDGE\_ERROR + +> `const` **MOCKS\_DELETE\_PLEDGE\_ERROR**: (\{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `id`: `string`; \}; \}; `result`: \{ `data`: \{ `organizations`: `object`[]; \}; \}; \} \| \{ `error`: `Error`; `request`: \{ `query`: `DocumentNode`; `variables`: \{ `id`: `string`; \}; \}; \})[] + +Defined in: [src/screens/FundCampaignPledge/PledgesMocks.ts:374](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/FundCampaignPledge/PledgesMocks.ts#L374) diff --git a/docs/docs/auto-docs/screens/FundCampaignPledge/PledgesMocks/variables/MOCKS_FUND_CAMPAIGN_PLEDGE_ERROR.md b/docs/docs/auto-docs/screens/FundCampaignPledge/PledgesMocks/variables/MOCKS_FUND_CAMPAIGN_PLEDGE_ERROR.md new file mode 100644 index 0000000000..24f7696346 --- /dev/null +++ b/docs/docs/auto-docs/screens/FundCampaignPledge/PledgesMocks/variables/MOCKS_FUND_CAMPAIGN_PLEDGE_ERROR.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [screens/FundCampaignPledge/PledgesMocks](../README.md) / MOCKS\_FUND\_CAMPAIGN\_PLEDGE\_ERROR + +# Variable: MOCKS\_FUND\_CAMPAIGN\_PLEDGE\_ERROR + +> `const` **MOCKS\_FUND\_CAMPAIGN\_PLEDGE\_ERROR**: (\{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `id`: `string`; \}; \}; `result`: \{ `data`: \{ `organizations`: `object`[]; \}; \}; \} \| \{ `error`: `Error`; `request`: \{ `query`: `DocumentNode`; `variables`: \{ `pledgeOrderBy`: `string`; `where`: \{ `id`: `string`; \}; \}; \}; \})[] + +Defined in: [src/screens/FundCampaignPledge/PledgesMocks.ts:358](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/FundCampaignPledge/PledgesMocks.ts#L358) diff --git a/docs/docs/auto-docs/screens/FundCampaignPledge/PledgesMocks/variables/PLEDGE_MODAL_MOCKS.md b/docs/docs/auto-docs/screens/FundCampaignPledge/PledgesMocks/variables/PLEDGE_MODAL_MOCKS.md new file mode 100644 index 0000000000..d6767eefe3 --- /dev/null +++ b/docs/docs/auto-docs/screens/FundCampaignPledge/PledgesMocks/variables/PLEDGE_MODAL_MOCKS.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [screens/FundCampaignPledge/PledgesMocks](../README.md) / PLEDGE\_MODAL\_MOCKS + +# Variable: PLEDGE\_MODAL\_MOCKS + +> `const` **PLEDGE\_MODAL\_MOCKS**: (\{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `id`: `string`; \}; \}; `result`: \{ `data`: \{ `organizations`: `object`[]; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `amount`: `number`; `campaignId`: `undefined`; `currency`: `undefined`; `endDate`: `undefined`; `id`: `string`; `startDate`: `undefined`; `userIds`: `undefined`; \}; \}; `result`: \{ `data`: \{ `createFundraisingCampaignPledge`: `undefined`; `updateFundraisingCampaignPledge`: \{ `_id`: `string`; \}; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `amount`: `number`; `campaignId`: `string`; `currency`: `string`; `endDate`: `string`; `id`: `undefined`; `startDate`: `string`; `userIds`: `string`[]; \}; \}; `result`: \{ `data`: \{ `createFundraisingCampaignPledge`: \{ `_id`: `string`; \}; `updateFundraisingCampaignPledge`: `undefined`; \}; \}; \})[] + +Defined in: [src/screens/FundCampaignPledge/PledgesMocks.ts:419](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/FundCampaignPledge/PledgesMocks.ts#L419) diff --git a/docs/docs/auto-docs/screens/Leaderboard/Leaderboard.mocks/README.md b/docs/docs/auto-docs/screens/Leaderboard/Leaderboard.mocks/README.md new file mode 100644 index 0000000000..300d2201d7 --- /dev/null +++ b/docs/docs/auto-docs/screens/Leaderboard/Leaderboard.mocks/README.md @@ -0,0 +1,13 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / screens/Leaderboard/Leaderboard.mocks + +# screens/Leaderboard/Leaderboard.mocks + +## Variables + +- [EMPTY\_MOCKS](variables/EMPTY_MOCKS.md) +- [ERROR\_MOCKS](variables/ERROR_MOCKS.md) +- [MOCKS](variables/MOCKS.md) diff --git a/docs/docs/auto-docs/screens/Leaderboard/Leaderboard.mocks/variables/EMPTY_MOCKS.md b/docs/docs/auto-docs/screens/Leaderboard/Leaderboard.mocks/variables/EMPTY_MOCKS.md new file mode 100644 index 0000000000..70a4793e55 --- /dev/null +++ b/docs/docs/auto-docs/screens/Leaderboard/Leaderboard.mocks/variables/EMPTY_MOCKS.md @@ -0,0 +1,57 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [screens/Leaderboard/Leaderboard.mocks](../README.md) / EMPTY\_MOCKS + +# Variable: EMPTY\_MOCKS + +> `const` **EMPTY\_MOCKS**: `object`[] + +Defined in: [src/screens/Leaderboard/Leaderboard.mocks.ts:162](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/Leaderboard/Leaderboard.mocks.ts#L162) + +## Type declaration + +### request + +> **request**: `object` + +#### request.query + +> **query**: `DocumentNode` = `VOLUNTEER_RANKING` + +#### request.variables + +> **variables**: `object` + +#### request.variables.orgId + +> **orgId**: `string` = `'orgId'` + +#### request.variables.where + +> **where**: `object` + +#### request.variables.where.nameContains + +> **nameContains**: `string` = `''` + +#### request.variables.where.orderBy + +> **orderBy**: `string` = `'hours_DESC'` + +#### request.variables.where.timeFrame + +> **timeFrame**: `string` = `'allTime'` + +### result + +> **result**: `object` + +#### result.data + +> **data**: `object` + +#### result.data.getVolunteerRanks + +> **getVolunteerRanks**: `never`[] = `[]` diff --git a/docs/docs/auto-docs/screens/Leaderboard/Leaderboard.mocks/variables/ERROR_MOCKS.md b/docs/docs/auto-docs/screens/Leaderboard/Leaderboard.mocks/variables/ERROR_MOCKS.md new file mode 100644 index 0000000000..a9390b3937 --- /dev/null +++ b/docs/docs/auto-docs/screens/Leaderboard/Leaderboard.mocks/variables/ERROR_MOCKS.md @@ -0,0 +1,49 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [screens/Leaderboard/Leaderboard.mocks](../README.md) / ERROR\_MOCKS + +# Variable: ERROR\_MOCKS + +> `const` **ERROR\_MOCKS**: `object`[] + +Defined in: [src/screens/Leaderboard/Leaderboard.mocks.ts:183](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/Leaderboard/Leaderboard.mocks.ts#L183) + +## Type declaration + +### error + +> **error**: `Error` + +### request + +> **request**: `object` + +#### request.query + +> **query**: `DocumentNode` = `VOLUNTEER_RANKING` + +#### request.variables + +> **variables**: `object` + +#### request.variables.orgId + +> **orgId**: `string` = `'orgId'` + +#### request.variables.where + +> **where**: `object` + +#### request.variables.where.nameContains + +> **nameContains**: `string` = `''` + +#### request.variables.where.orderBy + +> **orderBy**: `string` = `'hours_DESC'` + +#### request.variables.where.timeFrame + +> **timeFrame**: `string` = `'allTime'` diff --git a/docs/docs/auto-docs/screens/Leaderboard/Leaderboard.mocks/variables/MOCKS.md b/docs/docs/auto-docs/screens/Leaderboard/Leaderboard.mocks/variables/MOCKS.md new file mode 100644 index 0000000000..71ae3a2be0 --- /dev/null +++ b/docs/docs/auto-docs/screens/Leaderboard/Leaderboard.mocks/variables/MOCKS.md @@ -0,0 +1,57 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [screens/Leaderboard/Leaderboard.mocks](../README.md) / MOCKS + +# Variable: MOCKS + +> `const` **MOCKS**: `object`[] + +Defined in: [src/screens/Leaderboard/Leaderboard.mocks.ts:51](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/Leaderboard/Leaderboard.mocks.ts#L51) + +## Type declaration + +### request + +> **request**: `object` + +#### request.query + +> **query**: `DocumentNode` = `VOLUNTEER_RANKING` + +#### request.variables + +> **variables**: `object` + +#### request.variables.orgId + +> **orgId**: `string` = `'orgId'` + +#### request.variables.where + +> **where**: `object` + +#### request.variables.where.nameContains + +> **nameContains**: `string` = `''` + +#### request.variables.where.orderBy + +> **orderBy**: `string` = `'hours_DESC'` + +#### request.variables.where.timeFrame + +> **timeFrame**: `string` = `'allTime'` + +### result + +> **result**: `object` + +#### result.data + +> **data**: `object` + +#### result.data.getVolunteerRanks + +> **getVolunteerRanks**: (\{ `hoursVolunteered`: `number`; `rank`: `number`; `user`: \{ `_id`: `string`; `email`: `string`; `firstName`: `string`; `image`: `string`; `lastName`: `string`; \}; \} \| \{ `hoursVolunteered`: `number`; `rank`: `number`; `user`: \{ `_id`: `string`; `email`: `string`; `firstName`: `string`; `image`: `null`; `lastName`: `string`; \}; \})[] diff --git a/docs/docs/auto-docs/screens/Leaderboard/Leaderboard/README.md b/docs/docs/auto-docs/screens/Leaderboard/Leaderboard/README.md new file mode 100644 index 0000000000..a8117a54a7 --- /dev/null +++ b/docs/docs/auto-docs/screens/Leaderboard/Leaderboard/README.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / screens/Leaderboard/Leaderboard + +# screens/Leaderboard/Leaderboard + +## Functions + +- [default](functions/default.md) diff --git a/docs/docs/auto-docs/screens/Leaderboard/Leaderboard/functions/default.md b/docs/docs/auto-docs/screens/Leaderboard/Leaderboard/functions/default.md new file mode 100644 index 0000000000..d506e0f2e5 --- /dev/null +++ b/docs/docs/auto-docs/screens/Leaderboard/Leaderboard/functions/default.md @@ -0,0 +1,23 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [screens/Leaderboard/Leaderboard](../README.md) / default + +# Function: default() + +> **default**(): `JSX.Element` + +Defined in: [src/screens/Leaderboard/Leaderboard.tsx:62](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/Leaderboard/Leaderboard.tsx#L62) + +Component to display the leaderboard of volunteers. + +This component shows a leaderboard of volunteers ranked by hours contributed, +with features for filtering by time frame and sorting by hours. It displays +volunteer details including rank, name, email, and hours volunteered. + +## Returns + +`JSX.Element` + +The rendered component. diff --git a/docs/docs/auto-docs/screens/LoginPage/LoginPage/README.md b/docs/docs/auto-docs/screens/LoginPage/LoginPage/README.md new file mode 100644 index 0000000000..3258f97741 --- /dev/null +++ b/docs/docs/auto-docs/screens/LoginPage/LoginPage/README.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / screens/LoginPage/LoginPage + +# screens/LoginPage/LoginPage + +## Functions + +- [default](functions/default.md) diff --git a/docs/docs/auto-docs/screens/LoginPage/LoginPage/functions/default.md b/docs/docs/auto-docs/screens/LoginPage/LoginPage/functions/default.md new file mode 100644 index 0000000000..95ab56377c --- /dev/null +++ b/docs/docs/auto-docs/screens/LoginPage/LoginPage/functions/default.md @@ -0,0 +1,19 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [screens/LoginPage/LoginPage](../README.md) / default + +# Function: default() + +> **default**(): `Element` + +Defined in: [src/screens/LoginPage/LoginPage.tsx:46](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/LoginPage/LoginPage.tsx#L46) + +LoginPage component is used to render the login page of the application where user can login or register +to the application using email and password. The component also provides the functionality to switch between login and +register form. + +## Returns + +`Element` diff --git a/docs/docs/auto-docs/screens/ManageTag/EditUserTagModal/README.md b/docs/docs/auto-docs/screens/ManageTag/EditUserTagModal/README.md new file mode 100644 index 0000000000..b40848f3a0 --- /dev/null +++ b/docs/docs/auto-docs/screens/ManageTag/EditUserTagModal/README.md @@ -0,0 +1,15 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / screens/ManageTag/EditUserTagModal + +# screens/ManageTag/EditUserTagModal + +## Interfaces + +- [InterfaceEditUserTagModalProps](interfaces/InterfaceEditUserTagModalProps.md) + +## Functions + +- [default](functions/default.md) diff --git a/docs/docs/auto-docs/screens/ManageTag/EditUserTagModal/functions/default.md b/docs/docs/auto-docs/screens/ManageTag/EditUserTagModal/functions/default.md new file mode 100644 index 0000000000..3b622bbe0d --- /dev/null +++ b/docs/docs/auto-docs/screens/ManageTag/EditUserTagModal/functions/default.md @@ -0,0 +1,31 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [screens/ManageTag/EditUserTagModal](../README.md) / default + +# Function: default() + +> **default**(`props`, `deprecatedLegacyContext`?): `ReactNode` + +Defined in: [src/screens/ManageTag/EditUserTagModal.tsx:20](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/ManageTag/EditUserTagModal.tsx#L20) + +## Parameters + +### props + +[`InterfaceEditUserTagModalProps`](../interfaces/InterfaceEditUserTagModalProps.md) + +### deprecatedLegacyContext? + +`any` + +**Deprecated** + +**See** + +[React Docs](https://legacy.reactjs.org/docs/legacy-context.html#referencing-context-in-lifecycle-methods) + +## Returns + +`ReactNode` diff --git a/docs/docs/auto-docs/screens/ManageTag/EditUserTagModal/interfaces/InterfaceEditUserTagModalProps.md b/docs/docs/auto-docs/screens/ManageTag/EditUserTagModal/interfaces/InterfaceEditUserTagModalProps.md new file mode 100644 index 0000000000..22fe71f7a9 --- /dev/null +++ b/docs/docs/auto-docs/screens/ManageTag/EditUserTagModal/interfaces/InterfaceEditUserTagModalProps.md @@ -0,0 +1,91 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [screens/ManageTag/EditUserTagModal](../README.md) / InterfaceEditUserTagModalProps + +# Interface: InterfaceEditUserTagModalProps + +Defined in: [src/screens/ManageTag/EditUserTagModal.tsx:10](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/ManageTag/EditUserTagModal.tsx#L10) + +Edit UserTag Modal component for the Manage Tag screen. + +## Properties + +### editUserTagModalIsOpen + +> **editUserTagModalIsOpen**: `boolean` + +Defined in: [src/screens/ManageTag/EditUserTagModal.tsx:11](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/ManageTag/EditUserTagModal.tsx#L11) + +*** + +### handleEditUserTag() + +> **handleEditUserTag**: (`e`) => `Promise`\<`void`\> + +Defined in: [src/screens/ManageTag/EditUserTagModal.tsx:15](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/ManageTag/EditUserTagModal.tsx#L15) + +#### Parameters + +##### e + +`FormEvent`\<`HTMLFormElement`\> + +#### Returns + +`Promise`\<`void`\> + +*** + +### hideEditUserTagModal() + +> **hideEditUserTagModal**: () => `void` + +Defined in: [src/screens/ManageTag/EditUserTagModal.tsx:12](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/ManageTag/EditUserTagModal.tsx#L12) + +#### Returns + +`void` + +*** + +### newTagName + +> **newTagName**: `string` + +Defined in: [src/screens/ManageTag/EditUserTagModal.tsx:13](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/ManageTag/EditUserTagModal.tsx#L13) + +*** + +### setNewTagName() + +> **setNewTagName**: (`state`) => `void` + +Defined in: [src/screens/ManageTag/EditUserTagModal.tsx:14](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/ManageTag/EditUserTagModal.tsx#L14) + +#### Parameters + +##### state + +`SetStateAction`\<`string`\> + +#### Returns + +`void` + +*** + +### t + +> **t**: `TFunction`\<`"manageTag"`\> + +Defined in: [src/screens/ManageTag/EditUserTagModal.tsx:16](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/ManageTag/EditUserTagModal.tsx#L16) + +*** + +### tCommon + +> **tCommon**: `TFunction`\<`"common"`\> + +Defined in: [src/screens/ManageTag/EditUserTagModal.tsx:17](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/ManageTag/EditUserTagModal.tsx#L17) diff --git a/docs/docs/auto-docs/screens/ManageTag/ManageTag/README.md b/docs/docs/auto-docs/screens/ManageTag/ManageTag/README.md new file mode 100644 index 0000000000..fd25228ebe --- /dev/null +++ b/docs/docs/auto-docs/screens/ManageTag/ManageTag/README.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / screens/ManageTag/ManageTag + +# screens/ManageTag/ManageTag + +## Functions + +- [default](functions/default.md) diff --git a/docs/docs/auto-docs/screens/ManageTag/ManageTag/functions/default.md b/docs/docs/auto-docs/screens/ManageTag/ManageTag/functions/default.md new file mode 100644 index 0000000000..2fc42e9036 --- /dev/null +++ b/docs/docs/auto-docs/screens/ManageTag/ManageTag/functions/default.md @@ -0,0 +1,17 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [screens/ManageTag/ManageTag](../README.md) / default + +# Function: default() + +> **default**(): `JSX.Element` + +Defined in: [src/screens/ManageTag/ManageTag.tsx:46](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/ManageTag/ManageTag.tsx#L46) + +Component that renders the Manage Tag screen when the app navigates to '/orgtags/:orgId/manageTag/:tagId'. + +## Returns + +`JSX.Element` diff --git a/docs/docs/auto-docs/screens/ManageTag/ManageTagMockComponents/MockAddPeopleToTag/README.md b/docs/docs/auto-docs/screens/ManageTag/ManageTagMockComponents/MockAddPeopleToTag/README.md new file mode 100644 index 0000000000..472f1e281d --- /dev/null +++ b/docs/docs/auto-docs/screens/ManageTag/ManageTagMockComponents/MockAddPeopleToTag/README.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / screens/ManageTag/ManageTagMockComponents/MockAddPeopleToTag + +# screens/ManageTag/ManageTagMockComponents/MockAddPeopleToTag + +## Functions + +- [default](functions/default.md) diff --git a/docs/docs/auto-docs/screens/ManageTag/ManageTagMockComponents/MockAddPeopleToTag/functions/default.md b/docs/docs/auto-docs/screens/ManageTag/ManageTagMockComponents/MockAddPeopleToTag/functions/default.md new file mode 100644 index 0000000000..25daa9d683 --- /dev/null +++ b/docs/docs/auto-docs/screens/ManageTag/ManageTagMockComponents/MockAddPeopleToTag/functions/default.md @@ -0,0 +1,31 @@ +[**talawa-admin**](../../../../../README.md) + +*** + +[talawa-admin](../../../../../modules.md) / [screens/ManageTag/ManageTagMockComponents/MockAddPeopleToTag](../README.md) / default + +# Function: default() + +> **default**(`props`, `deprecatedLegacyContext`?): `ReactNode` + +Defined in: [src/screens/ManageTag/ManageTagMockComponents/MockAddPeopleToTag.tsx:12](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/ManageTag/ManageTagMockComponents/MockAddPeopleToTag.tsx#L12) + +## Parameters + +### props + +[`InterfaceAddPeopleToTagProps`](../../../../../components/AddPeopleToTag/AddPeopleToTag/interfaces/InterfaceAddPeopleToTagProps.md) + +### deprecatedLegacyContext? + +`any` + +**Deprecated** + +**See** + +[React Docs](https://legacy.reactjs.org/docs/legacy-context.html#referencing-context-in-lifecycle-methods) + +## Returns + +`ReactNode` diff --git a/docs/docs/auto-docs/screens/ManageTag/ManageTagMockComponents/MockTagActions/README.md b/docs/docs/auto-docs/screens/ManageTag/ManageTagMockComponents/MockTagActions/README.md new file mode 100644 index 0000000000..b7165dfdef --- /dev/null +++ b/docs/docs/auto-docs/screens/ManageTag/ManageTagMockComponents/MockTagActions/README.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / screens/ManageTag/ManageTagMockComponents/MockTagActions + +# screens/ManageTag/ManageTagMockComponents/MockTagActions + +## Functions + +- [default](functions/default.md) diff --git a/docs/docs/auto-docs/screens/ManageTag/ManageTagMockComponents/MockTagActions/functions/default.md b/docs/docs/auto-docs/screens/ManageTag/ManageTagMockComponents/MockTagActions/functions/default.md new file mode 100644 index 0000000000..7ecb38dba7 --- /dev/null +++ b/docs/docs/auto-docs/screens/ManageTag/ManageTagMockComponents/MockTagActions/functions/default.md @@ -0,0 +1,33 @@ +[**talawa-admin**](../../../../../README.md) + +*** + +[talawa-admin](../../../../../modules.md) / [screens/ManageTag/ManageTagMockComponents/MockTagActions](../README.md) / default + +# Function: default() + +> **default**(`props`, `deprecatedLegacyContext`?): `ReactNode` + +Defined in: [src/screens/ManageTag/ManageTagMockComponents/MockTagActions.tsx:8](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/ManageTag/ManageTagMockComponents/MockTagActions.tsx#L8) + +Component that mocks the TagActions component for the Manage Tag screen. + +## Parameters + +### props + +[`InterfaceTagActionsProps`](../../../../../components/TagActions/TagActions/interfaces/InterfaceTagActionsProps.md) + +### deprecatedLegacyContext? + +`any` + +**Deprecated** + +**See** + +[React Docs](https://legacy.reactjs.org/docs/legacy-context.html#referencing-context-in-lifecycle-methods) + +## Returns + +`ReactNode` diff --git a/docs/docs/auto-docs/screens/ManageTag/ManageTagMocks/README.md b/docs/docs/auto-docs/screens/ManageTag/ManageTagMocks/README.md new file mode 100644 index 0000000000..b371650a1e --- /dev/null +++ b/docs/docs/auto-docs/screens/ManageTag/ManageTagMocks/README.md @@ -0,0 +1,12 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / screens/ManageTag/ManageTagMocks + +# screens/ManageTag/ManageTagMocks + +## Variables + +- [MOCKS](variables/MOCKS.md) +- [MOCKS\_ERROR\_ASSIGNED\_MEMBERS](variables/MOCKS_ERROR_ASSIGNED_MEMBERS.md) diff --git a/docs/docs/auto-docs/screens/ManageTag/ManageTagMocks/variables/MOCKS.md b/docs/docs/auto-docs/screens/ManageTag/ManageTagMocks/variables/MOCKS.md new file mode 100644 index 0000000000..10cae21739 --- /dev/null +++ b/docs/docs/auto-docs/screens/ManageTag/ManageTagMocks/variables/MOCKS.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [screens/ManageTag/ManageTagMocks](../README.md) / MOCKS + +# Variable: MOCKS + +> `const` **MOCKS**: (\{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `after`: `undefined`; `first`: `number`; `id`: `string`; `name`: `undefined`; `sortedBy`: \{ `id`: `string`; \}; `tagId`: `undefined`; `userId`: `undefined`; `where`: \{ `firstName`: \{ `starts_with`: `string`; \}; `lastName`: \{ `starts_with`: `string`; \}; \}; \}; \}; `result`: \{ `data`: \{ `getAssignedUsers`: \{ `ancestorTags`: `never`[]; `name`: `string`; `usersAssignedTo`: \{ `edges`: `object`[]; `pageInfo`: \{ `endCursor`: `string`; `hasNextPage`: `boolean`; `hasPreviousPage`: `boolean`; `startCursor`: `string`; \}; `totalCount`: `number`; \}; \}; `removeUserTag`: `undefined`; `unassignUserTag`: `undefined`; `updateUserTag`: `undefined`; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `after`: `string`; `first`: `number`; `id`: `string`; `name`: `undefined`; `sortedBy`: \{ `id`: `string`; \}; `tagId`: `undefined`; `userId`: `undefined`; `where`: \{ `firstName`: \{ `starts_with`: `string`; \}; `lastName`: \{ `starts_with`: `string`; \}; \}; \}; \}; `result`: \{ `data`: \{ `getAssignedUsers`: \{ `ancestorTags`: `never`[]; `name`: `string`; `usersAssignedTo`: \{ `edges`: `object`[]; `pageInfo`: \{ `endCursor`: `string`; `hasNextPage`: `boolean`; `hasPreviousPage`: `boolean`; `startCursor`: `string`; \}; `totalCount`: `number`; \}; \}; `removeUserTag`: `undefined`; `unassignUserTag`: `undefined`; `updateUserTag`: `undefined`; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `after`: `undefined`; `first`: `undefined`; `id`: `undefined`; `name`: `undefined`; `sortedBy`: `undefined`; `tagId`: `string`; `userId`: `string`; `where`: `undefined`; \}; \}; `result`: \{ `data`: \{ `getAssignedUsers`: `undefined`; `removeUserTag`: `undefined`; `unassignUserTag`: \{ `_id`: `string`; \}; `updateUserTag`: `undefined`; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `after`: `undefined`; `first`: `undefined`; `id`: `undefined`; `name`: `string`; `sortedBy`: `undefined`; `tagId`: `string`; `userId`: `undefined`; `where`: `undefined`; \}; \}; `result`: \{ `data`: \{ `getAssignedUsers`: `undefined`; `removeUserTag`: `undefined`; `unassignUserTag`: `undefined`; `updateUserTag`: \{ `_id`: `string`; \}; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `after`: `undefined`; `first`: `undefined`; `id`: `string`; `name`: `undefined`; `sortedBy`: `undefined`; `tagId`: `undefined`; `userId`: `undefined`; `where`: `undefined`; \}; \}; `result`: \{ `data`: \{ `getAssignedUsers`: `undefined`; `removeUserTag`: \{ `_id`: `string`; \}; `unassignUserTag`: `undefined`; `updateUserTag`: `undefined`; \}; \}; \})[] + +Defined in: [src/screens/ManageTag/ManageTagMocks.ts:9](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/ManageTag/ManageTagMocks.ts#L9) diff --git a/docs/docs/auto-docs/screens/ManageTag/ManageTagMocks/variables/MOCKS_ERROR_ASSIGNED_MEMBERS.md b/docs/docs/auto-docs/screens/ManageTag/ManageTagMocks/variables/MOCKS_ERROR_ASSIGNED_MEMBERS.md new file mode 100644 index 0000000000..230c05b3c0 --- /dev/null +++ b/docs/docs/auto-docs/screens/ManageTag/ManageTagMocks/variables/MOCKS_ERROR_ASSIGNED_MEMBERS.md @@ -0,0 +1,65 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [screens/ManageTag/ManageTagMocks](../README.md) / MOCKS\_ERROR\_ASSIGNED\_MEMBERS + +# Variable: MOCKS\_ERROR\_ASSIGNED\_MEMBERS + +> `const` **MOCKS\_ERROR\_ASSIGNED\_MEMBERS**: `object`[] + +Defined in: [src/screens/ManageTag/ManageTagMocks.ts:320](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/ManageTag/ManageTagMocks.ts#L320) + +## Type declaration + +### error + +> **error**: `Error` + +### request + +> **request**: `object` + +#### request.query + +> **query**: `DocumentNode` = `USER_TAGS_ASSIGNED_MEMBERS` + +#### request.variables + +> **variables**: `object` + +#### request.variables.first + +> **first**: `number` = `TAGS_QUERY_DATA_CHUNK_SIZE` + +#### request.variables.id + +> **id**: `string` = `'1'` + +#### request.variables.sortedBy + +> **sortedBy**: `object` + +#### request.variables.sortedBy.id + +> **id**: `string` = `'DESCENDING'` + +#### request.variables.where + +> **where**: `object` + +#### request.variables.where.firstName + +> **firstName**: `object` + +#### request.variables.where.firstName.starts\_with + +> **starts\_with**: `string` = `''` + +#### request.variables.where.lastName + +> **lastName**: `object` + +#### request.variables.where.lastName.starts\_with + +> **starts\_with**: `string` = `''` diff --git a/docs/docs/auto-docs/screens/ManageTag/RemoveUserTagModal/README.md b/docs/docs/auto-docs/screens/ManageTag/RemoveUserTagModal/README.md new file mode 100644 index 0000000000..81941d24ec --- /dev/null +++ b/docs/docs/auto-docs/screens/ManageTag/RemoveUserTagModal/README.md @@ -0,0 +1,15 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / screens/ManageTag/RemoveUserTagModal + +# screens/ManageTag/RemoveUserTagModal + +## Interfaces + +- [InterfaceRemoveUserTagModalProps](interfaces/InterfaceRemoveUserTagModalProps.md) + +## Functions + +- [default](functions/default.md) diff --git a/docs/docs/auto-docs/screens/ManageTag/RemoveUserTagModal/functions/default.md b/docs/docs/auto-docs/screens/ManageTag/RemoveUserTagModal/functions/default.md new file mode 100644 index 0000000000..a4c8ac804e --- /dev/null +++ b/docs/docs/auto-docs/screens/ManageTag/RemoveUserTagModal/functions/default.md @@ -0,0 +1,31 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [screens/ManageTag/RemoveUserTagModal](../README.md) / default + +# Function: default() + +> **default**(`props`, `deprecatedLegacyContext`?): `ReactNode` + +Defined in: [src/screens/ManageTag/RemoveUserTagModal.tsx:17](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/ManageTag/RemoveUserTagModal.tsx#L17) + +## Parameters + +### props + +[`InterfaceRemoveUserTagModalProps`](../interfaces/InterfaceRemoveUserTagModalProps.md) + +### deprecatedLegacyContext? + +`any` + +**Deprecated** + +**See** + +[React Docs](https://legacy.reactjs.org/docs/legacy-context.html#referencing-context-in-lifecycle-methods) + +## Returns + +`ReactNode` diff --git a/docs/docs/auto-docs/screens/ManageTag/RemoveUserTagModal/interfaces/InterfaceRemoveUserTagModalProps.md b/docs/docs/auto-docs/screens/ManageTag/RemoveUserTagModal/interfaces/InterfaceRemoveUserTagModalProps.md new file mode 100644 index 0000000000..671f0ba356 --- /dev/null +++ b/docs/docs/auto-docs/screens/ManageTag/RemoveUserTagModal/interfaces/InterfaceRemoveUserTagModalProps.md @@ -0,0 +1,59 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [screens/ManageTag/RemoveUserTagModal](../README.md) / InterfaceRemoveUserTagModalProps + +# Interface: InterfaceRemoveUserTagModalProps + +Defined in: [src/screens/ManageTag/RemoveUserTagModal.tsx:9](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/ManageTag/RemoveUserTagModal.tsx#L9) + +Remove UserTag Modal component for the Manage Tag screen. + +## Properties + +### handleRemoveUserTag() + +> **handleRemoveUserTag**: () => `Promise`\<`void`\> + +Defined in: [src/screens/ManageTag/RemoveUserTagModal.tsx:12](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/ManageTag/RemoveUserTagModal.tsx#L12) + +#### Returns + +`Promise`\<`void`\> + +*** + +### removeUserTagModalIsOpen + +> **removeUserTagModalIsOpen**: `boolean` + +Defined in: [src/screens/ManageTag/RemoveUserTagModal.tsx:10](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/ManageTag/RemoveUserTagModal.tsx#L10) + +*** + +### t + +> **t**: `TFunction`\<`"manageTag"`\> + +Defined in: [src/screens/ManageTag/RemoveUserTagModal.tsx:13](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/ManageTag/RemoveUserTagModal.tsx#L13) + +*** + +### tCommon + +> **tCommon**: `TFunction`\<`"common"`\> + +Defined in: [src/screens/ManageTag/RemoveUserTagModal.tsx:14](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/ManageTag/RemoveUserTagModal.tsx#L14) + +*** + +### toggleRemoveUserTagModal() + +> **toggleRemoveUserTagModal**: () => `void` + +Defined in: [src/screens/ManageTag/RemoveUserTagModal.tsx:11](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/ManageTag/RemoveUserTagModal.tsx#L11) + +#### Returns + +`void` diff --git a/docs/docs/auto-docs/screens/ManageTag/UnassignUserTagModal/README.md b/docs/docs/auto-docs/screens/ManageTag/UnassignUserTagModal/README.md new file mode 100644 index 0000000000..a2f139ddb6 --- /dev/null +++ b/docs/docs/auto-docs/screens/ManageTag/UnassignUserTagModal/README.md @@ -0,0 +1,15 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / screens/ManageTag/UnassignUserTagModal + +# screens/ManageTag/UnassignUserTagModal + +## Interfaces + +- [InterfaceUnassignUserTagModalProps](interfaces/InterfaceUnassignUserTagModalProps.md) + +## Functions + +- [default](functions/default.md) diff --git a/docs/docs/auto-docs/screens/ManageTag/UnassignUserTagModal/functions/default.md b/docs/docs/auto-docs/screens/ManageTag/UnassignUserTagModal/functions/default.md new file mode 100644 index 0000000000..78d04adae9 --- /dev/null +++ b/docs/docs/auto-docs/screens/ManageTag/UnassignUserTagModal/functions/default.md @@ -0,0 +1,31 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [screens/ManageTag/UnassignUserTagModal](../README.md) / default + +# Function: default() + +> **default**(`props`, `deprecatedLegacyContext`?): `ReactNode` + +Defined in: [src/screens/ManageTag/UnassignUserTagModal.tsx:17](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/ManageTag/UnassignUserTagModal.tsx#L17) + +## Parameters + +### props + +[`InterfaceUnassignUserTagModalProps`](../interfaces/InterfaceUnassignUserTagModalProps.md) + +### deprecatedLegacyContext? + +`any` + +**Deprecated** + +**See** + +[React Docs](https://legacy.reactjs.org/docs/legacy-context.html#referencing-context-in-lifecycle-methods) + +## Returns + +`ReactNode` diff --git a/docs/docs/auto-docs/screens/ManageTag/UnassignUserTagModal/interfaces/InterfaceUnassignUserTagModalProps.md b/docs/docs/auto-docs/screens/ManageTag/UnassignUserTagModal/interfaces/InterfaceUnassignUserTagModalProps.md new file mode 100644 index 0000000000..545c873517 --- /dev/null +++ b/docs/docs/auto-docs/screens/ManageTag/UnassignUserTagModal/interfaces/InterfaceUnassignUserTagModalProps.md @@ -0,0 +1,59 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [screens/ManageTag/UnassignUserTagModal](../README.md) / InterfaceUnassignUserTagModalProps + +# Interface: InterfaceUnassignUserTagModalProps + +Defined in: [src/screens/ManageTag/UnassignUserTagModal.tsx:9](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/ManageTag/UnassignUserTagModal.tsx#L9) + +Unassign UserTag Modal component for the Manage Tag screen. + +## Properties + +### handleUnassignUserTag() + +> **handleUnassignUserTag**: () => `Promise`\<`void`\> + +Defined in: [src/screens/ManageTag/UnassignUserTagModal.tsx:12](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/ManageTag/UnassignUserTagModal.tsx#L12) + +#### Returns + +`Promise`\<`void`\> + +*** + +### t + +> **t**: `TFunction`\<`"manageTag"` \| `"memberDetail"`\> + +Defined in: [src/screens/ManageTag/UnassignUserTagModal.tsx:13](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/ManageTag/UnassignUserTagModal.tsx#L13) + +*** + +### tCommon + +> **tCommon**: `TFunction`\<`"common"`\> + +Defined in: [src/screens/ManageTag/UnassignUserTagModal.tsx:14](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/ManageTag/UnassignUserTagModal.tsx#L14) + +*** + +### toggleUnassignUserTagModal() + +> **toggleUnassignUserTagModal**: () => `void` + +Defined in: [src/screens/ManageTag/UnassignUserTagModal.tsx:11](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/ManageTag/UnassignUserTagModal.tsx#L11) + +#### Returns + +`void` + +*** + +### unassignUserTagModalIsOpen + +> **unassignUserTagModalIsOpen**: `boolean` + +Defined in: [src/screens/ManageTag/UnassignUserTagModal.tsx:10](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/ManageTag/UnassignUserTagModal.tsx#L10) diff --git a/docs/docs/auto-docs/screens/MemberDetail/MemberDetail/README.md b/docs/docs/auto-docs/screens/MemberDetail/MemberDetail/README.md new file mode 100644 index 0000000000..abab2714e3 --- /dev/null +++ b/docs/docs/auto-docs/screens/MemberDetail/MemberDetail/README.md @@ -0,0 +1,13 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / screens/MemberDetail/MemberDetail + +# screens/MemberDetail/MemberDetail + +## Functions + +- [default](functions/default.md) +- [getLanguageName](functions/getLanguageName.md) +- [prettyDate](functions/prettyDate.md) diff --git a/docs/docs/auto-docs/screens/MemberDetail/MemberDetail/functions/default.md b/docs/docs/auto-docs/screens/MemberDetail/MemberDetail/functions/default.md new file mode 100644 index 0000000000..a1289dd5bc --- /dev/null +++ b/docs/docs/auto-docs/screens/MemberDetail/MemberDetail/functions/default.md @@ -0,0 +1,38 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [screens/MemberDetail/MemberDetail](../README.md) / default + +# Function: default() + +> **default**(`props`, `deprecatedLegacyContext`?): `ReactNode` + +Defined in: [src/screens/MemberDetail/MemberDetail.tsx:51](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/MemberDetail/MemberDetail.tsx#L51) + +MemberDetail component is used to display the details of a user. +It also allows the user to update the details. It uses the UPDATE_USER_MUTATION to update the user details. +It uses the USER_DETAILS query to get the user details. It uses the useLocalStorage hook to store the user + details in the local storage. + +## Parameters + +### props + +`MemberDetailProps` + +### deprecatedLegacyContext? + +`any` + +**Deprecated** + +**See** + +[React Docs](https://legacy.reactjs.org/docs/legacy-context.html#referencing-context-in-lifecycle-methods) + +## Returns + +`ReactNode` + +React component diff --git a/docs/docs/auto-docs/screens/MemberDetail/MemberDetail/functions/getLanguageName.md b/docs/docs/auto-docs/screens/MemberDetail/MemberDetail/functions/getLanguageName.md new file mode 100644 index 0000000000..87bd2d5840 --- /dev/null +++ b/docs/docs/auto-docs/screens/MemberDetail/MemberDetail/functions/getLanguageName.md @@ -0,0 +1,21 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [screens/MemberDetail/MemberDetail](../README.md) / getLanguageName + +# Function: getLanguageName() + +> **getLanguageName**(`code`): `string` + +Defined in: [src/screens/MemberDetail/MemberDetail.tsx:752](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/MemberDetail/MemberDetail.tsx#L752) + +## Parameters + +### code + +`string` + +## Returns + +`string` diff --git a/docs/docs/auto-docs/screens/MemberDetail/MemberDetail/functions/prettyDate.md b/docs/docs/auto-docs/screens/MemberDetail/MemberDetail/functions/prettyDate.md new file mode 100644 index 0000000000..38084c0431 --- /dev/null +++ b/docs/docs/auto-docs/screens/MemberDetail/MemberDetail/functions/prettyDate.md @@ -0,0 +1,21 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [screens/MemberDetail/MemberDetail](../README.md) / prettyDate + +# Function: prettyDate() + +> **prettyDate**(`param`): `string` + +Defined in: [src/screens/MemberDetail/MemberDetail.tsx:742](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/MemberDetail/MemberDetail.tsx#L742) + +## Parameters + +### param + +`string` + +## Returns + +`string` diff --git a/docs/docs/auto-docs/screens/MemberDetail/MemberDetailMocks/README.md b/docs/docs/auto-docs/screens/MemberDetail/MemberDetailMocks/README.md new file mode 100644 index 0000000000..5b10a708fc --- /dev/null +++ b/docs/docs/auto-docs/screens/MemberDetail/MemberDetailMocks/README.md @@ -0,0 +1,13 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / screens/MemberDetail/MemberDetailMocks + +# screens/MemberDetail/MemberDetailMocks + +## Variables + +- [MOCKS1](variables/MOCKS1.md) +- [MOCKS2](variables/MOCKS2.md) +- [MOCKS3](variables/MOCKS3.md) diff --git a/docs/docs/auto-docs/screens/MemberDetail/MemberDetailMocks/variables/MOCKS1.md b/docs/docs/auto-docs/screens/MemberDetail/MemberDetailMocks/variables/MOCKS1.md new file mode 100644 index 0000000000..269a687170 --- /dev/null +++ b/docs/docs/auto-docs/screens/MemberDetail/MemberDetailMocks/variables/MOCKS1.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [screens/MemberDetail/MemberDetailMocks](../README.md) / MOCKS1 + +# Variable: MOCKS1 + +> `const` **MOCKS1**: (\{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `after`: `undefined`; `first`: `number`; `id`: `string`; `tagId`: `undefined`; `userId`: `undefined`; \}; \}; `result`: \{ `data`: \{ `unassignUserTag`: `undefined`; `user`: \{ `__typename`: `string`; `appUserProfile`: \{ `__typename`: `string`; `_id`: `string`; `adminFor`: `object`[]; `appLanguageCode`: `string`; `createdEvents`: `object`[]; `createdOrganizations`: `object`[]; `eventAdmin`: `object`[]; `isSuperAdmin`: `boolean`; `pluginCreationAllowed`: `boolean`; \}; `user`: \{ `__typename`: `string`; `_id`: `string`; `address`: \{ `city`: `string`; `countryCode`: `string`; `line1`: `string`; `state`: `string`; \}; `birthDate`: `string`; `createdAt`: `string`; `educationGrade`: `string`; `email`: `string`; `employmentStatus`: `string`; `eventsAttended`: `never`[]; `firstName`: `string`; `gender`: `string`; `image`: `null`; `joinedOrganizations`: `object`[]; `lastName`: `string`; `maritalStatus`: `string`; `membershipRequests`: `never`[]; `organizationsBlockedBy`: `never`[]; `phone`: \{ `mobile`: `string`; \}; `registeredEvents`: `object`[]; `tagsAssignedWith`: \{ `edges`: `object`[]; `pageInfo`: \{ `endCursor`: `string`; `hasNextPage`: `boolean`; `hasPreviousPage`: `boolean`; `startCursor`: `string`; \}; `totalCount`: `number`; \}; \}; \}; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `after`: `string`; `first`: `number`; `id`: `string`; `tagId`: `undefined`; `userId`: `undefined`; \}; \}; `result`: \{ `data`: \{ `unassignUserTag`: `undefined`; `user`: \{ `__typename`: `string`; `appUserProfile`: \{ `__typename`: `string`; `_id`: `string`; `adminFor`: `object`[]; `appLanguageCode`: `string`; `createdEvents`: `object`[]; `createdOrganizations`: `object`[]; `eventAdmin`: `object`[]; `isSuperAdmin`: `boolean`; `pluginCreationAllowed`: `boolean`; \}; `user`: \{ `__typename`: `string`; `_id`: `string`; `address`: \{ `city`: `string`; `countryCode`: `string`; `line1`: `string`; `state`: `string`; \}; `birthDate`: `string`; `createdAt`: `string`; `educationGrade`: `string`; `email`: `string`; `employmentStatus`: `string`; `eventsAttended`: `never`[]; `firstName`: `string`; `gender`: `string`; `image`: `null`; `joinedOrganizations`: `object`[]; `lastName`: `string`; `maritalStatus`: `string`; `membershipRequests`: `never`[]; `organizationsBlockedBy`: `never`[]; `phone`: \{ `mobile`: `string`; \}; `registeredEvents`: `object`[]; `tagsAssignedWith`: \{ `edges`: (\{ `cursor`: ...; `node`: ...; \} \| \{ `cursor`: ...; `node`: ...; \})[]; `pageInfo`: \{ `endCursor`: `string`; `hasNextPage`: `boolean`; `hasPreviousPage`: `boolean`; `startCursor`: `string`; \}; `totalCount`: `number`; \}; \}; \}; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `after`: `undefined`; `first`: `undefined`; `id`: `undefined`; `tagId`: `string`; `userId`: `string`; \}; \}; `result`: \{ `data`: \{ `unassignUserTag`: \{ `_id`: `string`; \}; `user`: `undefined`; \}; \}; \})[] + +Defined in: [src/screens/MemberDetail/MemberDetailMocks.ts:5](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/MemberDetail/MemberDetailMocks.ts#L5) diff --git a/docs/docs/auto-docs/screens/MemberDetail/MemberDetailMocks/variables/MOCKS2.md b/docs/docs/auto-docs/screens/MemberDetail/MemberDetailMocks/variables/MOCKS2.md new file mode 100644 index 0000000000..daeedb4557 --- /dev/null +++ b/docs/docs/auto-docs/screens/MemberDetail/MemberDetailMocks/variables/MOCKS2.md @@ -0,0 +1,221 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [screens/MemberDetail/MemberDetailMocks](../README.md) / MOCKS2 + +# Variable: MOCKS2 + +> `const` **MOCKS2**: `object`[] + +Defined in: [src/screens/MemberDetail/MemberDetailMocks.ts:337](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/MemberDetail/MemberDetailMocks.ts#L337) + +## Type declaration + +### request + +> **request**: `object` + +#### request.query + +> **query**: `DocumentNode` = `USER_DETAILS` + +#### request.variables + +> **variables**: `object` + +#### request.variables.first + +> **first**: `number` = `TAGS_QUERY_DATA_CHUNK_SIZE` + +#### request.variables.id + +> **id**: `string` = `'rishav-jha-mech'` + +### result + +> **result**: `object` + +#### result.data + +> **data**: `object` + +#### result.data.user + +> **user**: `object` + +#### result.data.user.\_\_typename + +> **\_\_typename**: `string` = `'UserData'` + +#### result.data.user.appUserProfile + +> **appUserProfile**: `object` + +#### result.data.user.appUserProfile.\_\_typename + +> **\_\_typename**: `string` = `'AppUserProfile'` + +#### result.data.user.appUserProfile.\_id + +> **\_id**: `string` = `'1'` + +#### result.data.user.appUserProfile.adminFor + +> **adminFor**: `never`[] = `[]` + +#### result.data.user.appUserProfile.appLanguageCode + +> **appLanguageCode**: `string` = `'en'` + +#### result.data.user.appUserProfile.createdEvents + +> **createdEvents**: `object`[] + +#### result.data.user.appUserProfile.createdOrganizations + +> **createdOrganizations**: `object`[] + +#### result.data.user.appUserProfile.eventAdmin + +> **eventAdmin**: `object`[] + +#### result.data.user.appUserProfile.isSuperAdmin + +> **isSuperAdmin**: `boolean` = `false` + +#### result.data.user.appUserProfile.pluginCreationAllowed + +> **pluginCreationAllowed**: `boolean` = `true` + +#### result.data.user.user + +> **user**: `object` + +#### result.data.user.user.\_\_typename + +> **\_\_typename**: `string` = `'User'` + +#### result.data.user.user.\_id + +> **\_id**: `string` = `'1'` + +#### result.data.user.user.address + +> **address**: `object` + +#### result.data.user.user.address.city + +> **city**: `string` = `''` + +#### result.data.user.user.address.countryCode + +> **countryCode**: `string` = `''` + +#### result.data.user.user.address.line1 + +> **line1**: `string` = `''` + +#### result.data.user.user.address.state + +> **state**: `string` = `''` + +#### result.data.user.user.birthDate + +> **birthDate**: `string` = `'2024-03-14'` + +#### result.data.user.user.createdAt + +> **createdAt**: `string` = `'2024-02-26T10:36:33.098Z'` + +#### result.data.user.user.educationGrade + +> **educationGrade**: `string` = `''` + +#### result.data.user.user.email + +> **email**: `string` = `'adi790u@gmail.com'` + +#### result.data.user.user.employmentStatus + +> **employmentStatus**: `string` = `''` + +#### result.data.user.user.eventsAttended + +> **eventsAttended**: `object`[] + +#### result.data.user.user.firstName + +> **firstName**: `string` = `'Aditya'` + +#### result.data.user.user.gender + +> **gender**: `string` = `''` + +#### result.data.user.user.image + +> **image**: `string` = `'https://placeholder.com/200x200'` + +#### result.data.user.user.joinedOrganizations + +> **joinedOrganizations**: `object`[] + +#### result.data.user.user.lastName + +> **lastName**: `string` = `'Agarwal'` + +#### result.data.user.user.maritalStatus + +> **maritalStatus**: `string` = `''` + +#### result.data.user.user.membershipRequests + +> **membershipRequests**: `never`[] = `[]` + +#### result.data.user.user.organizationsBlockedBy + +> **organizationsBlockedBy**: `never`[] = `[]` + +#### result.data.user.user.phone + +> **phone**: `object` + +#### result.data.user.user.phone.mobile + +> **mobile**: `string` = `''` + +#### result.data.user.user.registeredEvents + +> **registeredEvents**: `object`[] + +#### result.data.user.user.tagsAssignedWith + +> **tagsAssignedWith**: `object` + +#### result.data.user.user.tagsAssignedWith.edges + +> **edges**: `never`[] = `[]` + +#### result.data.user.user.tagsAssignedWith.pageInfo + +> **pageInfo**: `object` + +#### result.data.user.user.tagsAssignedWith.pageInfo.endCursor + +> **endCursor**: `null` = `null` + +#### result.data.user.user.tagsAssignedWith.pageInfo.hasNextPage + +> **hasNextPage**: `boolean` = `false` + +#### result.data.user.user.tagsAssignedWith.pageInfo.hasPreviousPage + +> **hasPreviousPage**: `boolean` = `false` + +#### result.data.user.user.tagsAssignedWith.pageInfo.startCursor + +> **startCursor**: `null` = `null` + +#### result.data.user.user.tagsAssignedWith.totalCount + +> **totalCount**: `number` = `0` diff --git a/docs/docs/auto-docs/screens/MemberDetail/MemberDetailMocks/variables/MOCKS3.md b/docs/docs/auto-docs/screens/MemberDetail/MemberDetailMocks/variables/MOCKS3.md new file mode 100644 index 0000000000..4e44e6a1db --- /dev/null +++ b/docs/docs/auto-docs/screens/MemberDetail/MemberDetailMocks/variables/MOCKS3.md @@ -0,0 +1,221 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [screens/MemberDetail/MemberDetailMocks](../README.md) / MOCKS3 + +# Variable: MOCKS3 + +> `const` **MOCKS3**: `object`[] + +Defined in: [src/screens/MemberDetail/MemberDetailMocks.ts:437](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/MemberDetail/MemberDetailMocks.ts#L437) + +## Type declaration + +### request + +> **request**: `object` + +#### request.query + +> **query**: `DocumentNode` = `USER_DETAILS` + +#### request.variables + +> **variables**: `object` + +#### request.variables.first + +> **first**: `number` = `TAGS_QUERY_DATA_CHUNK_SIZE` + +#### request.variables.id + +> **id**: `string` = `'rishav-jha-mech'` + +### result + +> **result**: `object` + +#### result.data + +> **data**: `object` + +#### result.data.user + +> **user**: `object` + +#### result.data.user.\_\_typename + +> **\_\_typename**: `string` = `'UserData'` + +#### result.data.user.appUserProfile + +> **appUserProfile**: `object` + +#### result.data.user.appUserProfile.\_\_typename + +> **\_\_typename**: `string` = `'AppUserProfile'` + +#### result.data.user.appUserProfile.\_id + +> **\_id**: `string` = `'1'` + +#### result.data.user.appUserProfile.adminFor + +> **adminFor**: `never`[] = `[]` + +#### result.data.user.appUserProfile.appLanguageCode + +> **appLanguageCode**: `string` = `'en'` + +#### result.data.user.appUserProfile.createdEvents + +> **createdEvents**: `object`[] + +#### result.data.user.appUserProfile.createdOrganizations + +> **createdOrganizations**: `object`[] + +#### result.data.user.appUserProfile.eventAdmin + +> **eventAdmin**: `object`[] + +#### result.data.user.appUserProfile.isSuperAdmin + +> **isSuperAdmin**: `boolean` = `true` + +#### result.data.user.appUserProfile.pluginCreationAllowed + +> **pluginCreationAllowed**: `boolean` = `true` + +#### result.data.user.user + +> **user**: `object` + +#### result.data.user.user.\_\_typename + +> **\_\_typename**: `string` = `'User'` + +#### result.data.user.user.\_id + +> **\_id**: `string` = `'1'` + +#### result.data.user.user.address + +> **address**: `object` + +#### result.data.user.user.address.city + +> **city**: `string` = `''` + +#### result.data.user.user.address.countryCode + +> **countryCode**: `string` = `''` + +#### result.data.user.user.address.line1 + +> **line1**: `string` = `''` + +#### result.data.user.user.address.state + +> **state**: `string` = `''` + +#### result.data.user.user.birthDate + +> **birthDate**: `string` = `'2024-03-14'` + +#### result.data.user.user.createdAt + +> **createdAt**: `string` = `'2024-02-26T10:36:33.098Z'` + +#### result.data.user.user.educationGrade + +> **educationGrade**: `string` = `''` + +#### result.data.user.user.email + +> **email**: `string` = `'adi790u@gmail.com'` + +#### result.data.user.user.employmentStatus + +> **employmentStatus**: `string` = `''` + +#### result.data.user.user.eventsAttended + +> **eventsAttended**: `never`[] = `[]` + +#### result.data.user.user.firstName + +> **firstName**: `string` = `'Aditya'` + +#### result.data.user.user.gender + +> **gender**: `string` = `''` + +#### result.data.user.user.image + +> **image**: `string` = `'https://placeholder.com/200x200'` + +#### result.data.user.user.joinedOrganizations + +> **joinedOrganizations**: `object`[] + +#### result.data.user.user.lastName + +> **lastName**: `string` = `'Agarwal'` + +#### result.data.user.user.maritalStatus + +> **maritalStatus**: `string` = `''` + +#### result.data.user.user.membershipRequests + +> **membershipRequests**: `never`[] = `[]` + +#### result.data.user.user.organizationsBlockedBy + +> **organizationsBlockedBy**: `never`[] = `[]` + +#### result.data.user.user.phone + +> **phone**: `object` + +#### result.data.user.user.phone.mobile + +> **mobile**: `string` = `''` + +#### result.data.user.user.registeredEvents + +> **registeredEvents**: `object`[] + +#### result.data.user.user.tagsAssignedWith + +> **tagsAssignedWith**: `object` + +#### result.data.user.user.tagsAssignedWith.edges + +> **edges**: `never`[] = `[]` + +#### result.data.user.user.tagsAssignedWith.pageInfo + +> **pageInfo**: `object` + +#### result.data.user.user.tagsAssignedWith.pageInfo.endCursor + +> **endCursor**: `null` = `null` + +#### result.data.user.user.tagsAssignedWith.pageInfo.hasNextPage + +> **hasNextPage**: `boolean` = `false` + +#### result.data.user.user.tagsAssignedWith.pageInfo.hasPreviousPage + +> **hasPreviousPage**: `boolean` = `false` + +#### result.data.user.user.tagsAssignedWith.pageInfo.startCursor + +> **startCursor**: `null` = `null` + +#### result.data.user.user.tagsAssignedWith.totalCount + +> **totalCount**: `number` = `0` diff --git a/docs/docs/auto-docs/screens/OrgContribution/OrgContribution/README.md b/docs/docs/auto-docs/screens/OrgContribution/OrgContribution/README.md new file mode 100644 index 0000000000..60e9af1bc2 --- /dev/null +++ b/docs/docs/auto-docs/screens/OrgContribution/OrgContribution/README.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / screens/OrgContribution/OrgContribution + +# screens/OrgContribution/OrgContribution + +## Functions + +- [default](functions/default.md) diff --git a/docs/docs/auto-docs/screens/OrgContribution/OrgContribution/functions/default.md b/docs/docs/auto-docs/screens/OrgContribution/OrgContribution/functions/default.md new file mode 100644 index 0000000000..db094ccc33 --- /dev/null +++ b/docs/docs/auto-docs/screens/OrgContribution/OrgContribution/functions/default.md @@ -0,0 +1,19 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [screens/OrgContribution/OrgContribution](../README.md) / default + +# Function: default() + +> **default**(): `JSX.Element` + +Defined in: [src/screens/OrgContribution/OrgContribution.tsx:16](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/OrgContribution/OrgContribution.tsx#L16) + +The `orgContribution` component displays the contributions to an organization. +It includes a sidebar for filtering contributions by organization name and transaction ID. +Additionally, it shows recent contribution statistics and a list of contribution cards. + +## Returns + +`JSX.Element` diff --git a/docs/docs/auto-docs/screens/OrgList/OrgList/README.md b/docs/docs/auto-docs/screens/OrgList/OrgList/README.md new file mode 100644 index 0000000000..9bd1f0b701 --- /dev/null +++ b/docs/docs/auto-docs/screens/OrgList/OrgList/README.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / screens/OrgList/OrgList + +# screens/OrgList/OrgList + +## Functions + +- [default](functions/default.md) diff --git a/docs/docs/auto-docs/screens/OrgList/OrgList/functions/default.md b/docs/docs/auto-docs/screens/OrgList/OrgList/functions/default.md new file mode 100644 index 0000000000..8d9839d0a5 --- /dev/null +++ b/docs/docs/auto-docs/screens/OrgList/OrgList/functions/default.md @@ -0,0 +1,15 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [screens/OrgList/OrgList](../README.md) / default + +# Function: default() + +> **default**(): `JSX.Element` + +Defined in: [src/screens/OrgList/OrgList.tsx:33](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/OrgList/OrgList.tsx#L33) + +## Returns + +`JSX.Element` diff --git a/docs/docs/auto-docs/screens/OrgList/OrgListMocks/README.md b/docs/docs/auto-docs/screens/OrgList/OrgListMocks/README.md new file mode 100644 index 0000000000..5b9d765f0d --- /dev/null +++ b/docs/docs/auto-docs/screens/OrgList/OrgListMocks/README.md @@ -0,0 +1,14 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / screens/OrgList/OrgListMocks + +# screens/OrgList/OrgListMocks + +## Variables + +- [MOCKS](variables/MOCKS.md) +- [MOCKS\_ADMIN](variables/MOCKS_ADMIN.md) +- [MOCKS\_EMPTY](variables/MOCKS_EMPTY.md) +- [MOCKS\_WITH\_ERROR](variables/MOCKS_WITH_ERROR.md) diff --git a/docs/docs/auto-docs/screens/OrgList/OrgListMocks/variables/MOCKS.md b/docs/docs/auto-docs/screens/OrgList/OrgListMocks/variables/MOCKS.md new file mode 100644 index 0000000000..82aacec5eb --- /dev/null +++ b/docs/docs/auto-docs/screens/OrgList/OrgListMocks/variables/MOCKS.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [screens/OrgList/OrgListMocks](../README.md) / MOCKS + +# Variable: MOCKS + +> `const` **MOCKS**: (\{ `request`: \{ `notifyOnNetworkStatusChange`: `boolean`; `query`: `DocumentNode`; `variables`: \{ `address`: `undefined`; `description`: `undefined`; `filter`: `string`; `first`: `number`; `image`: `undefined`; `name`: `undefined`; `orderBy`: `string`; `skip`: `number`; `userId`: `undefined`; `userRegistrationRequired`: `undefined`; `visibleInSearch`: `undefined`; \}; \}; `result`: \{ `data`: \{ `createOrganization`: `undefined`; `createSampleOrganization`: `undefined`; `organizationsConnection`: [`InterfaceOrgConnectionInfoType`](../../../../utils/interfaces/interfaces/InterfaceOrgConnectionInfoType.md)[]; `user`: `undefined`; \}; \}; \} \| \{ `request`: \{ `notifyOnNetworkStatusChange`: `undefined`; `query`: `DocumentNode`; `variables`: \{ `address`: `undefined`; `description`: `undefined`; `filter`: `undefined`; `first`: `undefined`; `image`: `undefined`; `name`: `undefined`; `orderBy`: `undefined`; `skip`: `undefined`; `userId`: `string`; `userRegistrationRequired`: `undefined`; `visibleInSearch`: `undefined`; \}; \}; `result`: \{ `data`: \{ `createOrganization`: `undefined`; `createSampleOrganization`: `undefined`; `organizationsConnection`: `undefined`; `user`: [`InterfaceUserType`](../../../../utils/interfaces/interfaces/InterfaceUserType.md); \}; \}; \} \| \{ `request`: \{ `notifyOnNetworkStatusChange`: `undefined`; `query`: `DocumentNode`; `variables`: `undefined`; \}; `result`: \{ `data`: \{ `createOrganization`: `undefined`; `createSampleOrganization`: \{ `id`: `string`; `name`: `string`; \}; `organizationsConnection`: `undefined`; `user`: `undefined`; \}; \}; \} \| \{ `request`: \{ `notifyOnNetworkStatusChange`: `undefined`; `query`: `DocumentNode`; `variables`: \{ `address`: \{ `city`: `string`; `countryCode`: `string`; `dependentLocality`: `string`; `line1`: `string`; `line2`: `string`; `postalCode`: `string`; `sortingCode`: `string`; `state`: `string`; \}; `description`: `string`; `filter`: `undefined`; `first`: `undefined`; `image`: `string`; `name`: `string`; `orderBy`: `undefined`; `skip`: `undefined`; `userId`: `undefined`; `userRegistrationRequired`: `boolean`; `visibleInSearch`: `boolean`; \}; \}; `result`: \{ `data`: \{ `createOrganization`: \{ `_id`: `string`; \}; `createSampleOrganization`: `undefined`; `organizationsConnection`: `undefined`; `user`: `undefined`; \}; \}; \})[] + +Defined in: [src/screens/OrgList/OrgListMocks.ts:94](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/OrgList/OrgListMocks.ts#L94) diff --git a/docs/docs/auto-docs/screens/OrgList/OrgListMocks/variables/MOCKS_ADMIN.md b/docs/docs/auto-docs/screens/OrgList/OrgListMocks/variables/MOCKS_ADMIN.md new file mode 100644 index 0000000000..52c73027e4 --- /dev/null +++ b/docs/docs/auto-docs/screens/OrgList/OrgListMocks/variables/MOCKS_ADMIN.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [screens/OrgList/OrgListMocks](../README.md) / MOCKS\_ADMIN + +# Variable: MOCKS\_ADMIN + +> `const` **MOCKS\_ADMIN**: (\{ `request`: \{ `notifyOnNetworkStatusChange`: `boolean`; `query`: `DocumentNode`; `variables`: \{ `filter`: `string`; `first`: `number`; `orderBy`: `string`; `skip`: `number`; `userId`: `undefined`; \}; \}; `result`: \{ `data`: \{ `organizationsConnection`: [`InterfaceOrgConnectionInfoType`](../../../../utils/interfaces/interfaces/InterfaceOrgConnectionInfoType.md)[]; `user`: `undefined`; \}; \}; \} \| \{ `request`: \{ `notifyOnNetworkStatusChange`: `undefined`; `query`: `DocumentNode`; `variables`: \{ `filter`: `undefined`; `first`: `undefined`; `orderBy`: `undefined`; `skip`: `undefined`; `userId`: `string`; \}; \}; `result`: \{ `data`: \{ `organizationsConnection`: `undefined`; `user`: [`InterfaceUserType`](../../../../utils/interfaces/interfaces/InterfaceUserType.md); \}; \}; \})[] + +Defined in: [src/screens/OrgList/OrgListMocks.ts:228](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/OrgList/OrgListMocks.ts#L228) diff --git a/docs/docs/auto-docs/screens/OrgList/OrgListMocks/variables/MOCKS_EMPTY.md b/docs/docs/auto-docs/screens/OrgList/OrgListMocks/variables/MOCKS_EMPTY.md new file mode 100644 index 0000000000..774f6c1253 --- /dev/null +++ b/docs/docs/auto-docs/screens/OrgList/OrgListMocks/variables/MOCKS_EMPTY.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [screens/OrgList/OrgListMocks](../README.md) / MOCKS\_EMPTY + +# Variable: MOCKS\_EMPTY + +> `const` **MOCKS\_EMPTY**: (\{ `request`: \{ `notifyOnNetworkStatusChange`: `boolean`; `query`: `DocumentNode`; `variables`: \{ `filter`: `string`; `first`: `number`; `orderBy`: `string`; `skip`: `number`; `userId`: `undefined`; \}; \}; `result`: \{ `data`: \{ `organizationsConnection`: `never`[]; `user`: `undefined`; \}; \}; \} \| \{ `request`: \{ `notifyOnNetworkStatusChange`: `undefined`; `query`: `DocumentNode`; `variables`: \{ `filter`: `undefined`; `first`: `undefined`; `orderBy`: `undefined`; `skip`: `undefined`; `userId`: `string`; \}; \}; `result`: \{ `data`: \{ `organizationsConnection`: `undefined`; `user`: [`InterfaceUserType`](../../../../utils/interfaces/interfaces/InterfaceUserType.md); \}; \}; \})[] + +Defined in: [src/screens/OrgList/OrgListMocks.ts:164](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/OrgList/OrgListMocks.ts#L164) diff --git a/docs/docs/auto-docs/screens/OrgList/OrgListMocks/variables/MOCKS_WITH_ERROR.md b/docs/docs/auto-docs/screens/OrgList/OrgListMocks/variables/MOCKS_WITH_ERROR.md new file mode 100644 index 0000000000..ad41fb505a --- /dev/null +++ b/docs/docs/auto-docs/screens/OrgList/OrgListMocks/variables/MOCKS_WITH_ERROR.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [screens/OrgList/OrgListMocks](../README.md) / MOCKS\_WITH\_ERROR + +# Variable: MOCKS\_WITH\_ERROR + +> `const` **MOCKS\_WITH\_ERROR**: (\{ `error`: `undefined`; `request`: \{ `notifyOnNetworkStatusChange`: `boolean`; `query`: `DocumentNode`; `variables`: \{ `filter`: `string`; `first`: `number`; `orderBy`: `string`; `skip`: `number`; `userId`: `undefined`; \}; \}; `result`: \{ `data`: \{ `organizationsConnection`: [`InterfaceOrgConnectionInfoType`](../../../../utils/interfaces/interfaces/InterfaceOrgConnectionInfoType.md)[]; `user`: `undefined`; \}; \}; \} \| \{ `error`: `undefined`; `request`: \{ `notifyOnNetworkStatusChange`: `undefined`; `query`: `DocumentNode`; `variables`: \{ `filter`: `undefined`; `first`: `undefined`; `orderBy`: `undefined`; `skip`: `undefined`; `userId`: `string`; \}; \}; `result`: \{ `data`: \{ `organizationsConnection`: `undefined`; `user`: [`InterfaceUserType`](../../../../utils/interfaces/interfaces/InterfaceUserType.md); \}; \}; \} \| \{ `error`: `Error`; `request`: \{ `notifyOnNetworkStatusChange`: `undefined`; `query`: `DocumentNode`; `variables`: `undefined`; \}; `result`: `undefined`; \})[] + +Defined in: [src/screens/OrgList/OrgListMocks.ts:192](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/OrgList/OrgListMocks.ts#L192) diff --git a/docs/docs/auto-docs/screens/OrgList/OrganizationModal/README.md b/docs/docs/auto-docs/screens/OrgList/OrganizationModal/README.md new file mode 100644 index 0000000000..671448d22a --- /dev/null +++ b/docs/docs/auto-docs/screens/OrgList/OrganizationModal/README.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / screens/OrgList/OrganizationModal + +# screens/OrgList/OrganizationModal + +## Functions + +- [default](functions/default.md) diff --git a/docs/docs/auto-docs/screens/OrgList/OrganizationModal/functions/default.md b/docs/docs/auto-docs/screens/OrgList/OrganizationModal/functions/default.md new file mode 100644 index 0000000000..8201609cbf --- /dev/null +++ b/docs/docs/auto-docs/screens/OrgList/OrganizationModal/functions/default.md @@ -0,0 +1,33 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [screens/OrgList/OrganizationModal](../README.md) / default + +# Function: default() + +> **default**(`props`, `deprecatedLegacyContext`?): `ReactNode` + +Defined in: [src/screens/OrgList/OrganizationModal.tsx:55](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/OrgList/OrganizationModal.tsx#L55) + +Represents the organization modal component. + +## Parameters + +### props + +`InterfaceOrganizationModalProps` + +### deprecatedLegacyContext? + +`any` + +**Deprecated** + +**See** + +[React Docs](https://legacy.reactjs.org/docs/legacy-context.html#referencing-context-in-lifecycle-methods) + +## Returns + +`ReactNode` diff --git a/docs/docs/auto-docs/screens/OrgPost/OrgPost/README.md b/docs/docs/auto-docs/screens/OrgPost/OrgPost/README.md new file mode 100644 index 0000000000..c6c7b0e66e --- /dev/null +++ b/docs/docs/auto-docs/screens/OrgPost/OrgPost/README.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / screens/OrgPost/OrgPost + +# screens/OrgPost/OrgPost + +## Functions + +- [default](functions/default.md) diff --git a/docs/docs/auto-docs/screens/OrgPost/OrgPost/functions/default.md b/docs/docs/auto-docs/screens/OrgPost/OrgPost/functions/default.md new file mode 100644 index 0000000000..fe2d5a9ce2 --- /dev/null +++ b/docs/docs/auto-docs/screens/OrgPost/OrgPost/functions/default.md @@ -0,0 +1,21 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [screens/OrgPost/OrgPost](../README.md) / default + +# Function: default() + +> **default**(): `JSX.Element` + +Defined in: [src/screens/OrgPost/OrgPost.tsx:51](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/OrgPost/OrgPost.tsx#L51) + +This function is used to display the posts of the organization. It displays the posts in a card format. +It also provides the functionality to create a new post. The user can also sort the posts based on the date of creation. +The user can also search for a post based on the title of the post. + +## Returns + +`JSX.Element` + +JSX.Element which contains the posts of the organization. diff --git a/docs/docs/auto-docs/screens/OrgSettings/OrgSettings.mocks/README.md b/docs/docs/auto-docs/screens/OrgSettings/OrgSettings.mocks/README.md new file mode 100644 index 0000000000..bd267dc545 --- /dev/null +++ b/docs/docs/auto-docs/screens/OrgSettings/OrgSettings.mocks/README.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / screens/OrgSettings/OrgSettings.mocks + +# screens/OrgSettings/OrgSettings.mocks + +## Variables + +- [MOCKS](variables/MOCKS.md) diff --git a/docs/docs/auto-docs/screens/OrgSettings/OrgSettings.mocks/variables/MOCKS.md b/docs/docs/auto-docs/screens/OrgSettings/OrgSettings.mocks/variables/MOCKS.md new file mode 100644 index 0000000000..4b0a36127f --- /dev/null +++ b/docs/docs/auto-docs/screens/OrgSettings/OrgSettings.mocks/variables/MOCKS.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [screens/OrgSettings/OrgSettings.mocks](../README.md) / MOCKS + +# Variable: MOCKS + +> `const` **MOCKS**: (\{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `customFieldsByOrganizationId`: `undefined`; `id`: `string`; `isSampleOrganizationId`: `undefined`; `orderBy`: `undefined`; `organizationId`: `undefined`; `where`: `undefined`; \}; \}; `result`: \{ `data`: \{ `actionItemCategoriesByOrganization`: `undefined`; `agendaItemCategoriesByOrganization`: `undefined`; `customFieldsByOrganization`: `undefined`; `isSampleOrganization`: `undefined`; `organizations`: `object`[]; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `customFieldsByOrganizationId`: `string`; `id`: `undefined`; `isSampleOrganizationId`: `undefined`; `orderBy`: `undefined`; `organizationId`: `undefined`; `where`: `undefined`; \}; \}; `result`: \{ `data`: \{ `actionItemCategoriesByOrganization`: `undefined`; `agendaItemCategoriesByOrganization`: `undefined`; `customFieldsByOrganization`: `object`[]; `isSampleOrganization`: `undefined`; `organizations`: `undefined`; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `customFieldsByOrganizationId`: `undefined`; `id`: `undefined`; `isSampleOrganizationId`: `string`; `orderBy`: `undefined`; `organizationId`: `undefined`; `where`: `undefined`; \}; \}; `result`: \{ `data`: \{ `actionItemCategoriesByOrganization`: `undefined`; `agendaItemCategoriesByOrganization`: `undefined`; `customFieldsByOrganization`: `undefined`; `isSampleOrganization`: `boolean`; `organizations`: `undefined`; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `customFieldsByOrganizationId`: `undefined`; `id`: `undefined`; `isSampleOrganizationId`: `undefined`; `orderBy`: `undefined`; `organizationId`: `string`; `where`: `undefined`; \}; \}; `result`: \{ `data`: \{ `actionItemCategoriesByOrganization`: `undefined`; `agendaItemCategoriesByOrganization`: `never`[]; `customFieldsByOrganization`: `undefined`; `isSampleOrganization`: `undefined`; `organizations`: `undefined`; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `customFieldsByOrganizationId`: `undefined`; `id`: `undefined`; `isSampleOrganizationId`: `undefined`; `orderBy`: `string`; `organizationId`: `string`; `where`: \{ `name_contains`: `string`; \}; \}; \}; `result`: \{ `data`: \{ `actionItemCategoriesByOrganization`: `object`[]; `agendaItemCategoriesByOrganization`: `undefined`; `customFieldsByOrganization`: `undefined`; `isSampleOrganization`: `undefined`; `organizations`: `undefined`; \}; \}; \})[] + +Defined in: [src/screens/OrgSettings/OrgSettings.mocks.ts:9](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/OrgSettings/OrgSettings.mocks.ts#L9) diff --git a/docs/docs/auto-docs/screens/OrgSettings/OrgSettings/README.md b/docs/docs/auto-docs/screens/OrgSettings/OrgSettings/README.md new file mode 100644 index 0000000000..5957704391 --- /dev/null +++ b/docs/docs/auto-docs/screens/OrgSettings/OrgSettings/README.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / screens/OrgSettings/OrgSettings + +# screens/OrgSettings/OrgSettings + +## Functions + +- [default](functions/default.md) diff --git a/docs/docs/auto-docs/screens/OrgSettings/OrgSettings/functions/default.md b/docs/docs/auto-docs/screens/OrgSettings/OrgSettings/functions/default.md new file mode 100644 index 0000000000..e9c2b9d0e2 --- /dev/null +++ b/docs/docs/auto-docs/screens/OrgSettings/OrgSettings/functions/default.md @@ -0,0 +1,23 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [screens/OrgSettings/OrgSettings](../README.md) / default + +# Function: default() + +> **default**(): `JSX.Element` + +Defined in: [src/screens/OrgSettings/OrgSettings.tsx:29](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/OrgSettings/OrgSettings.tsx#L29) + +The `orgSettings` component provides a user interface for managing various settings related to an organization. +It includes options for updating organization details, deleting the organization, changing language preferences, +and managing custom fields and action item categories. + +The component renders different settings sections based on the user's selection from the tabs or dropdown menu. + +## Returns + +`JSX.Element` + +The rendered component displaying the organization settings. diff --git a/docs/docs/auto-docs/screens/OrganizationActionItems/ItemDeleteModal/README.md b/docs/docs/auto-docs/screens/OrganizationActionItems/ItemDeleteModal/README.md new file mode 100644 index 0000000000..0ff3318d38 --- /dev/null +++ b/docs/docs/auto-docs/screens/OrganizationActionItems/ItemDeleteModal/README.md @@ -0,0 +1,15 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / screens/OrganizationActionItems/ItemDeleteModal + +# screens/OrganizationActionItems/ItemDeleteModal + +## Interfaces + +- [InterfaceItemDeleteModalProps](interfaces/InterfaceItemDeleteModalProps.md) + +## Functions + +- [default](functions/default.md) diff --git a/docs/docs/auto-docs/screens/OrganizationActionItems/ItemDeleteModal/functions/default.md b/docs/docs/auto-docs/screens/OrganizationActionItems/ItemDeleteModal/functions/default.md new file mode 100644 index 0000000000..4763319b99 --- /dev/null +++ b/docs/docs/auto-docs/screens/OrganizationActionItems/ItemDeleteModal/functions/default.md @@ -0,0 +1,37 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [screens/OrganizationActionItems/ItemDeleteModal](../README.md) / default + +# Function: default() + +> **default**(`props`, `deprecatedLegacyContext`?): `ReactNode` + +Defined in: [src/screens/OrganizationActionItems/ItemDeleteModal.tsx:26](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/OrganizationActionItems/ItemDeleteModal.tsx#L26) + +A modal component for confirming the deletion of an action item. + +## Parameters + +### props + +[`InterfaceItemDeleteModalProps`](../interfaces/InterfaceItemDeleteModalProps.md) + +The properties passed to the component. + +### deprecatedLegacyContext? + +`any` + +**Deprecated** + +**See** + +[React Docs](https://legacy.reactjs.org/docs/legacy-context.html#referencing-context-in-lifecycle-methods) + +## Returns + +`ReactNode` + +The `ItemDeleteModal` component. diff --git a/docs/docs/auto-docs/screens/OrganizationActionItems/ItemDeleteModal/interfaces/InterfaceItemDeleteModalProps.md b/docs/docs/auto-docs/screens/OrganizationActionItems/ItemDeleteModal/interfaces/InterfaceItemDeleteModalProps.md new file mode 100644 index 0000000000..72eb8737cc --- /dev/null +++ b/docs/docs/auto-docs/screens/OrganizationActionItems/ItemDeleteModal/interfaces/InterfaceItemDeleteModalProps.md @@ -0,0 +1,51 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [screens/OrganizationActionItems/ItemDeleteModal](../README.md) / InterfaceItemDeleteModalProps + +# Interface: InterfaceItemDeleteModalProps + +Defined in: [src/screens/OrganizationActionItems/ItemDeleteModal.tsx:13](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/OrganizationActionItems/ItemDeleteModal.tsx#L13) + +Props for the `ItemDeleteModal` component. + +## Properties + +### actionItem + +> **actionItem**: `null` \| [`InterfaceActionItemInfo`](../../../../utils/interfaces/interfaces/InterfaceActionItemInfo.md) + +Defined in: [src/screens/OrganizationActionItems/ItemDeleteModal.tsx:16](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/OrganizationActionItems/ItemDeleteModal.tsx#L16) + +*** + +### actionItemsRefetch() + +> **actionItemsRefetch**: () => `void` + +Defined in: [src/screens/OrganizationActionItems/ItemDeleteModal.tsx:17](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/OrganizationActionItems/ItemDeleteModal.tsx#L17) + +#### Returns + +`void` + +*** + +### hide() + +> **hide**: () => `void` + +Defined in: [src/screens/OrganizationActionItems/ItemDeleteModal.tsx:15](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/OrganizationActionItems/ItemDeleteModal.tsx#L15) + +#### Returns + +`void` + +*** + +### isOpen + +> **isOpen**: `boolean` + +Defined in: [src/screens/OrganizationActionItems/ItemDeleteModal.tsx:14](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/OrganizationActionItems/ItemDeleteModal.tsx#L14) diff --git a/docs/docs/auto-docs/screens/OrganizationActionItems/ItemModal/README.md b/docs/docs/auto-docs/screens/OrganizationActionItems/ItemModal/README.md new file mode 100644 index 0000000000..0f04181068 --- /dev/null +++ b/docs/docs/auto-docs/screens/OrganizationActionItems/ItemModal/README.md @@ -0,0 +1,15 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / screens/OrganizationActionItems/ItemModal + +# screens/OrganizationActionItems/ItemModal + +## Interfaces + +- [InterfaceItemModalProps](interfaces/InterfaceItemModalProps.md) + +## Functions + +- [default](functions/default.md) diff --git a/docs/docs/auto-docs/screens/OrganizationActionItems/ItemModal/functions/default.md b/docs/docs/auto-docs/screens/OrganizationActionItems/ItemModal/functions/default.md new file mode 100644 index 0000000000..8836a78fb5 --- /dev/null +++ b/docs/docs/auto-docs/screens/OrganizationActionItems/ItemModal/functions/default.md @@ -0,0 +1,37 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [screens/OrganizationActionItems/ItemModal](../README.md) / default + +# Function: default() + +> **default**(`props`, `deprecatedLegacyContext`?): `ReactNode` + +Defined in: [src/screens/OrganizationActionItems/ItemModal.tsx:92](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/OrganizationActionItems/ItemModal.tsx#L92) + +A modal component for creating action items. + +## Parameters + +### props + +[`InterfaceItemModalProps`](../interfaces/InterfaceItemModalProps.md) + +The properties passed to the component. + +### deprecatedLegacyContext? + +`any` + +**Deprecated** + +**See** + +[React Docs](https://legacy.reactjs.org/docs/legacy-context.html#referencing-context-in-lifecycle-methods) + +## Returns + +`ReactNode` + +The `ItemModal` component. diff --git a/docs/docs/auto-docs/screens/OrganizationActionItems/ItemModal/interfaces/InterfaceItemModalProps.md b/docs/docs/auto-docs/screens/OrganizationActionItems/ItemModal/interfaces/InterfaceItemModalProps.md new file mode 100644 index 0000000000..1e88624614 --- /dev/null +++ b/docs/docs/auto-docs/screens/OrganizationActionItems/ItemModal/interfaces/InterfaceItemModalProps.md @@ -0,0 +1,75 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [screens/OrganizationActionItems/ItemModal](../README.md) / InterfaceItemModalProps + +# Interface: InterfaceItemModalProps + +Defined in: [src/screens/OrganizationActionItems/ItemModal.tsx:52](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/OrganizationActionItems/ItemModal.tsx#L52) + +Props for the `ItemModal` component. + +## Properties + +### actionItem + +> **actionItem**: `null` \| [`InterfaceActionItemInfo`](../../../../utils/interfaces/interfaces/InterfaceActionItemInfo.md) + +Defined in: [src/screens/OrganizationActionItems/ItemModal.tsx:58](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/OrganizationActionItems/ItemModal.tsx#L58) + +*** + +### actionItemsRefetch() + +> **actionItemsRefetch**: () => `void` + +Defined in: [src/screens/OrganizationActionItems/ItemModal.tsx:57](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/OrganizationActionItems/ItemModal.tsx#L57) + +#### Returns + +`void` + +*** + +### editMode + +> **editMode**: `boolean` + +Defined in: [src/screens/OrganizationActionItems/ItemModal.tsx:59](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/OrganizationActionItems/ItemModal.tsx#L59) + +*** + +### eventId + +> **eventId**: `undefined` \| `string` + +Defined in: [src/screens/OrganizationActionItems/ItemModal.tsx:56](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/OrganizationActionItems/ItemModal.tsx#L56) + +*** + +### hide() + +> **hide**: () => `void` + +Defined in: [src/screens/OrganizationActionItems/ItemModal.tsx:54](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/OrganizationActionItems/ItemModal.tsx#L54) + +#### Returns + +`void` + +*** + +### isOpen + +> **isOpen**: `boolean` + +Defined in: [src/screens/OrganizationActionItems/ItemModal.tsx:53](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/OrganizationActionItems/ItemModal.tsx#L53) + +*** + +### orgId + +> **orgId**: `string` + +Defined in: [src/screens/OrganizationActionItems/ItemModal.tsx:55](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/OrganizationActionItems/ItemModal.tsx#L55) diff --git a/docs/docs/auto-docs/screens/OrganizationActionItems/ItemUpdateStatusModal/README.md b/docs/docs/auto-docs/screens/OrganizationActionItems/ItemUpdateStatusModal/README.md new file mode 100644 index 0000000000..411595c919 --- /dev/null +++ b/docs/docs/auto-docs/screens/OrganizationActionItems/ItemUpdateStatusModal/README.md @@ -0,0 +1,15 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / screens/OrganizationActionItems/ItemUpdateStatusModal + +# screens/OrganizationActionItems/ItemUpdateStatusModal + +## Interfaces + +- [InterfaceItemUpdateStatusModalProps](interfaces/InterfaceItemUpdateStatusModalProps.md) + +## Functions + +- [default](functions/default.md) diff --git a/docs/docs/auto-docs/screens/OrganizationActionItems/ItemUpdateStatusModal/functions/default.md b/docs/docs/auto-docs/screens/OrganizationActionItems/ItemUpdateStatusModal/functions/default.md new file mode 100644 index 0000000000..c95d47dfae --- /dev/null +++ b/docs/docs/auto-docs/screens/OrganizationActionItems/ItemUpdateStatusModal/functions/default.md @@ -0,0 +1,31 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [screens/OrganizationActionItems/ItemUpdateStatusModal](../README.md) / default + +# Function: default() + +> **default**(`props`, `deprecatedLegacyContext`?): `ReactNode` + +Defined in: [src/screens/OrganizationActionItems/ItemUpdateStatusModal.tsx:18](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/OrganizationActionItems/ItemUpdateStatusModal.tsx#L18) + +## Parameters + +### props + +[`InterfaceItemUpdateStatusModalProps`](../interfaces/InterfaceItemUpdateStatusModalProps.md) + +### deprecatedLegacyContext? + +`any` + +**Deprecated** + +**See** + +[React Docs](https://legacy.reactjs.org/docs/legacy-context.html#referencing-context-in-lifecycle-methods) + +## Returns + +`ReactNode` diff --git a/docs/docs/auto-docs/screens/OrganizationActionItems/ItemUpdateStatusModal/interfaces/InterfaceItemUpdateStatusModalProps.md b/docs/docs/auto-docs/screens/OrganizationActionItems/ItemUpdateStatusModal/interfaces/InterfaceItemUpdateStatusModalProps.md new file mode 100644 index 0000000000..6291e68de0 --- /dev/null +++ b/docs/docs/auto-docs/screens/OrganizationActionItems/ItemUpdateStatusModal/interfaces/InterfaceItemUpdateStatusModalProps.md @@ -0,0 +1,49 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [screens/OrganizationActionItems/ItemUpdateStatusModal](../README.md) / InterfaceItemUpdateStatusModalProps + +# Interface: InterfaceItemUpdateStatusModalProps + +Defined in: [src/screens/OrganizationActionItems/ItemUpdateStatusModal.tsx:11](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/OrganizationActionItems/ItemUpdateStatusModal.tsx#L11) + +## Properties + +### actionItem + +> **actionItem**: [`InterfaceActionItemInfo`](../../../../utils/interfaces/interfaces/InterfaceActionItemInfo.md) + +Defined in: [src/screens/OrganizationActionItems/ItemUpdateStatusModal.tsx:15](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/OrganizationActionItems/ItemUpdateStatusModal.tsx#L15) + +*** + +### actionItemsRefetch() + +> **actionItemsRefetch**: () => `void` + +Defined in: [src/screens/OrganizationActionItems/ItemUpdateStatusModal.tsx:14](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/OrganizationActionItems/ItemUpdateStatusModal.tsx#L14) + +#### Returns + +`void` + +*** + +### hide() + +> **hide**: () => `void` + +Defined in: [src/screens/OrganizationActionItems/ItemUpdateStatusModal.tsx:13](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/OrganizationActionItems/ItemUpdateStatusModal.tsx#L13) + +#### Returns + +`void` + +*** + +### isOpen + +> **isOpen**: `boolean` + +Defined in: [src/screens/OrganizationActionItems/ItemUpdateStatusModal.tsx:12](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/OrganizationActionItems/ItemUpdateStatusModal.tsx#L12) diff --git a/docs/docs/auto-docs/screens/OrganizationActionItems/ItemViewModal/README.md b/docs/docs/auto-docs/screens/OrganizationActionItems/ItemViewModal/README.md new file mode 100644 index 0000000000..cf8b41b016 --- /dev/null +++ b/docs/docs/auto-docs/screens/OrganizationActionItems/ItemViewModal/README.md @@ -0,0 +1,15 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / screens/OrganizationActionItems/ItemViewModal + +# screens/OrganizationActionItems/ItemViewModal + +## Interfaces + +- [InterfaceViewModalProps](interfaces/InterfaceViewModalProps.md) + +## Functions + +- [default](functions/default.md) diff --git a/docs/docs/auto-docs/screens/OrganizationActionItems/ItemViewModal/functions/default.md b/docs/docs/auto-docs/screens/OrganizationActionItems/ItemViewModal/functions/default.md new file mode 100644 index 0000000000..1164901d05 --- /dev/null +++ b/docs/docs/auto-docs/screens/OrganizationActionItems/ItemViewModal/functions/default.md @@ -0,0 +1,38 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [screens/OrganizationActionItems/ItemViewModal](../README.md) / default + +# Function: default() + +> **default**(`props`, `deprecatedLegacyContext`?): `ReactNode` + +Defined in: [src/screens/OrganizationActionItems/ItemViewModal.tsx:32](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/OrganizationActionItems/ItemViewModal.tsx#L32) + +A modal dialog for viewing action item details. + +## Parameters + +### props + +[`InterfaceViewModalProps`](../interfaces/InterfaceViewModalProps.md) + +### deprecatedLegacyContext? + +`any` + +**Deprecated** + +**See** + +[React Docs](https://legacy.reactjs.org/docs/legacy-context.html#referencing-context-in-lifecycle-methods) + +## Returns + +`ReactNode` + +The rendered modal component. + +The `ItemViewModal` component displays all the fields of an action item in a modal dialog. +It includes fields for assignee, assigner, category, pre and post completion notes, assignment date, due date, completion date, and event. diff --git a/docs/docs/auto-docs/screens/OrganizationActionItems/ItemViewModal/interfaces/InterfaceViewModalProps.md b/docs/docs/auto-docs/screens/OrganizationActionItems/ItemViewModal/interfaces/InterfaceViewModalProps.md new file mode 100644 index 0000000000..8f705150e6 --- /dev/null +++ b/docs/docs/auto-docs/screens/OrganizationActionItems/ItemViewModal/interfaces/InterfaceViewModalProps.md @@ -0,0 +1,37 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [screens/OrganizationActionItems/ItemViewModal](../README.md) / InterfaceViewModalProps + +# Interface: InterfaceViewModalProps + +Defined in: [src/screens/OrganizationActionItems/ItemViewModal.tsx:13](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/OrganizationActionItems/ItemViewModal.tsx#L13) + +## Properties + +### hide() + +> **hide**: () => `void` + +Defined in: [src/screens/OrganizationActionItems/ItemViewModal.tsx:15](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/OrganizationActionItems/ItemViewModal.tsx#L15) + +#### Returns + +`void` + +*** + +### isOpen + +> **isOpen**: `boolean` + +Defined in: [src/screens/OrganizationActionItems/ItemViewModal.tsx:14](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/OrganizationActionItems/ItemViewModal.tsx#L14) + +*** + +### item + +> **item**: [`InterfaceActionItemInfo`](../../../../utils/interfaces/interfaces/InterfaceActionItemInfo.md) + +Defined in: [src/screens/OrganizationActionItems/ItemViewModal.tsx:16](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/OrganizationActionItems/ItemViewModal.tsx#L16) diff --git a/docs/docs/auto-docs/screens/OrganizationActionItems/OrganizationActionItem.mocks/README.md b/docs/docs/auto-docs/screens/OrganizationActionItems/OrganizationActionItem.mocks/README.md new file mode 100644 index 0000000000..876af623c0 --- /dev/null +++ b/docs/docs/auto-docs/screens/OrganizationActionItems/OrganizationActionItem.mocks/README.md @@ -0,0 +1,13 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / screens/OrganizationActionItems/OrganizationActionItem.mocks + +# screens/OrganizationActionItems/OrganizationActionItem.mocks + +## Variables + +- [MOCKS](variables/MOCKS.md) +- [MOCKS\_EMPTY](variables/MOCKS_EMPTY.md) +- [MOCKS\_ERROR](variables/MOCKS_ERROR.md) diff --git a/docs/docs/auto-docs/screens/OrganizationActionItems/OrganizationActionItem.mocks/variables/MOCKS.md b/docs/docs/auto-docs/screens/OrganizationActionItems/OrganizationActionItem.mocks/variables/MOCKS.md new file mode 100644 index 0000000000..2bcb31cfee --- /dev/null +++ b/docs/docs/auto-docs/screens/OrganizationActionItems/OrganizationActionItem.mocks/variables/MOCKS.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [screens/OrganizationActionItems/OrganizationActionItem.mocks](../README.md) / MOCKS + +# Variable: MOCKS + +> `const` **MOCKS**: (\{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `id`: `string`; \}; \}; `result`: \{ `data`: \{ `organizations`: `object`[]; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `organizationId`: `string`; `where`: \{ `is_disabled`: `boolean`; \}; \}; \}; `result`: \{ `data`: \{ `actionItemCategoriesByOrganization`: (\{ `_id`: `string`; `createdAt`: `string`; `creator`: \{ `_id`: `string`; `firstName`: `string`; `lastName`: `string`; \}; `isDisabled`: `boolean`; `name`: `string`; \} \| \{ `_id`: `undefined`; `createdAt`: `string`; `creator`: \{ `_id`: `undefined`; `firstName`: `string`; `lastName`: `string`; \}; `isDisabled`: `boolean`; `name`: `string`; \})[]; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `where`: \{ `eventId`: `string`; `hasAccepted`: `boolean`; \}; \}; \}; `result`: \{ `data`: \{ `getEventVolunteers`: (\{ `_id`: `string`; `assignments`: `never`[]; `groups`: `object`[]; `hasAccepted`: `boolean`; `hoursVolunteered`: `number`; `user`: \{ `_id`: `string`; `firstName`: `string`; `image`: `null`; `lastName`: `string`; \}; \} \| \{ `_id`: `undefined`; `assignments`: `never`[]; `groups`: `never`[]; `hasAccepted`: `boolean`; `hoursVolunteered`: `number`; `user`: \{ `_id`: `undefined`; `firstName`: `string`; `image`: `null`; `lastName`: `string`; \}; \})[]; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `where`: \{ `eventId`: `undefined`; `hasAccepted`: `boolean`; \}; \}; \}; `result`: \{ `data`: \{ `getEventVolunteers`: `never`[]; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `where`: \{ `eventId`: `string`; \}; \}; \}; `result`: \{ `data`: \{ `getEventVolunteerGroups`: (\{ `_id`: `string`; `assignments`: `never`[]; `createdAt`: `string`; `creator`: \{ `_id`: `string`; `firstName`: `string`; `image`: `null`; `lastName`: `string`; \}; `description`: `string`; `event`: \{ `_id`: `string`; \}; `leader`: \{ `_id`: `string`; `firstName`: `string`; `image`: `null`; `lastName`: `string`; \}; `name`: `string`; `volunteers`: `object`[]; `volunteersRequired`: `number`; \} \| \{ `_id`: `undefined`; `assignments`: `never`[]; `createdAt`: `string`; `creator`: \{ `_id`: `string`; `firstName`: `string`; `image`: `null`; `lastName`: `string`; \}; `description`: `string`; `event`: \{ `_id`: `string`; \}; `leader`: \{ `_id`: `string`; `firstName`: `string`; `image`: `null`; `lastName`: `string`; \}; `name`: `string`; `volunteers`: `never`[]; `volunteersRequired`: `number`; \})[]; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `where`: \{ `eventId`: `undefined`; \}; \}; \}; `result`: \{ `data`: \{ `getEventVolunteerGroups`: `never`[]; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `actionItemCategoryId`: `undefined`; `actionItemId`: `undefined`; `allottedHours`: `undefined`; `assigneeId`: `undefined`; `assigneeType`: `undefined`; `dDate`: `undefined`; `dueDate`: `undefined`; `eventId`: `string`; `isCompleted`: `undefined`; `orderBy`: `null`; `organizationId`: `string`; `postCompletionNotes`: `undefined`; `preCompletionNotes`: `undefined`; `where`: \{ `assigneeName`: `string`; `categoryName`: `undefined`; `is_completed`: `undefined`; \}; \}; \}; `result`: \{ `data`: \{ `actionItemsByOrganization`: [`InterfaceActionItemInfo`](../../../../utils/interfaces/interfaces/InterfaceActionItemInfo.md)[]; `createActionItem`: `undefined`; `removeActionItem`: `undefined`; `updateActionItem`: `undefined`; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `actionItemCategoryId`: `undefined`; `actionItemId`: `undefined`; `allottedHours`: `undefined`; `assigneeId`: `undefined`; `assigneeType`: `undefined`; `dDate`: `undefined`; `dueDate`: `undefined`; `eventId`: `string`; `isCompleted`: `undefined`; `orderBy`: `null`; `organizationId`: `string`; `postCompletionNotes`: `undefined`; `preCompletionNotes`: `undefined`; `where`: \{ `assigneeName`: `undefined`; `categoryName`: `string`; `is_completed`: `undefined`; \}; \}; \}; `result`: \{ `data`: \{ `actionItemsByOrganization`: [`InterfaceActionItemInfo`](../../../../utils/interfaces/interfaces/InterfaceActionItemInfo.md)[]; `createActionItem`: `undefined`; `removeActionItem`: `undefined`; `updateActionItem`: `undefined`; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `actionItemCategoryId`: `undefined`; `actionItemId`: `undefined`; `allottedHours`: `undefined`; `assigneeId`: `undefined`; `assigneeType`: `undefined`; `dDate`: `undefined`; `dueDate`: `undefined`; `eventId`: `string`; `isCompleted`: `undefined`; `orderBy`: `string`; `organizationId`: `string`; `postCompletionNotes`: `undefined`; `preCompletionNotes`: `undefined`; `where`: \{ `assigneeName`: `string`; `categoryName`: `undefined`; `is_completed`: `undefined`; \}; \}; \}; `result`: \{ `data`: \{ `actionItemsByOrganization`: [`InterfaceActionItemInfo`](../../../../utils/interfaces/interfaces/InterfaceActionItemInfo.md)[]; `createActionItem`: `undefined`; `removeActionItem`: `undefined`; `updateActionItem`: `undefined`; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `actionItemCategoryId`: `undefined`; `actionItemId`: `undefined`; `allottedHours`: `undefined`; `assigneeId`: `undefined`; `assigneeType`: `undefined`; `dDate`: `undefined`; `dueDate`: `undefined`; `eventId`: `string`; `isCompleted`: `undefined`; `orderBy`: `null`; `organizationId`: `string`; `postCompletionNotes`: `undefined`; `preCompletionNotes`: `undefined`; `where`: \{ `assigneeName`: `string`; `categoryName`: `undefined`; `is_completed`: `boolean`; \}; \}; \}; `result`: \{ `data`: \{ `actionItemsByOrganization`: [`InterfaceActionItemInfo`](../../../../utils/interfaces/interfaces/InterfaceActionItemInfo.md)[]; `createActionItem`: `undefined`; `removeActionItem`: `undefined`; `updateActionItem`: `undefined`; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `actionItemCategoryId`: `undefined`; `actionItemId`: `string`; `allottedHours`: `undefined`; `assigneeId`: `undefined`; `assigneeType`: `undefined`; `dDate`: `undefined`; `dueDate`: `undefined`; `eventId`: `undefined`; `isCompleted`: `undefined`; `orderBy`: `undefined`; `organizationId`: `undefined`; `postCompletionNotes`: `undefined`; `preCompletionNotes`: `undefined`; `where`: `undefined`; \}; \}; `result`: \{ `data`: \{ `actionItemsByOrganization`: `undefined`; `createActionItem`: `undefined`; `removeActionItem`: \{ `_id`: `string`; \}; `updateActionItem`: `undefined`; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `actionItemCategoryId`: `undefined`; `actionItemId`: `string`; `allottedHours`: `undefined`; `assigneeId`: `string`; `assigneeType`: `string`; `dDate`: `undefined`; `dueDate`: `undefined`; `eventId`: `undefined`; `isCompleted`: `boolean`; `orderBy`: `undefined`; `organizationId`: `undefined`; `postCompletionNotes`: `string`; `preCompletionNotes`: `undefined`; `where`: `undefined`; \}; \}; `result`: \{ `data`: \{ `actionItemsByOrganization`: `undefined`; `createActionItem`: `undefined`; `removeActionItem`: `undefined`; `updateActionItem`: \{ `_id`: `string`; \}; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `actionItemCategoryId`: `string`; `actionItemId`: `string`; `allottedHours`: `number`; `assigneeId`: `string`; `assigneeType`: `string`; `dDate`: `undefined`; `dueDate`: `undefined`; `eventId`: `undefined`; `isCompleted`: `undefined`; `orderBy`: `undefined`; `organizationId`: `undefined`; `postCompletionNotes`: `string`; `preCompletionNotes`: `undefined`; `where`: `undefined`; \}; \}; `result`: \{ `data`: \{ `actionItemsByOrganization`: `undefined`; `createActionItem`: `undefined`; `removeActionItem`: `undefined`; `updateActionItem`: \{ `_id`: `string`; \}; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `actionItemCategoryId`: `string`; `actionItemId`: `string`; `allottedHours`: `number`; `assigneeId`: `string`; `assigneeType`: `string`; `dDate`: `undefined`; `dueDate`: `string`; `eventId`: `undefined`; `isCompleted`: `undefined`; `orderBy`: `undefined`; `organizationId`: `undefined`; `postCompletionNotes`: `undefined`; `preCompletionNotes`: `string`; `where`: `undefined`; \}; \}; `result`: \{ `data`: \{ `actionItemsByOrganization`: `undefined`; `createActionItem`: `undefined`; `removeActionItem`: `undefined`; `updateActionItem`: \{ `_id`: `string`; \}; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `actionItemCategoryId`: `undefined`; `actionItemId`: `string`; `allottedHours`: `undefined`; `assigneeId`: `string`; `assigneeType`: `undefined`; `dDate`: `undefined`; `dueDate`: `undefined`; `eventId`: `undefined`; `isCompleted`: `boolean`; `orderBy`: `undefined`; `organizationId`: `undefined`; `postCompletionNotes`: `string`; `preCompletionNotes`: `undefined`; `where`: `undefined`; \}; \}; `result`: \{ `data`: \{ `actionItemsByOrganization`: `undefined`; `createActionItem`: `undefined`; `removeActionItem`: `undefined`; `updateActionItem`: \{ `_id`: `string`; \}; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `actionItemCategoryId`: `string`; `actionItemId`: `string`; `allottedHours`: `number`; `assigneeId`: `string`; `assigneeType`: `string`; `dDate`: `undefined`; `dueDate`: `undefined`; `eventId`: `undefined`; `isCompleted`: `undefined`; `orderBy`: `undefined`; `organizationId`: `undefined`; `postCompletionNotes`: `undefined`; `preCompletionNotes`: `undefined`; `where`: `undefined`; \}; \}; `result`: \{ `data`: \{ `actionItemsByOrganization`: `undefined`; `createActionItem`: `undefined`; `removeActionItem`: `undefined`; `updateActionItem`: \{ `_id`: `string`; \}; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `actionItemCategoryId`: `string`; `actionItemId`: `undefined`; `allottedHours`: `number`; `assigneeId`: `string`; `assigneeType`: `string`; `dDate`: `string`; `dueDate`: `undefined`; `eventId`: `undefined`; `isCompleted`: `undefined`; `orderBy`: `undefined`; `organizationId`: `undefined`; `postCompletionNotes`: `undefined`; `preCompletionNotes`: `string`; `where`: `undefined`; \}; \}; `result`: \{ `data`: \{ `actionItemsByOrganization`: `undefined`; `createActionItem`: \{ `_id`: `string`; \}; `removeActionItem`: `undefined`; `updateActionItem`: `undefined`; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `actionItemCategoryId`: `string`; `actionItemId`: `undefined`; `allottedHours`: `number`; `assigneeId`: `string`; `assigneeType`: `string`; `dDate`: `string`; `dueDate`: `undefined`; `eventId`: `string`; `isCompleted`: `undefined`; `orderBy`: `undefined`; `organizationId`: `undefined`; `postCompletionNotes`: `undefined`; `preCompletionNotes`: `string`; `where`: `undefined`; \}; \}; `result`: \{ `data`: \{ `actionItemsByOrganization`: `undefined`; `createActionItem`: \{ `_id`: `string`; \}; `removeActionItem`: `undefined`; `updateActionItem`: `undefined`; \}; \}; \})[] + +Defined in: [src/screens/OrganizationActionItems/OrganizationActionItem.mocks.ts:21](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/OrganizationActionItems/OrganizationActionItem.mocks.ts#L21) diff --git a/docs/docs/auto-docs/screens/OrganizationActionItems/OrganizationActionItem.mocks/variables/MOCKS_EMPTY.md b/docs/docs/auto-docs/screens/OrganizationActionItems/OrganizationActionItem.mocks/variables/MOCKS_EMPTY.md new file mode 100644 index 0000000000..b352b5c44f --- /dev/null +++ b/docs/docs/auto-docs/screens/OrganizationActionItems/OrganizationActionItem.mocks/variables/MOCKS_EMPTY.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [screens/OrganizationActionItems/OrganizationActionItem.mocks](../README.md) / MOCKS\_EMPTY + +# Variable: MOCKS\_EMPTY + +> `const` **MOCKS\_EMPTY**: (\{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `id`: `string`; \}; \}; `result`: \{ `data`: \{ `organizations`: `object`[]; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `organizationId`: `string`; `where`: \{ `is_disabled`: `boolean`; \}; \}; \}; `result`: \{ `data`: \{ `actionItemCategoriesByOrganization`: (\{ `_id`: `string`; `createdAt`: `string`; `creator`: \{ `_id`: `string`; `firstName`: `string`; `lastName`: `string`; \}; `isDisabled`: `boolean`; `name`: `string`; \} \| \{ `_id`: `undefined`; `createdAt`: `string`; `creator`: \{ `_id`: `undefined`; `firstName`: `string`; `lastName`: `string`; \}; `isDisabled`: `boolean`; `name`: `string`; \})[]; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `where`: \{ `eventId`: `string`; `hasAccepted`: `boolean`; \}; \}; \}; `result`: \{ `data`: \{ `getEventVolunteers`: (\{ `_id`: `string`; `assignments`: `never`[]; `groups`: `object`[]; `hasAccepted`: `boolean`; `hoursVolunteered`: `number`; `user`: \{ `_id`: `string`; `firstName`: `string`; `image`: `null`; `lastName`: `string`; \}; \} \| \{ `_id`: `undefined`; `assignments`: `never`[]; `groups`: `never`[]; `hasAccepted`: `boolean`; `hoursVolunteered`: `number`; `user`: \{ `_id`: `undefined`; `firstName`: `string`; `image`: `null`; `lastName`: `string`; \}; \})[]; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `where`: \{ `eventId`: `undefined`; `hasAccepted`: `boolean`; \}; \}; \}; `result`: \{ `data`: \{ `getEventVolunteers`: `never`[]; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `where`: \{ `eventId`: `string`; \}; \}; \}; `result`: \{ `data`: \{ `getEventVolunteerGroups`: (\{ `_id`: `string`; `assignments`: `never`[]; `createdAt`: `string`; `creator`: \{ `_id`: `string`; `firstName`: `string`; `image`: `null`; `lastName`: `string`; \}; `description`: `string`; `event`: \{ `_id`: `string`; \}; `leader`: \{ `_id`: `string`; `firstName`: `string`; `image`: `null`; `lastName`: `string`; \}; `name`: `string`; `volunteers`: `object`[]; `volunteersRequired`: `number`; \} \| \{ `_id`: `undefined`; `assignments`: `never`[]; `createdAt`: `string`; `creator`: \{ `_id`: `string`; `firstName`: `string`; `image`: `null`; `lastName`: `string`; \}; `description`: `string`; `event`: \{ `_id`: `string`; \}; `leader`: \{ `_id`: `string`; `firstName`: `string`; `image`: `null`; `lastName`: `string`; \}; `name`: `string`; `volunteers`: `never`[]; `volunteersRequired`: `number`; \})[]; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `where`: \{ `eventId`: `undefined`; \}; \}; \}; `result`: \{ `data`: \{ `getEventVolunteerGroups`: `never`[]; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `eventId`: `string`; `orderBy`: `null`; `organizationId`: `string`; `where`: \{ `assigneeName`: `string`; \}; \}; \}; `result`: \{ `data`: \{ `actionItemsByOrganization`: `never`[]; \}; \}; \})[] + +Defined in: [src/screens/OrganizationActionItems/OrganizationActionItem.mocks.ts:480](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/OrganizationActionItems/OrganizationActionItem.mocks.ts#L480) diff --git a/docs/docs/auto-docs/screens/OrganizationActionItems/OrganizationActionItem.mocks/variables/MOCKS_ERROR.md b/docs/docs/auto-docs/screens/OrganizationActionItems/OrganizationActionItem.mocks/variables/MOCKS_ERROR.md new file mode 100644 index 0000000000..d4be7dd56d --- /dev/null +++ b/docs/docs/auto-docs/screens/OrganizationActionItems/OrganizationActionItem.mocks/variables/MOCKS_ERROR.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [screens/OrganizationActionItems/OrganizationActionItem.mocks](../README.md) / MOCKS\_ERROR + +# Variable: MOCKS\_ERROR + +> `const` **MOCKS\_ERROR**: (\{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `id`: `string`; \}; \}; `result`: \{ `data`: \{ `organizations`: `object`[]; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `organizationId`: `string`; `where`: \{ `is_disabled`: `boolean`; \}; \}; \}; `result`: \{ `data`: \{ `actionItemCategoriesByOrganization`: (\{ `_id`: `string`; `createdAt`: `string`; `creator`: \{ `_id`: `string`; `firstName`: `string`; `lastName`: `string`; \}; `isDisabled`: `boolean`; `name`: `string`; \} \| \{ `_id`: `undefined`; `createdAt`: `string`; `creator`: \{ `_id`: `undefined`; `firstName`: `string`; `lastName`: `string`; \}; `isDisabled`: `boolean`; `name`: `string`; \})[]; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `where`: \{ `eventId`: `string`; `hasAccepted`: `boolean`; \}; \}; \}; `result`: \{ `data`: \{ `getEventVolunteers`: (\{ `_id`: `string`; `assignments`: `never`[]; `groups`: `object`[]; `hasAccepted`: `boolean`; `hoursVolunteered`: `number`; `user`: \{ `_id`: `string`; `firstName`: `string`; `image`: `null`; `lastName`: `string`; \}; \} \| \{ `_id`: `undefined`; `assignments`: `never`[]; `groups`: `never`[]; `hasAccepted`: `boolean`; `hoursVolunteered`: `number`; `user`: \{ `_id`: `undefined`; `firstName`: `string`; `image`: `null`; `lastName`: `string`; \}; \})[]; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `where`: \{ `eventId`: `undefined`; `hasAccepted`: `boolean`; \}; \}; \}; `result`: \{ `data`: \{ `getEventVolunteers`: `never`[]; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `where`: \{ `eventId`: `string`; \}; \}; \}; `result`: \{ `data`: \{ `getEventVolunteerGroups`: (\{ `_id`: `string`; `assignments`: `never`[]; `createdAt`: `string`; `creator`: \{ `_id`: `string`; `firstName`: `string`; `image`: `null`; `lastName`: `string`; \}; `description`: `string`; `event`: \{ `_id`: `string`; \}; `leader`: \{ `_id`: `string`; `firstName`: `string`; `image`: `null`; `lastName`: `string`; \}; `name`: `string`; `volunteers`: `object`[]; `volunteersRequired`: `number`; \} \| \{ `_id`: `undefined`; `assignments`: `never`[]; `createdAt`: `string`; `creator`: \{ `_id`: `string`; `firstName`: `string`; `image`: `null`; `lastName`: `string`; \}; `description`: `string`; `event`: \{ `_id`: `string`; \}; `leader`: \{ `_id`: `string`; `firstName`: `string`; `image`: `null`; `lastName`: `string`; \}; `name`: `string`; `volunteers`: `never`[]; `volunteersRequired`: `number`; \})[]; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `where`: \{ `eventId`: `undefined`; \}; \}; \}; `result`: \{ `data`: \{ `getEventVolunteerGroups`: `never`[]; \}; \}; \} \| \{ `error`: `Error`; `request`: \{ `query`: `DocumentNode`; `variables`: \{ `actionItemId`: `undefined`; `allottedHours`: `undefined`; `assigneeId`: `undefined`; `assigneeType`: `undefined`; `dDate`: `undefined`; `eventId`: `string`; `isCompleted`: `undefined`; `orderBy`: `null`; `organizationId`: `string`; `postCompletionNotes`: `undefined`; `preCompletionNotes`: `undefined`; `where`: \{ `assigneeName`: `string`; \}; \}; \}; \} \| \{ `error`: `Error`; `request`: \{ `query`: `DocumentNode`; `variables`: \{ `actionItemId`: `string`; `allottedHours`: `undefined`; `assigneeId`: `undefined`; `assigneeType`: `undefined`; `dDate`: `undefined`; `eventId`: `undefined`; `isCompleted`: `undefined`; `orderBy`: `undefined`; `organizationId`: `undefined`; `postCompletionNotes`: `undefined`; `preCompletionNotes`: `undefined`; `where`: `undefined`; \}; \}; \} \| \{ `error`: `Error`; `request`: \{ `query`: `DocumentNode`; `variables`: \{ `actionItemId`: `string`; `allottedHours`: `undefined`; `assigneeId`: `string`; `assigneeType`: `string`; `dDate`: `undefined`; `eventId`: `undefined`; `isCompleted`: `boolean`; `orderBy`: `undefined`; `organizationId`: `undefined`; `postCompletionNotes`: `string`; `preCompletionNotes`: `undefined`; `where`: `undefined`; \}; \}; \} \| \{ `error`: `Error`; `request`: \{ `query`: `DocumentNode`; `variables`: \{ `actionItemId`: `undefined`; `allottedHours`: `null`; `assigneeId`: `string`; `assigneeType`: `string`; `dDate`: `string`; `eventId`: `undefined`; `isCompleted`: `undefined`; `orderBy`: `undefined`; `organizationId`: `undefined`; `postCompletionNotes`: `undefined`; `preCompletionNotes`: `string`; `where`: `undefined`; \}; \}; \} \| \{ `error`: `Error`; `request`: \{ `query`: `DocumentNode`; `variables`: \{ `actionItemId`: `string`; `allottedHours`: `undefined`; `assigneeId`: `string`; `assigneeType`: `string`; `dDate`: `undefined`; `eventId`: `undefined`; `isCompleted`: `undefined`; `orderBy`: `undefined`; `organizationId`: `undefined`; `postCompletionNotes`: `string`; `preCompletionNotes`: `undefined`; `where`: `undefined`; \}; \}; \})[] + +Defined in: [src/screens/OrganizationActionItems/OrganizationActionItem.mocks.ts:412](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/OrganizationActionItems/OrganizationActionItem.mocks.ts#L412) diff --git a/docs/docs/auto-docs/screens/OrganizationActionItems/OrganizationActionItems/README.md b/docs/docs/auto-docs/screens/OrganizationActionItems/OrganizationActionItems/README.md new file mode 100644 index 0000000000..4fd3908409 --- /dev/null +++ b/docs/docs/auto-docs/screens/OrganizationActionItems/OrganizationActionItems/README.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / screens/OrganizationActionItems/OrganizationActionItems + +# screens/OrganizationActionItems/OrganizationActionItems + +## Functions + +- [default](functions/default.md) diff --git a/docs/docs/auto-docs/screens/OrganizationActionItems/OrganizationActionItems/functions/default.md b/docs/docs/auto-docs/screens/OrganizationActionItems/OrganizationActionItems/functions/default.md new file mode 100644 index 0000000000..381cf2fe27 --- /dev/null +++ b/docs/docs/auto-docs/screens/OrganizationActionItems/OrganizationActionItems/functions/default.md @@ -0,0 +1,21 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [screens/OrganizationActionItems/OrganizationActionItems](../README.md) / default + +# Function: default() + +> **default**(): `JSX.Element` + +Defined in: [src/screens/OrganizationActionItems/OrganizationActionItems.tsx:51](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/OrganizationActionItems/OrganizationActionItems.tsx#L51) + +Component for managing and displaying action items within an organization. + +This component allows users to view, filter, sort, and create action items. It also handles fetching and displaying related data such as action item categories and members. + +## Returns + +`JSX.Element` + +The rendered component. diff --git a/docs/docs/auto-docs/screens/OrganizationActionItems/testObject.mocks/README.md b/docs/docs/auto-docs/screens/OrganizationActionItems/testObject.mocks/README.md new file mode 100644 index 0000000000..4bee2792a0 --- /dev/null +++ b/docs/docs/auto-docs/screens/OrganizationActionItems/testObject.mocks/README.md @@ -0,0 +1,22 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / screens/OrganizationActionItems/testObject.mocks + +# screens/OrganizationActionItems/testObject.mocks + +## Variables + +- [actionItemCategory1](variables/actionItemCategory1.md) +- [actionItemCategory2](variables/actionItemCategory2.md) +- [actionItemCategoryListQuery](variables/actionItemCategoryListQuery.md) +- [baseActionItem](variables/baseActionItem.md) +- [groupListQuery](variables/groupListQuery.md) +- [itemWithGroup](variables/itemWithGroup.md) +- [itemWithUser](variables/itemWithUser.md) +- [itemWithUserImage](variables/itemWithUserImage.md) +- [itemWithVolunteer](variables/itemWithVolunteer.md) +- [itemWithVolunteerImage](variables/itemWithVolunteerImage.md) +- [memberListQuery](variables/memberListQuery.md) +- [volunteerListQuery](variables/volunteerListQuery.md) diff --git a/docs/docs/auto-docs/screens/OrganizationActionItems/testObject.mocks/variables/actionItemCategory1.md b/docs/docs/auto-docs/screens/OrganizationActionItems/testObject.mocks/variables/actionItemCategory1.md new file mode 100644 index 0000000000..3413571fdb --- /dev/null +++ b/docs/docs/auto-docs/screens/OrganizationActionItems/testObject.mocks/variables/actionItemCategory1.md @@ -0,0 +1,21 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [screens/OrganizationActionItems/testObject.mocks](../README.md) / actionItemCategory1 + +# Variable: actionItemCategory1 + +> `const` **actionItemCategory1**: `object` + +Defined in: [src/screens/OrganizationActionItems/testObject.mocks.ts:11](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/OrganizationActionItems/testObject.mocks.ts#L11) + +## Type declaration + +### \_id + +> **\_id**: `string` = `'actionItemCategoryId1'` + +### name + +> **name**: `string` = `'Category 1'` diff --git a/docs/docs/auto-docs/screens/OrganizationActionItems/testObject.mocks/variables/actionItemCategory2.md b/docs/docs/auto-docs/screens/OrganizationActionItems/testObject.mocks/variables/actionItemCategory2.md new file mode 100644 index 0000000000..f3ad3eb63a --- /dev/null +++ b/docs/docs/auto-docs/screens/OrganizationActionItems/testObject.mocks/variables/actionItemCategory2.md @@ -0,0 +1,21 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [screens/OrganizationActionItems/testObject.mocks](../README.md) / actionItemCategory2 + +# Variable: actionItemCategory2 + +> `const` **actionItemCategory2**: `object` + +Defined in: [src/screens/OrganizationActionItems/testObject.mocks.ts:16](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/OrganizationActionItems/testObject.mocks.ts#L16) + +## Type declaration + +### \_id + +> **\_id**: `string` = `'actionItemCategoryId2'` + +### name + +> **name**: `string` = `'Category 2'` diff --git a/docs/docs/auto-docs/screens/OrganizationActionItems/testObject.mocks/variables/actionItemCategoryListQuery.md b/docs/docs/auto-docs/screens/OrganizationActionItems/testObject.mocks/variables/actionItemCategoryListQuery.md new file mode 100644 index 0000000000..db22678784 --- /dev/null +++ b/docs/docs/auto-docs/screens/OrganizationActionItems/testObject.mocks/variables/actionItemCategoryListQuery.md @@ -0,0 +1,49 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [screens/OrganizationActionItems/testObject.mocks](../README.md) / actionItemCategoryListQuery + +# Variable: actionItemCategoryListQuery + +> `const` **actionItemCategoryListQuery**: `object` + +Defined in: [src/screens/OrganizationActionItems/testObject.mocks.ts:408](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/OrganizationActionItems/testObject.mocks.ts#L408) + +## Type declaration + +### request + +> **request**: `object` + +#### request.query + +> **query**: `DocumentNode` = `ACTION_ITEM_CATEGORY_LIST` + +#### request.variables + +> **variables**: `object` + +#### request.variables.organizationId + +> **organizationId**: `string` = `'orgId'` + +#### request.variables.where + +> **where**: `object` + +#### request.variables.where.is\_disabled + +> **is\_disabled**: `boolean` = `false` + +### result + +> **result**: `object` + +#### result.data + +> **data**: `object` + +#### result.data.actionItemCategoriesByOrganization + +> **actionItemCategoriesByOrganization**: (\{ `_id`: `string`; `createdAt`: `string`; `creator`: \{ `_id`: `string`; `firstName`: `string`; `lastName`: `string`; \}; `isDisabled`: `boolean`; `name`: `string`; \} \| \{ `_id`: `undefined`; `createdAt`: `string`; `creator`: \{ `_id`: `undefined`; `firstName`: `string`; `lastName`: `string`; \}; `isDisabled`: `boolean`; `name`: `string`; \})[] diff --git a/docs/docs/auto-docs/screens/OrganizationActionItems/testObject.mocks/variables/baseActionItem.md b/docs/docs/auto-docs/screens/OrganizationActionItems/testObject.mocks/variables/baseActionItem.md new file mode 100644 index 0000000000..9cac93367a --- /dev/null +++ b/docs/docs/auto-docs/screens/OrganizationActionItems/testObject.mocks/variables/baseActionItem.md @@ -0,0 +1,57 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [screens/OrganizationActionItems/testObject.mocks](../README.md) / baseActionItem + +# Variable: baseActionItem + +> `const` **baseActionItem**: `object` + +Defined in: [src/screens/OrganizationActionItems/testObject.mocks.ts:21](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/OrganizationActionItems/testObject.mocks.ts#L21) + +## Type declaration + +### assigner + +> **assigner**: `object` + +#### assigner.\_id + +> **\_id**: `string` = `'userId'` + +#### assigner.firstName + +> **firstName**: `string` = `'Wilt'` + +#### assigner.image + +> **image**: `null` = `null` + +#### assigner.lastName + +> **lastName**: `string` = `'Shepherd'` + +### creator + +> **creator**: `object` + +#### creator.\_\_typename + +> **\_\_typename**: `string` = `'User'` + +#### creator.\_id + +> **\_id**: `string` = `'userId'` + +#### creator.firstName + +> **firstName**: `string` = `'Wilt'` + +#### creator.image + +> **image**: `null` = `null` + +#### creator.lastName + +> **lastName**: `string` = `'Shepherd'` diff --git a/docs/docs/auto-docs/screens/OrganizationActionItems/testObject.mocks/variables/groupListQuery.md b/docs/docs/auto-docs/screens/OrganizationActionItems/testObject.mocks/variables/groupListQuery.md new file mode 100644 index 0000000000..8cb19ad0fd --- /dev/null +++ b/docs/docs/auto-docs/screens/OrganizationActionItems/testObject.mocks/variables/groupListQuery.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [screens/OrganizationActionItems/testObject.mocks](../README.md) / groupListQuery + +# Variable: groupListQuery + +> `const` **groupListQuery**: (\{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `where`: \{ `eventId`: `string`; \}; \}; \}; `result`: \{ `data`: \{ `getEventVolunteerGroups`: (\{ `_id`: `string`; `assignments`: `never`[]; `createdAt`: `string`; `creator`: \{ `_id`: `string`; `firstName`: `string`; `image`: `null`; `lastName`: `string`; \}; `description`: `string`; `event`: \{ `_id`: `string`; \}; `leader`: \{ `_id`: `string`; `firstName`: `string`; `image`: `null`; `lastName`: `string`; \}; `name`: `string`; `volunteers`: `object`[]; `volunteersRequired`: `number`; \} \| \{ `_id`: `undefined`; `assignments`: `never`[]; `createdAt`: `string`; `creator`: \{ `_id`: `string`; `firstName`: `string`; `image`: `null`; `lastName`: `string`; \}; `description`: `string`; `event`: \{ `_id`: `string`; \}; `leader`: \{ `_id`: `string`; `firstName`: `string`; `image`: `null`; `lastName`: `string`; \}; `name`: `string`; `volunteers`: `never`[]; `volunteersRequired`: `number`; \})[]; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `where`: \{ `eventId`: `undefined`; \}; \}; \}; `result`: \{ `data`: \{ `getEventVolunteerGroups`: `never`[]; \}; \}; \})[] + +Defined in: [src/screens/OrganizationActionItems/testObject.mocks.ts:301](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/OrganizationActionItems/testObject.mocks.ts#L301) diff --git a/docs/docs/auto-docs/screens/OrganizationActionItems/testObject.mocks/variables/itemWithGroup.md b/docs/docs/auto-docs/screens/OrganizationActionItems/testObject.mocks/variables/itemWithGroup.md new file mode 100644 index 0000000000..466e8af231 --- /dev/null +++ b/docs/docs/auto-docs/screens/OrganizationActionItems/testObject.mocks/variables/itemWithGroup.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [screens/OrganizationActionItems/testObject.mocks](../README.md) / itemWithGroup + +# Variable: itemWithGroup + +> `const` **itemWithGroup**: [`InterfaceActionItemInfo`](../../../../utils/interfaces/interfaces/InterfaceActionItemInfo.md) + +Defined in: [src/screens/OrganizationActionItems/testObject.mocks.ts:143](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/OrganizationActionItems/testObject.mocks.ts#L143) diff --git a/docs/docs/auto-docs/screens/OrganizationActionItems/testObject.mocks/variables/itemWithUser.md b/docs/docs/auto-docs/screens/OrganizationActionItems/testObject.mocks/variables/itemWithUser.md new file mode 100644 index 0000000000..af4eb628ac --- /dev/null +++ b/docs/docs/auto-docs/screens/OrganizationActionItems/testObject.mocks/variables/itemWithUser.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [screens/OrganizationActionItems/testObject.mocks](../README.md) / itemWithUser + +# Variable: itemWithUser + +> `const` **itemWithUser**: [`InterfaceActionItemInfo`](../../../../utils/interfaces/interfaces/InterfaceActionItemInfo.md) + +Defined in: [src/screens/OrganizationActionItems/testObject.mocks.ts:97](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/OrganizationActionItems/testObject.mocks.ts#L97) diff --git a/docs/docs/auto-docs/screens/OrganizationActionItems/testObject.mocks/variables/itemWithUserImage.md b/docs/docs/auto-docs/screens/OrganizationActionItems/testObject.mocks/variables/itemWithUserImage.md new file mode 100644 index 0000000000..2f11b7d1ea --- /dev/null +++ b/docs/docs/auto-docs/screens/OrganizationActionItems/testObject.mocks/variables/itemWithUserImage.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [screens/OrganizationActionItems/testObject.mocks](../README.md) / itemWithUserImage + +# Variable: itemWithUserImage + +> `const` **itemWithUserImage**: [`InterfaceActionItemInfo`](../../../../utils/interfaces/interfaces/InterfaceActionItemInfo.md) + +Defined in: [src/screens/OrganizationActionItems/testObject.mocks.ts:120](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/OrganizationActionItems/testObject.mocks.ts#L120) diff --git a/docs/docs/auto-docs/screens/OrganizationActionItems/testObject.mocks/variables/itemWithVolunteer.md b/docs/docs/auto-docs/screens/OrganizationActionItems/testObject.mocks/variables/itemWithVolunteer.md new file mode 100644 index 0000000000..c1139a9632 --- /dev/null +++ b/docs/docs/auto-docs/screens/OrganizationActionItems/testObject.mocks/variables/itemWithVolunteer.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [screens/OrganizationActionItems/testObject.mocks](../README.md) / itemWithVolunteer + +# Variable: itemWithVolunteer + +> `const` **itemWithVolunteer**: [`InterfaceActionItemInfo`](../../../../utils/interfaces/interfaces/InterfaceActionItemInfo.md) + +Defined in: [src/screens/OrganizationActionItems/testObject.mocks.ts:37](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/OrganizationActionItems/testObject.mocks.ts#L37) diff --git a/docs/docs/auto-docs/screens/OrganizationActionItems/testObject.mocks/variables/itemWithVolunteerImage.md b/docs/docs/auto-docs/screens/OrganizationActionItems/testObject.mocks/variables/itemWithVolunteerImage.md new file mode 100644 index 0000000000..7515cdc00e --- /dev/null +++ b/docs/docs/auto-docs/screens/OrganizationActionItems/testObject.mocks/variables/itemWithVolunteerImage.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [screens/OrganizationActionItems/testObject.mocks](../README.md) / itemWithVolunteerImage + +# Variable: itemWithVolunteerImage + +> `const` **itemWithVolunteerImage**: [`InterfaceActionItemInfo`](../../../../utils/interfaces/interfaces/InterfaceActionItemInfo.md) + +Defined in: [src/screens/OrganizationActionItems/testObject.mocks.ts:67](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/OrganizationActionItems/testObject.mocks.ts#L67) diff --git a/docs/docs/auto-docs/screens/OrganizationActionItems/testObject.mocks/variables/memberListQuery.md b/docs/docs/auto-docs/screens/OrganizationActionItems/testObject.mocks/variables/memberListQuery.md new file mode 100644 index 0000000000..629daa0ce6 --- /dev/null +++ b/docs/docs/auto-docs/screens/OrganizationActionItems/testObject.mocks/variables/memberListQuery.md @@ -0,0 +1,41 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [screens/OrganizationActionItems/testObject.mocks](../README.md) / memberListQuery + +# Variable: memberListQuery + +> `const` **memberListQuery**: `object` + +Defined in: [src/screens/OrganizationActionItems/testObject.mocks.ts:184](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/OrganizationActionItems/testObject.mocks.ts#L184) + +## Type declaration + +### request + +> **request**: `object` + +#### request.query + +> **query**: `DocumentNode` = `MEMBERS_LIST` + +#### request.variables + +> **variables**: `object` + +#### request.variables.id + +> **id**: `string` = `'orgId'` + +### result + +> **result**: `object` + +#### result.data + +> **data**: `object` + +#### result.data.organizations + +> **organizations**: `object`[] diff --git a/docs/docs/auto-docs/screens/OrganizationActionItems/testObject.mocks/variables/volunteerListQuery.md b/docs/docs/auto-docs/screens/OrganizationActionItems/testObject.mocks/variables/volunteerListQuery.md new file mode 100644 index 0000000000..a2be7ac5c6 --- /dev/null +++ b/docs/docs/auto-docs/screens/OrganizationActionItems/testObject.mocks/variables/volunteerListQuery.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [screens/OrganizationActionItems/testObject.mocks](../README.md) / volunteerListQuery + +# Variable: volunteerListQuery + +> `const` **volunteerListQuery**: (\{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `where`: \{ `eventId`: `string`; `hasAccepted`: `boolean`; \}; \}; \}; `result`: \{ `data`: \{ `getEventVolunteers`: (\{ `_id`: `string`; `assignments`: `never`[]; `groups`: `object`[]; `hasAccepted`: `boolean`; `hoursVolunteered`: `number`; `user`: \{ `_id`: `string`; `firstName`: `string`; `image`: `null`; `lastName`: `string`; \}; \} \| \{ `_id`: `undefined`; `assignments`: `never`[]; `groups`: `never`[]; `hasAccepted`: `boolean`; `hoursVolunteered`: `number`; `user`: \{ `_id`: `undefined`; `firstName`: `string`; `image`: `null`; `lastName`: `string`; \}; \})[]; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `where`: \{ `eventId`: `undefined`; `hasAccepted`: `boolean`; \}; \}; \}; `result`: \{ `data`: \{ `getEventVolunteers`: `never`[]; \}; \}; \})[] + +Defined in: [src/screens/OrganizationActionItems/testObject.mocks.ts:228](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/OrganizationActionItems/testObject.mocks.ts#L228) diff --git a/docs/docs/auto-docs/screens/OrganizationDashboard/OrganizationDashboard/README.md b/docs/docs/auto-docs/screens/OrganizationDashboard/OrganizationDashboard/README.md new file mode 100644 index 0000000000..c34bbb3e25 --- /dev/null +++ b/docs/docs/auto-docs/screens/OrganizationDashboard/OrganizationDashboard/README.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / screens/OrganizationDashboard/OrganizationDashboard + +# screens/OrganizationDashboard/OrganizationDashboard + +## Functions + +- [default](functions/default.md) diff --git a/docs/docs/auto-docs/screens/OrganizationDashboard/OrganizationDashboard/functions/default.md b/docs/docs/auto-docs/screens/OrganizationDashboard/OrganizationDashboard/functions/default.md new file mode 100644 index 0000000000..a72bc03b11 --- /dev/null +++ b/docs/docs/auto-docs/screens/OrganizationDashboard/OrganizationDashboard/functions/default.md @@ -0,0 +1,21 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [screens/OrganizationDashboard/OrganizationDashboard](../README.md) / default + +# Function: default() + +> **default**(): `JSX.Element` + +Defined in: [src/screens/OrganizationDashboard/OrganizationDashboard.tsx:44](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/OrganizationDashboard/OrganizationDashboard.tsx#L44) + +Component for displaying the organization dashboard. + +This component provides an overview of various statistics and information related to an organization, including members, admins, posts, events, blocked users, and membership requests. It also displays upcoming events and latest posts. + +## Returns + +`JSX.Element` + +The rendered component. diff --git a/docs/docs/auto-docs/screens/OrganizationDashboard/OrganizationDashboardMocks/README.md b/docs/docs/auto-docs/screens/OrganizationDashboard/OrganizationDashboardMocks/README.md new file mode 100644 index 0000000000..a56f4a1a9d --- /dev/null +++ b/docs/docs/auto-docs/screens/OrganizationDashboard/OrganizationDashboardMocks/README.md @@ -0,0 +1,13 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / screens/OrganizationDashboard/OrganizationDashboardMocks + +# screens/OrganizationDashboard/OrganizationDashboardMocks + +## Variables + +- [EMPTY\_MOCKS](variables/EMPTY_MOCKS.md) +- [ERROR\_MOCKS](variables/ERROR_MOCKS.md) +- [MOCKS](variables/MOCKS.md) diff --git a/docs/docs/auto-docs/screens/OrganizationDashboard/OrganizationDashboardMocks/variables/EMPTY_MOCKS.md b/docs/docs/auto-docs/screens/OrganizationDashboard/OrganizationDashboardMocks/variables/EMPTY_MOCKS.md new file mode 100644 index 0000000000..f864dc33ff --- /dev/null +++ b/docs/docs/auto-docs/screens/OrganizationDashboard/OrganizationDashboardMocks/variables/EMPTY_MOCKS.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [screens/OrganizationDashboard/OrganizationDashboardMocks](../README.md) / EMPTY\_MOCKS + +# Variable: EMPTY\_MOCKS + +> `const` **EMPTY\_MOCKS**: (\{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `first`: `undefined`; `id`: `string`; `organization_id`: `undefined`; `orgId`: `undefined`; `where`: `undefined`; \}; \}; `result`: \{ `data`: \{ `eventsByOrganizationConnection`: `undefined`; `getVolunteerRanks`: `undefined`; `organizations`: `object`[]; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `first`: `number`; `id`: `string`; `organization_id`: `undefined`; `orgId`: `undefined`; `where`: `undefined`; \}; \}; `result`: \{ `data`: \{ `eventsByOrganizationConnection`: `undefined`; `getVolunteerRanks`: `undefined`; `organizations`: `object`[]; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `first`: `undefined`; `id`: `undefined`; `organization_id`: `string`; `orgId`: `undefined`; `where`: `undefined`; \}; \}; `result`: \{ `data`: \{ `eventsByOrganizationConnection`: `never`[]; `getVolunteerRanks`: `undefined`; `organizations`: `undefined`; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `first`: `undefined`; `id`: `undefined`; `organization_id`: `undefined`; `orgId`: `string`; `where`: \{ `limit`: `number`; `orderBy`: `string`; `timeFrame`: `string`; \}; \}; \}; `result`: \{ `data`: \{ `eventsByOrganizationConnection`: `undefined`; `getVolunteerRanks`: `never`[]; `organizations`: `undefined`; \}; \}; \})[] + +Defined in: [src/screens/OrganizationDashboard/OrganizationDashboardMocks.ts:329](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/OrganizationDashboard/OrganizationDashboardMocks.ts#L329) diff --git a/docs/docs/auto-docs/screens/OrganizationDashboard/OrganizationDashboardMocks/variables/ERROR_MOCKS.md b/docs/docs/auto-docs/screens/OrganizationDashboard/OrganizationDashboardMocks/variables/ERROR_MOCKS.md new file mode 100644 index 0000000000..166832e4f4 --- /dev/null +++ b/docs/docs/auto-docs/screens/OrganizationDashboard/OrganizationDashboardMocks/variables/ERROR_MOCKS.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [screens/OrganizationDashboard/OrganizationDashboardMocks](../README.md) / ERROR\_MOCKS + +# Variable: ERROR\_MOCKS + +> `const` **ERROR\_MOCKS**: (\{ `error`: `Error`; `request`: \{ `query`: `DocumentNode`; `variables`: \{ `first`: `undefined`; `id`: `string`; `organization_id`: `undefined`; `orgId`: `undefined`; `where`: `undefined`; \}; \}; \} \| \{ `error`: `Error`; `request`: \{ `query`: `DocumentNode`; `variables`: \{ `first`: `number`; `id`: `string`; `organization_id`: `undefined`; `orgId`: `undefined`; `where`: `undefined`; \}; \}; \} \| \{ `error`: `Error`; `request`: \{ `query`: `DocumentNode`; `variables`: \{ `first`: `undefined`; `id`: `undefined`; `organization_id`: `string`; `orgId`: `undefined`; `where`: `undefined`; \}; \}; \} \| \{ `error`: `Error`; `request`: \{ `query`: `DocumentNode`; `variables`: \{ `first`: `undefined`; `id`: `undefined`; `organization_id`: `undefined`; `orgId`: `string`; `where`: \{ `limit`: `number`; `orderBy`: `string`; `timeFrame`: `string`; \}; \}; \}; \})[] + +Defined in: [src/screens/OrganizationDashboard/OrganizationDashboardMocks.ts:448](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/OrganizationDashboard/OrganizationDashboardMocks.ts#L448) diff --git a/docs/docs/auto-docs/screens/OrganizationDashboard/OrganizationDashboardMocks/variables/MOCKS.md b/docs/docs/auto-docs/screens/OrganizationDashboard/OrganizationDashboardMocks/variables/MOCKS.md new file mode 100644 index 0000000000..cf37174175 --- /dev/null +++ b/docs/docs/auto-docs/screens/OrganizationDashboard/OrganizationDashboardMocks/variables/MOCKS.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [screens/OrganizationDashboard/OrganizationDashboardMocks](../README.md) / MOCKS + +# Variable: MOCKS + +> `const` **MOCKS**: (\{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `first`: `undefined`; `id`: `string`; `organization_id`: `undefined`; `orgId`: `undefined`; `where`: `undefined`; \}; \}; `result`: \{ `data`: \{ `eventsByOrganizationConnection`: `undefined`; `getVolunteerRanks`: `undefined`; `organizations`: `object`[]; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `first`: `number`; `id`: `string`; `organization_id`: `undefined`; `orgId`: `undefined`; `where`: `undefined`; \}; \}; `result`: \{ `data`: \{ `eventsByOrganizationConnection`: `undefined`; `getVolunteerRanks`: `undefined`; `organizations`: `object`[]; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `first`: `undefined`; `id`: `undefined`; `organization_id`: `string`; `orgId`: `undefined`; `where`: `undefined`; \}; \}; `result`: \{ `data`: \{ `eventsByOrganizationConnection`: `object`[]; `getVolunteerRanks`: `undefined`; `organizations`: `undefined`; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `first`: `undefined`; `id`: `undefined`; `organization_id`: `undefined`; `orgId`: `string`; `where`: \{ `limit`: `number`; `orderBy`: `string`; `timeFrame`: `string`; \}; \}; \}; `result`: \{ `data`: \{ `eventsByOrganizationConnection`: `undefined`; `getVolunteerRanks`: `object`[]; `organizations`: `undefined`; \}; \}; \})[] + +Defined in: [src/screens/OrganizationDashboard/OrganizationDashboardMocks.ts:8](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/OrganizationDashboard/OrganizationDashboardMocks.ts#L8) diff --git a/docs/docs/auto-docs/screens/OrganizationEvents/OrganizationEvents/README.md b/docs/docs/auto-docs/screens/OrganizationEvents/OrganizationEvents/README.md new file mode 100644 index 0000000000..9430947def --- /dev/null +++ b/docs/docs/auto-docs/screens/OrganizationEvents/OrganizationEvents/README.md @@ -0,0 +1,15 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / screens/OrganizationEvents/OrganizationEvents + +# screens/OrganizationEvents/OrganizationEvents + +## Enumerations + +- [ViewType](enumerations/ViewType.md) + +## Functions + +- [default](functions/default.md) diff --git a/docs/docs/auto-docs/screens/OrganizationEvents/OrganizationEvents/enumerations/ViewType.md b/docs/docs/auto-docs/screens/OrganizationEvents/OrganizationEvents/enumerations/ViewType.md new file mode 100644 index 0000000000..2e76d232c2 --- /dev/null +++ b/docs/docs/auto-docs/screens/OrganizationEvents/OrganizationEvents/enumerations/ViewType.md @@ -0,0 +1,33 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [screens/OrganizationEvents/OrganizationEvents](../README.md) / ViewType + +# Enumeration: ViewType + +Defined in: [src/screens/OrganizationEvents/OrganizationEvents.tsx:37](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/OrganizationEvents/OrganizationEvents.tsx#L37) + +## Enumeration Members + +### DAY + +> **DAY**: `"Day"` + +Defined in: [src/screens/OrganizationEvents/OrganizationEvents.tsx:38](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/OrganizationEvents/OrganizationEvents.tsx#L38) + +*** + +### MONTH + +> **MONTH**: `"Month View"` + +Defined in: [src/screens/OrganizationEvents/OrganizationEvents.tsx:39](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/OrganizationEvents/OrganizationEvents.tsx#L39) + +*** + +### YEAR + +> **YEAR**: `"Year View"` + +Defined in: [src/screens/OrganizationEvents/OrganizationEvents.tsx:40](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/OrganizationEvents/OrganizationEvents.tsx#L40) diff --git a/docs/docs/auto-docs/screens/OrganizationEvents/OrganizationEvents/functions/default.md b/docs/docs/auto-docs/screens/OrganizationEvents/OrganizationEvents/functions/default.md new file mode 100644 index 0000000000..75b883f91f --- /dev/null +++ b/docs/docs/auto-docs/screens/OrganizationEvents/OrganizationEvents/functions/default.md @@ -0,0 +1,27 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [screens/OrganizationEvents/OrganizationEvents](../README.md) / default + +# Function: default() + +> **default**(): `JSX.Element` + +Defined in: [src/screens/OrganizationEvents/OrganizationEvents.tsx:56](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/OrganizationEvents/OrganizationEvents.tsx#L56) + +Organization Events Page Component to display the events of an organization +and create new events for the organization by the admin or superadmin user. +The component uses the EventCalendar component to display the events and EventHeader component + to display the view type and create event button. + The component uses the RecurrenceOptions component to display the recurrence options for the event. + The component uses the CREATE_EVENT_MUTATION mutation to create a new event for the organization. + The component uses the ORGANIZATION_EVENT_CONNECTION_LIST and ORGANIZATIONS_LIST queries to fetch the events + and organization details. + The component uses the useLocalStorage hook to get the user details from the local storage. + +## Returns + +`JSX.Element` + +JSX.Element to display the Organization Events Page diff --git a/docs/docs/auto-docs/screens/OrganizationEvents/OrganizationEventsMocks/README.md b/docs/docs/auto-docs/screens/OrganizationEvents/OrganizationEventsMocks/README.md new file mode 100644 index 0000000000..706082f1d8 --- /dev/null +++ b/docs/docs/auto-docs/screens/OrganizationEvents/OrganizationEventsMocks/README.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / screens/OrganizationEvents/OrganizationEventsMocks + +# screens/OrganizationEvents/OrganizationEventsMocks + +## Variables + +- [MOCKS](variables/MOCKS.md) diff --git a/docs/docs/auto-docs/screens/OrganizationEvents/OrganizationEventsMocks/variables/MOCKS.md b/docs/docs/auto-docs/screens/OrganizationEvents/OrganizationEventsMocks/variables/MOCKS.md new file mode 100644 index 0000000000..2c9263ef09 --- /dev/null +++ b/docs/docs/auto-docs/screens/OrganizationEvents/OrganizationEventsMocks/variables/MOCKS.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [screens/OrganizationEvents/OrganizationEventsMocks](../README.md) / MOCKS + +# Variable: MOCKS + +> `const` **MOCKS**: (\{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `allDay`: `undefined`; `count`: `undefined`; `description`: `undefined`; `description_contains`: `string`; `endDate`: `undefined`; `endTime`: `undefined`; `frequency`: `undefined`; `interval`: `undefined`; `isPublic`: `undefined`; `isRegisterable`: `undefined`; `location`: `undefined`; `location_contains`: `string`; `organization_id`: `undefined`; `organizationId`: `undefined`; `recurrenceEndDate`: `undefined`; `recurrenceStartDate`: `undefined`; `recurring`: `undefined`; `startDate`: `undefined`; `startTime`: `undefined`; `title`: `undefined`; `title_contains`: `string`; `weekDayOccurenceInMonth`: `undefined`; `weekDays`: `undefined`; \}; \}; `result`: \{ `data`: \{ `createEvent`: `undefined`; `eventsByOrganizationConnection`: `object`[]; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `allDay`: `undefined`; `count`: `undefined`; `description`: `undefined`; `description_contains`: `string`; `endDate`: `undefined`; `endTime`: `undefined`; `frequency`: `undefined`; `interval`: `undefined`; `isPublic`: `undefined`; `isRegisterable`: `undefined`; `location`: `undefined`; `location_contains`: `string`; `organization_id`: `undefined`; `organizationId`: `undefined`; `recurrenceEndDate`: `undefined`; `recurrenceStartDate`: `undefined`; `recurring`: `undefined`; `startDate`: `undefined`; `startTime`: `undefined`; `title`: `undefined`; `title_contains`: `string`; `weekDayOccurenceInMonth`: `undefined`; `weekDays`: `undefined`; \}; \}; `result`: \{ `data`: \{ `createEvent`: `undefined`; `eventsByOrganizationConnection`: `object`[]; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `allDay`: `boolean`; `count`: `undefined`; `description`: `string`; `description_contains`: `undefined`; `endDate`: `string`; `endTime`: `undefined`; `frequency`: `undefined`; `interval`: `undefined`; `isPublic`: `boolean`; `isRegisterable`: `boolean`; `location`: `string`; `location_contains`: `undefined`; `organization_id`: `undefined`; `organizationId`: `undefined`; `recurrenceEndDate`: `undefined`; `recurrenceStartDate`: `undefined`; `recurring`: `boolean`; `startDate`: `string`; `startTime`: `undefined`; `title`: `string`; `title_contains`: `undefined`; `weekDayOccurenceInMonth`: `undefined`; `weekDays`: `undefined`; \}; \}; `result`: \{ `data`: \{ `createEvent`: \{ `_id`: `string`; \}; `eventsByOrganizationConnection`: `undefined`; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `allDay`: `boolean`; `count`: `undefined`; `description`: `string`; `description_contains`: `undefined`; `endDate`: `string`; `endTime`: `string`; `frequency`: `undefined`; `interval`: `undefined`; `isPublic`: `boolean`; `isRegisterable`: `boolean`; `location`: `string`; `location_contains`: `undefined`; `organization_id`: `undefined`; `organizationId`: `undefined`; `recurrenceEndDate`: `undefined`; `recurrenceStartDate`: `undefined`; `recurring`: `boolean`; `startDate`: `string`; `startTime`: `string`; `title`: `string`; `title_contains`: `undefined`; `weekDayOccurenceInMonth`: `undefined`; `weekDays`: `undefined`; \}; \}; `result`: \{ `data`: \{ `createEvent`: \{ `_id`: `string`; \}; `eventsByOrganizationConnection`: `undefined`; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `allDay`: `boolean`; `count`: `undefined`; `description`: `string`; `description_contains`: `undefined`; `endDate`: `string`; `endTime`: `string`; `frequency`: `string`; `interval`: `number`; `isPublic`: `boolean`; `isRegisterable`: `boolean`; `location`: `string`; `location_contains`: `undefined`; `organization_id`: `undefined`; `organizationId`: `undefined`; `recurrenceEndDate`: `null`; `recurrenceStartDate`: `string`; `recurring`: `boolean`; `startDate`: `string`; `startTime`: `string`; `title`: `string`; `title_contains`: `undefined`; `weekDayOccurenceInMonth`: `undefined`; `weekDays`: `undefined`; \}; \}; `result`: \{ `data`: \{ `createEvent`: \{ `_id`: `string`; \}; `eventsByOrganizationConnection`: `undefined`; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `allDay`: `boolean`; `count`: `undefined`; `description`: `string`; `description_contains`: `undefined`; `endDate`: `string`; `endTime`: `string`; `frequency`: `string`; `interval`: `number`; `isPublic`: `boolean`; `isRegisterable`: `boolean`; `location`: `string`; `location_contains`: `undefined`; `organization_id`: `undefined`; `organizationId`: `undefined`; `recurrenceEndDate`: `null`; `recurrenceStartDate`: `string`; `recurring`: `boolean`; `startDate`: `string`; `startTime`: `string`; `title`: `string`; `title_contains`: `undefined`; `weekDayOccurenceInMonth`: `undefined`; `weekDays`: `string`[]; \}; \}; `result`: \{ `data`: \{ `createEvent`: \{ `_id`: `string`; \}; `eventsByOrganizationConnection`: `undefined`; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `allDay`: `boolean`; `count`: `undefined`; `description`: `string`; `description_contains`: `undefined`; `endDate`: `string`; `endTime`: `undefined`; `frequency`: `string`; `interval`: `number`; `isPublic`: `boolean`; `isRegisterable`: `boolean`; `location`: `string`; `location_contains`: `undefined`; `organization_id`: `undefined`; `organizationId`: `undefined`; `recurrenceEndDate`: `string`; `recurrenceStartDate`: `string`; `recurring`: `boolean`; `startDate`: `string`; `startTime`: `undefined`; `title`: `string`; `title_contains`: `undefined`; `weekDayOccurenceInMonth`: `number`; `weekDays`: `string`[]; \}; \}; `result`: \{ `data`: \{ `createEvent`: \{ `_id`: `string`; \}; `eventsByOrganizationConnection`: `undefined`; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `allDay`: `boolean`; `count`: `number`; `description`: `string`; `description_contains`: `undefined`; `endDate`: `string`; `endTime`: `undefined`; `frequency`: `string`; `interval`: `number`; `isPublic`: `boolean`; `isRegisterable`: `boolean`; `location`: `string`; `location_contains`: `undefined`; `organization_id`: `undefined`; `organizationId`: `undefined`; `recurrenceEndDate`: `null`; `recurrenceStartDate`: `string`; `recurring`: `boolean`; `startDate`: `string`; `startTime`: `undefined`; `title`: `string`; `title_contains`: `undefined`; `weekDayOccurenceInMonth`: `undefined`; `weekDays`: `undefined`; \}; \}; `result`: \{ `data`: \{ `createEvent`: \{ `_id`: `string`; \}; `eventsByOrganizationConnection`: `undefined`; \}; \}; \})[] + +Defined in: [src/screens/OrganizationEvents/OrganizationEventsMocks.ts:4](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/OrganizationEvents/OrganizationEventsMocks.ts#L4) diff --git a/docs/docs/auto-docs/screens/OrganizationFundCampaign/CampaignModal/README.md b/docs/docs/auto-docs/screens/OrganizationFundCampaign/CampaignModal/README.md new file mode 100644 index 0000000000..e36d0fe887 --- /dev/null +++ b/docs/docs/auto-docs/screens/OrganizationFundCampaign/CampaignModal/README.md @@ -0,0 +1,15 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / screens/OrganizationFundCampaign/CampaignModal + +# screens/OrganizationFundCampaign/CampaignModal + +## Interfaces + +- [InterfaceCampaignModal](interfaces/InterfaceCampaignModal.md) + +## Functions + +- [default](functions/default.md) diff --git a/docs/docs/auto-docs/screens/OrganizationFundCampaign/CampaignModal/functions/default.md b/docs/docs/auto-docs/screens/OrganizationFundCampaign/CampaignModal/functions/default.md new file mode 100644 index 0000000000..8089bfa0a7 --- /dev/null +++ b/docs/docs/auto-docs/screens/OrganizationFundCampaign/CampaignModal/functions/default.md @@ -0,0 +1,37 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [screens/OrganizationFundCampaign/CampaignModal](../README.md) / default + +# Function: default() + +> **default**(`props`, `deprecatedLegacyContext`?): `ReactNode` + +Defined in: [src/screens/OrganizationFundCampaign/CampaignModal.tsx:44](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/OrganizationFundCampaign/CampaignModal.tsx#L44) + +Modal component for creating or editing a campaign. + +## Parameters + +### props + +[`InterfaceCampaignModal`](../interfaces/InterfaceCampaignModal.md) + +The props for the CampaignModal component. + +### deprecatedLegacyContext? + +`any` + +**Deprecated** + +**See** + +[React Docs](https://legacy.reactjs.org/docs/legacy-context.html#referencing-context-in-lifecycle-methods) + +## Returns + +`ReactNode` + +JSX.Element diff --git a/docs/docs/auto-docs/screens/OrganizationFundCampaign/CampaignModal/interfaces/InterfaceCampaignModal.md b/docs/docs/auto-docs/screens/OrganizationFundCampaign/CampaignModal/interfaces/InterfaceCampaignModal.md new file mode 100644 index 0000000000..7e8e9a8fb7 --- /dev/null +++ b/docs/docs/auto-docs/screens/OrganizationFundCampaign/CampaignModal/interfaces/InterfaceCampaignModal.md @@ -0,0 +1,75 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [screens/OrganizationFundCampaign/CampaignModal](../README.md) / InterfaceCampaignModal + +# Interface: InterfaceCampaignModal + +Defined in: [src/screens/OrganizationFundCampaign/CampaignModal.tsx:28](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/OrganizationFundCampaign/CampaignModal.tsx#L28) + +Props for the CampaignModal component. + +## Properties + +### campaign + +> **campaign**: `null` \| [`InterfaceCampaignInfo`](../../../../utils/interfaces/interfaces/InterfaceCampaignInfo.md) + +Defined in: [src/screens/OrganizationFundCampaign/CampaignModal.tsx:33](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/OrganizationFundCampaign/CampaignModal.tsx#L33) + +*** + +### fundId + +> **fundId**: `string` + +Defined in: [src/screens/OrganizationFundCampaign/CampaignModal.tsx:31](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/OrganizationFundCampaign/CampaignModal.tsx#L31) + +*** + +### hide() + +> **hide**: () => `void` + +Defined in: [src/screens/OrganizationFundCampaign/CampaignModal.tsx:30](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/OrganizationFundCampaign/CampaignModal.tsx#L30) + +#### Returns + +`void` + +*** + +### isOpen + +> **isOpen**: `boolean` + +Defined in: [src/screens/OrganizationFundCampaign/CampaignModal.tsx:29](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/OrganizationFundCampaign/CampaignModal.tsx#L29) + +*** + +### mode + +> **mode**: `"create"` \| `"edit"` + +Defined in: [src/screens/OrganizationFundCampaign/CampaignModal.tsx:35](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/OrganizationFundCampaign/CampaignModal.tsx#L35) + +*** + +### orgId + +> **orgId**: `string` + +Defined in: [src/screens/OrganizationFundCampaign/CampaignModal.tsx:32](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/OrganizationFundCampaign/CampaignModal.tsx#L32) + +*** + +### refetchCampaign() + +> **refetchCampaign**: () => `void` + +Defined in: [src/screens/OrganizationFundCampaign/CampaignModal.tsx:34](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/OrganizationFundCampaign/CampaignModal.tsx#L34) + +#### Returns + +`void` diff --git a/docs/docs/auto-docs/screens/OrganizationFundCampaign/OrganizationFundCampagins/README.md b/docs/docs/auto-docs/screens/OrganizationFundCampaign/OrganizationFundCampagins/README.md new file mode 100644 index 0000000000..abc8fb7652 --- /dev/null +++ b/docs/docs/auto-docs/screens/OrganizationFundCampaign/OrganizationFundCampagins/README.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / screens/OrganizationFundCampaign/OrganizationFundCampagins + +# screens/OrganizationFundCampaign/OrganizationFundCampagins + +## Functions + +- [default](functions/default.md) diff --git a/docs/docs/auto-docs/screens/OrganizationFundCampaign/OrganizationFundCampagins/functions/default.md b/docs/docs/auto-docs/screens/OrganizationFundCampaign/OrganizationFundCampagins/functions/default.md new file mode 100644 index 0000000000..1e5f5bfcdd --- /dev/null +++ b/docs/docs/auto-docs/screens/OrganizationFundCampaign/OrganizationFundCampagins/functions/default.md @@ -0,0 +1,45 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [screens/OrganizationFundCampaign/OrganizationFundCampagins](../README.md) / default + +# Function: default() + +> **default**(): `Element` + +Defined in: [src/screens/OrganizationFundCampaign/OrganizationFundCampagins.tsx:78](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/OrganizationFundCampaign/OrganizationFundCampagins.tsx#L78) + +`orgFundCampaign` component displays a list of fundraising campaigns for a specific fund within an organization. +It allows users to search, sort, view and edit campaigns. + +### Functionality +- Displays a data grid with campaigns information, including their names, start and end dates, funding goals, and actions. +- Provides search functionality to filter campaigns by name. +- Offers sorting options based on funding goal and end date. +- Opens modals for creating or editing campaigns. + +### State +- `campaign`: The current campaign being edited or deleted. +- `searchTerm`: The term used for searching campaigns by name. +- `sortBy`: The current sorting criteria for campaigns. +- `modalState`: An object indicating the visibility of different modals (`same` for create/edit). +- `campaignModalMode`: Determines if the modal is in 'edit' or 'create' mode. + +### Methods +- `handleOpenModal(campaign: InterfaceCampaignInfo | null, mode: 'edit' | 'create')`: Opens the modal for creating or editing a campaign. +- `handleClick(campaignId: string)`: Navigates to the pledge details page for a specific campaign. + +### GraphQL Queries +- Uses `FUND_CAMPAIGN` query to fetch the list of campaigns based on the provided fund ID, search term, and sorting criteria. + +### Rendering +- Renders a `DataGrid` component with campaigns information. +- Displays modals for creating and editing campaigns. +- Shows error and loading states using `Loader` and error message components. + +## Returns + +`Element` + +The rendered component including breadcrumbs, search and filter controls, data grid, and modals. diff --git a/docs/docs/auto-docs/screens/OrganizationFundCampaign/OrganizationFundCampaignMocks/README.md b/docs/docs/auto-docs/screens/OrganizationFundCampaign/OrganizationFundCampaignMocks/README.md new file mode 100644 index 0000000000..a5f1934cd0 --- /dev/null +++ b/docs/docs/auto-docs/screens/OrganizationFundCampaign/OrganizationFundCampaignMocks/README.md @@ -0,0 +1,13 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / screens/OrganizationFundCampaign/OrganizationFundCampaignMocks + +# screens/OrganizationFundCampaign/OrganizationFundCampaignMocks + +## Variables + +- [EMPTY\_MOCKS](variables/EMPTY_MOCKS.md) +- [MOCK\_ERROR](variables/MOCK_ERROR.md) +- [MOCKS](variables/MOCKS.md) diff --git a/docs/docs/auto-docs/screens/OrganizationFundCampaign/OrganizationFundCampaignMocks/variables/EMPTY_MOCKS.md b/docs/docs/auto-docs/screens/OrganizationFundCampaign/OrganizationFundCampaignMocks/variables/EMPTY_MOCKS.md new file mode 100644 index 0000000000..8b19137e98 --- /dev/null +++ b/docs/docs/auto-docs/screens/OrganizationFundCampaign/OrganizationFundCampaignMocks/variables/EMPTY_MOCKS.md @@ -0,0 +1,65 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [screens/OrganizationFundCampaign/OrganizationFundCampaignMocks](../README.md) / EMPTY\_MOCKS + +# Variable: EMPTY\_MOCKS + +> `const` **EMPTY\_MOCKS**: `object`[] + +Defined in: [src/screens/OrganizationFundCampaign/OrganizationFundCampaignMocks.ts:300](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/OrganizationFundCampaign/OrganizationFundCampaignMocks.ts#L300) + +## Type declaration + +### request + +> **request**: `object` + +#### request.query + +> **query**: `DocumentNode` = `FUND_CAMPAIGN` + +#### request.variables + +> **variables**: `object` + +#### request.variables.id + +> **id**: `string` = `'fundId'` + +#### request.variables.orderBy + +> **orderBy**: `null` = `null` + +#### request.variables.where + +> **where**: `object` + +#### request.variables.where.name\_contains + +> **name\_contains**: `string` = `''` + +### result + +> **result**: `object` + +#### result.data + +> **data**: `object` + +#### result.data.getFundById + +> **getFundById**: `object` + +#### result.data.getFundById.campaigns + +> **campaigns**: `never`[] = `[]` + +#### result.data.getFundById.isArchived + +> **isArchived**: `boolean` = `false` + +#### result.data.getFundById.name + +> **name**: `string` = `'Fund 1'` diff --git a/docs/docs/auto-docs/screens/OrganizationFundCampaign/OrganizationFundCampaignMocks/variables/MOCKS.md b/docs/docs/auto-docs/screens/OrganizationFundCampaign/OrganizationFundCampaignMocks/variables/MOCKS.md new file mode 100644 index 0000000000..88cf51758b --- /dev/null +++ b/docs/docs/auto-docs/screens/OrganizationFundCampaign/OrganizationFundCampaignMocks/variables/MOCKS.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [screens/OrganizationFundCampaign/OrganizationFundCampaignMocks](../README.md) / MOCKS + +# Variable: MOCKS + +> `const` **MOCKS**: (\{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `currency`: `undefined`; `endDate`: `undefined`; `fundId`: `undefined`; `fundingGoal`: `undefined`; `id`: `string`; `name`: `undefined`; `orderBy`: `null`; `organizationId`: `undefined`; `startDate`: `undefined`; `where`: \{ `name_contains`: `string`; \}; \}; \}; `result`: \{ `data`: \{ `createFundraisingCampaign`: `undefined`; `getFundById`: \{ `campaigns`: `object`[]; `isArchived`: `boolean`; `name`: `string`; \}; `updateFundraisingCampaign`: `undefined`; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `currency`: `undefined`; `endDate`: `undefined`; `fundId`: `undefined`; `fundingGoal`: `undefined`; `id`: `string`; `name`: `undefined`; `orderBy`: `string`; `organizationId`: `undefined`; `startDate`: `undefined`; `where`: \{ `name_contains`: `string`; \}; \}; \}; `result`: \{ `data`: \{ `createFundraisingCampaign`: `undefined`; `getFundById`: \{ `campaigns`: `object`[]; `isArchived`: `boolean`; `name`: `string`; \}; `updateFundraisingCampaign`: `undefined`; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `currency`: `string`; `endDate`: `string`; `fundId`: `string`; `fundingGoal`: `number`; `id`: `undefined`; `name`: `string`; `orderBy`: `undefined`; `organizationId`: `string`; `startDate`: `string`; `where`: `undefined`; \}; \}; `result`: \{ `data`: \{ `createFundraisingCampaign`: \{ `_id`: `string`; \}; `getFundById`: `undefined`; `updateFundraisingCampaign`: `undefined`; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `currency`: `undefined`; `endDate`: `string`; `fundId`: `undefined`; `fundingGoal`: `number`; `id`: `string`; `name`: `string`; `orderBy`: `undefined`; `organizationId`: `undefined`; `startDate`: `string`; `where`: `undefined`; \}; \}; `result`: \{ `data`: \{ `createFundraisingCampaign`: `undefined`; `getFundById`: `undefined`; `updateFundraisingCampaign`: \{ `_id`: `string`; \}; \}; \}; \})[] + +Defined in: [src/screens/OrganizationFundCampaign/OrganizationFundCampaignMocks.ts:7](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/OrganizationFundCampaign/OrganizationFundCampaignMocks.ts#L7) diff --git a/docs/docs/auto-docs/screens/OrganizationFundCampaign/OrganizationFundCampaignMocks/variables/MOCK_ERROR.md b/docs/docs/auto-docs/screens/OrganizationFundCampaign/OrganizationFundCampaignMocks/variables/MOCK_ERROR.md new file mode 100644 index 0000000000..6c483d9610 --- /dev/null +++ b/docs/docs/auto-docs/screens/OrganizationFundCampaign/OrganizationFundCampaignMocks/variables/MOCK_ERROR.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [screens/OrganizationFundCampaign/OrganizationFundCampaignMocks](../README.md) / MOCK\_ERROR + +# Variable: MOCK\_ERROR + +> `const` **MOCK\_ERROR**: (\{ `error`: `Error`; `request`: \{ `query`: `DocumentNode`; `variables`: \{ `currency`: `undefined`; `endDate`: `undefined`; `fundId`: `undefined`; `fundingGoal`: `undefined`; `id`: `string`; `name`: `undefined`; `orderBy`: `null`; `organizationId`: `undefined`; `startDate`: `undefined`; `where`: \{ `name_contains`: `string`; \}; \}; \}; \} \| \{ `error`: `Error`; `request`: \{ `query`: `DocumentNode`; `variables`: \{ `currency`: `string`; `endDate`: `string`; `fundId`: `string`; `fundingGoal`: `number`; `id`: `undefined`; `name`: `string`; `orderBy`: `undefined`; `organizationId`: `string`; `startDate`: `string`; `where`: `undefined`; \}; \}; \} \| \{ `error`: `Error`; `request`: \{ `query`: `DocumentNode`; `variables`: \{ `currency`: `undefined`; `endDate`: `string`; `fundId`: `undefined`; `fundingGoal`: `number`; `id`: `string`; `name`: `string`; `orderBy`: `undefined`; `organizationId`: `undefined`; `startDate`: `string`; `where`: `undefined`; \}; \}; \})[] + +Defined in: [src/screens/OrganizationFundCampaign/OrganizationFundCampaignMocks.ts:258](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/OrganizationFundCampaign/OrganizationFundCampaignMocks.ts#L258) diff --git a/docs/docs/auto-docs/screens/OrganizationFunds/FundModal/README.md b/docs/docs/auto-docs/screens/OrganizationFunds/FundModal/README.md new file mode 100644 index 0000000000..02806e0e2b --- /dev/null +++ b/docs/docs/auto-docs/screens/OrganizationFunds/FundModal/README.md @@ -0,0 +1,15 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / screens/OrganizationFunds/FundModal + +# screens/OrganizationFunds/FundModal + +## Interfaces + +- [InterfaceFundModal](interfaces/InterfaceFundModal.md) + +## Functions + +- [default](functions/default.md) diff --git a/docs/docs/auto-docs/screens/OrganizationFunds/FundModal/functions/default.md b/docs/docs/auto-docs/screens/OrganizationFunds/FundModal/functions/default.md new file mode 100644 index 0000000000..c25bfa8324 --- /dev/null +++ b/docs/docs/auto-docs/screens/OrganizationFunds/FundModal/functions/default.md @@ -0,0 +1,59 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [screens/OrganizationFunds/FundModal](../README.md) / default + +# Function: default() + +> **default**(`props`, `deprecatedLegacyContext`?): `ReactNode` + +Defined in: [src/screens/OrganizationFunds/FundModal.tsx:52](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/OrganizationFunds/FundModal.tsx#L52) + +`FundModal` component provides a modal dialog for creating or editing a fund. +It allows users to input fund details and submit them to the server. + +This component handles both the creation of new funds and the editing of existing funds, +based on the `mode` prop. It displays a form with fields for the fund's name, description, +and other relevant details. Upon submission, it interacts with the GraphQL API to save +or update the fund details and triggers a refetch of the fund data. + +### Props +- `isOpen`: A boolean indicating whether the modal is open or closed. +- `hide`: A function to close the modal. +- `refetchFunds`: A function to refetch the fund list after a successful operation. +- `fund`: The current fund object being edited or `null` if creating a new fund. +- `orgId`: The ID of the organization to which the fund belongs. +- `mode`: The mode of the modal, either 'edit' or 'create'. + +### State +- `name`: The name of the fund. +- `description`: The description of the fund. +- `amount`: The amount associated with the fund. +- `status`: The status of the fund (e.g., active, archived). + +### Methods +- `handleSubmit()`: Handles form submission, creates or updates the fund, and triggers a refetch of the fund list. +- `handleChange(event: React.ChangeEvent)`: Updates the state based on user input. + +## Parameters + +### props + +[`InterfaceFundModal`](../interfaces/InterfaceFundModal.md) + +### deprecatedLegacyContext? + +`any` + +**Deprecated** + +**See** + +[React Docs](https://legacy.reactjs.org/docs/legacy-context.html#referencing-context-in-lifecycle-methods) + +## Returns + +`ReactNode` + +The rendered modal dialog. diff --git a/docs/docs/auto-docs/screens/OrganizationFunds/FundModal/interfaces/InterfaceFundModal.md b/docs/docs/auto-docs/screens/OrganizationFunds/FundModal/interfaces/InterfaceFundModal.md new file mode 100644 index 0000000000..e8eee4cd0a --- /dev/null +++ b/docs/docs/auto-docs/screens/OrganizationFunds/FundModal/interfaces/InterfaceFundModal.md @@ -0,0 +1,65 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [screens/OrganizationFunds/FundModal](../README.md) / InterfaceFundModal + +# Interface: InterfaceFundModal + +Defined in: [src/screens/OrganizationFunds/FundModal.tsx:15](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/OrganizationFunds/FundModal.tsx#L15) + +## Properties + +### fund + +> **fund**: `null` \| [`InterfaceFundInfo`](../../../../utils/interfaces/interfaces/InterfaceFundInfo.md) + +Defined in: [src/screens/OrganizationFunds/FundModal.tsx:19](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/OrganizationFunds/FundModal.tsx#L19) + +*** + +### hide() + +> **hide**: () => `void` + +Defined in: [src/screens/OrganizationFunds/FundModal.tsx:17](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/OrganizationFunds/FundModal.tsx#L17) + +#### Returns + +`void` + +*** + +### isOpen + +> **isOpen**: `boolean` + +Defined in: [src/screens/OrganizationFunds/FundModal.tsx:16](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/OrganizationFunds/FundModal.tsx#L16) + +*** + +### mode + +> **mode**: `"create"` \| `"edit"` + +Defined in: [src/screens/OrganizationFunds/FundModal.tsx:21](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/OrganizationFunds/FundModal.tsx#L21) + +*** + +### orgId + +> **orgId**: `string` + +Defined in: [src/screens/OrganizationFunds/FundModal.tsx:20](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/OrganizationFunds/FundModal.tsx#L20) + +*** + +### refetchFunds() + +> **refetchFunds**: () => `void` + +Defined in: [src/screens/OrganizationFunds/FundModal.tsx:18](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/OrganizationFunds/FundModal.tsx#L18) + +#### Returns + +`void` diff --git a/docs/docs/auto-docs/screens/OrganizationFunds/OrganizationFunds/README.md b/docs/docs/auto-docs/screens/OrganizationFunds/OrganizationFunds/README.md new file mode 100644 index 0000000000..a719090f79 --- /dev/null +++ b/docs/docs/auto-docs/screens/OrganizationFunds/OrganizationFunds/README.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / screens/OrganizationFunds/OrganizationFunds + +# screens/OrganizationFunds/OrganizationFunds + +## Functions + +- [default](functions/default.md) diff --git a/docs/docs/auto-docs/screens/OrganizationFunds/OrganizationFunds/functions/default.md b/docs/docs/auto-docs/screens/OrganizationFunds/OrganizationFunds/functions/default.md new file mode 100644 index 0000000000..ad5251ddc6 --- /dev/null +++ b/docs/docs/auto-docs/screens/OrganizationFunds/OrganizationFunds/functions/default.md @@ -0,0 +1,48 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [screens/OrganizationFunds/OrganizationFunds](../README.md) / default + +# Function: default() + +> **default**(): `Element` + +Defined in: [src/screens/OrganizationFunds/OrganizationFunds.tsx:79](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/OrganizationFunds/OrganizationFunds.tsx#L79) + +`organizationFunds` component displays a list of funds for a specific organization, +allowing users to search, sort, view and edit funds. + +This component utilizes the `DataGrid` from Material-UI to present the list of funds in a tabular format, +and includes functionality for filtering and sorting. It also handles the opening and closing of modals +for creating and editing. + +It includes: +- A search input field to filter funds by name. +- A dropdown menu to sort funds by creation date. +- A button to create a new fund. +- A table to display the list of funds with columns for fund details and actions. +- Modals for creating and editing funds. + +### GraphQL Queries +- `FUND_LIST`: Fetches a list of funds for the given organization, filtered and sorted based on the provided parameters. + +### Props +- `orgId`: The ID of the organization whose funds are being managed. + +### State +- `fund`: The currently selected fund for editing or deletion. +- `searchTerm`: The current search term used for filtering funds. +- `sortBy`: The current sorting order for funds. +- `modalState`: The state of the modals (edit/create). +- `fundModalMode`: The mode of the fund modal (edit or create). + +### Methods +- `handleOpenModal(fund: InterfaceFundInfo | null, mode: 'edit' | 'create')`: Opens the fund modal with the given fund and mode. +- `handleClick(fundId: string)`: Navigates to the campaign page for the specified fund. + +## Returns + +`Element` + +The rendered component. diff --git a/docs/docs/auto-docs/screens/OrganizationFunds/OrganizationFundsMocks/README.md b/docs/docs/auto-docs/screens/OrganizationFunds/OrganizationFundsMocks/README.md new file mode 100644 index 0000000000..f62f2feafd --- /dev/null +++ b/docs/docs/auto-docs/screens/OrganizationFunds/OrganizationFundsMocks/README.md @@ -0,0 +1,13 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / screens/OrganizationFunds/OrganizationFundsMocks + +# screens/OrganizationFunds/OrganizationFundsMocks + +## Variables + +- [MOCKS](variables/MOCKS.md) +- [MOCKS\_ERROR](variables/MOCKS_ERROR.md) +- [NO\_FUNDS](variables/NO_FUNDS.md) diff --git a/docs/docs/auto-docs/screens/OrganizationFunds/OrganizationFundsMocks/variables/MOCKS.md b/docs/docs/auto-docs/screens/OrganizationFunds/OrganizationFundsMocks/variables/MOCKS.md new file mode 100644 index 0000000000..6b36e6f591 --- /dev/null +++ b/docs/docs/auto-docs/screens/OrganizationFunds/OrganizationFundsMocks/variables/MOCKS.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [screens/OrganizationFunds/OrganizationFundsMocks](../README.md) / MOCKS + +# Variable: MOCKS + +> `const` **MOCKS**: (\{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `filter`: `string`; `id`: `undefined`; `isArchived`: `undefined`; `isDefault`: `undefined`; `name`: `undefined`; `orderBy`: `string`; `organizationId`: `string`; `refrenceNumber`: `undefined`; `taxDeductible`: `undefined`; \}; \}; `result`: \{ `data`: \{ `createFund`: `undefined`; `fundsByOrganization`: `object`[]; `updateFund`: `undefined`; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `filter`: `undefined`; `id`: `undefined`; `isArchived`: `boolean`; `isDefault`: `boolean`; `name`: `string`; `orderBy`: `undefined`; `organizationId`: `string`; `refrenceNumber`: `string`; `taxDeductible`: `boolean`; \}; \}; `result`: \{ `data`: \{ `createFund`: \{ `_id`: `string`; \}; `fundsByOrganization`: `undefined`; `updateFund`: `undefined`; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `filter`: `undefined`; `id`: `string`; `isArchived`: `boolean`; `isDefault`: `boolean`; `name`: `string`; `orderBy`: `undefined`; `organizationId`: `undefined`; `refrenceNumber`: `string`; `taxDeductible`: `boolean`; \}; \}; `result`: \{ `data`: \{ `createFund`: `undefined`; `fundsByOrganization`: `undefined`; `updateFund`: \{ `_id`: `string`; \}; \}; \}; \})[] + +Defined in: [src/screens/OrganizationFunds/OrganizationFundsMocks.ts:7](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/OrganizationFunds/OrganizationFundsMocks.ts#L7) diff --git a/docs/docs/auto-docs/screens/OrganizationFunds/OrganizationFundsMocks/variables/MOCKS_ERROR.md b/docs/docs/auto-docs/screens/OrganizationFunds/OrganizationFundsMocks/variables/MOCKS_ERROR.md new file mode 100644 index 0000000000..aa3ec4bfa0 --- /dev/null +++ b/docs/docs/auto-docs/screens/OrganizationFunds/OrganizationFundsMocks/variables/MOCKS_ERROR.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [screens/OrganizationFunds/OrganizationFundsMocks](../README.md) / MOCKS\_ERROR + +# Variable: MOCKS\_ERROR + +> `const` **MOCKS\_ERROR**: (\{ `error`: `Error`; `request`: \{ `query`: `DocumentNode`; `variables`: \{ `filter`: `string`; `id`: `undefined`; `isArchived`: `undefined`; `isDefault`: `undefined`; `name`: `undefined`; `orderBy`: `string`; `organizationId`: `string`; `refrenceNumber`: `undefined`; `taxDeductible`: `undefined`; \}; \}; \} \| \{ `error`: `Error`; `request`: \{ `query`: `DocumentNode`; `variables`: \{ `filter`: `undefined`; `id`: `undefined`; `isArchived`: `boolean`; `isDefault`: `boolean`; `name`: `string`; `orderBy`: `undefined`; `organizationId`: `string`; `refrenceNumber`: `string`; `taxDeductible`: `boolean`; \}; \}; \} \| \{ `error`: `Error`; `request`: \{ `query`: `DocumentNode`; `variables`: \{ `filter`: `undefined`; `id`: `string`; `isArchived`: `boolean`; `isDefault`: `boolean`; `name`: `string`; `orderBy`: `undefined`; `organizationId`: `undefined`; `refrenceNumber`: `string`; `taxDeductible`: `boolean`; \}; \}; \})[] + +Defined in: [src/screens/OrganizationFunds/OrganizationFundsMocks.ts:191](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/OrganizationFunds/OrganizationFundsMocks.ts#L191) diff --git a/docs/docs/auto-docs/screens/OrganizationFunds/OrganizationFundsMocks/variables/NO_FUNDS.md b/docs/docs/auto-docs/screens/OrganizationFunds/OrganizationFundsMocks/variables/NO_FUNDS.md new file mode 100644 index 0000000000..23c82fd9c9 --- /dev/null +++ b/docs/docs/auto-docs/screens/OrganizationFunds/OrganizationFundsMocks/variables/NO_FUNDS.md @@ -0,0 +1,49 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [screens/OrganizationFunds/OrganizationFundsMocks](../README.md) / NO\_FUNDS + +# Variable: NO\_FUNDS + +> `const` **NO\_FUNDS**: `object`[] + +Defined in: [src/screens/OrganizationFunds/OrganizationFundsMocks.ts:173](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/OrganizationFunds/OrganizationFundsMocks.ts#L173) + +## Type declaration + +### request + +> **request**: `object` + +#### request.query + +> **query**: `DocumentNode` = `FUND_LIST` + +#### request.variables + +> **variables**: `object` + +#### request.variables.filter + +> **filter**: `string` = `''` + +#### request.variables.orderBy + +> **orderBy**: `string` = `'createdAt_DESC'` + +#### request.variables.organizationId + +> **organizationId**: `string` = `'orgId'` + +### result + +> **result**: `object` + +#### result.data + +> **data**: `object` + +#### result.data.fundsByOrganization + +> **fundsByOrganization**: `never`[] = `[]` diff --git a/docs/docs/auto-docs/screens/OrganizationPeople/AddMember/README.md b/docs/docs/auto-docs/screens/OrganizationPeople/AddMember/README.md new file mode 100644 index 0000000000..df9c166c1f --- /dev/null +++ b/docs/docs/auto-docs/screens/OrganizationPeople/AddMember/README.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / screens/OrganizationPeople/AddMember + +# screens/OrganizationPeople/AddMember + +## Functions + +- [default](functions/default.md) diff --git a/docs/docs/auto-docs/screens/OrganizationPeople/AddMember/functions/default.md b/docs/docs/auto-docs/screens/OrganizationPeople/AddMember/functions/default.md new file mode 100644 index 0000000000..c44866a13c --- /dev/null +++ b/docs/docs/auto-docs/screens/OrganizationPeople/AddMember/functions/default.md @@ -0,0 +1,23 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [screens/OrganizationPeople/AddMember](../README.md) / default + +# Function: default() + +> **default**(): `JSX.Element` + +Defined in: [src/screens/OrganizationPeople/AddMember.tsx:62](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/OrganizationPeople/AddMember.tsx#L62) + +AddMember component is used to add new members to the organization by selecting from +the existing users or creating a new user. +It uses the following queries and mutations: + ORGANIZATIONS_LIST, + ORGANIZATIONS_MEMBER_CONNECTION_LIST, + USERS_CONNECTION_LIST, + ADD_MEMBER_MUTATION,SIGNUP_MUTATION. + +## Returns + +`JSX.Element` diff --git a/docs/docs/auto-docs/screens/OrganizationPeople/MockDataTypes/README.md b/docs/docs/auto-docs/screens/OrganizationPeople/MockDataTypes/README.md new file mode 100644 index 0000000000..361f573582 --- /dev/null +++ b/docs/docs/auto-docs/screens/OrganizationPeople/MockDataTypes/README.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / screens/OrganizationPeople/MockDataTypes + +# screens/OrganizationPeople/MockDataTypes + +## Type Aliases + +- [TestMock](type-aliases/TestMock.md) diff --git a/docs/docs/auto-docs/screens/OrganizationPeople/MockDataTypes/type-aliases/TestMock.md b/docs/docs/auto-docs/screens/OrganizationPeople/MockDataTypes/type-aliases/TestMock.md new file mode 100644 index 0000000000..e7b9e002bb --- /dev/null +++ b/docs/docs/auto-docs/screens/OrganizationPeople/MockDataTypes/type-aliases/TestMock.md @@ -0,0 +1,153 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [screens/OrganizationPeople/MockDataTypes](../README.md) / TestMock + +# Type Alias: TestMock + +> **TestMock**: `object` + +Defined in: [src/screens/OrganizationPeople/MockDataTypes.ts:34](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/OrganizationPeople/MockDataTypes.ts#L34) + +## Type declaration + +### newData()? + +> `optional` **newData**: () => [`TestMock`](TestMock.md)\[`"result"`\] + +#### Returns + +[`TestMock`](TestMock.md)\[`"result"`\] + +### request + +> **request**: `object` + +#### request.query + +> **query**: `DocumentNode` + +#### request.variables + +> **variables**: `object` + +#### request.variables.email? + +> `optional` **email**: `string` + +#### request.variables.firstName? + +> `optional` **firstName**: `string` + +#### request.variables.firstName\_contains? + +> `optional` **firstName\_contains**: `string` + +#### request.variables.firstNameContains? + +> `optional` **firstNameContains**: `string` + +#### request.variables.id? + +> `optional` **id**: `string` + +#### request.variables.id\_not\_in? + +> `optional` **id\_not\_in**: `string`[] + +#### request.variables.lastName? + +> `optional` **lastName**: `string` + +#### request.variables.lastName\_contains? + +> `optional` **lastName\_contains**: `string` + +#### request.variables.lastNameContains? + +> `optional` **lastNameContains**: `string` + +#### request.variables.orgid? + +> `optional` **orgid**: `string` + +#### request.variables.orgId? + +> `optional` **orgId**: `string` + +#### request.variables.password? + +> `optional` **password**: `string` + +#### request.variables.userid? + +> `optional` **userid**: `string` + +### result + +> **result**: `object` + +#### result.\_\_typename? + +> `optional` **\_\_typename**: `string` + +#### result.data + +> **data**: `object` + +#### result.data.\_\_typename? + +> `optional` **\_\_typename**: `string` + +#### result.data.createMember? + +> `optional` **createMember**: `object` + +#### result.data.createMember.\_\_typename + +> **\_\_typename**: `string` + +#### result.data.createMember.\_id + +> **\_id**: `string` + +#### result.data.organizations? + +> `optional` **organizations**: [`InterfaceQueryOrganizationsListObject`](../../../../utils/interfaces/interfaces/InterfaceQueryOrganizationsListObject.md)[] + +#### result.data.organizationsMemberConnection? + +> `optional` **organizationsMemberConnection**: `object` + +#### result.data.organizationsMemberConnection.edges? + +> `optional` **edges**: `Edge`[] + +#### result.data.organizationsMemberConnection.user? + +> `optional` **user**: `Edge`[] + +#### result.data.signUp? + +> `optional` **signUp**: `object` + +#### result.data.signUp.accessToken? + +> `optional` **accessToken**: `string` + +#### result.data.signUp.refreshToken? + +> `optional` **refreshToken**: `string` + +#### result.data.signUp.user? + +> `optional` **user**: `object` + +#### result.data.signUp.user.\_id + +> **\_id**: `string` + +#### result.data.users? + +> `optional` **users**: `object`[] diff --git a/docs/docs/auto-docs/screens/OrganizationPeople/OrganizationPeople/README.md b/docs/docs/auto-docs/screens/OrganizationPeople/OrganizationPeople/README.md new file mode 100644 index 0000000000..77578fc43c --- /dev/null +++ b/docs/docs/auto-docs/screens/OrganizationPeople/OrganizationPeople/README.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / screens/OrganizationPeople/OrganizationPeople + +# screens/OrganizationPeople/OrganizationPeople + +## Functions + +- [default](functions/default.md) diff --git a/docs/docs/auto-docs/screens/OrganizationPeople/OrganizationPeople/functions/default.md b/docs/docs/auto-docs/screens/OrganizationPeople/OrganizationPeople/functions/default.md new file mode 100644 index 0000000000..7355f289cb --- /dev/null +++ b/docs/docs/auto-docs/screens/OrganizationPeople/OrganizationPeople/functions/default.md @@ -0,0 +1,21 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [screens/OrganizationPeople/OrganizationPeople](../README.md) / default + +# Function: default() + +> **default**(): `JSX.Element` + +Defined in: [src/screens/OrganizationPeople/OrganizationPeople.tsx:31](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/OrganizationPeople/OrganizationPeople.tsx#L31) + +OrganizationPeople component is used to display the list of members, admins and users of the organization. +It also provides the functionality to search the members, admins and users by their full name. +It also provides the functionality to remove the members and admins from the organization. + +## Returns + +`JSX.Element` + +JSX.Element which contains the list of members, admins and users of the organization. diff --git a/docs/docs/auto-docs/screens/OrganizationTags/OrganizationTags/README.md b/docs/docs/auto-docs/screens/OrganizationTags/OrganizationTags/README.md new file mode 100644 index 0000000000..baa960732c --- /dev/null +++ b/docs/docs/auto-docs/screens/OrganizationTags/OrganizationTags/README.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / screens/OrganizationTags/OrganizationTags + +# screens/OrganizationTags/OrganizationTags + +## Functions + +- [default](functions/default.md) diff --git a/docs/docs/auto-docs/screens/OrganizationTags/OrganizationTags/functions/default.md b/docs/docs/auto-docs/screens/OrganizationTags/OrganizationTags/functions/default.md new file mode 100644 index 0000000000..9cb2b7f98f --- /dev/null +++ b/docs/docs/auto-docs/screens/OrganizationTags/OrganizationTags/functions/default.md @@ -0,0 +1,20 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [screens/OrganizationTags/OrganizationTags](../README.md) / default + +# Function: default() + +> **default**(): `JSX.Element` + +Defined in: [src/screens/OrganizationTags/OrganizationTags.tsx:39](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/OrganizationTags/OrganizationTags.tsx#L39) + +Component that renders the Organization Tags screen when the app navigates to '/orgtags/:orgId'. + +This component does not accept any props and is responsible for displaying +the content associated with the corresponding route. + +## Returns + +`JSX.Element` diff --git a/docs/docs/auto-docs/screens/OrganizationTags/OrganizationTagsMocks/README.md b/docs/docs/auto-docs/screens/OrganizationTags/OrganizationTagsMocks/README.md new file mode 100644 index 0000000000..493d797555 --- /dev/null +++ b/docs/docs/auto-docs/screens/OrganizationTags/OrganizationTagsMocks/README.md @@ -0,0 +1,12 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / screens/OrganizationTags/OrganizationTagsMocks + +# screens/OrganizationTags/OrganizationTagsMocks + +## Variables + +- [MOCKS](variables/MOCKS.md) +- [MOCKS\_ERROR](variables/MOCKS_ERROR.md) diff --git a/docs/docs/auto-docs/screens/OrganizationTags/OrganizationTagsMocks/variables/MOCKS.md b/docs/docs/auto-docs/screens/OrganizationTags/OrganizationTagsMocks/variables/MOCKS.md new file mode 100644 index 0000000000..d00e7afd19 --- /dev/null +++ b/docs/docs/auto-docs/screens/OrganizationTags/OrganizationTagsMocks/variables/MOCKS.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [screens/OrganizationTags/OrganizationTagsMocks](../README.md) / MOCKS + +# Variable: MOCKS + +> `const` **MOCKS**: (\{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `after`: `undefined`; `first`: `number`; `id`: `string`; `name`: `undefined`; `organizationId`: `undefined`; `sortedBy`: \{ `id`: `string`; \}; `where`: \{ `name`: \{ `starts_with`: `string`; \}; \}; \}; \}; `result`: \{ `data`: \{ `createUserTag`: `undefined`; `organizations`: `object`[]; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `after`: `string`; `first`: `number`; `id`: `string`; `name`: `undefined`; `organizationId`: `undefined`; `sortedBy`: \{ `id`: `string`; \}; `where`: \{ `name`: \{ `starts_with`: `string`; \}; \}; \}; \}; `result`: \{ `data`: \{ `createUserTag`: `undefined`; `organizations`: `object`[]; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `after`: `undefined`; `first`: `number`; `id`: `string`; `name`: `undefined`; `organizationId`: `undefined`; `sortedBy`: \{ `id`: `string`; \}; `where`: \{ `name`: \{ `starts_with`: `string`; \}; \}; \}; \}; `result`: \{ `data`: \{ `createUserTag`: `undefined`; `organizations`: `object`[]; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `after`: `undefined`; `first`: `undefined`; `id`: `undefined`; `name`: `string`; `organizationId`: `string`; `sortedBy`: `undefined`; `where`: `undefined`; \}; \}; `result`: \{ `data`: \{ `createUserTag`: \{ `_id`: `string`; \}; `organizations`: `undefined`; \}; \}; \})[] + +Defined in: [src/screens/OrganizationTags/OrganizationTagsMocks.ts:5](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/OrganizationTags/OrganizationTagsMocks.ts#L5) diff --git a/docs/docs/auto-docs/screens/OrganizationTags/OrganizationTagsMocks/variables/MOCKS_ERROR.md b/docs/docs/auto-docs/screens/OrganizationTags/OrganizationTagsMocks/variables/MOCKS_ERROR.md new file mode 100644 index 0000000000..6041ebe1f9 --- /dev/null +++ b/docs/docs/auto-docs/screens/OrganizationTags/OrganizationTagsMocks/variables/MOCKS_ERROR.md @@ -0,0 +1,57 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [screens/OrganizationTags/OrganizationTagsMocks](../README.md) / MOCKS\_ERROR + +# Variable: MOCKS\_ERROR + +> `const` **MOCKS\_ERROR**: `object`[] + +Defined in: [src/screens/OrganizationTags/OrganizationTagsMocks.ts:413](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/OrganizationTags/OrganizationTagsMocks.ts#L413) + +## Type declaration + +### error + +> **error**: `Error` + +### request + +> **request**: `object` + +#### request.query + +> **query**: `DocumentNode` = `ORGANIZATION_USER_TAGS_LIST` + +#### request.variables + +> **variables**: `object` + +#### request.variables.first + +> **first**: `number` = `TAGS_QUERY_DATA_CHUNK_SIZE` + +#### request.variables.id + +> **id**: `string` = `'orgId'` + +#### request.variables.sortedBy + +> **sortedBy**: `object` + +#### request.variables.sortedBy.id + +> **id**: `string` = `'DESCENDING'` + +#### request.variables.where + +> **where**: `object` + +#### request.variables.where.name + +> **name**: `object` + +#### request.variables.where.name.starts\_with + +> **starts\_with**: `string` = `''` diff --git a/docs/docs/auto-docs/screens/OrganizationVenues/OrganizationVenues/README.md b/docs/docs/auto-docs/screens/OrganizationVenues/OrganizationVenues/README.md new file mode 100644 index 0000000000..dfc4287d24 --- /dev/null +++ b/docs/docs/auto-docs/screens/OrganizationVenues/OrganizationVenues/README.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / screens/OrganizationVenues/OrganizationVenues + +# screens/OrganizationVenues/OrganizationVenues + +## Functions + +- [default](functions/default.md) diff --git a/docs/docs/auto-docs/screens/OrganizationVenues/OrganizationVenues/functions/default.md b/docs/docs/auto-docs/screens/OrganizationVenues/OrganizationVenues/functions/default.md new file mode 100644 index 0000000000..358217ac54 --- /dev/null +++ b/docs/docs/auto-docs/screens/OrganizationVenues/OrganizationVenues/functions/default.md @@ -0,0 +1,18 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [screens/OrganizationVenues/OrganizationVenues](../README.md) / default + +# Function: default() + +> **default**(): `JSX.Element` + +Defined in: [src/screens/OrganizationVenues/OrganizationVenues.tsx:23](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/OrganizationVenues/OrganizationVenues.tsx#L23) + +Component to manage and display the list of organization venues. +Handles searching, sorting, and CRUD operations for venues. + +## Returns + +`JSX.Element` diff --git a/docs/docs/auto-docs/screens/PageNotFound/PageNotFound/README.md b/docs/docs/auto-docs/screens/PageNotFound/PageNotFound/README.md new file mode 100644 index 0000000000..429e758991 --- /dev/null +++ b/docs/docs/auto-docs/screens/PageNotFound/PageNotFound/README.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / screens/PageNotFound/PageNotFound + +# screens/PageNotFound/PageNotFound + +## Functions + +- [default](functions/default.md) diff --git a/docs/docs/auto-docs/screens/PageNotFound/PageNotFound/functions/default.md b/docs/docs/auto-docs/screens/PageNotFound/PageNotFound/functions/default.md new file mode 100644 index 0000000000..8d931fce3d --- /dev/null +++ b/docs/docs/auto-docs/screens/PageNotFound/PageNotFound/functions/default.md @@ -0,0 +1,19 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [screens/PageNotFound/PageNotFound](../README.md) / default + +# Function: default() + +> **default**(): `Element` + +Defined in: [src/screens/PageNotFound/PageNotFound.tsx:15](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/PageNotFound/PageNotFound.tsx#L15) + +The `PageNotFound` component displays a 404 error page when a user navigates to a non-existent route. +It shows a message indicating that the page was not found and provides a link to redirect users back +to the appropriate home page based on their admin status. + +## Returns + +`Element` diff --git a/docs/docs/auto-docs/screens/Requests/Requests/README.md b/docs/docs/auto-docs/screens/Requests/Requests/README.md new file mode 100644 index 0000000000..b20e72c1ef --- /dev/null +++ b/docs/docs/auto-docs/screens/Requests/Requests/README.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / screens/Requests/Requests + +# screens/Requests/Requests + +## Functions + +- [default](functions/default.md) diff --git a/docs/docs/auto-docs/screens/Requests/Requests/functions/default.md b/docs/docs/auto-docs/screens/Requests/Requests/functions/default.md new file mode 100644 index 0000000000..6cce4ecd74 --- /dev/null +++ b/docs/docs/auto-docs/screens/Requests/Requests/functions/default.md @@ -0,0 +1,18 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [screens/Requests/Requests](../README.md) / default + +# Function: default() + +> **default**(): `Element` + +Defined in: [src/screens/Requests/Requests.tsx:34](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/Requests/Requests.tsx#L34) + +The `Requests` component fetches and displays a paginated list of membership requests +for an organization, with functionality for searching, filtering, and infinite scrolling. + +## Returns + +`Element` diff --git a/docs/docs/auto-docs/screens/Requests/RequestsMocks/README.md b/docs/docs/auto-docs/screens/Requests/RequestsMocks/README.md new file mode 100644 index 0000000000..c463ae9308 --- /dev/null +++ b/docs/docs/auto-docs/screens/Requests/RequestsMocks/README.md @@ -0,0 +1,17 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / screens/Requests/RequestsMocks + +# screens/Requests/RequestsMocks + +## Variables + +- [EMPTY\_MOCKS](variables/EMPTY_MOCKS.md) +- [EMPTY\_REQUEST\_MOCKS](variables/EMPTY_REQUEST_MOCKS.md) +- [MOCKS](variables/MOCKS.md) +- [MOCKS\_WITH\_ERROR](variables/MOCKS_WITH_ERROR.md) +- [MOCKS2](variables/MOCKS2.md) +- [MOCKS3](variables/MOCKS3.md) +- [MOCKS4](variables/MOCKS4.md) diff --git a/docs/docs/auto-docs/screens/Requests/RequestsMocks/variables/EMPTY_MOCKS.md b/docs/docs/auto-docs/screens/Requests/RequestsMocks/variables/EMPTY_MOCKS.md new file mode 100644 index 0000000000..25d7d5fbd4 --- /dev/null +++ b/docs/docs/auto-docs/screens/Requests/RequestsMocks/variables/EMPTY_MOCKS.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [screens/Requests/RequestsMocks](../README.md) / EMPTY\_MOCKS + +# Variable: EMPTY\_MOCKS + +> `const` **EMPTY\_MOCKS**: (\{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `first`: `number`; `firstName_contains`: `string`; `id`: `string`; `skip`: `number`; \}; \}; `result`: \{ `data`: \{ `organizations`: `object`[]; `organizationsConnection`: `undefined`; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: `undefined`; \}; `result`: \{ `data`: \{ `organizations`: `undefined`; `organizationsConnection`: `never`[]; \}; \}; \})[] + +Defined in: [src/screens/Requests/RequestsMocks.ts:522](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/Requests/RequestsMocks.ts#L522) diff --git a/docs/docs/auto-docs/screens/Requests/RequestsMocks/variables/EMPTY_REQUEST_MOCKS.md b/docs/docs/auto-docs/screens/Requests/RequestsMocks/variables/EMPTY_REQUEST_MOCKS.md new file mode 100644 index 0000000000..5798a6591d --- /dev/null +++ b/docs/docs/auto-docs/screens/Requests/RequestsMocks/variables/EMPTY_REQUEST_MOCKS.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [screens/Requests/RequestsMocks](../README.md) / EMPTY\_REQUEST\_MOCKS + +# Variable: EMPTY\_REQUEST\_MOCKS + +> `const` **EMPTY\_REQUEST\_MOCKS**: (\{ `request`: \{ `query`: `DocumentNode`; `variables`: `undefined`; \}; `result`: \{ `data`: \{ `organizations`: `undefined`; `organizationsConnection`: `object`[]; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `first`: `number`; `firstName_contains`: `string`; `id`: `string`; `skip`: `number`; \}; \}; `result`: \{ `data`: \{ `organizations`: `object`[]; `organizationsConnection`: `undefined`; \}; \}; \})[] + +Defined in: [src/screens/Requests/RequestsMocks.ts:6](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/Requests/RequestsMocks.ts#L6) diff --git a/docs/docs/auto-docs/screens/Requests/RequestsMocks/variables/MOCKS.md b/docs/docs/auto-docs/screens/Requests/RequestsMocks/variables/MOCKS.md new file mode 100644 index 0000000000..c475c45dc0 --- /dev/null +++ b/docs/docs/auto-docs/screens/Requests/RequestsMocks/variables/MOCKS.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [screens/Requests/RequestsMocks](../README.md) / MOCKS + +# Variable: MOCKS + +> `const` **MOCKS**: (\{ `request`: \{ `query`: `DocumentNode`; `variables`: `undefined`; \}; `result`: \{ `data`: \{ `organizations`: `undefined`; `organizationsConnection`: `object`[]; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `first`: `number`; `firstName_contains`: `string`; `id`: `string`; `skip`: `number`; \}; \}; `result`: \{ `data`: \{ `organizations`: `object`[]; `organizationsConnection`: `undefined`; \}; \}; \})[] + +Defined in: [src/screens/Requests/RequestsMocks.ts:71](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/Requests/RequestsMocks.ts#L71) diff --git a/docs/docs/auto-docs/screens/Requests/RequestsMocks/variables/MOCKS2.md b/docs/docs/auto-docs/screens/Requests/RequestsMocks/variables/MOCKS2.md new file mode 100644 index 0000000000..ce6c449b39 --- /dev/null +++ b/docs/docs/auto-docs/screens/Requests/RequestsMocks/variables/MOCKS2.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [screens/Requests/RequestsMocks](../README.md) / MOCKS2 + +# Variable: MOCKS2 + +> `const` **MOCKS2**: (\{ `request`: \{ `query`: `DocumentNode`; `variables`: `undefined`; \}; `result`: \{ `data`: \{ `organizations`: `undefined`; `organizationsConnection`: `object`[]; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `first`: `number`; `firstName_contains`: `string`; `id`: `string`; `skip`: `number`; \}; \}; `result`: \{ `data`: \{ `organizations`: `object`[]; `organizationsConnection`: `undefined`; \}; \}; \})[] + +Defined in: [src/screens/Requests/RequestsMocks.ts:387](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/Requests/RequestsMocks.ts#L387) diff --git a/docs/docs/auto-docs/screens/Requests/RequestsMocks/variables/MOCKS3.md b/docs/docs/auto-docs/screens/Requests/RequestsMocks/variables/MOCKS3.md new file mode 100644 index 0000000000..8a4955e6c0 --- /dev/null +++ b/docs/docs/auto-docs/screens/Requests/RequestsMocks/variables/MOCKS3.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [screens/Requests/RequestsMocks](../README.md) / MOCKS3 + +# Variable: MOCKS3 + +> `const` **MOCKS3**: (\{ `request`: \{ `query`: `DocumentNode`; `variables`: `undefined`; \}; `result`: \{ `data`: \{ `organizations`: `undefined`; `organizationsConnection`: `object`[]; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `first`: `number`; `firstName_contains`: `string`; `id`: `string`; `skip`: `number`; \}; \}; `result`: \{ `data`: \{ `organizations`: `never`[]; `organizationsConnection`: `undefined`; \}; \}; \})[] + +Defined in: [src/screens/Requests/RequestsMocks.ts:462](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/Requests/RequestsMocks.ts#L462) diff --git a/docs/docs/auto-docs/screens/Requests/RequestsMocks/variables/MOCKS4.md b/docs/docs/auto-docs/screens/Requests/RequestsMocks/variables/MOCKS4.md new file mode 100644 index 0000000000..e75e07825c --- /dev/null +++ b/docs/docs/auto-docs/screens/Requests/RequestsMocks/variables/MOCKS4.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [screens/Requests/RequestsMocks](../README.md) / MOCKS4 + +# Variable: MOCKS4 + +> `const` **MOCKS4**: (\{ `request`: \{ `query`: `DocumentNode`; `variables`: `undefined`; \}; `result`: \{ `data`: \{ `organizations`: `undefined`; `organizationsConnection`: `object`[]; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `first`: `number`; `firstName_contains`: `string`; `id`: `string`; `skip`: `number`; \}; \}; `result`: \{ `data`: \{ `organizations`: `object`[]; `organizationsConnection`: `undefined`; \}; \}; \})[] + +Defined in: [src/screens/Requests/RequestsMocks.ts:155](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/Requests/RequestsMocks.ts#L155) diff --git a/docs/docs/auto-docs/screens/Requests/RequestsMocks/variables/MOCKS_WITH_ERROR.md b/docs/docs/auto-docs/screens/Requests/RequestsMocks/variables/MOCKS_WITH_ERROR.md new file mode 100644 index 0000000000..cf882dfd60 --- /dev/null +++ b/docs/docs/auto-docs/screens/Requests/RequestsMocks/variables/MOCKS_WITH_ERROR.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [screens/Requests/RequestsMocks](../README.md) / MOCKS\_WITH\_ERROR + +# Variable: MOCKS\_WITH\_ERROR + +> `const` **MOCKS\_WITH\_ERROR**: (\{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `first`: `number`; `firstName_contains`: `string`; `id`: `string`; `skip`: `number`; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: `undefined`; \}; \})[] + +Defined in: [src/screens/Requests/RequestsMocks.ts:556](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/Requests/RequestsMocks.ts#L556) diff --git a/docs/docs/auto-docs/screens/SubTags/SubTags/README.md b/docs/docs/auto-docs/screens/SubTags/SubTags/README.md new file mode 100644 index 0000000000..37ac77a0df --- /dev/null +++ b/docs/docs/auto-docs/screens/SubTags/SubTags/README.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / screens/SubTags/SubTags + +# screens/SubTags/SubTags + +## Functions + +- [default](functions/default.md) diff --git a/docs/docs/auto-docs/screens/SubTags/SubTags/functions/default.md b/docs/docs/auto-docs/screens/SubTags/SubTags/functions/default.md new file mode 100644 index 0000000000..5712b40a3e --- /dev/null +++ b/docs/docs/auto-docs/screens/SubTags/SubTags/functions/default.md @@ -0,0 +1,20 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [screens/SubTags/SubTags](../README.md) / default + +# Function: default() + +> **default**(): `JSX.Element` + +Defined in: [src/screens/SubTags/SubTags.tsx:40](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/SubTags/SubTags.tsx#L40) + +Component that renders the SubTags screen when the app navigates to '/orgtags/:orgId/subtags/:tagId'. + +This component does not accept any props and is responsible for displaying +the content associated with the corresponding route. + +## Returns + +`JSX.Element` diff --git a/docs/docs/auto-docs/screens/SubTags/SubTagsMocks/README.md b/docs/docs/auto-docs/screens/SubTags/SubTagsMocks/README.md new file mode 100644 index 0000000000..1d55807317 --- /dev/null +++ b/docs/docs/auto-docs/screens/SubTags/SubTagsMocks/README.md @@ -0,0 +1,12 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / screens/SubTags/SubTagsMocks + +# screens/SubTags/SubTagsMocks + +## Variables + +- [MOCKS](variables/MOCKS.md) +- [MOCKS\_ERROR\_SUB\_TAGS](variables/MOCKS_ERROR_SUB_TAGS.md) diff --git a/docs/docs/auto-docs/screens/SubTags/SubTagsMocks/variables/MOCKS.md b/docs/docs/auto-docs/screens/SubTags/SubTagsMocks/variables/MOCKS.md new file mode 100644 index 0000000000..57aa792a08 --- /dev/null +++ b/docs/docs/auto-docs/screens/SubTags/SubTagsMocks/variables/MOCKS.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [screens/SubTags/SubTagsMocks](../README.md) / MOCKS + +# Variable: MOCKS + +> `const` **MOCKS**: (\{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `after`: `string`; `first`: `number`; `id`: `string`; `name`: `undefined`; `organizationId`: `undefined`; `parentTagId`: `undefined`; `sortedBy`: \{ `id`: `string`; \}; `where`: \{ `name`: \{ `starts_with`: `string`; \}; \}; \}; \}; `result`: \{ `data`: \{ `createUserTag`: `undefined`; `getChildTags`: \{ `ancestorTags`: `never`[]; `childTags`: \{ `edges`: `object`[]; `pageInfo`: \{ `endCursor`: `string`; `hasNextPage`: `boolean`; `hasPreviousPage`: `boolean`; `startCursor`: `string`; \}; `totalCount`: `number`; \}; `name`: `string`; \}; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `after`: `undefined`; `first`: `number`; `id`: `string`; `name`: `undefined`; `organizationId`: `undefined`; `parentTagId`: `undefined`; `sortedBy`: \{ `id`: `string`; \}; `where`: \{ `name`: \{ `starts_with`: `string`; \}; \}; \}; \}; `result`: \{ `data`: \{ `createUserTag`: `undefined`; `getChildTags`: \{ `ancestorTags`: `object`[]; `childTags`: \{ `edges`: `object`[]; `pageInfo`: \{ `endCursor`: `string`; `hasNextPage`: `boolean`; `hasPreviousPage`: `boolean`; `startCursor`: `string`; \}; `totalCount`: `number`; \}; `name`: `string`; \}; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `after`: `undefined`; `first`: `undefined`; `id`: `undefined`; `name`: `string`; `organizationId`: `string`; `parentTagId`: `string`; `sortedBy`: `undefined`; `where`: `undefined`; \}; \}; `result`: \{ `data`: \{ `createUserTag`: \{ `_id`: `string`; \}; `getChildTags`: `undefined`; \}; \}; \})[] + +Defined in: [src/screens/SubTags/SubTagsMocks.ts:5](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/SubTags/SubTagsMocks.ts#L5) diff --git a/docs/docs/auto-docs/screens/SubTags/SubTagsMocks/variables/MOCKS_ERROR_SUB_TAGS.md b/docs/docs/auto-docs/screens/SubTags/SubTagsMocks/variables/MOCKS_ERROR_SUB_TAGS.md new file mode 100644 index 0000000000..a00295e077 --- /dev/null +++ b/docs/docs/auto-docs/screens/SubTags/SubTagsMocks/variables/MOCKS_ERROR_SUB_TAGS.md @@ -0,0 +1,57 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [screens/SubTags/SubTagsMocks](../README.md) / MOCKS\_ERROR\_SUB\_TAGS + +# Variable: MOCKS\_ERROR\_SUB\_TAGS + +> `const` **MOCKS\_ERROR\_SUB\_TAGS**: `object`[] + +Defined in: [src/screens/SubTags/SubTagsMocks.ts:489](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/SubTags/SubTagsMocks.ts#L489) + +## Type declaration + +### error + +> **error**: `Error` + +### request + +> **request**: `object` + +#### request.query + +> **query**: `DocumentNode` = `USER_TAG_SUB_TAGS` + +#### request.variables + +> **variables**: `object` + +#### request.variables.first + +> **first**: `number` = `TAGS_QUERY_DATA_CHUNK_SIZE` + +#### request.variables.id + +> **id**: `string` = `'1'` + +#### request.variables.sortedBy + +> **sortedBy**: `object` + +#### request.variables.sortedBy.id + +> **id**: `string` = `'DESCENDING'` + +#### request.variables.where + +> **where**: `object` + +#### request.variables.where.name + +> **name**: `object` + +#### request.variables.where.name.starts\_with + +> **starts\_with**: `string` = `''` diff --git a/docs/docs/auto-docs/screens/UserPortal/Campaigns/Campaigns/README.md b/docs/docs/auto-docs/screens/UserPortal/Campaigns/Campaigns/README.md new file mode 100644 index 0000000000..5807835f4b --- /dev/null +++ b/docs/docs/auto-docs/screens/UserPortal/Campaigns/Campaigns/README.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / screens/UserPortal/Campaigns/Campaigns + +# screens/UserPortal/Campaigns/Campaigns + +## Functions + +- [default](functions/default.md) diff --git a/docs/docs/auto-docs/screens/UserPortal/Campaigns/Campaigns/functions/default.md b/docs/docs/auto-docs/screens/UserPortal/Campaigns/Campaigns/functions/default.md new file mode 100644 index 0000000000..04fbe32ba7 --- /dev/null +++ b/docs/docs/auto-docs/screens/UserPortal/Campaigns/Campaigns/functions/default.md @@ -0,0 +1,20 @@ +[**talawa-admin**](../../../../../README.md) + +*** + +[talawa-admin](../../../../../modules.md) / [screens/UserPortal/Campaigns/Campaigns](../README.md) / default + +# Function: default() + +> **default**(): `Element` + +Defined in: [src/screens/UserPortal/Campaigns/Campaigns.tsx:30](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/UserPortal/Campaigns/Campaigns.tsx#L30) + +The `Campaigns` component displays a list of fundraising campaigns for a specific organization. +It allows users to search, sort, and view details about each campaign. Users can also add pledges to active campaigns. + +## Returns + +`Element` + +The rendered component displaying the campaigns. diff --git a/docs/docs/auto-docs/screens/UserPortal/Campaigns/CampaignsMocks/README.md b/docs/docs/auto-docs/screens/UserPortal/Campaigns/CampaignsMocks/README.md new file mode 100644 index 0000000000..ca2d8df243 --- /dev/null +++ b/docs/docs/auto-docs/screens/UserPortal/Campaigns/CampaignsMocks/README.md @@ -0,0 +1,13 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / screens/UserPortal/Campaigns/CampaignsMocks + +# screens/UserPortal/Campaigns/CampaignsMocks + +## Variables + +- [EMPTY\_MOCKS](variables/EMPTY_MOCKS.md) +- [MOCKS](variables/MOCKS.md) +- [USER\_FUND\_CAMPAIGNS\_ERROR](variables/USER_FUND_CAMPAIGNS_ERROR.md) diff --git a/docs/docs/auto-docs/screens/UserPortal/Campaigns/CampaignsMocks/variables/EMPTY_MOCKS.md b/docs/docs/auto-docs/screens/UserPortal/Campaigns/CampaignsMocks/variables/EMPTY_MOCKS.md new file mode 100644 index 0000000000..1767e688e3 --- /dev/null +++ b/docs/docs/auto-docs/screens/UserPortal/Campaigns/CampaignsMocks/variables/EMPTY_MOCKS.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../../../README.md) + +*** + +[talawa-admin](../../../../../modules.md) / [screens/UserPortal/Campaigns/CampaignsMocks](../README.md) / EMPTY\_MOCKS + +# Variable: EMPTY\_MOCKS + +> `const` **EMPTY\_MOCKS**: (\{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `id`: `string`; \}; \}; `result`: \{ `data`: \{ `user`: \{ `__typename`: `string`; `appUserProfile`: \{ `__typename`: `string`; `_id`: `string`; `adminFor`: `never`[]; `appLanguageCode`: `string`; `createdEvents`: `never`[]; `createdOrganizations`: `never`[]; `eventAdmin`: `never`[]; `isSuperAdmin`: `boolean`; `pluginCreationAllowed`: `boolean`; \}; `user`: \{ `__typename`: `string`; `_id`: `string`; `address`: \{ `__typename`: `string`; `city`: `string`; `countryCode`: `string`; `line1`: `string`; `state`: `string`; \}; `birthDate`: `null`; `createdAt`: `string`; `educationGrade`: `null`; `email`: `string`; `employmentStatus`: `null`; `firstName`: `string`; `gender`: `null`; `image`: `null`; `joinedOrganizations`: `object`[]; `lastName`: `string`; `maritalStatus`: `null`; `membershipRequests`: `never`[]; `phone`: `null`; `registeredEvents`: `never`[]; \}; \}; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `campaignOrderBy`: `string`; `where`: \{ `name_contains`: `string`; `organizationId`: `string`; \}; \}; \}; `result`: \{ `data`: \{ `getFundraisingCampaigns`: `never`[]; \}; \}; \})[] + +Defined in: [src/screens/UserPortal/Campaigns/CampaignsMocks.ts:236](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/UserPortal/Campaigns/CampaignsMocks.ts#L236) diff --git a/docs/docs/auto-docs/screens/UserPortal/Campaigns/CampaignsMocks/variables/MOCKS.md b/docs/docs/auto-docs/screens/UserPortal/Campaigns/CampaignsMocks/variables/MOCKS.md new file mode 100644 index 0000000000..75aeb5dca8 --- /dev/null +++ b/docs/docs/auto-docs/screens/UserPortal/Campaigns/CampaignsMocks/variables/MOCKS.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../../../README.md) + +*** + +[talawa-admin](../../../../../modules.md) / [screens/UserPortal/Campaigns/CampaignsMocks](../README.md) / MOCKS + +# Variable: MOCKS + +> `const` **MOCKS**: (\{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `id`: `string`; \}; \}; `result`: \{ `data`: \{ `user`: \{ `__typename`: `string`; `appUserProfile`: \{ `__typename`: `string`; `_id`: `string`; `adminFor`: `never`[]; `appLanguageCode`: `string`; `createdEvents`: `never`[]; `createdOrganizations`: `never`[]; `eventAdmin`: `never`[]; `isSuperAdmin`: `boolean`; `pluginCreationAllowed`: `boolean`; \}; `user`: \{ `__typename`: `string`; `_id`: `string`; `address`: \{ `__typename`: `string`; `city`: `string`; `countryCode`: `string`; `line1`: `string`; `state`: `string`; \}; `birthDate`: `null`; `createdAt`: `string`; `educationGrade`: `null`; `email`: `string`; `employmentStatus`: `null`; `firstName`: `string`; `gender`: `null`; `image`: `null`; `joinedOrganizations`: `object`[]; `lastName`: `string`; `maritalStatus`: `null`; `membershipRequests`: `never`[]; `phone`: `null`; `registeredEvents`: `never`[]; \}; \}; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `campaignOrderBy`: `string`; `where`: \{ `name_contains`: `string`; `organizationId`: `string`; \}; \}; \}; `result`: \{ `data`: \{ `getFundraisingCampaigns`: `object`[]; \}; \}; \})[] + +Defined in: [src/screens/UserPortal/Campaigns/CampaignsMocks.ts:61](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/UserPortal/Campaigns/CampaignsMocks.ts#L61) diff --git a/docs/docs/auto-docs/screens/UserPortal/Campaigns/CampaignsMocks/variables/USER_FUND_CAMPAIGNS_ERROR.md b/docs/docs/auto-docs/screens/UserPortal/Campaigns/CampaignsMocks/variables/USER_FUND_CAMPAIGNS_ERROR.md new file mode 100644 index 0000000000..6804622d54 --- /dev/null +++ b/docs/docs/auto-docs/screens/UserPortal/Campaigns/CampaignsMocks/variables/USER_FUND_CAMPAIGNS_ERROR.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../../../README.md) + +*** + +[talawa-admin](../../../../../modules.md) / [screens/UserPortal/Campaigns/CampaignsMocks](../README.md) / USER\_FUND\_CAMPAIGNS\_ERROR + +# Variable: USER\_FUND\_CAMPAIGNS\_ERROR + +> `const` **USER\_FUND\_CAMPAIGNS\_ERROR**: (\{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `id`: `string`; \}; \}; `result`: \{ `data`: \{ `user`: \{ `__typename`: `string`; `appUserProfile`: \{ `__typename`: `string`; `_id`: `string`; `adminFor`: `never`[]; `appLanguageCode`: `string`; `createdEvents`: `never`[]; `createdOrganizations`: `never`[]; `eventAdmin`: `never`[]; `isSuperAdmin`: `boolean`; `pluginCreationAllowed`: `boolean`; \}; `user`: \{ `__typename`: `string`; `_id`: `string`; `address`: \{ `__typename`: `string`; `city`: `string`; `countryCode`: `string`; `line1`: `string`; `state`: `string`; \}; `birthDate`: `null`; `createdAt`: `string`; `educationGrade`: `null`; `email`: `string`; `employmentStatus`: `null`; `firstName`: `string`; `gender`: `null`; `image`: `null`; `joinedOrganizations`: `object`[]; `lastName`: `string`; `maritalStatus`: `null`; `membershipRequests`: `never`[]; `phone`: `null`; `registeredEvents`: `never`[]; \}; \}; \}; \}; \} \| \{ `error`: `Error`; `request`: \{ `query`: `DocumentNode`; `variables`: \{ `campaignOrderBy`: `string`; `where`: \{ `name_contains`: `string`; `organizationId`: `string`; \}; \}; \}; \})[] + +Defined in: [src/screens/UserPortal/Campaigns/CampaignsMocks.ts:257](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/UserPortal/Campaigns/CampaignsMocks.ts#L257) diff --git a/docs/docs/auto-docs/screens/UserPortal/Campaigns/PledgeModal/README.md b/docs/docs/auto-docs/screens/UserPortal/Campaigns/PledgeModal/README.md new file mode 100644 index 0000000000..ab50791109 --- /dev/null +++ b/docs/docs/auto-docs/screens/UserPortal/Campaigns/PledgeModal/README.md @@ -0,0 +1,15 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / screens/UserPortal/Campaigns/PledgeModal + +# screens/UserPortal/Campaigns/PledgeModal + +## Interfaces + +- [InterfacePledgeModal](interfaces/InterfacePledgeModal.md) + +## Functions + +- [default](functions/default.md) diff --git a/docs/docs/auto-docs/screens/UserPortal/Campaigns/PledgeModal/functions/default.md b/docs/docs/auto-docs/screens/UserPortal/Campaigns/PledgeModal/functions/default.md new file mode 100644 index 0000000000..8375e3c766 --- /dev/null +++ b/docs/docs/auto-docs/screens/UserPortal/Campaigns/PledgeModal/functions/default.md @@ -0,0 +1,34 @@ +[**talawa-admin**](../../../../../README.md) + +*** + +[talawa-admin](../../../../../modules.md) / [screens/UserPortal/Campaigns/PledgeModal](../README.md) / default + +# Function: default() + +> **default**(`props`, `deprecatedLegacyContext`?): `ReactNode` + +Defined in: [src/screens/UserPortal/Campaigns/PledgeModal.tsx:54](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/UserPortal/Campaigns/PledgeModal.tsx#L54) + +`PledgeModal` is a React component that allows users to create or edit a pledge for a specific campaign. +It displays a form with inputs for pledge details such as amount, currency, dates, and users involved in the pledge. + +## Parameters + +### props + +[`InterfacePledgeModal`](../interfaces/InterfacePledgeModal.md) + +### deprecatedLegacyContext? + +`any` + +**Deprecated** + +**See** + +[React Docs](https://legacy.reactjs.org/docs/legacy-context.html#referencing-context-in-lifecycle-methods) + +## Returns + +`ReactNode` diff --git a/docs/docs/auto-docs/screens/UserPortal/Campaigns/PledgeModal/interfaces/InterfacePledgeModal.md b/docs/docs/auto-docs/screens/UserPortal/Campaigns/PledgeModal/interfaces/InterfacePledgeModal.md new file mode 100644 index 0000000000..214d15c7cc --- /dev/null +++ b/docs/docs/auto-docs/screens/UserPortal/Campaigns/PledgeModal/interfaces/InterfacePledgeModal.md @@ -0,0 +1,83 @@ +[**talawa-admin**](../../../../../README.md) + +*** + +[talawa-admin](../../../../../modules.md) / [screens/UserPortal/Campaigns/PledgeModal](../README.md) / InterfacePledgeModal + +# Interface: InterfacePledgeModal + +Defined in: [src/screens/UserPortal/Campaigns/PledgeModal.tsx:30](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/UserPortal/Campaigns/PledgeModal.tsx#L30) + +Interface representing the properties for the `PledgeModal` component. + +## Properties + +### campaignId + +> **campaignId**: `string` + +Defined in: [src/screens/UserPortal/Campaigns/PledgeModal.tsx:33](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/UserPortal/Campaigns/PledgeModal.tsx#L33) + +*** + +### endDate + +> **endDate**: `Date` + +Defined in: [src/screens/UserPortal/Campaigns/PledgeModal.tsx:37](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/UserPortal/Campaigns/PledgeModal.tsx#L37) + +*** + +### hide() + +> **hide**: () => `void` + +Defined in: [src/screens/UserPortal/Campaigns/PledgeModal.tsx:32](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/UserPortal/Campaigns/PledgeModal.tsx#L32) + +#### Returns + +`void` + +*** + +### isOpen + +> **isOpen**: `boolean` + +Defined in: [src/screens/UserPortal/Campaigns/PledgeModal.tsx:31](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/UserPortal/Campaigns/PledgeModal.tsx#L31) + +*** + +### mode + +> **mode**: `"create"` \| `"edit"` + +Defined in: [src/screens/UserPortal/Campaigns/PledgeModal.tsx:38](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/UserPortal/Campaigns/PledgeModal.tsx#L38) + +*** + +### pledge + +> **pledge**: `null` \| [`InterfacePledgeInfo`](../../../../../utils/interfaces/interfaces/InterfacePledgeInfo.md) + +Defined in: [src/screens/UserPortal/Campaigns/PledgeModal.tsx:35](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/UserPortal/Campaigns/PledgeModal.tsx#L35) + +*** + +### refetchPledge() + +> **refetchPledge**: () => `void` + +Defined in: [src/screens/UserPortal/Campaigns/PledgeModal.tsx:36](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/UserPortal/Campaigns/PledgeModal.tsx#L36) + +#### Returns + +`void` + +*** + +### userId + +> **userId**: `string` + +Defined in: [src/screens/UserPortal/Campaigns/PledgeModal.tsx:34](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/UserPortal/Campaigns/PledgeModal.tsx#L34) diff --git a/docs/docs/auto-docs/screens/UserPortal/Chat/Chat/README.md b/docs/docs/auto-docs/screens/UserPortal/Chat/Chat/README.md new file mode 100644 index 0000000000..00e857bbad --- /dev/null +++ b/docs/docs/auto-docs/screens/UserPortal/Chat/Chat/README.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / screens/UserPortal/Chat/Chat + +# screens/UserPortal/Chat/Chat + +## Functions + +- [default](functions/default.md) diff --git a/docs/docs/auto-docs/screens/UserPortal/Chat/Chat/functions/default.md b/docs/docs/auto-docs/screens/UserPortal/Chat/Chat/functions/default.md new file mode 100644 index 0000000000..9290ed1e18 --- /dev/null +++ b/docs/docs/auto-docs/screens/UserPortal/Chat/Chat/functions/default.md @@ -0,0 +1,15 @@ +[**talawa-admin**](../../../../../README.md) + +*** + +[talawa-admin](../../../../../modules.md) / [screens/UserPortal/Chat/Chat](../README.md) / default + +# Function: default() + +> **default**(): `JSX.Element` + +Defined in: [src/screens/UserPortal/Chat/Chat.tsx:102](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/UserPortal/Chat/Chat.tsx#L102) + +## Returns + +`JSX.Element` diff --git a/docs/docs/auto-docs/screens/UserPortal/Donate/Donate/README.md b/docs/docs/auto-docs/screens/UserPortal/Donate/Donate/README.md new file mode 100644 index 0000000000..fa9bf0a12b --- /dev/null +++ b/docs/docs/auto-docs/screens/UserPortal/Donate/Donate/README.md @@ -0,0 +1,15 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / screens/UserPortal/Donate/Donate + +# screens/UserPortal/Donate/Donate + +## Interfaces + +- [InterfaceDonationCardProps](interfaces/InterfaceDonationCardProps.md) + +## Functions + +- [default](functions/default.md) diff --git a/docs/docs/auto-docs/screens/UserPortal/Donate/Donate/functions/default.md b/docs/docs/auto-docs/screens/UserPortal/Donate/Donate/functions/default.md new file mode 100644 index 0000000000..730981275a --- /dev/null +++ b/docs/docs/auto-docs/screens/UserPortal/Donate/Donate/functions/default.md @@ -0,0 +1,38 @@ +[**talawa-admin**](../../../../../README.md) + +*** + +[talawa-admin](../../../../../modules.md) / [screens/UserPortal/Donate/Donate](../README.md) / default + +# Function: default() + +> **default**(): `JSX.Element` + +Defined in: [src/screens/UserPortal/Donate/Donate.tsx:65](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/UserPortal/Donate/Donate.tsx#L65) + +`donate` component allows users to make donations to an organization and view their previous donations. + +This component fetches donation-related data using GraphQL queries and allows users to make donations +using a mutation. It supports currency selection, donation amount input, and displays a paginated list +of previous donations. + +It includes: +- An input field for searching donations. +- A dropdown to select currency. +- An input field for entering donation amount. +- A button to submit the donation. +- A list of previous donations displayed in a paginated format. +- An organization sidebar for navigation. + +### GraphQL Queries +- `ORGANIZATION_DONATION_CONNECTION_LIST`: Fetches the list of donations for the organization. +- `USER_ORGANIZATION_CONNECTION`: Fetches organization details. + +### GraphQL Mutations +- `DONATE_TO_ORGANIZATION`: Performs the donation action. + +## Returns + +`JSX.Element` + +The rendered component. diff --git a/docs/docs/auto-docs/screens/UserPortal/Donate/Donate/interfaces/InterfaceDonationCardProps.md b/docs/docs/auto-docs/screens/UserPortal/Donate/Donate/interfaces/InterfaceDonationCardProps.md new file mode 100644 index 0000000000..586bd6336e --- /dev/null +++ b/docs/docs/auto-docs/screens/UserPortal/Donate/Donate/interfaces/InterfaceDonationCardProps.md @@ -0,0 +1,57 @@ +[**talawa-admin**](../../../../../README.md) + +*** + +[talawa-admin](../../../../../modules.md) / [screens/UserPortal/Donate/Donate](../README.md) / InterfaceDonationCardProps + +# Interface: InterfaceDonationCardProps + +Defined in: [src/screens/UserPortal/Donate/Donate.tsx:23](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/UserPortal/Donate/Donate.tsx#L23) + +## Properties + +### amount + +> **amount**: `string` + +Defined in: [src/screens/UserPortal/Donate/Donate.tsx:26](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/UserPortal/Donate/Donate.tsx#L26) + +*** + +### id + +> **id**: `string` + +Defined in: [src/screens/UserPortal/Donate/Donate.tsx:24](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/UserPortal/Donate/Donate.tsx#L24) + +*** + +### name + +> **name**: `string` + +Defined in: [src/screens/UserPortal/Donate/Donate.tsx:25](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/UserPortal/Donate/Donate.tsx#L25) + +*** + +### payPalId + +> **payPalId**: `string` + +Defined in: [src/screens/UserPortal/Donate/Donate.tsx:28](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/UserPortal/Donate/Donate.tsx#L28) + +*** + +### updatedAt + +> **updatedAt**: `string` + +Defined in: [src/screens/UserPortal/Donate/Donate.tsx:29](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/UserPortal/Donate/Donate.tsx#L29) + +*** + +### userId + +> **userId**: `string` + +Defined in: [src/screens/UserPortal/Donate/Donate.tsx:27](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/UserPortal/Donate/Donate.tsx#L27) diff --git a/docs/docs/auto-docs/screens/UserPortal/Events/Events/README.md b/docs/docs/auto-docs/screens/UserPortal/Events/Events/README.md new file mode 100644 index 0000000000..b2d99da6f3 --- /dev/null +++ b/docs/docs/auto-docs/screens/UserPortal/Events/Events/README.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / screens/UserPortal/Events/Events + +# screens/UserPortal/Events/Events + +## Functions + +- [default](functions/default.md) diff --git a/docs/docs/auto-docs/screens/UserPortal/Events/Events/functions/default.md b/docs/docs/auto-docs/screens/UserPortal/Events/Events/functions/default.md new file mode 100644 index 0000000000..49734af062 --- /dev/null +++ b/docs/docs/auto-docs/screens/UserPortal/Events/Events/functions/default.md @@ -0,0 +1,22 @@ +[**talawa-admin**](../../../../../README.md) + +*** + +[talawa-admin](../../../../../modules.md) / [screens/UserPortal/Events/Events](../README.md) / default + +# Function: default() + +> **default**(): `JSX.Element` + +Defined in: [src/screens/UserPortal/Events/Events.tsx:43](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/UserPortal/Events/Events.tsx#L43) + +Component to manage and display events for an organization. + +This component allows users to view, create, and manage events within an organization. +It includes a calendar view, a form to create new events, and various filters and settings. + +## Returns + +`JSX.Element` + +The JSX element for the events management interface. diff --git a/docs/docs/auto-docs/screens/UserPortal/LeaveOrganization/LeaveOrganization/README.md b/docs/docs/auto-docs/screens/UserPortal/LeaveOrganization/LeaveOrganization/README.md new file mode 100644 index 0000000000..62ef0a8db2 --- /dev/null +++ b/docs/docs/auto-docs/screens/UserPortal/LeaveOrganization/LeaveOrganization/README.md @@ -0,0 +1,16 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / screens/UserPortal/LeaveOrganization/LeaveOrganization + +# screens/UserPortal/LeaveOrganization/LeaveOrganization + +## Variables + +- [userEmail](variables/userEmail.md) +- [userId](variables/userId.md) + +## Functions + +- [default](functions/default.md) diff --git a/docs/docs/auto-docs/screens/UserPortal/LeaveOrganization/LeaveOrganization/functions/default.md b/docs/docs/auto-docs/screens/UserPortal/LeaveOrganization/LeaveOrganization/functions/default.md new file mode 100644 index 0000000000..96fad7ccfb --- /dev/null +++ b/docs/docs/auto-docs/screens/UserPortal/LeaveOrganization/LeaveOrganization/functions/default.md @@ -0,0 +1,15 @@ +[**talawa-admin**](../../../../../README.md) + +*** + +[talawa-admin](../../../../../modules.md) / [screens/UserPortal/LeaveOrganization/LeaveOrganization](../README.md) / default + +# Function: default() + +> **default**(): `Element` + +Defined in: [src/screens/UserPortal/LeaveOrganization/LeaveOrganization.tsx:32](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/UserPortal/LeaveOrganization/LeaveOrganization.tsx#L32) + +## Returns + +`Element` diff --git a/docs/docs/auto-docs/screens/UserPortal/LeaveOrganization/LeaveOrganization/variables/userEmail.md b/docs/docs/auto-docs/screens/UserPortal/LeaveOrganization/LeaveOrganization/variables/userEmail.md new file mode 100644 index 0000000000..d325703f2b --- /dev/null +++ b/docs/docs/auto-docs/screens/UserPortal/LeaveOrganization/LeaveOrganization/variables/userEmail.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../../../README.md) + +*** + +[talawa-admin](../../../../../modules.md) / [screens/UserPortal/LeaveOrganization/LeaveOrganization](../README.md) / userEmail + +# Variable: userEmail + +> `const` **userEmail**: `any` + +Defined in: [src/screens/UserPortal/LeaveOrganization/LeaveOrganization.tsx:13](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/UserPortal/LeaveOrganization/LeaveOrganization.tsx#L13) diff --git a/docs/docs/auto-docs/screens/UserPortal/LeaveOrganization/LeaveOrganization/variables/userId.md b/docs/docs/auto-docs/screens/UserPortal/LeaveOrganization/LeaveOrganization/variables/userId.md new file mode 100644 index 0000000000..72a9fecd8f --- /dev/null +++ b/docs/docs/auto-docs/screens/UserPortal/LeaveOrganization/LeaveOrganization/variables/userId.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../../../README.md) + +*** + +[talawa-admin](../../../../../modules.md) / [screens/UserPortal/LeaveOrganization/LeaveOrganization](../README.md) / userId + +# Variable: userId + +> `const` **userId**: `any` + +Defined in: [src/screens/UserPortal/LeaveOrganization/LeaveOrganization.tsx:21](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/UserPortal/LeaveOrganization/LeaveOrganization.tsx#L21) diff --git a/docs/docs/auto-docs/screens/UserPortal/Organizations/Organizations/README.md b/docs/docs/auto-docs/screens/UserPortal/Organizations/Organizations/README.md new file mode 100644 index 0000000000..01e01664f8 --- /dev/null +++ b/docs/docs/auto-docs/screens/UserPortal/Organizations/Organizations/README.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / screens/UserPortal/Organizations/Organizations + +# screens/UserPortal/Organizations/Organizations + +## Functions + +- [default](functions/default.md) diff --git a/docs/docs/auto-docs/screens/UserPortal/Organizations/Organizations/functions/default.md b/docs/docs/auto-docs/screens/UserPortal/Organizations/Organizations/functions/default.md new file mode 100644 index 0000000000..034add883e --- /dev/null +++ b/docs/docs/auto-docs/screens/UserPortal/Organizations/Organizations/functions/default.md @@ -0,0 +1,17 @@ +[**talawa-admin**](../../../../../README.md) + +*** + +[talawa-admin](../../../../../modules.md) / [screens/UserPortal/Organizations/Organizations](../README.md) / default + +# Function: default() + +> **default**(): `JSX.Element` + +Defined in: [src/screens/UserPortal/Organizations/Organizations.tsx:76](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/UserPortal/Organizations/Organizations.tsx#L76) + +Component for displaying and managing user organizations. + +## Returns + +`JSX.Element` diff --git a/docs/docs/auto-docs/screens/UserPortal/People/People/README.md b/docs/docs/auto-docs/screens/UserPortal/People/People/README.md new file mode 100644 index 0000000000..f2a032d34f --- /dev/null +++ b/docs/docs/auto-docs/screens/UserPortal/People/People/README.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / screens/UserPortal/People/People + +# screens/UserPortal/People/People + +## Functions + +- [default](functions/default.md) diff --git a/docs/docs/auto-docs/screens/UserPortal/People/People/functions/default.md b/docs/docs/auto-docs/screens/UserPortal/People/People/functions/default.md new file mode 100644 index 0000000000..d65b856a96 --- /dev/null +++ b/docs/docs/auto-docs/screens/UserPortal/People/People/functions/default.md @@ -0,0 +1,19 @@ +[**talawa-admin**](../../../../../README.md) + +*** + +[talawa-admin](../../../../../modules.md) / [screens/UserPortal/People/People](../README.md) / default + +# Function: default() + +> **default**(): `JSX.Element` + +Defined in: [src/screens/UserPortal/People/People.tsx:39](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/UserPortal/People/People.tsx#L39) + +`People` component displays a list of people associated with an organization. +It allows users to filter between all members and admins, search for members by their first name, +and paginate through the list. + +## Returns + +`JSX.Element` diff --git a/docs/docs/auto-docs/screens/UserPortal/Pledges/Pledges/README.md b/docs/docs/auto-docs/screens/UserPortal/Pledges/Pledges/README.md new file mode 100644 index 0000000000..a7ea6f45d9 --- /dev/null +++ b/docs/docs/auto-docs/screens/UserPortal/Pledges/Pledges/README.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / screens/UserPortal/Pledges/Pledges + +# screens/UserPortal/Pledges/Pledges + +## Functions + +- [default](functions/default.md) diff --git a/docs/docs/auto-docs/screens/UserPortal/Pledges/Pledges/functions/default.md b/docs/docs/auto-docs/screens/UserPortal/Pledges/Pledges/functions/default.md new file mode 100644 index 0000000000..967379a2f4 --- /dev/null +++ b/docs/docs/auto-docs/screens/UserPortal/Pledges/Pledges/functions/default.md @@ -0,0 +1,32 @@ +[**talawa-admin**](../../../../../README.md) + +*** + +[talawa-admin](../../../../../modules.md) / [screens/UserPortal/Pledges/Pledges](../README.md) / default + +# Function: default() + +> **default**(): `Element` + +Defined in: [src/screens/UserPortal/Pledges/Pledges.tsx:70](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/UserPortal/Pledges/Pledges.tsx#L70) + +The `Pledges` component is responsible for rendering a user's pledges within a campaign. +It fetches pledges data using Apollo Client's `useQuery` hook and displays the data +in a DataGrid with various features such as search, sorting, and modal dialogs for updating +or deleting a pledge. The component also handles various UI interactions including opening +modals for editing or deleting a pledge, showing additional pledgers in a popup, and +applying filters for searching pledges by campaign or pledger name. + +Key functionalities include: +- Fetching pledges data from the backend using GraphQL query `USER_PLEDGES`. +- Displaying pledges in a table with columns for pledgers, associated campaigns, + end dates, pledged amounts, and actions. +- Handling search and sorting of pledges. +- Opening and closing modals for updating and deleting pledges. +- Displaying additional pledgers in a popup when the list of pledgers exceeds a certain limit. + +## Returns + +`Element` + +The rendered Pledges component. diff --git a/docs/docs/auto-docs/screens/UserPortal/Pledges/PledgesMocks/README.md b/docs/docs/auto-docs/screens/UserPortal/Pledges/PledgesMocks/README.md new file mode 100644 index 0000000000..bdab99fef9 --- /dev/null +++ b/docs/docs/auto-docs/screens/UserPortal/Pledges/PledgesMocks/README.md @@ -0,0 +1,13 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / screens/UserPortal/Pledges/PledgesMocks + +# screens/UserPortal/Pledges/PledgesMocks + +## Variables + +- [EMPTY\_MOCKS](variables/EMPTY_MOCKS.md) +- [MOCKS](variables/MOCKS.md) +- [USER\_PLEDGES\_ERROR](variables/USER_PLEDGES_ERROR.md) diff --git a/docs/docs/auto-docs/screens/UserPortal/Pledges/PledgesMocks/variables/EMPTY_MOCKS.md b/docs/docs/auto-docs/screens/UserPortal/Pledges/PledgesMocks/variables/EMPTY_MOCKS.md new file mode 100644 index 0000000000..ae7a0a0ea4 --- /dev/null +++ b/docs/docs/auto-docs/screens/UserPortal/Pledges/PledgesMocks/variables/EMPTY_MOCKS.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../../../README.md) + +*** + +[talawa-admin](../../../../../modules.md) / [screens/UserPortal/Pledges/PledgesMocks](../README.md) / EMPTY\_MOCKS + +# Variable: EMPTY\_MOCKS + +> `const` **EMPTY\_MOCKS**: (\{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `id`: `string`; \}; \}; `result`: \{ `data`: \{ `user`: \{ `__typename`: `string`; `appUserProfile`: \{ `__typename`: `string`; `_id`: `string`; `adminFor`: `never`[]; `appLanguageCode`: `string`; `createdEvents`: `never`[]; `createdOrganizations`: `never`[]; `eventAdmin`: `never`[]; `isSuperAdmin`: `boolean`; `pluginCreationAllowed`: `boolean`; \}; `user`: \{ `__typename`: `string`; `_id`: `string`; `address`: \{ `__typename`: `string`; `city`: `string`; `countryCode`: `string`; `line1`: `string`; `state`: `string`; \}; `birthDate`: `null`; `createdAt`: `string`; `educationGrade`: `null`; `email`: `string`; `employmentStatus`: `null`; `firstName`: `string`; `gender`: `null`; `image`: `null`; `joinedOrganizations`: `object`[]; `lastName`: `string`; `maritalStatus`: `null`; `membershipRequests`: `never`[]; `phone`: `null`; `registeredEvents`: `never`[]; \}; \}; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `orderBy`: `string`; `userId`: `string`; `where`: \{ `firstName_contains`: `string`; \}; \}; \}; `result`: \{ `data`: \{ `getPledgesByUserId`: `never`[]; \}; \}; \})[] + +Defined in: [src/screens/UserPortal/Pledges/PledgesMocks.ts:560](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/UserPortal/Pledges/PledgesMocks.ts#L560) diff --git a/docs/docs/auto-docs/screens/UserPortal/Pledges/PledgesMocks/variables/MOCKS.md b/docs/docs/auto-docs/screens/UserPortal/Pledges/PledgesMocks/variables/MOCKS.md new file mode 100644 index 0000000000..af99a1f540 --- /dev/null +++ b/docs/docs/auto-docs/screens/UserPortal/Pledges/PledgesMocks/variables/MOCKS.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../../../README.md) + +*** + +[talawa-admin](../../../../../modules.md) / [screens/UserPortal/Pledges/PledgesMocks](../README.md) / MOCKS + +# Variable: MOCKS + +> `const` **MOCKS**: (\{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `id`: `string`; \}; \}; `result`: \{ `data`: \{ `user`: \{ `__typename`: `string`; `appUserProfile`: \{ `__typename`: `string`; `_id`: `string`; `adminFor`: `never`[]; `appLanguageCode`: `string`; `createdEvents`: `never`[]; `createdOrganizations`: `never`[]; `eventAdmin`: `never`[]; `isSuperAdmin`: `boolean`; `pluginCreationAllowed`: `boolean`; \}; `user`: \{ `__typename`: `string`; `_id`: `string`; `address`: \{ `__typename`: `string`; `city`: `string`; `countryCode`: `string`; `line1`: `string`; `state`: `string`; \}; `birthDate`: `null`; `createdAt`: `string`; `educationGrade`: `null`; `email`: `string`; `employmentStatus`: `null`; `firstName`: `string`; `gender`: `null`; `image`: `null`; `joinedOrganizations`: `object`[]; `lastName`: `string`; `maritalStatus`: `null`; `membershipRequests`: `never`[]; `phone`: `null`; `registeredEvents`: `never`[]; \}; \}; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `id`: `undefined`; `orderBy`: `string`; `userId`: `string`; `where`: \{ `firstName_contains`: `undefined`; `name_contains`: `string`; \}; \}; \}; `result`: \{ `data`: \{ `getPledgesByUserId`: `object`[]; `removeFundraisingCampaignPledge`: `undefined`; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `id`: `undefined`; `orderBy`: `string`; `userId`: `string`; `where`: \{ `firstName_contains`: `string`; `name_contains`: `undefined`; \}; \}; \}; `result`: \{ `data`: \{ `getPledgesByUserId`: `object`[]; `removeFundraisingCampaignPledge`: `undefined`; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `id`: `string`; `orderBy`: `undefined`; `userId`: `undefined`; `where`: `undefined`; \}; \}; `result`: \{ `data`: \{ `getPledgesByUserId`: `undefined`; `removeFundraisingCampaignPledge`: \{ `_id`: `string`; \}; \}; \}; \})[] + +Defined in: [src/screens/UserPortal/Pledges/PledgesMocks.ts:62](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/UserPortal/Pledges/PledgesMocks.ts#L62) diff --git a/docs/docs/auto-docs/screens/UserPortal/Pledges/PledgesMocks/variables/USER_PLEDGES_ERROR.md b/docs/docs/auto-docs/screens/UserPortal/Pledges/PledgesMocks/variables/USER_PLEDGES_ERROR.md new file mode 100644 index 0000000000..561e0030c5 --- /dev/null +++ b/docs/docs/auto-docs/screens/UserPortal/Pledges/PledgesMocks/variables/USER_PLEDGES_ERROR.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../../../README.md) + +*** + +[talawa-admin](../../../../../modules.md) / [screens/UserPortal/Pledges/PledgesMocks](../README.md) / USER\_PLEDGES\_ERROR + +# Variable: USER\_PLEDGES\_ERROR + +> `const` **USER\_PLEDGES\_ERROR**: (\{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `id`: `string`; \}; \}; `result`: \{ `data`: \{ `user`: \{ `__typename`: `string`; `appUserProfile`: \{ `__typename`: `string`; `_id`: `string`; `adminFor`: `never`[]; `appLanguageCode`: `string`; `createdEvents`: `never`[]; `createdOrganizations`: `never`[]; `eventAdmin`: `never`[]; `isSuperAdmin`: `boolean`; `pluginCreationAllowed`: `boolean`; \}; `user`: \{ `__typename`: `string`; `_id`: `string`; `address`: \{ `__typename`: `string`; `city`: `string`; `countryCode`: `string`; `line1`: `string`; `state`: `string`; \}; `birthDate`: `null`; `createdAt`: `string`; `educationGrade`: `null`; `email`: `string`; `employmentStatus`: `null`; `firstName`: `string`; `gender`: `null`; `image`: `null`; `joinedOrganizations`: `object`[]; `lastName`: `string`; `maritalStatus`: `null`; `membershipRequests`: `never`[]; `phone`: `null`; `registeredEvents`: `never`[]; \}; \}; \}; \}; \} \| \{ `error`: `Error`; `request`: \{ `query`: `DocumentNode`; `variables`: \{ `orderBy`: `string`; `userId`: `string`; `where`: \{ `firstName_contains`: `string`; \}; \}; \}; \})[] + +Defined in: [src/screens/UserPortal/Pledges/PledgesMocks.ts:581](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/UserPortal/Pledges/PledgesMocks.ts#L581) diff --git a/docs/docs/auto-docs/screens/UserPortal/Posts/Posts/README.md b/docs/docs/auto-docs/screens/UserPortal/Posts/Posts/README.md new file mode 100644 index 0000000000..d2590ccd5b --- /dev/null +++ b/docs/docs/auto-docs/screens/UserPortal/Posts/Posts/README.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / screens/UserPortal/Posts/Posts + +# screens/UserPortal/Posts/Posts + +## Functions + +- [default](functions/default.md) diff --git a/docs/docs/auto-docs/screens/UserPortal/Posts/Posts/functions/default.md b/docs/docs/auto-docs/screens/UserPortal/Posts/Posts/functions/default.md new file mode 100644 index 0000000000..76562dee3e --- /dev/null +++ b/docs/docs/auto-docs/screens/UserPortal/Posts/Posts/functions/default.md @@ -0,0 +1,21 @@ +[**talawa-admin**](../../../../../README.md) + +*** + +[talawa-admin](../../../../../modules.md) / [screens/UserPortal/Posts/Posts](../README.md) / default + +# Function: default() + +> **default**(): `JSX.Element` + +Defined in: [src/screens/UserPortal/Posts/Posts.tsx:112](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/UserPortal/Posts/Posts.tsx#L112) + +`home` component displays the main feed for a user, including posts, promoted content, and options to create a new post. + +It utilizes Apollo Client for fetching and managing data through GraphQL queries. The component fetches and displays posts from an organization, promoted advertisements, and handles user interactions for creating new posts. It also manages state for displaying modal dialogs and handling file uploads for new posts. + +## Returns + +`JSX.Element` + +JSX.Element - The rendered `home` component. diff --git a/docs/docs/auto-docs/screens/UserPortal/Settings/Settings/README.md b/docs/docs/auto-docs/screens/UserPortal/Settings/Settings/README.md new file mode 100644 index 0000000000..4d0e925679 --- /dev/null +++ b/docs/docs/auto-docs/screens/UserPortal/Settings/Settings/README.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / screens/UserPortal/Settings/Settings + +# screens/UserPortal/Settings/Settings + +## Functions + +- [default](functions/default.md) diff --git a/docs/docs/auto-docs/screens/UserPortal/Settings/Settings/functions/default.md b/docs/docs/auto-docs/screens/UserPortal/Settings/Settings/functions/default.md new file mode 100644 index 0000000000..eb0c9eef38 --- /dev/null +++ b/docs/docs/auto-docs/screens/UserPortal/Settings/Settings/functions/default.md @@ -0,0 +1,20 @@ +[**talawa-admin**](../../../../../README.md) + +*** + +[talawa-admin](../../../../../modules.md) / [screens/UserPortal/Settings/Settings](../README.md) / default + +# Function: default() + +> **default**(): `JSX.Element` + +Defined in: [src/screens/UserPortal/Settings/Settings.tsx:33](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/UserPortal/Settings/Settings.tsx#L33) + +The Settings component allows users to view and update their profile settings. +It includes functionality to handle image uploads, reset changes, and save updated user details. + +## Returns + +`JSX.Element` + +The Settings component. diff --git a/docs/docs/auto-docs/screens/UserPortal/UserScreen/UserScreen/README.md b/docs/docs/auto-docs/screens/UserPortal/UserScreen/UserScreen/README.md new file mode 100644 index 0000000000..8ea3daaf80 --- /dev/null +++ b/docs/docs/auto-docs/screens/UserPortal/UserScreen/UserScreen/README.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / screens/UserPortal/UserScreen/UserScreen + +# screens/UserPortal/UserScreen/UserScreen + +## Functions + +- [default](functions/default.md) diff --git a/docs/docs/auto-docs/screens/UserPortal/UserScreen/UserScreen/functions/default.md b/docs/docs/auto-docs/screens/UserPortal/UserScreen/UserScreen/functions/default.md new file mode 100644 index 0000000000..73faec6080 --- /dev/null +++ b/docs/docs/auto-docs/screens/UserPortal/UserScreen/UserScreen/functions/default.md @@ -0,0 +1,21 @@ +[**talawa-admin**](../../../../../README.md) + +*** + +[talawa-admin](../../../../../modules.md) / [screens/UserPortal/UserScreen/UserScreen](../README.md) / default + +# Function: default() + +> **default**(): `Element` + +Defined in: [src/screens/UserPortal/UserScreen/UserScreen.tsx:34](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/UserPortal/UserScreen/UserScreen.tsx#L34) + +The UserScreen component serves as a container for user-specific pages +within an organization context. It provides layout and sidebar navigation +functionality based on the current organization ID and user roles. + +## Returns + +`Element` + +The UserScreen component. diff --git a/docs/docs/auto-docs/screens/UserPortal/Volunteer/Actions/Actions.mocks/README.md b/docs/docs/auto-docs/screens/UserPortal/Volunteer/Actions/Actions.mocks/README.md new file mode 100644 index 0000000000..e7efc11aeb --- /dev/null +++ b/docs/docs/auto-docs/screens/UserPortal/Volunteer/Actions/Actions.mocks/README.md @@ -0,0 +1,13 @@ +[**talawa-admin**](../../../../../README.md) + +*** + +[talawa-admin](../../../../../modules.md) / screens/UserPortal/Volunteer/Actions/Actions.mocks + +# screens/UserPortal/Volunteer/Actions/Actions.mocks + +## Variables + +- [EMPTY\_MOCKS](variables/EMPTY_MOCKS.md) +- [ERROR\_MOCKS](variables/ERROR_MOCKS.md) +- [MOCKS](variables/MOCKS.md) diff --git a/docs/docs/auto-docs/screens/UserPortal/Volunteer/Actions/Actions.mocks/variables/EMPTY_MOCKS.md b/docs/docs/auto-docs/screens/UserPortal/Volunteer/Actions/Actions.mocks/variables/EMPTY_MOCKS.md new file mode 100644 index 0000000000..5d3e9f8f24 --- /dev/null +++ b/docs/docs/auto-docs/screens/UserPortal/Volunteer/Actions/Actions.mocks/variables/EMPTY_MOCKS.md @@ -0,0 +1,57 @@ +[**talawa-admin**](../../../../../../README.md) + +*** + +[talawa-admin](../../../../../../modules.md) / [screens/UserPortal/Volunteer/Actions/Actions.mocks](../README.md) / EMPTY\_MOCKS + +# Variable: EMPTY\_MOCKS + +> `const` **EMPTY\_MOCKS**: `object`[] + +Defined in: [src/screens/UserPortal/Volunteer/Actions/Actions.mocks.ts:232](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/UserPortal/Volunteer/Actions/Actions.mocks.ts#L232) + +## Type declaration + +### request + +> **request**: `object` + +#### request.query + +> **query**: `DocumentNode` = `ACTION_ITEMS_BY_USER` + +#### request.variables + +> **variables**: `object` + +#### request.variables.orderBy + +> **orderBy**: `null` = `null` + +#### request.variables.userId + +> **userId**: `string` = `'userId'` + +#### request.variables.where + +> **where**: `object` + +#### request.variables.where.assigneeName + +> **assigneeName**: `string` = `''` + +#### request.variables.where.orgId + +> **orgId**: `string` = `'orgId'` + +### result + +> **result**: `object` + +#### result.data + +> **data**: `object` + +#### result.data.actionItemsByUser + +> **actionItemsByUser**: `never`[] = `[]` diff --git a/docs/docs/auto-docs/screens/UserPortal/Volunteer/Actions/Actions.mocks/variables/ERROR_MOCKS.md b/docs/docs/auto-docs/screens/UserPortal/Volunteer/Actions/Actions.mocks/variables/ERROR_MOCKS.md new file mode 100644 index 0000000000..f307866745 --- /dev/null +++ b/docs/docs/auto-docs/screens/UserPortal/Volunteer/Actions/Actions.mocks/variables/ERROR_MOCKS.md @@ -0,0 +1,49 @@ +[**talawa-admin**](../../../../../../README.md) + +*** + +[talawa-admin](../../../../../../modules.md) / [screens/UserPortal/Volunteer/Actions/Actions.mocks](../README.md) / ERROR\_MOCKS + +# Variable: ERROR\_MOCKS + +> `const` **ERROR\_MOCKS**: `object`[] + +Defined in: [src/screens/UserPortal/Volunteer/Actions/Actions.mocks.ts:253](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/UserPortal/Volunteer/Actions/Actions.mocks.ts#L253) + +## Type declaration + +### error + +> **error**: `Error` + +### request + +> **request**: `object` + +#### request.query + +> **query**: `DocumentNode` = `ACTION_ITEMS_BY_USER` + +#### request.variables + +> **variables**: `object` + +#### request.variables.orderBy + +> **orderBy**: `null` = `null` + +#### request.variables.userId + +> **userId**: `string` = `'userId'` + +#### request.variables.where + +> **where**: `object` + +#### request.variables.where.assigneeName + +> **assigneeName**: `string` = `''` + +#### request.variables.where.orgId + +> **orgId**: `string` = `'orgId'` diff --git a/docs/docs/auto-docs/screens/UserPortal/Volunteer/Actions/Actions.mocks/variables/MOCKS.md b/docs/docs/auto-docs/screens/UserPortal/Volunteer/Actions/Actions.mocks/variables/MOCKS.md new file mode 100644 index 0000000000..c1b3bf882f --- /dev/null +++ b/docs/docs/auto-docs/screens/UserPortal/Volunteer/Actions/Actions.mocks/variables/MOCKS.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../../../../README.md) + +*** + +[talawa-admin](../../../../../../modules.md) / [screens/UserPortal/Volunteer/Actions/Actions.mocks](../README.md) / MOCKS + +# Variable: MOCKS + +> `const` **MOCKS**: (\{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `orderBy`: `null`; `userId`: `string`; `where`: \{ `assigneeName`: `string`; `categoryName`: `undefined`; `orgId`: `string`; \}; \}; \}; `result`: \{ `data`: \{ `actionItemsByUser`: (\{ `_id`: `string`; `actionItemCategory`: \{ `_id`: `string`; `name`: `string`; \}; `allottedHours`: `number`; `assignee`: \{ `_id`: `string`; `user`: \{ `_id`: `string`; `firstName`: `string`; `image`: `null`; `lastName`: `string`; \}; \}; `assigneeGroup`: `null`; `assigneeType`: `string`; `assigner`: \{ `_id`: `string`; `firstName`: `string`; `image`: `null`; `lastName`: `string`; \}; `assignmentDate`: `string`; `completionDate`: `string`; `creator`: \{ `_id`: `string`; `firstName`: `string`; `lastName`: `string`; \}; `dueDate`: `string`; `event`: \{ `_id`: `string`; `title`: `string`; \}; `isCompleted`: `boolean`; `postCompletionNotes`: `string`; `preCompletionNotes`: `string`; \} \| \{ `_id`: `string`; `actionItemCategory`: \{ `_id`: `string`; `name`: `string`; \}; `allottedHours`: `number`; `assignee`: `null`; `assigneeGroup`: \{ `_id`: `string`; `name`: `string`; \}; `assigneeType`: `string`; `assigner`: \{ `_id`: `string`; `firstName`: `string`; `image`: `null`; `lastName`: `string`; \}; `assignmentDate`: `string`; `completionDate`: `string`; `creator`: \{ `_id`: `string`; `firstName`: `string`; `lastName`: `string`; \}; `dueDate`: `string`; `event`: \{ `_id`: `string`; `title`: `string`; \}; `isCompleted`: `boolean`; `postCompletionNotes`: `string`; `preCompletionNotes`: `string`; \} \| \{ `_id`: `string`; `actionItemCategory`: \{ `_id`: `string`; `name`: `string`; \}; `allottedHours`: `null`; `assignee`: \{ `_id`: `string`; `user`: \{ `_id`: `string`; `firstName`: `string`; `image`: `string`; `lastName`: `string`; \}; \}; `assigneeGroup`: `null`; `assigneeType`: `string`; `assigner`: \{ `_id`: `string`; `firstName`: `string`; `image`: `null`; `lastName`: `string`; \}; `assignmentDate`: `string`; `completionDate`: `string`; `creator`: \{ `_id`: `string`; `firstName`: `string`; `lastName`: `string`; \}; `dueDate`: `string`; `event`: \{ `_id`: `string`; `title`: `string`; \}; `isCompleted`: `boolean`; `postCompletionNotes`: `string`; `preCompletionNotes`: `string`; \})[]; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `orderBy`: `string`; `userId`: `string`; `where`: \{ `assigneeName`: `string`; `categoryName`: `undefined`; `orgId`: `string`; \}; \}; \}; `result`: \{ `data`: \{ `actionItemsByUser`: (\{ `_id`: `string`; `actionItemCategory`: \{ `_id`: `string`; `name`: `string`; \}; `allottedHours`: `number`; `assignee`: \{ `_id`: `string`; `user`: \{ `_id`: `string`; `firstName`: `string`; `image`: `null`; `lastName`: `string`; \}; \}; `assigneeGroup`: `null`; `assigneeType`: `string`; `assigner`: \{ `_id`: `string`; `firstName`: `string`; `image`: `null`; `lastName`: `string`; \}; `assignmentDate`: `string`; `completionDate`: `string`; `creator`: \{ `_id`: `string`; `firstName`: `string`; `lastName`: `string`; \}; `dueDate`: `string`; `event`: \{ `_id`: `string`; `title`: `string`; \}; `isCompleted`: `boolean`; `postCompletionNotes`: `string`; `preCompletionNotes`: `string`; \} \| \{ `_id`: `string`; `actionItemCategory`: \{ `_id`: `string`; `name`: `string`; \}; `allottedHours`: `number`; `assignee`: `null`; `assigneeGroup`: \{ `_id`: `string`; `name`: `string`; \}; `assigneeType`: `string`; `assigner`: \{ `_id`: `string`; `firstName`: `string`; `image`: `null`; `lastName`: `string`; \}; `assignmentDate`: `string`; `completionDate`: `string`; `creator`: \{ `_id`: `string`; `firstName`: `string`; `lastName`: `string`; \}; `dueDate`: `string`; `event`: \{ `_id`: `string`; `title`: `string`; \}; `isCompleted`: `boolean`; `postCompletionNotes`: `string`; `preCompletionNotes`: `string`; \})[]; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `orderBy`: `null`; `userId`: `string`; `where`: \{ `assigneeName`: `undefined`; `categoryName`: `string`; `orgId`: `string`; \}; \}; \}; `result`: \{ `data`: \{ `actionItemsByUser`: (\{ `_id`: `string`; `actionItemCategory`: \{ `_id`: `string`; `name`: `string`; \}; `allottedHours`: `number`; `assignee`: \{ `_id`: `string`; `user`: \{ `_id`: `string`; `firstName`: `string`; `image`: `null`; `lastName`: `string`; \}; \}; `assigneeGroup`: `null`; `assigneeType`: `string`; `assigner`: \{ `_id`: `string`; `firstName`: `string`; `image`: `null`; `lastName`: `string`; \}; `assignmentDate`: `string`; `completionDate`: `string`; `creator`: \{ `_id`: `string`; `firstName`: `string`; `lastName`: `string`; \}; `dueDate`: `string`; `event`: \{ `_id`: `string`; `title`: `string`; \}; `isCompleted`: `boolean`; `postCompletionNotes`: `string`; `preCompletionNotes`: `string`; \} \| \{ `_id`: `string`; `actionItemCategory`: \{ `_id`: `string`; `name`: `string`; \}; `allottedHours`: `number`; `assignee`: `null`; `assigneeGroup`: \{ `_id`: `string`; `name`: `string`; \}; `assigneeType`: `string`; `assigner`: \{ `_id`: `string`; `firstName`: `string`; `image`: `null`; `lastName`: `string`; \}; `assignmentDate`: `string`; `completionDate`: `string`; `creator`: \{ `_id`: `string`; `firstName`: `string`; `lastName`: `string`; \}; `dueDate`: `string`; `event`: \{ `_id`: `string`; `title`: `string`; \}; `isCompleted`: `boolean`; `postCompletionNotes`: `string`; `preCompletionNotes`: `string`; \})[]; \}; \}; \})[] + +Defined in: [src/screens/UserPortal/Volunteer/Actions/Actions.mocks.ts:121](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/UserPortal/Volunteer/Actions/Actions.mocks.ts#L121) diff --git a/docs/docs/auto-docs/screens/UserPortal/Volunteer/Actions/Actions/README.md b/docs/docs/auto-docs/screens/UserPortal/Volunteer/Actions/Actions/README.md new file mode 100644 index 0000000000..a1142db514 --- /dev/null +++ b/docs/docs/auto-docs/screens/UserPortal/Volunteer/Actions/Actions/README.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../../../README.md) + +*** + +[talawa-admin](../../../../../modules.md) / screens/UserPortal/Volunteer/Actions/Actions + +# screens/UserPortal/Volunteer/Actions/Actions + +## Functions + +- [default](functions/default.md) diff --git a/docs/docs/auto-docs/screens/UserPortal/Volunteer/Actions/Actions/functions/default.md b/docs/docs/auto-docs/screens/UserPortal/Volunteer/Actions/Actions/functions/default.md new file mode 100644 index 0000000000..1c7a543f21 --- /dev/null +++ b/docs/docs/auto-docs/screens/UserPortal/Volunteer/Actions/Actions/functions/default.md @@ -0,0 +1,21 @@ +[**talawa-admin**](../../../../../../README.md) + +*** + +[talawa-admin](../../../../../../modules.md) / [screens/UserPortal/Volunteer/Actions/Actions](../README.md) / default + +# Function: default() + +> **default**(): `JSX.Element` + +Defined in: [src/screens/UserPortal/Volunteer/Actions/Actions.tsx:60](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/UserPortal/Volunteer/Actions/Actions.tsx#L60) + +Component for managing and displaying action items within an organization. + +This component allows users to view, filter, sort, and create action items. It also handles fetching and displaying related data such as action item categories and members. + +## Returns + +`JSX.Element` + +The rendered component. diff --git a/docs/docs/auto-docs/screens/UserPortal/Volunteer/Groups/GroupModal/README.md b/docs/docs/auto-docs/screens/UserPortal/Volunteer/Groups/GroupModal/README.md new file mode 100644 index 0000000000..cda227a90a --- /dev/null +++ b/docs/docs/auto-docs/screens/UserPortal/Volunteer/Groups/GroupModal/README.md @@ -0,0 +1,15 @@ +[**talawa-admin**](../../../../../README.md) + +*** + +[talawa-admin](../../../../../modules.md) / screens/UserPortal/Volunteer/Groups/GroupModal + +# screens/UserPortal/Volunteer/Groups/GroupModal + +## Interfaces + +- [InterfaceGroupModal](interfaces/InterfaceGroupModal.md) + +## Functions + +- [default](functions/default.md) diff --git a/docs/docs/auto-docs/screens/UserPortal/Volunteer/Groups/GroupModal/functions/default.md b/docs/docs/auto-docs/screens/UserPortal/Volunteer/Groups/GroupModal/functions/default.md new file mode 100644 index 0000000000..49c4418719 --- /dev/null +++ b/docs/docs/auto-docs/screens/UserPortal/Volunteer/Groups/GroupModal/functions/default.md @@ -0,0 +1,51 @@ +[**talawa-admin**](../../../../../../README.md) + +*** + +[talawa-admin](../../../../../../modules.md) / [screens/UserPortal/Volunteer/Groups/GroupModal](../README.md) / default + +# Function: default() + +> **default**(`props`, `deprecatedLegacyContext`?): `ReactNode` + +Defined in: [src/screens/UserPortal/Volunteer/Groups/GroupModal.tsx:71](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/UserPortal/Volunteer/Groups/GroupModal.tsx#L71) + +A modal dialog for creating or editing a volunteer group. + +## Parameters + +### props + +[`InterfaceGroupModal`](../interfaces/InterfaceGroupModal.md) + +### deprecatedLegacyContext? + +`any` + +**Deprecated** + +**See** + +[React Docs](https://legacy.reactjs.org/docs/legacy-context.html#referencing-context-in-lifecycle-methods) + +## Returns + +`ReactNode` + +The rendered modal component. + +The `VolunteerGroupModal` component displays a form within a modal dialog for creating or editing a Volunteer Group. +It includes fields for entering the group name, description, volunteersRequired, and selecting volunteers/leaders. + +The modal includes: +- A header with a title indicating the current mode (create or edit) and a close button. +- A form with: + - An input field for entering the group name. + - A textarea for entering the group description. + - An input field for entering the number of volunteers required. +- A submit button to create or update the pledge. + +On form submission, the component either: +- Calls `updateVoluneerGroup` mutation to update an existing group, or + +Success or error messages are displayed using toast notifications based on the result of the mutation. diff --git a/docs/docs/auto-docs/screens/UserPortal/Volunteer/Groups/GroupModal/interfaces/InterfaceGroupModal.md b/docs/docs/auto-docs/screens/UserPortal/Volunteer/Groups/GroupModal/interfaces/InterfaceGroupModal.md new file mode 100644 index 0000000000..d09c775c03 --- /dev/null +++ b/docs/docs/auto-docs/screens/UserPortal/Volunteer/Groups/GroupModal/interfaces/InterfaceGroupModal.md @@ -0,0 +1,57 @@ +[**talawa-admin**](../../../../../../README.md) + +*** + +[talawa-admin](../../../../../../modules.md) / [screens/UserPortal/Volunteer/Groups/GroupModal](../README.md) / InterfaceGroupModal + +# Interface: InterfaceGroupModal + +Defined in: [src/screens/UserPortal/Volunteer/Groups/GroupModal.tsx:35](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/UserPortal/Volunteer/Groups/GroupModal.tsx#L35) + +## Properties + +### eventId + +> **eventId**: `string` + +Defined in: [src/screens/UserPortal/Volunteer/Groups/GroupModal.tsx:38](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/UserPortal/Volunteer/Groups/GroupModal.tsx#L38) + +*** + +### group + +> **group**: [`InterfaceVolunteerGroupInfo`](../../../../../../utils/interfaces/interfaces/InterfaceVolunteerGroupInfo.md) + +Defined in: [src/screens/UserPortal/Volunteer/Groups/GroupModal.tsx:39](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/UserPortal/Volunteer/Groups/GroupModal.tsx#L39) + +*** + +### hide() + +> **hide**: () => `void` + +Defined in: [src/screens/UserPortal/Volunteer/Groups/GroupModal.tsx:37](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/UserPortal/Volunteer/Groups/GroupModal.tsx#L37) + +#### Returns + +`void` + +*** + +### isOpen + +> **isOpen**: `boolean` + +Defined in: [src/screens/UserPortal/Volunteer/Groups/GroupModal.tsx:36](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/UserPortal/Volunteer/Groups/GroupModal.tsx#L36) + +*** + +### refetchGroups() + +> **refetchGroups**: () => `void` + +Defined in: [src/screens/UserPortal/Volunteer/Groups/GroupModal.tsx:40](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/UserPortal/Volunteer/Groups/GroupModal.tsx#L40) + +#### Returns + +`void` diff --git a/docs/docs/auto-docs/screens/UserPortal/Volunteer/Groups/Groups.mocks/README.md b/docs/docs/auto-docs/screens/UserPortal/Volunteer/Groups/Groups.mocks/README.md new file mode 100644 index 0000000000..fec7ae3f06 --- /dev/null +++ b/docs/docs/auto-docs/screens/UserPortal/Volunteer/Groups/Groups.mocks/README.md @@ -0,0 +1,14 @@ +[**talawa-admin**](../../../../../README.md) + +*** + +[talawa-admin](../../../../../modules.md) / screens/UserPortal/Volunteer/Groups/Groups.mocks + +# screens/UserPortal/Volunteer/Groups/Groups.mocks + +## Variables + +- [EMPTY\_MOCKS](variables/EMPTY_MOCKS.md) +- [ERROR\_MOCKS](variables/ERROR_MOCKS.md) +- [MOCKS](variables/MOCKS.md) +- [UPDATE\_ERROR\_MOCKS](variables/UPDATE_ERROR_MOCKS.md) diff --git a/docs/docs/auto-docs/screens/UserPortal/Volunteer/Groups/Groups.mocks/variables/EMPTY_MOCKS.md b/docs/docs/auto-docs/screens/UserPortal/Volunteer/Groups/Groups.mocks/variables/EMPTY_MOCKS.md new file mode 100644 index 0000000000..d0b72ceeb9 --- /dev/null +++ b/docs/docs/auto-docs/screens/UserPortal/Volunteer/Groups/Groups.mocks/variables/EMPTY_MOCKS.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../../../../README.md) + +*** + +[talawa-admin](../../../../../../modules.md) / [screens/UserPortal/Volunteer/Groups/Groups.mocks](../README.md) / EMPTY\_MOCKS + +# Variable: EMPTY\_MOCKS + +> `const` **EMPTY\_MOCKS**: (\{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `orderBy`: `null`; `where`: \{ `eventId`: `undefined`; `group`: `undefined`; `leaderName`: `null`; `name_contains`: `string`; `orgId`: `string`; `status`: `undefined`; `userId`: `string`; \}; \}; \}; `result`: \{ `data`: \{ `getEventVolunteerGroups`: `never`[]; `getVolunteerMembership`: `undefined`; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `orderBy`: `undefined`; `where`: \{ `eventId`: `string`; `group`: `string`; `leaderName`: `undefined`; `name_contains`: `undefined`; `orgId`: `undefined`; `status`: `string`; `userId`: `undefined`; \}; \}; \}; `result`: \{ `data`: \{ `getEventVolunteerGroups`: `undefined`; `getVolunteerMembership`: `never`[]; \}; \}; \})[] + +Defined in: [src/screens/UserPortal/Volunteer/Groups/Groups.mocks.ts:368](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/UserPortal/Volunteer/Groups/Groups.mocks.ts#L368) diff --git a/docs/docs/auto-docs/screens/UserPortal/Volunteer/Groups/Groups.mocks/variables/ERROR_MOCKS.md b/docs/docs/auto-docs/screens/UserPortal/Volunteer/Groups/Groups.mocks/variables/ERROR_MOCKS.md new file mode 100644 index 0000000000..a320536013 --- /dev/null +++ b/docs/docs/auto-docs/screens/UserPortal/Volunteer/Groups/Groups.mocks/variables/ERROR_MOCKS.md @@ -0,0 +1,53 @@ +[**talawa-admin**](../../../../../../README.md) + +*** + +[talawa-admin](../../../../../../modules.md) / [screens/UserPortal/Volunteer/Groups/Groups.mocks](../README.md) / ERROR\_MOCKS + +# Variable: ERROR\_MOCKS + +> `const` **ERROR\_MOCKS**: `object`[] + +Defined in: [src/screens/UserPortal/Volunteer/Groups/Groups.mocks.ts:407](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/UserPortal/Volunteer/Groups/Groups.mocks.ts#L407) + +## Type declaration + +### error + +> **error**: `Error` + +### request + +> **request**: `object` + +#### request.query + +> **query**: `DocumentNode` = `EVENT_VOLUNTEER_GROUP_LIST` + +#### request.variables + +> **variables**: `object` + +#### request.variables.orderBy + +> **orderBy**: `null` = `null` + +#### request.variables.where + +> **where**: `object` + +#### request.variables.where.leaderName + +> **leaderName**: `null` = `null` + +#### request.variables.where.name\_contains + +> **name\_contains**: `string` = `''` + +#### request.variables.where.orgId + +> **orgId**: `string` = `'orgId'` + +#### request.variables.where.userId + +> **userId**: `string` = `'userId'` diff --git a/docs/docs/auto-docs/screens/UserPortal/Volunteer/Groups/Groups.mocks/variables/MOCKS.md b/docs/docs/auto-docs/screens/UserPortal/Volunteer/Groups/Groups.mocks/variables/MOCKS.md new file mode 100644 index 0000000000..f50ba3b7a2 --- /dev/null +++ b/docs/docs/auto-docs/screens/UserPortal/Volunteer/Groups/Groups.mocks/variables/MOCKS.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../../../../README.md) + +*** + +[talawa-admin](../../../../../../modules.md) / [screens/UserPortal/Volunteer/Groups/Groups.mocks](../README.md) / MOCKS + +# Variable: MOCKS + +> `const` **MOCKS**: (\{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `data`: `undefined`; `id`: `undefined`; `orderBy`: `null`; `status`: `undefined`; `where`: \{ `eventId`: `undefined`; `groupId`: `undefined`; `leaderName`: `null`; `name_contains`: `string`; `orgId`: `string`; `status`: `undefined`; `userId`: `string`; \}; \}; \}; `result`: \{ `data`: \{ `getEventVolunteerGroups`: (\{ `_id`: `string`; `assignments`: `never`[]; `createdAt`: `string`; `creator`: \{ `_id`: `string`; `firstName`: `string`; `image`: `null`; `lastName`: `string`; \}; `description`: `string`; `event`: \{ `_id`: `string`; \}; `leader`: \{ `_id`: `string`; `firstName`: `string`; `image`: `string`; `lastName`: `string`; \}; `name`: `string`; `volunteers`: `object`[]; `volunteersRequired`: `null`; \} \| \{ `_id`: `string`; `assignments`: `never`[]; `createdAt`: `string`; `creator`: \{ `_id`: `string`; `firstName`: `string`; `image`: `null`; `lastName`: `string`; \}; `description`: `string`; `event`: \{ `_id`: `string`; \}; `leader`: \{ `_id`: `string`; `firstName`: `string`; `image`: `null`; `lastName`: `string`; \}; `name`: `string`; `volunteers`: `object`[]; `volunteersRequired`: `null`; \})[]; `getVolunteerMembership`: `undefined`; `updateEventVolunteerGroup`: `undefined`; `updateVolunteerMembership`: `undefined`; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `data`: `undefined`; `id`: `undefined`; `orderBy`: `string`; `status`: `undefined`; `where`: \{ `eventId`: `undefined`; `groupId`: `undefined`; `leaderName`: `null`; `name_contains`: `string`; `orgId`: `string`; `status`: `undefined`; `userId`: `string`; \}; \}; \}; `result`: \{ `data`: \{ `getEventVolunteerGroups`: (\{ `_id`: `string`; `assignments`: `never`[]; `createdAt`: `string`; `creator`: \{ `_id`: `string`; `firstName`: `string`; `image`: `null`; `lastName`: `string`; \}; `description`: `string`; `event`: \{ `_id`: `string`; \}; `leader`: \{ `_id`: `string`; `firstName`: `string`; `image`: `string`; `lastName`: `string`; \}; `name`: `string`; `volunteers`: `object`[]; `volunteersRequired`: `null`; \} \| \{ `_id`: `string`; `assignments`: `never`[]; `createdAt`: `string`; `creator`: \{ `_id`: `string`; `firstName`: `string`; `image`: `null`; `lastName`: `string`; \}; `description`: `string`; `event`: \{ `_id`: `string`; \}; `leader`: \{ `_id`: `string`; `firstName`: `string`; `image`: `null`; `lastName`: `string`; \}; `name`: `string`; `volunteers`: `object`[]; `volunteersRequired`: `null`; \})[]; `getVolunteerMembership`: `undefined`; `updateEventVolunteerGroup`: `undefined`; `updateVolunteerMembership`: `undefined`; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `data`: `undefined`; `id`: `undefined`; `orderBy`: `null`; `status`: `undefined`; `where`: \{ `eventId`: `undefined`; `groupId`: `undefined`; `leaderName`: `string`; `name_contains`: `null`; `orgId`: `string`; `status`: `undefined`; `userId`: `string`; \}; \}; \}; `result`: \{ `data`: \{ `getEventVolunteerGroups`: (\{ `_id`: `string`; `assignments`: `never`[]; `createdAt`: `string`; `creator`: \{ `_id`: `string`; `firstName`: `string`; `image`: `null`; `lastName`: `string`; \}; `description`: `string`; `event`: \{ `_id`: `string`; \}; `leader`: \{ `_id`: `string`; `firstName`: `string`; `image`: `string`; `lastName`: `string`; \}; `name`: `string`; `volunteers`: `object`[]; `volunteersRequired`: `null`; \} \| \{ `_id`: `string`; `assignments`: `never`[]; `createdAt`: `string`; `creator`: \{ `_id`: `string`; `firstName`: `string`; `image`: `null`; `lastName`: `string`; \}; `description`: `string`; `event`: \{ `_id`: `string`; \}; `leader`: \{ `_id`: `string`; `firstName`: `string`; `image`: `null`; `lastName`: `string`; \}; `name`: `string`; `volunteers`: `object`[]; `volunteersRequired`: `null`; \})[]; `getVolunteerMembership`: `undefined`; `updateEventVolunteerGroup`: `undefined`; `updateVolunteerMembership`: `undefined`; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `data`: `undefined`; `id`: `undefined`; `orderBy`: `undefined`; `status`: `undefined`; `where`: \{ `eventId`: `string`; `groupId`: `string`; `leaderName`: `undefined`; `name_contains`: `undefined`; `orgId`: `undefined`; `status`: `string`; `userId`: `undefined`; \}; \}; \}; `result`: \{ `data`: \{ `getEventVolunteerGroups`: `undefined`; `getVolunteerMembership`: (\{ `_id`: `string`; `createdAt`: `string`; `event`: \{ `_id`: `string`; `startDate`: `string`; `title`: `string`; \}; `group`: \{ `_id`: `string`; `name`: `string`; \}; `status`: `string`; `volunteer`: \{ `_id`: `string`; `user`: \{ `_id`: `string`; `firstName`: `string`; `image`: `string`; `lastName`: `string`; \}; \}; \} \| \{ `_id`: `string`; `createdAt`: `string`; `event`: \{ `_id`: `string`; `startDate`: `string`; `title`: `string`; \}; `group`: \{ `_id`: `string`; `name`: `string`; \}; `status`: `string`; `volunteer`: \{ `_id`: `string`; `user`: \{ `_id`: `string`; `firstName`: `string`; `image`: `null`; `lastName`: `string`; \}; \}; \})[]; `updateEventVolunteerGroup`: `undefined`; `updateVolunteerMembership`: `undefined`; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `data`: `undefined`; `id`: `string`; `orderBy`: `undefined`; `status`: `string`; `where`: `undefined`; \}; \}; `result`: \{ `data`: \{ `getEventVolunteerGroups`: `undefined`; `getVolunteerMembership`: `undefined`; `updateEventVolunteerGroup`: `undefined`; `updateVolunteerMembership`: \{ `_id`: `string`; \}; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `data`: \{ `description`: `string`; `eventId`: `string`; `name`: `string`; `volunteersRequired`: `number`; \}; `id`: `string`; `orderBy`: `undefined`; `status`: `undefined`; `where`: `undefined`; \}; \}; `result`: \{ `data`: \{ `getEventVolunteerGroups`: `undefined`; `getVolunteerMembership`: `undefined`; `updateEventVolunteerGroup`: \{ `_id`: `string`; \}; `updateVolunteerMembership`: `undefined`; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `data`: \{ `description`: `undefined`; `eventId`: `string`; `name`: `undefined`; `volunteersRequired`: `undefined`; \}; `id`: `string`; `orderBy`: `undefined`; `status`: `undefined`; `where`: `undefined`; \}; \}; `result`: \{ `data`: \{ `getEventVolunteerGroups`: `undefined`; `getVolunteerMembership`: `undefined`; `updateEventVolunteerGroup`: \{ `_id`: `string`; \}; `updateVolunteerMembership`: `undefined`; \}; \}; \})[] + +Defined in: [src/screens/UserPortal/Volunteer/Groups/Groups.mocks.ts:163](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/UserPortal/Volunteer/Groups/Groups.mocks.ts#L163) diff --git a/docs/docs/auto-docs/screens/UserPortal/Volunteer/Groups/Groups.mocks/variables/UPDATE_ERROR_MOCKS.md b/docs/docs/auto-docs/screens/UserPortal/Volunteer/Groups/Groups.mocks/variables/UPDATE_ERROR_MOCKS.md new file mode 100644 index 0000000000..a91f9f5066 --- /dev/null +++ b/docs/docs/auto-docs/screens/UserPortal/Volunteer/Groups/Groups.mocks/variables/UPDATE_ERROR_MOCKS.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../../../../README.md) + +*** + +[talawa-admin](../../../../../../modules.md) / [screens/UserPortal/Volunteer/Groups/Groups.mocks](../README.md) / UPDATE\_ERROR\_MOCKS + +# Variable: UPDATE\_ERROR\_MOCKS + +> `const` **UPDATE\_ERROR\_MOCKS**: (\{ `error`: `undefined`; `request`: \{ `query`: `DocumentNode`; `variables`: \{ `data`: `undefined`; `id`: `undefined`; `status`: `undefined`; `where`: \{ `eventId`: `string`; `groupId`: `string`; `status`: `string`; \}; \}; \}; `result`: \{ `data`: \{ `getVolunteerMembership`: (\{ `_id`: `string`; `createdAt`: `string`; `event`: \{ `_id`: `string`; `startDate`: `string`; `title`: `string`; \}; `group`: \{ `_id`: `string`; `name`: `string`; \}; `status`: `string`; `volunteer`: \{ `_id`: `string`; `user`: \{ `_id`: `string`; `firstName`: `string`; `image`: `string`; `lastName`: `string`; \}; \}; \} \| \{ `_id`: `string`; `createdAt`: `string`; `event`: \{ `_id`: `string`; `startDate`: `string`; `title`: `string`; \}; `group`: \{ `_id`: `string`; `name`: `string`; \}; `status`: `string`; `volunteer`: \{ `_id`: `string`; `user`: \{ `_id`: `string`; `firstName`: `string`; `image`: `null`; `lastName`: `string`; \}; \}; \})[]; \}; \}; \} \| \{ `error`: `Error`; `request`: \{ `query`: `DocumentNode`; `variables`: \{ `data`: `undefined`; `id`: `string`; `status`: `string`; `where`: `undefined`; \}; \}; `result`: `undefined`; \} \| \{ `error`: `Error`; `request`: \{ `query`: `DocumentNode`; `variables`: \{ `data`: \{ `description`: `string`; `eventId`: `string`; `name`: `string`; `volunteersRequired`: `number`; \}; `id`: `string`; `status`: `undefined`; `where`: `undefined`; \}; \}; `result`: `undefined`; \})[] + +Defined in: [src/screens/UserPortal/Volunteer/Groups/Groups.mocks.ts:425](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/UserPortal/Volunteer/Groups/Groups.mocks.ts#L425) diff --git a/docs/docs/auto-docs/screens/UserPortal/Volunteer/Groups/Groups/README.md b/docs/docs/auto-docs/screens/UserPortal/Volunteer/Groups/Groups/README.md new file mode 100644 index 0000000000..b7f737ab07 --- /dev/null +++ b/docs/docs/auto-docs/screens/UserPortal/Volunteer/Groups/Groups/README.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../../../README.md) + +*** + +[talawa-admin](../../../../../modules.md) / screens/UserPortal/Volunteer/Groups/Groups + +# screens/UserPortal/Volunteer/Groups/Groups + +## Functions + +- [default](functions/default.md) diff --git a/docs/docs/auto-docs/screens/UserPortal/Volunteer/Groups/Groups/functions/default.md b/docs/docs/auto-docs/screens/UserPortal/Volunteer/Groups/Groups/functions/default.md new file mode 100644 index 0000000000..9e6de78544 --- /dev/null +++ b/docs/docs/auto-docs/screens/UserPortal/Volunteer/Groups/Groups/functions/default.md @@ -0,0 +1,20 @@ +[**talawa-admin**](../../../../../../README.md) + +*** + +[talawa-admin](../../../../../../modules.md) / [screens/UserPortal/Volunteer/Groups/Groups](../README.md) / default + +# Function: default() + +> **default**(): `JSX.Element` + +Defined in: [src/screens/UserPortal/Volunteer/Groups/Groups.tsx:55](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/UserPortal/Volunteer/Groups/Groups.tsx#L55) + +Component for managing volunteer groups for an event. +This component allows users to view, filter, sort, and create action items. It also provides a modal for creating and editing action items. + +## Returns + +`JSX.Element` + +The rendered component. diff --git a/docs/docs/auto-docs/screens/UserPortal/Volunteer/Invitations/Invitations.mocks/README.md b/docs/docs/auto-docs/screens/UserPortal/Volunteer/Invitations/Invitations.mocks/README.md new file mode 100644 index 0000000000..205f594b35 --- /dev/null +++ b/docs/docs/auto-docs/screens/UserPortal/Volunteer/Invitations/Invitations.mocks/README.md @@ -0,0 +1,14 @@ +[**talawa-admin**](../../../../../README.md) + +*** + +[talawa-admin](../../../../../modules.md) / screens/UserPortal/Volunteer/Invitations/Invitations.mocks + +# screens/UserPortal/Volunteer/Invitations/Invitations.mocks + +## Variables + +- [EMPTY\_MOCKS](variables/EMPTY_MOCKS.md) +- [ERROR\_MOCKS](variables/ERROR_MOCKS.md) +- [MOCKS](variables/MOCKS.md) +- [UPDATE\_ERROR\_MOCKS](variables/UPDATE_ERROR_MOCKS.md) diff --git a/docs/docs/auto-docs/screens/UserPortal/Volunteer/Invitations/Invitations.mocks/variables/EMPTY_MOCKS.md b/docs/docs/auto-docs/screens/UserPortal/Volunteer/Invitations/Invitations.mocks/variables/EMPTY_MOCKS.md new file mode 100644 index 0000000000..4cd6ad1a54 --- /dev/null +++ b/docs/docs/auto-docs/screens/UserPortal/Volunteer/Invitations/Invitations.mocks/variables/EMPTY_MOCKS.md @@ -0,0 +1,53 @@ +[**talawa-admin**](../../../../../../README.md) + +*** + +[talawa-admin](../../../../../../modules.md) / [screens/UserPortal/Volunteer/Invitations/Invitations.mocks](../README.md) / EMPTY\_MOCKS + +# Variable: EMPTY\_MOCKS + +> `const` **EMPTY\_MOCKS**: `object`[] + +Defined in: [src/screens/UserPortal/Volunteer/Invitations/Invitations.mocks.ts:189](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/UserPortal/Volunteer/Invitations/Invitations.mocks.ts#L189) + +## Type declaration + +### request + +> **request**: `object` + +#### request.query + +> **query**: `DocumentNode` = `USER_VOLUNTEER_MEMBERSHIP` + +#### request.variables + +> **variables**: `object` + +#### request.variables.where + +> **where**: `object` + +#### request.variables.where.filter + +> **filter**: `null` = `null` + +#### request.variables.where.status + +> **status**: `string` = `'invited'` + +#### request.variables.where.userId + +> **userId**: `string` = `'userId'` + +### result + +> **result**: `object` + +#### result.data + +> **data**: `object` + +#### result.data.getVolunteerMembership + +> **getVolunteerMembership**: `never`[] = `[]` diff --git a/docs/docs/auto-docs/screens/UserPortal/Volunteer/Invitations/Invitations.mocks/variables/ERROR_MOCKS.md b/docs/docs/auto-docs/screens/UserPortal/Volunteer/Invitations/Invitations.mocks/variables/ERROR_MOCKS.md new file mode 100644 index 0000000000..7ace381637 --- /dev/null +++ b/docs/docs/auto-docs/screens/UserPortal/Volunteer/Invitations/Invitations.mocks/variables/ERROR_MOCKS.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../../../../README.md) + +*** + +[talawa-admin](../../../../../../modules.md) / [screens/UserPortal/Volunteer/Invitations/Invitations.mocks](../README.md) / ERROR\_MOCKS + +# Variable: ERROR\_MOCKS + +> `const` **ERROR\_MOCKS**: (\{ `error`: `Error`; `request`: \{ `query`: `DocumentNode`; `variables`: \{ `id`: `undefined`; `status`: `undefined`; `where`: \{ `filter`: `null`; `status`: `string`; `userId`: `string`; \}; \}; \}; \} \| \{ `error`: `Error`; `request`: \{ `query`: `DocumentNode`; `variables`: \{ `id`: `string`; `status`: `string`; `where`: `undefined`; \}; \}; \})[] + +Defined in: [src/screens/UserPortal/Volunteer/Invitations/Invitations.mocks.ts:209](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/UserPortal/Volunteer/Invitations/Invitations.mocks.ts#L209) diff --git a/docs/docs/auto-docs/screens/UserPortal/Volunteer/Invitations/Invitations.mocks/variables/MOCKS.md b/docs/docs/auto-docs/screens/UserPortal/Volunteer/Invitations/Invitations.mocks/variables/MOCKS.md new file mode 100644 index 0000000000..6f471aa2ff --- /dev/null +++ b/docs/docs/auto-docs/screens/UserPortal/Volunteer/Invitations/Invitations.mocks/variables/MOCKS.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../../../../README.md) + +*** + +[talawa-admin](../../../../../../modules.md) / [screens/UserPortal/Volunteer/Invitations/Invitations.mocks](../README.md) / MOCKS + +# Variable: MOCKS + +> `const` **MOCKS**: (\{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `id`: `undefined`; `orderBy`: `undefined`; `status`: `undefined`; `where`: \{ `eventTitle`: `undefined`; `filter`: `null`; `status`: `string`; `userId`: `string`; \}; \}; \}; `result`: \{ `data`: \{ `getVolunteerMembership`: (\{ `_id`: `string`; `createdAt`: `string`; `event`: \{ `_id`: `string`; `startDate`: `string`; `title`: `string`; \}; `group`: `null`; `status`: `string`; `volunteer`: \{ `_id`: `string`; `user`: \{ `_id`: `string`; `firstName`: `string`; `image`: `string`; `lastName`: `string`; \}; \}; \} \| \{ `_id`: `string`; `createdAt`: `string`; `event`: \{ `_id`: `string`; `startDate`: `string`; `title`: `string`; \}; `group`: \{ `_id`: `string`; `name`: `string`; \}; `status`: `string`; `volunteer`: \{ `_id`: `string`; `user`: \{ `_id`: `string`; `firstName`: `string`; `image`: `null`; `lastName`: `string`; \}; \}; \})[]; `updateVolunteerMembership`: `undefined`; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `id`: `undefined`; `orderBy`: `string`; `status`: `undefined`; `where`: \{ `eventTitle`: `undefined`; `filter`: `null`; `status`: `string`; `userId`: `string`; \}; \}; \}; `result`: \{ `data`: \{ `getVolunteerMembership`: (\{ `_id`: `string`; `createdAt`: `string`; `event`: \{ `_id`: `string`; `startDate`: `string`; `title`: `string`; \}; `group`: `null`; `status`: `string`; `volunteer`: \{ `_id`: `string`; `user`: \{ `_id`: `string`; `firstName`: `string`; `image`: `string`; `lastName`: `string`; \}; \}; \} \| \{ `_id`: `string`; `createdAt`: `string`; `event`: \{ `_id`: `string`; `startDate`: `string`; `title`: `string`; \}; `group`: \{ `_id`: `string`; `name`: `string`; \}; `status`: `string`; `volunteer`: \{ `_id`: `string`; `user`: \{ `_id`: `string`; `firstName`: `string`; `image`: `null`; `lastName`: `string`; \}; \}; \})[]; `updateVolunteerMembership`: `undefined`; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `id`: `undefined`; `orderBy`: `undefined`; `status`: `undefined`; `where`: \{ `eventTitle`: `undefined`; `filter`: `string`; `status`: `string`; `userId`: `string`; \}; \}; \}; `result`: \{ `data`: \{ `getVolunteerMembership`: `object`[]; `updateVolunteerMembership`: `undefined`; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `id`: `undefined`; `orderBy`: `undefined`; `status`: `undefined`; `where`: \{ `eventTitle`: `undefined`; `filter`: `string`; `status`: `string`; `userId`: `string`; \}; \}; \}; `result`: \{ `data`: \{ `getVolunteerMembership`: `object`[]; `updateVolunteerMembership`: `undefined`; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `id`: `undefined`; `orderBy`: `undefined`; `status`: `undefined`; `where`: \{ `eventTitle`: `string`; `filter`: `null`; `status`: `string`; `userId`: `string`; \}; \}; \}; `result`: \{ `data`: \{ `getVolunteerMembership`: `object`[]; `updateVolunteerMembership`: `undefined`; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `id`: `string`; `orderBy`: `undefined`; `status`: `string`; `where`: `undefined`; \}; \}; `result`: \{ `data`: \{ `getVolunteerMembership`: `undefined`; `updateVolunteerMembership`: \{ `_id`: `string`; \}; \}; \}; \})[] + +Defined in: [src/screens/UserPortal/Volunteer/Invitations/Invitations.mocks.ts:49](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/UserPortal/Volunteer/Invitations/Invitations.mocks.ts#L49) diff --git a/docs/docs/auto-docs/screens/UserPortal/Volunteer/Invitations/Invitations.mocks/variables/UPDATE_ERROR_MOCKS.md b/docs/docs/auto-docs/screens/UserPortal/Volunteer/Invitations/Invitations.mocks/variables/UPDATE_ERROR_MOCKS.md new file mode 100644 index 0000000000..bf117f8636 --- /dev/null +++ b/docs/docs/auto-docs/screens/UserPortal/Volunteer/Invitations/Invitations.mocks/variables/UPDATE_ERROR_MOCKS.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../../../../README.md) + +*** + +[talawa-admin](../../../../../../modules.md) / [screens/UserPortal/Volunteer/Invitations/Invitations.mocks](../README.md) / UPDATE\_ERROR\_MOCKS + +# Variable: UPDATE\_ERROR\_MOCKS + +> `const` **UPDATE\_ERROR\_MOCKS**: (\{ `error`: `undefined`; `request`: \{ `query`: `DocumentNode`; `variables`: \{ `id`: `undefined`; `status`: `undefined`; `where`: \{ `filter`: `null`; `status`: `string`; `userId`: `string`; \}; \}; \}; `result`: \{ `data`: \{ `getVolunteerMembership`: (\{ `_id`: `string`; `createdAt`: `string`; `event`: \{ `_id`: `string`; `startDate`: `string`; `title`: `string`; \}; `group`: `null`; `status`: `string`; `volunteer`: \{ `_id`: `string`; `user`: \{ `_id`: `string`; `firstName`: `string`; `image`: `string`; `lastName`: `string`; \}; \}; \} \| \{ `_id`: `string`; `createdAt`: `string`; `event`: \{ `_id`: `string`; `startDate`: `string`; `title`: `string`; \}; `group`: \{ `_id`: `string`; `name`: `string`; \}; `status`: `string`; `volunteer`: \{ `_id`: `string`; `user`: \{ `_id`: `string`; `firstName`: `string`; `image`: `null`; `lastName`: `string`; \}; \}; \})[]; \}; \}; \} \| \{ `error`: `Error`; `request`: \{ `query`: `DocumentNode`; `variables`: \{ `id`: `string`; `status`: `string`; `where`: `undefined`; \}; \}; `result`: `undefined`; \})[] + +Defined in: [src/screens/UserPortal/Volunteer/Invitations/Invitations.mocks.ts:235](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/UserPortal/Volunteer/Invitations/Invitations.mocks.ts#L235) diff --git a/docs/docs/auto-docs/screens/UserPortal/Volunteer/Invitations/Invitations/README.md b/docs/docs/auto-docs/screens/UserPortal/Volunteer/Invitations/Invitations/README.md new file mode 100644 index 0000000000..42bc4fdae1 --- /dev/null +++ b/docs/docs/auto-docs/screens/UserPortal/Volunteer/Invitations/Invitations/README.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../../../README.md) + +*** + +[talawa-admin](../../../../../modules.md) / screens/UserPortal/Volunteer/Invitations/Invitations + +# screens/UserPortal/Volunteer/Invitations/Invitations + +## Functions + +- [default](functions/default.md) diff --git a/docs/docs/auto-docs/screens/UserPortal/Volunteer/Invitations/Invitations/functions/default.md b/docs/docs/auto-docs/screens/UserPortal/Volunteer/Invitations/Invitations/functions/default.md new file mode 100644 index 0000000000..6aa909ab48 --- /dev/null +++ b/docs/docs/auto-docs/screens/UserPortal/Volunteer/Invitations/Invitations/functions/default.md @@ -0,0 +1,20 @@ +[**talawa-admin**](../../../../../../README.md) + +*** + +[talawa-admin](../../../../../../modules.md) / [screens/UserPortal/Volunteer/Invitations/Invitations](../README.md) / default + +# Function: default() + +> **default**(): `Element` + +Defined in: [src/screens/UserPortal/Volunteer/Invitations/Invitations.tsx:32](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/UserPortal/Volunteer/Invitations/Invitations.tsx#L32) + +The `Invitations` component displays list of invites for the user to volunteer. +It allows the user to search, sort, and accept/reject invites. + +## Returns + +`Element` + +The rendered component displaying the upcoming events. diff --git a/docs/docs/auto-docs/screens/UserPortal/Volunteer/UpcomingEvents/UpcomingEvents.mocks/README.md b/docs/docs/auto-docs/screens/UserPortal/Volunteer/UpcomingEvents/UpcomingEvents.mocks/README.md new file mode 100644 index 0000000000..f5e969cd87 --- /dev/null +++ b/docs/docs/auto-docs/screens/UserPortal/Volunteer/UpcomingEvents/UpcomingEvents.mocks/README.md @@ -0,0 +1,14 @@ +[**talawa-admin**](../../../../../README.md) + +*** + +[talawa-admin](../../../../../modules.md) / screens/UserPortal/Volunteer/UpcomingEvents/UpcomingEvents.mocks + +# screens/UserPortal/Volunteer/UpcomingEvents/UpcomingEvents.mocks + +## Variables + +- [CREATE\_ERROR\_MOCKS](variables/CREATE_ERROR_MOCKS.md) +- [EMPTY\_MOCKS](variables/EMPTY_MOCKS.md) +- [ERROR\_MOCKS](variables/ERROR_MOCKS.md) +- [MOCKS](variables/MOCKS.md) diff --git a/docs/docs/auto-docs/screens/UserPortal/Volunteer/UpcomingEvents/UpcomingEvents.mocks/variables/CREATE_ERROR_MOCKS.md b/docs/docs/auto-docs/screens/UserPortal/Volunteer/UpcomingEvents/UpcomingEvents.mocks/variables/CREATE_ERROR_MOCKS.md new file mode 100644 index 0000000000..248c756c55 --- /dev/null +++ b/docs/docs/auto-docs/screens/UserPortal/Volunteer/UpcomingEvents/UpcomingEvents.mocks/variables/CREATE_ERROR_MOCKS.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../../../../README.md) + +*** + +[talawa-admin](../../../../../../modules.md) / [screens/UserPortal/Volunteer/UpcomingEvents/UpcomingEvents.mocks](../README.md) / CREATE\_ERROR\_MOCKS + +# Variable: CREATE\_ERROR\_MOCKS + +> `const` **CREATE\_ERROR\_MOCKS**: (\{ `error`: `undefined`; `request`: \{ `query`: `DocumentNode`; `variables`: \{ `data`: `undefined`; `first`: `null`; `location_contains`: `string`; `organization_id`: `string`; `skip`: `null`; `title_contains`: `string`; `upcomingOnly`: `boolean`; \}; \}; `result`: \{ `data`: \{ `eventsByOrganizationConnection`: `object`[]; \}; \}; \} \| \{ `error`: `Error`; `request`: \{ `query`: `DocumentNode`; `variables`: \{ `data`: \{ `event`: `string`; `group`: `null`; `status`: `string`; `userId`: `string`; \}; `first`: `undefined`; `location_contains`: `undefined`; `organization_id`: `undefined`; `skip`: `undefined`; `title_contains`: `undefined`; `upcomingOnly`: `undefined`; \}; \}; `result`: `undefined`; \})[] + +Defined in: [src/screens/UserPortal/Volunteer/UpcomingEvents/UpcomingEvents.mocks.ts:248](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/UserPortal/Volunteer/UpcomingEvents/UpcomingEvents.mocks.ts#L248) diff --git a/docs/docs/auto-docs/screens/UserPortal/Volunteer/UpcomingEvents/UpcomingEvents.mocks/variables/EMPTY_MOCKS.md b/docs/docs/auto-docs/screens/UserPortal/Volunteer/UpcomingEvents/UpcomingEvents.mocks/variables/EMPTY_MOCKS.md new file mode 100644 index 0000000000..2c1a46dffb --- /dev/null +++ b/docs/docs/auto-docs/screens/UserPortal/Volunteer/UpcomingEvents/UpcomingEvents.mocks/variables/EMPTY_MOCKS.md @@ -0,0 +1,61 @@ +[**talawa-admin**](../../../../../../README.md) + +*** + +[talawa-admin](../../../../../../modules.md) / [screens/UserPortal/Volunteer/UpcomingEvents/UpcomingEvents.mocks](../README.md) / EMPTY\_MOCKS + +# Variable: EMPTY\_MOCKS + +> `const` **EMPTY\_MOCKS**: `object`[] + +Defined in: [src/screens/UserPortal/Volunteer/UpcomingEvents/UpcomingEvents.mocks.ts:210](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/UserPortal/Volunteer/UpcomingEvents/UpcomingEvents.mocks.ts#L210) + +## Type declaration + +### request + +> **request**: `object` + +#### request.query + +> **query**: `DocumentNode` = `USER_EVENTS_VOLUNTEER` + +#### request.variables + +> **variables**: `object` + +#### request.variables.first + +> **first**: `null` = `null` + +#### request.variables.location\_contains + +> **location\_contains**: `string` = `''` + +#### request.variables.organization\_id + +> **organization\_id**: `string` = `'orgId'` + +#### request.variables.skip + +> **skip**: `null` = `null` + +#### request.variables.title\_contains + +> **title\_contains**: `string` = `''` + +#### request.variables.upcomingOnly + +> **upcomingOnly**: `boolean` = `true` + +### result + +> **result**: `object` + +#### result.data + +> **data**: `object` + +#### result.data.eventsByOrganizationConnection + +> **eventsByOrganizationConnection**: `never`[] = `[]` diff --git a/docs/docs/auto-docs/screens/UserPortal/Volunteer/UpcomingEvents/UpcomingEvents.mocks/variables/ERROR_MOCKS.md b/docs/docs/auto-docs/screens/UserPortal/Volunteer/UpcomingEvents/UpcomingEvents.mocks/variables/ERROR_MOCKS.md new file mode 100644 index 0000000000..351e4b519c --- /dev/null +++ b/docs/docs/auto-docs/screens/UserPortal/Volunteer/UpcomingEvents/UpcomingEvents.mocks/variables/ERROR_MOCKS.md @@ -0,0 +1,53 @@ +[**talawa-admin**](../../../../../../README.md) + +*** + +[talawa-admin](../../../../../../modules.md) / [screens/UserPortal/Volunteer/UpcomingEvents/UpcomingEvents.mocks](../README.md) / ERROR\_MOCKS + +# Variable: ERROR\_MOCKS + +> `const` **ERROR\_MOCKS**: `object`[] + +Defined in: [src/screens/UserPortal/Volunteer/UpcomingEvents/UpcomingEvents.mocks.ts:231](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/UserPortal/Volunteer/UpcomingEvents/UpcomingEvents.mocks.ts#L231) + +## Type declaration + +### error + +> **error**: `Error` + +### request + +> **request**: `object` + +#### request.query + +> **query**: `DocumentNode` = `USER_EVENTS_VOLUNTEER` + +#### request.variables + +> **variables**: `object` + +#### request.variables.first + +> **first**: `null` = `null` + +#### request.variables.location\_contains + +> **location\_contains**: `string` = `''` + +#### request.variables.organization\_id + +> **organization\_id**: `string` = `'orgId'` + +#### request.variables.skip + +> **skip**: `null` = `null` + +#### request.variables.title\_contains + +> **title\_contains**: `string` = `''` + +#### request.variables.upcomingOnly + +> **upcomingOnly**: `boolean` = `true` diff --git a/docs/docs/auto-docs/screens/UserPortal/Volunteer/UpcomingEvents/UpcomingEvents.mocks/variables/MOCKS.md b/docs/docs/auto-docs/screens/UserPortal/Volunteer/UpcomingEvents/UpcomingEvents.mocks/variables/MOCKS.md new file mode 100644 index 0000000000..cf4d8b39f0 --- /dev/null +++ b/docs/docs/auto-docs/screens/UserPortal/Volunteer/UpcomingEvents/UpcomingEvents.mocks/variables/MOCKS.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../../../../README.md) + +*** + +[talawa-admin](../../../../../../modules.md) / [screens/UserPortal/Volunteer/UpcomingEvents/UpcomingEvents.mocks](../README.md) / MOCKS + +# Variable: MOCKS + +> `const` **MOCKS**: (\{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `data`: `undefined`; `first`: `null`; `location_contains`: `string`; `organization_id`: `string`; `skip`: `null`; `title_contains`: `string`; `upcomingOnly`: `boolean`; \}; \}; `result`: \{ `data`: \{ `createVolunteerMembership`: `undefined`; `eventsByOrganizationConnection`: `object`[]; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `data`: \{ `event`: `string`; `group`: `null`; `status`: `string`; `userId`: `string`; \}; `first`: `undefined`; `location_contains`: `undefined`; `organization_id`: `undefined`; `skip`: `undefined`; `title_contains`: `undefined`; `upcomingOnly`: `undefined`; \}; \}; `result`: \{ `data`: \{ `createVolunteerMembership`: \{ `_id`: `string`; \}; `eventsByOrganizationConnection`: `undefined`; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `data`: \{ `event`: `string`; `group`: `string`; `status`: `string`; `userId`: `string`; \}; `first`: `undefined`; `location_contains`: `undefined`; `organization_id`: `undefined`; `skip`: `undefined`; `title_contains`: `undefined`; `upcomingOnly`: `undefined`; \}; \}; `result`: \{ `data`: \{ `createVolunteerMembership`: \{ `_id`: `string`; \}; `eventsByOrganizationConnection`: `undefined`; \}; \}; \})[] + +Defined in: [src/screens/UserPortal/Volunteer/UpcomingEvents/UpcomingEvents.mocks.ts:113](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/UserPortal/Volunteer/UpcomingEvents/UpcomingEvents.mocks.ts#L113) diff --git a/docs/docs/auto-docs/screens/UserPortal/Volunteer/UpcomingEvents/UpcomingEvents/README.md b/docs/docs/auto-docs/screens/UserPortal/Volunteer/UpcomingEvents/UpcomingEvents/README.md new file mode 100644 index 0000000000..b1e26a9030 --- /dev/null +++ b/docs/docs/auto-docs/screens/UserPortal/Volunteer/UpcomingEvents/UpcomingEvents/README.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../../../README.md) + +*** + +[talawa-admin](../../../../../modules.md) / screens/UserPortal/Volunteer/UpcomingEvents/UpcomingEvents + +# screens/UserPortal/Volunteer/UpcomingEvents/UpcomingEvents + +## Functions + +- [default](functions/default.md) diff --git a/docs/docs/auto-docs/screens/UserPortal/Volunteer/UpcomingEvents/UpcomingEvents/functions/default.md b/docs/docs/auto-docs/screens/UserPortal/Volunteer/UpcomingEvents/UpcomingEvents/functions/default.md new file mode 100644 index 0000000000..d96184bdbe --- /dev/null +++ b/docs/docs/auto-docs/screens/UserPortal/Volunteer/UpcomingEvents/UpcomingEvents/functions/default.md @@ -0,0 +1,20 @@ +[**talawa-admin**](../../../../../../README.md) + +*** + +[talawa-admin](../../../../../../modules.md) / [screens/UserPortal/Volunteer/UpcomingEvents/UpcomingEvents](../README.md) / default + +# Function: default() + +> **default**(): `Element` + +Defined in: [src/screens/UserPortal/Volunteer/UpcomingEvents/UpcomingEvents.tsx:42](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/UserPortal/Volunteer/UpcomingEvents/UpcomingEvents.tsx#L42) + +The `UpcomingEvents` component displays list of upcoming events for the user to volunteer. +It allows the user to search, sort, and volunteer for events/volunteer groups. + +## Returns + +`Element` + +The rendered component displaying the upcoming events. diff --git a/docs/docs/auto-docs/screens/UserPortal/Volunteer/VolunteerManagement/README.md b/docs/docs/auto-docs/screens/UserPortal/Volunteer/VolunteerManagement/README.md new file mode 100644 index 0000000000..0953d11021 --- /dev/null +++ b/docs/docs/auto-docs/screens/UserPortal/Volunteer/VolunteerManagement/README.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / screens/UserPortal/Volunteer/VolunteerManagement + +# screens/UserPortal/Volunteer/VolunteerManagement + +## Functions + +- [default](functions/default.md) diff --git a/docs/docs/auto-docs/screens/UserPortal/Volunteer/VolunteerManagement/functions/default.md b/docs/docs/auto-docs/screens/UserPortal/Volunteer/VolunteerManagement/functions/default.md new file mode 100644 index 0000000000..02894531ea --- /dev/null +++ b/docs/docs/auto-docs/screens/UserPortal/Volunteer/VolunteerManagement/functions/default.md @@ -0,0 +1,25 @@ +[**talawa-admin**](../../../../../README.md) + +*** + +[talawa-admin](../../../../../modules.md) / [screens/UserPortal/Volunteer/VolunteerManagement](../README.md) / default + +# Function: default() + +> **default**(): `Element` + +Defined in: [src/screens/UserPortal/Volunteer/VolunteerManagement.tsx:58](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/UserPortal/Volunteer/VolunteerManagement.tsx#L58) + +`VolunteerManagement` component handles the display and navigation of different event management sections. + +It provides a tabbed interface for: +- Viewing upcoming events to volunteer +- Managing volunteer requests +- Managing volunteer invitations +- Managing volunteer groups + +## Returns + +`Element` + +JSX.Element - The `VolunteerManagement` component. diff --git a/docs/docs/auto-docs/screens/Users/Users/README.md b/docs/docs/auto-docs/screens/Users/Users/README.md new file mode 100644 index 0000000000..c5507d7ad8 --- /dev/null +++ b/docs/docs/auto-docs/screens/Users/Users/README.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / screens/Users/Users + +# screens/Users/Users + +## Functions + +- [default](functions/default.md) diff --git a/docs/docs/auto-docs/screens/Users/Users/functions/default.md b/docs/docs/auto-docs/screens/Users/Users/functions/default.md new file mode 100644 index 0000000000..bf66bead1f --- /dev/null +++ b/docs/docs/auto-docs/screens/Users/Users/functions/default.md @@ -0,0 +1,55 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [screens/Users/Users](../README.md) / default + +# Function: default() + +> **default**(): `Element` + +Defined in: [src/screens/Users/Users.tsx:64](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/Users/Users.tsx#L64) + +The `Users` component is responsible for displaying a list of users in a paginated and sortable format. +It supports search functionality, filtering, and sorting of users. The component integrates with GraphQL +for fetching and managing user data and displays results with infinite scrolling. + +## Features: +- **Search:** Allows users to search for users by their first name. +- **Sorting:** Provides options to sort users by creation date (newest or oldest). +- **Filtering:** Enables filtering users based on their roles (admin, superadmin, user, etc.). +- **Pagination:** Utilizes infinite scrolling to load more users as the user scrolls down. + +## GraphQL Queries: +- `USER_LIST`: Fetches a list of users with specified search, sorting, and pagination parameters. +- `ORGANIZATION_CONNECTION_LIST`: Fetches a list of organizations to verify organization existence. + +## Component State: +- `isLoading`: Indicates whether the component is currently loading data. +- `hasMore`: Indicates if there are more users to load. +- `isLoadingMore`: Indicates if more users are currently being loaded. +- `searchByName`: The current search query for user names. +- `sortingOption`: The current sorting option (newest or oldest). +- `filteringOption`: The current filtering option (admin, superadmin, user, cancel). +- `displayedUsers`: The list of users currently displayed, filtered and sorted. + +## Event Handlers: +- `handleSearch`: Handles searching users by name and refetches the user list. +- `handleSearchByEnter`: Handles search input when the Enter key is pressed. +- `handleSearchByBtnClick`: Handles search input when the search button is clicked. +- `resetAndRefetch`: Resets search and refetches the user list with default parameters. +- `loadMoreUsers`: Loads more users when scrolling reaches the end of the list. +- `handleSorting`: Updates sorting option and refetches the user list. +- `handleFiltering`: Updates filtering option and refetches the user list. + +## Rendering: +- Displays a search input and button for searching users. +- Provides dropdowns for sorting and filtering users. +- Renders a table of users with infinite scrolling support. +- Shows appropriate messages when no users are found or when search yields no results. + +## Returns + +`Element` + +The rendered `Users` component. diff --git a/docs/docs/auto-docs/screens/Users/UsersMocks/README.md b/docs/docs/auto-docs/screens/Users/UsersMocks/README.md new file mode 100644 index 0000000000..b81d997236 --- /dev/null +++ b/docs/docs/auto-docs/screens/Users/UsersMocks/README.md @@ -0,0 +1,13 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / screens/Users/UsersMocks + +# screens/Users/UsersMocks + +## Variables + +- [EMPTY\_MOCKS](variables/EMPTY_MOCKS.md) +- [MOCKS](variables/MOCKS.md) +- [MOCKS2](variables/MOCKS2.md) diff --git a/docs/docs/auto-docs/screens/Users/UsersMocks/variables/EMPTY_MOCKS.md b/docs/docs/auto-docs/screens/Users/UsersMocks/variables/EMPTY_MOCKS.md new file mode 100644 index 0000000000..d0e9371f44 --- /dev/null +++ b/docs/docs/auto-docs/screens/Users/UsersMocks/variables/EMPTY_MOCKS.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [screens/Users/UsersMocks](../README.md) / EMPTY\_MOCKS + +# Variable: EMPTY\_MOCKS + +> `const` **EMPTY\_MOCKS**: (\{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `first`: `number`; `firstName_contains`: `string`; `lastName_contains`: `string`; `skip`: `number`; \}; \}; `result`: \{ `data`: \{ `organizationsConnection`: `undefined`; `users`: `never`[]; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: `undefined`; \}; `result`: \{ `data`: \{ `organizationsConnection`: `never`[]; `users`: `undefined`; \}; \}; \})[] + +Defined in: [src/screens/Users/UsersMocks.ts:477](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/Users/UsersMocks.ts#L477) diff --git a/docs/docs/auto-docs/screens/Users/UsersMocks/variables/MOCKS.md b/docs/docs/auto-docs/screens/Users/UsersMocks/variables/MOCKS.md new file mode 100644 index 0000000000..749f540de9 --- /dev/null +++ b/docs/docs/auto-docs/screens/Users/UsersMocks/variables/MOCKS.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [screens/Users/UsersMocks](../README.md) / MOCKS + +# Variable: MOCKS + +> `const` **MOCKS**: (\{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `first`: `undefined`; `firstName_contains`: `undefined`; `id`: `string`; `lastName_contains`: `undefined`; `skip`: `undefined`; \}; \}; `result`: \{ `data`: \{ `organizationsConnection`: `undefined`; `user`: \{ `email`: `string`; `firstName`: `string`; `image`: `string`; `lastName`: `string`; \}; `users`: `undefined`; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `first`: `number`; `firstName_contains`: `string`; `id`: `undefined`; `lastName_contains`: `string`; `skip`: `number`; \}; \}; `result`: \{ `data`: \{ `organizationsConnection`: `undefined`; `user`: `undefined`; `users`: `object`[]; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: `undefined`; \}; `result`: \{ `data`: \{ `organizationsConnection`: `object`[]; `user`: `undefined`; `users`: `undefined`; \}; \}; \})[] + +Defined in: [src/screens/Users/UsersMocks.ts:7](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/Users/UsersMocks.ts#L7) diff --git a/docs/docs/auto-docs/screens/Users/UsersMocks/variables/MOCKS2.md b/docs/docs/auto-docs/screens/Users/UsersMocks/variables/MOCKS2.md new file mode 100644 index 0000000000..b3381bf25f --- /dev/null +++ b/docs/docs/auto-docs/screens/Users/UsersMocks/variables/MOCKS2.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [screens/Users/UsersMocks](../README.md) / MOCKS2 + +# Variable: MOCKS2 + +> `const` **MOCKS2**: (\{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `first`: `undefined`; `firstName_contains`: `undefined`; `id`: `string`; `lastName_contains`: `undefined`; `skip`: `undefined`; \}; \}; `result`: \{ `data`: \{ `organizationsConnection`: `undefined`; `user`: \{ `email`: `string`; `firstName`: `string`; `image`: `string`; `lastName`: `string`; \}; `users`: `undefined`; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `first`: `number`; `firstName_contains`: `string`; `id`: `undefined`; `lastName_contains`: `string`; `skip`: `number`; \}; \}; `result`: \{ `data`: \{ `organizationsConnection`: `undefined`; `user`: `undefined`; `users`: `object`[]; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: `undefined`; \}; `result`: \{ `data`: \{ `organizationsConnection`: `object`[]; `user`: `undefined`; `users`: `undefined`; \}; \}; \})[] + +Defined in: [src/screens/Users/UsersMocks.ts:242](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/Users/UsersMocks.ts#L242) diff --git a/docs/docs/auto-docs/setup/askAndSetDockerOption/askAndSetDockerOption/README.md b/docs/docs/auto-docs/setup/askAndSetDockerOption/askAndSetDockerOption/README.md new file mode 100644 index 0000000000..5bc0942e50 --- /dev/null +++ b/docs/docs/auto-docs/setup/askAndSetDockerOption/askAndSetDockerOption/README.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / setup/askAndSetDockerOption/askAndSetDockerOption + +# setup/askAndSetDockerOption/askAndSetDockerOption + +## Functions + +- [default](functions/default.md) diff --git a/docs/docs/auto-docs/setup/askAndSetDockerOption/askAndSetDockerOption/functions/default.md b/docs/docs/auto-docs/setup/askAndSetDockerOption/askAndSetDockerOption/functions/default.md new file mode 100644 index 0000000000..a7dfaf5c3d --- /dev/null +++ b/docs/docs/auto-docs/setup/askAndSetDockerOption/askAndSetDockerOption/functions/default.md @@ -0,0 +1,15 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [setup/askAndSetDockerOption/askAndSetDockerOption](../README.md) / default + +# Function: default() + +> **default**(): `Promise`\<`void`\> + +Defined in: [src/setup/askAndSetDockerOption/askAndSetDockerOption.ts:6](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/setup/askAndSetDockerOption/askAndSetDockerOption.ts#L6) + +## Returns + +`Promise`\<`void`\> diff --git a/docs/docs/auto-docs/setup/askAndUpdatePort/askAndUpdatePort/README.md b/docs/docs/auto-docs/setup/askAndUpdatePort/askAndUpdatePort/README.md new file mode 100644 index 0000000000..4e2b85a2e9 --- /dev/null +++ b/docs/docs/auto-docs/setup/askAndUpdatePort/askAndUpdatePort/README.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / setup/askAndUpdatePort/askAndUpdatePort + +# setup/askAndUpdatePort/askAndUpdatePort + +## Functions + +- [default](functions/default.md) diff --git a/docs/docs/auto-docs/setup/askAndUpdatePort/askAndUpdatePort/functions/default.md b/docs/docs/auto-docs/setup/askAndUpdatePort/askAndUpdatePort/functions/default.md new file mode 100644 index 0000000000..cdd8c3a864 --- /dev/null +++ b/docs/docs/auto-docs/setup/askAndUpdatePort/askAndUpdatePort/functions/default.md @@ -0,0 +1,15 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [setup/askAndUpdatePort/askAndUpdatePort](../README.md) / default + +# Function: default() + +> **default**(): `Promise`\<`void`\> + +Defined in: [src/setup/askAndUpdatePort/askAndUpdatePort.ts:6](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/setup/askAndUpdatePort/askAndUpdatePort.ts#L6) + +## Returns + +`Promise`\<`void`\> diff --git a/docs/docs/auto-docs/setup/askForCustomPort/askForCustomPort/README.md b/docs/docs/auto-docs/setup/askForCustomPort/askForCustomPort/README.md new file mode 100644 index 0000000000..c8b95ca472 --- /dev/null +++ b/docs/docs/auto-docs/setup/askForCustomPort/askForCustomPort/README.md @@ -0,0 +1,13 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / setup/askForCustomPort/askForCustomPort + +# setup/askForCustomPort/askForCustomPort + +## Functions + +- [askForCustomPort](functions/askForCustomPort.md) +- [reservedPortWarning](functions/reservedPortWarning.md) +- [validatePort](functions/validatePort.md) diff --git a/docs/docs/auto-docs/setup/askForCustomPort/askForCustomPort/functions/askForCustomPort.md b/docs/docs/auto-docs/setup/askForCustomPort/askForCustomPort/functions/askForCustomPort.md new file mode 100644 index 0000000000..6312fdba2e --- /dev/null +++ b/docs/docs/auto-docs/setup/askForCustomPort/askForCustomPort/functions/askForCustomPort.md @@ -0,0 +1,15 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [setup/askForCustomPort/askForCustomPort](../README.md) / askForCustomPort + +# Function: askForCustomPort() + +> **askForCustomPort**(): `Promise`\<`number`\> + +Defined in: [src/setup/askForCustomPort/askForCustomPort.ts:32](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/setup/askForCustomPort/askForCustomPort.ts#L32) + +## Returns + +`Promise`\<`number`\> diff --git a/docs/docs/auto-docs/setup/askForCustomPort/askForCustomPort/functions/reservedPortWarning.md b/docs/docs/auto-docs/setup/askForCustomPort/askForCustomPort/functions/reservedPortWarning.md new file mode 100644 index 0000000000..f74879de2c --- /dev/null +++ b/docs/docs/auto-docs/setup/askForCustomPort/askForCustomPort/functions/reservedPortWarning.md @@ -0,0 +1,21 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [setup/askForCustomPort/askForCustomPort](../README.md) / reservedPortWarning + +# Function: reservedPortWarning() + +> **reservedPortWarning**(`port`): `Promise`\<`boolean`\> + +Defined in: [src/setup/askForCustomPort/askForCustomPort.ts:19](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/setup/askForCustomPort/askForCustomPort.ts#L19) + +## Parameters + +### port + +`number` + +## Returns + +`Promise`\<`boolean`\> diff --git a/docs/docs/auto-docs/setup/askForCustomPort/askForCustomPort/functions/validatePort.md b/docs/docs/auto-docs/setup/askForCustomPort/askForCustomPort/functions/validatePort.md new file mode 100644 index 0000000000..fd68c7b962 --- /dev/null +++ b/docs/docs/auto-docs/setup/askForCustomPort/askForCustomPort/functions/validatePort.md @@ -0,0 +1,21 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [setup/askForCustomPort/askForCustomPort](../README.md) / validatePort + +# Function: validatePort() + +> **validatePort**(`input`): `string` \| `boolean` + +Defined in: [src/setup/askForCustomPort/askForCustomPort.ts:6](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/setup/askForCustomPort/askForCustomPort.ts#L6) + +## Parameters + +### input + +`string` + +## Returns + +`string` \| `boolean` diff --git a/docs/docs/auto-docs/setup/askForDocker/askForDocker/README.md b/docs/docs/auto-docs/setup/askForDocker/askForDocker/README.md new file mode 100644 index 0000000000..b583b3e007 --- /dev/null +++ b/docs/docs/auto-docs/setup/askForDocker/askForDocker/README.md @@ -0,0 +1,12 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / setup/askForDocker/askForDocker + +# setup/askForDocker/askForDocker + +## Functions + +- [askAndUpdateTalawaApiUrl](functions/askAndUpdateTalawaApiUrl.md) +- [askForDocker](functions/askForDocker.md) diff --git a/docs/docs/auto-docs/setup/askForDocker/askForDocker/functions/askAndUpdateTalawaApiUrl.md b/docs/docs/auto-docs/setup/askForDocker/askForDocker/functions/askAndUpdateTalawaApiUrl.md new file mode 100644 index 0000000000..d28d2e7bf0 --- /dev/null +++ b/docs/docs/auto-docs/setup/askForDocker/askForDocker/functions/askAndUpdateTalawaApiUrl.md @@ -0,0 +1,15 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [setup/askForDocker/askForDocker](../README.md) / askAndUpdateTalawaApiUrl + +# Function: askAndUpdateTalawaApiUrl() + +> **askAndUpdateTalawaApiUrl**(): `Promise`\<`void`\> + +Defined in: [src/setup/askForDocker/askForDocker.ts:33](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/setup/askForDocker/askForDocker.ts#L33) + +## Returns + +`Promise`\<`void`\> diff --git a/docs/docs/auto-docs/setup/askForDocker/askForDocker/functions/askForDocker.md b/docs/docs/auto-docs/setup/askForDocker/askForDocker/functions/askForDocker.md new file mode 100644 index 0000000000..beaa5d6339 --- /dev/null +++ b/docs/docs/auto-docs/setup/askForDocker/askForDocker/functions/askForDocker.md @@ -0,0 +1,15 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [setup/askForDocker/askForDocker](../README.md) / askForDocker + +# Function: askForDocker() + +> **askForDocker**(): `Promise`\<`string`\> + +Defined in: [src/setup/askForDocker/askForDocker.ts:12](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/setup/askForDocker/askForDocker.ts#L12) + +## Returns + +`Promise`\<`string`\> diff --git a/docs/docs/auto-docs/setup/askForTalawaApiUrl/askForTalawaApiUrl/README.md b/docs/docs/auto-docs/setup/askForTalawaApiUrl/askForTalawaApiUrl/README.md new file mode 100644 index 0000000000..6dc585fbca --- /dev/null +++ b/docs/docs/auto-docs/setup/askForTalawaApiUrl/askForTalawaApiUrl/README.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / setup/askForTalawaApiUrl/askForTalawaApiUrl + +# setup/askForTalawaApiUrl/askForTalawaApiUrl + +## Functions + +- [askForTalawaApiUrl](functions/askForTalawaApiUrl.md) diff --git a/docs/docs/auto-docs/setup/askForTalawaApiUrl/askForTalawaApiUrl/functions/askForTalawaApiUrl.md b/docs/docs/auto-docs/setup/askForTalawaApiUrl/askForTalawaApiUrl/functions/askForTalawaApiUrl.md new file mode 100644 index 0000000000..96ee82e90d --- /dev/null +++ b/docs/docs/auto-docs/setup/askForTalawaApiUrl/askForTalawaApiUrl/functions/askForTalawaApiUrl.md @@ -0,0 +1,15 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [setup/askForTalawaApiUrl/askForTalawaApiUrl](../README.md) / askForTalawaApiUrl + +# Function: askForTalawaApiUrl() + +> **askForTalawaApiUrl**(): `Promise`\<`string`\> + +Defined in: [src/setup/askForTalawaApiUrl/askForTalawaApiUrl.ts:3](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/setup/askForTalawaApiUrl/askForTalawaApiUrl.ts#L3) + +## Returns + +`Promise`\<`string`\> diff --git a/docs/docs/auto-docs/setup/checkConnection/checkConnection/README.md b/docs/docs/auto-docs/setup/checkConnection/checkConnection/README.md new file mode 100644 index 0000000000..fc95bee4c5 --- /dev/null +++ b/docs/docs/auto-docs/setup/checkConnection/checkConnection/README.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / setup/checkConnection/checkConnection + +# setup/checkConnection/checkConnection + +## Functions + +- [checkConnection](functions/checkConnection.md) diff --git a/docs/docs/auto-docs/setup/checkConnection/checkConnection/functions/checkConnection.md b/docs/docs/auto-docs/setup/checkConnection/checkConnection/functions/checkConnection.md new file mode 100644 index 0000000000..fb4325546d --- /dev/null +++ b/docs/docs/auto-docs/setup/checkConnection/checkConnection/functions/checkConnection.md @@ -0,0 +1,21 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [setup/checkConnection/checkConnection](../README.md) / checkConnection + +# Function: checkConnection() + +> **checkConnection**(`url`): `Promise`\<`any`\> + +Defined in: [src/setup/checkConnection/checkConnection.ts:1](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/setup/checkConnection/checkConnection.ts#L1) + +## Parameters + +### url + +`string` + +## Returns + +`Promise`\<`any`\> diff --git a/docs/docs/auto-docs/setup/checkEnvFile/checkEnvFile/README.md b/docs/docs/auto-docs/setup/checkEnvFile/checkEnvFile/README.md new file mode 100644 index 0000000000..d31ac84642 --- /dev/null +++ b/docs/docs/auto-docs/setup/checkEnvFile/checkEnvFile/README.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / setup/checkEnvFile/checkEnvFile + +# setup/checkEnvFile/checkEnvFile + +## Functions + +- [checkEnvFile](functions/checkEnvFile.md) diff --git a/docs/docs/auto-docs/setup/checkEnvFile/checkEnvFile/functions/checkEnvFile.md b/docs/docs/auto-docs/setup/checkEnvFile/checkEnvFile/functions/checkEnvFile.md new file mode 100644 index 0000000000..9215b53b2c --- /dev/null +++ b/docs/docs/auto-docs/setup/checkEnvFile/checkEnvFile/functions/checkEnvFile.md @@ -0,0 +1,15 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [setup/checkEnvFile/checkEnvFile](../README.md) / checkEnvFile + +# Function: checkEnvFile() + +> **checkEnvFile**(): `void` + +Defined in: [src/setup/checkEnvFile/checkEnvFile.ts:6](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/setup/checkEnvFile/checkEnvFile.ts#L6) + +## Returns + +`void` diff --git a/docs/docs/auto-docs/setup/updateEnvFile/updateEnvFile/README.md b/docs/docs/auto-docs/setup/updateEnvFile/updateEnvFile/README.md new file mode 100644 index 0000000000..2737884456 --- /dev/null +++ b/docs/docs/auto-docs/setup/updateEnvFile/updateEnvFile/README.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / setup/updateEnvFile/updateEnvFile + +# setup/updateEnvFile/updateEnvFile + +## Functions + +- [default](functions/default.md) diff --git a/docs/docs/auto-docs/setup/updateEnvFile/updateEnvFile/functions/default.md b/docs/docs/auto-docs/setup/updateEnvFile/updateEnvFile/functions/default.md new file mode 100644 index 0000000000..8e62abf2d6 --- /dev/null +++ b/docs/docs/auto-docs/setup/updateEnvFile/updateEnvFile/functions/default.md @@ -0,0 +1,25 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [setup/updateEnvFile/updateEnvFile](../README.md) / default + +# Function: default() + +> **default**(`key`, `value`): `void` + +Defined in: [src/setup/updateEnvFile/updateEnvFile.ts:3](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/setup/updateEnvFile/updateEnvFile.ts#L3) + +## Parameters + +### key + +`string` + +### value + +`string` + +## Returns + +`void` diff --git a/docs/docs/auto-docs/setup/validateRecaptcha/validateRecaptcha/README.md b/docs/docs/auto-docs/setup/validateRecaptcha/validateRecaptcha/README.md new file mode 100644 index 0000000000..0cd2f31bb8 --- /dev/null +++ b/docs/docs/auto-docs/setup/validateRecaptcha/validateRecaptcha/README.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / setup/validateRecaptcha/validateRecaptcha + +# setup/validateRecaptcha/validateRecaptcha + +## Functions + +- [validateRecaptcha](functions/validateRecaptcha.md) diff --git a/docs/docs/auto-docs/setup/validateRecaptcha/validateRecaptcha/functions/validateRecaptcha.md b/docs/docs/auto-docs/setup/validateRecaptcha/validateRecaptcha/functions/validateRecaptcha.md new file mode 100644 index 0000000000..f02de66640 --- /dev/null +++ b/docs/docs/auto-docs/setup/validateRecaptcha/validateRecaptcha/functions/validateRecaptcha.md @@ -0,0 +1,21 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [setup/validateRecaptcha/validateRecaptcha](../README.md) / validateRecaptcha + +# Function: validateRecaptcha() + +> **validateRecaptcha**(`string`): `boolean` + +Defined in: [src/setup/validateRecaptcha/validateRecaptcha.ts:1](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/setup/validateRecaptcha/validateRecaptcha.ts#L1) + +## Parameters + +### string + +`string` + +## Returns + +`boolean` diff --git a/docs/docs/auto-docs/setupTests/README.md b/docs/docs/auto-docs/setupTests/README.md new file mode 100644 index 0000000000..60ca3ade7d --- /dev/null +++ b/docs/docs/auto-docs/setupTests/README.md @@ -0,0 +1,7 @@ +[**talawa-admin**](../README.md) + +*** + +[talawa-admin](../modules.md) / setupTests + +# setupTests diff --git a/docs/docs/auto-docs/state/README.md b/docs/docs/auto-docs/state/README.md new file mode 100644 index 0000000000..cefc734da4 --- /dev/null +++ b/docs/docs/auto-docs/state/README.md @@ -0,0 +1,13 @@ +[**talawa-admin**](../README.md) + +*** + +[talawa-admin](../modules.md) / state + +# state + +## References + +### actionCreators + +Renames and re-exports [state/action-creators](action-creators/README.md) diff --git a/docs/docs/auto-docs/state/action-creators/README.md b/docs/docs/auto-docs/state/action-creators/README.md new file mode 100644 index 0000000000..f511ab1645 --- /dev/null +++ b/docs/docs/auto-docs/state/action-creators/README.md @@ -0,0 +1,15 @@ +[**talawa-admin**](../../README.md) + +*** + +[talawa-admin](../../modules.md) / state/action-creators + +# state/action-creators + +## Functions + +- [installPlugin](functions/installPlugin.md) +- [removePlugin](functions/removePlugin.md) +- [updateInstalled](functions/updateInstalled.md) +- [updatePluginLinks](functions/updatePluginLinks.md) +- [updateTargets](functions/updateTargets.md) diff --git a/docs/docs/auto-docs/state/action-creators/functions/installPlugin.md b/docs/docs/auto-docs/state/action-creators/functions/installPlugin.md new file mode 100644 index 0000000000..82cc74bf53 --- /dev/null +++ b/docs/docs/auto-docs/state/action-creators/functions/installPlugin.md @@ -0,0 +1,31 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / [state/action-creators](../README.md) / installPlugin + +# Function: installPlugin() + +> **installPlugin**(`plugin`): (`dispatch`) => `void` + +Defined in: [src/state/action-creators/index.ts:10](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/state/action-creators/index.ts#L10) + +## Parameters + +### plugin + +`any` + +## Returns + +`Function` + +### Parameters + +#### dispatch + +`any` + +### Returns + +`void` diff --git a/docs/docs/auto-docs/state/action-creators/functions/removePlugin.md b/docs/docs/auto-docs/state/action-creators/functions/removePlugin.md new file mode 100644 index 0000000000..48a7669ba1 --- /dev/null +++ b/docs/docs/auto-docs/state/action-creators/functions/removePlugin.md @@ -0,0 +1,31 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / [state/action-creators](../README.md) / removePlugin + +# Function: removePlugin() + +> **removePlugin**(`plugin`): (`dispatch`) => `void` + +Defined in: [src/state/action-creators/index.ts:19](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/state/action-creators/index.ts#L19) + +## Parameters + +### plugin + +`any` + +## Returns + +`Function` + +### Parameters + +#### dispatch + +`any` + +### Returns + +`void` diff --git a/docs/docs/auto-docs/state/action-creators/functions/updateInstalled.md b/docs/docs/auto-docs/state/action-creators/functions/updateInstalled.md new file mode 100644 index 0000000000..be1ead2b1a --- /dev/null +++ b/docs/docs/auto-docs/state/action-creators/functions/updateInstalled.md @@ -0,0 +1,31 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / [state/action-creators](../README.md) / updateInstalled + +# Function: updateInstalled() + +> **updateInstalled**(`plugin`): (`dispatch`) => `void` + +Defined in: [src/state/action-creators/index.ts:1](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/state/action-creators/index.ts#L1) + +## Parameters + +### plugin + +`any` + +## Returns + +`Function` + +### Parameters + +#### dispatch + +`any` + +### Returns + +`void` diff --git a/docs/docs/auto-docs/state/action-creators/functions/updatePluginLinks.md b/docs/docs/auto-docs/state/action-creators/functions/updatePluginLinks.md new file mode 100644 index 0000000000..3bcd5e07b9 --- /dev/null +++ b/docs/docs/auto-docs/state/action-creators/functions/updatePluginLinks.md @@ -0,0 +1,31 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / [state/action-creators](../README.md) / updatePluginLinks + +# Function: updatePluginLinks() + +> **updatePluginLinks**(`plugins`): (`dispatch`) => `void` + +Defined in: [src/state/action-creators/index.ts:28](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/state/action-creators/index.ts#L28) + +## Parameters + +### plugins + +`any` + +## Returns + +`Function` + +### Parameters + +#### dispatch + +`any` + +### Returns + +`void` diff --git a/docs/docs/auto-docs/state/action-creators/functions/updateTargets.md b/docs/docs/auto-docs/state/action-creators/functions/updateTargets.md new file mode 100644 index 0000000000..e759762939 --- /dev/null +++ b/docs/docs/auto-docs/state/action-creators/functions/updateTargets.md @@ -0,0 +1,31 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / [state/action-creators](../README.md) / updateTargets + +# Function: updateTargets() + +> **updateTargets**(`orgId`): (`dispatch`) => `void` + +Defined in: [src/state/action-creators/index.ts:37](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/state/action-creators/index.ts#L37) + +## Parameters + +### orgId + +`undefined` | `string` + +## Returns + +`Function` + +### Parameters + +#### dispatch + +`any` + +### Returns + +`void` diff --git a/docs/docs/auto-docs/state/helpers/Action/README.md b/docs/docs/auto-docs/state/helpers/Action/README.md new file mode 100644 index 0000000000..6fa88902cb --- /dev/null +++ b/docs/docs/auto-docs/state/helpers/Action/README.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / state/helpers/Action + +# state/helpers/Action + +## Interfaces + +- [InterfaceAction](interfaces/InterfaceAction.md) diff --git a/docs/docs/auto-docs/state/helpers/Action/interfaces/InterfaceAction.md b/docs/docs/auto-docs/state/helpers/Action/interfaces/InterfaceAction.md new file mode 100644 index 0000000000..76196cb477 --- /dev/null +++ b/docs/docs/auto-docs/state/helpers/Action/interfaces/InterfaceAction.md @@ -0,0 +1,25 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [state/helpers/Action](../README.md) / InterfaceAction + +# Interface: InterfaceAction + +Defined in: [src/state/helpers/Action.ts:1](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/state/helpers/Action.ts#L1) + +## Properties + +### payload + +> **payload**: `any` + +Defined in: [src/state/helpers/Action.ts:3](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/state/helpers/Action.ts#L3) + +*** + +### type + +> **type**: `string` + +Defined in: [src/state/helpers/Action.ts:2](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/state/helpers/Action.ts#L2) diff --git a/docs/docs/auto-docs/state/hooks/README.md b/docs/docs/auto-docs/state/hooks/README.md new file mode 100644 index 0000000000..2f225831f2 --- /dev/null +++ b/docs/docs/auto-docs/state/hooks/README.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../README.md) + +*** + +[talawa-admin](../../modules.md) / state/hooks + +# state/hooks + +## Functions + +- [useAppDispatch](functions/useAppDispatch.md) diff --git a/docs/docs/auto-docs/state/hooks/functions/useAppDispatch.md b/docs/docs/auto-docs/state/hooks/functions/useAppDispatch.md new file mode 100644 index 0000000000..a7455d1066 --- /dev/null +++ b/docs/docs/auto-docs/state/hooks/functions/useAppDispatch.md @@ -0,0 +1,25 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / [state/hooks](../README.md) / useAppDispatch + +# Function: useAppDispatch() + +> **useAppDispatch**\<`AppDispatch`\>(): `AppDispatch` + +Defined in: [src/state/hooks.ts:5](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/state/hooks.ts#L5) + +Returns the dispatch function from the Redux store. + +## Type Parameters + +• **AppDispatch** *extends* `ThunkDispatch`\<\{ `appRoutes`: \{ `components`: [`ComponentType`](../../reducers/routesReducer/type-aliases/ComponentType.md)[]; `targets`: [`TargetsType`](../../reducers/routesReducer/type-aliases/TargetsType.md)[]; \}; `plugins`: `any`; `userRoutes`: \{ `components`: [`ComponentType`](../../reducers/userRoutesReducer/type-aliases/ComponentType.md)[]; `targets`: [`TargetsType`](../../reducers/userRoutesReducer/type-aliases/TargetsType.md)[]; \}; \}, `undefined`, `UnknownAction`\> & `Dispatch`\<[`InterfaceAction`](../../helpers/Action/interfaces/InterfaceAction.md)\> = `ThunkDispatch`\<\{ `appRoutes`: \{ `components`: [`ComponentType`](../../reducers/routesReducer/type-aliases/ComponentType.md)[]; `targets`: [`TargetsType`](../../reducers/routesReducer/type-aliases/TargetsType.md)[]; \}; `plugins`: `any`; `userRoutes`: \{ `components`: [`ComponentType`](../../reducers/userRoutesReducer/type-aliases/ComponentType.md)[]; `targets`: [`TargetsType`](../../reducers/userRoutesReducer/type-aliases/TargetsType.md)[]; \}; \}, `undefined`, `UnknownAction`\> & `Dispatch`\<[`InterfaceAction`](../../helpers/Action/interfaces/InterfaceAction.md)\> + +The specific type of the dispatch function. + +## Returns + +`AppDispatch` + +The dispatch function from the Redux store. diff --git a/docs/docs/auto-docs/state/reducers/README.md b/docs/docs/auto-docs/state/reducers/README.md new file mode 100644 index 0000000000..72d86d2b9d --- /dev/null +++ b/docs/docs/auto-docs/state/reducers/README.md @@ -0,0 +1,15 @@ +[**talawa-admin**](../../README.md) + +*** + +[talawa-admin](../../modules.md) / state/reducers + +# state/reducers + +## Type Aliases + +- [RootState](type-aliases/RootState.md) + +## Functions + +- [reducers](functions/reducers.md) diff --git a/docs/docs/auto-docs/state/reducers/functions/reducers.md b/docs/docs/auto-docs/state/reducers/functions/reducers.md new file mode 100644 index 0000000000..00c015ce02 --- /dev/null +++ b/docs/docs/auto-docs/state/reducers/functions/reducers.md @@ -0,0 +1,53 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / [state/reducers](../README.md) / reducers + +# Function: reducers() + +> **reducers**(`state`, `action`): `object` + +Defined in: [src/state/reducers/index.ts:6](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/state/reducers/index.ts#L6) + +## Parameters + +### state + +`undefined` | \{ `appRoutes`: \{ `components`: [`ComponentType`](../routesReducer/type-aliases/ComponentType.md)[]; `targets`: [`TargetsType`](../routesReducer/type-aliases/TargetsType.md)[]; \}; `plugins`: `any`; `userRoutes`: \{ `components`: [`ComponentType`](../userRoutesReducer/type-aliases/ComponentType.md)[]; `targets`: [`TargetsType`](../userRoutesReducer/type-aliases/TargetsType.md)[]; \}; \} | `Partial`\<\{ `appRoutes`: `never`; `plugins`: `never`; `userRoutes`: `never`; \}\> + +### action + +[`InterfaceAction`](../../helpers/Action/interfaces/InterfaceAction.md) + +## Returns + +`object` + +### appRoutes + +> **appRoutes**: `object` = `routesReducer` + +#### appRoutes.components + +> **components**: [`ComponentType`](../routesReducer/type-aliases/ComponentType.md)[] + +#### appRoutes.targets + +> **targets**: [`TargetsType`](../routesReducer/type-aliases/TargetsType.md)[] + +### plugins + +> **plugins**: `any` = `pluginReducer` + +### userRoutes + +> **userRoutes**: `object` = `userRoutesReducer` + +#### userRoutes.components + +> **components**: [`ComponentType`](../userRoutesReducer/type-aliases/ComponentType.md)[] + +#### userRoutes.targets + +> **targets**: [`TargetsType`](../userRoutesReducer/type-aliases/TargetsType.md)[] diff --git a/docs/docs/auto-docs/state/reducers/pluginReducer/README.md b/docs/docs/auto-docs/state/reducers/pluginReducer/README.md new file mode 100644 index 0000000000..34b5b9734c --- /dev/null +++ b/docs/docs/auto-docs/state/reducers/pluginReducer/README.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / state/reducers/pluginReducer + +# state/reducers/pluginReducer + +## Functions + +- [default](functions/default.md) diff --git a/docs/docs/auto-docs/state/reducers/pluginReducer/functions/default.md b/docs/docs/auto-docs/state/reducers/pluginReducer/functions/default.md new file mode 100644 index 0000000000..b870cb590a --- /dev/null +++ b/docs/docs/auto-docs/state/reducers/pluginReducer/functions/default.md @@ -0,0 +1,25 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [state/reducers/pluginReducer](../README.md) / default + +# Function: default() + +> **default**(`state`, `action`): `any` + +Defined in: [src/state/reducers/pluginReducer.ts:3](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/state/reducers/pluginReducer.ts#L3) + +## Parameters + +### state + +`any` = `INITIAL_STATE` + +### action + +[`InterfaceAction`](../../../helpers/Action/interfaces/InterfaceAction.md) + +## Returns + +`any` diff --git a/docs/docs/auto-docs/state/reducers/routesReducer/README.md b/docs/docs/auto-docs/state/reducers/routesReducer/README.md new file mode 100644 index 0000000000..2448c6d427 --- /dev/null +++ b/docs/docs/auto-docs/state/reducers/routesReducer/README.md @@ -0,0 +1,17 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / state/reducers/routesReducer + +# state/reducers/routesReducer + +## Type Aliases + +- [ComponentType](type-aliases/ComponentType.md) +- [SubTargetType](type-aliases/SubTargetType.md) +- [TargetsType](type-aliases/TargetsType.md) + +## Functions + +- [default](functions/default.md) diff --git a/docs/docs/auto-docs/state/reducers/routesReducer/functions/default.md b/docs/docs/auto-docs/state/reducers/routesReducer/functions/default.md new file mode 100644 index 0000000000..09c7acca89 --- /dev/null +++ b/docs/docs/auto-docs/state/reducers/routesReducer/functions/default.md @@ -0,0 +1,39 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [state/reducers/routesReducer](../README.md) / default + +# Function: default() + +> **default**(`state`, `action`): `object` + +Defined in: [src/state/reducers/routesReducer.ts:16](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/state/reducers/routesReducer.ts#L16) + +## Parameters + +### state + +#### components + +[`ComponentType`](../type-aliases/ComponentType.md)[] + +#### targets + +[`TargetsType`](../type-aliases/TargetsType.md)[] = `...` + +### action + +[`InterfaceAction`](../../../helpers/Action/interfaces/InterfaceAction.md) + +## Returns + +`object` + +### components + +> **components**: [`ComponentType`](../type-aliases/ComponentType.md)[] + +### targets + +> **targets**: [`TargetsType`](../type-aliases/TargetsType.md)[] diff --git a/docs/docs/auto-docs/state/reducers/routesReducer/type-aliases/ComponentType.md b/docs/docs/auto-docs/state/reducers/routesReducer/type-aliases/ComponentType.md new file mode 100644 index 0000000000..21c068ffd3 --- /dev/null +++ b/docs/docs/auto-docs/state/reducers/routesReducer/type-aliases/ComponentType.md @@ -0,0 +1,29 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [state/reducers/routesReducer](../README.md) / ComponentType + +# Type Alias: ComponentType + +> **ComponentType**: `object` + +Defined in: [src/state/reducers/routesReducer.ts:55](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/state/reducers/routesReducer.ts#L55) + +## Type declaration + +### comp\_id + +> **comp\_id**: `string` \| `null` + +### component + +> **component**: `string` \| `null` + +### name + +> **name**: `string` + +### subTargets? + +> `optional` **subTargets**: `object`[] diff --git a/docs/docs/auto-docs/state/reducers/routesReducer/type-aliases/SubTargetType.md b/docs/docs/auto-docs/state/reducers/routesReducer/type-aliases/SubTargetType.md new file mode 100644 index 0000000000..4271f22696 --- /dev/null +++ b/docs/docs/auto-docs/state/reducers/routesReducer/type-aliases/SubTargetType.md @@ -0,0 +1,29 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [state/reducers/routesReducer](../README.md) / SubTargetType + +# Type Alias: SubTargetType + +> **SubTargetType**: `object` + +Defined in: [src/state/reducers/routesReducer.ts:9](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/state/reducers/routesReducer.ts#L9) + +## Type declaration + +### comp\_id? + +> `optional` **comp\_id**: `string` + +### icon? + +> `optional` **icon**: `string` + +### name? + +> `optional` **name**: `string` + +### url + +> **url**: `string` diff --git a/docs/docs/auto-docs/state/reducers/routesReducer/type-aliases/TargetsType.md b/docs/docs/auto-docs/state/reducers/routesReducer/type-aliases/TargetsType.md new file mode 100644 index 0000000000..74e5ffb454 --- /dev/null +++ b/docs/docs/auto-docs/state/reducers/routesReducer/type-aliases/TargetsType.md @@ -0,0 +1,25 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [state/reducers/routesReducer](../README.md) / TargetsType + +# Type Alias: TargetsType + +> **TargetsType**: `object` + +Defined in: [src/state/reducers/routesReducer.ts:3](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/state/reducers/routesReducer.ts#L3) + +## Type declaration + +### name + +> **name**: `string` + +### subTargets? + +> `optional` **subTargets**: [`SubTargetType`](SubTargetType.md)[] + +### url? + +> `optional` **url**: `string` diff --git a/docs/docs/auto-docs/state/reducers/type-aliases/RootState.md b/docs/docs/auto-docs/state/reducers/type-aliases/RootState.md new file mode 100644 index 0000000000..a8b3ca1bb0 --- /dev/null +++ b/docs/docs/auto-docs/state/reducers/type-aliases/RootState.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / [state/reducers](../README.md) / RootState + +# Type Alias: RootState + +> **RootState**: `ReturnType`\<*typeof* [`reducers`](../functions/reducers.md)\> + +Defined in: [src/state/reducers/index.ts:12](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/state/reducers/index.ts#L12) diff --git a/docs/docs/auto-docs/state/reducers/userRoutesReducer/README.md b/docs/docs/auto-docs/state/reducers/userRoutesReducer/README.md new file mode 100644 index 0000000000..517d683035 --- /dev/null +++ b/docs/docs/auto-docs/state/reducers/userRoutesReducer/README.md @@ -0,0 +1,17 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / state/reducers/userRoutesReducer + +# state/reducers/userRoutesReducer + +## Type Aliases + +- [ComponentType](type-aliases/ComponentType.md) +- [SubTargetType](type-aliases/SubTargetType.md) +- [TargetsType](type-aliases/TargetsType.md) + +## Functions + +- [default](functions/default.md) diff --git a/docs/docs/auto-docs/state/reducers/userRoutesReducer/functions/default.md b/docs/docs/auto-docs/state/reducers/userRoutesReducer/functions/default.md new file mode 100644 index 0000000000..60ca039e8c --- /dev/null +++ b/docs/docs/auto-docs/state/reducers/userRoutesReducer/functions/default.md @@ -0,0 +1,39 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [state/reducers/userRoutesReducer](../README.md) / default + +# Function: default() + +> **default**(`state`, `action`): `object` + +Defined in: [src/state/reducers/userRoutesReducer.ts:16](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/state/reducers/userRoutesReducer.ts#L16) + +## Parameters + +### state + +#### components + +[`ComponentType`](../type-aliases/ComponentType.md)[] + +#### targets + +[`TargetsType`](../type-aliases/TargetsType.md)[] = `...` + +### action + +[`InterfaceAction`](../../../helpers/Action/interfaces/InterfaceAction.md) + +## Returns + +`object` + +### components + +> **components**: [`ComponentType`](../type-aliases/ComponentType.md)[] + +### targets + +> **targets**: [`TargetsType`](../type-aliases/TargetsType.md)[] diff --git a/docs/docs/auto-docs/state/reducers/userRoutesReducer/type-aliases/ComponentType.md b/docs/docs/auto-docs/state/reducers/userRoutesReducer/type-aliases/ComponentType.md new file mode 100644 index 0000000000..7634e91a61 --- /dev/null +++ b/docs/docs/auto-docs/state/reducers/userRoutesReducer/type-aliases/ComponentType.md @@ -0,0 +1,29 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [state/reducers/userRoutesReducer](../README.md) / ComponentType + +# Type Alias: ComponentType + +> **ComponentType**: `object` + +Defined in: [src/state/reducers/userRoutesReducer.ts:32](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/state/reducers/userRoutesReducer.ts#L32) + +## Type declaration + +### comp\_id + +> **comp\_id**: `string` \| `null` + +### component + +> **component**: `string` \| `null` + +### name + +> **name**: `string` + +### subTargets? + +> `optional` **subTargets**: `object`[] diff --git a/docs/docs/auto-docs/state/reducers/userRoutesReducer/type-aliases/SubTargetType.md b/docs/docs/auto-docs/state/reducers/userRoutesReducer/type-aliases/SubTargetType.md new file mode 100644 index 0000000000..45b4fd4114 --- /dev/null +++ b/docs/docs/auto-docs/state/reducers/userRoutesReducer/type-aliases/SubTargetType.md @@ -0,0 +1,29 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [state/reducers/userRoutesReducer](../README.md) / SubTargetType + +# Type Alias: SubTargetType + +> **SubTargetType**: `object` + +Defined in: [src/state/reducers/userRoutesReducer.ts:9](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/state/reducers/userRoutesReducer.ts#L9) + +## Type declaration + +### comp\_id? + +> `optional` **comp\_id**: `string` + +### icon? + +> `optional` **icon**: `string` + +### name? + +> `optional` **name**: `string` + +### url + +> **url**: `string` diff --git a/docs/docs/auto-docs/state/reducers/userRoutesReducer/type-aliases/TargetsType.md b/docs/docs/auto-docs/state/reducers/userRoutesReducer/type-aliases/TargetsType.md new file mode 100644 index 0000000000..973f21149d --- /dev/null +++ b/docs/docs/auto-docs/state/reducers/userRoutesReducer/type-aliases/TargetsType.md @@ -0,0 +1,25 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [state/reducers/userRoutesReducer](../README.md) / TargetsType + +# Type Alias: TargetsType + +> **TargetsType**: `object` + +Defined in: [src/state/reducers/userRoutesReducer.ts:3](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/state/reducers/userRoutesReducer.ts#L3) + +## Type declaration + +### name + +> **name**: `string` + +### subTargets? + +> `optional` **subTargets**: [`SubTargetType`](SubTargetType.md)[] + +### url? + +> `optional` **url**: `string` diff --git a/docs/docs/auto-docs/state/store/README.md b/docs/docs/auto-docs/state/store/README.md new file mode 100644 index 0000000000..ff82f6a3f1 --- /dev/null +++ b/docs/docs/auto-docs/state/store/README.md @@ -0,0 +1,15 @@ +[**talawa-admin**](../../README.md) + +*** + +[talawa-admin](../../modules.md) / state/store + +# state/store + +## Type Aliases + +- [AppDispatch](type-aliases/AppDispatch.md) + +## Variables + +- [store](variables/store.md) diff --git a/docs/docs/auto-docs/state/store/type-aliases/AppDispatch.md b/docs/docs/auto-docs/state/store/type-aliases/AppDispatch.md new file mode 100644 index 0000000000..4dd601af62 --- /dev/null +++ b/docs/docs/auto-docs/state/store/type-aliases/AppDispatch.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / [state/store](../README.md) / AppDispatch + +# Type Alias: AppDispatch + +> **AppDispatch**: *typeof* `store.dispatch` + +Defined in: [src/state/store.ts:8](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/state/store.ts#L8) diff --git a/docs/docs/auto-docs/state/store/variables/store.md b/docs/docs/auto-docs/state/store/variables/store.md new file mode 100644 index 0000000000..9f0dba0fa6 --- /dev/null +++ b/docs/docs/auto-docs/state/store/variables/store.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / [state/store](../README.md) / store + +# Variable: store + +> `const` **store**: `EnhancedStore`\<\{ `appRoutes`: \{ `components`: [`ComponentType`](../../reducers/routesReducer/type-aliases/ComponentType.md)[]; `targets`: [`TargetsType`](../../reducers/routesReducer/type-aliases/TargetsType.md)[]; \}; `plugins`: `any`; `userRoutes`: \{ `components`: [`ComponentType`](../../reducers/userRoutesReducer/type-aliases/ComponentType.md)[]; `targets`: [`TargetsType`](../../reducers/userRoutesReducer/type-aliases/TargetsType.md)[]; \}; \}, [`InterfaceAction`](../../helpers/Action/interfaces/InterfaceAction.md), `Tuple`\<\[`StoreEnhancer`\<\{\}\>, `StoreEnhancer`\]\>\> + +Defined in: [src/state/store.ts:4](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/state/store.ts#L4) diff --git a/docs/docs/auto-docs/subComponents/SortingButton/README.md b/docs/docs/auto-docs/subComponents/SortingButton/README.md new file mode 100644 index 0000000000..7911c94d94 --- /dev/null +++ b/docs/docs/auto-docs/subComponents/SortingButton/README.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../README.md) + +*** + +[talawa-admin](../../modules.md) / subComponents/SortingButton + +# subComponents/SortingButton + +## Functions + +- [default](functions/default.md) diff --git a/docs/docs/auto-docs/subComponents/SortingButton/functions/default.md b/docs/docs/auto-docs/subComponents/SortingButton/functions/default.md new file mode 100644 index 0000000000..eae1c0e212 --- /dev/null +++ b/docs/docs/auto-docs/subComponents/SortingButton/functions/default.md @@ -0,0 +1,38 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / [subComponents/SortingButton](../README.md) / default + +# Function: default() + +> **default**(`props`, `deprecatedLegacyContext`?): `ReactNode` + +Defined in: [src/subComponents/SortingButton.tsx:43](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/subComponents/SortingButton.tsx#L43) + +SortingButton component renders a Dropdown with sorting options. +It allows users to select a sorting option and triggers a callback on selection. + +## Parameters + +### props + +`InterfaceSortingButtonProps` + +The properties for the SortingButton component. + +### deprecatedLegacyContext? + +`any` + +**Deprecated** + +**See** + +[React Docs](https://legacy.reactjs.org/docs/legacy-context.html#referencing-context-in-lifecycle-methods) + +## Returns + +`ReactNode` + +The rendered SortingButton component. diff --git a/docs/docs/auto-docs/utils/StaticMockLink/README.md b/docs/docs/auto-docs/utils/StaticMockLink/README.md new file mode 100644 index 0000000000..b5e8d26b04 --- /dev/null +++ b/docs/docs/auto-docs/utils/StaticMockLink/README.md @@ -0,0 +1,19 @@ +[**talawa-admin**](../../README.md) + +*** + +[talawa-admin](../../modules.md) / utils/StaticMockLink + +# utils/StaticMockLink + +## Classes + +- [StaticMockLink](classes/StaticMockLink.md) + +## Interfaces + +- [InterfaceMockApolloLink](interfaces/InterfaceMockApolloLink.md) + +## Functions + +- [mockSingleLink](functions/mockSingleLink.md) diff --git a/docs/docs/auto-docs/utils/StaticMockLink/classes/StaticMockLink.md b/docs/docs/auto-docs/utils/StaticMockLink/classes/StaticMockLink.md new file mode 100644 index 0000000000..bb97c7ec2b --- /dev/null +++ b/docs/docs/auto-docs/utils/StaticMockLink/classes/StaticMockLink.md @@ -0,0 +1,94 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / [utils/StaticMockLink](../README.md) / StaticMockLink + +# Class: StaticMockLink + +Defined in: [src/utils/StaticMockLink.ts:30](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/StaticMockLink.ts#L30) + +Similar to the standard Apollo MockLink, but doesn't consume a mock +when it is used allowing it to be used in places like Storybook. + +## Extends + +- `unknown` + +## Constructors + +### new StaticMockLink() + +> **new StaticMockLink**(`mockedResponses`, `addTypename`): [`StaticMockLink`](StaticMockLink.md) + +Defined in: [src/utils/StaticMockLink.ts:35](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/StaticMockLink.ts#L35) + +#### Parameters + +##### mockedResponses + +readonly `MockedResponse`[] + +##### addTypename + +`boolean` = `true` + +#### Returns + +[`StaticMockLink`](StaticMockLink.md) + +#### Overrides + +`ApolloLink.constructor` + +## Properties + +### addTypename + +> **addTypename**: `boolean` = `true` + +Defined in: [src/utils/StaticMockLink.ts:32](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/StaticMockLink.ts#L32) + +*** + +### operation? + +> `optional` **operation**: `any` + +Defined in: [src/utils/StaticMockLink.ts:31](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/StaticMockLink.ts#L31) + +## Methods + +### addMockedResponse() + +> **addMockedResponse**(`mockedResponse`): `void` + +Defined in: [src/utils/StaticMockLink.ts:45](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/StaticMockLink.ts#L45) + +#### Parameters + +##### mockedResponse + +`MockedResponse` + +#### Returns + +`void` + +*** + +### request() + +> **request**(`operation`): `any` + +Defined in: [src/utils/StaticMockLink.ts:60](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/StaticMockLink.ts#L60) + +#### Parameters + +##### operation + +`any` + +#### Returns + +`any` diff --git a/docs/docs/auto-docs/utils/StaticMockLink/functions/mockSingleLink.md b/docs/docs/auto-docs/utils/StaticMockLink/functions/mockSingleLink.md new file mode 100644 index 0000000000..f181ffe5d5 --- /dev/null +++ b/docs/docs/auto-docs/utils/StaticMockLink/functions/mockSingleLink.md @@ -0,0 +1,21 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / [utils/StaticMockLink](../README.md) / mockSingleLink + +# Function: mockSingleLink() + +> **mockSingleLink**(...`mockedResponses`): [`InterfaceMockApolloLink`](../interfaces/InterfaceMockApolloLink.md) + +Defined in: [src/utils/StaticMockLink.ts:164](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/StaticMockLink.ts#L164) + +## Parameters + +### mockedResponses + +...`any`[] + +## Returns + +[`InterfaceMockApolloLink`](../interfaces/InterfaceMockApolloLink.md) diff --git a/docs/docs/auto-docs/utils/StaticMockLink/interfaces/InterfaceMockApolloLink.md b/docs/docs/auto-docs/utils/StaticMockLink/interfaces/InterfaceMockApolloLink.md new file mode 100644 index 0000000000..6b936e547c --- /dev/null +++ b/docs/docs/auto-docs/utils/StaticMockLink/interfaces/InterfaceMockApolloLink.md @@ -0,0 +1,21 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / [utils/StaticMockLink](../README.md) / InterfaceMockApolloLink + +# Interface: InterfaceMockApolloLink + +Defined in: [src/utils/StaticMockLink.ts:157](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/StaticMockLink.ts#L157) + +## Extends + +- `unknown` + +## Properties + +### operation? + +> `optional` **operation**: `any` + +Defined in: [src/utils/StaticMockLink.ts:158](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/StaticMockLink.ts#L158) diff --git a/docs/docs/auto-docs/utils/chartToPdf/README.md b/docs/docs/auto-docs/utils/chartToPdf/README.md new file mode 100644 index 0000000000..c2c888be7c --- /dev/null +++ b/docs/docs/auto-docs/utils/chartToPdf/README.md @@ -0,0 +1,13 @@ +[**talawa-admin**](../../README.md) + +*** + +[talawa-admin](../../modules.md) / utils/chartToPdf + +# utils/chartToPdf + +## Functions + +- [exportDemographicsToCSV](functions/exportDemographicsToCSV.md) +- [exportToCSV](functions/exportToCSV.md) +- [exportTrendsToCSV](functions/exportTrendsToCSV.md) diff --git a/docs/docs/auto-docs/utils/chartToPdf/functions/exportDemographicsToCSV.md b/docs/docs/auto-docs/utils/chartToPdf/functions/exportDemographicsToCSV.md new file mode 100644 index 0000000000..cf5f3c53c3 --- /dev/null +++ b/docs/docs/auto-docs/utils/chartToPdf/functions/exportDemographicsToCSV.md @@ -0,0 +1,29 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / [utils/chartToPdf](../README.md) / exportDemographicsToCSV + +# Function: exportDemographicsToCSV() + +> **exportDemographicsToCSV**(`selectedCategory`, `categoryLabels`, `categoryData`): `void` + +Defined in: [src/utils/chartToPdf.ts:80](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/chartToPdf.ts#L80) + +## Parameters + +### selectedCategory + +`string` + +### categoryLabels + +`string`[] + +### categoryData + +`number`[] + +## Returns + +`void` diff --git a/docs/docs/auto-docs/utils/chartToPdf/functions/exportToCSV.md b/docs/docs/auto-docs/utils/chartToPdf/functions/exportToCSV.md new file mode 100644 index 0000000000..3d8517f460 --- /dev/null +++ b/docs/docs/auto-docs/utils/chartToPdf/functions/exportToCSV.md @@ -0,0 +1,25 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / [utils/chartToPdf](../README.md) / exportToCSV + +# Function: exportToCSV() + +> **exportToCSV**(`data`, `filename`): `void` + +Defined in: [src/utils/chartToPdf.ts:3](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/chartToPdf.ts#L3) + +## Parameters + +### data + +`CSVData` + +### filename + +`string` + +## Returns + +`void` diff --git a/docs/docs/auto-docs/utils/chartToPdf/functions/exportTrendsToCSV.md b/docs/docs/auto-docs/utils/chartToPdf/functions/exportTrendsToCSV.md new file mode 100644 index 0000000000..97214d4ed7 --- /dev/null +++ b/docs/docs/auto-docs/utils/chartToPdf/functions/exportTrendsToCSV.md @@ -0,0 +1,37 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / [utils/chartToPdf](../README.md) / exportTrendsToCSV + +# Function: exportTrendsToCSV() + +> **exportTrendsToCSV**(`eventLabels`, `attendeeCounts`, `maleCounts`, `femaleCounts`, `otherCounts`): `void` + +Defined in: [src/utils/chartToPdf.ts:50](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/chartToPdf.ts#L50) + +## Parameters + +### eventLabels + +`string`[] + +### attendeeCounts + +`number`[] + +### maleCounts + +`number`[] + +### femaleCounts + +`number`[] + +### otherCounts + +`number`[] + +## Returns + +`void` diff --git a/docs/docs/auto-docs/utils/convertToBase64/README.md b/docs/docs/auto-docs/utils/convertToBase64/README.md new file mode 100644 index 0000000000..c1f44af7de --- /dev/null +++ b/docs/docs/auto-docs/utils/convertToBase64/README.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../README.md) + +*** + +[talawa-admin](../../modules.md) / utils/convertToBase64 + +# utils/convertToBase64 + +## Functions + +- [default](functions/default.md) diff --git a/docs/docs/auto-docs/utils/convertToBase64/functions/default.md b/docs/docs/auto-docs/utils/convertToBase64/functions/default.md new file mode 100644 index 0000000000..ea6fb2b07d --- /dev/null +++ b/docs/docs/auto-docs/utils/convertToBase64/functions/default.md @@ -0,0 +1,21 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / [utils/convertToBase64](../README.md) / default + +# Function: default() + +> **default**(`file`): `Promise`\<`string`\> + +Defined in: [src/utils/convertToBase64.ts:1](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/convertToBase64.ts#L1) + +## Parameters + +### file + +`File` + +## Returns + +`Promise`\<`string`\> diff --git a/docs/docs/auto-docs/utils/currency/README.md b/docs/docs/auto-docs/utils/currency/README.md new file mode 100644 index 0000000000..9ff14d9251 --- /dev/null +++ b/docs/docs/auto-docs/utils/currency/README.md @@ -0,0 +1,12 @@ +[**talawa-admin**](../../README.md) + +*** + +[talawa-admin](../../modules.md) / utils/currency + +# utils/currency + +## Variables + +- [currencyOptions](variables/currencyOptions.md) +- [currencySymbols](variables/currencySymbols.md) diff --git a/docs/docs/auto-docs/utils/currency/variables/currencyOptions.md b/docs/docs/auto-docs/utils/currency/variables/currencyOptions.md new file mode 100644 index 0000000000..0bec912825 --- /dev/null +++ b/docs/docs/auto-docs/utils/currency/variables/currencyOptions.md @@ -0,0 +1,21 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / [utils/currency](../README.md) / currencyOptions + +# Variable: currencyOptions + +> `const` **currencyOptions**: `object`[] + +Defined in: [src/utils/currency.ts:1](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/currency.ts#L1) + +## Type declaration + +### label + +> **label**: `string` = `'AED'` + +### value + +> **value**: `string` = `'AED'` diff --git a/docs/docs/auto-docs/utils/currency/variables/currencySymbols.md b/docs/docs/auto-docs/utils/currency/variables/currencySymbols.md new file mode 100644 index 0000000000..3e5548dd48 --- /dev/null +++ b/docs/docs/auto-docs/utils/currency/variables/currencySymbols.md @@ -0,0 +1,15 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / [utils/currency](../README.md) / currencySymbols + +# Variable: currencySymbols + +> `const` **currencySymbols**: `object` + +Defined in: [src/utils/currency.ts:166](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/currency.ts#L166) + +## Index Signature + +\[`key`: `string`\]: `string` diff --git a/docs/docs/auto-docs/utils/dateFormatter/README.md b/docs/docs/auto-docs/utils/dateFormatter/README.md new file mode 100644 index 0000000000..43d7c90a59 --- /dev/null +++ b/docs/docs/auto-docs/utils/dateFormatter/README.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../README.md) + +*** + +[talawa-admin](../../modules.md) / utils/dateFormatter + +# utils/dateFormatter + +## Functions + +- [formatDate](functions/formatDate.md) diff --git a/docs/docs/auto-docs/utils/dateFormatter/functions/formatDate.md b/docs/docs/auto-docs/utils/dateFormatter/functions/formatDate.md new file mode 100644 index 0000000000..f0e1b8bf1a --- /dev/null +++ b/docs/docs/auto-docs/utils/dateFormatter/functions/formatDate.md @@ -0,0 +1,21 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / [utils/dateFormatter](../README.md) / formatDate + +# Function: formatDate() + +> **formatDate**(`dateString`): `string` + +Defined in: [src/utils/dateFormatter.ts:1](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/dateFormatter.ts#L1) + +## Parameters + +### dateString + +`string` + +## Returns + +`string` diff --git a/docs/docs/auto-docs/utils/errorHandler/README.md b/docs/docs/auto-docs/utils/errorHandler/README.md new file mode 100644 index 0000000000..f3524157ba --- /dev/null +++ b/docs/docs/auto-docs/utils/errorHandler/README.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../README.md) + +*** + +[talawa-admin](../../modules.md) / utils/errorHandler + +# utils/errorHandler + +## Functions + +- [errorHandler](functions/errorHandler.md) diff --git a/docs/docs/auto-docs/utils/errorHandler/functions/errorHandler.md b/docs/docs/auto-docs/utils/errorHandler/functions/errorHandler.md new file mode 100644 index 0000000000..ff5f4100bf --- /dev/null +++ b/docs/docs/auto-docs/utils/errorHandler/functions/errorHandler.md @@ -0,0 +1,29 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / [utils/errorHandler](../README.md) / errorHandler + +# Function: errorHandler() + +> **errorHandler**(`a`, `error`): `void` + +Defined in: [src/utils/errorHandler.tsx:10](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/errorHandler.tsx#L10) + +This function is used to handle api errors in the application. +It takes in the error object and displays the error message to the user. +If the error is due to the Talawa API being unavailable, it displays a custom message. And for other error cases, it is using regular expression (case-insensitive) to match and show valid messages + +## Parameters + +### a + +`unknown` + +### error + +`unknown` + +## Returns + +`void` diff --git a/docs/docs/auto-docs/utils/fieldTypes/README.md b/docs/docs/auto-docs/utils/fieldTypes/README.md new file mode 100644 index 0000000000..e61e877617 --- /dev/null +++ b/docs/docs/auto-docs/utils/fieldTypes/README.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../README.md) + +*** + +[talawa-admin](../../modules.md) / utils/fieldTypes + +# utils/fieldTypes + +## Variables + +- [default](variables/default.md) diff --git a/docs/docs/auto-docs/utils/fieldTypes/variables/default.md b/docs/docs/auto-docs/utils/fieldTypes/variables/default.md new file mode 100644 index 0000000000..8259a8a703 --- /dev/null +++ b/docs/docs/auto-docs/utils/fieldTypes/variables/default.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / [utils/fieldTypes](../README.md) / default + +# Variable: default + +> `const` **default**: `string`[] + +Defined in: [src/utils/fieldTypes.ts:1](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/fieldTypes.ts#L1) diff --git a/docs/docs/auto-docs/utils/formEnumFields/README.md b/docs/docs/auto-docs/utils/formEnumFields/README.md new file mode 100644 index 0000000000..bf7f8e43f9 --- /dev/null +++ b/docs/docs/auto-docs/utils/formEnumFields/README.md @@ -0,0 +1,16 @@ +[**talawa-admin**](../../README.md) + +*** + +[talawa-admin](../../modules.md) / utils/formEnumFields + +# utils/formEnumFields + +## Variables + +- [countryOptions](variables/countryOptions.md) +- [educationGradeEnum](variables/educationGradeEnum.md) +- [employmentStatusEnum](variables/employmentStatusEnum.md) +- [genderEnum](variables/genderEnum.md) +- [maritalStatusEnum](variables/maritalStatusEnum.md) +- [userRoleEnum](variables/userRoleEnum.md) diff --git a/docs/docs/auto-docs/utils/formEnumFields/variables/countryOptions.md b/docs/docs/auto-docs/utils/formEnumFields/variables/countryOptions.md new file mode 100644 index 0000000000..7994715c31 --- /dev/null +++ b/docs/docs/auto-docs/utils/formEnumFields/variables/countryOptions.md @@ -0,0 +1,21 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / [utils/formEnumFields](../README.md) / countryOptions + +# Variable: countryOptions + +> `const` **countryOptions**: `object`[] + +Defined in: [src/utils/formEnumFields.ts:1](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/formEnumFields.ts#L1) + +## Type declaration + +### label + +> **label**: `string` = `'Afghanistan'` + +### value + +> **value**: `string` = `'af'` diff --git a/docs/docs/auto-docs/utils/formEnumFields/variables/educationGradeEnum.md b/docs/docs/auto-docs/utils/formEnumFields/variables/educationGradeEnum.md new file mode 100644 index 0000000000..c5bdc52c17 --- /dev/null +++ b/docs/docs/auto-docs/utils/formEnumFields/variables/educationGradeEnum.md @@ -0,0 +1,21 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / [utils/formEnumFields](../README.md) / educationGradeEnum + +# Variable: educationGradeEnum + +> `const` **educationGradeEnum**: `object`[] + +Defined in: [src/utils/formEnumFields.ts:202](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/formEnumFields.ts#L202) + +## Type declaration + +### label + +> **label**: `string` = `'No-Grade'` + +### value + +> **value**: `string` = `'NO_GRADE'` diff --git a/docs/docs/auto-docs/utils/formEnumFields/variables/employmentStatusEnum.md b/docs/docs/auto-docs/utils/formEnumFields/variables/employmentStatusEnum.md new file mode 100644 index 0000000000..9d560e12f6 --- /dev/null +++ b/docs/docs/auto-docs/utils/formEnumFields/variables/employmentStatusEnum.md @@ -0,0 +1,21 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / [utils/formEnumFields](../README.md) / employmentStatusEnum + +# Variable: employmentStatusEnum + +> `const` **employmentStatusEnum**: `object`[] + +Defined in: [src/utils/formEnumFields.ts:311](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/formEnumFields.ts#L311) + +## Type declaration + +### label + +> **label**: `string` = `'Full-Time'` + +### value + +> **value**: `string` = `'FULL_TIME'` diff --git a/docs/docs/auto-docs/utils/formEnumFields/variables/genderEnum.md b/docs/docs/auto-docs/utils/formEnumFields/variables/genderEnum.md new file mode 100644 index 0000000000..41e3a87705 --- /dev/null +++ b/docs/docs/auto-docs/utils/formEnumFields/variables/genderEnum.md @@ -0,0 +1,21 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / [utils/formEnumFields](../README.md) / genderEnum + +# Variable: genderEnum + +> `const` **genderEnum**: `object`[] + +Defined in: [src/utils/formEnumFields.ts:296](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/formEnumFields.ts#L296) + +## Type declaration + +### label + +> **label**: `string` = `'Male'` + +### value + +> **value**: `string` = `'MALE'` diff --git a/docs/docs/auto-docs/utils/formEnumFields/variables/maritalStatusEnum.md b/docs/docs/auto-docs/utils/formEnumFields/variables/maritalStatusEnum.md new file mode 100644 index 0000000000..5b8d02f7eb --- /dev/null +++ b/docs/docs/auto-docs/utils/formEnumFields/variables/maritalStatusEnum.md @@ -0,0 +1,21 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / [utils/formEnumFields](../README.md) / maritalStatusEnum + +# Variable: maritalStatusEnum + +> `const` **maritalStatusEnum**: `object`[] + +Defined in: [src/utils/formEnumFields.ts:269](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/formEnumFields.ts#L269) + +## Type declaration + +### label + +> **label**: `string` = `'Single'` + +### value + +> **value**: `string` = `'SINGLE'` diff --git a/docs/docs/auto-docs/utils/formEnumFields/variables/userRoleEnum.md b/docs/docs/auto-docs/utils/formEnumFields/variables/userRoleEnum.md new file mode 100644 index 0000000000..c835d00dba --- /dev/null +++ b/docs/docs/auto-docs/utils/formEnumFields/variables/userRoleEnum.md @@ -0,0 +1,21 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / [utils/formEnumFields](../README.md) / userRoleEnum + +# Variable: userRoleEnum + +> `const` **userRoleEnum**: `object`[] + +Defined in: [src/utils/formEnumFields.ts:326](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/formEnumFields.ts#L326) + +## Type declaration + +### label + +> **label**: `string` = `'User'` + +### value + +> **value**: `string` = `'USER'` diff --git a/docs/docs/auto-docs/utils/getOrganizationId/README.md b/docs/docs/auto-docs/utils/getOrganizationId/README.md new file mode 100644 index 0000000000..6b1d1d6da4 --- /dev/null +++ b/docs/docs/auto-docs/utils/getOrganizationId/README.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../README.md) + +*** + +[talawa-admin](../../modules.md) / utils/getOrganizationId + +# utils/getOrganizationId + +## Functions + +- [default](functions/default.md) diff --git a/docs/docs/auto-docs/utils/getOrganizationId/functions/default.md b/docs/docs/auto-docs/utils/getOrganizationId/functions/default.md new file mode 100644 index 0000000000..a6730d0a26 --- /dev/null +++ b/docs/docs/auto-docs/utils/getOrganizationId/functions/default.md @@ -0,0 +1,21 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / [utils/getOrganizationId](../README.md) / default + +# Function: default() + +> **default**(`url`): `string` + +Defined in: [src/utils/getOrganizationId.ts:2](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/getOrganizationId.ts#L2) + +## Parameters + +### url + +`string` + +## Returns + +`string` diff --git a/docs/docs/auto-docs/utils/getRefreshToken/README.md b/docs/docs/auto-docs/utils/getRefreshToken/README.md new file mode 100644 index 0000000000..8c60657a42 --- /dev/null +++ b/docs/docs/auto-docs/utils/getRefreshToken/README.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../README.md) + +*** + +[talawa-admin](../../modules.md) / utils/getRefreshToken + +# utils/getRefreshToken + +## Functions + +- [refreshToken](functions/refreshToken.md) diff --git a/docs/docs/auto-docs/utils/getRefreshToken/functions/refreshToken.md b/docs/docs/auto-docs/utils/getRefreshToken/functions/refreshToken.md new file mode 100644 index 0000000000..b9bb024efa --- /dev/null +++ b/docs/docs/auto-docs/utils/getRefreshToken/functions/refreshToken.md @@ -0,0 +1,15 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / [utils/getRefreshToken](../README.md) / refreshToken + +# Function: refreshToken() + +> **refreshToken**(): `Promise`\<`boolean`\> + +Defined in: [src/utils/getRefreshToken.ts:6](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/getRefreshToken.ts#L6) + +## Returns + +`Promise`\<`boolean`\> diff --git a/docs/docs/auto-docs/utils/i18n/README.md b/docs/docs/auto-docs/utils/i18n/README.md new file mode 100644 index 0000000000..155261730a --- /dev/null +++ b/docs/docs/auto-docs/utils/i18n/README.md @@ -0,0 +1,7 @@ +[**talawa-admin**](../../README.md) + +*** + +[talawa-admin](../../modules.md) / utils/i18n + +# utils/i18n diff --git a/docs/docs/auto-docs/utils/i18nForTest/README.md b/docs/docs/auto-docs/utils/i18nForTest/README.md new file mode 100644 index 0000000000..2c5825d093 --- /dev/null +++ b/docs/docs/auto-docs/utils/i18nForTest/README.md @@ -0,0 +1,7 @@ +[**talawa-admin**](../../README.md) + +*** + +[talawa-admin](../../modules.md) / utils/i18nForTest + +# utils/i18nForTest diff --git a/docs/docs/auto-docs/utils/interfaces/README.md b/docs/docs/auto-docs/utils/interfaces/README.md new file mode 100644 index 0000000000..0e3a96e48c --- /dev/null +++ b/docs/docs/auto-docs/utils/interfaces/README.md @@ -0,0 +1,60 @@ +[**talawa-admin**](../../README.md) + +*** + +[talawa-admin](../../modules.md) / utils/interfaces + +# utils/interfaces + +## Interfaces + +- [InterfaceActionItemCategoryInfo](interfaces/InterfaceActionItemCategoryInfo.md) +- [InterfaceActionItemCategoryList](interfaces/InterfaceActionItemCategoryList.md) +- [InterfaceActionItemInfo](interfaces/InterfaceActionItemInfo.md) +- [InterfaceActionItemList](interfaces/InterfaceActionItemList.md) +- [InterfaceAddOnSpotAttendeeProps](interfaces/InterfaceAddOnSpotAttendeeProps.md) +- [InterfaceAddress](interfaces/InterfaceAddress.md) +- [InterfaceAgendaItemCategoryInfo](interfaces/InterfaceAgendaItemCategoryInfo.md) +- [InterfaceAgendaItemCategoryList](interfaces/InterfaceAgendaItemCategoryList.md) +- [InterfaceAgendaItemInfo](interfaces/InterfaceAgendaItemInfo.md) +- [InterfaceAgendaItemList](interfaces/InterfaceAgendaItemList.md) +- [InterfaceBaseEvent](interfaces/InterfaceBaseEvent.md) +- [InterfaceCampaignInfo](interfaces/InterfaceCampaignInfo.md) +- [InterfaceCreateFund](interfaces/InterfaceCreateFund.md) +- [InterfaceCreatePledge](interfaces/InterfaceCreatePledge.md) +- [InterfaceCreateVolunteerGroup](interfaces/InterfaceCreateVolunteerGroup.md) +- [InterfaceCustomFieldData](interfaces/InterfaceCustomFieldData.md) +- [InterfaceEventVolunteerInfo](interfaces/InterfaceEventVolunteerInfo.md) +- [InterfaceFormData](interfaces/InterfaceFormData.md) +- [InterfaceFundInfo](interfaces/InterfaceFundInfo.md) +- [InterfaceMapType](interfaces/InterfaceMapType.md) +- [InterfaceMemberInfo](interfaces/InterfaceMemberInfo.md) +- [InterfaceMembersList](interfaces/InterfaceMembersList.md) +- [InterfaceOrgConnectionInfoType](interfaces/InterfaceOrgConnectionInfoType.md) +- [InterfaceOrgConnectionType](interfaces/InterfaceOrgConnectionType.md) +- [InterfacePledgeInfo](interfaces/InterfacePledgeInfo.md) +- [InterfacePostCard](interfaces/InterfacePostCard.md) +- [InterfacePostForm](interfaces/InterfacePostForm.md) +- [InterfaceQueryBlockPageMemberListItem](interfaces/InterfaceQueryBlockPageMemberListItem.md) +- [InterfaceQueryFundCampaignsPledges](interfaces/InterfaceQueryFundCampaignsPledges.md) +- [InterfaceQueryMembershipRequestsListItem](interfaces/InterfaceQueryMembershipRequestsListItem.md) +- [InterfaceQueryOrganizationAdvertisementListItem](interfaces/InterfaceQueryOrganizationAdvertisementListItem.md) +- [InterfaceQueryOrganizationEventListItem](interfaces/InterfaceQueryOrganizationEventListItem.md) +- [InterfaceQueryOrganizationFundCampaigns](interfaces/InterfaceQueryOrganizationFundCampaigns.md) +- [InterfaceQueryOrganizationListObject](interfaces/InterfaceQueryOrganizationListObject.md) +- [InterfaceQueryOrganizationPostListItem](interfaces/InterfaceQueryOrganizationPostListItem.md) +- [InterfaceQueryOrganizationsListObject](interfaces/InterfaceQueryOrganizationsListObject.md) +- [InterfaceQueryOrganizationUserTags](interfaces/InterfaceQueryOrganizationUserTags.md) +- [InterfaceQueryUserListItem](interfaces/InterfaceQueryUserListItem.md) +- [InterfaceQueryUserTagChildTags](interfaces/InterfaceQueryUserTagChildTags.md) +- [InterfaceQueryUserTagsAssignedMembers](interfaces/InterfaceQueryUserTagsAssignedMembers.md) +- [InterfaceQueryUserTagsMembersToAssignTo](interfaces/InterfaceQueryUserTagsMembersToAssignTo.md) +- [InterfaceQueryVenueListItem](interfaces/InterfaceQueryVenueListItem.md) +- [InterfaceTagData](interfaces/InterfaceTagData.md) +- [InterfaceUserCampaign](interfaces/InterfaceUserCampaign.md) +- [InterfaceUserEvents](interfaces/InterfaceUserEvents.md) +- [InterfaceUserInfo](interfaces/InterfaceUserInfo.md) +- [InterfaceUserType](interfaces/InterfaceUserType.md) +- [InterfaceVolunteerGroupInfo](interfaces/InterfaceVolunteerGroupInfo.md) +- [InterfaceVolunteerMembership](interfaces/InterfaceVolunteerMembership.md) +- [InterfaceVolunteerRank](interfaces/InterfaceVolunteerRank.md) diff --git a/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceActionItemCategoryInfo.md b/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceActionItemCategoryInfo.md new file mode 100644 index 0000000000..0b97c4f8cf --- /dev/null +++ b/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceActionItemCategoryInfo.md @@ -0,0 +1,61 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / [utils/interfaces](../README.md) / InterfaceActionItemCategoryInfo + +# Interface: InterfaceActionItemCategoryInfo + +Defined in: [src/utils/interfaces.ts:31](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L31) + +## Properties + +### \_id + +> **\_id**: `string` + +Defined in: [src/utils/interfaces.ts:32](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L32) + +*** + +### createdAt + +> **createdAt**: `string` + +Defined in: [src/utils/interfaces.ts:35](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L35) + +*** + +### creator + +> **creator**: `object` + +Defined in: [src/utils/interfaces.ts:36](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L36) + +#### \_id + +> **\_id**: `string` + +#### firstName + +> **firstName**: `string` + +#### lastName + +> **lastName**: `string` + +*** + +### isDisabled + +> **isDisabled**: `boolean` + +Defined in: [src/utils/interfaces.ts:34](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L34) + +*** + +### name + +> **name**: `string` + +Defined in: [src/utils/interfaces.ts:33](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L33) diff --git a/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceActionItemCategoryList.md b/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceActionItemCategoryList.md new file mode 100644 index 0000000000..0abc5b197b --- /dev/null +++ b/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceActionItemCategoryList.md @@ -0,0 +1,17 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / [utils/interfaces](../README.md) / InterfaceActionItemCategoryList + +# Interface: InterfaceActionItemCategoryList + +Defined in: [src/utils/interfaces.ts:39](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L39) + +## Properties + +### actionItemCategoriesByOrganization + +> **actionItemCategoriesByOrganization**: [`InterfaceActionItemCategoryInfo`](InterfaceActionItemCategoryInfo.md)[] + +Defined in: [src/utils/interfaces.ts:40](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L40) diff --git a/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceActionItemInfo.md b/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceActionItemInfo.md new file mode 100644 index 0000000000..24e64f4f17 --- /dev/null +++ b/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceActionItemInfo.md @@ -0,0 +1,145 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / [utils/interfaces](../README.md) / InterfaceActionItemInfo + +# Interface: InterfaceActionItemInfo + +Defined in: [src/utils/interfaces.ts:43](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L43) + +## Properties + +### \_id + +> **\_id**: `string` + +Defined in: [src/utils/interfaces.ts:44](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L44) + +*** + +### actionItemCategory + +> **actionItemCategory**: `object` + +Defined in: [src/utils/interfaces.ts:50](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L50) + +#### \_id + +> **\_id**: `string` + +#### name + +> **name**: `string` + +*** + +### allottedHours + +> **allottedHours**: `null` \| `number` + +Defined in: [src/utils/interfaces.ts:65](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L65) + +*** + +### assignee + +> **assignee**: `null` \| [`InterfaceEventVolunteerInfo`](InterfaceEventVolunteerInfo.md) + +Defined in: [src/utils/interfaces.ts:46](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L46) + +*** + +### assigneeGroup + +> **assigneeGroup**: `null` \| [`InterfaceVolunteerGroupInfo`](InterfaceVolunteerGroupInfo.md) + +Defined in: [src/utils/interfaces.ts:47](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L47) + +*** + +### assigneeType + +> **assigneeType**: `"User"` \| `"EventVolunteerGroup"` \| `"EventVolunteer"` + +Defined in: [src/utils/interfaces.ts:45](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L45) + +*** + +### assigneeUser + +> **assigneeUser**: `null` \| [`InterfaceUserInfo`](InterfaceUserInfo.md) + +Defined in: [src/utils/interfaces.ts:48](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L48) + +*** + +### assigner + +> **assigner**: [`InterfaceUserInfo`](InterfaceUserInfo.md) + +Defined in: [src/utils/interfaces.ts:49](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L49) + +*** + +### assignmentDate + +> **assignmentDate**: `Date` + +Defined in: [src/utils/interfaces.ts:56](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L56) + +*** + +### completionDate + +> **completionDate**: `null` \| `Date` + +Defined in: [src/utils/interfaces.ts:58](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L58) + +*** + +### creator + +> **creator**: [`InterfaceUserInfo`](InterfaceUserInfo.md) + +Defined in: [src/utils/interfaces.ts:64](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L64) + +*** + +### dueDate + +> **dueDate**: `Date` + +Defined in: [src/utils/interfaces.ts:57](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L57) + +*** + +### event + +> **event**: `null` \| \{ `_id`: `string`; `title`: `string`; \} + +Defined in: [src/utils/interfaces.ts:60](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L60) + +*** + +### isCompleted + +> **isCompleted**: `boolean` + +Defined in: [src/utils/interfaces.ts:59](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L59) + +*** + +### postCompletionNotes + +> **postCompletionNotes**: `null` \| `string` + +Defined in: [src/utils/interfaces.ts:55](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L55) + +*** + +### preCompletionNotes + +> **preCompletionNotes**: `string` + +Defined in: [src/utils/interfaces.ts:54](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L54) diff --git a/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceActionItemList.md b/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceActionItemList.md new file mode 100644 index 0000000000..bc3224d3be --- /dev/null +++ b/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceActionItemList.md @@ -0,0 +1,17 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / [utils/interfaces](../README.md) / InterfaceActionItemList + +# Interface: InterfaceActionItemList + +Defined in: [src/utils/interfaces.ts:68](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L68) + +## Properties + +### actionItemsByOrganization + +> **actionItemsByOrganization**: [`InterfaceActionItemInfo`](InterfaceActionItemInfo.md)[] + +Defined in: [src/utils/interfaces.ts:69](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L69) diff --git a/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceAddOnSpotAttendeeProps.md b/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceAddOnSpotAttendeeProps.md new file mode 100644 index 0000000000..94501a9638 --- /dev/null +++ b/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceAddOnSpotAttendeeProps.md @@ -0,0 +1,41 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / [utils/interfaces](../README.md) / InterfaceAddOnSpotAttendeeProps + +# Interface: InterfaceAddOnSpotAttendeeProps + +Defined in: [src/utils/interfaces.ts:546](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L546) + +## Properties + +### handleClose() + +> **handleClose**: () => `void` + +Defined in: [src/utils/interfaces.ts:548](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L548) + +#### Returns + +`void` + +*** + +### reloadMembers() + +> **reloadMembers**: () => `void` + +Defined in: [src/utils/interfaces.ts:549](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L549) + +#### Returns + +`void` + +*** + +### show + +> **show**: `boolean` + +Defined in: [src/utils/interfaces.ts:547](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L547) diff --git a/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceAddress.md b/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceAddress.md new file mode 100644 index 0000000000..974e9f0a73 --- /dev/null +++ b/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceAddress.md @@ -0,0 +1,73 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / [utils/interfaces](../README.md) / InterfaceAddress + +# Interface: InterfaceAddress + +Defined in: [src/utils/interfaces.ts:453](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L453) + +## Properties + +### city + +> **city**: `string` + +Defined in: [src/utils/interfaces.ts:454](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L454) + +*** + +### countryCode + +> **countryCode**: `string` + +Defined in: [src/utils/interfaces.ts:455](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L455) + +*** + +### dependentLocality + +> **dependentLocality**: `string` + +Defined in: [src/utils/interfaces.ts:456](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L456) + +*** + +### line1 + +> **line1**: `string` + +Defined in: [src/utils/interfaces.ts:457](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L457) + +*** + +### line2 + +> **line2**: `string` + +Defined in: [src/utils/interfaces.ts:458](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L458) + +*** + +### postalCode + +> **postalCode**: `string` + +Defined in: [src/utils/interfaces.ts:459](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L459) + +*** + +### sortingCode + +> **sortingCode**: `string` + +Defined in: [src/utils/interfaces.ts:460](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L460) + +*** + +### state + +> **state**: `string` + +Defined in: [src/utils/interfaces.ts:461](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L461) diff --git a/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceAgendaItemCategoryInfo.md b/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceAgendaItemCategoryInfo.md new file mode 100644 index 0000000000..9f88322650 --- /dev/null +++ b/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceAgendaItemCategoryInfo.md @@ -0,0 +1,53 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / [utils/interfaces](../README.md) / InterfaceAgendaItemCategoryInfo + +# Interface: InterfaceAgendaItemCategoryInfo + +Defined in: [src/utils/interfaces.ts:531](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L531) + +## Properties + +### \_id + +> **\_id**: `string` + +Defined in: [src/utils/interfaces.ts:532](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L532) + +*** + +### createdBy + +> **createdBy**: `object` + +Defined in: [src/utils/interfaces.ts:535](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L535) + +#### \_id + +> **\_id**: `string` + +#### firstName + +> **firstName**: `string` + +#### lastName + +> **lastName**: `string` + +*** + +### description + +> **description**: `string` + +Defined in: [src/utils/interfaces.ts:534](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L534) + +*** + +### name + +> **name**: `string` + +Defined in: [src/utils/interfaces.ts:533](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L533) diff --git a/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceAgendaItemCategoryList.md b/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceAgendaItemCategoryList.md new file mode 100644 index 0000000000..8656e1faa5 --- /dev/null +++ b/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceAgendaItemCategoryList.md @@ -0,0 +1,17 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / [utils/interfaces](../README.md) / InterfaceAgendaItemCategoryList + +# Interface: InterfaceAgendaItemCategoryList + +Defined in: [src/utils/interfaces.ts:542](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L542) + +## Properties + +### agendaItemCategoriesByOrganization + +> **agendaItemCategoriesByOrganization**: [`InterfaceAgendaItemCategoryInfo`](InterfaceAgendaItemCategoryInfo.md)[] + +Defined in: [src/utils/interfaces.ts:543](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L543) diff --git a/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceAgendaItemInfo.md b/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceAgendaItemInfo.md new file mode 100644 index 0000000000..d38b13ca2d --- /dev/null +++ b/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceAgendaItemInfo.md @@ -0,0 +1,153 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / [utils/interfaces](../README.md) / InterfaceAgendaItemInfo + +# Interface: InterfaceAgendaItemInfo + +Defined in: [src/utils/interfaces.ts:560](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L560) + +## Properties + +### \_id + +> **\_id**: `string` + +Defined in: [src/utils/interfaces.ts:561](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L561) + +*** + +### attachments + +> **attachments**: `string`[] + +Defined in: [src/utils/interfaces.ts:565](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L565) + +*** + +### categories + +> **categories**: `object`[] + +Defined in: [src/utils/interfaces.ts:578](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L578) + +#### \_id + +> **\_id**: `string` + +#### name + +> **name**: `string` + +*** + +### createdBy + +> **createdBy**: `object` + +Defined in: [src/utils/interfaces.ts:566](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L566) + +#### \_id + +> **\_id**: `string` + +#### firstName + +> **firstName**: `string` + +#### lastName + +> **lastName**: `string` + +*** + +### description + +> **description**: `string` + +Defined in: [src/utils/interfaces.ts:563](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L563) + +*** + +### duration + +> **duration**: `string` + +Defined in: [src/utils/interfaces.ts:564](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L564) + +*** + +### organization + +> **organization**: `object` + +Defined in: [src/utils/interfaces.ts:582](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L582) + +#### \_id + +> **\_id**: `string` + +#### name + +> **name**: `string` + +*** + +### relatedEvent + +> **relatedEvent**: `object` + +Defined in: [src/utils/interfaces.ts:586](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L586) + +#### \_id + +> **\_id**: `string` + +#### title + +> **title**: `string` + +*** + +### sequence + +> **sequence**: `number` + +Defined in: [src/utils/interfaces.ts:577](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L577) + +*** + +### title + +> **title**: `string` + +Defined in: [src/utils/interfaces.ts:562](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L562) + +*** + +### urls + +> **urls**: `string`[] + +Defined in: [src/utils/interfaces.ts:571](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L571) + +*** + +### users + +> **users**: `object`[] + +Defined in: [src/utils/interfaces.ts:572](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L572) + +#### \_id + +> **\_id**: `string` + +#### firstName + +> **firstName**: `string` + +#### lastName + +> **lastName**: `string` diff --git a/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceAgendaItemList.md b/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceAgendaItemList.md new file mode 100644 index 0000000000..b3575ca628 --- /dev/null +++ b/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceAgendaItemList.md @@ -0,0 +1,17 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / [utils/interfaces](../README.md) / InterfaceAgendaItemList + +# Interface: InterfaceAgendaItemList + +Defined in: [src/utils/interfaces.ts:592](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L592) + +## Properties + +### agendaItemByEvent + +> **agendaItemByEvent**: [`InterfaceAgendaItemInfo`](InterfaceAgendaItemInfo.md)[] + +Defined in: [src/utils/interfaces.ts:593](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L593) diff --git a/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceBaseEvent.md b/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceBaseEvent.md new file mode 100644 index 0000000000..6012f661b7 --- /dev/null +++ b/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceBaseEvent.md @@ -0,0 +1,94 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / [utils/interfaces](../README.md) / InterfaceBaseEvent + +# Interface: InterfaceBaseEvent + +Defined in: [src/utils/interfaces.ts:18](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L18) + +## Extended by + +- [`InterfaceQueryOrganizationEventListItem`](InterfaceQueryOrganizationEventListItem.md) +- [`InterfaceUserEvents`](InterfaceUserEvents.md) + +## Properties + +### \_id + +> **\_id**: `string` + +Defined in: [src/utils/interfaces.ts:19](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L19) + +*** + +### allDay + +> **allDay**: `boolean` + +Defined in: [src/utils/interfaces.ts:27](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L27) + +*** + +### description + +> **description**: `string` + +Defined in: [src/utils/interfaces.ts:21](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L21) + +*** + +### endDate + +> **endDate**: `string` + +Defined in: [src/utils/interfaces.ts:23](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L23) + +*** + +### endTime + +> **endTime**: `string` + +Defined in: [src/utils/interfaces.ts:26](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L26) + +*** + +### location + +> **location**: `string` + +Defined in: [src/utils/interfaces.ts:24](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L24) + +*** + +### recurring + +> **recurring**: `boolean` + +Defined in: [src/utils/interfaces.ts:28](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L28) + +*** + +### startDate + +> **startDate**: `string` + +Defined in: [src/utils/interfaces.ts:22](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L22) + +*** + +### startTime + +> **startTime**: `string` + +Defined in: [src/utils/interfaces.ts:25](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L25) + +*** + +### title + +> **title**: `string` + +Defined in: [src/utils/interfaces.ts:20](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L20) diff --git a/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceCampaignInfo.md b/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceCampaignInfo.md new file mode 100644 index 0000000000..8db5d5f123 --- /dev/null +++ b/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceCampaignInfo.md @@ -0,0 +1,65 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / [utils/interfaces](../README.md) / InterfaceCampaignInfo + +# Interface: InterfaceCampaignInfo + +Defined in: [src/utils/interfaces.ts:362](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L362) + +## Properties + +### \_id + +> **\_id**: `string` + +Defined in: [src/utils/interfaces.ts:363](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L363) + +*** + +### createdAt + +> **createdAt**: `string` + +Defined in: [src/utils/interfaces.ts:368](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L368) + +*** + +### currency + +> **currency**: `string` + +Defined in: [src/utils/interfaces.ts:369](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L369) + +*** + +### endDate + +> **endDate**: `Date` + +Defined in: [src/utils/interfaces.ts:367](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L367) + +*** + +### fundingGoal + +> **fundingGoal**: `number` + +Defined in: [src/utils/interfaces.ts:365](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L365) + +*** + +### name + +> **name**: `string` + +Defined in: [src/utils/interfaces.ts:364](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L364) + +*** + +### startDate + +> **startDate**: `Date` + +Defined in: [src/utils/interfaces.ts:366](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L366) diff --git a/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceCreateFund.md b/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceCreateFund.md new file mode 100644 index 0000000000..9e3b198876 --- /dev/null +++ b/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceCreateFund.md @@ -0,0 +1,49 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / [utils/interfaces](../README.md) / InterfaceCreateFund + +# Interface: InterfaceCreateFund + +Defined in: [src/utils/interfaces.ts:463](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L463) + +## Properties + +### fundName + +> **fundName**: `string` + +Defined in: [src/utils/interfaces.ts:464](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L464) + +*** + +### fundRef + +> **fundRef**: `string` + +Defined in: [src/utils/interfaces.ts:465](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L465) + +*** + +### isArchived + +> **isArchived**: `boolean` + +Defined in: [src/utils/interfaces.ts:467](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L467) + +*** + +### isDefault + +> **isDefault**: `boolean` + +Defined in: [src/utils/interfaces.ts:466](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L466) + +*** + +### taxDeductible + +> **taxDeductible**: `boolean` + +Defined in: [src/utils/interfaces.ts:468](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L468) diff --git a/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceCreatePledge.md b/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceCreatePledge.md new file mode 100644 index 0000000000..ec4786d7d4 --- /dev/null +++ b/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceCreatePledge.md @@ -0,0 +1,49 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / [utils/interfaces](../README.md) / InterfaceCreatePledge + +# Interface: InterfaceCreatePledge + +Defined in: [src/utils/interfaces.ts:508](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L508) + +## Properties + +### pledgeAmount + +> **pledgeAmount**: `number` + +Defined in: [src/utils/interfaces.ts:510](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L510) + +*** + +### pledgeCurrency + +> **pledgeCurrency**: `string` + +Defined in: [src/utils/interfaces.ts:511](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L511) + +*** + +### pledgeEndDate + +> **pledgeEndDate**: `Date` + +Defined in: [src/utils/interfaces.ts:513](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L513) + +*** + +### pledgeStartDate + +> **pledgeStartDate**: `Date` + +Defined in: [src/utils/interfaces.ts:512](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L512) + +*** + +### pledgeUsers + +> **pledgeUsers**: [`InterfaceUserInfo`](InterfaceUserInfo.md)[] + +Defined in: [src/utils/interfaces.ts:509](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L509) diff --git a/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceCreateVolunteerGroup.md b/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceCreateVolunteerGroup.md new file mode 100644 index 0000000000..ac83f54532 --- /dev/null +++ b/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceCreateVolunteerGroup.md @@ -0,0 +1,49 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / [utils/interfaces](../README.md) / InterfaceCreateVolunteerGroup + +# Interface: InterfaceCreateVolunteerGroup + +Defined in: [src/utils/interfaces.ts:648](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L648) + +## Properties + +### description + +> **description**: `null` \| `string` + +Defined in: [src/utils/interfaces.ts:650](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L650) + +*** + +### leader + +> **leader**: `null` \| [`InterfaceUserInfo`](InterfaceUserInfo.md) + +Defined in: [src/utils/interfaces.ts:651](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L651) + +*** + +### name + +> **name**: `string` + +Defined in: [src/utils/interfaces.ts:649](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L649) + +*** + +### volunteersRequired + +> **volunteersRequired**: `null` \| `number` + +Defined in: [src/utils/interfaces.ts:652](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L652) + +*** + +### volunteerUsers + +> **volunteerUsers**: [`InterfaceUserInfo`](InterfaceUserInfo.md)[] + +Defined in: [src/utils/interfaces.ts:653](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L653) diff --git a/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceCustomFieldData.md b/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceCustomFieldData.md new file mode 100644 index 0000000000..c05ccdd150 --- /dev/null +++ b/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceCustomFieldData.md @@ -0,0 +1,25 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / [utils/interfaces](../README.md) / InterfaceCustomFieldData + +# Interface: InterfaceCustomFieldData + +Defined in: [src/utils/interfaces.ts:600](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L600) + +## Properties + +### name + +> **name**: `string` + +Defined in: [src/utils/interfaces.ts:602](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L602) + +*** + +### type + +> **type**: `string` + +Defined in: [src/utils/interfaces.ts:601](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L601) diff --git a/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceEventVolunteerInfo.md b/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceEventVolunteerInfo.md new file mode 100644 index 0000000000..6e3be32fff --- /dev/null +++ b/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceEventVolunteerInfo.md @@ -0,0 +1,73 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / [utils/interfaces](../README.md) / InterfaceEventVolunteerInfo + +# Interface: InterfaceEventVolunteerInfo + +Defined in: [src/utils/interfaces.ts:605](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L605) + +## Properties + +### \_id + +> **\_id**: `string` + +Defined in: [src/utils/interfaces.ts:606](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L606) + +*** + +### assignments + +> **assignments**: `object`[] + +Defined in: [src/utils/interfaces.ts:610](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L610) + +#### \_id + +> **\_id**: `string` + +*** + +### groups + +> **groups**: `object`[] + +Defined in: [src/utils/interfaces.ts:613](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L613) + +#### \_id + +> **\_id**: `string` + +#### name + +> **name**: `string` + +#### volunteers + +> **volunteers**: `object`[] + +*** + +### hasAccepted + +> **hasAccepted**: `boolean` + +Defined in: [src/utils/interfaces.ts:607](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L607) + +*** + +### hoursVolunteered + +> **hoursVolunteered**: `null` \| `number` + +Defined in: [src/utils/interfaces.ts:608](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L608) + +*** + +### user + +> **user**: [`InterfaceUserInfo`](InterfaceUserInfo.md) + +Defined in: [src/utils/interfaces.ts:609](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L609) diff --git a/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceFormData.md b/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceFormData.md new file mode 100644 index 0000000000..752fc6c076 --- /dev/null +++ b/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceFormData.md @@ -0,0 +1,49 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / [utils/interfaces](../README.md) / InterfaceFormData + +# Interface: InterfaceFormData + +Defined in: [src/utils/interfaces.ts:552](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L552) + +## Properties + +### email + +> **email**: `string` + +Defined in: [src/utils/interfaces.ts:555](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L555) + +*** + +### firstName + +> **firstName**: `string` + +Defined in: [src/utils/interfaces.ts:553](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L553) + +*** + +### gender + +> **gender**: `string` + +Defined in: [src/utils/interfaces.ts:557](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L557) + +*** + +### lastName + +> **lastName**: `string` + +Defined in: [src/utils/interfaces.ts:554](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L554) + +*** + +### phoneNo + +> **phoneNo**: `string` + +Defined in: [src/utils/interfaces.ts:556](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L556) diff --git a/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceFundInfo.md b/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceFundInfo.md new file mode 100644 index 0000000000..06ca15efa7 --- /dev/null +++ b/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceFundInfo.md @@ -0,0 +1,93 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / [utils/interfaces](../README.md) / InterfaceFundInfo + +# Interface: InterfaceFundInfo + +Defined in: [src/utils/interfaces.ts:351](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L351) + +## Properties + +### \_id + +> **\_id**: `string` + +Defined in: [src/utils/interfaces.ts:352](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L352) + +*** + +### createdAt + +> **createdAt**: `string` + +Defined in: [src/utils/interfaces.ts:358](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L358) + +*** + +### creator + +> **creator**: `object` + +Defined in: [src/utils/interfaces.ts:360](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L360) + +#### \_id + +> **\_id**: `string` + +#### firstName + +> **firstName**: `string` + +#### lastName + +> **lastName**: `string` + +*** + +### isArchived + +> **isArchived**: `boolean` + +Defined in: [src/utils/interfaces.ts:356](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L356) + +*** + +### isDefault + +> **isDefault**: `boolean` + +Defined in: [src/utils/interfaces.ts:357](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L357) + +*** + +### name + +> **name**: `string` + +Defined in: [src/utils/interfaces.ts:353](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L353) + +*** + +### organizationId + +> **organizationId**: `string` + +Defined in: [src/utils/interfaces.ts:359](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L359) + +*** + +### refrenceNumber + +> **refrenceNumber**: `string` + +Defined in: [src/utils/interfaces.ts:354](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L354) + +*** + +### taxDeductible + +> **taxDeductible**: `boolean` + +Defined in: [src/utils/interfaces.ts:355](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L355) diff --git a/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceMapType.md b/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceMapType.md new file mode 100644 index 0000000000..0f116830e8 --- /dev/null +++ b/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceMapType.md @@ -0,0 +1,13 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / [utils/interfaces](../README.md) / InterfaceMapType + +# Interface: InterfaceMapType + +Defined in: [src/utils/interfaces.ts:596](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L596) + +## Indexable + +\[`key`: `string`\]: `string` diff --git a/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceMemberInfo.md b/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceMemberInfo.md new file mode 100644 index 0000000000..0b97231554 --- /dev/null +++ b/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceMemberInfo.md @@ -0,0 +1,69 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / [utils/interfaces](../README.md) / InterfaceMemberInfo + +# Interface: InterfaceMemberInfo + +Defined in: [src/utils/interfaces.ts:79](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L79) + +## Properties + +### \_id + +> **\_id**: `string` + +Defined in: [src/utils/interfaces.ts:80](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L80) + +*** + +### createdAt + +> **createdAt**: `string` + +Defined in: [src/utils/interfaces.ts:85](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L85) + +*** + +### email + +> **email**: `string` + +Defined in: [src/utils/interfaces.ts:83](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L83) + +*** + +### firstName + +> **firstName**: `string` + +Defined in: [src/utils/interfaces.ts:81](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L81) + +*** + +### image + +> **image**: `string` + +Defined in: [src/utils/interfaces.ts:84](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L84) + +*** + +### lastName + +> **lastName**: `string` + +Defined in: [src/utils/interfaces.ts:82](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L82) + +*** + +### organizationsBlockedBy + +> **organizationsBlockedBy**: `object`[] + +Defined in: [src/utils/interfaces.ts:86](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L86) + +#### \_id + +> **\_id**: `string` diff --git a/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceMembersList.md b/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceMembersList.md new file mode 100644 index 0000000000..0425bed412 --- /dev/null +++ b/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceMembersList.md @@ -0,0 +1,25 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / [utils/interfaces](../README.md) / InterfaceMembersList + +# Interface: InterfaceMembersList + +Defined in: [src/utils/interfaces.ts:72](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L72) + +## Properties + +### organizations + +> **organizations**: `object`[] + +Defined in: [src/utils/interfaces.ts:73](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L73) + +#### \_id + +> **\_id**: `string` + +#### members + +> **members**: [`InterfaceMemberInfo`](InterfaceMemberInfo.md)[] diff --git a/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceOrgConnectionInfoType.md b/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceOrgConnectionInfoType.md new file mode 100644 index 0000000000..a18973f322 --- /dev/null +++ b/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceOrgConnectionInfoType.md @@ -0,0 +1,93 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / [utils/interfaces](../README.md) / InterfaceOrgConnectionInfoType + +# Interface: InterfaceOrgConnectionInfoType + +Defined in: [src/utils/interfaces.ts:91](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L91) + +## Properties + +### \_id + +> **\_id**: `string` + +Defined in: [src/utils/interfaces.ts:92](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L92) + +*** + +### address + +> **address**: [`InterfaceAddress`](InterfaceAddress.md) + +Defined in: [src/utils/interfaces.ts:107](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L107) + +*** + +### admins + +> **admins**: `object`[] + +Defined in: [src/utils/interfaces.ts:103](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L103) + +#### \_id + +> **\_id**: `string` + +*** + +### createdAt + +> **createdAt**: `string` + +Defined in: [src/utils/interfaces.ts:106](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L106) + +*** + +### creator + +> **creator**: `object` + +Defined in: [src/utils/interfaces.ts:94](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L94) + +#### \_id + +> **\_id**: `string` + +#### firstName + +> **firstName**: `string` + +#### lastName + +> **lastName**: `string` + +*** + +### image + +> **image**: `null` \| `string` + +Defined in: [src/utils/interfaces.ts:93](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L93) + +*** + +### members + +> **members**: `object`[] + +Defined in: [src/utils/interfaces.ts:100](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L100) + +#### \_id + +> **\_id**: `string` + +*** + +### name + +> **name**: `string` + +Defined in: [src/utils/interfaces.ts:99](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L99) diff --git a/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceOrgConnectionType.md b/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceOrgConnectionType.md new file mode 100644 index 0000000000..16cc231ea0 --- /dev/null +++ b/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceOrgConnectionType.md @@ -0,0 +1,17 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / [utils/interfaces](../README.md) / InterfaceOrgConnectionType + +# Interface: InterfaceOrgConnectionType + +Defined in: [src/utils/interfaces.ts:109](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L109) + +## Properties + +### organizationsConnection + +> **organizationsConnection**: [`InterfaceOrgConnectionInfoType`](InterfaceOrgConnectionInfoType.md)[] + +Defined in: [src/utils/interfaces.ts:110](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L110) diff --git a/docs/docs/auto-docs/utils/interfaces/interfaces/InterfacePledgeInfo.md b/docs/docs/auto-docs/utils/interfaces/interfaces/InterfacePledgeInfo.md new file mode 100644 index 0000000000..4b34faad78 --- /dev/null +++ b/docs/docs/auto-docs/utils/interfaces/interfaces/InterfacePledgeInfo.md @@ -0,0 +1,77 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / [utils/interfaces](../README.md) / InterfacePledgeInfo + +# Interface: InterfacePledgeInfo + +Defined in: [src/utils/interfaces.ts:371](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L371) + +## Properties + +### \_id + +> **\_id**: `string` + +Defined in: [src/utils/interfaces.ts:372](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L372) + +*** + +### amount + +> **amount**: `number` + +Defined in: [src/utils/interfaces.ts:374](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L374) + +*** + +### campaign? + +> `optional` **campaign**: `object` + +Defined in: [src/utils/interfaces.ts:373](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L373) + +#### \_id + +> **\_id**: `string` + +#### endDate + +> **endDate**: `Date` + +#### name + +> **name**: `string` + +*** + +### currency + +> **currency**: `string` + +Defined in: [src/utils/interfaces.ts:375](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L375) + +*** + +### endDate + +> **endDate**: `string` + +Defined in: [src/utils/interfaces.ts:376](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L376) + +*** + +### startDate + +> **startDate**: `string` + +Defined in: [src/utils/interfaces.ts:377](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L377) + +*** + +### users + +> **users**: [`InterfaceUserInfo`](InterfaceUserInfo.md)[] + +Defined in: [src/utils/interfaces.ts:378](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L378) diff --git a/docs/docs/auto-docs/utils/interfaces/interfaces/InterfacePostCard.md b/docs/docs/auto-docs/utils/interfaces/interfaces/InterfacePostCard.md new file mode 100644 index 0000000000..4b5868c1e4 --- /dev/null +++ b/docs/docs/auto-docs/utils/interfaces/interfaces/InterfacePostCard.md @@ -0,0 +1,173 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / [utils/interfaces](../README.md) / InterfacePostCard + +# Interface: InterfacePostCard + +Defined in: [src/utils/interfaces.ts:471](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L471) + +## Properties + +### commentCount + +> **commentCount**: `number` + +Defined in: [src/utils/interfaces.ts:485](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L485) + +*** + +### comments + +> **comments**: `object`[] + +Defined in: [src/utils/interfaces.ts:486](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L486) + +#### creator + +> **creator**: `object` + +##### creator.email + +> **email**: `string` + +##### creator.firstName + +> **firstName**: `string` + +##### creator.id + +> **id**: `string` + +##### creator.lastName + +> **lastName**: `string` + +#### id + +> **id**: `string` + +#### likeCount + +> **likeCount**: `number` + +#### likedBy + +> **likedBy**: `object`[] + +#### text + +> **text**: `string` + +*** + +### creator + +> **creator**: `object` + +Defined in: [src/utils/interfaces.ts:473](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L473) + +#### email + +> **email**: `string` + +#### firstName + +> **firstName**: `string` + +#### id + +> **id**: `string` + +#### lastName + +> **lastName**: `string` + +*** + +### fetchPosts() + +> **fetchPosts**: () => `void` + +Defined in: [src/utils/interfaces.ts:505](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L505) + +#### Returns + +`void` + +*** + +### id + +> **id**: `string` + +Defined in: [src/utils/interfaces.ts:472](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L472) + +*** + +### image + +> **image**: `null` \| `string` + +Defined in: [src/utils/interfaces.ts:480](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L480) + +*** + +### likeCount + +> **likeCount**: `number` + +Defined in: [src/utils/interfaces.ts:484](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L484) + +*** + +### likedBy + +> **likedBy**: `object`[] + +Defined in: [src/utils/interfaces.ts:500](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L500) + +#### firstName + +> **firstName**: `string` + +#### id + +> **id**: `string` + +#### lastName + +> **lastName**: `string` + +*** + +### postedAt + +> **postedAt**: `string` + +Defined in: [src/utils/interfaces.ts:479](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L479) + +*** + +### text + +> **text**: `string` + +Defined in: [src/utils/interfaces.ts:482](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L482) + +*** + +### title + +> **title**: `string` + +Defined in: [src/utils/interfaces.ts:483](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L483) + +*** + +### video + +> **video**: `null` \| `string` + +Defined in: [src/utils/interfaces.ts:481](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L481) diff --git a/docs/docs/auto-docs/utils/interfaces/interfaces/InterfacePostForm.md b/docs/docs/auto-docs/utils/interfaces/interfaces/InterfacePostForm.md new file mode 100644 index 0000000000..80305fe936 --- /dev/null +++ b/docs/docs/auto-docs/utils/interfaces/interfaces/InterfacePostForm.md @@ -0,0 +1,49 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / [utils/interfaces](../README.md) / InterfacePostForm + +# Interface: InterfacePostForm + +Defined in: [src/utils/interfaces.ts:173](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L173) + +## Properties + +### pinned + +> **pinned**: `boolean` + +Defined in: [src/utils/interfaces.ts:178](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L178) + +*** + +### postinfo + +> **postinfo**: `string` + +Defined in: [src/utils/interfaces.ts:175](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L175) + +*** + +### postphoto + +> **postphoto**: `null` \| `string` + +Defined in: [src/utils/interfaces.ts:176](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L176) + +*** + +### posttitle + +> **posttitle**: `string` + +Defined in: [src/utils/interfaces.ts:174](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L174) + +*** + +### postvideo + +> **postvideo**: `null` \| `string` + +Defined in: [src/utils/interfaces.ts:177](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L177) diff --git a/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceQueryBlockPageMemberListItem.md b/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceQueryBlockPageMemberListItem.md new file mode 100644 index 0000000000..4471aa97f3 --- /dev/null +++ b/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceQueryBlockPageMemberListItem.md @@ -0,0 +1,53 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / [utils/interfaces](../README.md) / InterfaceQueryBlockPageMemberListItem + +# Interface: InterfaceQueryBlockPageMemberListItem + +Defined in: [src/utils/interfaces.ts:386](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L386) + +## Properties + +### \_id + +> **\_id**: `string` + +Defined in: [src/utils/interfaces.ts:387](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L387) + +*** + +### email + +> **email**: `string` + +Defined in: [src/utils/interfaces.ts:390](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L390) + +*** + +### firstName + +> **firstName**: `string` + +Defined in: [src/utils/interfaces.ts:388](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L388) + +*** + +### lastName + +> **lastName**: `string` + +Defined in: [src/utils/interfaces.ts:389](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L389) + +*** + +### organizationsBlockedBy + +> **organizationsBlockedBy**: `object`[] + +Defined in: [src/utils/interfaces.ts:391](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L391) + +#### \_id + +> **\_id**: `string` diff --git a/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceQueryFundCampaignsPledges.md b/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceQueryFundCampaignsPledges.md new file mode 100644 index 0000000000..e32fe7266d --- /dev/null +++ b/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceQueryFundCampaignsPledges.md @@ -0,0 +1,69 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / [utils/interfaces](../README.md) / InterfaceQueryFundCampaignsPledges + +# Interface: InterfaceQueryFundCampaignsPledges + +Defined in: [src/utils/interfaces.ts:340](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L340) + +## Properties + +### currency + +> **currency**: `string` + +Defined in: [src/utils/interfaces.ts:346](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L346) + +*** + +### endDate + +> **endDate**: `Date` + +Defined in: [src/utils/interfaces.ts:348](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L348) + +*** + +### fundId + +> **fundId**: `object` + +Defined in: [src/utils/interfaces.ts:341](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L341) + +#### name + +> **name**: `string` + +*** + +### fundingGoal + +> **fundingGoal**: `number` + +Defined in: [src/utils/interfaces.ts:345](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L345) + +*** + +### name + +> **name**: `string` + +Defined in: [src/utils/interfaces.ts:344](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L344) + +*** + +### pledges + +> **pledges**: [`InterfacePledgeInfo`](InterfacePledgeInfo.md)[] + +Defined in: [src/utils/interfaces.ts:349](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L349) + +*** + +### startDate + +> **startDate**: `Date` + +Defined in: [src/utils/interfaces.ts:347](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L347) diff --git a/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceQueryMembershipRequestsListItem.md b/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceQueryMembershipRequestsListItem.md new file mode 100644 index 0000000000..602edf276c --- /dev/null +++ b/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceQueryMembershipRequestsListItem.md @@ -0,0 +1,25 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / [utils/interfaces](../README.md) / InterfaceQueryMembershipRequestsListItem + +# Interface: InterfaceQueryMembershipRequestsListItem + +Defined in: [src/utils/interfaces.ts:516](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L516) + +## Properties + +### organizations + +> **organizations**: `object`[] + +Defined in: [src/utils/interfaces.ts:517](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L517) + +#### \_id + +> **\_id**: `string` + +#### membershipRequests + +> **membershipRequests**: `object`[] diff --git a/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceQueryOrganizationAdvertisementListItem.md b/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceQueryOrganizationAdvertisementListItem.md new file mode 100644 index 0000000000..816a74ae83 --- /dev/null +++ b/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceQueryOrganizationAdvertisementListItem.md @@ -0,0 +1,45 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / [utils/interfaces](../README.md) / InterfaceQueryOrganizationAdvertisementListItem + +# Interface: InterfaceQueryOrganizationAdvertisementListItem + +Defined in: [src/utils/interfaces.ts:296](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L296) + +## Properties + +### advertisements + +> **advertisements**: `object` + +Defined in: [src/utils/interfaces.ts:297](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L297) + +#### edges + +> **edges**: `object`[] + +#### pageInfo + +> **pageInfo**: `object` + +##### pageInfo.endCursor + +> **endCursor**: `string` + +##### pageInfo.hasNextPage + +> **hasNextPage**: `boolean` + +##### pageInfo.hasPreviousPage + +> **hasPreviousPage**: `boolean` + +##### pageInfo.startCursor + +> **startCursor**: `string` + +#### totalCount + +> **totalCount**: `number` diff --git a/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceQueryOrganizationEventListItem.md b/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceQueryOrganizationEventListItem.md new file mode 100644 index 0000000000..2fdda6d173 --- /dev/null +++ b/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceQueryOrganizationEventListItem.md @@ -0,0 +1,149 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / [utils/interfaces](../README.md) / InterfaceQueryOrganizationEventListItem + +# Interface: InterfaceQueryOrganizationEventListItem + +Defined in: [src/utils/interfaces.ts:380](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L380) + +## Extends + +- [`InterfaceBaseEvent`](InterfaceBaseEvent.md) + +## Properties + +### \_id + +> **\_id**: `string` + +Defined in: [src/utils/interfaces.ts:19](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L19) + +#### Inherited from + +[`InterfaceBaseEvent`](InterfaceBaseEvent.md).[`_id`](InterfaceBaseEvent.md#_id) + +*** + +### allDay + +> **allDay**: `boolean` + +Defined in: [src/utils/interfaces.ts:27](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L27) + +#### Inherited from + +[`InterfaceBaseEvent`](InterfaceBaseEvent.md).[`allDay`](InterfaceBaseEvent.md#allday) + +*** + +### description + +> **description**: `string` + +Defined in: [src/utils/interfaces.ts:21](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L21) + +#### Inherited from + +[`InterfaceBaseEvent`](InterfaceBaseEvent.md).[`description`](InterfaceBaseEvent.md#description) + +*** + +### endDate + +> **endDate**: `string` + +Defined in: [src/utils/interfaces.ts:23](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L23) + +#### Inherited from + +[`InterfaceBaseEvent`](InterfaceBaseEvent.md).[`endDate`](InterfaceBaseEvent.md#enddate) + +*** + +### endTime + +> **endTime**: `string` + +Defined in: [src/utils/interfaces.ts:26](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L26) + +#### Inherited from + +[`InterfaceBaseEvent`](InterfaceBaseEvent.md).[`endTime`](InterfaceBaseEvent.md#endtime) + +*** + +### isPublic + +> **isPublic**: `boolean` + +Defined in: [src/utils/interfaces.ts:382](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L382) + +*** + +### isRegisterable + +> **isRegisterable**: `boolean` + +Defined in: [src/utils/interfaces.ts:383](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L383) + +*** + +### location + +> **location**: `string` + +Defined in: [src/utils/interfaces.ts:24](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L24) + +#### Inherited from + +[`InterfaceBaseEvent`](InterfaceBaseEvent.md).[`location`](InterfaceBaseEvent.md#location) + +*** + +### recurring + +> **recurring**: `boolean` + +Defined in: [src/utils/interfaces.ts:28](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L28) + +#### Inherited from + +[`InterfaceBaseEvent`](InterfaceBaseEvent.md).[`recurring`](InterfaceBaseEvent.md#recurring) + +*** + +### startDate + +> **startDate**: `string` + +Defined in: [src/utils/interfaces.ts:22](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L22) + +#### Inherited from + +[`InterfaceBaseEvent`](InterfaceBaseEvent.md).[`startDate`](InterfaceBaseEvent.md#startdate) + +*** + +### startTime + +> **startTime**: `string` + +Defined in: [src/utils/interfaces.ts:25](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L25) + +#### Inherited from + +[`InterfaceBaseEvent`](InterfaceBaseEvent.md).[`startTime`](InterfaceBaseEvent.md#starttime) + +*** + +### title + +> **title**: `string` + +Defined in: [src/utils/interfaces.ts:20](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L20) + +#### Inherited from + +[`InterfaceBaseEvent`](InterfaceBaseEvent.md).[`title`](InterfaceBaseEvent.md#title) diff --git a/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceQueryOrganizationFundCampaigns.md b/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceQueryOrganizationFundCampaigns.md new file mode 100644 index 0000000000..584b579e71 --- /dev/null +++ b/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceQueryOrganizationFundCampaigns.md @@ -0,0 +1,61 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / [utils/interfaces](../README.md) / InterfaceQueryOrganizationFundCampaigns + +# Interface: InterfaceQueryOrganizationFundCampaigns + +Defined in: [src/utils/interfaces.ts:319](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L319) + +## Properties + +### campaigns + +> **campaigns**: `object`[] + +Defined in: [src/utils/interfaces.ts:322](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L322) + +#### \_id + +> **\_id**: `string` + +#### createdAt + +> **createdAt**: `string` + +#### currency + +> **currency**: `string` + +#### endDate + +> **endDate**: `Date` + +#### fundingGoal + +> **fundingGoal**: `number` + +#### name + +> **name**: `string` + +#### startDate + +> **startDate**: `Date` + +*** + +### isArchived + +> **isArchived**: `boolean` + +Defined in: [src/utils/interfaces.ts:321](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L321) + +*** + +### name + +> **name**: `string` + +Defined in: [src/utils/interfaces.ts:320](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L320) diff --git a/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceQueryOrganizationListObject.md b/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceQueryOrganizationListObject.md new file mode 100644 index 0000000000..b5ef32e567 --- /dev/null +++ b/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceQueryOrganizationListObject.md @@ -0,0 +1,89 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / [utils/interfaces](../README.md) / InterfaceQueryOrganizationListObject + +# Interface: InterfaceQueryOrganizationListObject + +Defined in: [src/utils/interfaces.ts:155](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L155) + +## Properties + +### \_id + +> **\_id**: `string` + +Defined in: [src/utils/interfaces.ts:156](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L156) + +*** + +### address + +> **address**: [`InterfaceAddress`](InterfaceAddress.md) + +Defined in: [src/utils/interfaces.ts:170](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L170) + +*** + +### admins + +> **admins**: `object`[] + +Defined in: [src/utils/interfaces.ts:166](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L166) + +#### \_id + +> **\_id**: `string` + +*** + +### createdAt + +> **createdAt**: `string` + +Defined in: [src/utils/interfaces.ts:169](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L169) + +*** + +### creator + +> **creator**: `object` + +Defined in: [src/utils/interfaces.ts:158](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L158) + +#### firstName + +> **firstName**: `string` + +#### lastName + +> **lastName**: `string` + +*** + +### image + +> **image**: `null` \| `string` + +Defined in: [src/utils/interfaces.ts:157](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L157) + +*** + +### members + +> **members**: `object`[] + +Defined in: [src/utils/interfaces.ts:163](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L163) + +#### \_id + +> **\_id**: `string` + +*** + +### name + +> **name**: `string` + +Defined in: [src/utils/interfaces.ts:162](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L162) diff --git a/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceQueryOrganizationPostListItem.md b/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceQueryOrganizationPostListItem.md new file mode 100644 index 0000000000..ff4cee8122 --- /dev/null +++ b/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceQueryOrganizationPostListItem.md @@ -0,0 +1,45 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / [utils/interfaces](../README.md) / InterfaceQueryOrganizationPostListItem + +# Interface: InterfaceQueryOrganizationPostListItem + +Defined in: [src/utils/interfaces.ts:180](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L180) + +## Properties + +### posts + +> **posts**: `object` + +Defined in: [src/utils/interfaces.ts:181](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L181) + +#### edges + +> **edges**: `object`[] + +#### pageInfo + +> **pageInfo**: `object` + +##### pageInfo.endCursor + +> **endCursor**: `string` + +##### pageInfo.hasNextPage + +> **hasNextPage**: `boolean` + +##### pageInfo.hasPreviousPage + +> **hasPreviousPage**: `boolean` + +##### pageInfo.startCursor + +> **startCursor**: `string` + +#### totalCount + +> **totalCount**: `number` diff --git a/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceQueryOrganizationUserTags.md b/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceQueryOrganizationUserTags.md new file mode 100644 index 0000000000..d3a48e8eab --- /dev/null +++ b/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceQueryOrganizationUserTags.md @@ -0,0 +1,17 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / [utils/interfaces](../README.md) / InterfaceQueryOrganizationUserTags + +# Interface: InterfaceQueryOrganizationUserTags + +Defined in: [src/utils/interfaces.ts:269](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L269) + +## Properties + +### userTags + +> **userTags**: `InterfaceTagNodeData` + +Defined in: [src/utils/interfaces.ts:270](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L270) diff --git a/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceQueryOrganizationsListObject.md b/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceQueryOrganizationsListObject.md new file mode 100644 index 0000000000..5f1eaccb84 --- /dev/null +++ b/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceQueryOrganizationsListObject.md @@ -0,0 +1,189 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / [utils/interfaces](../README.md) / InterfaceQueryOrganizationsListObject + +# Interface: InterfaceQueryOrganizationsListObject + +Defined in: [src/utils/interfaces.ts:113](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L113) + +## Properties + +### \_id + +> **\_id**: `string` + +Defined in: [src/utils/interfaces.ts:114](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L114) + +*** + +### address + +> **address**: [`InterfaceAddress`](InterfaceAddress.md) + +Defined in: [src/utils/interfaces.ts:123](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L123) + +*** + +### admins + +> **admins**: `object`[] + +Defined in: [src/utils/interfaces.ts:132](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L132) + +#### \_id + +> **\_id**: `string` + +#### createdAt + +> **createdAt**: `string` + +#### email + +> **email**: `string` + +#### firstName + +> **firstName**: `string` + +#### lastName + +> **lastName**: `string` + +*** + +### blockedUsers + +> **blockedUsers**: `object`[] + +Defined in: [src/utils/interfaces.ts:147](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L147) + +#### \_id + +> **\_id**: `string` + +#### email + +> **email**: `string` + +#### firstName + +> **firstName**: `string` + +#### lastName + +> **lastName**: `string` + +*** + +### creator + +> **creator**: `object` + +Defined in: [src/utils/interfaces.ts:116](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L116) + +#### email + +> **email**: `string` + +#### firstName + +> **firstName**: `string` + +#### lastName + +> **lastName**: `string` + +*** + +### description + +> **description**: `string` + +Defined in: [src/utils/interfaces.ts:122](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L122) + +*** + +### image + +> **image**: `null` \| `string` + +Defined in: [src/utils/interfaces.ts:115](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L115) + +*** + +### members + +> **members**: `object`[] + +Defined in: [src/utils/interfaces.ts:126](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L126) + +#### \_id + +> **\_id**: `string` + +#### email + +> **email**: `string` + +#### firstName + +> **firstName**: `string` + +#### lastName + +> **lastName**: `string` + +*** + +### membershipRequests + +> **membershipRequests**: `object`[] + +Defined in: [src/utils/interfaces.ts:139](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L139) + +#### \_id + +> **\_id**: `string` + +#### user + +> **user**: `object` + +##### user.email + +> **email**: `string` + +##### user.firstName + +> **firstName**: `string` + +##### user.lastName + +> **lastName**: `string` + +*** + +### name + +> **name**: `string` + +Defined in: [src/utils/interfaces.ts:121](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L121) + +*** + +### userRegistrationRequired + +> **userRegistrationRequired**: `boolean` + +Defined in: [src/utils/interfaces.ts:124](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L124) + +*** + +### visibleInSearch + +> **visibleInSearch**: `boolean` + +Defined in: [src/utils/interfaces.ts:125](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L125) diff --git a/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceQueryUserListItem.md b/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceQueryUserListItem.md new file mode 100644 index 0000000000..70ab5318fb --- /dev/null +++ b/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceQueryUserListItem.md @@ -0,0 +1,89 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / [utils/interfaces](../README.md) / InterfaceQueryUserListItem + +# Interface: InterfaceQueryUserListItem + +Defined in: [src/utils/interfaces.ts:396](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L396) + +## Properties + +### appUserProfile + +> **appUserProfile**: `object` + +Defined in: [src/utils/interfaces.ts:435](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L435) + +#### \_id + +> **\_id**: `string` + +#### adminFor + +> **adminFor**: `object`[] + +#### createdEvents + +> **createdEvents**: `object`[] + +#### createdOrganizations + +> **createdOrganizations**: `object`[] + +#### eventAdmin + +> **eventAdmin**: `object`[] + +#### isSuperAdmin + +> **isSuperAdmin**: `boolean` + +*** + +### user + +> **user**: `object` + +Defined in: [src/utils/interfaces.ts:397](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L397) + +#### \_id + +> **\_id**: `string` + +#### createdAt + +> **createdAt**: `string` + +#### email + +> **email**: `string` + +#### firstName + +> **firstName**: `string` + +#### image + +> **image**: `null` \| `string` + +#### joinedOrganizations + +> **joinedOrganizations**: `object`[] + +#### lastName + +> **lastName**: `string` + +#### membershipRequests + +> **membershipRequests**: `object`[] + +#### organizationsBlockedBy + +> **organizationsBlockedBy**: `object`[] + +#### registeredEvents + +> **registeredEvents**: `object`[] diff --git a/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceQueryUserTagChildTags.md b/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceQueryUserTagChildTags.md new file mode 100644 index 0000000000..9aee8b0d9a --- /dev/null +++ b/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceQueryUserTagChildTags.md @@ -0,0 +1,41 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / [utils/interfaces](../README.md) / InterfaceQueryUserTagChildTags + +# Interface: InterfaceQueryUserTagChildTags + +Defined in: [src/utils/interfaces.ts:273](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L273) + +## Properties + +### ancestorTags + +> **ancestorTags**: `object`[] + +Defined in: [src/utils/interfaces.ts:276](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L276) + +#### \_id + +> **\_id**: `string` + +#### name + +> **name**: `string` + +*** + +### childTags + +> **childTags**: `InterfaceTagNodeData` + +Defined in: [src/utils/interfaces.ts:275](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L275) + +*** + +### name + +> **name**: `string` + +Defined in: [src/utils/interfaces.ts:274](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L274) diff --git a/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceQueryUserTagsAssignedMembers.md b/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceQueryUserTagsAssignedMembers.md new file mode 100644 index 0000000000..a785481556 --- /dev/null +++ b/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceQueryUserTagsAssignedMembers.md @@ -0,0 +1,41 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / [utils/interfaces](../README.md) / InterfaceQueryUserTagsAssignedMembers + +# Interface: InterfaceQueryUserTagsAssignedMembers + +Defined in: [src/utils/interfaces.ts:282](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L282) + +## Properties + +### ancestorTags + +> **ancestorTags**: `object`[] + +Defined in: [src/utils/interfaces.ts:285](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L285) + +#### \_id + +> **\_id**: `string` + +#### name + +> **name**: `string` + +*** + +### name + +> **name**: `string` + +Defined in: [src/utils/interfaces.ts:283](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L283) + +*** + +### usersAssignedTo + +> **usersAssignedTo**: `InterfaceTagMembersData` + +Defined in: [src/utils/interfaces.ts:284](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L284) diff --git a/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceQueryUserTagsMembersToAssignTo.md b/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceQueryUserTagsMembersToAssignTo.md new file mode 100644 index 0000000000..5d8a3af483 --- /dev/null +++ b/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceQueryUserTagsMembersToAssignTo.md @@ -0,0 +1,25 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / [utils/interfaces](../README.md) / InterfaceQueryUserTagsMembersToAssignTo + +# Interface: InterfaceQueryUserTagsMembersToAssignTo + +Defined in: [src/utils/interfaces.ts:291](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L291) + +## Properties + +### name + +> **name**: `string` + +Defined in: [src/utils/interfaces.ts:292](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L292) + +*** + +### usersToAssignTo + +> **usersToAssignTo**: `InterfaceTagMembersData` + +Defined in: [src/utils/interfaces.ts:293](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L293) diff --git a/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceQueryVenueListItem.md b/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceQueryVenueListItem.md new file mode 100644 index 0000000000..f29c8fb637 --- /dev/null +++ b/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceQueryVenueListItem.md @@ -0,0 +1,49 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / [utils/interfaces](../README.md) / InterfaceQueryVenueListItem + +# Interface: InterfaceQueryVenueListItem + +Defined in: [src/utils/interfaces.ts:445](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L445) + +## Properties + +### \_id + +> **\_id**: `string` + +Defined in: [src/utils/interfaces.ts:446](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L446) + +*** + +### capacity + +> **capacity**: `string` + +Defined in: [src/utils/interfaces.ts:450](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L450) + +*** + +### description + +> **description**: `null` \| `string` + +Defined in: [src/utils/interfaces.ts:448](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L448) + +*** + +### image + +> **image**: `null` \| `string` + +Defined in: [src/utils/interfaces.ts:449](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L449) + +*** + +### name + +> **name**: `string` + +Defined in: [src/utils/interfaces.ts:447](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L447) diff --git a/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceTagData.md b/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceTagData.md new file mode 100644 index 0000000000..44bff502a7 --- /dev/null +++ b/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceTagData.md @@ -0,0 +1,77 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / [utils/interfaces](../README.md) / InterfaceTagData + +# Interface: InterfaceTagData + +Defined in: [src/utils/interfaces.ts:222](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L222) + +## Properties + +### \_id + +> **\_id**: `string` + +Defined in: [src/utils/interfaces.ts:223](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L223) + +*** + +### ancestorTags + +> **ancestorTags**: `object`[] + +Defined in: [src/utils/interfaces.ts:232](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L232) + +#### \_id + +> **\_id**: `string` + +#### name + +> **name**: `string` + +*** + +### childTags + +> **childTags**: `object` + +Defined in: [src/utils/interfaces.ts:229](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L229) + +#### totalCount + +> **totalCount**: `number` + +*** + +### name + +> **name**: `string` + +Defined in: [src/utils/interfaces.ts:224](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L224) + +*** + +### parentTag + +> **parentTag**: `object` + +Defined in: [src/utils/interfaces.ts:225](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L225) + +#### \_id + +> **\_id**: `string` + +*** + +### usersAssignedTo + +> **usersAssignedTo**: `object` + +Defined in: [src/utils/interfaces.ts:226](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L226) + +#### totalCount + +> **totalCount**: `number` diff --git a/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceUserCampaign.md b/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceUserCampaign.md new file mode 100644 index 0000000000..926debc730 --- /dev/null +++ b/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceUserCampaign.md @@ -0,0 +1,57 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / [utils/interfaces](../README.md) / InterfaceUserCampaign + +# Interface: InterfaceUserCampaign + +Defined in: [src/utils/interfaces.ts:332](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L332) + +## Properties + +### \_id + +> **\_id**: `string` + +Defined in: [src/utils/interfaces.ts:333](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L333) + +*** + +### currency + +> **currency**: `string` + +Defined in: [src/utils/interfaces.ts:338](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L338) + +*** + +### endDate + +> **endDate**: `Date` + +Defined in: [src/utils/interfaces.ts:337](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L337) + +*** + +### fundingGoal + +> **fundingGoal**: `number` + +Defined in: [src/utils/interfaces.ts:335](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L335) + +*** + +### name + +> **name**: `string` + +Defined in: [src/utils/interfaces.ts:334](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L334) + +*** + +### startDate + +> **startDate**: `Date` + +Defined in: [src/utils/interfaces.ts:336](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L336) diff --git a/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceUserEvents.md b/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceUserEvents.md new file mode 100644 index 0000000000..313cf3e385 --- /dev/null +++ b/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceUserEvents.md @@ -0,0 +1,181 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / [utils/interfaces](../README.md) / InterfaceUserEvents + +# Interface: InterfaceUserEvents + +Defined in: [src/utils/interfaces.ts:656](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L656) + +## Extends + +- [`InterfaceBaseEvent`](InterfaceBaseEvent.md) + +## Properties + +### \_id + +> **\_id**: `string` + +Defined in: [src/utils/interfaces.ts:19](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L19) + +#### Inherited from + +[`InterfaceBaseEvent`](InterfaceBaseEvent.md).[`_id`](InterfaceBaseEvent.md#_id) + +*** + +### allDay + +> **allDay**: `boolean` + +Defined in: [src/utils/interfaces.ts:27](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L27) + +#### Inherited from + +[`InterfaceBaseEvent`](InterfaceBaseEvent.md).[`allDay`](InterfaceBaseEvent.md#allday) + +*** + +### description + +> **description**: `string` + +Defined in: [src/utils/interfaces.ts:21](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L21) + +#### Inherited from + +[`InterfaceBaseEvent`](InterfaceBaseEvent.md).[`description`](InterfaceBaseEvent.md#description) + +*** + +### endDate + +> **endDate**: `string` + +Defined in: [src/utils/interfaces.ts:23](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L23) + +#### Inherited from + +[`InterfaceBaseEvent`](InterfaceBaseEvent.md).[`endDate`](InterfaceBaseEvent.md#enddate) + +*** + +### endTime + +> **endTime**: `string` + +Defined in: [src/utils/interfaces.ts:26](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L26) + +#### Inherited from + +[`InterfaceBaseEvent`](InterfaceBaseEvent.md).[`endTime`](InterfaceBaseEvent.md#endtime) + +*** + +### location + +> **location**: `string` + +Defined in: [src/utils/interfaces.ts:24](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L24) + +#### Inherited from + +[`InterfaceBaseEvent`](InterfaceBaseEvent.md).[`location`](InterfaceBaseEvent.md#location) + +*** + +### recurring + +> **recurring**: `boolean` + +Defined in: [src/utils/interfaces.ts:28](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L28) + +#### Inherited from + +[`InterfaceBaseEvent`](InterfaceBaseEvent.md).[`recurring`](InterfaceBaseEvent.md#recurring) + +*** + +### startDate + +> **startDate**: `string` + +Defined in: [src/utils/interfaces.ts:22](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L22) + +#### Inherited from + +[`InterfaceBaseEvent`](InterfaceBaseEvent.md).[`startDate`](InterfaceBaseEvent.md#startdate) + +*** + +### startTime + +> **startTime**: `string` + +Defined in: [src/utils/interfaces.ts:25](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L25) + +#### Inherited from + +[`InterfaceBaseEvent`](InterfaceBaseEvent.md).[`startTime`](InterfaceBaseEvent.md#starttime) + +*** + +### title + +> **title**: `string` + +Defined in: [src/utils/interfaces.ts:20](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L20) + +#### Inherited from + +[`InterfaceBaseEvent`](InterfaceBaseEvent.md).[`title`](InterfaceBaseEvent.md#title) + +*** + +### volunteerGroups + +> **volunteerGroups**: `object`[] + +Defined in: [src/utils/interfaces.ts:657](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L657) + +#### \_id + +> **\_id**: `string` + +#### description + +> **description**: `string` + +#### name + +> **name**: `string` + +#### volunteers + +> **volunteers**: `object`[] + +#### volunteersRequired + +> **volunteersRequired**: `number` + +*** + +### volunteers + +> **volunteers**: `object`[] + +Defined in: [src/utils/interfaces.ts:664](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L664) + +#### \_id + +> **\_id**: `string` + +#### user + +> **user**: `object` + +##### user.\_id + +> **\_id**: `string` diff --git a/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceUserInfo.md b/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceUserInfo.md new file mode 100644 index 0000000000..0b2dc7d619 --- /dev/null +++ b/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceUserInfo.md @@ -0,0 +1,41 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / [utils/interfaces](../README.md) / InterfaceUserInfo + +# Interface: InterfaceUserInfo + +Defined in: [src/utils/interfaces.ts:10](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L10) + +## Properties + +### \_id + +> **\_id**: `string` + +Defined in: [src/utils/interfaces.ts:11](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L11) + +*** + +### firstName + +> **firstName**: `string` + +Defined in: [src/utils/interfaces.ts:12](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L12) + +*** + +### image? + +> `optional` **image**: `null` \| `string` + +Defined in: [src/utils/interfaces.ts:14](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L14) + +*** + +### lastName + +> **lastName**: `string` + +Defined in: [src/utils/interfaces.ts:13](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L13) diff --git a/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceUserType.md b/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceUserType.md new file mode 100644 index 0000000000..a8e1ef5824 --- /dev/null +++ b/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceUserType.md @@ -0,0 +1,33 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / [utils/interfaces](../README.md) / InterfaceUserType + +# Interface: InterfaceUserType + +Defined in: [src/utils/interfaces.ts:1](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L1) + +## Properties + +### user + +> **user**: `object` + +Defined in: [src/utils/interfaces.ts:2](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L2) + +#### email + +> **email**: `string` + +#### firstName + +> **firstName**: `string` + +#### image + +> **image**: `null` \| `string` + +#### lastName + +> **lastName**: `string` diff --git a/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceVolunteerGroupInfo.md b/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceVolunteerGroupInfo.md new file mode 100644 index 0000000000..0fc837d97d --- /dev/null +++ b/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceVolunteerGroupInfo.md @@ -0,0 +1,125 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / [utils/interfaces](../README.md) / InterfaceVolunteerGroupInfo + +# Interface: InterfaceVolunteerGroupInfo + +Defined in: [src/utils/interfaces.ts:622](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L622) + +## Properties + +### \_id + +> **\_id**: `string` + +Defined in: [src/utils/interfaces.ts:623](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L623) + +*** + +### assignments + +> **assignments**: `object`[] + +Defined in: [src/utils/interfaces.ts:637](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L637) + +#### \_id + +> **\_id**: `string` + +#### actionItemCategory + +> **actionItemCategory**: `object` + +##### actionItemCategory.\_id + +> **\_id**: `string` + +##### actionItemCategory.name + +> **name**: `string` + +#### allottedHours + +> **allottedHours**: `number` + +#### isCompleted + +> **isCompleted**: `boolean` + +*** + +### createdAt + +> **createdAt**: `string` + +Defined in: [src/utils/interfaces.ts:630](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L630) + +*** + +### creator + +> **creator**: [`InterfaceUserInfo`](InterfaceUserInfo.md) + +Defined in: [src/utils/interfaces.ts:631](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L631) + +*** + +### description + +> **description**: `null` \| `string` + +Defined in: [src/utils/interfaces.ts:625](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L625) + +*** + +### event + +> **event**: `object` + +Defined in: [src/utils/interfaces.ts:626](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L626) + +#### \_id + +> **\_id**: `string` + +*** + +### leader + +> **leader**: [`InterfaceUserInfo`](InterfaceUserInfo.md) + +Defined in: [src/utils/interfaces.ts:632](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L632) + +*** + +### name + +> **name**: `string` + +Defined in: [src/utils/interfaces.ts:624](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L624) + +*** + +### volunteers + +> **volunteers**: `object`[] + +Defined in: [src/utils/interfaces.ts:633](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L633) + +#### \_id + +> **\_id**: `string` + +#### user + +> **user**: [`InterfaceUserInfo`](InterfaceUserInfo.md) + +*** + +### volunteersRequired + +> **volunteersRequired**: `null` \| `number` + +Defined in: [src/utils/interfaces.ts:629](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L629) diff --git a/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceVolunteerMembership.md b/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceVolunteerMembership.md new file mode 100644 index 0000000000..ec6b6ededf --- /dev/null +++ b/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceVolunteerMembership.md @@ -0,0 +1,85 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / [utils/interfaces](../README.md) / InterfaceVolunteerMembership + +# Interface: InterfaceVolunteerMembership + +Defined in: [src/utils/interfaces.ts:672](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L672) + +## Properties + +### \_id + +> **\_id**: `string` + +Defined in: [src/utils/interfaces.ts:673](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L673) + +*** + +### createdAt + +> **createdAt**: `string` + +Defined in: [src/utils/interfaces.ts:675](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L675) + +*** + +### event + +> **event**: `object` + +Defined in: [src/utils/interfaces.ts:676](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L676) + +#### \_id + +> **\_id**: `string` + +#### startDate + +> **startDate**: `string` + +#### title + +> **title**: `string` + +*** + +### group + +> **group**: `object` + +Defined in: [src/utils/interfaces.ts:685](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L685) + +#### \_id + +> **\_id**: `string` + +#### name + +> **name**: `string` + +*** + +### status + +> **status**: `string` + +Defined in: [src/utils/interfaces.ts:674](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L674) + +*** + +### volunteer + +> **volunteer**: `object` + +Defined in: [src/utils/interfaces.ts:681](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L681) + +#### \_id + +> **\_id**: `string` + +#### user + +> **user**: [`InterfaceUserInfo`](InterfaceUserInfo.md) diff --git a/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceVolunteerRank.md b/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceVolunteerRank.md new file mode 100644 index 0000000000..0bd130f099 --- /dev/null +++ b/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceVolunteerRank.md @@ -0,0 +1,53 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / [utils/interfaces](../README.md) / InterfaceVolunteerRank + +# Interface: InterfaceVolunteerRank + +Defined in: [src/utils/interfaces.ts:691](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L691) + +## Properties + +### hoursVolunteered + +> **hoursVolunteered**: `number` + +Defined in: [src/utils/interfaces.ts:693](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L693) + +*** + +### rank + +> **rank**: `number` + +Defined in: [src/utils/interfaces.ts:692](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L692) + +*** + +### user + +> **user**: `object` + +Defined in: [src/utils/interfaces.ts:694](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L694) + +#### \_id + +> **\_id**: `string` + +#### email + +> **email**: `string` + +#### firstName + +> **firstName**: `string` + +#### image + +> **image**: `null` \| `string` + +#### lastName + +> **lastName**: `string` diff --git a/docs/docs/auto-docs/utils/languages/README.md b/docs/docs/auto-docs/utils/languages/README.md new file mode 100644 index 0000000000..0cd8ec1f27 --- /dev/null +++ b/docs/docs/auto-docs/utils/languages/README.md @@ -0,0 +1,12 @@ +[**talawa-admin**](../../README.md) + +*** + +[talawa-admin](../../modules.md) / utils/languages + +# utils/languages + +## Variables + +- [languageArray](variables/languageArray.md) +- [languages](variables/languages.md) diff --git a/docs/docs/auto-docs/utils/languages/variables/languageArray.md b/docs/docs/auto-docs/utils/languages/variables/languageArray.md new file mode 100644 index 0000000000..4f875eabe0 --- /dev/null +++ b/docs/docs/auto-docs/utils/languages/variables/languageArray.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / [utils/languages](../README.md) / languageArray + +# Variable: languageArray + +> `const` **languageArray**: `string`[] + +Defined in: [src/utils/languages.ts:1](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/languages.ts#L1) diff --git a/docs/docs/auto-docs/utils/languages/variables/languages.md b/docs/docs/auto-docs/utils/languages/variables/languages.md new file mode 100644 index 0000000000..0083c2fed7 --- /dev/null +++ b/docs/docs/auto-docs/utils/languages/variables/languages.md @@ -0,0 +1,25 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / [utils/languages](../README.md) / languages + +# Variable: languages + +> `const` **languages**: `object`[] + +Defined in: [src/utils/languages.ts:3](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/languages.ts#L3) + +## Type declaration + +### code + +> **code**: `string` = `'en'` + +### country\_code + +> **country\_code**: `string` = `'gb'` + +### name + +> **name**: `string` = `'English'` diff --git a/docs/docs/auto-docs/utils/linkValidator/README.md b/docs/docs/auto-docs/utils/linkValidator/README.md new file mode 100644 index 0000000000..873411eb0c --- /dev/null +++ b/docs/docs/auto-docs/utils/linkValidator/README.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../README.md) + +*** + +[talawa-admin](../../modules.md) / utils/linkValidator + +# utils/linkValidator + +## Functions + +- [isValidLink](functions/isValidLink.md) diff --git a/docs/docs/auto-docs/utils/linkValidator/functions/isValidLink.md b/docs/docs/auto-docs/utils/linkValidator/functions/isValidLink.md new file mode 100644 index 0000000000..e22a1e5efe --- /dev/null +++ b/docs/docs/auto-docs/utils/linkValidator/functions/isValidLink.md @@ -0,0 +1,21 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / [utils/linkValidator](../README.md) / isValidLink + +# Function: isValidLink() + +> **isValidLink**(`link`): `boolean` + +Defined in: [src/utils/linkValidator.ts:1](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/linkValidator.ts#L1) + +## Parameters + +### link + +`string` + +## Returns + +`boolean` diff --git a/docs/docs/auto-docs/utils/organizationTagsUtils/README.md b/docs/docs/auto-docs/utils/organizationTagsUtils/README.md new file mode 100644 index 0000000000..5608ca2592 --- /dev/null +++ b/docs/docs/auto-docs/utils/organizationTagsUtils/README.md @@ -0,0 +1,24 @@ +[**talawa-admin**](../../README.md) + +*** + +[talawa-admin](../../modules.md) / utils/organizationTagsUtils + +# utils/organizationTagsUtils + +## Interfaces + +- [InterfaceOrganizationSubTagsQuery](interfaces/InterfaceOrganizationSubTagsQuery.md) +- [InterfaceOrganizationTagsQuery](interfaces/InterfaceOrganizationTagsQuery.md) +- [InterfaceTagAssignedMembersQuery](interfaces/InterfaceTagAssignedMembersQuery.md) +- [InterfaceTagUsersToAssignToQuery](interfaces/InterfaceTagUsersToAssignToQuery.md) + +## Type Aliases + +- [SortedByType](type-aliases/SortedByType.md) +- [TagActionType](type-aliases/TagActionType.md) + +## Variables + +- [dataGridStyle](variables/dataGridStyle.md) +- [TAGS\_QUERY\_DATA\_CHUNK\_SIZE](variables/TAGS_QUERY_DATA_CHUNK_SIZE.md) diff --git a/docs/docs/auto-docs/utils/organizationTagsUtils/interfaces/InterfaceOrganizationSubTagsQuery.md b/docs/docs/auto-docs/utils/organizationTagsUtils/interfaces/InterfaceOrganizationSubTagsQuery.md new file mode 100644 index 0000000000..f9c9c42b4f --- /dev/null +++ b/docs/docs/auto-docs/utils/organizationTagsUtils/interfaces/InterfaceOrganizationSubTagsQuery.md @@ -0,0 +1,83 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / [utils/organizationTagsUtils](../README.md) / InterfaceOrganizationSubTagsQuery + +# Interface: InterfaceOrganizationSubTagsQuery + +Defined in: [src/utils/organizationTagsUtils.ts:83](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/organizationTagsUtils.ts#L83) + +## Extends + +- `InterfaceBaseQueryResult` + +## Properties + +### data? + +> `optional` **data**: `object` + +Defined in: [src/utils/organizationTagsUtils.ts:85](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/organizationTagsUtils.ts#L85) + +#### getChildTags + +> **getChildTags**: [`InterfaceQueryUserTagChildTags`](../../interfaces/interfaces/InterfaceQueryUserTagChildTags.md) + +*** + +### error? + +> `optional` **error**: `any` + +Defined in: [src/utils/organizationTagsUtils.ts:54](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/organizationTagsUtils.ts#L54) + +#### Inherited from + +`InterfaceBaseQueryResult.error` + +*** + +### fetchMore() + +> **fetchMore**: (`options`) => `void` + +Defined in: [src/utils/organizationTagsUtils.ts:88](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/organizationTagsUtils.ts#L88) + +#### Parameters + +##### options + +`InterfaceBaseFetchMoreOptions`\<\{ `getChildTags`: [`InterfaceQueryUserTagChildTags`](../../interfaces/interfaces/InterfaceQueryUserTagChildTags.md); \}\> + +#### Returns + +`void` + +*** + +### loading + +> **loading**: `boolean` + +Defined in: [src/utils/organizationTagsUtils.ts:53](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/organizationTagsUtils.ts#L53) + +#### Inherited from + +`InterfaceBaseQueryResult.loading` + +*** + +### refetch()? + +> `optional` **refetch**: () => `void` + +Defined in: [src/utils/organizationTagsUtils.ts:55](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/organizationTagsUtils.ts#L55) + +#### Returns + +`void` + +#### Inherited from + +`InterfaceBaseQueryResult.refetch` diff --git a/docs/docs/auto-docs/utils/organizationTagsUtils/interfaces/InterfaceOrganizationTagsQuery.md b/docs/docs/auto-docs/utils/organizationTagsUtils/interfaces/InterfaceOrganizationTagsQuery.md new file mode 100644 index 0000000000..055ff66353 --- /dev/null +++ b/docs/docs/auto-docs/utils/organizationTagsUtils/interfaces/InterfaceOrganizationTagsQuery.md @@ -0,0 +1,83 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / [utils/organizationTagsUtils](../README.md) / InterfaceOrganizationTagsQuery + +# Interface: InterfaceOrganizationTagsQuery + +Defined in: [src/utils/organizationTagsUtils.ts:71](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/organizationTagsUtils.ts#L71) + +## Extends + +- `InterfaceBaseQueryResult` + +## Properties + +### data? + +> `optional` **data**: `object` + +Defined in: [src/utils/organizationTagsUtils.ts:73](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/organizationTagsUtils.ts#L73) + +#### organizations + +> **organizations**: [`InterfaceQueryOrganizationUserTags`](../../interfaces/interfaces/InterfaceQueryOrganizationUserTags.md)[] + +*** + +### error? + +> `optional` **error**: `any` + +Defined in: [src/utils/organizationTagsUtils.ts:54](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/organizationTagsUtils.ts#L54) + +#### Inherited from + +`InterfaceBaseQueryResult.error` + +*** + +### fetchMore() + +> **fetchMore**: (`options`) => `void` + +Defined in: [src/utils/organizationTagsUtils.ts:76](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/organizationTagsUtils.ts#L76) + +#### Parameters + +##### options + +`InterfaceBaseFetchMoreOptions`\<\{ `organizations`: [`InterfaceQueryOrganizationUserTags`](../../interfaces/interfaces/InterfaceQueryOrganizationUserTags.md)[]; \}\> + +#### Returns + +`void` + +*** + +### loading + +> **loading**: `boolean` + +Defined in: [src/utils/organizationTagsUtils.ts:53](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/organizationTagsUtils.ts#L53) + +#### Inherited from + +`InterfaceBaseQueryResult.loading` + +*** + +### refetch()? + +> `optional` **refetch**: () => `void` + +Defined in: [src/utils/organizationTagsUtils.ts:55](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/organizationTagsUtils.ts#L55) + +#### Returns + +`void` + +#### Inherited from + +`InterfaceBaseQueryResult.refetch` diff --git a/docs/docs/auto-docs/utils/organizationTagsUtils/interfaces/InterfaceTagAssignedMembersQuery.md b/docs/docs/auto-docs/utils/organizationTagsUtils/interfaces/InterfaceTagAssignedMembersQuery.md new file mode 100644 index 0000000000..50d630f21b --- /dev/null +++ b/docs/docs/auto-docs/utils/organizationTagsUtils/interfaces/InterfaceTagAssignedMembersQuery.md @@ -0,0 +1,83 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / [utils/organizationTagsUtils](../README.md) / InterfaceTagAssignedMembersQuery + +# Interface: InterfaceTagAssignedMembersQuery + +Defined in: [src/utils/organizationTagsUtils.ts:95](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/organizationTagsUtils.ts#L95) + +## Extends + +- `InterfaceBaseQueryResult` + +## Properties + +### data? + +> `optional` **data**: `object` + +Defined in: [src/utils/organizationTagsUtils.ts:97](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/organizationTagsUtils.ts#L97) + +#### getAssignedUsers + +> **getAssignedUsers**: [`InterfaceQueryUserTagsAssignedMembers`](../../interfaces/interfaces/InterfaceQueryUserTagsAssignedMembers.md) + +*** + +### error? + +> `optional` **error**: `any` + +Defined in: [src/utils/organizationTagsUtils.ts:54](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/organizationTagsUtils.ts#L54) + +#### Inherited from + +`InterfaceBaseQueryResult.error` + +*** + +### fetchMore() + +> **fetchMore**: (`options`) => `void` + +Defined in: [src/utils/organizationTagsUtils.ts:100](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/organizationTagsUtils.ts#L100) + +#### Parameters + +##### options + +`InterfaceBaseFetchMoreOptions`\<\{ `getAssignedUsers`: [`InterfaceQueryUserTagsAssignedMembers`](../../interfaces/interfaces/InterfaceQueryUserTagsAssignedMembers.md); \}\> + +#### Returns + +`void` + +*** + +### loading + +> **loading**: `boolean` + +Defined in: [src/utils/organizationTagsUtils.ts:53](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/organizationTagsUtils.ts#L53) + +#### Inherited from + +`InterfaceBaseQueryResult.loading` + +*** + +### refetch()? + +> `optional` **refetch**: () => `void` + +Defined in: [src/utils/organizationTagsUtils.ts:55](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/organizationTagsUtils.ts#L55) + +#### Returns + +`void` + +#### Inherited from + +`InterfaceBaseQueryResult.refetch` diff --git a/docs/docs/auto-docs/utils/organizationTagsUtils/interfaces/InterfaceTagUsersToAssignToQuery.md b/docs/docs/auto-docs/utils/organizationTagsUtils/interfaces/InterfaceTagUsersToAssignToQuery.md new file mode 100644 index 0000000000..91bb449777 --- /dev/null +++ b/docs/docs/auto-docs/utils/organizationTagsUtils/interfaces/InterfaceTagUsersToAssignToQuery.md @@ -0,0 +1,83 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / [utils/organizationTagsUtils](../README.md) / InterfaceTagUsersToAssignToQuery + +# Interface: InterfaceTagUsersToAssignToQuery + +Defined in: [src/utils/organizationTagsUtils.ts:107](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/organizationTagsUtils.ts#L107) + +## Extends + +- `InterfaceBaseQueryResult` + +## Properties + +### data? + +> `optional` **data**: `object` + +Defined in: [src/utils/organizationTagsUtils.ts:109](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/organizationTagsUtils.ts#L109) + +#### getUsersToAssignTo + +> **getUsersToAssignTo**: [`InterfaceQueryUserTagsMembersToAssignTo`](../../interfaces/interfaces/InterfaceQueryUserTagsMembersToAssignTo.md) + +*** + +### error? + +> `optional` **error**: `any` + +Defined in: [src/utils/organizationTagsUtils.ts:54](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/organizationTagsUtils.ts#L54) + +#### Inherited from + +`InterfaceBaseQueryResult.error` + +*** + +### fetchMore() + +> **fetchMore**: (`options`) => `void` + +Defined in: [src/utils/organizationTagsUtils.ts:112](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/organizationTagsUtils.ts#L112) + +#### Parameters + +##### options + +`InterfaceBaseFetchMoreOptions`\<\{ `getUsersToAssignTo`: [`InterfaceQueryUserTagsMembersToAssignTo`](../../interfaces/interfaces/InterfaceQueryUserTagsMembersToAssignTo.md); \}\> + +#### Returns + +`void` + +*** + +### loading + +> **loading**: `boolean` + +Defined in: [src/utils/organizationTagsUtils.ts:53](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/organizationTagsUtils.ts#L53) + +#### Inherited from + +`InterfaceBaseQueryResult.loading` + +*** + +### refetch()? + +> `optional` **refetch**: () => `void` + +Defined in: [src/utils/organizationTagsUtils.ts:55](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/organizationTagsUtils.ts#L55) + +#### Returns + +`void` + +#### Inherited from + +`InterfaceBaseQueryResult.refetch` diff --git a/docs/docs/auto-docs/utils/organizationTagsUtils/type-aliases/SortedByType.md b/docs/docs/auto-docs/utils/organizationTagsUtils/type-aliases/SortedByType.md new file mode 100644 index 0000000000..ffcc161872 --- /dev/null +++ b/docs/docs/auto-docs/utils/organizationTagsUtils/type-aliases/SortedByType.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / [utils/organizationTagsUtils](../README.md) / SortedByType + +# Type Alias: SortedByType + +> **SortedByType**: `"ASCENDING"` \| `"DESCENDING"` + +Defined in: [src/utils/organizationTagsUtils.ts:48](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/organizationTagsUtils.ts#L48) diff --git a/docs/docs/auto-docs/utils/organizationTagsUtils/type-aliases/TagActionType.md b/docs/docs/auto-docs/utils/organizationTagsUtils/type-aliases/TagActionType.md new file mode 100644 index 0000000000..8109be1a04 --- /dev/null +++ b/docs/docs/auto-docs/utils/organizationTagsUtils/type-aliases/TagActionType.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / [utils/organizationTagsUtils](../README.md) / TagActionType + +# Type Alias: TagActionType + +> **TagActionType**: `"assignToTags"` \| `"removeFromTags"` + +Defined in: [src/utils/organizationTagsUtils.ts:45](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/organizationTagsUtils.ts#L45) diff --git a/docs/docs/auto-docs/utils/organizationTagsUtils/variables/TAGS_QUERY_DATA_CHUNK_SIZE.md b/docs/docs/auto-docs/utils/organizationTagsUtils/variables/TAGS_QUERY_DATA_CHUNK_SIZE.md new file mode 100644 index 0000000000..6e1f963c05 --- /dev/null +++ b/docs/docs/auto-docs/utils/organizationTagsUtils/variables/TAGS_QUERY_DATA_CHUNK_SIZE.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / [utils/organizationTagsUtils](../README.md) / TAGS\_QUERY\_DATA\_CHUNK\_SIZE + +# Variable: TAGS\_QUERY\_DATA\_CHUNK\_SIZE + +> `const` **TAGS\_QUERY\_DATA\_CHUNK\_SIZE**: `10` = `10` + +Defined in: [src/utils/organizationTagsUtils.ts:42](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/organizationTagsUtils.ts#L42) diff --git a/docs/docs/auto-docs/utils/organizationTagsUtils/variables/dataGridStyle.md b/docs/docs/auto-docs/utils/organizationTagsUtils/variables/dataGridStyle.md new file mode 100644 index 0000000000..0a8d183291 --- /dev/null +++ b/docs/docs/auto-docs/utils/organizationTagsUtils/variables/dataGridStyle.md @@ -0,0 +1,85 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / [utils/organizationTagsUtils](../README.md) / dataGridStyle + +# Variable: dataGridStyle + +> `const` **dataGridStyle**: `object` + +Defined in: [src/utils/organizationTagsUtils.ts:12](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/organizationTagsUtils.ts#L12) + +## Type declaration + +#### & .MuiDataGrid-main + +> **MuiDataGrid-main**: `object` + +#### & .MuiDataGrid-main.borderRadius + +> **borderRadius**: `string` = `'0.1rem'` + +#### & .MuiDataGrid-root + +> **MuiDataGrid-root**: `object` + +#### & .MuiDataGrid-root.borderRadius + +> **borderRadius**: `string` = `'0.1rem'` + +#### & .MuiDataGrid-row:hover + +> **MuiDataGrid-row:hover**: `object` + +#### & .MuiDataGrid-row:hover.backgroundColor + +> **backgroundColor**: `string` = `'transparent'` + +#### & .MuiDataGrid-row.Mui-hovered + +> **Mui-hovered**: `object` + +#### & .MuiDataGrid-row.Mui-hovered.backgroundColor + +> **backgroundColor**: `string` = `'transparent'` + +#### & .MuiDataGrid-topContainer + +> **MuiDataGrid-topContainer**: `object` + +#### & .MuiDataGrid-topContainer.position + +> **position**: `string` = `'fixed'` + +#### & .MuiDataGrid-topContainer.top + +> **top**: `number` = `290` + +#### & .MuiDataGrid-topContainer.zIndex + +> **zIndex**: `number` = `1` + +#### & .MuiDataGrid-virtualScrollerContent + +> **MuiDataGrid-virtualScrollerContent**: `object` + +#### & .MuiDataGrid-virtualScrollerContent.marginTop + +> **marginTop**: `number` = `6.5` + +#### &.MuiDataGrid-root .MuiDataGrid-cell:focus-within + +> **MuiDataGrid-cell:focus-within**: `object` + +#### &.MuiDataGrid-root .MuiDataGrid-cell:focus-within.outline + +> **outline**: `string` = `'none !important'` + +#### &.MuiDataGrid-root .MuiDataGrid-columnHeader:focus-within + +> **MuiDataGrid-columnHeader:focus-within**: `object` + +#### &.MuiDataGrid-root .MuiDataGrid-columnHeader:focus-within.outline + +> **outline**: `string` = `'none'` diff --git a/docs/docs/auto-docs/utils/recurrenceUtils/README.md b/docs/docs/auto-docs/utils/recurrenceUtils/README.md new file mode 100644 index 0000000000..6b49ed3c40 --- /dev/null +++ b/docs/docs/auto-docs/utils/recurrenceUtils/README.md @@ -0,0 +1,163 @@ +[**talawa-admin**](../../README.md) + +*** + +[talawa-admin](../../modules.md) / utils/recurrenceUtils + +# utils/recurrenceUtils + +## References + +### allInstances + +Re-exports [allInstances](recurrenceConstants/variables/allInstances.md) + +*** + +### dayNames + +Re-exports [dayNames](recurrenceConstants/variables/dayNames.md) + +*** + +### Days + +Re-exports [Days](recurrenceConstants/variables/Days.md) + +*** + +### daysOptions + +Re-exports [daysOptions](recurrenceConstants/variables/daysOptions.md) + +*** + +### endsAfter + +Re-exports [endsAfter](recurrenceConstants/variables/endsAfter.md) + +*** + +### endsNever + +Re-exports [endsNever](recurrenceConstants/variables/endsNever.md) + +*** + +### endsOn + +Re-exports [endsOn](recurrenceConstants/variables/endsOn.md) + +*** + +### frequencies + +Re-exports [frequencies](recurrenceConstants/variables/frequencies.md) + +*** + +### Frequency + +Re-exports [Frequency](recurrenceTypes/enumerations/Frequency.md) + +*** + +### getRecurrenceRuleText + +Re-exports [getRecurrenceRuleText](recurrenceUtilityFunctions/functions/getRecurrenceRuleText.md) + +*** + +### getWeekDayOccurenceInMonth + +Re-exports [getWeekDayOccurenceInMonth](recurrenceUtilityFunctions/functions/getWeekDayOccurenceInMonth.md) + +*** + +### hasRecurrenceRuleChanged + +Re-exports [hasRecurrenceRuleChanged](recurrenceUtilityFunctions/functions/hasRecurrenceRuleChanged.md) + +*** + +### haveInstanceDatesChanged + +Re-exports [haveInstanceDatesChanged](recurrenceUtilityFunctions/functions/haveInstanceDatesChanged.md) + +*** + +### InterfaceRecurrenceRule + +Re-exports [InterfaceRecurrenceRule](recurrenceTypes/interfaces/InterfaceRecurrenceRule.md) + +*** + +### InterfaceRecurrenceRuleState + +Re-exports [InterfaceRecurrenceRuleState](recurrenceTypes/interfaces/InterfaceRecurrenceRuleState.md) + +*** + +### isLastOccurenceOfWeekDay + +Re-exports [isLastOccurenceOfWeekDay](recurrenceUtilityFunctions/functions/isLastOccurenceOfWeekDay.md) + +*** + +### mondayToFriday + +Re-exports [mondayToFriday](recurrenceConstants/variables/mondayToFriday.md) + +*** + +### monthNames + +Re-exports [monthNames](recurrenceConstants/variables/monthNames.md) + +*** + +### RecurrenceEndOption + +Re-exports [RecurrenceEndOption](recurrenceTypes/enumerations/RecurrenceEndOption.md) + +*** + +### recurrenceEndOptions + +Re-exports [recurrenceEndOptions](recurrenceConstants/variables/recurrenceEndOptions.md) + +*** + +### recurringEventMutationOptions + +Re-exports [recurringEventMutationOptions](recurrenceConstants/variables/recurringEventMutationOptions.md) + +*** + +### RecurringEventMutationType + +Re-exports [RecurringEventMutationType](recurrenceTypes/enumerations/RecurringEventMutationType.md) + +*** + +### thisAndFollowingInstances + +Re-exports [thisAndFollowingInstances](recurrenceConstants/variables/thisAndFollowingInstances.md) + +*** + +### thisInstance + +Re-exports [thisInstance](recurrenceConstants/variables/thisInstance.md) + +*** + +### weekDayOccurences + +Re-exports [weekDayOccurences](recurrenceConstants/variables/weekDayOccurences.md) + +*** + +### WeekDays + +Re-exports [WeekDays](recurrenceTypes/enumerations/WeekDays.md) diff --git a/docs/docs/auto-docs/utils/recurrenceUtils/recurrenceConstants/README.md b/docs/docs/auto-docs/utils/recurrenceUtils/recurrenceConstants/README.md new file mode 100644 index 0000000000..5f014f1c9c --- /dev/null +++ b/docs/docs/auto-docs/utils/recurrenceUtils/recurrenceConstants/README.md @@ -0,0 +1,25 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / utils/recurrenceUtils/recurrenceConstants + +# utils/recurrenceUtils/recurrenceConstants + +## Variables + +- [allInstances](variables/allInstances.md) +- [dayNames](variables/dayNames.md) +- [Days](variables/Days.md) +- [daysOptions](variables/daysOptions.md) +- [endsAfter](variables/endsAfter.md) +- [endsNever](variables/endsNever.md) +- [endsOn](variables/endsOn.md) +- [frequencies](variables/frequencies.md) +- [mondayToFriday](variables/mondayToFriday.md) +- [monthNames](variables/monthNames.md) +- [recurrenceEndOptions](variables/recurrenceEndOptions.md) +- [recurringEventMutationOptions](variables/recurringEventMutationOptions.md) +- [thisAndFollowingInstances](variables/thisAndFollowingInstances.md) +- [thisInstance](variables/thisInstance.md) +- [weekDayOccurences](variables/weekDayOccurences.md) diff --git a/docs/docs/auto-docs/utils/recurrenceUtils/recurrenceConstants/variables/Days.md b/docs/docs/auto-docs/utils/recurrenceUtils/recurrenceConstants/variables/Days.md new file mode 100644 index 0000000000..ce21fda63f --- /dev/null +++ b/docs/docs/auto-docs/utils/recurrenceUtils/recurrenceConstants/variables/Days.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [utils/recurrenceUtils/recurrenceConstants](../README.md) / Days + +# Variable: Days + +> `const` **Days**: [`WeekDays`](../../recurrenceTypes/enumerations/WeekDays.md)[] + +Defined in: [src/utils/recurrenceUtils/recurrenceConstants.ts:24](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/recurrenceUtils/recurrenceConstants.ts#L24) diff --git a/docs/docs/auto-docs/utils/recurrenceUtils/recurrenceConstants/variables/allInstances.md b/docs/docs/auto-docs/utils/recurrenceUtils/recurrenceConstants/variables/allInstances.md new file mode 100644 index 0000000000..2588f0c61f --- /dev/null +++ b/docs/docs/auto-docs/utils/recurrenceUtils/recurrenceConstants/variables/allInstances.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [utils/recurrenceUtils/recurrenceConstants](../README.md) / allInstances + +# Variable: allInstances + +> `const` **allInstances**: [`allInstances`](../../recurrenceTypes/enumerations/RecurringEventMutationType.md#allinstances) = `RecurringEventMutationType.allInstances` + +Defined in: [src/utils/recurrenceUtils/recurrenceConstants.ts:46](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/recurrenceUtils/recurrenceConstants.ts#L46) diff --git a/docs/docs/auto-docs/utils/recurrenceUtils/recurrenceConstants/variables/dayNames.md b/docs/docs/auto-docs/utils/recurrenceUtils/recurrenceConstants/variables/dayNames.md new file mode 100644 index 0000000000..0d1a1f0f3e --- /dev/null +++ b/docs/docs/auto-docs/utils/recurrenceUtils/recurrenceConstants/variables/dayNames.md @@ -0,0 +1,41 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [utils/recurrenceUtils/recurrenceConstants](../README.md) / dayNames + +# Variable: dayNames + +> `const` **dayNames**: `object` + +Defined in: [src/utils/recurrenceUtils/recurrenceConstants.ts:60](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/recurrenceUtils/recurrenceConstants.ts#L60) + +## Type declaration + +### FRIDAY + +> **FRIDAY**: `string` = `'Friday'` + +### MONDAY + +> **MONDAY**: `string` = `'Monday'` + +### SATURDAY + +> **SATURDAY**: `string` = `'Saturday'` + +### SUNDAY + +> **SUNDAY**: `string` = `'Sunday'` + +### THURSDAY + +> **THURSDAY**: `string` = `'Thursday'` + +### TUESDAY + +> **TUESDAY**: `string` = `'Tuesday'` + +### WEDNESDAY + +> **WEDNESDAY**: `string` = `'Wednesday'` diff --git a/docs/docs/auto-docs/utils/recurrenceUtils/recurrenceConstants/variables/daysOptions.md b/docs/docs/auto-docs/utils/recurrenceUtils/recurrenceConstants/variables/daysOptions.md new file mode 100644 index 0000000000..0a057aab1d --- /dev/null +++ b/docs/docs/auto-docs/utils/recurrenceUtils/recurrenceConstants/variables/daysOptions.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [utils/recurrenceUtils/recurrenceConstants](../README.md) / daysOptions + +# Variable: daysOptions + +> `const` **daysOptions**: `string`[] + +Defined in: [src/utils/recurrenceUtils/recurrenceConstants.ts:21](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/recurrenceUtils/recurrenceConstants.ts#L21) diff --git a/docs/docs/auto-docs/utils/recurrenceUtils/recurrenceConstants/variables/endsAfter.md b/docs/docs/auto-docs/utils/recurrenceUtils/recurrenceConstants/variables/endsAfter.md new file mode 100644 index 0000000000..f36d690b42 --- /dev/null +++ b/docs/docs/auto-docs/utils/recurrenceUtils/recurrenceConstants/variables/endsAfter.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [utils/recurrenceUtils/recurrenceConstants](../README.md) / endsAfter + +# Variable: endsAfter + +> `const` **endsAfter**: [`after`](../../recurrenceTypes/enumerations/RecurrenceEndOption.md#after) = `RecurrenceEndOption.after` + +Defined in: [src/utils/recurrenceUtils/recurrenceConstants.ts:37](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/recurrenceUtils/recurrenceConstants.ts#L37) diff --git a/docs/docs/auto-docs/utils/recurrenceUtils/recurrenceConstants/variables/endsNever.md b/docs/docs/auto-docs/utils/recurrenceUtils/recurrenceConstants/variables/endsNever.md new file mode 100644 index 0000000000..f1005f3166 --- /dev/null +++ b/docs/docs/auto-docs/utils/recurrenceUtils/recurrenceConstants/variables/endsNever.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [utils/recurrenceUtils/recurrenceConstants](../README.md) / endsNever + +# Variable: endsNever + +> `const` **endsNever**: [`never`](../../recurrenceTypes/enumerations/RecurrenceEndOption.md#never) = `RecurrenceEndOption.never` + +Defined in: [src/utils/recurrenceUtils/recurrenceConstants.ts:35](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/recurrenceUtils/recurrenceConstants.ts#L35) diff --git a/docs/docs/auto-docs/utils/recurrenceUtils/recurrenceConstants/variables/endsOn.md b/docs/docs/auto-docs/utils/recurrenceUtils/recurrenceConstants/variables/endsOn.md new file mode 100644 index 0000000000..a048e02a68 --- /dev/null +++ b/docs/docs/auto-docs/utils/recurrenceUtils/recurrenceConstants/variables/endsOn.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [utils/recurrenceUtils/recurrenceConstants](../README.md) / endsOn + +# Variable: endsOn + +> `const` **endsOn**: [`on`](../../recurrenceTypes/enumerations/RecurrenceEndOption.md#on) = `RecurrenceEndOption.on` + +Defined in: [src/utils/recurrenceUtils/recurrenceConstants.ts:36](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/recurrenceUtils/recurrenceConstants.ts#L36) diff --git a/docs/docs/auto-docs/utils/recurrenceUtils/recurrenceConstants/variables/frequencies.md b/docs/docs/auto-docs/utils/recurrenceUtils/recurrenceConstants/variables/frequencies.md new file mode 100644 index 0000000000..d1028d6234 --- /dev/null +++ b/docs/docs/auto-docs/utils/recurrenceUtils/recurrenceConstants/variables/frequencies.md @@ -0,0 +1,29 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [utils/recurrenceUtils/recurrenceConstants](../README.md) / frequencies + +# Variable: frequencies + +> `const` **frequencies**: `object` + +Defined in: [src/utils/recurrenceUtils/recurrenceConstants.ts:13](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/recurrenceUtils/recurrenceConstants.ts#L13) + +## Type declaration + +### DAILY + +> **DAILY**: `string` = `'Day'` + +### MONTHLY + +> **MONTHLY**: `string` = `'Month'` + +### WEEKLY + +> **WEEKLY**: `string` = `'Week'` + +### YEARLY + +> **YEARLY**: `string` = `'Year'` diff --git a/docs/docs/auto-docs/utils/recurrenceUtils/recurrenceConstants/variables/mondayToFriday.md b/docs/docs/auto-docs/utils/recurrenceUtils/recurrenceConstants/variables/mondayToFriday.md new file mode 100644 index 0000000000..e8cd42b136 --- /dev/null +++ b/docs/docs/auto-docs/utils/recurrenceUtils/recurrenceConstants/variables/mondayToFriday.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [utils/recurrenceUtils/recurrenceConstants](../README.md) / mondayToFriday + +# Variable: mondayToFriday + +> `const` **mondayToFriday**: ([`MONDAY`](../../recurrenceTypes/enumerations/WeekDays.md#monday) \| [`TUESDAY`](../../recurrenceTypes/enumerations/WeekDays.md#tuesday) \| [`WEDNESDAY`](../../recurrenceTypes/enumerations/WeekDays.md#wednesday) \| [`THURSDAY`](../../recurrenceTypes/enumerations/WeekDays.md#thursday) \| [`FRIDAY`](../../recurrenceTypes/enumerations/WeekDays.md#friday))[] + +Defined in: [src/utils/recurrenceUtils/recurrenceConstants.ts:55](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/recurrenceUtils/recurrenceConstants.ts#L55) diff --git a/docs/docs/auto-docs/utils/recurrenceUtils/recurrenceConstants/variables/monthNames.md b/docs/docs/auto-docs/utils/recurrenceUtils/recurrenceConstants/variables/monthNames.md new file mode 100644 index 0000000000..377c2fbb3d --- /dev/null +++ b/docs/docs/auto-docs/utils/recurrenceUtils/recurrenceConstants/variables/monthNames.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [utils/recurrenceUtils/recurrenceConstants](../README.md) / monthNames + +# Variable: monthNames + +> `const` **monthNames**: `string`[] + +Defined in: [src/utils/recurrenceUtils/recurrenceConstants.ts:71](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/recurrenceUtils/recurrenceConstants.ts#L71) diff --git a/docs/docs/auto-docs/utils/recurrenceUtils/recurrenceConstants/variables/recurrenceEndOptions.md b/docs/docs/auto-docs/utils/recurrenceUtils/recurrenceConstants/variables/recurrenceEndOptions.md new file mode 100644 index 0000000000..521ac272e7 --- /dev/null +++ b/docs/docs/auto-docs/utils/recurrenceUtils/recurrenceConstants/variables/recurrenceEndOptions.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [utils/recurrenceUtils/recurrenceConstants](../README.md) / recurrenceEndOptions + +# Variable: recurrenceEndOptions + +> `const` **recurrenceEndOptions**: [`RecurrenceEndOption`](../../recurrenceTypes/enumerations/RecurrenceEndOption.md)[] + +Defined in: [src/utils/recurrenceUtils/recurrenceConstants.ts:40](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/recurrenceUtils/recurrenceConstants.ts#L40) diff --git a/docs/docs/auto-docs/utils/recurrenceUtils/recurrenceConstants/variables/recurringEventMutationOptions.md b/docs/docs/auto-docs/utils/recurrenceUtils/recurrenceConstants/variables/recurringEventMutationOptions.md new file mode 100644 index 0000000000..32e7f9caa9 --- /dev/null +++ b/docs/docs/auto-docs/utils/recurrenceUtils/recurrenceConstants/variables/recurringEventMutationOptions.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [utils/recurrenceUtils/recurrenceConstants](../README.md) / recurringEventMutationOptions + +# Variable: recurringEventMutationOptions + +> `const` **recurringEventMutationOptions**: [`RecurringEventMutationType`](../../recurrenceTypes/enumerations/RecurringEventMutationType.md)[] + +Defined in: [src/utils/recurrenceUtils/recurrenceConstants.ts:48](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/recurrenceUtils/recurrenceConstants.ts#L48) diff --git a/docs/docs/auto-docs/utils/recurrenceUtils/recurrenceConstants/variables/thisAndFollowingInstances.md b/docs/docs/auto-docs/utils/recurrenceUtils/recurrenceConstants/variables/thisAndFollowingInstances.md new file mode 100644 index 0000000000..ddfc814499 --- /dev/null +++ b/docs/docs/auto-docs/utils/recurrenceUtils/recurrenceConstants/variables/thisAndFollowingInstances.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [utils/recurrenceUtils/recurrenceConstants](../README.md) / thisAndFollowingInstances + +# Variable: thisAndFollowingInstances + +> `const` **thisAndFollowingInstances**: [`thisAndFollowingInstances`](../../recurrenceTypes/enumerations/RecurringEventMutationType.md#thisandfollowinginstances) = `RecurringEventMutationType.thisAndFollowingInstances` + +Defined in: [src/utils/recurrenceUtils/recurrenceConstants.ts:44](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/recurrenceUtils/recurrenceConstants.ts#L44) diff --git a/docs/docs/auto-docs/utils/recurrenceUtils/recurrenceConstants/variables/thisInstance.md b/docs/docs/auto-docs/utils/recurrenceUtils/recurrenceConstants/variables/thisInstance.md new file mode 100644 index 0000000000..f9bcfe221f --- /dev/null +++ b/docs/docs/auto-docs/utils/recurrenceUtils/recurrenceConstants/variables/thisInstance.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [utils/recurrenceUtils/recurrenceConstants](../README.md) / thisInstance + +# Variable: thisInstance + +> `const` **thisInstance**: [`thisInstance`](../../recurrenceTypes/enumerations/RecurringEventMutationType.md#thisinstance) = `RecurringEventMutationType.thisInstance` + +Defined in: [src/utils/recurrenceUtils/recurrenceConstants.ts:43](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/recurrenceUtils/recurrenceConstants.ts#L43) diff --git a/docs/docs/auto-docs/utils/recurrenceUtils/recurrenceConstants/variables/weekDayOccurences.md b/docs/docs/auto-docs/utils/recurrenceUtils/recurrenceConstants/variables/weekDayOccurences.md new file mode 100644 index 0000000000..f308c16c55 --- /dev/null +++ b/docs/docs/auto-docs/utils/recurrenceUtils/recurrenceConstants/variables/weekDayOccurences.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [utils/recurrenceUtils/recurrenceConstants](../README.md) / weekDayOccurences + +# Variable: weekDayOccurences + +> `const` **weekDayOccurences**: `string`[] + +Defined in: [src/utils/recurrenceUtils/recurrenceConstants.ts:87](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/recurrenceUtils/recurrenceConstants.ts#L87) diff --git a/docs/docs/auto-docs/utils/recurrenceUtils/recurrenceTypes/README.md b/docs/docs/auto-docs/utils/recurrenceUtils/recurrenceTypes/README.md new file mode 100644 index 0000000000..9e054c6133 --- /dev/null +++ b/docs/docs/auto-docs/utils/recurrenceUtils/recurrenceTypes/README.md @@ -0,0 +1,19 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / utils/recurrenceUtils/recurrenceTypes + +# utils/recurrenceUtils/recurrenceTypes + +## Enumerations + +- [Frequency](enumerations/Frequency.md) +- [RecurrenceEndOption](enumerations/RecurrenceEndOption.md) +- [RecurringEventMutationType](enumerations/RecurringEventMutationType.md) +- [WeekDays](enumerations/WeekDays.md) + +## Interfaces + +- [InterfaceRecurrenceRule](interfaces/InterfaceRecurrenceRule.md) +- [InterfaceRecurrenceRuleState](interfaces/InterfaceRecurrenceRuleState.md) diff --git a/docs/docs/auto-docs/utils/recurrenceUtils/recurrenceTypes/enumerations/Frequency.md b/docs/docs/auto-docs/utils/recurrenceUtils/recurrenceTypes/enumerations/Frequency.md new file mode 100644 index 0000000000..1a03b6f4ad --- /dev/null +++ b/docs/docs/auto-docs/utils/recurrenceUtils/recurrenceTypes/enumerations/Frequency.md @@ -0,0 +1,41 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [utils/recurrenceUtils/recurrenceTypes](../README.md) / Frequency + +# Enumeration: Frequency + +Defined in: [src/utils/recurrenceUtils/recurrenceTypes.ts:28](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/recurrenceUtils/recurrenceTypes.ts#L28) + +## Enumeration Members + +### DAILY + +> **DAILY**: `"DAILY"` + +Defined in: [src/utils/recurrenceUtils/recurrenceTypes.ts:29](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/recurrenceUtils/recurrenceTypes.ts#L29) + +*** + +### MONTHLY + +> **MONTHLY**: `"MONTHLY"` + +Defined in: [src/utils/recurrenceUtils/recurrenceTypes.ts:31](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/recurrenceUtils/recurrenceTypes.ts#L31) + +*** + +### WEEKLY + +> **WEEKLY**: `"WEEKLY"` + +Defined in: [src/utils/recurrenceUtils/recurrenceTypes.ts:30](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/recurrenceUtils/recurrenceTypes.ts#L30) + +*** + +### YEARLY + +> **YEARLY**: `"YEARLY"` + +Defined in: [src/utils/recurrenceUtils/recurrenceTypes.ts:32](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/recurrenceUtils/recurrenceTypes.ts#L32) diff --git a/docs/docs/auto-docs/utils/recurrenceUtils/recurrenceTypes/enumerations/RecurrenceEndOption.md b/docs/docs/auto-docs/utils/recurrenceUtils/recurrenceTypes/enumerations/RecurrenceEndOption.md new file mode 100644 index 0000000000..fd811c6794 --- /dev/null +++ b/docs/docs/auto-docs/utils/recurrenceUtils/recurrenceTypes/enumerations/RecurrenceEndOption.md @@ -0,0 +1,33 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [utils/recurrenceUtils/recurrenceTypes](../README.md) / RecurrenceEndOption + +# Enumeration: RecurrenceEndOption + +Defined in: [src/utils/recurrenceUtils/recurrenceTypes.ts:48](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/recurrenceUtils/recurrenceTypes.ts#L48) + +## Enumeration Members + +### after + +> **after**: `"after"` + +Defined in: [src/utils/recurrenceUtils/recurrenceTypes.ts:51](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/recurrenceUtils/recurrenceTypes.ts#L51) + +*** + +### never + +> **never**: `"never"` + +Defined in: [src/utils/recurrenceUtils/recurrenceTypes.ts:49](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/recurrenceUtils/recurrenceTypes.ts#L49) + +*** + +### on + +> **on**: `"on"` + +Defined in: [src/utils/recurrenceUtils/recurrenceTypes.ts:50](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/recurrenceUtils/recurrenceTypes.ts#L50) diff --git a/docs/docs/auto-docs/utils/recurrenceUtils/recurrenceTypes/enumerations/RecurringEventMutationType.md b/docs/docs/auto-docs/utils/recurrenceUtils/recurrenceTypes/enumerations/RecurringEventMutationType.md new file mode 100644 index 0000000000..34dea3df09 --- /dev/null +++ b/docs/docs/auto-docs/utils/recurrenceUtils/recurrenceTypes/enumerations/RecurringEventMutationType.md @@ -0,0 +1,33 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [utils/recurrenceUtils/recurrenceTypes](../README.md) / RecurringEventMutationType + +# Enumeration: RecurringEventMutationType + +Defined in: [src/utils/recurrenceUtils/recurrenceTypes.ts:55](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/recurrenceUtils/recurrenceTypes.ts#L55) + +## Enumeration Members + +### allInstances + +> **allInstances**: `"allInstances"` + +Defined in: [src/utils/recurrenceUtils/recurrenceTypes.ts:58](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/recurrenceUtils/recurrenceTypes.ts#L58) + +*** + +### thisAndFollowingInstances + +> **thisAndFollowingInstances**: `"thisAndFollowingInstances"` + +Defined in: [src/utils/recurrenceUtils/recurrenceTypes.ts:57](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/recurrenceUtils/recurrenceTypes.ts#L57) + +*** + +### thisInstance + +> **thisInstance**: `"thisInstance"` + +Defined in: [src/utils/recurrenceUtils/recurrenceTypes.ts:56](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/recurrenceUtils/recurrenceTypes.ts#L56) diff --git a/docs/docs/auto-docs/utils/recurrenceUtils/recurrenceTypes/enumerations/WeekDays.md b/docs/docs/auto-docs/utils/recurrenceUtils/recurrenceTypes/enumerations/WeekDays.md new file mode 100644 index 0000000000..df54af9684 --- /dev/null +++ b/docs/docs/auto-docs/utils/recurrenceUtils/recurrenceTypes/enumerations/WeekDays.md @@ -0,0 +1,65 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [utils/recurrenceUtils/recurrenceTypes](../README.md) / WeekDays + +# Enumeration: WeekDays + +Defined in: [src/utils/recurrenceUtils/recurrenceTypes.ts:36](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/recurrenceUtils/recurrenceTypes.ts#L36) + +## Enumeration Members + +### FRIDAY + +> **FRIDAY**: `"FRIDAY"` + +Defined in: [src/utils/recurrenceUtils/recurrenceTypes.ts:42](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/recurrenceUtils/recurrenceTypes.ts#L42) + +*** + +### MONDAY + +> **MONDAY**: `"MONDAY"` + +Defined in: [src/utils/recurrenceUtils/recurrenceTypes.ts:38](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/recurrenceUtils/recurrenceTypes.ts#L38) + +*** + +### SATURDAY + +> **SATURDAY**: `"SATURDAY"` + +Defined in: [src/utils/recurrenceUtils/recurrenceTypes.ts:43](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/recurrenceUtils/recurrenceTypes.ts#L43) + +*** + +### SUNDAY + +> **SUNDAY**: `"SUNDAY"` + +Defined in: [src/utils/recurrenceUtils/recurrenceTypes.ts:37](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/recurrenceUtils/recurrenceTypes.ts#L37) + +*** + +### THURSDAY + +> **THURSDAY**: `"THURSDAY"` + +Defined in: [src/utils/recurrenceUtils/recurrenceTypes.ts:41](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/recurrenceUtils/recurrenceTypes.ts#L41) + +*** + +### TUESDAY + +> **TUESDAY**: `"TUESDAY"` + +Defined in: [src/utils/recurrenceUtils/recurrenceTypes.ts:39](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/recurrenceUtils/recurrenceTypes.ts#L39) + +*** + +### WEDNESDAY + +> **WEDNESDAY**: `"WEDNESDAY"` + +Defined in: [src/utils/recurrenceUtils/recurrenceTypes.ts:40](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/recurrenceUtils/recurrenceTypes.ts#L40) diff --git a/docs/docs/auto-docs/utils/recurrenceUtils/recurrenceTypes/interfaces/InterfaceRecurrenceRule.md b/docs/docs/auto-docs/utils/recurrenceUtils/recurrenceTypes/interfaces/InterfaceRecurrenceRule.md new file mode 100644 index 0000000000..9e6218fd9a --- /dev/null +++ b/docs/docs/auto-docs/utils/recurrenceUtils/recurrenceTypes/interfaces/InterfaceRecurrenceRule.md @@ -0,0 +1,65 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [utils/recurrenceUtils/recurrenceTypes](../README.md) / InterfaceRecurrenceRule + +# Interface: InterfaceRecurrenceRule + +Defined in: [src/utils/recurrenceUtils/recurrenceTypes.ts:17](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/recurrenceUtils/recurrenceTypes.ts#L17) + +## Properties + +### count + +> **count**: `null` \| `number` + +Defined in: [src/utils/recurrenceUtils/recurrenceTypes.ts:23](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/recurrenceUtils/recurrenceTypes.ts#L23) + +*** + +### frequency + +> **frequency**: [`Frequency`](../enumerations/Frequency.md) + +Defined in: [src/utils/recurrenceUtils/recurrenceTypes.ts:20](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/recurrenceUtils/recurrenceTypes.ts#L20) + +*** + +### interval + +> **interval**: `number` + +Defined in: [src/utils/recurrenceUtils/recurrenceTypes.ts:22](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/recurrenceUtils/recurrenceTypes.ts#L22) + +*** + +### recurrenceEndDate + +> **recurrenceEndDate**: `null` \| `string` + +Defined in: [src/utils/recurrenceUtils/recurrenceTypes.ts:19](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/recurrenceUtils/recurrenceTypes.ts#L19) + +*** + +### recurrenceStartDate + +> **recurrenceStartDate**: `string` + +Defined in: [src/utils/recurrenceUtils/recurrenceTypes.ts:18](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/recurrenceUtils/recurrenceTypes.ts#L18) + +*** + +### weekDayOccurenceInMonth + +> **weekDayOccurenceInMonth**: `null` \| `number` + +Defined in: [src/utils/recurrenceUtils/recurrenceTypes.ts:24](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/recurrenceUtils/recurrenceTypes.ts#L24) + +*** + +### weekDays + +> **weekDays**: [`WeekDays`](../enumerations/WeekDays.md)[] + +Defined in: [src/utils/recurrenceUtils/recurrenceTypes.ts:21](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/recurrenceUtils/recurrenceTypes.ts#L21) diff --git a/docs/docs/auto-docs/utils/recurrenceUtils/recurrenceTypes/interfaces/InterfaceRecurrenceRuleState.md b/docs/docs/auto-docs/utils/recurrenceUtils/recurrenceTypes/interfaces/InterfaceRecurrenceRuleState.md new file mode 100644 index 0000000000..727e348742 --- /dev/null +++ b/docs/docs/auto-docs/utils/recurrenceUtils/recurrenceTypes/interfaces/InterfaceRecurrenceRuleState.md @@ -0,0 +1,65 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [utils/recurrenceUtils/recurrenceTypes](../README.md) / InterfaceRecurrenceRuleState + +# Interface: InterfaceRecurrenceRuleState + +Defined in: [src/utils/recurrenceUtils/recurrenceTypes.ts:6](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/recurrenceUtils/recurrenceTypes.ts#L6) + +## Properties + +### count + +> **count**: `undefined` \| `number` + +Defined in: [src/utils/recurrenceUtils/recurrenceTypes.ts:12](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/recurrenceUtils/recurrenceTypes.ts#L12) + +*** + +### frequency + +> **frequency**: [`Frequency`](../enumerations/Frequency.md) + +Defined in: [src/utils/recurrenceUtils/recurrenceTypes.ts:9](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/recurrenceUtils/recurrenceTypes.ts#L9) + +*** + +### interval + +> **interval**: `number` + +Defined in: [src/utils/recurrenceUtils/recurrenceTypes.ts:11](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/recurrenceUtils/recurrenceTypes.ts#L11) + +*** + +### recurrenceEndDate + +> **recurrenceEndDate**: `null` \| `Date` + +Defined in: [src/utils/recurrenceUtils/recurrenceTypes.ts:8](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/recurrenceUtils/recurrenceTypes.ts#L8) + +*** + +### recurrenceStartDate + +> **recurrenceStartDate**: `Date` + +Defined in: [src/utils/recurrenceUtils/recurrenceTypes.ts:7](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/recurrenceUtils/recurrenceTypes.ts#L7) + +*** + +### weekDayOccurenceInMonth + +> **weekDayOccurenceInMonth**: `undefined` \| `number` + +Defined in: [src/utils/recurrenceUtils/recurrenceTypes.ts:13](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/recurrenceUtils/recurrenceTypes.ts#L13) + +*** + +### weekDays + +> **weekDays**: [`WeekDays`](../enumerations/WeekDays.md)[] + +Defined in: [src/utils/recurrenceUtils/recurrenceTypes.ts:10](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/recurrenceUtils/recurrenceTypes.ts#L10) diff --git a/docs/docs/auto-docs/utils/recurrenceUtils/recurrenceUtilityFunctions/README.md b/docs/docs/auto-docs/utils/recurrenceUtils/recurrenceUtilityFunctions/README.md new file mode 100644 index 0000000000..f4775336c8 --- /dev/null +++ b/docs/docs/auto-docs/utils/recurrenceUtils/recurrenceUtilityFunctions/README.md @@ -0,0 +1,15 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / utils/recurrenceUtils/recurrenceUtilityFunctions + +# utils/recurrenceUtils/recurrenceUtilityFunctions + +## Functions + +- [getRecurrenceRuleText](functions/getRecurrenceRuleText.md) +- [getWeekDayOccurenceInMonth](functions/getWeekDayOccurenceInMonth.md) +- [hasRecurrenceRuleChanged](functions/hasRecurrenceRuleChanged.md) +- [haveInstanceDatesChanged](functions/haveInstanceDatesChanged.md) +- [isLastOccurenceOfWeekDay](functions/isLastOccurenceOfWeekDay.md) diff --git a/docs/docs/auto-docs/utils/recurrenceUtils/recurrenceUtilityFunctions/functions/getRecurrenceRuleText.md b/docs/docs/auto-docs/utils/recurrenceUtils/recurrenceUtilityFunctions/functions/getRecurrenceRuleText.md new file mode 100644 index 0000000000..947ed014c9 --- /dev/null +++ b/docs/docs/auto-docs/utils/recurrenceUtils/recurrenceUtilityFunctions/functions/getRecurrenceRuleText.md @@ -0,0 +1,21 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [utils/recurrenceUtils/recurrenceUtilityFunctions](../README.md) / getRecurrenceRuleText + +# Function: getRecurrenceRuleText() + +> **getRecurrenceRuleText**(`recurrenceRuleState`): `string` + +Defined in: [src/utils/recurrenceUtils/recurrenceUtilityFunctions.ts:22](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/recurrenceUtils/recurrenceUtilityFunctions.ts#L22) + +## Parameters + +### recurrenceRuleState + +[`InterfaceRecurrenceRuleState`](../../recurrenceTypes/interfaces/InterfaceRecurrenceRuleState.md) + +## Returns + +`string` diff --git a/docs/docs/auto-docs/utils/recurrenceUtils/recurrenceUtilityFunctions/functions/getWeekDayOccurenceInMonth.md b/docs/docs/auto-docs/utils/recurrenceUtils/recurrenceUtilityFunctions/functions/getWeekDayOccurenceInMonth.md new file mode 100644 index 0000000000..4e32aa1d9c --- /dev/null +++ b/docs/docs/auto-docs/utils/recurrenceUtils/recurrenceUtilityFunctions/functions/getWeekDayOccurenceInMonth.md @@ -0,0 +1,21 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [utils/recurrenceUtils/recurrenceUtilityFunctions](../README.md) / getWeekDayOccurenceInMonth + +# Function: getWeekDayOccurenceInMonth() + +> **getWeekDayOccurenceInMonth**(`date`): `number` + +Defined in: [src/utils/recurrenceUtils/recurrenceUtilityFunctions.ts:126](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/recurrenceUtils/recurrenceUtilityFunctions.ts#L126) + +## Parameters + +### date + +`Date` + +## Returns + +`number` diff --git a/docs/docs/auto-docs/utils/recurrenceUtils/recurrenceUtilityFunctions/functions/hasRecurrenceRuleChanged.md b/docs/docs/auto-docs/utils/recurrenceUtils/recurrenceUtilityFunctions/functions/hasRecurrenceRuleChanged.md new file mode 100644 index 0000000000..3995eb6be3 --- /dev/null +++ b/docs/docs/auto-docs/utils/recurrenceUtils/recurrenceUtilityFunctions/functions/hasRecurrenceRuleChanged.md @@ -0,0 +1,25 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [utils/recurrenceUtils/recurrenceUtilityFunctions](../README.md) / hasRecurrenceRuleChanged + +# Function: hasRecurrenceRuleChanged() + +> **hasRecurrenceRuleChanged**(`originalRecurrencerule`, `recurrenceRuleState`): `boolean` + +Defined in: [src/utils/recurrenceUtils/recurrenceUtilityFunctions.ts:167](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/recurrenceUtils/recurrenceUtilityFunctions.ts#L167) + +## Parameters + +### originalRecurrencerule + +`null` | [`InterfaceRecurrenceRule`](../../recurrenceTypes/interfaces/InterfaceRecurrenceRule.md) + +### recurrenceRuleState + +[`InterfaceRecurrenceRuleState`](../../recurrenceTypes/interfaces/InterfaceRecurrenceRuleState.md) + +## Returns + +`boolean` diff --git a/docs/docs/auto-docs/utils/recurrenceUtils/recurrenceUtilityFunctions/functions/haveInstanceDatesChanged.md b/docs/docs/auto-docs/utils/recurrenceUtils/recurrenceUtilityFunctions/functions/haveInstanceDatesChanged.md new file mode 100644 index 0000000000..6d794738b5 --- /dev/null +++ b/docs/docs/auto-docs/utils/recurrenceUtils/recurrenceUtilityFunctions/functions/haveInstanceDatesChanged.md @@ -0,0 +1,33 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [utils/recurrenceUtils/recurrenceUtilityFunctions](../README.md) / haveInstanceDatesChanged + +# Function: haveInstanceDatesChanged() + +> **haveInstanceDatesChanged**(`instanceOriginalStartDate`, `instanceOriginalEndDate`, `instanceNewStartDate`, `instanceNewEndDate`): `boolean` + +Defined in: [src/utils/recurrenceUtils/recurrenceUtilityFunctions.ts:154](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/recurrenceUtils/recurrenceUtilityFunctions.ts#L154) + +## Parameters + +### instanceOriginalStartDate + +`string` + +### instanceOriginalEndDate + +`string` + +### instanceNewStartDate + +`string` + +### instanceNewEndDate + +`string` + +## Returns + +`boolean` diff --git a/docs/docs/auto-docs/utils/recurrenceUtils/recurrenceUtilityFunctions/functions/isLastOccurenceOfWeekDay.md b/docs/docs/auto-docs/utils/recurrenceUtils/recurrenceUtilityFunctions/functions/isLastOccurenceOfWeekDay.md new file mode 100644 index 0000000000..5855e7ceb4 --- /dev/null +++ b/docs/docs/auto-docs/utils/recurrenceUtils/recurrenceUtilityFunctions/functions/isLastOccurenceOfWeekDay.md @@ -0,0 +1,21 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [utils/recurrenceUtils/recurrenceUtilityFunctions](../README.md) / isLastOccurenceOfWeekDay + +# Function: isLastOccurenceOfWeekDay() + +> **isLastOccurenceOfWeekDay**(`date`): `boolean` + +Defined in: [src/utils/recurrenceUtils/recurrenceUtilityFunctions.ts:136](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/recurrenceUtils/recurrenceUtilityFunctions.ts#L136) + +## Parameters + +### date + +`Date` + +## Returns + +`boolean` diff --git a/docs/docs/auto-docs/utils/timezoneUtils/README.md b/docs/docs/auto-docs/utils/timezoneUtils/README.md new file mode 100644 index 0000000000..0ad5953d55 --- /dev/null +++ b/docs/docs/auto-docs/utils/timezoneUtils/README.md @@ -0,0 +1,25 @@ +[**talawa-admin**](../../README.md) + +*** + +[talawa-admin](../../modules.md) / utils/timezoneUtils + +# utils/timezoneUtils + +## References + +### dateTimeFields + +Re-exports [dateTimeFields](dateTimeConfig/variables/dateTimeFields.md) + +*** + +### requestMiddleware + +Re-exports [requestMiddleware](dateTimeMiddleware/variables/requestMiddleware.md) + +*** + +### responseMiddleware + +Re-exports [responseMiddleware](dateTimeMiddleware/variables/responseMiddleware.md) diff --git a/docs/docs/auto-docs/utils/timezoneUtils/dateTimeConfig/README.md b/docs/docs/auto-docs/utils/timezoneUtils/dateTimeConfig/README.md new file mode 100644 index 0000000000..52595efe84 --- /dev/null +++ b/docs/docs/auto-docs/utils/timezoneUtils/dateTimeConfig/README.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / utils/timezoneUtils/dateTimeConfig + +# utils/timezoneUtils/dateTimeConfig + +## Variables + +- [dateTimeFields](variables/dateTimeFields.md) diff --git a/docs/docs/auto-docs/utils/timezoneUtils/dateTimeConfig/variables/dateTimeFields.md b/docs/docs/auto-docs/utils/timezoneUtils/dateTimeConfig/variables/dateTimeFields.md new file mode 100644 index 0000000000..d9b8739b2a --- /dev/null +++ b/docs/docs/auto-docs/utils/timezoneUtils/dateTimeConfig/variables/dateTimeFields.md @@ -0,0 +1,21 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [utils/timezoneUtils/dateTimeConfig](../README.md) / dateTimeFields + +# Variable: dateTimeFields + +> `const` **dateTimeFields**: `object` + +Defined in: [src/utils/timezoneUtils/dateTimeConfig.ts:3](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/timezoneUtils/dateTimeConfig.ts#L3) + +## Type declaration + +### directFields + +> **directFields**: `string`[] + +### pairedFields + +> **pairedFields**: `object`[] diff --git a/docs/docs/auto-docs/utils/timezoneUtils/dateTimeMiddleware/README.md b/docs/docs/auto-docs/utils/timezoneUtils/dateTimeMiddleware/README.md new file mode 100644 index 0000000000..666abbffd4 --- /dev/null +++ b/docs/docs/auto-docs/utils/timezoneUtils/dateTimeMiddleware/README.md @@ -0,0 +1,12 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / utils/timezoneUtils/dateTimeMiddleware + +# utils/timezoneUtils/dateTimeMiddleware + +## Variables + +- [requestMiddleware](variables/requestMiddleware.md) +- [responseMiddleware](variables/responseMiddleware.md) diff --git a/docs/docs/auto-docs/utils/timezoneUtils/dateTimeMiddleware/variables/requestMiddleware.md b/docs/docs/auto-docs/utils/timezoneUtils/dateTimeMiddleware/variables/requestMiddleware.md new file mode 100644 index 0000000000..bddcc31a22 --- /dev/null +++ b/docs/docs/auto-docs/utils/timezoneUtils/dateTimeMiddleware/variables/requestMiddleware.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [utils/timezoneUtils/dateTimeMiddleware](../README.md) / requestMiddleware + +# Variable: requestMiddleware + +> `const` **requestMiddleware**: `any` + +Defined in: [src/utils/timezoneUtils/dateTimeMiddleware.ts:84](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/timezoneUtils/dateTimeMiddleware.ts#L84) diff --git a/docs/docs/auto-docs/utils/timezoneUtils/dateTimeMiddleware/variables/responseMiddleware.md b/docs/docs/auto-docs/utils/timezoneUtils/dateTimeMiddleware/variables/responseMiddleware.md new file mode 100644 index 0000000000..a48ecac5e6 --- /dev/null +++ b/docs/docs/auto-docs/utils/timezoneUtils/dateTimeMiddleware/variables/responseMiddleware.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../../../README.md) + +*** + +[talawa-admin](../../../../modules.md) / [utils/timezoneUtils/dateTimeMiddleware](../README.md) / responseMiddleware + +# Variable: responseMiddleware + +> `const` **responseMiddleware**: `any` + +Defined in: [src/utils/timezoneUtils/dateTimeMiddleware.ts:94](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/timezoneUtils/dateTimeMiddleware.ts#L94) diff --git a/docs/docs/auto-docs/utils/useLocalstorage/README.md b/docs/docs/auto-docs/utils/useLocalstorage/README.md new file mode 100644 index 0000000000..9766800b4b --- /dev/null +++ b/docs/docs/auto-docs/utils/useLocalstorage/README.md @@ -0,0 +1,21 @@ +[**talawa-admin**](../../README.md) + +*** + +[talawa-admin](../../modules.md) / utils/useLocalstorage + +# utils/useLocalstorage + +## Functions + +- [getItem](functions/getItem.md) +- [getStorageKey](functions/getStorageKey.md) +- [removeItem](functions/removeItem.md) +- [setItem](functions/setItem.md) +- [useLocalStorage](functions/useLocalStorage.md) + +## References + +### default + +Renames and re-exports [useLocalStorage](functions/useLocalStorage.md) diff --git a/docs/docs/auto-docs/utils/useLocalstorage/functions/getItem.md b/docs/docs/auto-docs/utils/useLocalstorage/functions/getItem.md new file mode 100644 index 0000000000..c1a408f36c --- /dev/null +++ b/docs/docs/auto-docs/utils/useLocalstorage/functions/getItem.md @@ -0,0 +1,33 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / [utils/useLocalstorage](../README.md) / getItem + +# Function: getItem() + +> **getItem**(`prefix`, `key`): `any` + +Defined in: [src/utils/useLocalstorage.ts:29](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/useLocalstorage.ts#L29) + +Retrieves the stored value for the given key from local storage. + +## Parameters + +### prefix + +`string` + +Prefix to be added to the key, common for all keys. + +### key + +`string` + +The unique name identifying the value. + +## Returns + +`any` + +- The stored value for the given key from local storage. diff --git a/docs/docs/auto-docs/utils/useLocalstorage/functions/getStorageKey.md b/docs/docs/auto-docs/utils/useLocalstorage/functions/getStorageKey.md new file mode 100644 index 0000000000..942ba06eba --- /dev/null +++ b/docs/docs/auto-docs/utils/useLocalstorage/functions/getStorageKey.md @@ -0,0 +1,33 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / [utils/useLocalstorage](../README.md) / getStorageKey + +# Function: getStorageKey() + +> **getStorageKey**(`prefix`, `key`): `string` + +Defined in: [src/utils/useLocalstorage.ts:19](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/useLocalstorage.ts#L19) + +Generates the prefixed key for storage. + +## Parameters + +### prefix + +`string` + +Prefix to be added to the key, common for all keys. + +### key + +`string` + +The unique name identifying the value. + +## Returns + +`string` + +- Prefixed key. diff --git a/docs/docs/auto-docs/utils/useLocalstorage/functions/removeItem.md b/docs/docs/auto-docs/utils/useLocalstorage/functions/removeItem.md new file mode 100644 index 0000000000..77932ff2e3 --- /dev/null +++ b/docs/docs/auto-docs/utils/useLocalstorage/functions/removeItem.md @@ -0,0 +1,31 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / [utils/useLocalstorage](../README.md) / removeItem + +# Function: removeItem() + +> **removeItem**(`prefix`, `key`): `void` + +Defined in: [src/utils/useLocalstorage.ts:51](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/useLocalstorage.ts#L51) + +Removes the value associated with the given key from local storage. + +## Parameters + +### prefix + +`string` + +Prefix to be added to the key, common for all keys. + +### key + +`string` + +The unique name identifying the value. + +## Returns + +`void` diff --git a/docs/docs/auto-docs/utils/useLocalstorage/functions/setItem.md b/docs/docs/auto-docs/utils/useLocalstorage/functions/setItem.md new file mode 100644 index 0000000000..c6cde9676b --- /dev/null +++ b/docs/docs/auto-docs/utils/useLocalstorage/functions/setItem.md @@ -0,0 +1,37 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / [utils/useLocalstorage](../README.md) / setItem + +# Function: setItem() + +> **setItem**(`prefix`, `key`, `value`): `void` + +Defined in: [src/utils/useLocalstorage.ts:41](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/useLocalstorage.ts#L41) + +Sets the value for the given key in local storage. + +## Parameters + +### prefix + +`string` + +Prefix to be added to the key, common for all keys. + +### key + +`string` + +The unique name identifying the value. + +### value + +`any` + +The value for the key. + +## Returns + +`void` diff --git a/docs/docs/auto-docs/utils/useLocalstorage/functions/useLocalStorage.md b/docs/docs/auto-docs/utils/useLocalstorage/functions/useLocalStorage.md new file mode 100644 index 0000000000..014b800d46 --- /dev/null +++ b/docs/docs/auto-docs/utils/useLocalstorage/functions/useLocalStorage.md @@ -0,0 +1,27 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / [utils/useLocalstorage](../README.md) / useLocalStorage + +# Function: useLocalStorage() + +> **useLocalStorage**(`prefix`): `InterfaceStorageHelper` + +Defined in: [src/utils/useLocalstorage.ts:61](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/useLocalstorage.ts#L61) + +Custom hook for simplified localStorage operations. + +## Parameters + +### prefix + +`string` = `PREFIX` + +Prefix to be added to the key, common for all keys. Default is 'Talawa-admin'. + +## Returns + +`InterfaceStorageHelper` + +- Functions to getItem, setItem, removeItem, and getStorageKey. diff --git a/docs/docs/auto-docs/utils/useSession/README.md b/docs/docs/auto-docs/utils/useSession/README.md new file mode 100644 index 0000000000..ead72ee336 --- /dev/null +++ b/docs/docs/auto-docs/utils/useSession/README.md @@ -0,0 +1,11 @@ +[**talawa-admin**](../../README.md) + +*** + +[talawa-admin](../../modules.md) / utils/useSession + +# utils/useSession + +## Functions + +- [default](functions/default.md) diff --git a/docs/docs/auto-docs/utils/useSession/functions/default.md b/docs/docs/auto-docs/utils/useSession/functions/default.md new file mode 100644 index 0000000000..01d7d316ce --- /dev/null +++ b/docs/docs/auto-docs/utils/useSession/functions/default.md @@ -0,0 +1,26 @@ +[**talawa-admin**](../../../README.md) + +*** + +[talawa-admin](../../../modules.md) / [utils/useSession](../README.md) / default + +# Function: default() + +> **default**(): `UseSessionReturnType` + +Defined in: [src/utils/useSession.tsx:30](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/useSession.tsx#L30) + +Custom hook for managing user session timeouts in a React application. + +This hook handles: +- Starting and ending the user session. +- Displaying a warning toast at half of the session timeout duration. +- Logging the user out and displaying a session expiration toast when the session times out. +- Automatically resetting the timers when user activity is detected. +- Pausing session timers when the tab is inactive and resuming them when it becomes active again. + +## Returns + +`UseSessionReturnType` + +UseSessionReturnType - An object with methods to start and end the session, and to handle logout. From c7375467cffb9c5676e772396c0c68b6f8a88881 Mon Sep 17 00:00:00 2001 From: Rukh-Khan Date: Wed, 15 Jan 2025 19:40:56 +0530 Subject: [PATCH 10/42] docs updatio2n --- .husky/pre-commit | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.husky/pre-commit b/.husky/pre-commit index 9d2baedf0e..0735211004 100755 --- a/.husky/pre-commit +++ b/.husky/pre-commit @@ -1,5 +1,7 @@ -npm run generate-docs && npm run generate-docs && find docs/docs/auto-docs -name 'README.md' -delete && npx rimraf docs/docs/auto-docs/_media +npm run generate-docs +find docs/docs/auto-docs -name 'README.md' -delete +npx rimraf docs/docs/auto-docs/_media find docs/docs/auto-docs -type d -empty -delete npm run format:fix # npm run lint:fix From 22565d73d71e50b6304362c17e2fc4814fcf7d08 Mon Sep 17 00:00:00 2001 From: Rukh-Khan Date: Wed, 15 Jan 2025 22:50:44 +0530 Subject: [PATCH 11/42] docs updatio2n --- .github/workflows/push.yml | 37 +- .husky/pre-commit | 4 - docs/docs/auto-docs/App/README.md | 11 - docs/docs/auto-docs/App/functions/default.md | 31 -- .../auto-docs/Constant/constant/README.md | 16 - .../Constant/constant/variables/AUTH_TOKEN.md | 11 - .../constant/variables/BACKEND_URL.md | 11 - .../REACT_APP_BACKEND_WEBSOCKET_URL.md | 11 - .../variables/REACT_APP_CUSTOM_PORT.md | 11 - .../variables/REACT_APP_USE_RECAPTCHA.md | 11 - .../constant/variables/RECAPTCHA_SITE_KEY.md | 11 - .../ActionItemCategoryMutations/README.md | 12 - .../CREATE_ACTION_ITEM_CATEGORY_MUTATION.md | 25 -- .../UPDATE_ACTION_ITEM_CATEGORY_MUTATION.md | 25 -- .../Mutations/ActionItemMutations/README.md | 13 - .../variables/CREATE_ACTION_ITEM_MUTATION.md | 37 -- .../variables/DELETE_ACTION_ITEM_MUTATION.md | 17 - .../variables/UPDATE_ACTION_ITEM_MUTATION.md | 41 -- .../AgendaCategoryMutations/README.md | 13 - .../CREATE_AGENDA_ITEM_CATEGORY_MUTATION.md | 17 - .../DELETE_AGENDA_ITEM_CATEGORY_MUTATION.md | 17 - .../UPDATE_AGENDA_ITEM_CATEGORY_MUTATION.md | 21 - .../Mutations/AgendaItemMutations/README.md | 13 - .../variables/CREATE_AGENDA_ITEM_MUTATION.md | 11 - .../variables/DELETE_AGENDA_ITEM_MUTATION.md | 11 - .../variables/UPDATE_AGENDA_ITEM_MUTATION.md | 11 - .../Mutations/CampaignMutation/README.md | 12 - .../variables/CREATE_CAMPAIGN_MUTATION.md | 41 -- .../variables/UPDATE_CAMPAIGN_MUTATION.md | 41 -- .../Mutations/CommentMutations/README.md | 13 - .../variables/CREATE_COMMENT_POST.md | 25 -- .../variables/LIKE_COMMENT.md | 21 - .../variables/UNLIKE_COMMENT.md | 21 - .../EventAttendeeMutations/README.md | 13 - .../variables/ADD_EVENT_ATTENDEE.md | 25 -- .../variables/MARK_CHECKIN.md | 25 -- .../variables/REMOVE_EVENT_ATTENDEE.md | 25 -- .../EventVolunteerMutation/README.md | 17 - .../variables/ADD_VOLUNTEER.md | 21 - .../variables/CREATE_VOLUNTEER_GROUP.md | 28 -- .../variables/CREATE_VOLUNTEER_MEMBERSHIP.md | 11 - .../variables/DELETE_VOLUNTEER.md | 21 - .../variables/DELETE_VOLUNTEER_GROUP.md | 21 - .../variables/UPDATE_VOLUNTEER_GROUP.md | 25 -- .../variables/UPDATE_VOLUNTEER_MEMBERSHIP.md | 25 -- .../GraphQl/Mutations/FundMutation/README.md | 12 - .../variables/CREATE_FUND_MUTATION.md | 41 -- .../variables/UPDATE_FUND_MUTATION.md | 41 -- .../Mutations/OrganizationMutations/README.md | 27 -- .../variables/ADD_CUSTOM_FIELD.md | 29 -- .../variables/ADD_USER_TO_GROUP_CHAT.md | 11 - .../variables/CANCEL_MEMBERSHIP_REQUEST.md | 11 - .../variables/CREATE_CHAT.md | 25 -- .../CREATE_SAMPLE_ORGANIZATION_MUTATION.md | 17 - .../variables/EDIT_CHAT_MESSAGE.md | 11 - .../variables/JOIN_PUBLIC_ORGANIZATION.md | 11 - .../variables/MARK_CHAT_MESSAGES_AS_READ.md | 11 - .../variables/MESSAGE_SENT_TO_CHAT.md | 11 - .../variables/PLUGIN_SUBSCRIPTION.md | 17 - .../variables/REMOVE_CUSTOM_FIELD.md | 25 -- .../REMOVE_SAMPLE_ORGANIZATION_MUTATION.md | 17 - .../variables/SEND_MEMBERSHIP_REQUEST.md | 11 - .../variables/SEND_MESSAGE_TO_CHAT.md | 11 - .../variables/TOGGLE_PINNED_POST.md | 21 - .../variables/UPDATE_CHAT.md | 11 - .../UPDATE_USER_ROLE_IN_ORG_MUTATION.md | 29 -- .../Mutations/PledgeMutation/README.md | 13 - .../PledgeMutation/variables/CREATE_PlEDGE.md | 41 -- .../PledgeMutation/variables/DELETE_PLEDGE.md | 21 - .../PledgeMutation/variables/UPDATE_PLEDGE.md | 37 -- .../GraphQl/Mutations/TagMutations/README.md | 17 - .../variables/ADD_PEOPLE_TO_TAG.md | 21 - .../TagMutations/variables/ASSIGN_TO_TAGS.md | 21 - .../TagMutations/variables/CREATE_USER_TAG.md | 29 -- .../variables/REMOVE_FROM_TAGS.md | 21 - .../TagMutations/variables/REMOVE_USER_TAG.md | 17 - .../variables/UNASSIGN_USER_TAG.md | 21 - .../TagMutations/variables/UPDATE_USER_TAG.md | 21 - .../Mutations/VenueMutations/README.md | 13 - .../variables/CREATE_VENUE_MUTATION.md | 33 -- .../variables/DELETE_VENUE_MUTATION.md | 17 - .../variables/UPDATE_VENUE_MUTATION.md | 33 -- .../GraphQl/Mutations/mutations/README.md | 224 ---------- .../ACCEPT_ORGANIZATION_REQUEST_MUTATION.md | 11 - .../variables/ADDRESS_DETAILS_FRAGMENT.md | 11 - .../mutations/variables/ADD_ADMIN_MUTATION.md | 11 - .../variables/ADD_ADVERTISEMENT_MUTATION.md | 11 - .../variables/ADD_MEMBER_MUTATION.md | 11 - .../variables/ADD_PLUGIN_MUTATION.md | 15 - .../variables/BLOCK_USER_MUTATION.md | 11 - .../variables/CREATE_EVENT_MUTATION.md | 11 - .../variables/CREATE_ORGANIZATION_MUTATION.md | 11 - .../variables/CREATE_POST_MUTATION.md | 11 - .../variables/DELETE_ADVERTISEMENT_BY_ID.md | 11 - .../variables/DELETE_EVENT_MUTATION.md | 11 - .../variables/DELETE_ORGANIZATION_MUTATION.md | 11 - .../variables/DELETE_POST_MUTATION.md | 11 - .../variables/DONATE_TO_ORGANIZATION.md | 11 - .../variables/FORGOT_PASSWORD_MUTATION.md | 11 - .../variables/GENERATE_OTP_MUTATION.md | 11 - .../mutations/variables/LIKE_POST.md | 11 - .../mutations/variables/LOGIN_MUTATION.md | 11 - .../mutations/variables/RECAPTCHA_MUTATION.md | 11 - .../variables/REFRESH_TOKEN_MUTATION.md | 11 - .../mutations/variables/REGISTER_EVENT.md | 11 - .../REJECT_ORGANIZATION_REQUEST_MUTATION.md | 11 - .../variables/REMOVE_ADMIN_MUTATION.md | 11 - .../variables/REMOVE_MEMBER_MUTATION.md | 11 - .../mutations/variables/RESET_COMMUNITY.md | 11 - .../variables/REVOKE_REFRESH_TOKEN.md | 11 - .../mutations/variables/SIGNUP_MUTATION.md | 11 - .../variables/UNBLOCK_USER_MUTATION.md | 11 - .../mutations/variables/UNLIKE_POST.md | 11 - .../UPDATE_ADVERTISEMENT_MUTATION.md | 11 - .../mutations/variables/UPDATE_COMMUNITY.md | 11 - .../variables/UPDATE_EVENT_MUTATION.md | 11 - .../UPDATE_INSTALL_STATUS_PLUGIN_MUTATION.md | 15 - .../variables/UPDATE_ORGANIZATION_MUTATION.md | 11 - .../UPDATE_ORG_STATUS_PLUGIN_MUTATION.md | 15 - .../variables/UPDATE_POST_MUTATION.md | 11 - .../variables/UPDATE_SESSION_TIMEOUT.md | 11 - .../variables/UPDATE_USER_MUTATION.md | 11 - .../UPDATE_USER_PASSWORD_MUTATION.md | 11 - .../ActionItemCategoryQueries/README.md | 11 - .../variables/ACTION_ITEM_CATEGORY_LIST.md | 21 - .../Queries/ActionItemQueries/README.md | 12 - .../variables/ACTION_ITEMS_BY_USER.md | 11 - .../variables/ACTION_ITEM_LIST.md | 37 -- .../Queries/AgendaCategoryQueries/README.md | 11 - .../variables/AGENDA_ITEM_CATEGORY_LIST.md | 21 - .../Queries/AgendaItemQueries/README.md | 12 - .../variables/AgendaItemByEvent.md | 11 - .../variables/AgendaItemByOrganization.md | 11 - .../Queries/EventVolunteerQueries/README.md | 14 - .../variables/EVENT_VOLUNTEER_GROUP_LIST.md | 11 - .../variables/EVENT_VOLUNTEER_LIST.md | 25 -- .../variables/USER_VOLUNTEER_MEMBERSHIP.md | 11 - .../variables/VOLUNTEER_RANKING.md | 11 - .../Queries/OrganizationQueries/README.md | 19 - .../variables/ORGANIZATION_ADMINS_LIST.md | 21 - .../ORGANIZATION_ADVERTISEMENT_LIST.md | 11 - .../variables/ORGANIZATION_FUNDS.md | 21 - .../variables/ORGANIZATION_POST_LIST.md | 33 -- .../variables/ORGANIZATION_USER_TAGS_LIST.md | 37 -- .../variables/USER_CREATED_ORGANIZATIONS.md | 21 - .../variables/USER_JOINED_ORGANIZATIONS.md | 21 - .../variables/USER_ORGANIZATION_CONNECTION.md | 33 -- .../variables/VENUE_LIST.md | 21 - .../GraphQl/Queries/PlugInQueries/README.md | 20 - .../variables/ADVERTISEMENTS_GET.md | 17 - .../PlugInQueries/variables/CHATS_LIST.md | 11 - .../PlugInQueries/variables/CHAT_BY_ID.md | 21 - .../variables/GROUP_CHAT_LIST.md | 11 - .../variables/IS_SAMPLE_ORGANIZATION_QUERY.md | 21 - .../variables/ORGANIZATION_CUSTOM_FIELDS.md | 21 - .../ORGANIZATION_EVENTS_CONNECTION.md | 41 -- .../PlugInQueries/variables/PLUGIN_GET.md | 17 - .../variables/UNREAD_CHAT_LIST.md | 11 - .../variables/USER_EVENTS_VOLUNTEER.md | 11 - .../GraphQl/Queries/Queries/README.md | 132 ------ .../Queries/Queries/variables/ADMIN_LIST.md | 11 - .../variables/BLOCK_PAGE_MEMBER_LIST.md | 11 - .../Queries/Queries/variables/CHECK_AUTH.md | 11 - .../Queries/variables/EVENT_ATTENDEES.md | 11 - .../Queries/variables/EVENT_CHECKINS.md | 11 - .../Queries/variables/EVENT_DETAILS.md | 11 - .../Queries/variables/EVENT_FEEDBACKS.md | 11 - .../Queries/variables/EVENT_REGISTRANTS.md | 11 - .../Queries/variables/GET_COMMUNITY_DATA.md | 11 - .../GET_COMMUNITY_SESSION_TIMEOUT_DATA.md | 11 - .../Queries/variables/MEMBERSHIP_REQUEST.md | 11 - .../Queries/Queries/variables/MEMBERS_LIST.md | 11 - .../Queries/variables/ORGANIZATIONS_LIST.md | 11 - .../ORGANIZATIONS_MEMBER_CONNECTION_LIST.md | 11 - .../variables/ORGANIZATION_CONNECTION_LIST.md | 11 - .../ORGANIZATION_DONATION_CONNECTION_LIST.md | 11 - .../ORGANIZATION_EVENT_CONNECTION_LIST.md | 11 - .../variables/ORGANIZATION_EVENT_LIST.md | 11 - .../Queries/variables/ORGANIZATION_LIST.md | 11 - .../Queries/variables/RECURRING_EVENTS.md | 11 - .../variables/USERS_CONNECTION_LIST.md | 11 - .../Queries/Queries/variables/USER_DETAILS.md | 11 - .../Queries/Queries/variables/USER_LIST.md | 11 - .../Queries/variables/USER_LIST_FOR_TABLE.md | 11 - .../Queries/variables/USER_LIST_REQUEST.md | 11 - .../variables/USER_ORGANIZATION_LIST.md | 11 - .../GraphQl/Queries/fundQueries/README.md | 15 - .../fundQueries/variables/FUND_CAMPAIGN.md | 11 - .../variables/FUND_CAMPAIGN_PLEDGE.md | 11 - .../fundQueries/variables/FUND_LIST.md | 25 -- .../variables/USER_FUND_CAMPAIGNS.md | 11 - .../fundQueries/variables/USER_PLEDGES.md | 11 - .../GraphQl/Queries/userTagQueries/README.md | 13 - .../variables/USER_TAGS_ASSIGNED_MEMBERS.md | 21 - .../USER_TAGS_MEMBERS_TO_ASSIGN_TO.md | 21 - .../variables/USER_TAG_SUB_TAGS.md | 21 - docs/docs/auto-docs/README.md | 60 --- docs/docs/auto-docs/_media/CODE_OF_CONDUCT.md | 150 ------- docs/docs/auto-docs/_media/CONTRIBUTING.md | 179 -------- docs/docs/auto-docs/_media/INSTALLATION.md | 382 ------------------ .../docs/auto-docs/_media/ISSUE_GUIDELINES.md | 59 --- docs/docs/auto-docs/_media/PR_GUIDELINES.md | 69 ---- .../assets/svgs/social-icons/README.md | 7 - .../components/AddOn/AddOn/README.md | 11 - .../AddOn/AddOn/functions/default.md | 27 -- .../core/AddOnEntry/AddOnEntry/README.md | 11 - .../AddOnEntry/functions/default.md | 43 -- .../core/AddOnEntry/AddOnEntryMocks/README.md | 11 - .../variables/ADD_ON_ENTRY_MOCK.md | 65 --- .../AddOnRegister/AddOnRegister/README.md | 11 - .../AddOnRegister/functions/default.md | 32 -- .../core/AddOnStore/AddOnStore/README.md | 11 - .../AddOnStore/functions/default.md | 25 -- .../components/Action/Action/README.md | 11 - .../Action/Action/functions/default.md | 35 -- .../MainContent/MainContent/README.md | 11 - .../MainContent/functions/default.md | 35 -- .../components/SidePanel/SidePanel/README.md | 11 - .../SidePanel/SidePanel/functions/default.md | 35 -- .../support/services/Plugin.helper/README.md | 11 - .../services/Plugin.helper/classes/default.md | 77 ---- .../support/services/Render.helper/README.md | 11 - .../services/Render.helper/classes/default.md | 19 - .../AddPeopleToTag/AddPeopleToTag/README.md | 15 - .../AddPeopleToTag/functions/default.md | 31 -- .../InterfaceAddPeopleToTagProps.md | 59 --- .../AddPeopleToTagsMocks/README.md | 12 - .../AddPeopleToTagsMocks/variables/MOCKS.md | 11 - .../variables/MOCKS_ERROR.md | 57 --- .../Advertisements/Advertisements/README.md | 11 - .../Advertisements/functions/default.md | 15 - .../AdvertisementEntry/README.md | 11 - .../AdvertisementEntry/functions/default.md | 28 -- .../AdvertisementRegister/README.md | 11 - .../functions/default.md | 36 -- .../AgendaCategoryContainer/README.md | 11 - .../functions/default.md | 47 --- .../AgendaCategoryContainerMocks/README.md | 12 - .../variables/MOCKS.md | 11 - .../variables/MOCKS_ERROR_MUTATIONS.md | 11 - .../AgendaCategoryContainerProps/README.md | 12 - .../variables/props.md | 25 -- .../variables/props2.md | 25 -- .../AgendaItemsContainer/README.md | 11 - .../AgendaItemsContainer/functions/default.md | 43 -- .../AgendaItemsContainerMocks/README.md | 12 - .../variables/MOCKS.md | 11 - .../variables/MOCKS_ERROR.md | 11 - .../AgendaItemsContainerProps/README.md | 12 - .../variables/props.md | 29 -- .../variables/props2.md | 29 -- .../AgendaItemsCreateModal/README.md | 11 - .../functions/default.md | 34 -- .../AgendaItemsDeleteModal/README.md | 11 - .../functions/default.md | 34 -- .../AgendaItemsPreviewModal/README.md | 11 - .../functions/default.md | 35 -- .../AgendaItemsUpdateModal/README.md | 11 - .../functions/default.md | 35 -- .../components/Avatar/Avatar/README.md | 11 - .../Avatar/Avatar/functions/default.md | 26 -- .../ChangeLanguageDropDown/README.md | 11 - .../functions/default.md | 28 -- .../components/CheckIn/CheckInModal/README.md | 11 - .../CheckInModal/functions/CheckInModal.md | 26 -- .../CheckIn/CheckInWrapper/README.md | 11 - .../functions/CheckInWrapper.md | 27 -- .../components/CheckIn/TableRow/README.md | 11 - .../CheckIn/TableRow/functions/TableRow.md | 32 -- .../components/CheckIn/mocks/README.md | 13 - .../mocks/variables/checkInMutationSuccess.md | 49 --- .../variables/checkInMutationUnsuccess.md | 37 -- .../mocks/variables/checkInQueryMock.md | 37 -- .../components/CheckIn/tagTemplate/README.md | 11 - .../tagTemplate/variables/tagTemplate.md | 11 - .../components/CheckIn/types/README.md | 16 - .../interfaces/InterfaceAttendeeCheckIn.md | 33 -- .../InterfaceAttendeeQueryResponse.md | 25 -- .../types/interfaces/InterfaceModalProp.md | 37 -- .../types/interfaces/InterfaceTableCheckIn.md | 49 --- .../types/interfaces/InterfaceTableData.md | 33 -- .../CheckIn/types/interfaces/InterfaceUser.md | 33 -- .../CollapsibleDropdown/README.md | 15 - .../CollapsibleDropdown/functions/default.md | 25 -- .../InterfaceCollapsibleDropdown.md | 33 -- .../ContriStats/ContriStats/README.md | 11 - .../ContriStats/functions/default.md | 25 -- .../CurrentHourIndicator/README.md | 11 - .../CurrentHourIndicator/functions/default.md | 19 - .../DynamicDropDown/DynamicDropDown/README.md | 11 - .../DynamicDropDown/functions/default.md | 32 -- .../EditCustomFieldDropDown/README.md | 11 - .../functions/default.md | 29 -- .../EventCalendar/EventCalendar/README.md | 11 - .../EventCalendar/functions/default.md | 31 -- .../EventCalendar/EventHeader/README.md | 11 - .../EventHeader/functions/default.md | 26 -- .../YearlyEventCalender/README.md | 11 - .../YearlyEventCalender/functions/default.md | 38 -- .../EventCalendar/constants/README.md | 14 - .../constants/variables/holidays.md | 25 -- .../constants/variables/hours.md | 11 - .../constants/variables/months.md | 11 - .../constants/variables/weekdays.md | 11 - .../EventDashboardScreen/README.md | 11 - .../EventDashboardScreen/functions/default.md | 20 - .../EventListCard/EventListCard/README.md | 15 - .../EventListCard/functions/default.md | 27 -- .../interfaces/InterfaceEventListCardProps.md | 183 --------- .../EventListCardMocks/README.md | 12 - .../variables/ERROR_MOCKS.md | 33 -- .../EventListCardMocks/variables/MOCKS.md | 11 - .../EventListCardModals/README.md | 11 - .../EventListCardModals/functions/default.md | 28 -- .../EventListCardProps/README.md | 11 - .../EventListCardProps/variables/props.md | 11 - .../Dashboard/EventDashboard.mocks/README.md | 12 - .../variables/MOCKS_WITHOUT_TIME.md | 101 ----- .../variables/MOCKS_WITH_TIME.md | 101 ----- .../Dashboard/EventDashboard/README.md | 11 - .../EventDashboard/functions/default.md | 29 -- .../EventAgendaItems/README.md | 11 - .../EventAgendaItems/functions/default.md | 29 -- .../EventAgendaItemsMocks/README.md | 13 - .../EventAgendaItemsMocks/variables/MOCKS.md | 11 - .../variables/MOCKS_ERROR_MUTATION.md | 11 - .../variables/MOCKS_ERROR_QUERY.md | 11 - .../Attendance.mocks/README.md | 12 - .../Attendance.mocks/variables/MOCKS.md | 41 -- .../Attendance.mocks/variables/MOCKS_ERROR.md | 29 -- .../AttendedEventList/README.md | 11 - .../AttendedEventList/functions/default.md | 35 -- .../EventAttendance/EventAttendance/README.md | 11 - .../EventAttendance/functions/default.md | 20 - .../EventAttendance/EventStatistics/README.md | 11 - .../functions/AttendanceStatisticsModal.md | 36 -- .../EventAttendance/InterfaceEvents/README.md | 14 - ...InterfaceAttendanceStatisticsModalProps.md | 75 ---- .../interfaces/InterfaceEvent.md | 189 --------- .../interfaces/InterfaceMember.md | 97 ----- .../interfaces/InterfaceRecurringEvent.md | 89 ---- .../EventRegistrants/README.md | 11 - .../EventRegistrants/functions/default.md | 20 - .../Registrations.mocks/README.md | 12 - .../variables/REGISTRANTS_MOCKS.md | 11 - .../variables/REGISTRANTS_MOCKS_ERROR.md | 33 -- .../AddOnSpotAttendee/README.md | 11 - .../AddOnSpotAttendee/functions/default.md | 35 -- .../EventRegistrantsModal/README.md | 11 - .../functions/EventRegistrantsModal.md | 26 -- .../EventRegistrantsWrapper/README.md | 11 - .../functions/EventRegistrantsWrapper.md | 25 -- .../EventStats/EventStats/README.md | 11 - .../EventStats/functions/EventStats.md | 26 -- .../EventStats/EventStatsWrapper/README.md | 11 - .../functions/EventStatsWrapper.md | 27 -- .../Statistics/AverageRating/README.md | 11 - .../AverageRating/functions/AverageRating.md | 28 -- .../EventStats/Statistics/Feedback/README.md | 11 - .../Feedback/functions/FeedbackStats.md | 28 -- .../EventStats/Statistics/Review/README.md | 11 - .../Review/functions/ReviewStats.md | 28 -- .../GroupChatDetails/README.md | 11 - .../GroupChatDetails/functions/default.md | 25 -- .../HolidayCards/HolidayCard/README.md | 11 - .../HolidayCard/functions/default.md | 27 -- .../IconComponent/IconComponent/README.md | 15 - .../IconComponent/functions/default.md | 27 -- .../interfaces/InterfaceIconComponent.md | 41 -- .../InfiniteScrollLoader/README.md | 11 - .../InfiniteScrollLoader/functions/default.md | 17 - .../LeftDrawer/LeftDrawer/README.md | 15 - .../LeftDrawer/functions/default.md | 25 -- .../interfaces/InterfaceLeftDrawerProps.md | 25 -- .../LeftDrawerOrg/LeftDrawerOrg/README.md | 15 - .../LeftDrawerOrg/functions/default.md | 25 -- .../interfaces/InterfaceLeftDrawerProps.md | 41 -- .../components/Loader/Loader/README.md | 11 - .../Loader/Loader/functions/default.md | 25 -- .../LoginPortalToggle/README.md | 11 - .../LoginPortalToggle/functions/default.md | 27 -- .../EventsAttendedByMember/README.md | 11 - .../functions/default.md | 21 - .../EventsAttendedCardItem/README.md | 15 - .../functions/default.md | 21 - .../interfaces/InterfaceCardItem.md | 88 ---- .../EventsAttendedMemberModal/README.md | 11 - .../functions/default.md | 31 -- .../MemberDetail/customTableCell/README.md | 11 - .../functions/CustomTableCell.md | 37 -- .../MemberRequestCard/README.md | 11 - .../MemberRequestCard/functions/default.md | 27 -- .../components/NotFound/NotFound/README.md | 11 - .../NotFound/NotFound/functions/default.md | 25 -- .../OrgAdminListCard/README.md | 11 - .../OrgAdminListCard/functions/default.md | 25 -- .../OrgContriCards/OrgContriCards/README.md | 11 - .../OrgContriCards/functions/default.md | 30 -- .../components/OrgDelete/OrgDelete/README.md | 11 - .../OrgDelete/OrgDelete/functions/default.md | 21 - .../OrgListCard/OrgListCard/README.md | 15 - .../OrgListCard/functions/default.md | 31 -- .../interfaces/InterfaceOrgListCardProps.md | 19 - .../OrgListCard/TruncatedText/README.md | 11 - .../TruncatedText/functions/default.md | 47 --- .../OrgListCard/useDebounce/README.md | 11 - .../useDebounce/functions/default.md | 61 --- .../OrgPeopleListCard/README.md | 11 - .../OrgPeopleListCard/functions/default.md | 30 -- .../OrgPostCard/DeletePostModal/README.md | 11 - .../DeletePostModal/functions/default.md | 31 -- .../OrgPostCard/OrgPostCard/README.md | 11 - .../OrgPostCard/functions/default.md | 21 - .../CategoryModal/README.md | 15 - .../CategoryModal/functions/default.md | 37 -- .../InterfaceActionItemCategoryModal.md | 74 ---- .../OrgActionItemCategories/README.md | 11 - .../functions/default.md | 34 -- .../OrgActionItemCategoryMocks/README.md | 13 - .../variables/MOCKS.md | 11 - .../variables/MOCKS_EMPTY.md | 53 --- .../variables/MOCKS_ERROR.md | 11 - .../AgendaCategoryCreateModal/README.md | 11 - .../functions/default.md | 35 -- .../AgendaCategoryDeleteModal/README.md | 11 - .../functions/default.md | 35 -- .../AgendaCategoryPreviewModal/README.md | 11 - .../functions/default.md | 35 -- .../AgendaCategoryUpdateModal/README.md | 11 - .../functions/default.md | 35 -- .../OrganizationAgendaCategory/README.md | 11 - .../functions/default.md | 37 -- .../README.md | 12 - ...S_ERROR_AGENDA_ITEM_CATEGORY_LIST_QUERY.md | 41 -- .../variables/MOCKS_ERROR_MUTATION.md | 11 - .../OrganizationAgendaCategoryMocks/README.md | 11 - .../variables/MOCKS.md | 11 - .../General/DeleteOrg/DeleteOrg/README.md | 11 - .../DeleteOrg/DeleteOrg/functions/default.md | 24 -- .../General/GeneralSettings/README.md | 11 - .../GeneralSettings/functions/default.md | 37 -- .../OrgProfileFieldSettings/README.md | 11 - .../functions/default.md | 22 - .../General/OrgUpdate/OrgUpdate/README.md | 11 - .../OrgUpdate/OrgUpdate/functions/default.md | 31 -- .../OrgUpdate/OrgUpdateMocks/README.md | 13 - .../OrgUpdateMocks/variables/MOCKS.md | 11 - .../variables/MOCKS_ERROR_ORGLIST.md | 33 -- .../variables/MOCKS_ERROR_UPDATE_ORGLIST.md | 11 - .../OrganizationCard/README.md | 11 - .../OrganizationCard/functions/default.md | 27 -- .../OrganizationCardStart/README.md | 11 - .../functions/default.md | 25 -- .../OrganizationDashCards/CardItem/README.md | 15 - .../CardItem/functions/default.md | 27 -- .../CardItem/interfaces/InterfaceCardItem.md | 83 ---- .../CardItemLoading/README.md | 11 - .../CardItemLoading/functions/default.md | 19 - .../DashboardCard/README.md | 11 - .../DashboardCard/functions/default.md | 35 -- .../DashboardCardLoading/README.md | 11 - .../DashboardCardLoading/functions/default.md | 19 - .../OrganizationScreen/README.md | 11 - .../OrganizationScreen/functions/default.md | 24 -- .../Pagination/Pagination/README.md | 11 - .../Pagination/functions/default.md | 31 -- .../PaginationList/PaginationList/README.md | 11 - .../PaginationList/functions/default.md | 24 -- .../ProfileDropdown/ProfileDropdown/README.md | 11 - .../ProfileDropdown/functions/default.md | 26 -- .../CustomRecurrenceModal/README.md | 11 - .../functions/default.md | 41 -- .../RecurrenceOptions/README.md | 11 - .../RecurrenceOptions/functions/default.md | 49 --- .../RequestsTableItem/README.md | 15 - .../RequestsTableItem/functions/default.md | 31 -- .../interfaces/InterfaceRequestsListItem.md | 39 -- .../RequestsTableItemMocks/README.md | 11 - .../RequestsTableItemMocks/variables/MOCKS.md | 11 - .../SecuredRoute/SecuredRoute/README.md | 11 - .../SecuredRoute/functions/default.md | 22 - .../SuperAdminScreen/README.md | 11 - .../SuperAdminScreen/functions/default.md | 20 - .../TableLoader/TableLoader/README.md | 15 - .../TableLoader/functions/default.md | 29 -- .../interfaces/InterfaceTableLoader.md | 33 -- .../TagActions/TagActions/README.md | 15 - .../TagActions/functions/default.md | 31 -- .../interfaces/InterfaceTagActionsProps.md | 55 --- .../TagActions/TagActionsMocks/README.md | 13 - .../TagActionsMocks/variables/MOCKS.md | 11 - .../MOCKS_ERROR_ORGANIZATION_TAGS_QUERY.md | 49 --- .../variables/MOCKS_ERROR_SUBTAGS_QUERY.md | 11 - .../components/TagActions/TagNode/README.md | 11 - .../TagActions/TagNode/functions/default.md | 33 -- .../TagActions/TagNodeMocks/README.md | 12 - .../TagNodeMocks/variables/MOCKS1.md | 11 - .../variables/MOCKS_ERROR_SUBTAGS_QUERY1.md | 37 -- .../UpdateSession/UpdateSession/README.md | 11 - .../UpdateSession/functions/default.md | 31 -- .../UserListCard/UserListCard/README.md | 11 - .../UserListCard/functions/default.md | 28 -- .../UserPasswordUpdate/README.md | 11 - .../UserPasswordUpdate/functions/default.md | 38 -- .../UserPasswordUpdateMocks/README.md | 11 - .../variables/MOCKS.md | 11 - .../UserPortal/ChatRoom/ChatRoom/README.md | 11 - .../ChatRoom/ChatRoom/functions/default.md | 21 - .../CommentCard/CommentCard/README.md | 11 - .../CommentCard/functions/default.md | 30 -- .../ContactCard/ContactCard/README.md | 11 - .../ContactCard/functions/default.md | 31 -- .../CreateDirectChat/README.md | 11 - .../CreateDirectChat/functions/default.md | 21 - .../CreateGroupChat/CreateGroupChat/README.md | 11 - .../CreateGroupChat/functions/default.md | 21 - .../DonationCard/DonationCard/README.md | 11 - .../DonationCard/functions/default.md | 30 -- .../UserPortal/EventCard/EventCard/README.md | 11 - .../EventCard/EventCard/functions/default.md | 31 -- .../OrganizationCard/README.md | 11 - .../OrganizationCard/functions/default.md | 21 - .../OrganizationNavbar/README.md | 11 - .../OrganizationNavbar/functions/default.md | 33 -- .../OrganizationSidebar/README.md | 11 - .../OrganizationSidebar/functions/default.md | 29 -- .../PeopleCard/PeopleCard/README.md | 11 - .../PeopleCard/functions/default.md | 34 -- .../UserPortal/PostCard/PostCard/README.md | 11 - .../PostCard/PostCard/functions/default.md | 34 -- .../PromotedPost/PromotedPost/README.md | 11 - .../PromotedPost/functions/default.md | 32 -- .../UserPortal/Register/Register/README.md | 11 - .../Register/Register/functions/default.md | 21 - .../SecuredRouteForUser/README.md | 11 - .../SecuredRouteForUser/functions/default.md | 22 - .../StartPostModal/StartPostModal/README.md | 11 - .../StartPostModal/functions/default.md | 30 -- .../UserNavbar/UserNavbar/README.md | 11 - .../UserNavbar/functions/default.md | 24 -- .../EventsAttendedByUser/README.md | 17 - .../functions/EventsAttendedByUser.md | 31 -- .../UserProfile/UserAddressFields/README.md | 17 - .../functions/UserAddressFields.md | 38 -- .../UserSidebar/UserSidebar/README.md | 15 - .../UserSidebar/functions/default.md | 30 -- .../interfaces/InterfaceUserSidebarProps.md | 25 -- .../UserSidebarOrg/UserSidebarOrg/README.md | 15 - .../UserSidebarOrg/functions/default.md | 30 -- .../InterfaceUserSidebarOrgProps.md | 41 -- .../UserProfileSettings/DeleteUser/README.md | 11 - .../DeleteUser/functions/default.md | 34 -- .../OtherSettings/README.md | 11 - .../OtherSettings/functions/default.md | 34 -- .../UserProfileSettings/UserProfile/README.md | 11 - .../UserProfile/functions/default.md | 38 -- .../UserTableItemMocks/README.md | 13 - .../UserTableItemMocks/variables/MOCKS.md | 11 - .../UserTableItemMocks/variables/MOCKS2.md | 37 -- .../variables/MOCKS_UPDATE.md | 11 - .../UsersTableItem/UsersTableItem/README.md | 11 - .../UsersTableItem/functions/default.md | 21 - .../components/Venues/VenueCard/README.md | 11 - .../Venues/VenueCard/functions/default.md | 39 -- .../components/Venues/VenueModal/README.md | 15 - .../Venues/VenueModal/functions/default.md | 28 -- .../interfaces/InterfaceVenueModalProps.md | 65 --- .../DummyPlugin/DummyPlugin.test/README.md | 7 - .../plugins/DummyPlugin/DummyPlugin/README.md | 11 - .../DummyPlugin/functions/default.md | 22 - .../DummyPlugin2/DummyPlugin2.test/README.md | 7 - .../DummyPlugin2/DummyPlugin2/README.md | 11 - .../DummyPlugin2/functions/default.md | 21 - .../auto-docs/components/plugins/README.md | 19 - docs/docs/auto-docs/constants/README.md | 11 - .../constants/variables/socialMediaLinks.md | 25 -- docs/docs/auto-docs/index/README.md | 7 - docs/docs/auto-docs/modules.md | 339 ---------------- docs/docs/auto-docs/reportWebVitals/README.md | 11 - .../reportWebVitals/functions/default.md | 21 - .../screens/BlockUser/BlockUser/README.md | 11 - .../BlockUser/BlockUser/functions/default.md | 28 -- .../CommunityProfile/README.md | 11 - .../CommunityProfile/functions/default.md | 30 -- .../EventManagement/EventManagement/README.md | 11 - .../EventManagement/functions/default.md | 34 -- .../Requests/Requests.mocks/README.md | 14 - .../Requests.mocks/variables/EMPTY_MOCKS.md | 49 --- .../Requests.mocks/variables/ERROR_MOCKS.md | 11 - .../Requests.mocks/variables/MOCKS.md | 11 - .../variables/UPDATE_ERROR_MOCKS.md | 11 - .../Requests/Requests/README.md | 11 - .../Requests/Requests/functions/default.md | 21 - .../VolunteerContainer/README.md | 11 - .../VolunteerContainer/functions/default.md | 21 - .../VolunteerGroupDeleteModal/README.md | 15 - .../functions/default.md | 48 --- .../InterfaceDeleteVolunteerGroupModal.md | 49 --- .../VolunteerGroupModal/README.md | 15 - .../VolunteerGroupModal/functions/default.md | 54 --- .../InterfaceVolunteerGroupModal.md | 73 ---- .../VolunteerGroupViewModal/README.md | 15 - .../functions/default.md | 41 -- .../InterfaceVolunteerGroupViewModal.md | 37 -- .../VolunteerGroups.mocks/README.md | 13 - .../VolunteerGroups.mocks/variables/MOCKS.md | 11 - .../variables/MOCKS_EMPTY.md | 57 --- .../variables/MOCKS_ERROR.md | 11 - .../VolunteerGroups/VolunteerGroups/README.md | 11 - .../VolunteerGroups/functions/default.md | 20 - .../Volunteers/VolunteerCreateModal/README.md | 15 - .../VolunteerCreateModal/functions/default.md | 49 --- .../InterfaceVolunteerCreateModal.md | 57 --- .../Volunteers/VolunteerDeleteModal/README.md | 15 - .../VolunteerDeleteModal/functions/default.md | 48 --- .../InterfaceDeleteVolunteerModal.md | 49 --- .../Volunteers/VolunteerViewModal/README.md | 15 - .../VolunteerViewModal/functions/default.md | 41 -- .../interfaces/InterfaceVolunteerViewModal.md | 37 -- .../Volunteers/Volunteers.mocks/README.md | 13 - .../Volunteers.mocks/variables/MOCKS.md | 11 - .../Volunteers.mocks/variables/MOCKS_EMPTY.md | 53 --- .../Volunteers.mocks/variables/MOCKS_ERROR.md | 11 - .../Volunteers/Volunteers/README.md | 11 - .../Volunteers/functions/default.md | 21 - .../ForgotPassword/ForgotPassword/README.md | 11 - .../ForgotPassword/functions/default.md | 29 -- .../FundCampaignPledge/README.md | 11 - .../FundCampaignPledge/functions/default.md | 15 - .../PledgeDeleteModal/README.md | 15 - .../PledgeDeleteModal/functions/default.md | 48 --- .../interfaces/InterfaceDeletePledgeModal.md | 49 --- .../FundCampaignPledge/PledgeModal/README.md | 15 - .../PledgeModal/functions/default.md | 53 --- .../interfaces/InterfacePledgeModal.md | 81 ---- .../FundCampaignPledge/PledgesMocks/README.md | 15 - .../PledgesMocks/variables/EMPTY_MOCKS.md | 11 - .../PledgesMocks/variables/MOCKS.md | 11 - .../variables/MOCKS_DELETE_PLEDGE_ERROR.md | 11 - .../MOCKS_FUND_CAMPAIGN_PLEDGE_ERROR.md | 11 - .../variables/PLEDGE_MODAL_MOCKS.md | 11 - .../Leaderboard/Leaderboard.mocks/README.md | 13 - .../variables/EMPTY_MOCKS.md | 57 --- .../variables/ERROR_MOCKS.md | 49 --- .../Leaderboard.mocks/variables/MOCKS.md | 57 --- .../screens/Leaderboard/Leaderboard/README.md | 11 - .../Leaderboard/functions/default.md | 23 -- .../screens/LoginPage/LoginPage/README.md | 11 - .../LoginPage/LoginPage/functions/default.md | 19 - .../ManageTag/EditUserTagModal/README.md | 15 - .../EditUserTagModal/functions/default.md | 31 -- .../InterfaceEditUserTagModalProps.md | 91 ----- .../screens/ManageTag/ManageTag/README.md | 11 - .../ManageTag/ManageTag/functions/default.md | 17 - .../MockAddPeopleToTag/README.md | 11 - .../MockAddPeopleToTag/functions/default.md | 31 -- .../MockTagActions/README.md | 11 - .../MockTagActions/functions/default.md | 33 -- .../ManageTag/ManageTagMocks/README.md | 12 - .../ManageTagMocks/variables/MOCKS.md | 11 - .../variables/MOCKS_ERROR_ASSIGNED_MEMBERS.md | 65 --- .../ManageTag/RemoveUserTagModal/README.md | 15 - .../RemoveUserTagModal/functions/default.md | 31 -- .../InterfaceRemoveUserTagModalProps.md | 59 --- .../ManageTag/UnassignUserTagModal/README.md | 15 - .../UnassignUserTagModal/functions/default.md | 31 -- .../InterfaceUnassignUserTagModalProps.md | 59 --- .../MemberDetail/MemberDetail/README.md | 13 - .../MemberDetail/functions/default.md | 38 -- .../MemberDetail/functions/getLanguageName.md | 21 - .../MemberDetail/functions/prettyDate.md | 21 - .../MemberDetail/MemberDetailMocks/README.md | 13 - .../MemberDetailMocks/variables/MOCKS1.md | 11 - .../MemberDetailMocks/variables/MOCKS2.md | 221 ---------- .../MemberDetailMocks/variables/MOCKS3.md | 221 ---------- .../OrgContribution/OrgContribution/README.md | 11 - .../OrgContribution/functions/default.md | 19 - .../screens/OrgList/OrgList/README.md | 11 - .../OrgList/OrgList/functions/default.md | 15 - .../screens/OrgList/OrgListMocks/README.md | 14 - .../OrgList/OrgListMocks/variables/MOCKS.md | 11 - .../OrgListMocks/variables/MOCKS_ADMIN.md | 11 - .../OrgListMocks/variables/MOCKS_EMPTY.md | 11 - .../variables/MOCKS_WITH_ERROR.md | 11 - .../OrgList/OrganizationModal/README.md | 11 - .../OrganizationModal/functions/default.md | 33 -- .../screens/OrgPost/OrgPost/README.md | 11 - .../OrgPost/OrgPost/functions/default.md | 21 - .../OrgSettings/OrgSettings.mocks/README.md | 11 - .../OrgSettings.mocks/variables/MOCKS.md | 11 - .../screens/OrgSettings/OrgSettings/README.md | 11 - .../OrgSettings/functions/default.md | 23 -- .../ItemDeleteModal/README.md | 15 - .../ItemDeleteModal/functions/default.md | 37 -- .../InterfaceItemDeleteModalProps.md | 51 --- .../ItemModal/README.md | 15 - .../ItemModal/functions/default.md | 37 -- .../interfaces/InterfaceItemModalProps.md | 75 ---- .../ItemUpdateStatusModal/README.md | 15 - .../functions/default.md | 31 -- .../InterfaceItemUpdateStatusModalProps.md | 49 --- .../ItemViewModal/README.md | 15 - .../ItemViewModal/functions/default.md | 38 -- .../interfaces/InterfaceViewModalProps.md | 37 -- .../OrganizationActionItem.mocks/README.md | 13 - .../variables/MOCKS.md | 11 - .../variables/MOCKS_EMPTY.md | 11 - .../variables/MOCKS_ERROR.md | 11 - .../OrganizationActionItems/README.md | 11 - .../functions/default.md | 21 - .../testObject.mocks/README.md | 22 - .../variables/actionItemCategory1.md | 21 - .../variables/actionItemCategory2.md | 21 - .../variables/actionItemCategoryListQuery.md | 49 --- .../variables/baseActionItem.md | 57 --- .../variables/groupListQuery.md | 11 - .../variables/itemWithGroup.md | 11 - .../variables/itemWithUser.md | 11 - .../variables/itemWithUserImage.md | 11 - .../variables/itemWithVolunteer.md | 11 - .../variables/itemWithVolunteerImage.md | 11 - .../variables/memberListQuery.md | 41 -- .../variables/volunteerListQuery.md | 11 - .../OrganizationDashboard/README.md | 11 - .../functions/default.md | 21 - .../OrganizationDashboardMocks/README.md | 13 - .../variables/EMPTY_MOCKS.md | 11 - .../variables/ERROR_MOCKS.md | 11 - .../variables/MOCKS.md | 11 - .../OrganizationEvents/README.md | 15 - .../enumerations/ViewType.md | 33 -- .../OrganizationEvents/functions/default.md | 27 -- .../OrganizationEventsMocks/README.md | 11 - .../variables/MOCKS.md | 11 - .../CampaignModal/README.md | 15 - .../CampaignModal/functions/default.md | 37 -- .../interfaces/InterfaceCampaignModal.md | 75 ---- .../OrganizationFundCampagins/README.md | 11 - .../functions/default.md | 45 --- .../OrganizationFundCampaignMocks/README.md | 13 - .../variables/EMPTY_MOCKS.md | 65 --- .../variables/MOCKS.md | 11 - .../variables/MOCK_ERROR.md | 11 - .../OrganizationFunds/FundModal/README.md | 15 - .../FundModal/functions/default.md | 59 --- .../interfaces/InterfaceFundModal.md | 65 --- .../OrganizationFunds/README.md | 11 - .../OrganizationFunds/functions/default.md | 48 --- .../OrganizationFundsMocks/README.md | 13 - .../OrganizationFundsMocks/variables/MOCKS.md | 11 - .../variables/MOCKS_ERROR.md | 11 - .../variables/NO_FUNDS.md | 49 --- .../OrganizationPeople/AddMember/README.md | 11 - .../AddMember/functions/default.md | 23 -- .../MockDataTypes/README.md | 11 - .../MockDataTypes/type-aliases/TestMock.md | 153 ------- .../OrganizationPeople/README.md | 11 - .../OrganizationPeople/functions/default.md | 21 - .../OrganizationTags/README.md | 11 - .../OrganizationTags/functions/default.md | 20 - .../OrganizationTagsMocks/README.md | 12 - .../OrganizationTagsMocks/variables/MOCKS.md | 11 - .../variables/MOCKS_ERROR.md | 57 --- .../OrganizationVenues/README.md | 11 - .../OrganizationVenues/functions/default.md | 18 - .../PageNotFound/PageNotFound/README.md | 11 - .../PageNotFound/functions/default.md | 19 - .../screens/Requests/Requests/README.md | 11 - .../Requests/Requests/functions/default.md | 18 - .../screens/Requests/RequestsMocks/README.md | 17 - .../RequestsMocks/variables/EMPTY_MOCKS.md | 11 - .../variables/EMPTY_REQUEST_MOCKS.md | 11 - .../Requests/RequestsMocks/variables/MOCKS.md | 11 - .../RequestsMocks/variables/MOCKS2.md | 11 - .../RequestsMocks/variables/MOCKS3.md | 11 - .../RequestsMocks/variables/MOCKS4.md | 11 - .../variables/MOCKS_WITH_ERROR.md | 11 - .../screens/SubTags/SubTags/README.md | 11 - .../SubTags/SubTags/functions/default.md | 20 - .../screens/SubTags/SubTagsMocks/README.md | 12 - .../SubTags/SubTagsMocks/variables/MOCKS.md | 11 - .../variables/MOCKS_ERROR_SUB_TAGS.md | 57 --- .../UserPortal/Campaigns/Campaigns/README.md | 11 - .../Campaigns/Campaigns/functions/default.md | 20 - .../Campaigns/CampaignsMocks/README.md | 13 - .../CampaignsMocks/variables/EMPTY_MOCKS.md | 11 - .../CampaignsMocks/variables/MOCKS.md | 11 - .../variables/USER_FUND_CAMPAIGNS_ERROR.md | 11 - .../Campaigns/PledgeModal/README.md | 15 - .../PledgeModal/functions/default.md | 34 -- .../interfaces/InterfacePledgeModal.md | 83 ---- .../screens/UserPortal/Chat/Chat/README.md | 11 - .../UserPortal/Chat/Chat/functions/default.md | 15 - .../UserPortal/Donate/Donate/README.md | 15 - .../Donate/Donate/functions/default.md | 38 -- .../interfaces/InterfaceDonationCardProps.md | 57 --- .../UserPortal/Events/Events/README.md | 11 - .../Events/Events/functions/default.md | 22 - .../LeaveOrganization/README.md | 16 - .../LeaveOrganization/functions/default.md | 15 - .../LeaveOrganization/variables/userEmail.md | 11 - .../LeaveOrganization/variables/userId.md | 11 - .../Organizations/Organizations/README.md | 11 - .../Organizations/functions/default.md | 17 - .../UserPortal/People/People/README.md | 11 - .../People/People/functions/default.md | 19 - .../UserPortal/Pledges/Pledges/README.md | 11 - .../Pledges/Pledges/functions/default.md | 32 -- .../UserPortal/Pledges/PledgesMocks/README.md | 13 - .../PledgesMocks/variables/EMPTY_MOCKS.md | 11 - .../Pledges/PledgesMocks/variables/MOCKS.md | 11 - .../variables/USER_PLEDGES_ERROR.md | 11 - .../screens/UserPortal/Posts/Posts/README.md | 11 - .../Posts/Posts/functions/default.md | 21 - .../UserPortal/Settings/Settings/README.md | 11 - .../Settings/Settings/functions/default.md | 20 - .../UserScreen/UserScreen/README.md | 11 - .../UserScreen/functions/default.md | 21 - .../Volunteer/Actions/Actions.mocks/README.md | 13 - .../Actions.mocks/variables/EMPTY_MOCKS.md | 57 --- .../Actions.mocks/variables/ERROR_MOCKS.md | 49 --- .../Actions/Actions.mocks/variables/MOCKS.md | 11 - .../Volunteer/Actions/Actions/README.md | 11 - .../Actions/Actions/functions/default.md | 21 - .../Volunteer/Groups/GroupModal/README.md | 15 - .../Groups/GroupModal/functions/default.md | 51 --- .../interfaces/InterfaceGroupModal.md | 57 --- .../Volunteer/Groups/Groups.mocks/README.md | 14 - .../Groups.mocks/variables/EMPTY_MOCKS.md | 11 - .../Groups.mocks/variables/ERROR_MOCKS.md | 53 --- .../Groups/Groups.mocks/variables/MOCKS.md | 11 - .../variables/UPDATE_ERROR_MOCKS.md | 11 - .../Volunteer/Groups/Groups/README.md | 11 - .../Groups/Groups/functions/default.md | 20 - .../Invitations/Invitations.mocks/README.md | 14 - .../variables/EMPTY_MOCKS.md | 53 --- .../variables/ERROR_MOCKS.md | 11 - .../Invitations.mocks/variables/MOCKS.md | 11 - .../variables/UPDATE_ERROR_MOCKS.md | 11 - .../Invitations/Invitations/README.md | 11 - .../Invitations/functions/default.md | 20 - .../UpcomingEvents.mocks/README.md | 14 - .../variables/CREATE_ERROR_MOCKS.md | 11 - .../variables/EMPTY_MOCKS.md | 61 --- .../variables/ERROR_MOCKS.md | 53 --- .../UpcomingEvents.mocks/variables/MOCKS.md | 11 - .../UpcomingEvents/UpcomingEvents/README.md | 11 - .../UpcomingEvents/functions/default.md | 20 - .../Volunteer/VolunteerManagement/README.md | 11 - .../VolunteerManagement/functions/default.md | 25 -- .../auto-docs/screens/Users/Users/README.md | 11 - .../screens/Users/Users/functions/default.md | 55 --- .../screens/Users/UsersMocks/README.md | 13 - .../Users/UsersMocks/variables/EMPTY_MOCKS.md | 11 - .../Users/UsersMocks/variables/MOCKS.md | 11 - .../Users/UsersMocks/variables/MOCKS2.md | 11 - .../askAndSetDockerOption/README.md | 11 - .../functions/default.md | 15 - .../askAndUpdatePort/README.md | 11 - .../askAndUpdatePort/functions/default.md | 15 - .../askForCustomPort/README.md | 13 - .../functions/askForCustomPort.md | 15 - .../functions/reservedPortWarning.md | 21 - .../functions/validatePort.md | 21 - .../setup/askForDocker/askForDocker/README.md | 12 - .../functions/askAndUpdateTalawaApiUrl.md | 15 - .../askForDocker/functions/askForDocker.md | 15 - .../askForTalawaApiUrl/README.md | 11 - .../functions/askForTalawaApiUrl.md | 15 - .../checkConnection/checkConnection/README.md | 11 - .../functions/checkConnection.md | 21 - .../setup/checkEnvFile/checkEnvFile/README.md | 11 - .../checkEnvFile/functions/checkEnvFile.md | 15 - .../updateEnvFile/updateEnvFile/README.md | 11 - .../updateEnvFile/functions/default.md | 25 -- .../validateRecaptcha/README.md | 11 - .../functions/validateRecaptcha.md | 21 - docs/docs/auto-docs/setupTests/README.md | 7 - docs/docs/auto-docs/state/README.md | 13 - .../auto-docs/state/action-creators/README.md | 15 - .../functions/installPlugin.md | 31 -- .../action-creators/functions/removePlugin.md | 31 -- .../functions/updateInstalled.md | 31 -- .../functions/updatePluginLinks.md | 31 -- .../functions/updateTargets.md | 31 -- .../auto-docs/state/helpers/Action/README.md | 11 - .../Action/interfaces/InterfaceAction.md | 25 -- docs/docs/auto-docs/state/hooks/README.md | 11 - .../state/hooks/functions/useAppDispatch.md | 25 -- docs/docs/auto-docs/state/reducers/README.md | 15 - .../state/reducers/functions/reducers.md | 53 --- .../state/reducers/pluginReducer/README.md | 11 - .../pluginReducer/functions/default.md | 25 -- .../state/reducers/routesReducer/README.md | 17 - .../routesReducer/functions/default.md | 39 -- .../type-aliases/ComponentType.md | 29 -- .../type-aliases/SubTargetType.md | 29 -- .../routesReducer/type-aliases/TargetsType.md | 25 -- .../state/reducers/type-aliases/RootState.md | 11 - .../reducers/userRoutesReducer/README.md | 17 - .../userRoutesReducer/functions/default.md | 39 -- .../type-aliases/ComponentType.md | 29 -- .../type-aliases/SubTargetType.md | 29 -- .../type-aliases/TargetsType.md | 25 -- docs/docs/auto-docs/state/store/README.md | 15 - .../state/store/type-aliases/AppDispatch.md | 11 - .../auto-docs/state/store/variables/store.md | 11 - .../subComponents/SortingButton/README.md | 11 - .../SortingButton/functions/default.md | 38 -- .../auto-docs/utils/StaticMockLink/README.md | 19 - .../StaticMockLink/classes/StaticMockLink.md | 94 ----- .../functions/mockSingleLink.md | 21 - .../interfaces/InterfaceMockApolloLink.md | 21 - .../docs/auto-docs/utils/chartToPdf/README.md | 13 - .../functions/exportDemographicsToCSV.md | 29 -- .../utils/chartToPdf/functions/exportToCSV.md | 25 -- .../chartToPdf/functions/exportTrendsToCSV.md | 37 -- .../auto-docs/utils/convertToBase64/README.md | 11 - .../convertToBase64/functions/default.md | 21 - docs/docs/auto-docs/utils/currency/README.md | 12 - .../currency/variables/currencyOptions.md | 21 - .../currency/variables/currencySymbols.md | 15 - .../auto-docs/utils/dateFormatter/README.md | 11 - .../dateFormatter/functions/formatDate.md | 21 - .../auto-docs/utils/errorHandler/README.md | 11 - .../errorHandler/functions/errorHandler.md | 29 -- .../docs/auto-docs/utils/fieldTypes/README.md | 11 - .../utils/fieldTypes/variables/default.md | 11 - .../auto-docs/utils/formEnumFields/README.md | 16 - .../variables/countryOptions.md | 21 - .../variables/educationGradeEnum.md | 21 - .../variables/employmentStatusEnum.md | 21 - .../formEnumFields/variables/genderEnum.md | 21 - .../variables/maritalStatusEnum.md | 21 - .../formEnumFields/variables/userRoleEnum.md | 21 - .../utils/getOrganizationId/README.md | 11 - .../getOrganizationId/functions/default.md | 21 - .../auto-docs/utils/getRefreshToken/README.md | 11 - .../getRefreshToken/functions/refreshToken.md | 15 - docs/docs/auto-docs/utils/i18n/README.md | 7 - .../auto-docs/utils/i18nForTest/README.md | 7 - .../docs/auto-docs/utils/interfaces/README.md | 60 --- .../InterfaceActionItemCategoryInfo.md | 61 --- .../InterfaceActionItemCategoryList.md | 17 - .../interfaces/InterfaceActionItemInfo.md | 145 ------- .../interfaces/InterfaceActionItemList.md | 17 - .../InterfaceAddOnSpotAttendeeProps.md | 41 -- .../interfaces/interfaces/InterfaceAddress.md | 73 ---- .../InterfaceAgendaItemCategoryInfo.md | 53 --- .../InterfaceAgendaItemCategoryList.md | 17 - .../interfaces/InterfaceAgendaItemInfo.md | 153 ------- .../interfaces/InterfaceAgendaItemList.md | 17 - .../interfaces/InterfaceBaseEvent.md | 94 ----- .../interfaces/InterfaceCampaignInfo.md | 65 --- .../interfaces/InterfaceCreateFund.md | 49 --- .../interfaces/InterfaceCreatePledge.md | 49 --- .../InterfaceCreateVolunteerGroup.md | 49 --- .../interfaces/InterfaceCustomFieldData.md | 25 -- .../interfaces/InterfaceEventVolunteerInfo.md | 73 ---- .../interfaces/InterfaceFormData.md | 49 --- .../interfaces/InterfaceFundInfo.md | 93 ----- .../interfaces/interfaces/InterfaceMapType.md | 13 - .../interfaces/InterfaceMemberInfo.md | 69 ---- .../interfaces/InterfaceMembersList.md | 25 -- .../InterfaceOrgConnectionInfoType.md | 93 ----- .../interfaces/InterfaceOrgConnectionType.md | 17 - .../interfaces/InterfacePledgeInfo.md | 77 ---- .../interfaces/InterfacePostCard.md | 173 -------- .../interfaces/InterfacePostForm.md | 49 --- .../InterfaceQueryBlockPageMemberListItem.md | 53 --- .../InterfaceQueryFundCampaignsPledges.md | 69 ---- ...nterfaceQueryMembershipRequestsListItem.md | 25 -- ...eQueryOrganizationAdvertisementListItem.md | 45 --- ...InterfaceQueryOrganizationEventListItem.md | 149 ------- ...InterfaceQueryOrganizationFundCampaigns.md | 61 --- .../InterfaceQueryOrganizationListObject.md | 89 ---- .../InterfaceQueryOrganizationPostListItem.md | 45 --- .../InterfaceQueryOrganizationUserTags.md | 17 - .../InterfaceQueryOrganizationsListObject.md | 189 --------- .../interfaces/InterfaceQueryUserListItem.md | 89 ---- .../InterfaceQueryUserTagChildTags.md | 41 -- .../InterfaceQueryUserTagsAssignedMembers.md | 41 -- ...InterfaceQueryUserTagsMembersToAssignTo.md | 25 -- .../interfaces/InterfaceQueryVenueListItem.md | 49 --- .../interfaces/interfaces/InterfaceTagData.md | 77 ---- .../interfaces/InterfaceUserCampaign.md | 57 --- .../interfaces/InterfaceUserEvents.md | 181 --------- .../interfaces/InterfaceUserInfo.md | 41 -- .../interfaces/InterfaceUserType.md | 33 -- .../interfaces/InterfaceVolunteerGroupInfo.md | 125 ------ .../InterfaceVolunteerMembership.md | 85 ---- .../interfaces/InterfaceVolunteerRank.md | 53 --- docs/docs/auto-docs/utils/languages/README.md | 12 - .../languages/variables/languageArray.md | 11 - .../utils/languages/variables/languages.md | 25 -- .../auto-docs/utils/linkValidator/README.md | 11 - .../linkValidator/functions/isValidLink.md | 21 - .../utils/organizationTagsUtils/README.md | 24 -- .../InterfaceOrganizationSubTagsQuery.md | 83 ---- .../InterfaceOrganizationTagsQuery.md | 83 ---- .../InterfaceTagAssignedMembersQuery.md | 83 ---- .../InterfaceTagUsersToAssignToQuery.md | 83 ---- .../type-aliases/SortedByType.md | 11 - .../type-aliases/TagActionType.md | 11 - .../variables/TAGS_QUERY_DATA_CHUNK_SIZE.md | 11 - .../variables/dataGridStyle.md | 85 ---- .../auto-docs/utils/recurrenceUtils/README.md | 163 -------- .../recurrenceConstants/README.md | 25 -- .../recurrenceConstants/variables/Days.md | 11 - .../variables/allInstances.md | 11 - .../recurrenceConstants/variables/dayNames.md | 41 -- .../variables/daysOptions.md | 11 - .../variables/endsAfter.md | 11 - .../variables/endsNever.md | 11 - .../recurrenceConstants/variables/endsOn.md | 11 - .../variables/frequencies.md | 29 -- .../variables/mondayToFriday.md | 11 - .../variables/monthNames.md | 11 - .../variables/recurrenceEndOptions.md | 11 - .../recurringEventMutationOptions.md | 11 - .../variables/thisAndFollowingInstances.md | 11 - .../variables/thisInstance.md | 11 - .../variables/weekDayOccurences.md | 11 - .../recurrenceUtils/recurrenceTypes/README.md | 19 - .../recurrenceTypes/enumerations/Frequency.md | 41 -- .../enumerations/RecurrenceEndOption.md | 33 -- .../RecurringEventMutationType.md | 33 -- .../recurrenceTypes/enumerations/WeekDays.md | 65 --- .../interfaces/InterfaceRecurrenceRule.md | 65 --- .../InterfaceRecurrenceRuleState.md | 65 --- .../recurrenceUtilityFunctions/README.md | 15 - .../functions/getRecurrenceRuleText.md | 21 - .../functions/getWeekDayOccurenceInMonth.md | 21 - .../functions/hasRecurrenceRuleChanged.md | 25 -- .../functions/haveInstanceDatesChanged.md | 33 -- .../functions/isLastOccurenceOfWeekDay.md | 21 - .../auto-docs/utils/timezoneUtils/README.md | 25 -- .../timezoneUtils/dateTimeConfig/README.md | 11 - .../variables/dateTimeFields.md | 21 - .../dateTimeMiddleware/README.md | 12 - .../variables/requestMiddleware.md | 11 - .../variables/responseMiddleware.md | 11 - .../auto-docs/utils/useLocalstorage/README.md | 21 - .../useLocalstorage/functions/getItem.md | 33 -- .../functions/getStorageKey.md | 33 -- .../useLocalstorage/functions/removeItem.md | 31 -- .../useLocalstorage/functions/setItem.md | 37 -- .../functions/useLocalStorage.md | 27 -- .../docs/auto-docs/utils/useSession/README.md | 11 - .../utils/useSession/functions/default.md | 26 -- package.json | 3 +- 1051 files changed, 36 insertions(+), 27231 deletions(-) delete mode 100644 docs/docs/auto-docs/App/README.md delete mode 100644 docs/docs/auto-docs/App/functions/default.md delete mode 100644 docs/docs/auto-docs/Constant/constant/README.md delete mode 100644 docs/docs/auto-docs/Constant/constant/variables/AUTH_TOKEN.md delete mode 100644 docs/docs/auto-docs/Constant/constant/variables/BACKEND_URL.md delete mode 100644 docs/docs/auto-docs/Constant/constant/variables/REACT_APP_BACKEND_WEBSOCKET_URL.md delete mode 100644 docs/docs/auto-docs/Constant/constant/variables/REACT_APP_CUSTOM_PORT.md delete mode 100644 docs/docs/auto-docs/Constant/constant/variables/REACT_APP_USE_RECAPTCHA.md delete mode 100644 docs/docs/auto-docs/Constant/constant/variables/RECAPTCHA_SITE_KEY.md delete mode 100644 docs/docs/auto-docs/GraphQl/Mutations/ActionItemCategoryMutations/README.md delete mode 100644 docs/docs/auto-docs/GraphQl/Mutations/ActionItemCategoryMutations/variables/CREATE_ACTION_ITEM_CATEGORY_MUTATION.md delete mode 100644 docs/docs/auto-docs/GraphQl/Mutations/ActionItemCategoryMutations/variables/UPDATE_ACTION_ITEM_CATEGORY_MUTATION.md delete mode 100644 docs/docs/auto-docs/GraphQl/Mutations/ActionItemMutations/README.md delete mode 100644 docs/docs/auto-docs/GraphQl/Mutations/ActionItemMutations/variables/CREATE_ACTION_ITEM_MUTATION.md delete mode 100644 docs/docs/auto-docs/GraphQl/Mutations/ActionItemMutations/variables/DELETE_ACTION_ITEM_MUTATION.md delete mode 100644 docs/docs/auto-docs/GraphQl/Mutations/ActionItemMutations/variables/UPDATE_ACTION_ITEM_MUTATION.md delete mode 100644 docs/docs/auto-docs/GraphQl/Mutations/AgendaCategoryMutations/README.md delete mode 100644 docs/docs/auto-docs/GraphQl/Mutations/AgendaCategoryMutations/variables/CREATE_AGENDA_ITEM_CATEGORY_MUTATION.md delete mode 100644 docs/docs/auto-docs/GraphQl/Mutations/AgendaCategoryMutations/variables/DELETE_AGENDA_ITEM_CATEGORY_MUTATION.md delete mode 100644 docs/docs/auto-docs/GraphQl/Mutations/AgendaCategoryMutations/variables/UPDATE_AGENDA_ITEM_CATEGORY_MUTATION.md delete mode 100644 docs/docs/auto-docs/GraphQl/Mutations/AgendaItemMutations/README.md delete mode 100644 docs/docs/auto-docs/GraphQl/Mutations/AgendaItemMutations/variables/CREATE_AGENDA_ITEM_MUTATION.md delete mode 100644 docs/docs/auto-docs/GraphQl/Mutations/AgendaItemMutations/variables/DELETE_AGENDA_ITEM_MUTATION.md delete mode 100644 docs/docs/auto-docs/GraphQl/Mutations/AgendaItemMutations/variables/UPDATE_AGENDA_ITEM_MUTATION.md delete mode 100644 docs/docs/auto-docs/GraphQl/Mutations/CampaignMutation/README.md delete mode 100644 docs/docs/auto-docs/GraphQl/Mutations/CampaignMutation/variables/CREATE_CAMPAIGN_MUTATION.md delete mode 100644 docs/docs/auto-docs/GraphQl/Mutations/CampaignMutation/variables/UPDATE_CAMPAIGN_MUTATION.md delete mode 100644 docs/docs/auto-docs/GraphQl/Mutations/CommentMutations/README.md delete mode 100644 docs/docs/auto-docs/GraphQl/Mutations/CommentMutations/variables/CREATE_COMMENT_POST.md delete mode 100644 docs/docs/auto-docs/GraphQl/Mutations/CommentMutations/variables/LIKE_COMMENT.md delete mode 100644 docs/docs/auto-docs/GraphQl/Mutations/CommentMutations/variables/UNLIKE_COMMENT.md delete mode 100644 docs/docs/auto-docs/GraphQl/Mutations/EventAttendeeMutations/README.md delete mode 100644 docs/docs/auto-docs/GraphQl/Mutations/EventAttendeeMutations/variables/ADD_EVENT_ATTENDEE.md delete mode 100644 docs/docs/auto-docs/GraphQl/Mutations/EventAttendeeMutations/variables/MARK_CHECKIN.md delete mode 100644 docs/docs/auto-docs/GraphQl/Mutations/EventAttendeeMutations/variables/REMOVE_EVENT_ATTENDEE.md delete mode 100644 docs/docs/auto-docs/GraphQl/Mutations/EventVolunteerMutation/README.md delete mode 100644 docs/docs/auto-docs/GraphQl/Mutations/EventVolunteerMutation/variables/ADD_VOLUNTEER.md delete mode 100644 docs/docs/auto-docs/GraphQl/Mutations/EventVolunteerMutation/variables/CREATE_VOLUNTEER_GROUP.md delete mode 100644 docs/docs/auto-docs/GraphQl/Mutations/EventVolunteerMutation/variables/CREATE_VOLUNTEER_MEMBERSHIP.md delete mode 100644 docs/docs/auto-docs/GraphQl/Mutations/EventVolunteerMutation/variables/DELETE_VOLUNTEER.md delete mode 100644 docs/docs/auto-docs/GraphQl/Mutations/EventVolunteerMutation/variables/DELETE_VOLUNTEER_GROUP.md delete mode 100644 docs/docs/auto-docs/GraphQl/Mutations/EventVolunteerMutation/variables/UPDATE_VOLUNTEER_GROUP.md delete mode 100644 docs/docs/auto-docs/GraphQl/Mutations/EventVolunteerMutation/variables/UPDATE_VOLUNTEER_MEMBERSHIP.md delete mode 100644 docs/docs/auto-docs/GraphQl/Mutations/FundMutation/README.md delete mode 100644 docs/docs/auto-docs/GraphQl/Mutations/FundMutation/variables/CREATE_FUND_MUTATION.md delete mode 100644 docs/docs/auto-docs/GraphQl/Mutations/FundMutation/variables/UPDATE_FUND_MUTATION.md delete mode 100644 docs/docs/auto-docs/GraphQl/Mutations/OrganizationMutations/README.md delete mode 100644 docs/docs/auto-docs/GraphQl/Mutations/OrganizationMutations/variables/ADD_CUSTOM_FIELD.md delete mode 100644 docs/docs/auto-docs/GraphQl/Mutations/OrganizationMutations/variables/ADD_USER_TO_GROUP_CHAT.md delete mode 100644 docs/docs/auto-docs/GraphQl/Mutations/OrganizationMutations/variables/CANCEL_MEMBERSHIP_REQUEST.md delete mode 100644 docs/docs/auto-docs/GraphQl/Mutations/OrganizationMutations/variables/CREATE_CHAT.md delete mode 100644 docs/docs/auto-docs/GraphQl/Mutations/OrganizationMutations/variables/CREATE_SAMPLE_ORGANIZATION_MUTATION.md delete mode 100644 docs/docs/auto-docs/GraphQl/Mutations/OrganizationMutations/variables/EDIT_CHAT_MESSAGE.md delete mode 100644 docs/docs/auto-docs/GraphQl/Mutations/OrganizationMutations/variables/JOIN_PUBLIC_ORGANIZATION.md delete mode 100644 docs/docs/auto-docs/GraphQl/Mutations/OrganizationMutations/variables/MARK_CHAT_MESSAGES_AS_READ.md delete mode 100644 docs/docs/auto-docs/GraphQl/Mutations/OrganizationMutations/variables/MESSAGE_SENT_TO_CHAT.md delete mode 100644 docs/docs/auto-docs/GraphQl/Mutations/OrganizationMutations/variables/PLUGIN_SUBSCRIPTION.md delete mode 100644 docs/docs/auto-docs/GraphQl/Mutations/OrganizationMutations/variables/REMOVE_CUSTOM_FIELD.md delete mode 100644 docs/docs/auto-docs/GraphQl/Mutations/OrganizationMutations/variables/REMOVE_SAMPLE_ORGANIZATION_MUTATION.md delete mode 100644 docs/docs/auto-docs/GraphQl/Mutations/OrganizationMutations/variables/SEND_MEMBERSHIP_REQUEST.md delete mode 100644 docs/docs/auto-docs/GraphQl/Mutations/OrganizationMutations/variables/SEND_MESSAGE_TO_CHAT.md delete mode 100644 docs/docs/auto-docs/GraphQl/Mutations/OrganizationMutations/variables/TOGGLE_PINNED_POST.md delete mode 100644 docs/docs/auto-docs/GraphQl/Mutations/OrganizationMutations/variables/UPDATE_CHAT.md delete mode 100644 docs/docs/auto-docs/GraphQl/Mutations/OrganizationMutations/variables/UPDATE_USER_ROLE_IN_ORG_MUTATION.md delete mode 100644 docs/docs/auto-docs/GraphQl/Mutations/PledgeMutation/README.md delete mode 100644 docs/docs/auto-docs/GraphQl/Mutations/PledgeMutation/variables/CREATE_PlEDGE.md delete mode 100644 docs/docs/auto-docs/GraphQl/Mutations/PledgeMutation/variables/DELETE_PLEDGE.md delete mode 100644 docs/docs/auto-docs/GraphQl/Mutations/PledgeMutation/variables/UPDATE_PLEDGE.md delete mode 100644 docs/docs/auto-docs/GraphQl/Mutations/TagMutations/README.md delete mode 100644 docs/docs/auto-docs/GraphQl/Mutations/TagMutations/variables/ADD_PEOPLE_TO_TAG.md delete mode 100644 docs/docs/auto-docs/GraphQl/Mutations/TagMutations/variables/ASSIGN_TO_TAGS.md delete mode 100644 docs/docs/auto-docs/GraphQl/Mutations/TagMutations/variables/CREATE_USER_TAG.md delete mode 100644 docs/docs/auto-docs/GraphQl/Mutations/TagMutations/variables/REMOVE_FROM_TAGS.md delete mode 100644 docs/docs/auto-docs/GraphQl/Mutations/TagMutations/variables/REMOVE_USER_TAG.md delete mode 100644 docs/docs/auto-docs/GraphQl/Mutations/TagMutations/variables/UNASSIGN_USER_TAG.md delete mode 100644 docs/docs/auto-docs/GraphQl/Mutations/TagMutations/variables/UPDATE_USER_TAG.md delete mode 100644 docs/docs/auto-docs/GraphQl/Mutations/VenueMutations/README.md delete mode 100644 docs/docs/auto-docs/GraphQl/Mutations/VenueMutations/variables/CREATE_VENUE_MUTATION.md delete mode 100644 docs/docs/auto-docs/GraphQl/Mutations/VenueMutations/variables/DELETE_VENUE_MUTATION.md delete mode 100644 docs/docs/auto-docs/GraphQl/Mutations/VenueMutations/variables/UPDATE_VENUE_MUTATION.md delete mode 100644 docs/docs/auto-docs/GraphQl/Mutations/mutations/README.md delete mode 100644 docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/ACCEPT_ORGANIZATION_REQUEST_MUTATION.md delete mode 100644 docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/ADDRESS_DETAILS_FRAGMENT.md delete mode 100644 docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/ADD_ADMIN_MUTATION.md delete mode 100644 docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/ADD_ADVERTISEMENT_MUTATION.md delete mode 100644 docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/ADD_MEMBER_MUTATION.md delete mode 100644 docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/ADD_PLUGIN_MUTATION.md delete mode 100644 docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/BLOCK_USER_MUTATION.md delete mode 100644 docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/CREATE_EVENT_MUTATION.md delete mode 100644 docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/CREATE_ORGANIZATION_MUTATION.md delete mode 100644 docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/CREATE_POST_MUTATION.md delete mode 100644 docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/DELETE_ADVERTISEMENT_BY_ID.md delete mode 100644 docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/DELETE_EVENT_MUTATION.md delete mode 100644 docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/DELETE_ORGANIZATION_MUTATION.md delete mode 100644 docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/DELETE_POST_MUTATION.md delete mode 100644 docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/DONATE_TO_ORGANIZATION.md delete mode 100644 docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/FORGOT_PASSWORD_MUTATION.md delete mode 100644 docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/GENERATE_OTP_MUTATION.md delete mode 100644 docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/LIKE_POST.md delete mode 100644 docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/LOGIN_MUTATION.md delete mode 100644 docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/RECAPTCHA_MUTATION.md delete mode 100644 docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/REFRESH_TOKEN_MUTATION.md delete mode 100644 docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/REGISTER_EVENT.md delete mode 100644 docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/REJECT_ORGANIZATION_REQUEST_MUTATION.md delete mode 100644 docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/REMOVE_ADMIN_MUTATION.md delete mode 100644 docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/REMOVE_MEMBER_MUTATION.md delete mode 100644 docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/RESET_COMMUNITY.md delete mode 100644 docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/REVOKE_REFRESH_TOKEN.md delete mode 100644 docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/SIGNUP_MUTATION.md delete mode 100644 docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/UNBLOCK_USER_MUTATION.md delete mode 100644 docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/UNLIKE_POST.md delete mode 100644 docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/UPDATE_ADVERTISEMENT_MUTATION.md delete mode 100644 docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/UPDATE_COMMUNITY.md delete mode 100644 docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/UPDATE_EVENT_MUTATION.md delete mode 100644 docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/UPDATE_INSTALL_STATUS_PLUGIN_MUTATION.md delete mode 100644 docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/UPDATE_ORGANIZATION_MUTATION.md delete mode 100644 docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/UPDATE_ORG_STATUS_PLUGIN_MUTATION.md delete mode 100644 docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/UPDATE_POST_MUTATION.md delete mode 100644 docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/UPDATE_SESSION_TIMEOUT.md delete mode 100644 docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/UPDATE_USER_MUTATION.md delete mode 100644 docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/UPDATE_USER_PASSWORD_MUTATION.md delete mode 100644 docs/docs/auto-docs/GraphQl/Queries/ActionItemCategoryQueries/README.md delete mode 100644 docs/docs/auto-docs/GraphQl/Queries/ActionItemCategoryQueries/variables/ACTION_ITEM_CATEGORY_LIST.md delete mode 100644 docs/docs/auto-docs/GraphQl/Queries/ActionItemQueries/README.md delete mode 100644 docs/docs/auto-docs/GraphQl/Queries/ActionItemQueries/variables/ACTION_ITEMS_BY_USER.md delete mode 100644 docs/docs/auto-docs/GraphQl/Queries/ActionItemQueries/variables/ACTION_ITEM_LIST.md delete mode 100644 docs/docs/auto-docs/GraphQl/Queries/AgendaCategoryQueries/README.md delete mode 100644 docs/docs/auto-docs/GraphQl/Queries/AgendaCategoryQueries/variables/AGENDA_ITEM_CATEGORY_LIST.md delete mode 100644 docs/docs/auto-docs/GraphQl/Queries/AgendaItemQueries/README.md delete mode 100644 docs/docs/auto-docs/GraphQl/Queries/AgendaItemQueries/variables/AgendaItemByEvent.md delete mode 100644 docs/docs/auto-docs/GraphQl/Queries/AgendaItemQueries/variables/AgendaItemByOrganization.md delete mode 100644 docs/docs/auto-docs/GraphQl/Queries/EventVolunteerQueries/README.md delete mode 100644 docs/docs/auto-docs/GraphQl/Queries/EventVolunteerQueries/variables/EVENT_VOLUNTEER_GROUP_LIST.md delete mode 100644 docs/docs/auto-docs/GraphQl/Queries/EventVolunteerQueries/variables/EVENT_VOLUNTEER_LIST.md delete mode 100644 docs/docs/auto-docs/GraphQl/Queries/EventVolunteerQueries/variables/USER_VOLUNTEER_MEMBERSHIP.md delete mode 100644 docs/docs/auto-docs/GraphQl/Queries/EventVolunteerQueries/variables/VOLUNTEER_RANKING.md delete mode 100644 docs/docs/auto-docs/GraphQl/Queries/OrganizationQueries/README.md delete mode 100644 docs/docs/auto-docs/GraphQl/Queries/OrganizationQueries/variables/ORGANIZATION_ADMINS_LIST.md delete mode 100644 docs/docs/auto-docs/GraphQl/Queries/OrganizationQueries/variables/ORGANIZATION_ADVERTISEMENT_LIST.md delete mode 100644 docs/docs/auto-docs/GraphQl/Queries/OrganizationQueries/variables/ORGANIZATION_FUNDS.md delete mode 100644 docs/docs/auto-docs/GraphQl/Queries/OrganizationQueries/variables/ORGANIZATION_POST_LIST.md delete mode 100644 docs/docs/auto-docs/GraphQl/Queries/OrganizationQueries/variables/ORGANIZATION_USER_TAGS_LIST.md delete mode 100644 docs/docs/auto-docs/GraphQl/Queries/OrganizationQueries/variables/USER_CREATED_ORGANIZATIONS.md delete mode 100644 docs/docs/auto-docs/GraphQl/Queries/OrganizationQueries/variables/USER_JOINED_ORGANIZATIONS.md delete mode 100644 docs/docs/auto-docs/GraphQl/Queries/OrganizationQueries/variables/USER_ORGANIZATION_CONNECTION.md delete mode 100644 docs/docs/auto-docs/GraphQl/Queries/OrganizationQueries/variables/VENUE_LIST.md delete mode 100644 docs/docs/auto-docs/GraphQl/Queries/PlugInQueries/README.md delete mode 100644 docs/docs/auto-docs/GraphQl/Queries/PlugInQueries/variables/ADVERTISEMENTS_GET.md delete mode 100644 docs/docs/auto-docs/GraphQl/Queries/PlugInQueries/variables/CHATS_LIST.md delete mode 100644 docs/docs/auto-docs/GraphQl/Queries/PlugInQueries/variables/CHAT_BY_ID.md delete mode 100644 docs/docs/auto-docs/GraphQl/Queries/PlugInQueries/variables/GROUP_CHAT_LIST.md delete mode 100644 docs/docs/auto-docs/GraphQl/Queries/PlugInQueries/variables/IS_SAMPLE_ORGANIZATION_QUERY.md delete mode 100644 docs/docs/auto-docs/GraphQl/Queries/PlugInQueries/variables/ORGANIZATION_CUSTOM_FIELDS.md delete mode 100644 docs/docs/auto-docs/GraphQl/Queries/PlugInQueries/variables/ORGANIZATION_EVENTS_CONNECTION.md delete mode 100644 docs/docs/auto-docs/GraphQl/Queries/PlugInQueries/variables/PLUGIN_GET.md delete mode 100644 docs/docs/auto-docs/GraphQl/Queries/PlugInQueries/variables/UNREAD_CHAT_LIST.md delete mode 100644 docs/docs/auto-docs/GraphQl/Queries/PlugInQueries/variables/USER_EVENTS_VOLUNTEER.md delete mode 100644 docs/docs/auto-docs/GraphQl/Queries/Queries/README.md delete mode 100644 docs/docs/auto-docs/GraphQl/Queries/Queries/variables/ADMIN_LIST.md delete mode 100644 docs/docs/auto-docs/GraphQl/Queries/Queries/variables/BLOCK_PAGE_MEMBER_LIST.md delete mode 100644 docs/docs/auto-docs/GraphQl/Queries/Queries/variables/CHECK_AUTH.md delete mode 100644 docs/docs/auto-docs/GraphQl/Queries/Queries/variables/EVENT_ATTENDEES.md delete mode 100644 docs/docs/auto-docs/GraphQl/Queries/Queries/variables/EVENT_CHECKINS.md delete mode 100644 docs/docs/auto-docs/GraphQl/Queries/Queries/variables/EVENT_DETAILS.md delete mode 100644 docs/docs/auto-docs/GraphQl/Queries/Queries/variables/EVENT_FEEDBACKS.md delete mode 100644 docs/docs/auto-docs/GraphQl/Queries/Queries/variables/EVENT_REGISTRANTS.md delete mode 100644 docs/docs/auto-docs/GraphQl/Queries/Queries/variables/GET_COMMUNITY_DATA.md delete mode 100644 docs/docs/auto-docs/GraphQl/Queries/Queries/variables/GET_COMMUNITY_SESSION_TIMEOUT_DATA.md delete mode 100644 docs/docs/auto-docs/GraphQl/Queries/Queries/variables/MEMBERSHIP_REQUEST.md delete mode 100644 docs/docs/auto-docs/GraphQl/Queries/Queries/variables/MEMBERS_LIST.md delete mode 100644 docs/docs/auto-docs/GraphQl/Queries/Queries/variables/ORGANIZATIONS_LIST.md delete mode 100644 docs/docs/auto-docs/GraphQl/Queries/Queries/variables/ORGANIZATIONS_MEMBER_CONNECTION_LIST.md delete mode 100644 docs/docs/auto-docs/GraphQl/Queries/Queries/variables/ORGANIZATION_CONNECTION_LIST.md delete mode 100644 docs/docs/auto-docs/GraphQl/Queries/Queries/variables/ORGANIZATION_DONATION_CONNECTION_LIST.md delete mode 100644 docs/docs/auto-docs/GraphQl/Queries/Queries/variables/ORGANIZATION_EVENT_CONNECTION_LIST.md delete mode 100644 docs/docs/auto-docs/GraphQl/Queries/Queries/variables/ORGANIZATION_EVENT_LIST.md delete mode 100644 docs/docs/auto-docs/GraphQl/Queries/Queries/variables/ORGANIZATION_LIST.md delete mode 100644 docs/docs/auto-docs/GraphQl/Queries/Queries/variables/RECURRING_EVENTS.md delete mode 100644 docs/docs/auto-docs/GraphQl/Queries/Queries/variables/USERS_CONNECTION_LIST.md delete mode 100644 docs/docs/auto-docs/GraphQl/Queries/Queries/variables/USER_DETAILS.md delete mode 100644 docs/docs/auto-docs/GraphQl/Queries/Queries/variables/USER_LIST.md delete mode 100644 docs/docs/auto-docs/GraphQl/Queries/Queries/variables/USER_LIST_FOR_TABLE.md delete mode 100644 docs/docs/auto-docs/GraphQl/Queries/Queries/variables/USER_LIST_REQUEST.md delete mode 100644 docs/docs/auto-docs/GraphQl/Queries/Queries/variables/USER_ORGANIZATION_LIST.md delete mode 100644 docs/docs/auto-docs/GraphQl/Queries/fundQueries/README.md delete mode 100644 docs/docs/auto-docs/GraphQl/Queries/fundQueries/variables/FUND_CAMPAIGN.md delete mode 100644 docs/docs/auto-docs/GraphQl/Queries/fundQueries/variables/FUND_CAMPAIGN_PLEDGE.md delete mode 100644 docs/docs/auto-docs/GraphQl/Queries/fundQueries/variables/FUND_LIST.md delete mode 100644 docs/docs/auto-docs/GraphQl/Queries/fundQueries/variables/USER_FUND_CAMPAIGNS.md delete mode 100644 docs/docs/auto-docs/GraphQl/Queries/fundQueries/variables/USER_PLEDGES.md delete mode 100644 docs/docs/auto-docs/GraphQl/Queries/userTagQueries/README.md delete mode 100644 docs/docs/auto-docs/GraphQl/Queries/userTagQueries/variables/USER_TAGS_ASSIGNED_MEMBERS.md delete mode 100644 docs/docs/auto-docs/GraphQl/Queries/userTagQueries/variables/USER_TAGS_MEMBERS_TO_ASSIGN_TO.md delete mode 100644 docs/docs/auto-docs/GraphQl/Queries/userTagQueries/variables/USER_TAG_SUB_TAGS.md delete mode 100644 docs/docs/auto-docs/README.md delete mode 100644 docs/docs/auto-docs/_media/CODE_OF_CONDUCT.md delete mode 100644 docs/docs/auto-docs/_media/CONTRIBUTING.md delete mode 100644 docs/docs/auto-docs/_media/INSTALLATION.md delete mode 100644 docs/docs/auto-docs/_media/ISSUE_GUIDELINES.md delete mode 100644 docs/docs/auto-docs/_media/PR_GUIDELINES.md delete mode 100644 docs/docs/auto-docs/assets/svgs/social-icons/README.md delete mode 100644 docs/docs/auto-docs/components/AddOn/AddOn/README.md delete mode 100644 docs/docs/auto-docs/components/AddOn/AddOn/functions/default.md delete mode 100644 docs/docs/auto-docs/components/AddOn/core/AddOnEntry/AddOnEntry/README.md delete mode 100644 docs/docs/auto-docs/components/AddOn/core/AddOnEntry/AddOnEntry/functions/default.md delete mode 100644 docs/docs/auto-docs/components/AddOn/core/AddOnEntry/AddOnEntryMocks/README.md delete mode 100644 docs/docs/auto-docs/components/AddOn/core/AddOnEntry/AddOnEntryMocks/variables/ADD_ON_ENTRY_MOCK.md delete mode 100644 docs/docs/auto-docs/components/AddOn/core/AddOnRegister/AddOnRegister/README.md delete mode 100644 docs/docs/auto-docs/components/AddOn/core/AddOnRegister/AddOnRegister/functions/default.md delete mode 100644 docs/docs/auto-docs/components/AddOn/core/AddOnStore/AddOnStore/README.md delete mode 100644 docs/docs/auto-docs/components/AddOn/core/AddOnStore/AddOnStore/functions/default.md delete mode 100644 docs/docs/auto-docs/components/AddOn/support/components/Action/Action/README.md delete mode 100644 docs/docs/auto-docs/components/AddOn/support/components/Action/Action/functions/default.md delete mode 100644 docs/docs/auto-docs/components/AddOn/support/components/MainContent/MainContent/README.md delete mode 100644 docs/docs/auto-docs/components/AddOn/support/components/MainContent/MainContent/functions/default.md delete mode 100644 docs/docs/auto-docs/components/AddOn/support/components/SidePanel/SidePanel/README.md delete mode 100644 docs/docs/auto-docs/components/AddOn/support/components/SidePanel/SidePanel/functions/default.md delete mode 100644 docs/docs/auto-docs/components/AddOn/support/services/Plugin.helper/README.md delete mode 100644 docs/docs/auto-docs/components/AddOn/support/services/Plugin.helper/classes/default.md delete mode 100644 docs/docs/auto-docs/components/AddOn/support/services/Render.helper/README.md delete mode 100644 docs/docs/auto-docs/components/AddOn/support/services/Render.helper/classes/default.md delete mode 100644 docs/docs/auto-docs/components/AddPeopleToTag/AddPeopleToTag/README.md delete mode 100644 docs/docs/auto-docs/components/AddPeopleToTag/AddPeopleToTag/functions/default.md delete mode 100644 docs/docs/auto-docs/components/AddPeopleToTag/AddPeopleToTag/interfaces/InterfaceAddPeopleToTagProps.md delete mode 100644 docs/docs/auto-docs/components/AddPeopleToTag/AddPeopleToTagsMocks/README.md delete mode 100644 docs/docs/auto-docs/components/AddPeopleToTag/AddPeopleToTagsMocks/variables/MOCKS.md delete mode 100644 docs/docs/auto-docs/components/AddPeopleToTag/AddPeopleToTagsMocks/variables/MOCKS_ERROR.md delete mode 100644 docs/docs/auto-docs/components/Advertisements/Advertisements/README.md delete mode 100644 docs/docs/auto-docs/components/Advertisements/Advertisements/functions/default.md delete mode 100644 docs/docs/auto-docs/components/Advertisements/core/AdvertisementEntry/AdvertisementEntry/README.md delete mode 100644 docs/docs/auto-docs/components/Advertisements/core/AdvertisementEntry/AdvertisementEntry/functions/default.md delete mode 100644 docs/docs/auto-docs/components/Advertisements/core/AdvertisementRegister/AdvertisementRegister/README.md delete mode 100644 docs/docs/auto-docs/components/Advertisements/core/AdvertisementRegister/AdvertisementRegister/functions/default.md delete mode 100644 docs/docs/auto-docs/components/AgendaCategory/AgendaCategoryContainer/README.md delete mode 100644 docs/docs/auto-docs/components/AgendaCategory/AgendaCategoryContainer/functions/default.md delete mode 100644 docs/docs/auto-docs/components/AgendaCategory/AgendaCategoryContainerMocks/README.md delete mode 100644 docs/docs/auto-docs/components/AgendaCategory/AgendaCategoryContainerMocks/variables/MOCKS.md delete mode 100644 docs/docs/auto-docs/components/AgendaCategory/AgendaCategoryContainerMocks/variables/MOCKS_ERROR_MUTATIONS.md delete mode 100644 docs/docs/auto-docs/components/AgendaCategory/AgendaCategoryContainerProps/README.md delete mode 100644 docs/docs/auto-docs/components/AgendaCategory/AgendaCategoryContainerProps/variables/props.md delete mode 100644 docs/docs/auto-docs/components/AgendaCategory/AgendaCategoryContainerProps/variables/props2.md delete mode 100644 docs/docs/auto-docs/components/AgendaItems/AgendaItemsContainer/README.md delete mode 100644 docs/docs/auto-docs/components/AgendaItems/AgendaItemsContainer/functions/default.md delete mode 100644 docs/docs/auto-docs/components/AgendaItems/AgendaItemsContainerMocks/README.md delete mode 100644 docs/docs/auto-docs/components/AgendaItems/AgendaItemsContainerMocks/variables/MOCKS.md delete mode 100644 docs/docs/auto-docs/components/AgendaItems/AgendaItemsContainerMocks/variables/MOCKS_ERROR.md delete mode 100644 docs/docs/auto-docs/components/AgendaItems/AgendaItemsContainerProps/README.md delete mode 100644 docs/docs/auto-docs/components/AgendaItems/AgendaItemsContainerProps/variables/props.md delete mode 100644 docs/docs/auto-docs/components/AgendaItems/AgendaItemsContainerProps/variables/props2.md delete mode 100644 docs/docs/auto-docs/components/AgendaItems/AgendaItemsCreateModal/README.md delete mode 100644 docs/docs/auto-docs/components/AgendaItems/AgendaItemsCreateModal/functions/default.md delete mode 100644 docs/docs/auto-docs/components/AgendaItems/AgendaItemsDeleteModal/README.md delete mode 100644 docs/docs/auto-docs/components/AgendaItems/AgendaItemsDeleteModal/functions/default.md delete mode 100644 docs/docs/auto-docs/components/AgendaItems/AgendaItemsPreviewModal/README.md delete mode 100644 docs/docs/auto-docs/components/AgendaItems/AgendaItemsPreviewModal/functions/default.md delete mode 100644 docs/docs/auto-docs/components/AgendaItems/AgendaItemsUpdateModal/README.md delete mode 100644 docs/docs/auto-docs/components/AgendaItems/AgendaItemsUpdateModal/functions/default.md delete mode 100644 docs/docs/auto-docs/components/Avatar/Avatar/README.md delete mode 100644 docs/docs/auto-docs/components/Avatar/Avatar/functions/default.md delete mode 100644 docs/docs/auto-docs/components/ChangeLanguageDropdown/ChangeLanguageDropDown/README.md delete mode 100644 docs/docs/auto-docs/components/ChangeLanguageDropdown/ChangeLanguageDropDown/functions/default.md delete mode 100644 docs/docs/auto-docs/components/CheckIn/CheckInModal/README.md delete mode 100644 docs/docs/auto-docs/components/CheckIn/CheckInModal/functions/CheckInModal.md delete mode 100644 docs/docs/auto-docs/components/CheckIn/CheckInWrapper/README.md delete mode 100644 docs/docs/auto-docs/components/CheckIn/CheckInWrapper/functions/CheckInWrapper.md delete mode 100644 docs/docs/auto-docs/components/CheckIn/TableRow/README.md delete mode 100644 docs/docs/auto-docs/components/CheckIn/TableRow/functions/TableRow.md delete mode 100644 docs/docs/auto-docs/components/CheckIn/mocks/README.md delete mode 100644 docs/docs/auto-docs/components/CheckIn/mocks/variables/checkInMutationSuccess.md delete mode 100644 docs/docs/auto-docs/components/CheckIn/mocks/variables/checkInMutationUnsuccess.md delete mode 100644 docs/docs/auto-docs/components/CheckIn/mocks/variables/checkInQueryMock.md delete mode 100644 docs/docs/auto-docs/components/CheckIn/tagTemplate/README.md delete mode 100644 docs/docs/auto-docs/components/CheckIn/tagTemplate/variables/tagTemplate.md delete mode 100644 docs/docs/auto-docs/components/CheckIn/types/README.md delete mode 100644 docs/docs/auto-docs/components/CheckIn/types/interfaces/InterfaceAttendeeCheckIn.md delete mode 100644 docs/docs/auto-docs/components/CheckIn/types/interfaces/InterfaceAttendeeQueryResponse.md delete mode 100644 docs/docs/auto-docs/components/CheckIn/types/interfaces/InterfaceModalProp.md delete mode 100644 docs/docs/auto-docs/components/CheckIn/types/interfaces/InterfaceTableCheckIn.md delete mode 100644 docs/docs/auto-docs/components/CheckIn/types/interfaces/InterfaceTableData.md delete mode 100644 docs/docs/auto-docs/components/CheckIn/types/interfaces/InterfaceUser.md delete mode 100644 docs/docs/auto-docs/components/CollapsibleDropdown/CollapsibleDropdown/README.md delete mode 100644 docs/docs/auto-docs/components/CollapsibleDropdown/CollapsibleDropdown/functions/default.md delete mode 100644 docs/docs/auto-docs/components/CollapsibleDropdown/CollapsibleDropdown/interfaces/InterfaceCollapsibleDropdown.md delete mode 100644 docs/docs/auto-docs/components/ContriStats/ContriStats/README.md delete mode 100644 docs/docs/auto-docs/components/ContriStats/ContriStats/functions/default.md delete mode 100644 docs/docs/auto-docs/components/CurrentHourIndicator/CurrentHourIndicator/README.md delete mode 100644 docs/docs/auto-docs/components/CurrentHourIndicator/CurrentHourIndicator/functions/default.md delete mode 100644 docs/docs/auto-docs/components/DynamicDropDown/DynamicDropDown/README.md delete mode 100644 docs/docs/auto-docs/components/DynamicDropDown/DynamicDropDown/functions/default.md delete mode 100644 docs/docs/auto-docs/components/EditCustomFieldDropDown/EditCustomFieldDropDown/README.md delete mode 100644 docs/docs/auto-docs/components/EditCustomFieldDropDown/EditCustomFieldDropDown/functions/default.md delete mode 100644 docs/docs/auto-docs/components/EventCalendar/EventCalendar/README.md delete mode 100644 docs/docs/auto-docs/components/EventCalendar/EventCalendar/functions/default.md delete mode 100644 docs/docs/auto-docs/components/EventCalendar/EventHeader/README.md delete mode 100644 docs/docs/auto-docs/components/EventCalendar/EventHeader/functions/default.md delete mode 100644 docs/docs/auto-docs/components/EventCalendar/YearlyEventCalender/README.md delete mode 100644 docs/docs/auto-docs/components/EventCalendar/YearlyEventCalender/functions/default.md delete mode 100644 docs/docs/auto-docs/components/EventCalendar/constants/README.md delete mode 100644 docs/docs/auto-docs/components/EventCalendar/constants/variables/holidays.md delete mode 100644 docs/docs/auto-docs/components/EventCalendar/constants/variables/hours.md delete mode 100644 docs/docs/auto-docs/components/EventCalendar/constants/variables/months.md delete mode 100644 docs/docs/auto-docs/components/EventCalendar/constants/variables/weekdays.md delete mode 100644 docs/docs/auto-docs/components/EventDashboardScreen/EventDashboardScreen/README.md delete mode 100644 docs/docs/auto-docs/components/EventDashboardScreen/EventDashboardScreen/functions/default.md delete mode 100644 docs/docs/auto-docs/components/EventListCard/EventListCard/README.md delete mode 100644 docs/docs/auto-docs/components/EventListCard/EventListCard/functions/default.md delete mode 100644 docs/docs/auto-docs/components/EventListCard/EventListCard/interfaces/InterfaceEventListCardProps.md delete mode 100644 docs/docs/auto-docs/components/EventListCard/EventListCardMocks/README.md delete mode 100644 docs/docs/auto-docs/components/EventListCard/EventListCardMocks/variables/ERROR_MOCKS.md delete mode 100644 docs/docs/auto-docs/components/EventListCard/EventListCardMocks/variables/MOCKS.md delete mode 100644 docs/docs/auto-docs/components/EventListCard/EventListCardModals/README.md delete mode 100644 docs/docs/auto-docs/components/EventListCard/EventListCardModals/functions/default.md delete mode 100644 docs/docs/auto-docs/components/EventListCard/EventListCardProps/README.md delete mode 100644 docs/docs/auto-docs/components/EventListCard/EventListCardProps/variables/props.md delete mode 100644 docs/docs/auto-docs/components/EventManagement/Dashboard/EventDashboard.mocks/README.md delete mode 100644 docs/docs/auto-docs/components/EventManagement/Dashboard/EventDashboard.mocks/variables/MOCKS_WITHOUT_TIME.md delete mode 100644 docs/docs/auto-docs/components/EventManagement/Dashboard/EventDashboard.mocks/variables/MOCKS_WITH_TIME.md delete mode 100644 docs/docs/auto-docs/components/EventManagement/Dashboard/EventDashboard/README.md delete mode 100644 docs/docs/auto-docs/components/EventManagement/Dashboard/EventDashboard/functions/default.md delete mode 100644 docs/docs/auto-docs/components/EventManagement/EventAgendaItems/EventAgendaItems/README.md delete mode 100644 docs/docs/auto-docs/components/EventManagement/EventAgendaItems/EventAgendaItems/functions/default.md delete mode 100644 docs/docs/auto-docs/components/EventManagement/EventAgendaItems/EventAgendaItemsMocks/README.md delete mode 100644 docs/docs/auto-docs/components/EventManagement/EventAgendaItems/EventAgendaItemsMocks/variables/MOCKS.md delete mode 100644 docs/docs/auto-docs/components/EventManagement/EventAgendaItems/EventAgendaItemsMocks/variables/MOCKS_ERROR_MUTATION.md delete mode 100644 docs/docs/auto-docs/components/EventManagement/EventAgendaItems/EventAgendaItemsMocks/variables/MOCKS_ERROR_QUERY.md delete mode 100644 docs/docs/auto-docs/components/EventManagement/EventAttendance/Attendance.mocks/README.md delete mode 100644 docs/docs/auto-docs/components/EventManagement/EventAttendance/Attendance.mocks/variables/MOCKS.md delete mode 100644 docs/docs/auto-docs/components/EventManagement/EventAttendance/Attendance.mocks/variables/MOCKS_ERROR.md delete mode 100644 docs/docs/auto-docs/components/EventManagement/EventAttendance/AttendedEventList/README.md delete mode 100644 docs/docs/auto-docs/components/EventManagement/EventAttendance/AttendedEventList/functions/default.md delete mode 100644 docs/docs/auto-docs/components/EventManagement/EventAttendance/EventAttendance/README.md delete mode 100644 docs/docs/auto-docs/components/EventManagement/EventAttendance/EventAttendance/functions/default.md delete mode 100644 docs/docs/auto-docs/components/EventManagement/EventAttendance/EventStatistics/README.md delete mode 100644 docs/docs/auto-docs/components/EventManagement/EventAttendance/EventStatistics/functions/AttendanceStatisticsModal.md delete mode 100644 docs/docs/auto-docs/components/EventManagement/EventAttendance/InterfaceEvents/README.md delete mode 100644 docs/docs/auto-docs/components/EventManagement/EventAttendance/InterfaceEvents/interfaces/InterfaceAttendanceStatisticsModalProps.md delete mode 100644 docs/docs/auto-docs/components/EventManagement/EventAttendance/InterfaceEvents/interfaces/InterfaceEvent.md delete mode 100644 docs/docs/auto-docs/components/EventManagement/EventAttendance/InterfaceEvents/interfaces/InterfaceMember.md delete mode 100644 docs/docs/auto-docs/components/EventManagement/EventAttendance/InterfaceEvents/interfaces/InterfaceRecurringEvent.md delete mode 100644 docs/docs/auto-docs/components/EventManagement/EventRegistrant/EventRegistrants/README.md delete mode 100644 docs/docs/auto-docs/components/EventManagement/EventRegistrant/EventRegistrants/functions/default.md delete mode 100644 docs/docs/auto-docs/components/EventManagement/EventRegistrant/Registrations.mocks/README.md delete mode 100644 docs/docs/auto-docs/components/EventManagement/EventRegistrant/Registrations.mocks/variables/REGISTRANTS_MOCKS.md delete mode 100644 docs/docs/auto-docs/components/EventManagement/EventRegistrant/Registrations.mocks/variables/REGISTRANTS_MOCKS_ERROR.md delete mode 100644 docs/docs/auto-docs/components/EventRegistrantsModal/AddOnSpotAttendee/README.md delete mode 100644 docs/docs/auto-docs/components/EventRegistrantsModal/AddOnSpotAttendee/functions/default.md delete mode 100644 docs/docs/auto-docs/components/EventRegistrantsModal/EventRegistrantsModal/README.md delete mode 100644 docs/docs/auto-docs/components/EventRegistrantsModal/EventRegistrantsModal/functions/EventRegistrantsModal.md delete mode 100644 docs/docs/auto-docs/components/EventRegistrantsModal/EventRegistrantsWrapper/README.md delete mode 100644 docs/docs/auto-docs/components/EventRegistrantsModal/EventRegistrantsWrapper/functions/EventRegistrantsWrapper.md delete mode 100644 docs/docs/auto-docs/components/EventStats/EventStats/README.md delete mode 100644 docs/docs/auto-docs/components/EventStats/EventStats/functions/EventStats.md delete mode 100644 docs/docs/auto-docs/components/EventStats/EventStatsWrapper/README.md delete mode 100644 docs/docs/auto-docs/components/EventStats/EventStatsWrapper/functions/EventStatsWrapper.md delete mode 100644 docs/docs/auto-docs/components/EventStats/Statistics/AverageRating/README.md delete mode 100644 docs/docs/auto-docs/components/EventStats/Statistics/AverageRating/functions/AverageRating.md delete mode 100644 docs/docs/auto-docs/components/EventStats/Statistics/Feedback/README.md delete mode 100644 docs/docs/auto-docs/components/EventStats/Statistics/Feedback/functions/FeedbackStats.md delete mode 100644 docs/docs/auto-docs/components/EventStats/Statistics/Review/README.md delete mode 100644 docs/docs/auto-docs/components/EventStats/Statistics/Review/functions/ReviewStats.md delete mode 100644 docs/docs/auto-docs/components/GroupChatDetails/GroupChatDetails/README.md delete mode 100644 docs/docs/auto-docs/components/GroupChatDetails/GroupChatDetails/functions/default.md delete mode 100644 docs/docs/auto-docs/components/HolidayCards/HolidayCard/README.md delete mode 100644 docs/docs/auto-docs/components/HolidayCards/HolidayCard/functions/default.md delete mode 100644 docs/docs/auto-docs/components/IconComponent/IconComponent/README.md delete mode 100644 docs/docs/auto-docs/components/IconComponent/IconComponent/functions/default.md delete mode 100644 docs/docs/auto-docs/components/IconComponent/IconComponent/interfaces/InterfaceIconComponent.md delete mode 100644 docs/docs/auto-docs/components/InfiniteScrollLoader/InfiniteScrollLoader/README.md delete mode 100644 docs/docs/auto-docs/components/InfiniteScrollLoader/InfiniteScrollLoader/functions/default.md delete mode 100644 docs/docs/auto-docs/components/LeftDrawer/LeftDrawer/README.md delete mode 100644 docs/docs/auto-docs/components/LeftDrawer/LeftDrawer/functions/default.md delete mode 100644 docs/docs/auto-docs/components/LeftDrawer/LeftDrawer/interfaces/InterfaceLeftDrawerProps.md delete mode 100644 docs/docs/auto-docs/components/LeftDrawerOrg/LeftDrawerOrg/README.md delete mode 100644 docs/docs/auto-docs/components/LeftDrawerOrg/LeftDrawerOrg/functions/default.md delete mode 100644 docs/docs/auto-docs/components/LeftDrawerOrg/LeftDrawerOrg/interfaces/InterfaceLeftDrawerProps.md delete mode 100644 docs/docs/auto-docs/components/Loader/Loader/README.md delete mode 100644 docs/docs/auto-docs/components/Loader/Loader/functions/default.md delete mode 100644 docs/docs/auto-docs/components/LoginPortalToggle/LoginPortalToggle/README.md delete mode 100644 docs/docs/auto-docs/components/LoginPortalToggle/LoginPortalToggle/functions/default.md delete mode 100644 docs/docs/auto-docs/components/MemberDetail/EventsAttendedByMember/README.md delete mode 100644 docs/docs/auto-docs/components/MemberDetail/EventsAttendedByMember/functions/default.md delete mode 100644 docs/docs/auto-docs/components/MemberDetail/EventsAttendedCardItem/README.md delete mode 100644 docs/docs/auto-docs/components/MemberDetail/EventsAttendedCardItem/functions/default.md delete mode 100644 docs/docs/auto-docs/components/MemberDetail/EventsAttendedCardItem/interfaces/InterfaceCardItem.md delete mode 100644 docs/docs/auto-docs/components/MemberDetail/EventsAttendedMemberModal/README.md delete mode 100644 docs/docs/auto-docs/components/MemberDetail/EventsAttendedMemberModal/functions/default.md delete mode 100644 docs/docs/auto-docs/components/MemberDetail/customTableCell/README.md delete mode 100644 docs/docs/auto-docs/components/MemberDetail/customTableCell/functions/CustomTableCell.md delete mode 100644 docs/docs/auto-docs/components/MemberRequestCard/MemberRequestCard/README.md delete mode 100644 docs/docs/auto-docs/components/MemberRequestCard/MemberRequestCard/functions/default.md delete mode 100644 docs/docs/auto-docs/components/NotFound/NotFound/README.md delete mode 100644 docs/docs/auto-docs/components/NotFound/NotFound/functions/default.md delete mode 100644 docs/docs/auto-docs/components/OrgAdminListCard/OrgAdminListCard/README.md delete mode 100644 docs/docs/auto-docs/components/OrgAdminListCard/OrgAdminListCard/functions/default.md delete mode 100644 docs/docs/auto-docs/components/OrgContriCards/OrgContriCards/README.md delete mode 100644 docs/docs/auto-docs/components/OrgContriCards/OrgContriCards/functions/default.md delete mode 100644 docs/docs/auto-docs/components/OrgDelete/OrgDelete/README.md delete mode 100644 docs/docs/auto-docs/components/OrgDelete/OrgDelete/functions/default.md delete mode 100644 docs/docs/auto-docs/components/OrgListCard/OrgListCard/README.md delete mode 100644 docs/docs/auto-docs/components/OrgListCard/OrgListCard/functions/default.md delete mode 100644 docs/docs/auto-docs/components/OrgListCard/OrgListCard/interfaces/InterfaceOrgListCardProps.md delete mode 100644 docs/docs/auto-docs/components/OrgListCard/TruncatedText/README.md delete mode 100644 docs/docs/auto-docs/components/OrgListCard/TruncatedText/functions/default.md delete mode 100644 docs/docs/auto-docs/components/OrgListCard/useDebounce/README.md delete mode 100644 docs/docs/auto-docs/components/OrgListCard/useDebounce/functions/default.md delete mode 100644 docs/docs/auto-docs/components/OrgPeopleListCard/OrgPeopleListCard/README.md delete mode 100644 docs/docs/auto-docs/components/OrgPeopleListCard/OrgPeopleListCard/functions/default.md delete mode 100644 docs/docs/auto-docs/components/OrgPostCard/DeletePostModal/README.md delete mode 100644 docs/docs/auto-docs/components/OrgPostCard/DeletePostModal/functions/default.md delete mode 100644 docs/docs/auto-docs/components/OrgPostCard/OrgPostCard/README.md delete mode 100644 docs/docs/auto-docs/components/OrgPostCard/OrgPostCard/functions/default.md delete mode 100644 docs/docs/auto-docs/components/OrgSettings/ActionItemCategories/CategoryModal/README.md delete mode 100644 docs/docs/auto-docs/components/OrgSettings/ActionItemCategories/CategoryModal/functions/default.md delete mode 100644 docs/docs/auto-docs/components/OrgSettings/ActionItemCategories/CategoryModal/interfaces/InterfaceActionItemCategoryModal.md delete mode 100644 docs/docs/auto-docs/components/OrgSettings/ActionItemCategories/OrgActionItemCategories/README.md delete mode 100644 docs/docs/auto-docs/components/OrgSettings/ActionItemCategories/OrgActionItemCategories/functions/default.md delete mode 100644 docs/docs/auto-docs/components/OrgSettings/ActionItemCategories/OrgActionItemCategoryMocks/README.md delete mode 100644 docs/docs/auto-docs/components/OrgSettings/ActionItemCategories/OrgActionItemCategoryMocks/variables/MOCKS.md delete mode 100644 docs/docs/auto-docs/components/OrgSettings/ActionItemCategories/OrgActionItemCategoryMocks/variables/MOCKS_EMPTY.md delete mode 100644 docs/docs/auto-docs/components/OrgSettings/ActionItemCategories/OrgActionItemCategoryMocks/variables/MOCKS_ERROR.md delete mode 100644 docs/docs/auto-docs/components/OrgSettings/AgendaItemCategories/AgendaCategoryCreateModal/README.md delete mode 100644 docs/docs/auto-docs/components/OrgSettings/AgendaItemCategories/AgendaCategoryCreateModal/functions/default.md delete mode 100644 docs/docs/auto-docs/components/OrgSettings/AgendaItemCategories/AgendaCategoryDeleteModal/README.md delete mode 100644 docs/docs/auto-docs/components/OrgSettings/AgendaItemCategories/AgendaCategoryDeleteModal/functions/default.md delete mode 100644 docs/docs/auto-docs/components/OrgSettings/AgendaItemCategories/AgendaCategoryPreviewModal/README.md delete mode 100644 docs/docs/auto-docs/components/OrgSettings/AgendaItemCategories/AgendaCategoryPreviewModal/functions/default.md delete mode 100644 docs/docs/auto-docs/components/OrgSettings/AgendaItemCategories/AgendaCategoryUpdateModal/README.md delete mode 100644 docs/docs/auto-docs/components/OrgSettings/AgendaItemCategories/AgendaCategoryUpdateModal/functions/default.md delete mode 100644 docs/docs/auto-docs/components/OrgSettings/AgendaItemCategories/OrganizationAgendaCategory/README.md delete mode 100644 docs/docs/auto-docs/components/OrgSettings/AgendaItemCategories/OrganizationAgendaCategory/functions/default.md delete mode 100644 docs/docs/auto-docs/components/OrgSettings/AgendaItemCategories/OrganizationAgendaCategoryErrorMocks/README.md delete mode 100644 docs/docs/auto-docs/components/OrgSettings/AgendaItemCategories/OrganizationAgendaCategoryErrorMocks/variables/MOCKS_ERROR_AGENDA_ITEM_CATEGORY_LIST_QUERY.md delete mode 100644 docs/docs/auto-docs/components/OrgSettings/AgendaItemCategories/OrganizationAgendaCategoryErrorMocks/variables/MOCKS_ERROR_MUTATION.md delete mode 100644 docs/docs/auto-docs/components/OrgSettings/AgendaItemCategories/OrganizationAgendaCategoryMocks/README.md delete mode 100644 docs/docs/auto-docs/components/OrgSettings/AgendaItemCategories/OrganizationAgendaCategoryMocks/variables/MOCKS.md delete mode 100644 docs/docs/auto-docs/components/OrgSettings/General/DeleteOrg/DeleteOrg/README.md delete mode 100644 docs/docs/auto-docs/components/OrgSettings/General/DeleteOrg/DeleteOrg/functions/default.md delete mode 100644 docs/docs/auto-docs/components/OrgSettings/General/GeneralSettings/README.md delete mode 100644 docs/docs/auto-docs/components/OrgSettings/General/GeneralSettings/functions/default.md delete mode 100644 docs/docs/auto-docs/components/OrgSettings/General/OrgProfileFieldSettings/OrgProfileFieldSettings/README.md delete mode 100644 docs/docs/auto-docs/components/OrgSettings/General/OrgProfileFieldSettings/OrgProfileFieldSettings/functions/default.md delete mode 100644 docs/docs/auto-docs/components/OrgSettings/General/OrgUpdate/OrgUpdate/README.md delete mode 100644 docs/docs/auto-docs/components/OrgSettings/General/OrgUpdate/OrgUpdate/functions/default.md delete mode 100644 docs/docs/auto-docs/components/OrgSettings/General/OrgUpdate/OrgUpdateMocks/README.md delete mode 100644 docs/docs/auto-docs/components/OrgSettings/General/OrgUpdate/OrgUpdateMocks/variables/MOCKS.md delete mode 100644 docs/docs/auto-docs/components/OrgSettings/General/OrgUpdate/OrgUpdateMocks/variables/MOCKS_ERROR_ORGLIST.md delete mode 100644 docs/docs/auto-docs/components/OrgSettings/General/OrgUpdate/OrgUpdateMocks/variables/MOCKS_ERROR_UPDATE_ORGLIST.md delete mode 100644 docs/docs/auto-docs/components/OrganizationCard/OrganizationCard/README.md delete mode 100644 docs/docs/auto-docs/components/OrganizationCard/OrganizationCard/functions/default.md delete mode 100644 docs/docs/auto-docs/components/OrganizationCardStart/OrganizationCardStart/README.md delete mode 100644 docs/docs/auto-docs/components/OrganizationCardStart/OrganizationCardStart/functions/default.md delete mode 100644 docs/docs/auto-docs/components/OrganizationDashCards/CardItem/README.md delete mode 100644 docs/docs/auto-docs/components/OrganizationDashCards/CardItem/functions/default.md delete mode 100644 docs/docs/auto-docs/components/OrganizationDashCards/CardItem/interfaces/InterfaceCardItem.md delete mode 100644 docs/docs/auto-docs/components/OrganizationDashCards/CardItemLoading/README.md delete mode 100644 docs/docs/auto-docs/components/OrganizationDashCards/CardItemLoading/functions/default.md delete mode 100644 docs/docs/auto-docs/components/OrganizationDashCards/DashboardCard/README.md delete mode 100644 docs/docs/auto-docs/components/OrganizationDashCards/DashboardCard/functions/default.md delete mode 100644 docs/docs/auto-docs/components/OrganizationDashCards/DashboardCardLoading/README.md delete mode 100644 docs/docs/auto-docs/components/OrganizationDashCards/DashboardCardLoading/functions/default.md delete mode 100644 docs/docs/auto-docs/components/OrganizationScreen/OrganizationScreen/README.md delete mode 100644 docs/docs/auto-docs/components/OrganizationScreen/OrganizationScreen/functions/default.md delete mode 100644 docs/docs/auto-docs/components/Pagination/Pagination/README.md delete mode 100644 docs/docs/auto-docs/components/Pagination/Pagination/functions/default.md delete mode 100644 docs/docs/auto-docs/components/PaginationList/PaginationList/README.md delete mode 100644 docs/docs/auto-docs/components/PaginationList/PaginationList/functions/default.md delete mode 100644 docs/docs/auto-docs/components/ProfileDropdown/ProfileDropdown/README.md delete mode 100644 docs/docs/auto-docs/components/ProfileDropdown/ProfileDropdown/functions/default.md delete mode 100644 docs/docs/auto-docs/components/RecurrenceOptions/CustomRecurrenceModal/README.md delete mode 100644 docs/docs/auto-docs/components/RecurrenceOptions/CustomRecurrenceModal/functions/default.md delete mode 100644 docs/docs/auto-docs/components/RecurrenceOptions/RecurrenceOptions/README.md delete mode 100644 docs/docs/auto-docs/components/RecurrenceOptions/RecurrenceOptions/functions/default.md delete mode 100644 docs/docs/auto-docs/components/RequestsTableItem/RequestsTableItem/README.md delete mode 100644 docs/docs/auto-docs/components/RequestsTableItem/RequestsTableItem/functions/default.md delete mode 100644 docs/docs/auto-docs/components/RequestsTableItem/RequestsTableItem/interfaces/InterfaceRequestsListItem.md delete mode 100644 docs/docs/auto-docs/components/RequestsTableItem/RequestsTableItemMocks/README.md delete mode 100644 docs/docs/auto-docs/components/RequestsTableItem/RequestsTableItemMocks/variables/MOCKS.md delete mode 100644 docs/docs/auto-docs/components/SecuredRoute/SecuredRoute/README.md delete mode 100644 docs/docs/auto-docs/components/SecuredRoute/SecuredRoute/functions/default.md delete mode 100644 docs/docs/auto-docs/components/SuperAdminScreen/SuperAdminScreen/README.md delete mode 100644 docs/docs/auto-docs/components/SuperAdminScreen/SuperAdminScreen/functions/default.md delete mode 100644 docs/docs/auto-docs/components/TableLoader/TableLoader/README.md delete mode 100644 docs/docs/auto-docs/components/TableLoader/TableLoader/functions/default.md delete mode 100644 docs/docs/auto-docs/components/TableLoader/TableLoader/interfaces/InterfaceTableLoader.md delete mode 100644 docs/docs/auto-docs/components/TagActions/TagActions/README.md delete mode 100644 docs/docs/auto-docs/components/TagActions/TagActions/functions/default.md delete mode 100644 docs/docs/auto-docs/components/TagActions/TagActions/interfaces/InterfaceTagActionsProps.md delete mode 100644 docs/docs/auto-docs/components/TagActions/TagActionsMocks/README.md delete mode 100644 docs/docs/auto-docs/components/TagActions/TagActionsMocks/variables/MOCKS.md delete mode 100644 docs/docs/auto-docs/components/TagActions/TagActionsMocks/variables/MOCKS_ERROR_ORGANIZATION_TAGS_QUERY.md delete mode 100644 docs/docs/auto-docs/components/TagActions/TagActionsMocks/variables/MOCKS_ERROR_SUBTAGS_QUERY.md delete mode 100644 docs/docs/auto-docs/components/TagActions/TagNode/README.md delete mode 100644 docs/docs/auto-docs/components/TagActions/TagNode/functions/default.md delete mode 100644 docs/docs/auto-docs/components/TagActions/TagNodeMocks/README.md delete mode 100644 docs/docs/auto-docs/components/TagActions/TagNodeMocks/variables/MOCKS1.md delete mode 100644 docs/docs/auto-docs/components/TagActions/TagNodeMocks/variables/MOCKS_ERROR_SUBTAGS_QUERY1.md delete mode 100644 docs/docs/auto-docs/components/UpdateSession/UpdateSession/README.md delete mode 100644 docs/docs/auto-docs/components/UpdateSession/UpdateSession/functions/default.md delete mode 100644 docs/docs/auto-docs/components/UserListCard/UserListCard/README.md delete mode 100644 docs/docs/auto-docs/components/UserListCard/UserListCard/functions/default.md delete mode 100644 docs/docs/auto-docs/components/UserPasswordUpdate/UserPasswordUpdate/README.md delete mode 100644 docs/docs/auto-docs/components/UserPasswordUpdate/UserPasswordUpdate/functions/default.md delete mode 100644 docs/docs/auto-docs/components/UserPasswordUpdate/UserPasswordUpdateMocks/README.md delete mode 100644 docs/docs/auto-docs/components/UserPasswordUpdate/UserPasswordUpdateMocks/variables/MOCKS.md delete mode 100644 docs/docs/auto-docs/components/UserPortal/ChatRoom/ChatRoom/README.md delete mode 100644 docs/docs/auto-docs/components/UserPortal/ChatRoom/ChatRoom/functions/default.md delete mode 100644 docs/docs/auto-docs/components/UserPortal/CommentCard/CommentCard/README.md delete mode 100644 docs/docs/auto-docs/components/UserPortal/CommentCard/CommentCard/functions/default.md delete mode 100644 docs/docs/auto-docs/components/UserPortal/ContactCard/ContactCard/README.md delete mode 100644 docs/docs/auto-docs/components/UserPortal/ContactCard/ContactCard/functions/default.md delete mode 100644 docs/docs/auto-docs/components/UserPortal/CreateDirectChat/CreateDirectChat/README.md delete mode 100644 docs/docs/auto-docs/components/UserPortal/CreateDirectChat/CreateDirectChat/functions/default.md delete mode 100644 docs/docs/auto-docs/components/UserPortal/CreateGroupChat/CreateGroupChat/README.md delete mode 100644 docs/docs/auto-docs/components/UserPortal/CreateGroupChat/CreateGroupChat/functions/default.md delete mode 100644 docs/docs/auto-docs/components/UserPortal/DonationCard/DonationCard/README.md delete mode 100644 docs/docs/auto-docs/components/UserPortal/DonationCard/DonationCard/functions/default.md delete mode 100644 docs/docs/auto-docs/components/UserPortal/EventCard/EventCard/README.md delete mode 100644 docs/docs/auto-docs/components/UserPortal/EventCard/EventCard/functions/default.md delete mode 100644 docs/docs/auto-docs/components/UserPortal/OrganizationCard/OrganizationCard/README.md delete mode 100644 docs/docs/auto-docs/components/UserPortal/OrganizationCard/OrganizationCard/functions/default.md delete mode 100644 docs/docs/auto-docs/components/UserPortal/OrganizationNavbar/OrganizationNavbar/README.md delete mode 100644 docs/docs/auto-docs/components/UserPortal/OrganizationNavbar/OrganizationNavbar/functions/default.md delete mode 100644 docs/docs/auto-docs/components/UserPortal/OrganizationSidebar/OrganizationSidebar/README.md delete mode 100644 docs/docs/auto-docs/components/UserPortal/OrganizationSidebar/OrganizationSidebar/functions/default.md delete mode 100644 docs/docs/auto-docs/components/UserPortal/PeopleCard/PeopleCard/README.md delete mode 100644 docs/docs/auto-docs/components/UserPortal/PeopleCard/PeopleCard/functions/default.md delete mode 100644 docs/docs/auto-docs/components/UserPortal/PostCard/PostCard/README.md delete mode 100644 docs/docs/auto-docs/components/UserPortal/PostCard/PostCard/functions/default.md delete mode 100644 docs/docs/auto-docs/components/UserPortal/PromotedPost/PromotedPost/README.md delete mode 100644 docs/docs/auto-docs/components/UserPortal/PromotedPost/PromotedPost/functions/default.md delete mode 100644 docs/docs/auto-docs/components/UserPortal/Register/Register/README.md delete mode 100644 docs/docs/auto-docs/components/UserPortal/Register/Register/functions/default.md delete mode 100644 docs/docs/auto-docs/components/UserPortal/SecuredRouteForUser/SecuredRouteForUser/README.md delete mode 100644 docs/docs/auto-docs/components/UserPortal/SecuredRouteForUser/SecuredRouteForUser/functions/default.md delete mode 100644 docs/docs/auto-docs/components/UserPortal/StartPostModal/StartPostModal/README.md delete mode 100644 docs/docs/auto-docs/components/UserPortal/StartPostModal/StartPostModal/functions/default.md delete mode 100644 docs/docs/auto-docs/components/UserPortal/UserNavbar/UserNavbar/README.md delete mode 100644 docs/docs/auto-docs/components/UserPortal/UserNavbar/UserNavbar/functions/default.md delete mode 100644 docs/docs/auto-docs/components/UserPortal/UserProfile/EventsAttendedByUser/README.md delete mode 100644 docs/docs/auto-docs/components/UserPortal/UserProfile/EventsAttendedByUser/functions/EventsAttendedByUser.md delete mode 100644 docs/docs/auto-docs/components/UserPortal/UserProfile/UserAddressFields/README.md delete mode 100644 docs/docs/auto-docs/components/UserPortal/UserProfile/UserAddressFields/functions/UserAddressFields.md delete mode 100644 docs/docs/auto-docs/components/UserPortal/UserSidebar/UserSidebar/README.md delete mode 100644 docs/docs/auto-docs/components/UserPortal/UserSidebar/UserSidebar/functions/default.md delete mode 100644 docs/docs/auto-docs/components/UserPortal/UserSidebar/UserSidebar/interfaces/InterfaceUserSidebarProps.md delete mode 100644 docs/docs/auto-docs/components/UserPortal/UserSidebarOrg/UserSidebarOrg/README.md delete mode 100644 docs/docs/auto-docs/components/UserPortal/UserSidebarOrg/UserSidebarOrg/functions/default.md delete mode 100644 docs/docs/auto-docs/components/UserPortal/UserSidebarOrg/UserSidebarOrg/interfaces/InterfaceUserSidebarOrgProps.md delete mode 100644 docs/docs/auto-docs/components/UserProfileSettings/DeleteUser/README.md delete mode 100644 docs/docs/auto-docs/components/UserProfileSettings/DeleteUser/functions/default.md delete mode 100644 docs/docs/auto-docs/components/UserProfileSettings/OtherSettings/README.md delete mode 100644 docs/docs/auto-docs/components/UserProfileSettings/OtherSettings/functions/default.md delete mode 100644 docs/docs/auto-docs/components/UserProfileSettings/UserProfile/README.md delete mode 100644 docs/docs/auto-docs/components/UserProfileSettings/UserProfile/functions/default.md delete mode 100644 docs/docs/auto-docs/components/UsersTableItem/UserTableItemMocks/README.md delete mode 100644 docs/docs/auto-docs/components/UsersTableItem/UserTableItemMocks/variables/MOCKS.md delete mode 100644 docs/docs/auto-docs/components/UsersTableItem/UserTableItemMocks/variables/MOCKS2.md delete mode 100644 docs/docs/auto-docs/components/UsersTableItem/UserTableItemMocks/variables/MOCKS_UPDATE.md delete mode 100644 docs/docs/auto-docs/components/UsersTableItem/UsersTableItem/README.md delete mode 100644 docs/docs/auto-docs/components/UsersTableItem/UsersTableItem/functions/default.md delete mode 100644 docs/docs/auto-docs/components/Venues/VenueCard/README.md delete mode 100644 docs/docs/auto-docs/components/Venues/VenueCard/functions/default.md delete mode 100644 docs/docs/auto-docs/components/Venues/VenueModal/README.md delete mode 100644 docs/docs/auto-docs/components/Venues/VenueModal/functions/default.md delete mode 100644 docs/docs/auto-docs/components/Venues/VenueModal/interfaces/InterfaceVenueModalProps.md delete mode 100644 docs/docs/auto-docs/components/plugins/DummyPlugin/DummyPlugin.test/README.md delete mode 100644 docs/docs/auto-docs/components/plugins/DummyPlugin/DummyPlugin/README.md delete mode 100644 docs/docs/auto-docs/components/plugins/DummyPlugin/DummyPlugin/functions/default.md delete mode 100644 docs/docs/auto-docs/components/plugins/DummyPlugin2/DummyPlugin2.test/README.md delete mode 100644 docs/docs/auto-docs/components/plugins/DummyPlugin2/DummyPlugin2/README.md delete mode 100644 docs/docs/auto-docs/components/plugins/DummyPlugin2/DummyPlugin2/functions/default.md delete mode 100644 docs/docs/auto-docs/components/plugins/README.md delete mode 100644 docs/docs/auto-docs/constants/README.md delete mode 100644 docs/docs/auto-docs/constants/variables/socialMediaLinks.md delete mode 100644 docs/docs/auto-docs/index/README.md delete mode 100644 docs/docs/auto-docs/modules.md delete mode 100644 docs/docs/auto-docs/reportWebVitals/README.md delete mode 100644 docs/docs/auto-docs/reportWebVitals/functions/default.md delete mode 100644 docs/docs/auto-docs/screens/BlockUser/BlockUser/README.md delete mode 100644 docs/docs/auto-docs/screens/BlockUser/BlockUser/functions/default.md delete mode 100644 docs/docs/auto-docs/screens/CommunityProfile/CommunityProfile/README.md delete mode 100644 docs/docs/auto-docs/screens/CommunityProfile/CommunityProfile/functions/default.md delete mode 100644 docs/docs/auto-docs/screens/EventManagement/EventManagement/README.md delete mode 100644 docs/docs/auto-docs/screens/EventManagement/EventManagement/functions/default.md delete mode 100644 docs/docs/auto-docs/screens/EventVolunteers/Requests/Requests.mocks/README.md delete mode 100644 docs/docs/auto-docs/screens/EventVolunteers/Requests/Requests.mocks/variables/EMPTY_MOCKS.md delete mode 100644 docs/docs/auto-docs/screens/EventVolunteers/Requests/Requests.mocks/variables/ERROR_MOCKS.md delete mode 100644 docs/docs/auto-docs/screens/EventVolunteers/Requests/Requests.mocks/variables/MOCKS.md delete mode 100644 docs/docs/auto-docs/screens/EventVolunteers/Requests/Requests.mocks/variables/UPDATE_ERROR_MOCKS.md delete mode 100644 docs/docs/auto-docs/screens/EventVolunteers/Requests/Requests/README.md delete mode 100644 docs/docs/auto-docs/screens/EventVolunteers/Requests/Requests/functions/default.md delete mode 100644 docs/docs/auto-docs/screens/EventVolunteers/VolunteerContainer/README.md delete mode 100644 docs/docs/auto-docs/screens/EventVolunteers/VolunteerContainer/functions/default.md delete mode 100644 docs/docs/auto-docs/screens/EventVolunteers/VolunteerGroups/VolunteerGroupDeleteModal/README.md delete mode 100644 docs/docs/auto-docs/screens/EventVolunteers/VolunteerGroups/VolunteerGroupDeleteModal/functions/default.md delete mode 100644 docs/docs/auto-docs/screens/EventVolunteers/VolunteerGroups/VolunteerGroupDeleteModal/interfaces/InterfaceDeleteVolunteerGroupModal.md delete mode 100644 docs/docs/auto-docs/screens/EventVolunteers/VolunteerGroups/VolunteerGroupModal/README.md delete mode 100644 docs/docs/auto-docs/screens/EventVolunteers/VolunteerGroups/VolunteerGroupModal/functions/default.md delete mode 100644 docs/docs/auto-docs/screens/EventVolunteers/VolunteerGroups/VolunteerGroupModal/interfaces/InterfaceVolunteerGroupModal.md delete mode 100644 docs/docs/auto-docs/screens/EventVolunteers/VolunteerGroups/VolunteerGroupViewModal/README.md delete mode 100644 docs/docs/auto-docs/screens/EventVolunteers/VolunteerGroups/VolunteerGroupViewModal/functions/default.md delete mode 100644 docs/docs/auto-docs/screens/EventVolunteers/VolunteerGroups/VolunteerGroupViewModal/interfaces/InterfaceVolunteerGroupViewModal.md delete mode 100644 docs/docs/auto-docs/screens/EventVolunteers/VolunteerGroups/VolunteerGroups.mocks/README.md delete mode 100644 docs/docs/auto-docs/screens/EventVolunteers/VolunteerGroups/VolunteerGroups.mocks/variables/MOCKS.md delete mode 100644 docs/docs/auto-docs/screens/EventVolunteers/VolunteerGroups/VolunteerGroups.mocks/variables/MOCKS_EMPTY.md delete mode 100644 docs/docs/auto-docs/screens/EventVolunteers/VolunteerGroups/VolunteerGroups.mocks/variables/MOCKS_ERROR.md delete mode 100644 docs/docs/auto-docs/screens/EventVolunteers/VolunteerGroups/VolunteerGroups/README.md delete mode 100644 docs/docs/auto-docs/screens/EventVolunteers/VolunteerGroups/VolunteerGroups/functions/default.md delete mode 100644 docs/docs/auto-docs/screens/EventVolunteers/Volunteers/VolunteerCreateModal/README.md delete mode 100644 docs/docs/auto-docs/screens/EventVolunteers/Volunteers/VolunteerCreateModal/functions/default.md delete mode 100644 docs/docs/auto-docs/screens/EventVolunteers/Volunteers/VolunteerCreateModal/interfaces/InterfaceVolunteerCreateModal.md delete mode 100644 docs/docs/auto-docs/screens/EventVolunteers/Volunteers/VolunteerDeleteModal/README.md delete mode 100644 docs/docs/auto-docs/screens/EventVolunteers/Volunteers/VolunteerDeleteModal/functions/default.md delete mode 100644 docs/docs/auto-docs/screens/EventVolunteers/Volunteers/VolunteerDeleteModal/interfaces/InterfaceDeleteVolunteerModal.md delete mode 100644 docs/docs/auto-docs/screens/EventVolunteers/Volunteers/VolunteerViewModal/README.md delete mode 100644 docs/docs/auto-docs/screens/EventVolunteers/Volunteers/VolunteerViewModal/functions/default.md delete mode 100644 docs/docs/auto-docs/screens/EventVolunteers/Volunteers/VolunteerViewModal/interfaces/InterfaceVolunteerViewModal.md delete mode 100644 docs/docs/auto-docs/screens/EventVolunteers/Volunteers/Volunteers.mocks/README.md delete mode 100644 docs/docs/auto-docs/screens/EventVolunteers/Volunteers/Volunteers.mocks/variables/MOCKS.md delete mode 100644 docs/docs/auto-docs/screens/EventVolunteers/Volunteers/Volunteers.mocks/variables/MOCKS_EMPTY.md delete mode 100644 docs/docs/auto-docs/screens/EventVolunteers/Volunteers/Volunteers.mocks/variables/MOCKS_ERROR.md delete mode 100644 docs/docs/auto-docs/screens/EventVolunteers/Volunteers/Volunteers/README.md delete mode 100644 docs/docs/auto-docs/screens/EventVolunteers/Volunteers/Volunteers/functions/default.md delete mode 100644 docs/docs/auto-docs/screens/ForgotPassword/ForgotPassword/README.md delete mode 100644 docs/docs/auto-docs/screens/ForgotPassword/ForgotPassword/functions/default.md delete mode 100644 docs/docs/auto-docs/screens/FundCampaignPledge/FundCampaignPledge/README.md delete mode 100644 docs/docs/auto-docs/screens/FundCampaignPledge/FundCampaignPledge/functions/default.md delete mode 100644 docs/docs/auto-docs/screens/FundCampaignPledge/PledgeDeleteModal/README.md delete mode 100644 docs/docs/auto-docs/screens/FundCampaignPledge/PledgeDeleteModal/functions/default.md delete mode 100644 docs/docs/auto-docs/screens/FundCampaignPledge/PledgeDeleteModal/interfaces/InterfaceDeletePledgeModal.md delete mode 100644 docs/docs/auto-docs/screens/FundCampaignPledge/PledgeModal/README.md delete mode 100644 docs/docs/auto-docs/screens/FundCampaignPledge/PledgeModal/functions/default.md delete mode 100644 docs/docs/auto-docs/screens/FundCampaignPledge/PledgeModal/interfaces/InterfacePledgeModal.md delete mode 100644 docs/docs/auto-docs/screens/FundCampaignPledge/PledgesMocks/README.md delete mode 100644 docs/docs/auto-docs/screens/FundCampaignPledge/PledgesMocks/variables/EMPTY_MOCKS.md delete mode 100644 docs/docs/auto-docs/screens/FundCampaignPledge/PledgesMocks/variables/MOCKS.md delete mode 100644 docs/docs/auto-docs/screens/FundCampaignPledge/PledgesMocks/variables/MOCKS_DELETE_PLEDGE_ERROR.md delete mode 100644 docs/docs/auto-docs/screens/FundCampaignPledge/PledgesMocks/variables/MOCKS_FUND_CAMPAIGN_PLEDGE_ERROR.md delete mode 100644 docs/docs/auto-docs/screens/FundCampaignPledge/PledgesMocks/variables/PLEDGE_MODAL_MOCKS.md delete mode 100644 docs/docs/auto-docs/screens/Leaderboard/Leaderboard.mocks/README.md delete mode 100644 docs/docs/auto-docs/screens/Leaderboard/Leaderboard.mocks/variables/EMPTY_MOCKS.md delete mode 100644 docs/docs/auto-docs/screens/Leaderboard/Leaderboard.mocks/variables/ERROR_MOCKS.md delete mode 100644 docs/docs/auto-docs/screens/Leaderboard/Leaderboard.mocks/variables/MOCKS.md delete mode 100644 docs/docs/auto-docs/screens/Leaderboard/Leaderboard/README.md delete mode 100644 docs/docs/auto-docs/screens/Leaderboard/Leaderboard/functions/default.md delete mode 100644 docs/docs/auto-docs/screens/LoginPage/LoginPage/README.md delete mode 100644 docs/docs/auto-docs/screens/LoginPage/LoginPage/functions/default.md delete mode 100644 docs/docs/auto-docs/screens/ManageTag/EditUserTagModal/README.md delete mode 100644 docs/docs/auto-docs/screens/ManageTag/EditUserTagModal/functions/default.md delete mode 100644 docs/docs/auto-docs/screens/ManageTag/EditUserTagModal/interfaces/InterfaceEditUserTagModalProps.md delete mode 100644 docs/docs/auto-docs/screens/ManageTag/ManageTag/README.md delete mode 100644 docs/docs/auto-docs/screens/ManageTag/ManageTag/functions/default.md delete mode 100644 docs/docs/auto-docs/screens/ManageTag/ManageTagMockComponents/MockAddPeopleToTag/README.md delete mode 100644 docs/docs/auto-docs/screens/ManageTag/ManageTagMockComponents/MockAddPeopleToTag/functions/default.md delete mode 100644 docs/docs/auto-docs/screens/ManageTag/ManageTagMockComponents/MockTagActions/README.md delete mode 100644 docs/docs/auto-docs/screens/ManageTag/ManageTagMockComponents/MockTagActions/functions/default.md delete mode 100644 docs/docs/auto-docs/screens/ManageTag/ManageTagMocks/README.md delete mode 100644 docs/docs/auto-docs/screens/ManageTag/ManageTagMocks/variables/MOCKS.md delete mode 100644 docs/docs/auto-docs/screens/ManageTag/ManageTagMocks/variables/MOCKS_ERROR_ASSIGNED_MEMBERS.md delete mode 100644 docs/docs/auto-docs/screens/ManageTag/RemoveUserTagModal/README.md delete mode 100644 docs/docs/auto-docs/screens/ManageTag/RemoveUserTagModal/functions/default.md delete mode 100644 docs/docs/auto-docs/screens/ManageTag/RemoveUserTagModal/interfaces/InterfaceRemoveUserTagModalProps.md delete mode 100644 docs/docs/auto-docs/screens/ManageTag/UnassignUserTagModal/README.md delete mode 100644 docs/docs/auto-docs/screens/ManageTag/UnassignUserTagModal/functions/default.md delete mode 100644 docs/docs/auto-docs/screens/ManageTag/UnassignUserTagModal/interfaces/InterfaceUnassignUserTagModalProps.md delete mode 100644 docs/docs/auto-docs/screens/MemberDetail/MemberDetail/README.md delete mode 100644 docs/docs/auto-docs/screens/MemberDetail/MemberDetail/functions/default.md delete mode 100644 docs/docs/auto-docs/screens/MemberDetail/MemberDetail/functions/getLanguageName.md delete mode 100644 docs/docs/auto-docs/screens/MemberDetail/MemberDetail/functions/prettyDate.md delete mode 100644 docs/docs/auto-docs/screens/MemberDetail/MemberDetailMocks/README.md delete mode 100644 docs/docs/auto-docs/screens/MemberDetail/MemberDetailMocks/variables/MOCKS1.md delete mode 100644 docs/docs/auto-docs/screens/MemberDetail/MemberDetailMocks/variables/MOCKS2.md delete mode 100644 docs/docs/auto-docs/screens/MemberDetail/MemberDetailMocks/variables/MOCKS3.md delete mode 100644 docs/docs/auto-docs/screens/OrgContribution/OrgContribution/README.md delete mode 100644 docs/docs/auto-docs/screens/OrgContribution/OrgContribution/functions/default.md delete mode 100644 docs/docs/auto-docs/screens/OrgList/OrgList/README.md delete mode 100644 docs/docs/auto-docs/screens/OrgList/OrgList/functions/default.md delete mode 100644 docs/docs/auto-docs/screens/OrgList/OrgListMocks/README.md delete mode 100644 docs/docs/auto-docs/screens/OrgList/OrgListMocks/variables/MOCKS.md delete mode 100644 docs/docs/auto-docs/screens/OrgList/OrgListMocks/variables/MOCKS_ADMIN.md delete mode 100644 docs/docs/auto-docs/screens/OrgList/OrgListMocks/variables/MOCKS_EMPTY.md delete mode 100644 docs/docs/auto-docs/screens/OrgList/OrgListMocks/variables/MOCKS_WITH_ERROR.md delete mode 100644 docs/docs/auto-docs/screens/OrgList/OrganizationModal/README.md delete mode 100644 docs/docs/auto-docs/screens/OrgList/OrganizationModal/functions/default.md delete mode 100644 docs/docs/auto-docs/screens/OrgPost/OrgPost/README.md delete mode 100644 docs/docs/auto-docs/screens/OrgPost/OrgPost/functions/default.md delete mode 100644 docs/docs/auto-docs/screens/OrgSettings/OrgSettings.mocks/README.md delete mode 100644 docs/docs/auto-docs/screens/OrgSettings/OrgSettings.mocks/variables/MOCKS.md delete mode 100644 docs/docs/auto-docs/screens/OrgSettings/OrgSettings/README.md delete mode 100644 docs/docs/auto-docs/screens/OrgSettings/OrgSettings/functions/default.md delete mode 100644 docs/docs/auto-docs/screens/OrganizationActionItems/ItemDeleteModal/README.md delete mode 100644 docs/docs/auto-docs/screens/OrganizationActionItems/ItemDeleteModal/functions/default.md delete mode 100644 docs/docs/auto-docs/screens/OrganizationActionItems/ItemDeleteModal/interfaces/InterfaceItemDeleteModalProps.md delete mode 100644 docs/docs/auto-docs/screens/OrganizationActionItems/ItemModal/README.md delete mode 100644 docs/docs/auto-docs/screens/OrganizationActionItems/ItemModal/functions/default.md delete mode 100644 docs/docs/auto-docs/screens/OrganizationActionItems/ItemModal/interfaces/InterfaceItemModalProps.md delete mode 100644 docs/docs/auto-docs/screens/OrganizationActionItems/ItemUpdateStatusModal/README.md delete mode 100644 docs/docs/auto-docs/screens/OrganizationActionItems/ItemUpdateStatusModal/functions/default.md delete mode 100644 docs/docs/auto-docs/screens/OrganizationActionItems/ItemUpdateStatusModal/interfaces/InterfaceItemUpdateStatusModalProps.md delete mode 100644 docs/docs/auto-docs/screens/OrganizationActionItems/ItemViewModal/README.md delete mode 100644 docs/docs/auto-docs/screens/OrganizationActionItems/ItemViewModal/functions/default.md delete mode 100644 docs/docs/auto-docs/screens/OrganizationActionItems/ItemViewModal/interfaces/InterfaceViewModalProps.md delete mode 100644 docs/docs/auto-docs/screens/OrganizationActionItems/OrganizationActionItem.mocks/README.md delete mode 100644 docs/docs/auto-docs/screens/OrganizationActionItems/OrganizationActionItem.mocks/variables/MOCKS.md delete mode 100644 docs/docs/auto-docs/screens/OrganizationActionItems/OrganizationActionItem.mocks/variables/MOCKS_EMPTY.md delete mode 100644 docs/docs/auto-docs/screens/OrganizationActionItems/OrganizationActionItem.mocks/variables/MOCKS_ERROR.md delete mode 100644 docs/docs/auto-docs/screens/OrganizationActionItems/OrganizationActionItems/README.md delete mode 100644 docs/docs/auto-docs/screens/OrganizationActionItems/OrganizationActionItems/functions/default.md delete mode 100644 docs/docs/auto-docs/screens/OrganizationActionItems/testObject.mocks/README.md delete mode 100644 docs/docs/auto-docs/screens/OrganizationActionItems/testObject.mocks/variables/actionItemCategory1.md delete mode 100644 docs/docs/auto-docs/screens/OrganizationActionItems/testObject.mocks/variables/actionItemCategory2.md delete mode 100644 docs/docs/auto-docs/screens/OrganizationActionItems/testObject.mocks/variables/actionItemCategoryListQuery.md delete mode 100644 docs/docs/auto-docs/screens/OrganizationActionItems/testObject.mocks/variables/baseActionItem.md delete mode 100644 docs/docs/auto-docs/screens/OrganizationActionItems/testObject.mocks/variables/groupListQuery.md delete mode 100644 docs/docs/auto-docs/screens/OrganizationActionItems/testObject.mocks/variables/itemWithGroup.md delete mode 100644 docs/docs/auto-docs/screens/OrganizationActionItems/testObject.mocks/variables/itemWithUser.md delete mode 100644 docs/docs/auto-docs/screens/OrganizationActionItems/testObject.mocks/variables/itemWithUserImage.md delete mode 100644 docs/docs/auto-docs/screens/OrganizationActionItems/testObject.mocks/variables/itemWithVolunteer.md delete mode 100644 docs/docs/auto-docs/screens/OrganizationActionItems/testObject.mocks/variables/itemWithVolunteerImage.md delete mode 100644 docs/docs/auto-docs/screens/OrganizationActionItems/testObject.mocks/variables/memberListQuery.md delete mode 100644 docs/docs/auto-docs/screens/OrganizationActionItems/testObject.mocks/variables/volunteerListQuery.md delete mode 100644 docs/docs/auto-docs/screens/OrganizationDashboard/OrganizationDashboard/README.md delete mode 100644 docs/docs/auto-docs/screens/OrganizationDashboard/OrganizationDashboard/functions/default.md delete mode 100644 docs/docs/auto-docs/screens/OrganizationDashboard/OrganizationDashboardMocks/README.md delete mode 100644 docs/docs/auto-docs/screens/OrganizationDashboard/OrganizationDashboardMocks/variables/EMPTY_MOCKS.md delete mode 100644 docs/docs/auto-docs/screens/OrganizationDashboard/OrganizationDashboardMocks/variables/ERROR_MOCKS.md delete mode 100644 docs/docs/auto-docs/screens/OrganizationDashboard/OrganizationDashboardMocks/variables/MOCKS.md delete mode 100644 docs/docs/auto-docs/screens/OrganizationEvents/OrganizationEvents/README.md delete mode 100644 docs/docs/auto-docs/screens/OrganizationEvents/OrganizationEvents/enumerations/ViewType.md delete mode 100644 docs/docs/auto-docs/screens/OrganizationEvents/OrganizationEvents/functions/default.md delete mode 100644 docs/docs/auto-docs/screens/OrganizationEvents/OrganizationEventsMocks/README.md delete mode 100644 docs/docs/auto-docs/screens/OrganizationEvents/OrganizationEventsMocks/variables/MOCKS.md delete mode 100644 docs/docs/auto-docs/screens/OrganizationFundCampaign/CampaignModal/README.md delete mode 100644 docs/docs/auto-docs/screens/OrganizationFundCampaign/CampaignModal/functions/default.md delete mode 100644 docs/docs/auto-docs/screens/OrganizationFundCampaign/CampaignModal/interfaces/InterfaceCampaignModal.md delete mode 100644 docs/docs/auto-docs/screens/OrganizationFundCampaign/OrganizationFundCampagins/README.md delete mode 100644 docs/docs/auto-docs/screens/OrganizationFundCampaign/OrganizationFundCampagins/functions/default.md delete mode 100644 docs/docs/auto-docs/screens/OrganizationFundCampaign/OrganizationFundCampaignMocks/README.md delete mode 100644 docs/docs/auto-docs/screens/OrganizationFundCampaign/OrganizationFundCampaignMocks/variables/EMPTY_MOCKS.md delete mode 100644 docs/docs/auto-docs/screens/OrganizationFundCampaign/OrganizationFundCampaignMocks/variables/MOCKS.md delete mode 100644 docs/docs/auto-docs/screens/OrganizationFundCampaign/OrganizationFundCampaignMocks/variables/MOCK_ERROR.md delete mode 100644 docs/docs/auto-docs/screens/OrganizationFunds/FundModal/README.md delete mode 100644 docs/docs/auto-docs/screens/OrganizationFunds/FundModal/functions/default.md delete mode 100644 docs/docs/auto-docs/screens/OrganizationFunds/FundModal/interfaces/InterfaceFundModal.md delete mode 100644 docs/docs/auto-docs/screens/OrganizationFunds/OrganizationFunds/README.md delete mode 100644 docs/docs/auto-docs/screens/OrganizationFunds/OrganizationFunds/functions/default.md delete mode 100644 docs/docs/auto-docs/screens/OrganizationFunds/OrganizationFundsMocks/README.md delete mode 100644 docs/docs/auto-docs/screens/OrganizationFunds/OrganizationFundsMocks/variables/MOCKS.md delete mode 100644 docs/docs/auto-docs/screens/OrganizationFunds/OrganizationFundsMocks/variables/MOCKS_ERROR.md delete mode 100644 docs/docs/auto-docs/screens/OrganizationFunds/OrganizationFundsMocks/variables/NO_FUNDS.md delete mode 100644 docs/docs/auto-docs/screens/OrganizationPeople/AddMember/README.md delete mode 100644 docs/docs/auto-docs/screens/OrganizationPeople/AddMember/functions/default.md delete mode 100644 docs/docs/auto-docs/screens/OrganizationPeople/MockDataTypes/README.md delete mode 100644 docs/docs/auto-docs/screens/OrganizationPeople/MockDataTypes/type-aliases/TestMock.md delete mode 100644 docs/docs/auto-docs/screens/OrganizationPeople/OrganizationPeople/README.md delete mode 100644 docs/docs/auto-docs/screens/OrganizationPeople/OrganizationPeople/functions/default.md delete mode 100644 docs/docs/auto-docs/screens/OrganizationTags/OrganizationTags/README.md delete mode 100644 docs/docs/auto-docs/screens/OrganizationTags/OrganizationTags/functions/default.md delete mode 100644 docs/docs/auto-docs/screens/OrganizationTags/OrganizationTagsMocks/README.md delete mode 100644 docs/docs/auto-docs/screens/OrganizationTags/OrganizationTagsMocks/variables/MOCKS.md delete mode 100644 docs/docs/auto-docs/screens/OrganizationTags/OrganizationTagsMocks/variables/MOCKS_ERROR.md delete mode 100644 docs/docs/auto-docs/screens/OrganizationVenues/OrganizationVenues/README.md delete mode 100644 docs/docs/auto-docs/screens/OrganizationVenues/OrganizationVenues/functions/default.md delete mode 100644 docs/docs/auto-docs/screens/PageNotFound/PageNotFound/README.md delete mode 100644 docs/docs/auto-docs/screens/PageNotFound/PageNotFound/functions/default.md delete mode 100644 docs/docs/auto-docs/screens/Requests/Requests/README.md delete mode 100644 docs/docs/auto-docs/screens/Requests/Requests/functions/default.md delete mode 100644 docs/docs/auto-docs/screens/Requests/RequestsMocks/README.md delete mode 100644 docs/docs/auto-docs/screens/Requests/RequestsMocks/variables/EMPTY_MOCKS.md delete mode 100644 docs/docs/auto-docs/screens/Requests/RequestsMocks/variables/EMPTY_REQUEST_MOCKS.md delete mode 100644 docs/docs/auto-docs/screens/Requests/RequestsMocks/variables/MOCKS.md delete mode 100644 docs/docs/auto-docs/screens/Requests/RequestsMocks/variables/MOCKS2.md delete mode 100644 docs/docs/auto-docs/screens/Requests/RequestsMocks/variables/MOCKS3.md delete mode 100644 docs/docs/auto-docs/screens/Requests/RequestsMocks/variables/MOCKS4.md delete mode 100644 docs/docs/auto-docs/screens/Requests/RequestsMocks/variables/MOCKS_WITH_ERROR.md delete mode 100644 docs/docs/auto-docs/screens/SubTags/SubTags/README.md delete mode 100644 docs/docs/auto-docs/screens/SubTags/SubTags/functions/default.md delete mode 100644 docs/docs/auto-docs/screens/SubTags/SubTagsMocks/README.md delete mode 100644 docs/docs/auto-docs/screens/SubTags/SubTagsMocks/variables/MOCKS.md delete mode 100644 docs/docs/auto-docs/screens/SubTags/SubTagsMocks/variables/MOCKS_ERROR_SUB_TAGS.md delete mode 100644 docs/docs/auto-docs/screens/UserPortal/Campaigns/Campaigns/README.md delete mode 100644 docs/docs/auto-docs/screens/UserPortal/Campaigns/Campaigns/functions/default.md delete mode 100644 docs/docs/auto-docs/screens/UserPortal/Campaigns/CampaignsMocks/README.md delete mode 100644 docs/docs/auto-docs/screens/UserPortal/Campaigns/CampaignsMocks/variables/EMPTY_MOCKS.md delete mode 100644 docs/docs/auto-docs/screens/UserPortal/Campaigns/CampaignsMocks/variables/MOCKS.md delete mode 100644 docs/docs/auto-docs/screens/UserPortal/Campaigns/CampaignsMocks/variables/USER_FUND_CAMPAIGNS_ERROR.md delete mode 100644 docs/docs/auto-docs/screens/UserPortal/Campaigns/PledgeModal/README.md delete mode 100644 docs/docs/auto-docs/screens/UserPortal/Campaigns/PledgeModal/functions/default.md delete mode 100644 docs/docs/auto-docs/screens/UserPortal/Campaigns/PledgeModal/interfaces/InterfacePledgeModal.md delete mode 100644 docs/docs/auto-docs/screens/UserPortal/Chat/Chat/README.md delete mode 100644 docs/docs/auto-docs/screens/UserPortal/Chat/Chat/functions/default.md delete mode 100644 docs/docs/auto-docs/screens/UserPortal/Donate/Donate/README.md delete mode 100644 docs/docs/auto-docs/screens/UserPortal/Donate/Donate/functions/default.md delete mode 100644 docs/docs/auto-docs/screens/UserPortal/Donate/Donate/interfaces/InterfaceDonationCardProps.md delete mode 100644 docs/docs/auto-docs/screens/UserPortal/Events/Events/README.md delete mode 100644 docs/docs/auto-docs/screens/UserPortal/Events/Events/functions/default.md delete mode 100644 docs/docs/auto-docs/screens/UserPortal/LeaveOrganization/LeaveOrganization/README.md delete mode 100644 docs/docs/auto-docs/screens/UserPortal/LeaveOrganization/LeaveOrganization/functions/default.md delete mode 100644 docs/docs/auto-docs/screens/UserPortal/LeaveOrganization/LeaveOrganization/variables/userEmail.md delete mode 100644 docs/docs/auto-docs/screens/UserPortal/LeaveOrganization/LeaveOrganization/variables/userId.md delete mode 100644 docs/docs/auto-docs/screens/UserPortal/Organizations/Organizations/README.md delete mode 100644 docs/docs/auto-docs/screens/UserPortal/Organizations/Organizations/functions/default.md delete mode 100644 docs/docs/auto-docs/screens/UserPortal/People/People/README.md delete mode 100644 docs/docs/auto-docs/screens/UserPortal/People/People/functions/default.md delete mode 100644 docs/docs/auto-docs/screens/UserPortal/Pledges/Pledges/README.md delete mode 100644 docs/docs/auto-docs/screens/UserPortal/Pledges/Pledges/functions/default.md delete mode 100644 docs/docs/auto-docs/screens/UserPortal/Pledges/PledgesMocks/README.md delete mode 100644 docs/docs/auto-docs/screens/UserPortal/Pledges/PledgesMocks/variables/EMPTY_MOCKS.md delete mode 100644 docs/docs/auto-docs/screens/UserPortal/Pledges/PledgesMocks/variables/MOCKS.md delete mode 100644 docs/docs/auto-docs/screens/UserPortal/Pledges/PledgesMocks/variables/USER_PLEDGES_ERROR.md delete mode 100644 docs/docs/auto-docs/screens/UserPortal/Posts/Posts/README.md delete mode 100644 docs/docs/auto-docs/screens/UserPortal/Posts/Posts/functions/default.md delete mode 100644 docs/docs/auto-docs/screens/UserPortal/Settings/Settings/README.md delete mode 100644 docs/docs/auto-docs/screens/UserPortal/Settings/Settings/functions/default.md delete mode 100644 docs/docs/auto-docs/screens/UserPortal/UserScreen/UserScreen/README.md delete mode 100644 docs/docs/auto-docs/screens/UserPortal/UserScreen/UserScreen/functions/default.md delete mode 100644 docs/docs/auto-docs/screens/UserPortal/Volunteer/Actions/Actions.mocks/README.md delete mode 100644 docs/docs/auto-docs/screens/UserPortal/Volunteer/Actions/Actions.mocks/variables/EMPTY_MOCKS.md delete mode 100644 docs/docs/auto-docs/screens/UserPortal/Volunteer/Actions/Actions.mocks/variables/ERROR_MOCKS.md delete mode 100644 docs/docs/auto-docs/screens/UserPortal/Volunteer/Actions/Actions.mocks/variables/MOCKS.md delete mode 100644 docs/docs/auto-docs/screens/UserPortal/Volunteer/Actions/Actions/README.md delete mode 100644 docs/docs/auto-docs/screens/UserPortal/Volunteer/Actions/Actions/functions/default.md delete mode 100644 docs/docs/auto-docs/screens/UserPortal/Volunteer/Groups/GroupModal/README.md delete mode 100644 docs/docs/auto-docs/screens/UserPortal/Volunteer/Groups/GroupModal/functions/default.md delete mode 100644 docs/docs/auto-docs/screens/UserPortal/Volunteer/Groups/GroupModal/interfaces/InterfaceGroupModal.md delete mode 100644 docs/docs/auto-docs/screens/UserPortal/Volunteer/Groups/Groups.mocks/README.md delete mode 100644 docs/docs/auto-docs/screens/UserPortal/Volunteer/Groups/Groups.mocks/variables/EMPTY_MOCKS.md delete mode 100644 docs/docs/auto-docs/screens/UserPortal/Volunteer/Groups/Groups.mocks/variables/ERROR_MOCKS.md delete mode 100644 docs/docs/auto-docs/screens/UserPortal/Volunteer/Groups/Groups.mocks/variables/MOCKS.md delete mode 100644 docs/docs/auto-docs/screens/UserPortal/Volunteer/Groups/Groups.mocks/variables/UPDATE_ERROR_MOCKS.md delete mode 100644 docs/docs/auto-docs/screens/UserPortal/Volunteer/Groups/Groups/README.md delete mode 100644 docs/docs/auto-docs/screens/UserPortal/Volunteer/Groups/Groups/functions/default.md delete mode 100644 docs/docs/auto-docs/screens/UserPortal/Volunteer/Invitations/Invitations.mocks/README.md delete mode 100644 docs/docs/auto-docs/screens/UserPortal/Volunteer/Invitations/Invitations.mocks/variables/EMPTY_MOCKS.md delete mode 100644 docs/docs/auto-docs/screens/UserPortal/Volunteer/Invitations/Invitations.mocks/variables/ERROR_MOCKS.md delete mode 100644 docs/docs/auto-docs/screens/UserPortal/Volunteer/Invitations/Invitations.mocks/variables/MOCKS.md delete mode 100644 docs/docs/auto-docs/screens/UserPortal/Volunteer/Invitations/Invitations.mocks/variables/UPDATE_ERROR_MOCKS.md delete mode 100644 docs/docs/auto-docs/screens/UserPortal/Volunteer/Invitations/Invitations/README.md delete mode 100644 docs/docs/auto-docs/screens/UserPortal/Volunteer/Invitations/Invitations/functions/default.md delete mode 100644 docs/docs/auto-docs/screens/UserPortal/Volunteer/UpcomingEvents/UpcomingEvents.mocks/README.md delete mode 100644 docs/docs/auto-docs/screens/UserPortal/Volunteer/UpcomingEvents/UpcomingEvents.mocks/variables/CREATE_ERROR_MOCKS.md delete mode 100644 docs/docs/auto-docs/screens/UserPortal/Volunteer/UpcomingEvents/UpcomingEvents.mocks/variables/EMPTY_MOCKS.md delete mode 100644 docs/docs/auto-docs/screens/UserPortal/Volunteer/UpcomingEvents/UpcomingEvents.mocks/variables/ERROR_MOCKS.md delete mode 100644 docs/docs/auto-docs/screens/UserPortal/Volunteer/UpcomingEvents/UpcomingEvents.mocks/variables/MOCKS.md delete mode 100644 docs/docs/auto-docs/screens/UserPortal/Volunteer/UpcomingEvents/UpcomingEvents/README.md delete mode 100644 docs/docs/auto-docs/screens/UserPortal/Volunteer/UpcomingEvents/UpcomingEvents/functions/default.md delete mode 100644 docs/docs/auto-docs/screens/UserPortal/Volunteer/VolunteerManagement/README.md delete mode 100644 docs/docs/auto-docs/screens/UserPortal/Volunteer/VolunteerManagement/functions/default.md delete mode 100644 docs/docs/auto-docs/screens/Users/Users/README.md delete mode 100644 docs/docs/auto-docs/screens/Users/Users/functions/default.md delete mode 100644 docs/docs/auto-docs/screens/Users/UsersMocks/README.md delete mode 100644 docs/docs/auto-docs/screens/Users/UsersMocks/variables/EMPTY_MOCKS.md delete mode 100644 docs/docs/auto-docs/screens/Users/UsersMocks/variables/MOCKS.md delete mode 100644 docs/docs/auto-docs/screens/Users/UsersMocks/variables/MOCKS2.md delete mode 100644 docs/docs/auto-docs/setup/askAndSetDockerOption/askAndSetDockerOption/README.md delete mode 100644 docs/docs/auto-docs/setup/askAndSetDockerOption/askAndSetDockerOption/functions/default.md delete mode 100644 docs/docs/auto-docs/setup/askAndUpdatePort/askAndUpdatePort/README.md delete mode 100644 docs/docs/auto-docs/setup/askAndUpdatePort/askAndUpdatePort/functions/default.md delete mode 100644 docs/docs/auto-docs/setup/askForCustomPort/askForCustomPort/README.md delete mode 100644 docs/docs/auto-docs/setup/askForCustomPort/askForCustomPort/functions/askForCustomPort.md delete mode 100644 docs/docs/auto-docs/setup/askForCustomPort/askForCustomPort/functions/reservedPortWarning.md delete mode 100644 docs/docs/auto-docs/setup/askForCustomPort/askForCustomPort/functions/validatePort.md delete mode 100644 docs/docs/auto-docs/setup/askForDocker/askForDocker/README.md delete mode 100644 docs/docs/auto-docs/setup/askForDocker/askForDocker/functions/askAndUpdateTalawaApiUrl.md delete mode 100644 docs/docs/auto-docs/setup/askForDocker/askForDocker/functions/askForDocker.md delete mode 100644 docs/docs/auto-docs/setup/askForTalawaApiUrl/askForTalawaApiUrl/README.md delete mode 100644 docs/docs/auto-docs/setup/askForTalawaApiUrl/askForTalawaApiUrl/functions/askForTalawaApiUrl.md delete mode 100644 docs/docs/auto-docs/setup/checkConnection/checkConnection/README.md delete mode 100644 docs/docs/auto-docs/setup/checkConnection/checkConnection/functions/checkConnection.md delete mode 100644 docs/docs/auto-docs/setup/checkEnvFile/checkEnvFile/README.md delete mode 100644 docs/docs/auto-docs/setup/checkEnvFile/checkEnvFile/functions/checkEnvFile.md delete mode 100644 docs/docs/auto-docs/setup/updateEnvFile/updateEnvFile/README.md delete mode 100644 docs/docs/auto-docs/setup/updateEnvFile/updateEnvFile/functions/default.md delete mode 100644 docs/docs/auto-docs/setup/validateRecaptcha/validateRecaptcha/README.md delete mode 100644 docs/docs/auto-docs/setup/validateRecaptcha/validateRecaptcha/functions/validateRecaptcha.md delete mode 100644 docs/docs/auto-docs/setupTests/README.md delete mode 100644 docs/docs/auto-docs/state/README.md delete mode 100644 docs/docs/auto-docs/state/action-creators/README.md delete mode 100644 docs/docs/auto-docs/state/action-creators/functions/installPlugin.md delete mode 100644 docs/docs/auto-docs/state/action-creators/functions/removePlugin.md delete mode 100644 docs/docs/auto-docs/state/action-creators/functions/updateInstalled.md delete mode 100644 docs/docs/auto-docs/state/action-creators/functions/updatePluginLinks.md delete mode 100644 docs/docs/auto-docs/state/action-creators/functions/updateTargets.md delete mode 100644 docs/docs/auto-docs/state/helpers/Action/README.md delete mode 100644 docs/docs/auto-docs/state/helpers/Action/interfaces/InterfaceAction.md delete mode 100644 docs/docs/auto-docs/state/hooks/README.md delete mode 100644 docs/docs/auto-docs/state/hooks/functions/useAppDispatch.md delete mode 100644 docs/docs/auto-docs/state/reducers/README.md delete mode 100644 docs/docs/auto-docs/state/reducers/functions/reducers.md delete mode 100644 docs/docs/auto-docs/state/reducers/pluginReducer/README.md delete mode 100644 docs/docs/auto-docs/state/reducers/pluginReducer/functions/default.md delete mode 100644 docs/docs/auto-docs/state/reducers/routesReducer/README.md delete mode 100644 docs/docs/auto-docs/state/reducers/routesReducer/functions/default.md delete mode 100644 docs/docs/auto-docs/state/reducers/routesReducer/type-aliases/ComponentType.md delete mode 100644 docs/docs/auto-docs/state/reducers/routesReducer/type-aliases/SubTargetType.md delete mode 100644 docs/docs/auto-docs/state/reducers/routesReducer/type-aliases/TargetsType.md delete mode 100644 docs/docs/auto-docs/state/reducers/type-aliases/RootState.md delete mode 100644 docs/docs/auto-docs/state/reducers/userRoutesReducer/README.md delete mode 100644 docs/docs/auto-docs/state/reducers/userRoutesReducer/functions/default.md delete mode 100644 docs/docs/auto-docs/state/reducers/userRoutesReducer/type-aliases/ComponentType.md delete mode 100644 docs/docs/auto-docs/state/reducers/userRoutesReducer/type-aliases/SubTargetType.md delete mode 100644 docs/docs/auto-docs/state/reducers/userRoutesReducer/type-aliases/TargetsType.md delete mode 100644 docs/docs/auto-docs/state/store/README.md delete mode 100644 docs/docs/auto-docs/state/store/type-aliases/AppDispatch.md delete mode 100644 docs/docs/auto-docs/state/store/variables/store.md delete mode 100644 docs/docs/auto-docs/subComponents/SortingButton/README.md delete mode 100644 docs/docs/auto-docs/subComponents/SortingButton/functions/default.md delete mode 100644 docs/docs/auto-docs/utils/StaticMockLink/README.md delete mode 100644 docs/docs/auto-docs/utils/StaticMockLink/classes/StaticMockLink.md delete mode 100644 docs/docs/auto-docs/utils/StaticMockLink/functions/mockSingleLink.md delete mode 100644 docs/docs/auto-docs/utils/StaticMockLink/interfaces/InterfaceMockApolloLink.md delete mode 100644 docs/docs/auto-docs/utils/chartToPdf/README.md delete mode 100644 docs/docs/auto-docs/utils/chartToPdf/functions/exportDemographicsToCSV.md delete mode 100644 docs/docs/auto-docs/utils/chartToPdf/functions/exportToCSV.md delete mode 100644 docs/docs/auto-docs/utils/chartToPdf/functions/exportTrendsToCSV.md delete mode 100644 docs/docs/auto-docs/utils/convertToBase64/README.md delete mode 100644 docs/docs/auto-docs/utils/convertToBase64/functions/default.md delete mode 100644 docs/docs/auto-docs/utils/currency/README.md delete mode 100644 docs/docs/auto-docs/utils/currency/variables/currencyOptions.md delete mode 100644 docs/docs/auto-docs/utils/currency/variables/currencySymbols.md delete mode 100644 docs/docs/auto-docs/utils/dateFormatter/README.md delete mode 100644 docs/docs/auto-docs/utils/dateFormatter/functions/formatDate.md delete mode 100644 docs/docs/auto-docs/utils/errorHandler/README.md delete mode 100644 docs/docs/auto-docs/utils/errorHandler/functions/errorHandler.md delete mode 100644 docs/docs/auto-docs/utils/fieldTypes/README.md delete mode 100644 docs/docs/auto-docs/utils/fieldTypes/variables/default.md delete mode 100644 docs/docs/auto-docs/utils/formEnumFields/README.md delete mode 100644 docs/docs/auto-docs/utils/formEnumFields/variables/countryOptions.md delete mode 100644 docs/docs/auto-docs/utils/formEnumFields/variables/educationGradeEnum.md delete mode 100644 docs/docs/auto-docs/utils/formEnumFields/variables/employmentStatusEnum.md delete mode 100644 docs/docs/auto-docs/utils/formEnumFields/variables/genderEnum.md delete mode 100644 docs/docs/auto-docs/utils/formEnumFields/variables/maritalStatusEnum.md delete mode 100644 docs/docs/auto-docs/utils/formEnumFields/variables/userRoleEnum.md delete mode 100644 docs/docs/auto-docs/utils/getOrganizationId/README.md delete mode 100644 docs/docs/auto-docs/utils/getOrganizationId/functions/default.md delete mode 100644 docs/docs/auto-docs/utils/getRefreshToken/README.md delete mode 100644 docs/docs/auto-docs/utils/getRefreshToken/functions/refreshToken.md delete mode 100644 docs/docs/auto-docs/utils/i18n/README.md delete mode 100644 docs/docs/auto-docs/utils/i18nForTest/README.md delete mode 100644 docs/docs/auto-docs/utils/interfaces/README.md delete mode 100644 docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceActionItemCategoryInfo.md delete mode 100644 docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceActionItemCategoryList.md delete mode 100644 docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceActionItemInfo.md delete mode 100644 docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceActionItemList.md delete mode 100644 docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceAddOnSpotAttendeeProps.md delete mode 100644 docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceAddress.md delete mode 100644 docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceAgendaItemCategoryInfo.md delete mode 100644 docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceAgendaItemCategoryList.md delete mode 100644 docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceAgendaItemInfo.md delete mode 100644 docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceAgendaItemList.md delete mode 100644 docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceBaseEvent.md delete mode 100644 docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceCampaignInfo.md delete mode 100644 docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceCreateFund.md delete mode 100644 docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceCreatePledge.md delete mode 100644 docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceCreateVolunteerGroup.md delete mode 100644 docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceCustomFieldData.md delete mode 100644 docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceEventVolunteerInfo.md delete mode 100644 docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceFormData.md delete mode 100644 docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceFundInfo.md delete mode 100644 docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceMapType.md delete mode 100644 docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceMemberInfo.md delete mode 100644 docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceMembersList.md delete mode 100644 docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceOrgConnectionInfoType.md delete mode 100644 docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceOrgConnectionType.md delete mode 100644 docs/docs/auto-docs/utils/interfaces/interfaces/InterfacePledgeInfo.md delete mode 100644 docs/docs/auto-docs/utils/interfaces/interfaces/InterfacePostCard.md delete mode 100644 docs/docs/auto-docs/utils/interfaces/interfaces/InterfacePostForm.md delete mode 100644 docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceQueryBlockPageMemberListItem.md delete mode 100644 docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceQueryFundCampaignsPledges.md delete mode 100644 docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceQueryMembershipRequestsListItem.md delete mode 100644 docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceQueryOrganizationAdvertisementListItem.md delete mode 100644 docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceQueryOrganizationEventListItem.md delete mode 100644 docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceQueryOrganizationFundCampaigns.md delete mode 100644 docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceQueryOrganizationListObject.md delete mode 100644 docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceQueryOrganizationPostListItem.md delete mode 100644 docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceQueryOrganizationUserTags.md delete mode 100644 docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceQueryOrganizationsListObject.md delete mode 100644 docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceQueryUserListItem.md delete mode 100644 docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceQueryUserTagChildTags.md delete mode 100644 docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceQueryUserTagsAssignedMembers.md delete mode 100644 docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceQueryUserTagsMembersToAssignTo.md delete mode 100644 docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceQueryVenueListItem.md delete mode 100644 docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceTagData.md delete mode 100644 docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceUserCampaign.md delete mode 100644 docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceUserEvents.md delete mode 100644 docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceUserInfo.md delete mode 100644 docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceUserType.md delete mode 100644 docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceVolunteerGroupInfo.md delete mode 100644 docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceVolunteerMembership.md delete mode 100644 docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceVolunteerRank.md delete mode 100644 docs/docs/auto-docs/utils/languages/README.md delete mode 100644 docs/docs/auto-docs/utils/languages/variables/languageArray.md delete mode 100644 docs/docs/auto-docs/utils/languages/variables/languages.md delete mode 100644 docs/docs/auto-docs/utils/linkValidator/README.md delete mode 100644 docs/docs/auto-docs/utils/linkValidator/functions/isValidLink.md delete mode 100644 docs/docs/auto-docs/utils/organizationTagsUtils/README.md delete mode 100644 docs/docs/auto-docs/utils/organizationTagsUtils/interfaces/InterfaceOrganizationSubTagsQuery.md delete mode 100644 docs/docs/auto-docs/utils/organizationTagsUtils/interfaces/InterfaceOrganizationTagsQuery.md delete mode 100644 docs/docs/auto-docs/utils/organizationTagsUtils/interfaces/InterfaceTagAssignedMembersQuery.md delete mode 100644 docs/docs/auto-docs/utils/organizationTagsUtils/interfaces/InterfaceTagUsersToAssignToQuery.md delete mode 100644 docs/docs/auto-docs/utils/organizationTagsUtils/type-aliases/SortedByType.md delete mode 100644 docs/docs/auto-docs/utils/organizationTagsUtils/type-aliases/TagActionType.md delete mode 100644 docs/docs/auto-docs/utils/organizationTagsUtils/variables/TAGS_QUERY_DATA_CHUNK_SIZE.md delete mode 100644 docs/docs/auto-docs/utils/organizationTagsUtils/variables/dataGridStyle.md delete mode 100644 docs/docs/auto-docs/utils/recurrenceUtils/README.md delete mode 100644 docs/docs/auto-docs/utils/recurrenceUtils/recurrenceConstants/README.md delete mode 100644 docs/docs/auto-docs/utils/recurrenceUtils/recurrenceConstants/variables/Days.md delete mode 100644 docs/docs/auto-docs/utils/recurrenceUtils/recurrenceConstants/variables/allInstances.md delete mode 100644 docs/docs/auto-docs/utils/recurrenceUtils/recurrenceConstants/variables/dayNames.md delete mode 100644 docs/docs/auto-docs/utils/recurrenceUtils/recurrenceConstants/variables/daysOptions.md delete mode 100644 docs/docs/auto-docs/utils/recurrenceUtils/recurrenceConstants/variables/endsAfter.md delete mode 100644 docs/docs/auto-docs/utils/recurrenceUtils/recurrenceConstants/variables/endsNever.md delete mode 100644 docs/docs/auto-docs/utils/recurrenceUtils/recurrenceConstants/variables/endsOn.md delete mode 100644 docs/docs/auto-docs/utils/recurrenceUtils/recurrenceConstants/variables/frequencies.md delete mode 100644 docs/docs/auto-docs/utils/recurrenceUtils/recurrenceConstants/variables/mondayToFriday.md delete mode 100644 docs/docs/auto-docs/utils/recurrenceUtils/recurrenceConstants/variables/monthNames.md delete mode 100644 docs/docs/auto-docs/utils/recurrenceUtils/recurrenceConstants/variables/recurrenceEndOptions.md delete mode 100644 docs/docs/auto-docs/utils/recurrenceUtils/recurrenceConstants/variables/recurringEventMutationOptions.md delete mode 100644 docs/docs/auto-docs/utils/recurrenceUtils/recurrenceConstants/variables/thisAndFollowingInstances.md delete mode 100644 docs/docs/auto-docs/utils/recurrenceUtils/recurrenceConstants/variables/thisInstance.md delete mode 100644 docs/docs/auto-docs/utils/recurrenceUtils/recurrenceConstants/variables/weekDayOccurences.md delete mode 100644 docs/docs/auto-docs/utils/recurrenceUtils/recurrenceTypes/README.md delete mode 100644 docs/docs/auto-docs/utils/recurrenceUtils/recurrenceTypes/enumerations/Frequency.md delete mode 100644 docs/docs/auto-docs/utils/recurrenceUtils/recurrenceTypes/enumerations/RecurrenceEndOption.md delete mode 100644 docs/docs/auto-docs/utils/recurrenceUtils/recurrenceTypes/enumerations/RecurringEventMutationType.md delete mode 100644 docs/docs/auto-docs/utils/recurrenceUtils/recurrenceTypes/enumerations/WeekDays.md delete mode 100644 docs/docs/auto-docs/utils/recurrenceUtils/recurrenceTypes/interfaces/InterfaceRecurrenceRule.md delete mode 100644 docs/docs/auto-docs/utils/recurrenceUtils/recurrenceTypes/interfaces/InterfaceRecurrenceRuleState.md delete mode 100644 docs/docs/auto-docs/utils/recurrenceUtils/recurrenceUtilityFunctions/README.md delete mode 100644 docs/docs/auto-docs/utils/recurrenceUtils/recurrenceUtilityFunctions/functions/getRecurrenceRuleText.md delete mode 100644 docs/docs/auto-docs/utils/recurrenceUtils/recurrenceUtilityFunctions/functions/getWeekDayOccurenceInMonth.md delete mode 100644 docs/docs/auto-docs/utils/recurrenceUtils/recurrenceUtilityFunctions/functions/hasRecurrenceRuleChanged.md delete mode 100644 docs/docs/auto-docs/utils/recurrenceUtils/recurrenceUtilityFunctions/functions/haveInstanceDatesChanged.md delete mode 100644 docs/docs/auto-docs/utils/recurrenceUtils/recurrenceUtilityFunctions/functions/isLastOccurenceOfWeekDay.md delete mode 100644 docs/docs/auto-docs/utils/timezoneUtils/README.md delete mode 100644 docs/docs/auto-docs/utils/timezoneUtils/dateTimeConfig/README.md delete mode 100644 docs/docs/auto-docs/utils/timezoneUtils/dateTimeConfig/variables/dateTimeFields.md delete mode 100644 docs/docs/auto-docs/utils/timezoneUtils/dateTimeMiddleware/README.md delete mode 100644 docs/docs/auto-docs/utils/timezoneUtils/dateTimeMiddleware/variables/requestMiddleware.md delete mode 100644 docs/docs/auto-docs/utils/timezoneUtils/dateTimeMiddleware/variables/responseMiddleware.md delete mode 100644 docs/docs/auto-docs/utils/useLocalstorage/README.md delete mode 100644 docs/docs/auto-docs/utils/useLocalstorage/functions/getItem.md delete mode 100644 docs/docs/auto-docs/utils/useLocalstorage/functions/getStorageKey.md delete mode 100644 docs/docs/auto-docs/utils/useLocalstorage/functions/removeItem.md delete mode 100644 docs/docs/auto-docs/utils/useLocalstorage/functions/setItem.md delete mode 100644 docs/docs/auto-docs/utils/useLocalstorage/functions/useLocalStorage.md delete mode 100644 docs/docs/auto-docs/utils/useSession/README.md delete mode 100644 docs/docs/auto-docs/utils/useSession/functions/default.md diff --git a/.github/workflows/push.yml b/.github/workflows/push.yml index 7f7328b38c..029cca7c07 100644 --- a/.github/workflows/push.yml +++ b/.github/workflows/push.yml @@ -14,8 +14,8 @@ name: PUSH Workflow - All Branches on: push: branches: - - '**' - + - '**' + env: CODECOV_UNIQUE_NAME: CODECOV_UNIQUE_NAME-${{ github.run_id }}-${{ github.run_number }} @@ -60,3 +60,36 @@ jobs: gcov_ignore: 'docs/' fail_ci_if_error: false name: '${{env.CODECOV_UNIQUE_NAME}}' + + Generate-Docs: + name: Generate Documentation + runs-on: ubuntu-latest + permissions: + contents: write + steps: + - name: Checkout repository + uses: actions/checkout@v4 + with: + ref: ${{ github.head_ref || github.ref_name }} + + - name: Install dependencies + run: npm install + + - name: Generate documentation + run: typedoc --out docs/docs/auto-docs --plugin typedoc-plugin-markdown --theme markdown --tsconfig tsconfig.docs.json --excludePrivate --excludeProtected --excludeExternals --hideGenerator --categorizeByGroup true --entryPointStrategy expand --entryPoints \"src\" --exclude \"src/vite-env.d.ts\" --exclude \"**/*.spec.{ts,tsx}\" --exclude \"**/*.test.{ts,tsx}\" --exclude \"**/__tests__/**\" --exclude \"**/__mocks__/**\" --skipErrorChecking --logLevel Warn" + + - name: Clean up documentation + run: | + find docs/docs/auto-docs -name 'README.md' -delete + find docs/docs/auto-docs -name '_media' -exec rm -r {} + + find docs/docs/auto-docs -type d -empty -delete + + - name: Commit and push changes + run: | + git config user.name "github-actions[bot]" + git config user.email "41898282+github-actions[bot]@users.noreply.github.com" + git add . + git commit -m "Auto-generate documentation" + git push + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} diff --git a/.husky/pre-commit b/.husky/pre-commit index 0735211004..8a0ce26aa2 100755 --- a/.husky/pre-commit +++ b/.husky/pre-commit @@ -1,8 +1,4 @@ -npm run generate-docs -find docs/docs/auto-docs -name 'README.md' -delete -npx rimraf docs/docs/auto-docs/_media -find docs/docs/auto-docs -type d -empty -delete npm run format:fix # npm run lint:fix npm run lint-staged diff --git a/docs/docs/auto-docs/App/README.md b/docs/docs/auto-docs/App/README.md deleted file mode 100644 index 9e85ae6693..0000000000 --- a/docs/docs/auto-docs/App/README.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../README.md) - -*** - -[talawa-admin](../modules.md) / App - -# App - -## Functions - -- [default](functions/default.md) diff --git a/docs/docs/auto-docs/App/functions/default.md b/docs/docs/auto-docs/App/functions/default.md deleted file mode 100644 index e1a17ee662..0000000000 --- a/docs/docs/auto-docs/App/functions/default.md +++ /dev/null @@ -1,31 +0,0 @@ -[**talawa-admin**](../../README.md) - -*** - -[talawa-admin](../../modules.md) / [App](../README.md) / default - -# Function: default() - -> **default**(): `JSX.Element` - -Defined in: [src/App.tsx:75](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/App.tsx#L75) - -This is the main function for our application. It sets up all the routes and components, -defining how the user can navigate through the app. The function uses React Router's `Routes` -and `Route` components to map different URL paths to corresponding screens and components. -THESE ARE THE DETAILS FOR THIS MAIN FUNCTION - -## Important Details -- **UseEffect Hook**: This hook checks user authentication status using the `CHECK_AUTH` GraphQL query. -- **Plugins**: It dynamically loads additional routes for any installed plugins. -- **Routes**: - - The root route ("/") takes the user to the `LoginPage`. - - Protected routes are wrapped with the `SecuredRoute` component to ensure they are only accessible to authenticated users. - - Admin and Super Admin routes allow access to organization and user management screens. - - User portal routes allow end-users to interact with organizations, settings, chat, events, etc. - -## Returns - -`JSX.Element` - -The rendered routes and components of the application. diff --git a/docs/docs/auto-docs/Constant/constant/README.md b/docs/docs/auto-docs/Constant/constant/README.md deleted file mode 100644 index db1085e257..0000000000 --- a/docs/docs/auto-docs/Constant/constant/README.md +++ /dev/null @@ -1,16 +0,0 @@ -[**talawa-admin**](../../README.md) - -*** - -[talawa-admin](../../modules.md) / Constant/constant - -# Constant/constant - -## Variables - -- [AUTH\_TOKEN](variables/AUTH_TOKEN.md) -- [BACKEND\_URL](variables/BACKEND_URL.md) -- [REACT\_APP\_BACKEND\_WEBSOCKET\_URL](variables/REACT_APP_BACKEND_WEBSOCKET_URL.md) -- [REACT\_APP\_CUSTOM\_PORT](variables/REACT_APP_CUSTOM_PORT.md) -- [REACT\_APP\_USE\_RECAPTCHA](variables/REACT_APP_USE_RECAPTCHA.md) -- [RECAPTCHA\_SITE\_KEY](variables/RECAPTCHA_SITE_KEY.md) diff --git a/docs/docs/auto-docs/Constant/constant/variables/AUTH_TOKEN.md b/docs/docs/auto-docs/Constant/constant/variables/AUTH_TOKEN.md deleted file mode 100644 index 5a9cac81a1..0000000000 --- a/docs/docs/auto-docs/Constant/constant/variables/AUTH_TOKEN.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / [Constant/constant](../README.md) / AUTH\_TOKEN - -# Variable: AUTH\_TOKEN - -> `const` **AUTH\_TOKEN**: `""` = `''` - -Defined in: [src/Constant/constant.ts:1](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/Constant/constant.ts#L1) diff --git a/docs/docs/auto-docs/Constant/constant/variables/BACKEND_URL.md b/docs/docs/auto-docs/Constant/constant/variables/BACKEND_URL.md deleted file mode 100644 index f6268ca698..0000000000 --- a/docs/docs/auto-docs/Constant/constant/variables/BACKEND_URL.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / [Constant/constant](../README.md) / BACKEND\_URL - -# Variable: BACKEND\_URL - -> `const` **BACKEND\_URL**: `undefined` \| `string` = `process.env.REACT_APP_TALAWA_URL` - -Defined in: [src/Constant/constant.ts:2](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/Constant/constant.ts#L2) diff --git a/docs/docs/auto-docs/Constant/constant/variables/REACT_APP_BACKEND_WEBSOCKET_URL.md b/docs/docs/auto-docs/Constant/constant/variables/REACT_APP_BACKEND_WEBSOCKET_URL.md deleted file mode 100644 index 992b0f534c..0000000000 --- a/docs/docs/auto-docs/Constant/constant/variables/REACT_APP_BACKEND_WEBSOCKET_URL.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / [Constant/constant](../README.md) / REACT\_APP\_BACKEND\_WEBSOCKET\_URL - -# Variable: REACT\_APP\_BACKEND\_WEBSOCKET\_URL - -> `const` **REACT\_APP\_BACKEND\_WEBSOCKET\_URL**: `string` - -Defined in: [src/Constant/constant.ts:6](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/Constant/constant.ts#L6) diff --git a/docs/docs/auto-docs/Constant/constant/variables/REACT_APP_CUSTOM_PORT.md b/docs/docs/auto-docs/Constant/constant/variables/REACT_APP_CUSTOM_PORT.md deleted file mode 100644 index c6c18f6a56..0000000000 --- a/docs/docs/auto-docs/Constant/constant/variables/REACT_APP_CUSTOM_PORT.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / [Constant/constant](../README.md) / REACT\_APP\_CUSTOM\_PORT - -# Variable: REACT\_APP\_CUSTOM\_PORT - -> `const` **REACT\_APP\_CUSTOM\_PORT**: `undefined` \| `string` = `process.env.PORT` - -Defined in: [src/Constant/constant.ts:5](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/Constant/constant.ts#L5) diff --git a/docs/docs/auto-docs/Constant/constant/variables/REACT_APP_USE_RECAPTCHA.md b/docs/docs/auto-docs/Constant/constant/variables/REACT_APP_USE_RECAPTCHA.md deleted file mode 100644 index 7129f257d9..0000000000 --- a/docs/docs/auto-docs/Constant/constant/variables/REACT_APP_USE_RECAPTCHA.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / [Constant/constant](../README.md) / REACT\_APP\_USE\_RECAPTCHA - -# Variable: REACT\_APP\_USE\_RECAPTCHA - -> `const` **REACT\_APP\_USE\_RECAPTCHA**: `undefined` \| `string` = `process.env.REACT_APP_USE_RECAPTCHA` - -Defined in: [src/Constant/constant.ts:4](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/Constant/constant.ts#L4) diff --git a/docs/docs/auto-docs/Constant/constant/variables/RECAPTCHA_SITE_KEY.md b/docs/docs/auto-docs/Constant/constant/variables/RECAPTCHA_SITE_KEY.md deleted file mode 100644 index f4d9042aec..0000000000 --- a/docs/docs/auto-docs/Constant/constant/variables/RECAPTCHA_SITE_KEY.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / [Constant/constant](../README.md) / RECAPTCHA\_SITE\_KEY - -# Variable: RECAPTCHA\_SITE\_KEY - -> `const` **RECAPTCHA\_SITE\_KEY**: `undefined` \| `string` = `process.env.REACT_APP_RECAPTCHA_SITE_KEY` - -Defined in: [src/Constant/constant.ts:3](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/Constant/constant.ts#L3) diff --git a/docs/docs/auto-docs/GraphQl/Mutations/ActionItemCategoryMutations/README.md b/docs/docs/auto-docs/GraphQl/Mutations/ActionItemCategoryMutations/README.md deleted file mode 100644 index 7a45a9c28a..0000000000 --- a/docs/docs/auto-docs/GraphQl/Mutations/ActionItemCategoryMutations/README.md +++ /dev/null @@ -1,12 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / GraphQl/Mutations/ActionItemCategoryMutations - -# GraphQl/Mutations/ActionItemCategoryMutations - -## Variables - -- [CREATE\_ACTION\_ITEM\_CATEGORY\_MUTATION](variables/CREATE_ACTION_ITEM_CATEGORY_MUTATION.md) -- [UPDATE\_ACTION\_ITEM\_CATEGORY\_MUTATION](variables/UPDATE_ACTION_ITEM_CATEGORY_MUTATION.md) diff --git a/docs/docs/auto-docs/GraphQl/Mutations/ActionItemCategoryMutations/variables/CREATE_ACTION_ITEM_CATEGORY_MUTATION.md b/docs/docs/auto-docs/GraphQl/Mutations/ActionItemCategoryMutations/variables/CREATE_ACTION_ITEM_CATEGORY_MUTATION.md deleted file mode 100644 index 14b50dba93..0000000000 --- a/docs/docs/auto-docs/GraphQl/Mutations/ActionItemCategoryMutations/variables/CREATE_ACTION_ITEM_CATEGORY_MUTATION.md +++ /dev/null @@ -1,25 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [GraphQl/Mutations/ActionItemCategoryMutations](../README.md) / CREATE\_ACTION\_ITEM\_CATEGORY\_MUTATION - -# Variable: CREATE\_ACTION\_ITEM\_CATEGORY\_MUTATION - -> `const` **CREATE\_ACTION\_ITEM\_CATEGORY\_MUTATION**: `DocumentNode` - -Defined in: [src/GraphQl/Mutations/ActionItemCategoryMutations.ts:11](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/GraphQl/Mutations/ActionItemCategoryMutations.ts#L11) - -GraphQL mutation to create an action item category. - -## Param - -Name of the ActionItemCategory. - -## Param - -Disabled status of the ActionItemCategory. - -## Param - -Organization to which the ActionItemCategory belongs. diff --git a/docs/docs/auto-docs/GraphQl/Mutations/ActionItemCategoryMutations/variables/UPDATE_ACTION_ITEM_CATEGORY_MUTATION.md b/docs/docs/auto-docs/GraphQl/Mutations/ActionItemCategoryMutations/variables/UPDATE_ACTION_ITEM_CATEGORY_MUTATION.md deleted file mode 100644 index 6df43f657a..0000000000 --- a/docs/docs/auto-docs/GraphQl/Mutations/ActionItemCategoryMutations/variables/UPDATE_ACTION_ITEM_CATEGORY_MUTATION.md +++ /dev/null @@ -1,25 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [GraphQl/Mutations/ActionItemCategoryMutations](../README.md) / UPDATE\_ACTION\_ITEM\_CATEGORY\_MUTATION - -# Variable: UPDATE\_ACTION\_ITEM\_CATEGORY\_MUTATION - -> `const` **UPDATE\_ACTION\_ITEM\_CATEGORY\_MUTATION**: `DocumentNode` - -Defined in: [src/GraphQl/Mutations/ActionItemCategoryMutations.ts:35](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/GraphQl/Mutations/ActionItemCategoryMutations.ts#L35) - -GraphQL mutation to update an action item category. - -## Param - -The id of the ActionItemCategory to be updated. - -## Param - -Updated name of the ActionItemCategory. - -## Param - -Updated disabled status of the ActionItemCategory. diff --git a/docs/docs/auto-docs/GraphQl/Mutations/ActionItemMutations/README.md b/docs/docs/auto-docs/GraphQl/Mutations/ActionItemMutations/README.md deleted file mode 100644 index 999442ffe6..0000000000 --- a/docs/docs/auto-docs/GraphQl/Mutations/ActionItemMutations/README.md +++ /dev/null @@ -1,13 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / GraphQl/Mutations/ActionItemMutations - -# GraphQl/Mutations/ActionItemMutations - -## Variables - -- [CREATE\_ACTION\_ITEM\_MUTATION](variables/CREATE_ACTION_ITEM_MUTATION.md) -- [DELETE\_ACTION\_ITEM\_MUTATION](variables/DELETE_ACTION_ITEM_MUTATION.md) -- [UPDATE\_ACTION\_ITEM\_MUTATION](variables/UPDATE_ACTION_ITEM_MUTATION.md) diff --git a/docs/docs/auto-docs/GraphQl/Mutations/ActionItemMutations/variables/CREATE_ACTION_ITEM_MUTATION.md b/docs/docs/auto-docs/GraphQl/Mutations/ActionItemMutations/variables/CREATE_ACTION_ITEM_MUTATION.md deleted file mode 100644 index df5254f4ee..0000000000 --- a/docs/docs/auto-docs/GraphQl/Mutations/ActionItemMutations/variables/CREATE_ACTION_ITEM_MUTATION.md +++ /dev/null @@ -1,37 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [GraphQl/Mutations/ActionItemMutations](../README.md) / CREATE\_ACTION\_ITEM\_MUTATION - -# Variable: CREATE\_ACTION\_ITEM\_MUTATION - -> `const` **CREATE\_ACTION\_ITEM\_MUTATION**: `DocumentNode` - -Defined in: [src/GraphQl/Mutations/ActionItemMutations.ts:14](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/GraphQl/Mutations/ActionItemMutations.ts#L14) - -GraphQL mutation to create an action item. - -## Param - -ActionItemCategory to which the ActionItem is related. - -## Param - -User to whom the ActionItem is assigned. - -## Param - -Notes prior to completion. - -## Param - -Due date. - -## Param - -Event to which the ActionItem is related. - -## Param - -Hours allotted for the ActionItem. diff --git a/docs/docs/auto-docs/GraphQl/Mutations/ActionItemMutations/variables/DELETE_ACTION_ITEM_MUTATION.md b/docs/docs/auto-docs/GraphQl/Mutations/ActionItemMutations/variables/DELETE_ACTION_ITEM_MUTATION.md deleted file mode 100644 index 38bf040b44..0000000000 --- a/docs/docs/auto-docs/GraphQl/Mutations/ActionItemMutations/variables/DELETE_ACTION_ITEM_MUTATION.md +++ /dev/null @@ -1,17 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [GraphQl/Mutations/ActionItemMutations](../README.md) / DELETE\_ACTION\_ITEM\_MUTATION - -# Variable: DELETE\_ACTION\_ITEM\_MUTATION - -> `const` **DELETE\_ACTION\_ITEM\_MUTATION**: `DocumentNode` - -Defined in: [src/GraphQl/Mutations/ActionItemMutations.ts:88](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/GraphQl/Mutations/ActionItemMutations.ts#L88) - -GraphQL mutation to delete an action item. - -## Param - -Id of the ActionItem to be updated. diff --git a/docs/docs/auto-docs/GraphQl/Mutations/ActionItemMutations/variables/UPDATE_ACTION_ITEM_MUTATION.md b/docs/docs/auto-docs/GraphQl/Mutations/ActionItemMutations/variables/UPDATE_ACTION_ITEM_MUTATION.md deleted file mode 100644 index 296288c672..0000000000 --- a/docs/docs/auto-docs/GraphQl/Mutations/ActionItemMutations/variables/UPDATE_ACTION_ITEM_MUTATION.md +++ /dev/null @@ -1,41 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [GraphQl/Mutations/ActionItemMutations](../README.md) / UPDATE\_ACTION\_ITEM\_MUTATION - -# Variable: UPDATE\_ACTION\_ITEM\_MUTATION - -> `const` **UPDATE\_ACTION\_ITEM\_MUTATION**: `DocumentNode` - -Defined in: [src/GraphQl/Mutations/ActionItemMutations.ts:52](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/GraphQl/Mutations/ActionItemMutations.ts#L52) - -GraphQL mutation to update an action item. - -## Param - -Id of the ActionItem to be updated. - -## Param - -User to whom the ActionItem is assigned. - -## Param - -Notes prior to completion. - -## Param - -Notes on completion. - -## Param - -Due date. - -## Param - -Completion date. - -## Param - -Whether the ActionItem has been completed. diff --git a/docs/docs/auto-docs/GraphQl/Mutations/AgendaCategoryMutations/README.md b/docs/docs/auto-docs/GraphQl/Mutations/AgendaCategoryMutations/README.md deleted file mode 100644 index 73883a2355..0000000000 --- a/docs/docs/auto-docs/GraphQl/Mutations/AgendaCategoryMutations/README.md +++ /dev/null @@ -1,13 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / GraphQl/Mutations/AgendaCategoryMutations - -# GraphQl/Mutations/AgendaCategoryMutations - -## Variables - -- [CREATE\_AGENDA\_ITEM\_CATEGORY\_MUTATION](variables/CREATE_AGENDA_ITEM_CATEGORY_MUTATION.md) -- [DELETE\_AGENDA\_ITEM\_CATEGORY\_MUTATION](variables/DELETE_AGENDA_ITEM_CATEGORY_MUTATION.md) -- [UPDATE\_AGENDA\_ITEM\_CATEGORY\_MUTATION](variables/UPDATE_AGENDA_ITEM_CATEGORY_MUTATION.md) diff --git a/docs/docs/auto-docs/GraphQl/Mutations/AgendaCategoryMutations/variables/CREATE_AGENDA_ITEM_CATEGORY_MUTATION.md b/docs/docs/auto-docs/GraphQl/Mutations/AgendaCategoryMutations/variables/CREATE_AGENDA_ITEM_CATEGORY_MUTATION.md deleted file mode 100644 index 9e9288246d..0000000000 --- a/docs/docs/auto-docs/GraphQl/Mutations/AgendaCategoryMutations/variables/CREATE_AGENDA_ITEM_CATEGORY_MUTATION.md +++ /dev/null @@ -1,17 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [GraphQl/Mutations/AgendaCategoryMutations](../README.md) / CREATE\_AGENDA\_ITEM\_CATEGORY\_MUTATION - -# Variable: CREATE\_AGENDA\_ITEM\_CATEGORY\_MUTATION - -> `const` **CREATE\_AGENDA\_ITEM\_CATEGORY\_MUTATION**: `DocumentNode` - -Defined in: [src/GraphQl/Mutations/AgendaCategoryMutations.ts:9](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/GraphQl/Mutations/AgendaCategoryMutations.ts#L9) - -GraphQL mutation to create an agenda category. - -## Param - -Name, Description, OrganizationID of the AgendaCategory. diff --git a/docs/docs/auto-docs/GraphQl/Mutations/AgendaCategoryMutations/variables/DELETE_AGENDA_ITEM_CATEGORY_MUTATION.md b/docs/docs/auto-docs/GraphQl/Mutations/AgendaCategoryMutations/variables/DELETE_AGENDA_ITEM_CATEGORY_MUTATION.md deleted file mode 100644 index 848cf9f203..0000000000 --- a/docs/docs/auto-docs/GraphQl/Mutations/AgendaCategoryMutations/variables/DELETE_AGENDA_ITEM_CATEGORY_MUTATION.md +++ /dev/null @@ -1,17 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [GraphQl/Mutations/AgendaCategoryMutations](../README.md) / DELETE\_AGENDA\_ITEM\_CATEGORY\_MUTATION - -# Variable: DELETE\_AGENDA\_ITEM\_CATEGORY\_MUTATION - -> `const` **DELETE\_AGENDA\_ITEM\_CATEGORY\_MUTATION**: `DocumentNode` - -Defined in: [src/GraphQl/Mutations/AgendaCategoryMutations.ts:23](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/GraphQl/Mutations/AgendaCategoryMutations.ts#L23) - -GraphQL mutation to delete an agenda category. - -## Param - -The ID of the AgendaCategory to be deleted. diff --git a/docs/docs/auto-docs/GraphQl/Mutations/AgendaCategoryMutations/variables/UPDATE_AGENDA_ITEM_CATEGORY_MUTATION.md b/docs/docs/auto-docs/GraphQl/Mutations/AgendaCategoryMutations/variables/UPDATE_AGENDA_ITEM_CATEGORY_MUTATION.md deleted file mode 100644 index f624505d26..0000000000 --- a/docs/docs/auto-docs/GraphQl/Mutations/AgendaCategoryMutations/variables/UPDATE_AGENDA_ITEM_CATEGORY_MUTATION.md +++ /dev/null @@ -1,21 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [GraphQl/Mutations/AgendaCategoryMutations](../README.md) / UPDATE\_AGENDA\_ITEM\_CATEGORY\_MUTATION - -# Variable: UPDATE\_AGENDA\_ITEM\_CATEGORY\_MUTATION - -> `const` **UPDATE\_AGENDA\_ITEM\_CATEGORY\_MUTATION**: `DocumentNode` - -Defined in: [src/GraphQl/Mutations/AgendaCategoryMutations.ts:36](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/GraphQl/Mutations/AgendaCategoryMutations.ts#L36) - -GraphQL mutation to update an agenda category. - -## Param - -The ID of the AgendaCategory to be updated. - -## Param - -Updated Name, Description, OrganizationID of the AgendaCategory. diff --git a/docs/docs/auto-docs/GraphQl/Mutations/AgendaItemMutations/README.md b/docs/docs/auto-docs/GraphQl/Mutations/AgendaItemMutations/README.md deleted file mode 100644 index 2613bd3cdb..0000000000 --- a/docs/docs/auto-docs/GraphQl/Mutations/AgendaItemMutations/README.md +++ /dev/null @@ -1,13 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / GraphQl/Mutations/AgendaItemMutations - -# GraphQl/Mutations/AgendaItemMutations - -## Variables - -- [CREATE\_AGENDA\_ITEM\_MUTATION](variables/CREATE_AGENDA_ITEM_MUTATION.md) -- [DELETE\_AGENDA\_ITEM\_MUTATION](variables/DELETE_AGENDA_ITEM_MUTATION.md) -- [UPDATE\_AGENDA\_ITEM\_MUTATION](variables/UPDATE_AGENDA_ITEM_MUTATION.md) diff --git a/docs/docs/auto-docs/GraphQl/Mutations/AgendaItemMutations/variables/CREATE_AGENDA_ITEM_MUTATION.md b/docs/docs/auto-docs/GraphQl/Mutations/AgendaItemMutations/variables/CREATE_AGENDA_ITEM_MUTATION.md deleted file mode 100644 index a1024a1bca..0000000000 --- a/docs/docs/auto-docs/GraphQl/Mutations/AgendaItemMutations/variables/CREATE_AGENDA_ITEM_MUTATION.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [GraphQl/Mutations/AgendaItemMutations](../README.md) / CREATE\_AGENDA\_ITEM\_MUTATION - -# Variable: CREATE\_AGENDA\_ITEM\_MUTATION - -> `const` **CREATE\_AGENDA\_ITEM\_MUTATION**: `DocumentNode` - -Defined in: [src/GraphQl/Mutations/AgendaItemMutations.ts:3](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/GraphQl/Mutations/AgendaItemMutations.ts#L3) diff --git a/docs/docs/auto-docs/GraphQl/Mutations/AgendaItemMutations/variables/DELETE_AGENDA_ITEM_MUTATION.md b/docs/docs/auto-docs/GraphQl/Mutations/AgendaItemMutations/variables/DELETE_AGENDA_ITEM_MUTATION.md deleted file mode 100644 index 3196b58367..0000000000 --- a/docs/docs/auto-docs/GraphQl/Mutations/AgendaItemMutations/variables/DELETE_AGENDA_ITEM_MUTATION.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [GraphQl/Mutations/AgendaItemMutations](../README.md) / DELETE\_AGENDA\_ITEM\_MUTATION - -# Variable: DELETE\_AGENDA\_ITEM\_MUTATION - -> `const` **DELETE\_AGENDA\_ITEM\_MUTATION**: `DocumentNode` - -Defined in: [src/GraphQl/Mutations/AgendaItemMutations.ts:12](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/GraphQl/Mutations/AgendaItemMutations.ts#L12) diff --git a/docs/docs/auto-docs/GraphQl/Mutations/AgendaItemMutations/variables/UPDATE_AGENDA_ITEM_MUTATION.md b/docs/docs/auto-docs/GraphQl/Mutations/AgendaItemMutations/variables/UPDATE_AGENDA_ITEM_MUTATION.md deleted file mode 100644 index a2df9141cb..0000000000 --- a/docs/docs/auto-docs/GraphQl/Mutations/AgendaItemMutations/variables/UPDATE_AGENDA_ITEM_MUTATION.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [GraphQl/Mutations/AgendaItemMutations](../README.md) / UPDATE\_AGENDA\_ITEM\_MUTATION - -# Variable: UPDATE\_AGENDA\_ITEM\_MUTATION - -> `const` **UPDATE\_AGENDA\_ITEM\_MUTATION**: `DocumentNode` - -Defined in: [src/GraphQl/Mutations/AgendaItemMutations.ts:20](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/GraphQl/Mutations/AgendaItemMutations.ts#L20) diff --git a/docs/docs/auto-docs/GraphQl/Mutations/CampaignMutation/README.md b/docs/docs/auto-docs/GraphQl/Mutations/CampaignMutation/README.md deleted file mode 100644 index 0927d577f0..0000000000 --- a/docs/docs/auto-docs/GraphQl/Mutations/CampaignMutation/README.md +++ /dev/null @@ -1,12 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / GraphQl/Mutations/CampaignMutation - -# GraphQl/Mutations/CampaignMutation - -## Variables - -- [CREATE\_CAMPAIGN\_MUTATION](variables/CREATE_CAMPAIGN_MUTATION.md) -- [UPDATE\_CAMPAIGN\_MUTATION](variables/UPDATE_CAMPAIGN_MUTATION.md) diff --git a/docs/docs/auto-docs/GraphQl/Mutations/CampaignMutation/variables/CREATE_CAMPAIGN_MUTATION.md b/docs/docs/auto-docs/GraphQl/Mutations/CampaignMutation/variables/CREATE_CAMPAIGN_MUTATION.md deleted file mode 100644 index 9ef9a421c7..0000000000 --- a/docs/docs/auto-docs/GraphQl/Mutations/CampaignMutation/variables/CREATE_CAMPAIGN_MUTATION.md +++ /dev/null @@ -1,41 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [GraphQl/Mutations/CampaignMutation](../README.md) / CREATE\_CAMPAIGN\_MUTATION - -# Variable: CREATE\_CAMPAIGN\_MUTATION - -> `const` **CREATE\_CAMPAIGN\_MUTATION**: `DocumentNode` - -Defined in: [src/GraphQl/Mutations/CampaignMutation.ts:15](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/GraphQl/Mutations/CampaignMutation.ts#L15) - -GraphQL mutation to create a new fund Campaign. - -## Param - -The name of the fund. - -## Param - -The fund ID the campaign is associated with. - -## Param - -The funding goal of the campaign. - -## Param - -The start date of the campaign. - -## Param - -The end date of the campaign. - -## Param - -The currency of the campaign. - -## Returns - -The ID of the created campaign. diff --git a/docs/docs/auto-docs/GraphQl/Mutations/CampaignMutation/variables/UPDATE_CAMPAIGN_MUTATION.md b/docs/docs/auto-docs/GraphQl/Mutations/CampaignMutation/variables/UPDATE_CAMPAIGN_MUTATION.md deleted file mode 100644 index 46a3f9beec..0000000000 --- a/docs/docs/auto-docs/GraphQl/Mutations/CampaignMutation/variables/UPDATE_CAMPAIGN_MUTATION.md +++ /dev/null @@ -1,41 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [GraphQl/Mutations/CampaignMutation](../README.md) / UPDATE\_CAMPAIGN\_MUTATION - -# Variable: UPDATE\_CAMPAIGN\_MUTATION - -> `const` **UPDATE\_CAMPAIGN\_MUTATION**: `DocumentNode` - -Defined in: [src/GraphQl/Mutations/CampaignMutation.ts:53](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/GraphQl/Mutations/CampaignMutation.ts#L53) - -GraphQL mutation to update a fund Campaign. - -## Param - -The ID of the campaign being updated. - -## Param - -The name of the campaign. - -## Param - -The funding goal of the campaign. - -## Param - -The start date of the campaign. - -## Param - -The end date of the campaign. - -## Param - -The currency of the campaign. - -## Returns - -The ID of the updated campaign. diff --git a/docs/docs/auto-docs/GraphQl/Mutations/CommentMutations/README.md b/docs/docs/auto-docs/GraphQl/Mutations/CommentMutations/README.md deleted file mode 100644 index ca74abe9d3..0000000000 --- a/docs/docs/auto-docs/GraphQl/Mutations/CommentMutations/README.md +++ /dev/null @@ -1,13 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / GraphQl/Mutations/CommentMutations - -# GraphQl/Mutations/CommentMutations - -## Variables - -- [CREATE\_COMMENT\_POST](variables/CREATE_COMMENT_POST.md) -- [LIKE\_COMMENT](variables/LIKE_COMMENT.md) -- [UNLIKE\_COMMENT](variables/UNLIKE_COMMENT.md) diff --git a/docs/docs/auto-docs/GraphQl/Mutations/CommentMutations/variables/CREATE_COMMENT_POST.md b/docs/docs/auto-docs/GraphQl/Mutations/CommentMutations/variables/CREATE_COMMENT_POST.md deleted file mode 100644 index c545b78362..0000000000 --- a/docs/docs/auto-docs/GraphQl/Mutations/CommentMutations/variables/CREATE_COMMENT_POST.md +++ /dev/null @@ -1,25 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [GraphQl/Mutations/CommentMutations](../README.md) / CREATE\_COMMENT\_POST - -# Variable: CREATE\_COMMENT\_POST - -> `const` **CREATE\_COMMENT\_POST**: `DocumentNode` - -Defined in: [src/GraphQl/Mutations/CommentMutations.ts:11](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/GraphQl/Mutations/CommentMutations.ts#L11) - -GraphQL mutation to create a new comment on a post. - -## Param - -The text content of the comment. - -## Param - -The ID of the post to which the comment is being added. - -## Returns - -The created comment object. diff --git a/docs/docs/auto-docs/GraphQl/Mutations/CommentMutations/variables/LIKE_COMMENT.md b/docs/docs/auto-docs/GraphQl/Mutations/CommentMutations/variables/LIKE_COMMENT.md deleted file mode 100644 index c8f3a63266..0000000000 --- a/docs/docs/auto-docs/GraphQl/Mutations/CommentMutations/variables/LIKE_COMMENT.md +++ /dev/null @@ -1,21 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [GraphQl/Mutations/CommentMutations](../README.md) / LIKE\_COMMENT - -# Variable: LIKE\_COMMENT - -> `const` **LIKE\_COMMENT**: `DocumentNode` - -Defined in: [src/GraphQl/Mutations/CommentMutations.ts:37](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/GraphQl/Mutations/CommentMutations.ts#L37) - -GraphQL mutation to like a comment. - -## Param - -The ID of the comment to be liked. - -## Returns - -The liked comment object. diff --git a/docs/docs/auto-docs/GraphQl/Mutations/CommentMutations/variables/UNLIKE_COMMENT.md b/docs/docs/auto-docs/GraphQl/Mutations/CommentMutations/variables/UNLIKE_COMMENT.md deleted file mode 100644 index 4e2951d2c7..0000000000 --- a/docs/docs/auto-docs/GraphQl/Mutations/CommentMutations/variables/UNLIKE_COMMENT.md +++ /dev/null @@ -1,21 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [GraphQl/Mutations/CommentMutations](../README.md) / UNLIKE\_COMMENT - -# Variable: UNLIKE\_COMMENT - -> `const` **UNLIKE\_COMMENT**: `DocumentNode` - -Defined in: [src/GraphQl/Mutations/CommentMutations.ts:52](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/GraphQl/Mutations/CommentMutations.ts#L52) - -GraphQL mutation to unlike a comment. - -## Param - -The ID of the comment to be unliked. - -## Returns - -The unliked comment object. diff --git a/docs/docs/auto-docs/GraphQl/Mutations/EventAttendeeMutations/README.md b/docs/docs/auto-docs/GraphQl/Mutations/EventAttendeeMutations/README.md deleted file mode 100644 index 7ab9483240..0000000000 --- a/docs/docs/auto-docs/GraphQl/Mutations/EventAttendeeMutations/README.md +++ /dev/null @@ -1,13 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / GraphQl/Mutations/EventAttendeeMutations - -# GraphQl/Mutations/EventAttendeeMutations - -## Variables - -- [ADD\_EVENT\_ATTENDEE](variables/ADD_EVENT_ATTENDEE.md) -- [MARK\_CHECKIN](variables/MARK_CHECKIN.md) -- [REMOVE\_EVENT\_ATTENDEE](variables/REMOVE_EVENT_ATTENDEE.md) diff --git a/docs/docs/auto-docs/GraphQl/Mutations/EventAttendeeMutations/variables/ADD_EVENT_ATTENDEE.md b/docs/docs/auto-docs/GraphQl/Mutations/EventAttendeeMutations/variables/ADD_EVENT_ATTENDEE.md deleted file mode 100644 index 808ba39f4f..0000000000 --- a/docs/docs/auto-docs/GraphQl/Mutations/EventAttendeeMutations/variables/ADD_EVENT_ATTENDEE.md +++ /dev/null @@ -1,25 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [GraphQl/Mutations/EventAttendeeMutations](../README.md) / ADD\_EVENT\_ATTENDEE - -# Variable: ADD\_EVENT\_ATTENDEE - -> `const` **ADD\_EVENT\_ATTENDEE**: `DocumentNode` - -Defined in: [src/GraphQl/Mutations/EventAttendeeMutations.ts:11](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/GraphQl/Mutations/EventAttendeeMutations.ts#L11) - -GraphQL mutation to add an attendee to an event. - -## Param - -The ID of the user being added as an attendee. - -## Param - -The ID of the event to which the user is being added as an attendee. - -## Returns - -The updated event object with the added attendee. diff --git a/docs/docs/auto-docs/GraphQl/Mutations/EventAttendeeMutations/variables/MARK_CHECKIN.md b/docs/docs/auto-docs/GraphQl/Mutations/EventAttendeeMutations/variables/MARK_CHECKIN.md deleted file mode 100644 index 1e4c409166..0000000000 --- a/docs/docs/auto-docs/GraphQl/Mutations/EventAttendeeMutations/variables/MARK_CHECKIN.md +++ /dev/null @@ -1,25 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [GraphQl/Mutations/EventAttendeeMutations](../README.md) / MARK\_CHECKIN - -# Variable: MARK\_CHECKIN - -> `const` **MARK\_CHECKIN**: `DocumentNode` - -Defined in: [src/GraphQl/Mutations/EventAttendeeMutations.ts:43](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/GraphQl/Mutations/EventAttendeeMutations.ts#L43) - -GraphQL mutation to mark a user's check-in at an event. - -## Param - -The ID of the user checking in. - -## Param - -The ID of the event at which the user is checking in. - -## Returns - -The updated event object with the user's check-in information. diff --git a/docs/docs/auto-docs/GraphQl/Mutations/EventAttendeeMutations/variables/REMOVE_EVENT_ATTENDEE.md b/docs/docs/auto-docs/GraphQl/Mutations/EventAttendeeMutations/variables/REMOVE_EVENT_ATTENDEE.md deleted file mode 100644 index 1574107143..0000000000 --- a/docs/docs/auto-docs/GraphQl/Mutations/EventAttendeeMutations/variables/REMOVE_EVENT_ATTENDEE.md +++ /dev/null @@ -1,25 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [GraphQl/Mutations/EventAttendeeMutations](../README.md) / REMOVE\_EVENT\_ATTENDEE - -# Variable: REMOVE\_EVENT\_ATTENDEE - -> `const` **REMOVE\_EVENT\_ATTENDEE**: `DocumentNode` - -Defined in: [src/GraphQl/Mutations/EventAttendeeMutations.ts:27](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/GraphQl/Mutations/EventAttendeeMutations.ts#L27) - -GraphQL mutation to remove an attendee from an event. - -## Param - -The ID of the user being removed as an attendee. - -## Param - -The ID of the event from which the user is being removed as an attendee. - -## Returns - -The updated event object without the removed attendee. diff --git a/docs/docs/auto-docs/GraphQl/Mutations/EventVolunteerMutation/README.md b/docs/docs/auto-docs/GraphQl/Mutations/EventVolunteerMutation/README.md deleted file mode 100644 index 0d6a8f928c..0000000000 --- a/docs/docs/auto-docs/GraphQl/Mutations/EventVolunteerMutation/README.md +++ /dev/null @@ -1,17 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / GraphQl/Mutations/EventVolunteerMutation - -# GraphQl/Mutations/EventVolunteerMutation - -## Variables - -- [ADD\_VOLUNTEER](variables/ADD_VOLUNTEER.md) -- [CREATE\_VOLUNTEER\_GROUP](variables/CREATE_VOLUNTEER_GROUP.md) -- [CREATE\_VOLUNTEER\_MEMBERSHIP](variables/CREATE_VOLUNTEER_MEMBERSHIP.md) -- [DELETE\_VOLUNTEER](variables/DELETE_VOLUNTEER.md) -- [DELETE\_VOLUNTEER\_GROUP](variables/DELETE_VOLUNTEER_GROUP.md) -- [UPDATE\_VOLUNTEER\_GROUP](variables/UPDATE_VOLUNTEER_GROUP.md) -- [UPDATE\_VOLUNTEER\_MEMBERSHIP](variables/UPDATE_VOLUNTEER_MEMBERSHIP.md) diff --git a/docs/docs/auto-docs/GraphQl/Mutations/EventVolunteerMutation/variables/ADD_VOLUNTEER.md b/docs/docs/auto-docs/GraphQl/Mutations/EventVolunteerMutation/variables/ADD_VOLUNTEER.md deleted file mode 100644 index b65965e092..0000000000 --- a/docs/docs/auto-docs/GraphQl/Mutations/EventVolunteerMutation/variables/ADD_VOLUNTEER.md +++ /dev/null @@ -1,21 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [GraphQl/Mutations/EventVolunteerMutation](../README.md) / ADD\_VOLUNTEER - -# Variable: ADD\_VOLUNTEER - -> `const` **ADD\_VOLUNTEER**: `DocumentNode` - -Defined in: [src/GraphQl/Mutations/EventVolunteerMutation.ts:11](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/GraphQl/Mutations/EventVolunteerMutation.ts#L11) - -GraphQL mutation to create an event volunteer. - -## Param - -The data required to create an event volunteer. - -## Returns - -The ID of the created event volunteer. diff --git a/docs/docs/auto-docs/GraphQl/Mutations/EventVolunteerMutation/variables/CREATE_VOLUNTEER_GROUP.md b/docs/docs/auto-docs/GraphQl/Mutations/EventVolunteerMutation/variables/CREATE_VOLUNTEER_GROUP.md deleted file mode 100644 index c6081c0f6f..0000000000 --- a/docs/docs/auto-docs/GraphQl/Mutations/EventVolunteerMutation/variables/CREATE_VOLUNTEER_GROUP.md +++ /dev/null @@ -1,28 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [GraphQl/Mutations/EventVolunteerMutation](../README.md) / CREATE\_VOLUNTEER\_GROUP - -# Variable: CREATE\_VOLUNTEER\_GROUP - -> `const` **CREATE\_VOLUNTEER\_GROUP**: `DocumentNode` - -Defined in: [src/GraphQl/Mutations/EventVolunteerMutation.ts:48](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/GraphQl/Mutations/EventVolunteerMutation.ts#L48) - -GraphQL mutation to create an event volunteer group. - -## Param - -The data required to create an event volunteer group. - - data contains following fileds: - - eventId: string - - leaderId: string - - name: string - - description?: string - - volunteers: [string] - - volunteersRequired?: number - -## Returns - -The ID of the created event volunteer group. diff --git a/docs/docs/auto-docs/GraphQl/Mutations/EventVolunteerMutation/variables/CREATE_VOLUNTEER_MEMBERSHIP.md b/docs/docs/auto-docs/GraphQl/Mutations/EventVolunteerMutation/variables/CREATE_VOLUNTEER_MEMBERSHIP.md deleted file mode 100644 index dcdf31eb2b..0000000000 --- a/docs/docs/auto-docs/GraphQl/Mutations/EventVolunteerMutation/variables/CREATE_VOLUNTEER_MEMBERSHIP.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [GraphQl/Mutations/EventVolunteerMutation](../README.md) / CREATE\_VOLUNTEER\_MEMBERSHIP - -# Variable: CREATE\_VOLUNTEER\_MEMBERSHIP - -> `const` **CREATE\_VOLUNTEER\_MEMBERSHIP**: `DocumentNode` - -Defined in: [src/GraphQl/Mutations/EventVolunteerMutation.ts:90](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/GraphQl/Mutations/EventVolunteerMutation.ts#L90) diff --git a/docs/docs/auto-docs/GraphQl/Mutations/EventVolunteerMutation/variables/DELETE_VOLUNTEER.md b/docs/docs/auto-docs/GraphQl/Mutations/EventVolunteerMutation/variables/DELETE_VOLUNTEER.md deleted file mode 100644 index 776715ebb6..0000000000 --- a/docs/docs/auto-docs/GraphQl/Mutations/EventVolunteerMutation/variables/DELETE_VOLUNTEER.md +++ /dev/null @@ -1,21 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [GraphQl/Mutations/EventVolunteerMutation](../README.md) / DELETE\_VOLUNTEER - -# Variable: DELETE\_VOLUNTEER - -> `const` **DELETE\_VOLUNTEER**: `DocumentNode` - -Defined in: [src/GraphQl/Mutations/EventVolunteerMutation.ts:26](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/GraphQl/Mutations/EventVolunteerMutation.ts#L26) - -GraphQL mutation to delete an event volunteer. - -## Param - -The ID of the event volunteer being deleted. - -## Returns - -The ID of the deleted event volunteer. diff --git a/docs/docs/auto-docs/GraphQl/Mutations/EventVolunteerMutation/variables/DELETE_VOLUNTEER_GROUP.md b/docs/docs/auto-docs/GraphQl/Mutations/EventVolunteerMutation/variables/DELETE_VOLUNTEER_GROUP.md deleted file mode 100644 index 839c53b5be..0000000000 --- a/docs/docs/auto-docs/GraphQl/Mutations/EventVolunteerMutation/variables/DELETE_VOLUNTEER_GROUP.md +++ /dev/null @@ -1,21 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [GraphQl/Mutations/EventVolunteerMutation](../README.md) / DELETE\_VOLUNTEER\_GROUP - -# Variable: DELETE\_VOLUNTEER\_GROUP - -> `const` **DELETE\_VOLUNTEER\_GROUP**: `DocumentNode` - -Defined in: [src/GraphQl/Mutations/EventVolunteerMutation.ts:82](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/GraphQl/Mutations/EventVolunteerMutation.ts#L82) - -GraphQL mutation to delete an event volunteer group. - -## Param - -The ID of the event volunteer group being deleted. - -## Returns - -The ID of the deleted event volunteer group. diff --git a/docs/docs/auto-docs/GraphQl/Mutations/EventVolunteerMutation/variables/UPDATE_VOLUNTEER_GROUP.md b/docs/docs/auto-docs/GraphQl/Mutations/EventVolunteerMutation/variables/UPDATE_VOLUNTEER_GROUP.md deleted file mode 100644 index 01b7d814ef..0000000000 --- a/docs/docs/auto-docs/GraphQl/Mutations/EventVolunteerMutation/variables/UPDATE_VOLUNTEER_GROUP.md +++ /dev/null @@ -1,25 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [GraphQl/Mutations/EventVolunteerMutation](../README.md) / UPDATE\_VOLUNTEER\_GROUP - -# Variable: UPDATE\_VOLUNTEER\_GROUP - -> `const` **UPDATE\_VOLUNTEER\_GROUP**: `DocumentNode` - -Defined in: [src/GraphQl/Mutations/EventVolunteerMutation.ts:64](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/GraphQl/Mutations/EventVolunteerMutation.ts#L64) - -GraphQL mutation to update an event volunteer group. - -## Param - -The ID of the event volunteer group being updated. - -## Param - -The data required to update an event volunteer group. - -## Returns - -The ID of the updated event volunteer group. diff --git a/docs/docs/auto-docs/GraphQl/Mutations/EventVolunteerMutation/variables/UPDATE_VOLUNTEER_MEMBERSHIP.md b/docs/docs/auto-docs/GraphQl/Mutations/EventVolunteerMutation/variables/UPDATE_VOLUNTEER_MEMBERSHIP.md deleted file mode 100644 index 26ad786c5b..0000000000 --- a/docs/docs/auto-docs/GraphQl/Mutations/EventVolunteerMutation/variables/UPDATE_VOLUNTEER_MEMBERSHIP.md +++ /dev/null @@ -1,25 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [GraphQl/Mutations/EventVolunteerMutation](../README.md) / UPDATE\_VOLUNTEER\_MEMBERSHIP - -# Variable: UPDATE\_VOLUNTEER\_MEMBERSHIP - -> `const` **UPDATE\_VOLUNTEER\_MEMBERSHIP**: `DocumentNode` - -Defined in: [src/GraphQl/Mutations/EventVolunteerMutation.ts:106](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/GraphQl/Mutations/EventVolunteerMutation.ts#L106) - -GraphQL mutation to update an event volunteer group. - -## Param - -The ID of the event volunteer group being updated. - -## Param - -The data required to update an event volunteer group. - -## Returns - -The ID of the updated event volunteer group. diff --git a/docs/docs/auto-docs/GraphQl/Mutations/FundMutation/README.md b/docs/docs/auto-docs/GraphQl/Mutations/FundMutation/README.md deleted file mode 100644 index b44cfe6f2c..0000000000 --- a/docs/docs/auto-docs/GraphQl/Mutations/FundMutation/README.md +++ /dev/null @@ -1,12 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / GraphQl/Mutations/FundMutation - -# GraphQl/Mutations/FundMutation - -## Variables - -- [CREATE\_FUND\_MUTATION](variables/CREATE_FUND_MUTATION.md) -- [UPDATE\_FUND\_MUTATION](variables/UPDATE_FUND_MUTATION.md) diff --git a/docs/docs/auto-docs/GraphQl/Mutations/FundMutation/variables/CREATE_FUND_MUTATION.md b/docs/docs/auto-docs/GraphQl/Mutations/FundMutation/variables/CREATE_FUND_MUTATION.md deleted file mode 100644 index 602ef89b3f..0000000000 --- a/docs/docs/auto-docs/GraphQl/Mutations/FundMutation/variables/CREATE_FUND_MUTATION.md +++ /dev/null @@ -1,41 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [GraphQl/Mutations/FundMutation](../README.md) / CREATE\_FUND\_MUTATION - -# Variable: CREATE\_FUND\_MUTATION - -> `const` **CREATE\_FUND\_MUTATION**: `DocumentNode` - -Defined in: [src/GraphQl/Mutations/FundMutation.ts:14](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/GraphQl/Mutations/FundMutation.ts#L14) - -GraphQL mutation to create a new fund. - -## Param - -The name of the fund. - -## Param - -The organization ID the fund is associated with. - -## Param - -The reference number of the fund. - -## Param - -Whether the fund is tax deductible. - -## Param - -Whether the fund is archived. - -## Param - -Whether the fund is the default. - -## Returns - -The ID of the created fund. diff --git a/docs/docs/auto-docs/GraphQl/Mutations/FundMutation/variables/UPDATE_FUND_MUTATION.md b/docs/docs/auto-docs/GraphQl/Mutations/FundMutation/variables/UPDATE_FUND_MUTATION.md deleted file mode 100644 index 4da6fe6f9b..0000000000 --- a/docs/docs/auto-docs/GraphQl/Mutations/FundMutation/variables/UPDATE_FUND_MUTATION.md +++ /dev/null @@ -1,41 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [GraphQl/Mutations/FundMutation](../README.md) / UPDATE\_FUND\_MUTATION - -# Variable: UPDATE\_FUND\_MUTATION - -> `const` **UPDATE\_FUND\_MUTATION**: `DocumentNode` - -Defined in: [src/GraphQl/Mutations/FundMutation.ts:49](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/GraphQl/Mutations/FundMutation.ts#L49) - -GraphQL mutation to update a fund. - -## Param - -The ID of the fund being updated. - -## Param - -The name of the fund. - -## Param - -The reference number of the fund. - -## Param - -Whether the fund is tax deductible. - -## Param - -Whether the fund is archived. - -## Param - -Whether the fund is the default. - -## Returns - -The ID of the updated fund. diff --git a/docs/docs/auto-docs/GraphQl/Mutations/OrganizationMutations/README.md b/docs/docs/auto-docs/GraphQl/Mutations/OrganizationMutations/README.md deleted file mode 100644 index 6957aa030d..0000000000 --- a/docs/docs/auto-docs/GraphQl/Mutations/OrganizationMutations/README.md +++ /dev/null @@ -1,27 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / GraphQl/Mutations/OrganizationMutations - -# GraphQl/Mutations/OrganizationMutations - -## Variables - -- [ADD\_CUSTOM\_FIELD](variables/ADD_CUSTOM_FIELD.md) -- [ADD\_USER\_TO\_GROUP\_CHAT](variables/ADD_USER_TO_GROUP_CHAT.md) -- [CANCEL\_MEMBERSHIP\_REQUEST](variables/CANCEL_MEMBERSHIP_REQUEST.md) -- [CREATE\_CHAT](variables/CREATE_CHAT.md) -- [CREATE\_SAMPLE\_ORGANIZATION\_MUTATION](variables/CREATE_SAMPLE_ORGANIZATION_MUTATION.md) -- [EDIT\_CHAT\_MESSAGE](variables/EDIT_CHAT_MESSAGE.md) -- [JOIN\_PUBLIC\_ORGANIZATION](variables/JOIN_PUBLIC_ORGANIZATION.md) -- [MARK\_CHAT\_MESSAGES\_AS\_READ](variables/MARK_CHAT_MESSAGES_AS_READ.md) -- [MESSAGE\_SENT\_TO\_CHAT](variables/MESSAGE_SENT_TO_CHAT.md) -- [PLUGIN\_SUBSCRIPTION](variables/PLUGIN_SUBSCRIPTION.md) -- [REMOVE\_CUSTOM\_FIELD](variables/REMOVE_CUSTOM_FIELD.md) -- [REMOVE\_SAMPLE\_ORGANIZATION\_MUTATION](variables/REMOVE_SAMPLE_ORGANIZATION_MUTATION.md) -- [SEND\_MEMBERSHIP\_REQUEST](variables/SEND_MEMBERSHIP_REQUEST.md) -- [SEND\_MESSAGE\_TO\_CHAT](variables/SEND_MESSAGE_TO_CHAT.md) -- [TOGGLE\_PINNED\_POST](variables/TOGGLE_PINNED_POST.md) -- [UPDATE\_CHAT](variables/UPDATE_CHAT.md) -- [UPDATE\_USER\_ROLE\_IN\_ORG\_MUTATION](variables/UPDATE_USER_ROLE_IN_ORG_MUTATION.md) diff --git a/docs/docs/auto-docs/GraphQl/Mutations/OrganizationMutations/variables/ADD_CUSTOM_FIELD.md b/docs/docs/auto-docs/GraphQl/Mutations/OrganizationMutations/variables/ADD_CUSTOM_FIELD.md deleted file mode 100644 index 33208a8b6b..0000000000 --- a/docs/docs/auto-docs/GraphQl/Mutations/OrganizationMutations/variables/ADD_CUSTOM_FIELD.md +++ /dev/null @@ -1,29 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [GraphQl/Mutations/OrganizationMutations](../README.md) / ADD\_CUSTOM\_FIELD - -# Variable: ADD\_CUSTOM\_FIELD - -> `const` **ADD\_CUSTOM\_FIELD**: `DocumentNode` - -Defined in: [src/GraphQl/Mutations/OrganizationMutations.ts:237](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/GraphQl/Mutations/OrganizationMutations.ts#L237) - -GraphQL mutation to add a custom field to an organization. - -## Param - -The ID of the organization where the custom field is being added. - -## Param - -The type of the custom field (e.g., String, Number). - -## Param - -The name of the custom field. - -## Returns - -The added organization custom field object. diff --git a/docs/docs/auto-docs/GraphQl/Mutations/OrganizationMutations/variables/ADD_USER_TO_GROUP_CHAT.md b/docs/docs/auto-docs/GraphQl/Mutations/OrganizationMutations/variables/ADD_USER_TO_GROUP_CHAT.md deleted file mode 100644 index dc3245f092..0000000000 --- a/docs/docs/auto-docs/GraphQl/Mutations/OrganizationMutations/variables/ADD_USER_TO_GROUP_CHAT.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [GraphQl/Mutations/OrganizationMutations](../README.md) / ADD\_USER\_TO\_GROUP\_CHAT - -# Variable: ADD\_USER\_TO\_GROUP\_CHAT - -> `const` **ADD\_USER\_TO\_GROUP\_CHAT**: `DocumentNode` - -Defined in: [src/GraphQl/Mutations/OrganizationMutations.ts:82](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/GraphQl/Mutations/OrganizationMutations.ts#L82) diff --git a/docs/docs/auto-docs/GraphQl/Mutations/OrganizationMutations/variables/CANCEL_MEMBERSHIP_REQUEST.md b/docs/docs/auto-docs/GraphQl/Mutations/OrganizationMutations/variables/CANCEL_MEMBERSHIP_REQUEST.md deleted file mode 100644 index 71c782e3b2..0000000000 --- a/docs/docs/auto-docs/GraphQl/Mutations/OrganizationMutations/variables/CANCEL_MEMBERSHIP_REQUEST.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [GraphQl/Mutations/OrganizationMutations](../README.md) / CANCEL\_MEMBERSHIP\_REQUEST - -# Variable: CANCEL\_MEMBERSHIP\_REQUEST - -> `const` **CANCEL\_MEMBERSHIP\_REQUEST**: `DocumentNode` - -Defined in: [src/GraphQl/Mutations/OrganizationMutations.ts:295](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/GraphQl/Mutations/OrganizationMutations.ts#L295) diff --git a/docs/docs/auto-docs/GraphQl/Mutations/OrganizationMutations/variables/CREATE_CHAT.md b/docs/docs/auto-docs/GraphQl/Mutations/OrganizationMutations/variables/CREATE_CHAT.md deleted file mode 100644 index 47e940a1ed..0000000000 --- a/docs/docs/auto-docs/GraphQl/Mutations/OrganizationMutations/variables/CREATE_CHAT.md +++ /dev/null @@ -1,25 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [GraphQl/Mutations/OrganizationMutations](../README.md) / CREATE\_CHAT - -# Variable: CREATE\_CHAT - -> `const` **CREATE\_CHAT**: `DocumentNode` - -Defined in: [src/GraphQl/Mutations/OrganizationMutations.ts:60](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/GraphQl/Mutations/OrganizationMutations.ts#L60) - -GraphQL mutation to create a chat between users in an organization. - -## Param - -An array of user IDs participating in the direct chat. - -## Param - -The ID of the organization where the direct chat is created. - -## Returns - -The created direct chat object. diff --git a/docs/docs/auto-docs/GraphQl/Mutations/OrganizationMutations/variables/CREATE_SAMPLE_ORGANIZATION_MUTATION.md b/docs/docs/auto-docs/GraphQl/Mutations/OrganizationMutations/variables/CREATE_SAMPLE_ORGANIZATION_MUTATION.md deleted file mode 100644 index f8334b5eab..0000000000 --- a/docs/docs/auto-docs/GraphQl/Mutations/OrganizationMutations/variables/CREATE_SAMPLE_ORGANIZATION_MUTATION.md +++ /dev/null @@ -1,17 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [GraphQl/Mutations/OrganizationMutations](../README.md) / CREATE\_SAMPLE\_ORGANIZATION\_MUTATION - -# Variable: CREATE\_SAMPLE\_ORGANIZATION\_MUTATION - -> `const` **CREATE\_SAMPLE\_ORGANIZATION\_MUTATION**: `DocumentNode` - -Defined in: [src/GraphQl/Mutations/OrganizationMutations.ts:34](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/GraphQl/Mutations/OrganizationMutations.ts#L34) - -GraphQL mutation to create a sample organization. - -## Returns - -The created sample organization object. diff --git a/docs/docs/auto-docs/GraphQl/Mutations/OrganizationMutations/variables/EDIT_CHAT_MESSAGE.md b/docs/docs/auto-docs/GraphQl/Mutations/OrganizationMutations/variables/EDIT_CHAT_MESSAGE.md deleted file mode 100644 index 7b6f83bac9..0000000000 --- a/docs/docs/auto-docs/GraphQl/Mutations/OrganizationMutations/variables/EDIT_CHAT_MESSAGE.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [GraphQl/Mutations/OrganizationMutations](../README.md) / EDIT\_CHAT\_MESSAGE - -# Variable: EDIT\_CHAT\_MESSAGE - -> `const` **EDIT\_CHAT\_MESSAGE**: `DocumentNode` - -Defined in: [src/GraphQl/Mutations/OrganizationMutations.ts:106](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/GraphQl/Mutations/OrganizationMutations.ts#L106) diff --git a/docs/docs/auto-docs/GraphQl/Mutations/OrganizationMutations/variables/JOIN_PUBLIC_ORGANIZATION.md b/docs/docs/auto-docs/GraphQl/Mutations/OrganizationMutations/variables/JOIN_PUBLIC_ORGANIZATION.md deleted file mode 100644 index 2ee43d2ec9..0000000000 --- a/docs/docs/auto-docs/GraphQl/Mutations/OrganizationMutations/variables/JOIN_PUBLIC_ORGANIZATION.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [GraphQl/Mutations/OrganizationMutations](../README.md) / JOIN\_PUBLIC\_ORGANIZATION - -# Variable: JOIN\_PUBLIC\_ORGANIZATION - -> `const` **JOIN\_PUBLIC\_ORGANIZATION**: `DocumentNode` - -Defined in: [src/GraphQl/Mutations/OrganizationMutations.ts:287](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/GraphQl/Mutations/OrganizationMutations.ts#L287) diff --git a/docs/docs/auto-docs/GraphQl/Mutations/OrganizationMutations/variables/MARK_CHAT_MESSAGES_AS_READ.md b/docs/docs/auto-docs/GraphQl/Mutations/OrganizationMutations/variables/MARK_CHAT_MESSAGES_AS_READ.md deleted file mode 100644 index 6a19dfb487..0000000000 --- a/docs/docs/auto-docs/GraphQl/Mutations/OrganizationMutations/variables/MARK_CHAT_MESSAGES_AS_READ.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [GraphQl/Mutations/OrganizationMutations](../README.md) / MARK\_CHAT\_MESSAGES\_AS\_READ - -# Variable: MARK\_CHAT\_MESSAGES\_AS\_READ - -> `const` **MARK\_CHAT\_MESSAGES\_AS\_READ**: `DocumentNode` - -Defined in: [src/GraphQl/Mutations/OrganizationMutations.ts:90](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/GraphQl/Mutations/OrganizationMutations.ts#L90) diff --git a/docs/docs/auto-docs/GraphQl/Mutations/OrganizationMutations/variables/MESSAGE_SENT_TO_CHAT.md b/docs/docs/auto-docs/GraphQl/Mutations/OrganizationMutations/variables/MESSAGE_SENT_TO_CHAT.md deleted file mode 100644 index dfee83efa6..0000000000 --- a/docs/docs/auto-docs/GraphQl/Mutations/OrganizationMutations/variables/MESSAGE_SENT_TO_CHAT.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [GraphQl/Mutations/OrganizationMutations](../README.md) / MESSAGE\_SENT\_TO\_CHAT - -# Variable: MESSAGE\_SENT\_TO\_CHAT - -> `const` **MESSAGE\_SENT\_TO\_CHAT**: `DocumentNode` - -Defined in: [src/GraphQl/Mutations/OrganizationMutations.ts:164](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/GraphQl/Mutations/OrganizationMutations.ts#L164) diff --git a/docs/docs/auto-docs/GraphQl/Mutations/OrganizationMutations/variables/PLUGIN_SUBSCRIPTION.md b/docs/docs/auto-docs/GraphQl/Mutations/OrganizationMutations/variables/PLUGIN_SUBSCRIPTION.md deleted file mode 100644 index 5ed1bd987b..0000000000 --- a/docs/docs/auto-docs/GraphQl/Mutations/OrganizationMutations/variables/PLUGIN_SUBSCRIPTION.md +++ /dev/null @@ -1,17 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [GraphQl/Mutations/OrganizationMutations](../README.md) / PLUGIN\_SUBSCRIPTION - -# Variable: PLUGIN\_SUBSCRIPTION - -> `const` **PLUGIN\_SUBSCRIPTION**: `DocumentNode` - -Defined in: [src/GraphQl/Mutations/OrganizationMutations.ts:202](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/GraphQl/Mutations/OrganizationMutations.ts#L202) - -GraphQL subscription to listen for updates on plugins. - -## Returns - -An object containing information about the updated plugin. diff --git a/docs/docs/auto-docs/GraphQl/Mutations/OrganizationMutations/variables/REMOVE_CUSTOM_FIELD.md b/docs/docs/auto-docs/GraphQl/Mutations/OrganizationMutations/variables/REMOVE_CUSTOM_FIELD.md deleted file mode 100644 index a78357dacb..0000000000 --- a/docs/docs/auto-docs/GraphQl/Mutations/OrganizationMutations/variables/REMOVE_CUSTOM_FIELD.md +++ /dev/null @@ -1,25 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [GraphQl/Mutations/OrganizationMutations](../README.md) / REMOVE\_CUSTOM\_FIELD - -# Variable: REMOVE\_CUSTOM\_FIELD - -> `const` **REMOVE\_CUSTOM\_FIELD**: `DocumentNode` - -Defined in: [src/GraphQl/Mutations/OrganizationMutations.ts:260](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/GraphQl/Mutations/OrganizationMutations.ts#L260) - -GraphQL mutation to remove a custom field from an organization. - -## Param - -The ID of the organization from which the custom field is being removed. - -## Param - -The ID of the custom field to be removed. - -## Returns - -The removed organization custom field object. diff --git a/docs/docs/auto-docs/GraphQl/Mutations/OrganizationMutations/variables/REMOVE_SAMPLE_ORGANIZATION_MUTATION.md b/docs/docs/auto-docs/GraphQl/Mutations/OrganizationMutations/variables/REMOVE_SAMPLE_ORGANIZATION_MUTATION.md deleted file mode 100644 index d399fa81dc..0000000000 --- a/docs/docs/auto-docs/GraphQl/Mutations/OrganizationMutations/variables/REMOVE_SAMPLE_ORGANIZATION_MUTATION.md +++ /dev/null @@ -1,17 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [GraphQl/Mutations/OrganizationMutations](../README.md) / REMOVE\_SAMPLE\_ORGANIZATION\_MUTATION - -# Variable: REMOVE\_SAMPLE\_ORGANIZATION\_MUTATION - -> `const` **REMOVE\_SAMPLE\_ORGANIZATION\_MUTATION**: `DocumentNode` - -Defined in: [src/GraphQl/Mutations/OrganizationMutations.ts:46](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/GraphQl/Mutations/OrganizationMutations.ts#L46) - -GraphQL mutation to remove a sample organization. - -## Returns - -The removed sample organization object. diff --git a/docs/docs/auto-docs/GraphQl/Mutations/OrganizationMutations/variables/SEND_MEMBERSHIP_REQUEST.md b/docs/docs/auto-docs/GraphQl/Mutations/OrganizationMutations/variables/SEND_MEMBERSHIP_REQUEST.md deleted file mode 100644 index 376ff2717a..0000000000 --- a/docs/docs/auto-docs/GraphQl/Mutations/OrganizationMutations/variables/SEND_MEMBERSHIP_REQUEST.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [GraphQl/Mutations/OrganizationMutations](../README.md) / SEND\_MEMBERSHIP\_REQUEST - -# Variable: SEND\_MEMBERSHIP\_REQUEST - -> `const` **SEND\_MEMBERSHIP\_REQUEST**: `DocumentNode` - -Defined in: [src/GraphQl/Mutations/OrganizationMutations.ts:272](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/GraphQl/Mutations/OrganizationMutations.ts#L272) diff --git a/docs/docs/auto-docs/GraphQl/Mutations/OrganizationMutations/variables/SEND_MESSAGE_TO_CHAT.md b/docs/docs/auto-docs/GraphQl/Mutations/OrganizationMutations/variables/SEND_MESSAGE_TO_CHAT.md deleted file mode 100644 index 38509ba4b2..0000000000 --- a/docs/docs/auto-docs/GraphQl/Mutations/OrganizationMutations/variables/SEND_MESSAGE_TO_CHAT.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [GraphQl/Mutations/OrganizationMutations](../README.md) / SEND\_MESSAGE\_TO\_CHAT - -# Variable: SEND\_MESSAGE\_TO\_CHAT - -> `const` **SEND\_MESSAGE\_TO\_CHAT**: `DocumentNode` - -Defined in: [src/GraphQl/Mutations/OrganizationMutations.ts:126](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/GraphQl/Mutations/OrganizationMutations.ts#L126) diff --git a/docs/docs/auto-docs/GraphQl/Mutations/OrganizationMutations/variables/TOGGLE_PINNED_POST.md b/docs/docs/auto-docs/GraphQl/Mutations/OrganizationMutations/variables/TOGGLE_PINNED_POST.md deleted file mode 100644 index ff9274fc79..0000000000 --- a/docs/docs/auto-docs/GraphQl/Mutations/OrganizationMutations/variables/TOGGLE_PINNED_POST.md +++ /dev/null @@ -1,21 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [GraphQl/Mutations/OrganizationMutations](../README.md) / TOGGLE\_PINNED\_POST - -# Variable: TOGGLE\_PINNED\_POST - -> `const` **TOGGLE\_PINNED\_POST**: `DocumentNode` - -Defined in: [src/GraphQl/Mutations/OrganizationMutations.ts:220](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/GraphQl/Mutations/OrganizationMutations.ts#L220) - -GraphQL mutation to toggle the pinned status of a post. - -## Param - -The ID of the post to be toggled. - -## Returns - -The updated post object with the new pinned status. diff --git a/docs/docs/auto-docs/GraphQl/Mutations/OrganizationMutations/variables/UPDATE_CHAT.md b/docs/docs/auto-docs/GraphQl/Mutations/OrganizationMutations/variables/UPDATE_CHAT.md deleted file mode 100644 index f12f042eda..0000000000 --- a/docs/docs/auto-docs/GraphQl/Mutations/OrganizationMutations/variables/UPDATE_CHAT.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [GraphQl/Mutations/OrganizationMutations](../README.md) / UPDATE\_CHAT - -# Variable: UPDATE\_CHAT - -> `const` **UPDATE\_CHAT**: `DocumentNode` - -Defined in: [src/GraphQl/Mutations/OrganizationMutations.ts:98](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/GraphQl/Mutations/OrganizationMutations.ts#L98) diff --git a/docs/docs/auto-docs/GraphQl/Mutations/OrganizationMutations/variables/UPDATE_USER_ROLE_IN_ORG_MUTATION.md b/docs/docs/auto-docs/GraphQl/Mutations/OrganizationMutations/variables/UPDATE_USER_ROLE_IN_ORG_MUTATION.md deleted file mode 100644 index b55b60eb57..0000000000 --- a/docs/docs/auto-docs/GraphQl/Mutations/OrganizationMutations/variables/UPDATE_USER_ROLE_IN_ORG_MUTATION.md +++ /dev/null @@ -1,29 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [GraphQl/Mutations/OrganizationMutations](../README.md) / UPDATE\_USER\_ROLE\_IN\_ORG\_MUTATION - -# Variable: UPDATE\_USER\_ROLE\_IN\_ORG\_MUTATION - -> `const` **UPDATE\_USER\_ROLE\_IN\_ORG\_MUTATION**: `DocumentNode` - -Defined in: [src/GraphQl/Mutations/OrganizationMutations.ts:12](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/GraphQl/Mutations/OrganizationMutations.ts#L12) - -GraphQL mutation to update the role of a user in an organization. - -## Param - -The ID of the organization in which the user's role is being updated. - -## Param - -The ID of the user whose role is being updated. - -## Param - -The new role to be assigned to the user in the organization. - -## Returns - -The updated user object with the new role in the organization. diff --git a/docs/docs/auto-docs/GraphQl/Mutations/PledgeMutation/README.md b/docs/docs/auto-docs/GraphQl/Mutations/PledgeMutation/README.md deleted file mode 100644 index 2a7b674f0c..0000000000 --- a/docs/docs/auto-docs/GraphQl/Mutations/PledgeMutation/README.md +++ /dev/null @@ -1,13 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / GraphQl/Mutations/PledgeMutation - -# GraphQl/Mutations/PledgeMutation - -## Variables - -- [CREATE\_PlEDGE](variables/CREATE_PlEDGE.md) -- [DELETE\_PLEDGE](variables/DELETE_PLEDGE.md) -- [UPDATE\_PLEDGE](variables/UPDATE_PLEDGE.md) diff --git a/docs/docs/auto-docs/GraphQl/Mutations/PledgeMutation/variables/CREATE_PlEDGE.md b/docs/docs/auto-docs/GraphQl/Mutations/PledgeMutation/variables/CREATE_PlEDGE.md deleted file mode 100644 index 769b43b534..0000000000 --- a/docs/docs/auto-docs/GraphQl/Mutations/PledgeMutation/variables/CREATE_PlEDGE.md +++ /dev/null @@ -1,41 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [GraphQl/Mutations/PledgeMutation](../README.md) / CREATE\_PlEDGE - -# Variable: CREATE\_PlEDGE - -> `const` **CREATE\_PlEDGE**: `DocumentNode` - -Defined in: [src/GraphQl/Mutations/PledgeMutation.ts:14](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/GraphQl/Mutations/PledgeMutation.ts#L14) - -GraphQL mutation to create a pledge. - -## Param - -The ID of the campaign the pledge is associated with. - -## Param - -The amount of the pledge. - -## Param - -The currency of the pledge. - -## Param - -The start date of the pledge. - -## Param - -The end date of the pledge. - -## Param - -The IDs of the users associated with the pledge. - -## Returns - -The ID of the created pledge. diff --git a/docs/docs/auto-docs/GraphQl/Mutations/PledgeMutation/variables/DELETE_PLEDGE.md b/docs/docs/auto-docs/GraphQl/Mutations/PledgeMutation/variables/DELETE_PLEDGE.md deleted file mode 100644 index 117123b463..0000000000 --- a/docs/docs/auto-docs/GraphQl/Mutations/PledgeMutation/variables/DELETE_PLEDGE.md +++ /dev/null @@ -1,21 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [GraphQl/Mutations/PledgeMutation](../README.md) / DELETE\_PLEDGE - -# Variable: DELETE\_PLEDGE - -> `const` **DELETE\_PLEDGE**: `DocumentNode` - -Defined in: [src/GraphQl/Mutations/PledgeMutation.ts:78](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/GraphQl/Mutations/PledgeMutation.ts#L78) - -GraphQL mutation to delete a pledge. - -## Param - -The ID of the pledge being deleted. - -## Returns - -Whether the pledge was successfully deleted. diff --git a/docs/docs/auto-docs/GraphQl/Mutations/PledgeMutation/variables/UPDATE_PLEDGE.md b/docs/docs/auto-docs/GraphQl/Mutations/PledgeMutation/variables/UPDATE_PLEDGE.md deleted file mode 100644 index 4219c43036..0000000000 --- a/docs/docs/auto-docs/GraphQl/Mutations/PledgeMutation/variables/UPDATE_PLEDGE.md +++ /dev/null @@ -1,37 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [GraphQl/Mutations/PledgeMutation](../README.md) / UPDATE\_PLEDGE - -# Variable: UPDATE\_PLEDGE - -> `const` **UPDATE\_PLEDGE**: `DocumentNode` - -Defined in: [src/GraphQl/Mutations/PledgeMutation.ts:48](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/GraphQl/Mutations/PledgeMutation.ts#L48) - -GraphQL mutation to update a pledge. - -## Param - -The ID of the pledge being updated. - -## Param - -The amount of the pledge. - -## Param - -The currency of the pledge. - -## Param - -The start date of the pledge. - -## Param - -The end date of the pledge. - -## Returns - -The ID of the updated pledge. diff --git a/docs/docs/auto-docs/GraphQl/Mutations/TagMutations/README.md b/docs/docs/auto-docs/GraphQl/Mutations/TagMutations/README.md deleted file mode 100644 index e3328dd710..0000000000 --- a/docs/docs/auto-docs/GraphQl/Mutations/TagMutations/README.md +++ /dev/null @@ -1,17 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / GraphQl/Mutations/TagMutations - -# GraphQl/Mutations/TagMutations - -## Variables - -- [ADD\_PEOPLE\_TO\_TAG](variables/ADD_PEOPLE_TO_TAG.md) -- [ASSIGN\_TO\_TAGS](variables/ASSIGN_TO_TAGS.md) -- [CREATE\_USER\_TAG](variables/CREATE_USER_TAG.md) -- [REMOVE\_FROM\_TAGS](variables/REMOVE_FROM_TAGS.md) -- [REMOVE\_USER\_TAG](variables/REMOVE_USER_TAG.md) -- [UNASSIGN\_USER\_TAG](variables/UNASSIGN_USER_TAG.md) -- [UPDATE\_USER\_TAG](variables/UPDATE_USER_TAG.md) diff --git a/docs/docs/auto-docs/GraphQl/Mutations/TagMutations/variables/ADD_PEOPLE_TO_TAG.md b/docs/docs/auto-docs/GraphQl/Mutations/TagMutations/variables/ADD_PEOPLE_TO_TAG.md deleted file mode 100644 index b89504c59b..0000000000 --- a/docs/docs/auto-docs/GraphQl/Mutations/TagMutations/variables/ADD_PEOPLE_TO_TAG.md +++ /dev/null @@ -1,21 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [GraphQl/Mutations/TagMutations](../README.md) / ADD\_PEOPLE\_TO\_TAG - -# Variable: ADD\_PEOPLE\_TO\_TAG - -> `const` **ADD\_PEOPLE\_TO\_TAG**: `DocumentNode` - -Defined in: [src/GraphQl/Mutations/TagMutations.ts:83](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/GraphQl/Mutations/TagMutations.ts#L83) - -GraphQL mutation to add people to tag. - -## Param - -Id of the tag to be assigned. - -## Param - -Ids of the users to assign to. diff --git a/docs/docs/auto-docs/GraphQl/Mutations/TagMutations/variables/ASSIGN_TO_TAGS.md b/docs/docs/auto-docs/GraphQl/Mutations/TagMutations/variables/ASSIGN_TO_TAGS.md deleted file mode 100644 index 117c2ee8d2..0000000000 --- a/docs/docs/auto-docs/GraphQl/Mutations/TagMutations/variables/ASSIGN_TO_TAGS.md +++ /dev/null @@ -1,21 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [GraphQl/Mutations/TagMutations](../README.md) / ASSIGN\_TO\_TAGS - -# Variable: ASSIGN\_TO\_TAGS - -> `const` **ASSIGN\_TO\_TAGS**: `DocumentNode` - -Defined in: [src/GraphQl/Mutations/TagMutations.ts:98](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/GraphQl/Mutations/TagMutations.ts#L98) - -GraphQL mutation to assign people to multiple tags. - -## Param - -Id of the current tag. - -## Param - -Ids of the selected tags to be assined. diff --git a/docs/docs/auto-docs/GraphQl/Mutations/TagMutations/variables/CREATE_USER_TAG.md b/docs/docs/auto-docs/GraphQl/Mutations/TagMutations/variables/CREATE_USER_TAG.md deleted file mode 100644 index 86d66c710f..0000000000 --- a/docs/docs/auto-docs/GraphQl/Mutations/TagMutations/variables/CREATE_USER_TAG.md +++ /dev/null @@ -1,29 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [GraphQl/Mutations/TagMutations](../README.md) / CREATE\_USER\_TAG - -# Variable: CREATE\_USER\_TAG - -> `const` **CREATE\_USER\_TAG**: `DocumentNode` - -Defined in: [src/GraphQl/Mutations/TagMutations.ts:12](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/GraphQl/Mutations/TagMutations.ts#L12) - -GraphQL mutation to create a user tag. - -## Param - -Name of the tag. - -## Param - -Color of the tag. - -## Param - -Id of the parent tag. - -## Param - -Organization to which the tag belongs. diff --git a/docs/docs/auto-docs/GraphQl/Mutations/TagMutations/variables/REMOVE_FROM_TAGS.md b/docs/docs/auto-docs/GraphQl/Mutations/TagMutations/variables/REMOVE_FROM_TAGS.md deleted file mode 100644 index 805ca58221..0000000000 --- a/docs/docs/auto-docs/GraphQl/Mutations/TagMutations/variables/REMOVE_FROM_TAGS.md +++ /dev/null @@ -1,21 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [GraphQl/Mutations/TagMutations](../README.md) / REMOVE\_FROM\_TAGS - -# Variable: REMOVE\_FROM\_TAGS - -> `const` **REMOVE\_FROM\_TAGS**: `DocumentNode` - -Defined in: [src/GraphQl/Mutations/TagMutations.ts:115](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/GraphQl/Mutations/TagMutations.ts#L115) - -GraphQL mutation to remove people from multiple tags. - -## Param - -Id of the current tag. - -## Param - -Ids of the selected tags to be removed from. diff --git a/docs/docs/auto-docs/GraphQl/Mutations/TagMutations/variables/REMOVE_USER_TAG.md b/docs/docs/auto-docs/GraphQl/Mutations/TagMutations/variables/REMOVE_USER_TAG.md deleted file mode 100644 index 8b1977495e..0000000000 --- a/docs/docs/auto-docs/GraphQl/Mutations/TagMutations/variables/REMOVE_USER_TAG.md +++ /dev/null @@ -1,17 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [GraphQl/Mutations/TagMutations](../README.md) / REMOVE\_USER\_TAG - -# Variable: REMOVE\_USER\_TAG - -> `const` **REMOVE\_USER\_TAG**: `DocumentNode` - -Defined in: [src/GraphQl/Mutations/TagMutations.ts:68](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/GraphQl/Mutations/TagMutations.ts#L68) - -GraphQL mutation to remove a user tag. - -## Param - -Id of the tag to be removed . diff --git a/docs/docs/auto-docs/GraphQl/Mutations/TagMutations/variables/UNASSIGN_USER_TAG.md b/docs/docs/auto-docs/GraphQl/Mutations/TagMutations/variables/UNASSIGN_USER_TAG.md deleted file mode 100644 index ca5e37b9d0..0000000000 --- a/docs/docs/auto-docs/GraphQl/Mutations/TagMutations/variables/UNASSIGN_USER_TAG.md +++ /dev/null @@ -1,21 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [GraphQl/Mutations/TagMutations](../README.md) / UNASSIGN\_USER\_TAG - -# Variable: UNASSIGN\_USER\_TAG - -> `const` **UNASSIGN\_USER\_TAG**: `DocumentNode` - -Defined in: [src/GraphQl/Mutations/TagMutations.ts:39](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/GraphQl/Mutations/TagMutations.ts#L39) - -GraphQL mutation to unsssign a user tag from a user. - -## Param - -Id the tag. - -## Param - -Id of the user to be unassigned. diff --git a/docs/docs/auto-docs/GraphQl/Mutations/TagMutations/variables/UPDATE_USER_TAG.md b/docs/docs/auto-docs/GraphQl/Mutations/TagMutations/variables/UPDATE_USER_TAG.md deleted file mode 100644 index 83bcae7129..0000000000 --- a/docs/docs/auto-docs/GraphQl/Mutations/TagMutations/variables/UPDATE_USER_TAG.md +++ /dev/null @@ -1,21 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [GraphQl/Mutations/TagMutations](../README.md) / UPDATE\_USER\_TAG - -# Variable: UPDATE\_USER\_TAG - -> `const` **UPDATE\_USER\_TAG**: `DocumentNode` - -Defined in: [src/GraphQl/Mutations/TagMutations.ts:54](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/GraphQl/Mutations/TagMutations.ts#L54) - -GraphQL mutation to update a user tag. - -## Param - -Id the tag. - -## Param - -Updated name of the tag. diff --git a/docs/docs/auto-docs/GraphQl/Mutations/VenueMutations/README.md b/docs/docs/auto-docs/GraphQl/Mutations/VenueMutations/README.md deleted file mode 100644 index 78d71175fd..0000000000 --- a/docs/docs/auto-docs/GraphQl/Mutations/VenueMutations/README.md +++ /dev/null @@ -1,13 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / GraphQl/Mutations/VenueMutations - -# GraphQl/Mutations/VenueMutations - -## Variables - -- [CREATE\_VENUE\_MUTATION](variables/CREATE_VENUE_MUTATION.md) -- [DELETE\_VENUE\_MUTATION](variables/DELETE_VENUE_MUTATION.md) -- [UPDATE\_VENUE\_MUTATION](variables/UPDATE_VENUE_MUTATION.md) diff --git a/docs/docs/auto-docs/GraphQl/Mutations/VenueMutations/variables/CREATE_VENUE_MUTATION.md b/docs/docs/auto-docs/GraphQl/Mutations/VenueMutations/variables/CREATE_VENUE_MUTATION.md deleted file mode 100644 index 55dc05f304..0000000000 --- a/docs/docs/auto-docs/GraphQl/Mutations/VenueMutations/variables/CREATE_VENUE_MUTATION.md +++ /dev/null @@ -1,33 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [GraphQl/Mutations/VenueMutations](../README.md) / CREATE\_VENUE\_MUTATION - -# Variable: CREATE\_VENUE\_MUTATION - -> `const` **CREATE\_VENUE\_MUTATION**: `DocumentNode` - -Defined in: [src/GraphQl/Mutations/VenueMutations.ts:13](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/GraphQl/Mutations/VenueMutations.ts#L13) - -GraphQL mutation to create a venue. - -## Param - -Name of the venue. - -## Param - -Ineteger representing capacity of venue. - -## Param - -Description of the venue. - -## Param - -Image file for the venue. - -## Param - -Organization to which the ActionItemCategory belongs. diff --git a/docs/docs/auto-docs/GraphQl/Mutations/VenueMutations/variables/DELETE_VENUE_MUTATION.md b/docs/docs/auto-docs/GraphQl/Mutations/VenueMutations/variables/DELETE_VENUE_MUTATION.md deleted file mode 100644 index 0a11db5a22..0000000000 --- a/docs/docs/auto-docs/GraphQl/Mutations/VenueMutations/variables/DELETE_VENUE_MUTATION.md +++ /dev/null @@ -1,17 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [GraphQl/Mutations/VenueMutations](../README.md) / DELETE\_VENUE\_MUTATION - -# Variable: DELETE\_VENUE\_MUTATION - -> `const` **DELETE\_VENUE\_MUTATION**: `DocumentNode` - -Defined in: [src/GraphQl/Mutations/VenueMutations.ts:73](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/GraphQl/Mutations/VenueMutations.ts#L73) - -GraphQL mutation to delete a venue. - -## Param - -The id of the Venue to be deleted. diff --git a/docs/docs/auto-docs/GraphQl/Mutations/VenueMutations/variables/UPDATE_VENUE_MUTATION.md b/docs/docs/auto-docs/GraphQl/Mutations/VenueMutations/variables/UPDATE_VENUE_MUTATION.md deleted file mode 100644 index a9eb5603f9..0000000000 --- a/docs/docs/auto-docs/GraphQl/Mutations/VenueMutations/variables/UPDATE_VENUE_MUTATION.md +++ /dev/null @@ -1,33 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [GraphQl/Mutations/VenueMutations](../README.md) / UPDATE\_VENUE\_MUTATION - -# Variable: UPDATE\_VENUE\_MUTATION - -> `const` **UPDATE\_VENUE\_MUTATION**: `DocumentNode` - -Defined in: [src/GraphQl/Mutations/VenueMutations.ts:45](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/GraphQl/Mutations/VenueMutations.ts#L45) - -GraphQL mutation to update a venue. - -## Param - -The id of the Venue to be updated. - -## Param - -Ineteger representing capacity of venue. - -## Param - -Description of the venue. - -## Param - -Image file for the venue. - -## Param - -Name of the venue. diff --git a/docs/docs/auto-docs/GraphQl/Mutations/mutations/README.md b/docs/docs/auto-docs/GraphQl/Mutations/mutations/README.md deleted file mode 100644 index 57aa6032b2..0000000000 --- a/docs/docs/auto-docs/GraphQl/Mutations/mutations/README.md +++ /dev/null @@ -1,224 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / GraphQl/Mutations/mutations - -# GraphQl/Mutations/mutations - -## Variables - -- [ACCEPT\_ORGANIZATION\_REQUEST\_MUTATION](variables/ACCEPT_ORGANIZATION_REQUEST_MUTATION.md) -- [ADD\_ADMIN\_MUTATION](variables/ADD_ADMIN_MUTATION.md) -- [ADD\_ADVERTISEMENT\_MUTATION](variables/ADD_ADVERTISEMENT_MUTATION.md) -- [ADD\_MEMBER\_MUTATION](variables/ADD_MEMBER_MUTATION.md) -- [ADD\_PLUGIN\_MUTATION](variables/ADD_PLUGIN_MUTATION.md) -- [ADDRESS\_DETAILS\_FRAGMENT](variables/ADDRESS_DETAILS_FRAGMENT.md) -- [BLOCK\_USER\_MUTATION](variables/BLOCK_USER_MUTATION.md) -- [CREATE\_EVENT\_MUTATION](variables/CREATE_EVENT_MUTATION.md) -- [CREATE\_ORGANIZATION\_MUTATION](variables/CREATE_ORGANIZATION_MUTATION.md) -- [CREATE\_POST\_MUTATION](variables/CREATE_POST_MUTATION.md) -- [DELETE\_ADVERTISEMENT\_BY\_ID](variables/DELETE_ADVERTISEMENT_BY_ID.md) -- [DELETE\_EVENT\_MUTATION](variables/DELETE_EVENT_MUTATION.md) -- [DELETE\_ORGANIZATION\_MUTATION](variables/DELETE_ORGANIZATION_MUTATION.md) -- [DELETE\_POST\_MUTATION](variables/DELETE_POST_MUTATION.md) -- [DONATE\_TO\_ORGANIZATION](variables/DONATE_TO_ORGANIZATION.md) -- [FORGOT\_PASSWORD\_MUTATION](variables/FORGOT_PASSWORD_MUTATION.md) -- [GENERATE\_OTP\_MUTATION](variables/GENERATE_OTP_MUTATION.md) -- [LIKE\_POST](variables/LIKE_POST.md) -- [LOGIN\_MUTATION](variables/LOGIN_MUTATION.md) -- [RECAPTCHA\_MUTATION](variables/RECAPTCHA_MUTATION.md) -- [REFRESH\_TOKEN\_MUTATION](variables/REFRESH_TOKEN_MUTATION.md) -- [REGISTER\_EVENT](variables/REGISTER_EVENT.md) -- [REJECT\_ORGANIZATION\_REQUEST\_MUTATION](variables/REJECT_ORGANIZATION_REQUEST_MUTATION.md) -- [REMOVE\_ADMIN\_MUTATION](variables/REMOVE_ADMIN_MUTATION.md) -- [REMOVE\_MEMBER\_MUTATION](variables/REMOVE_MEMBER_MUTATION.md) -- [RESET\_COMMUNITY](variables/RESET_COMMUNITY.md) -- [REVOKE\_REFRESH\_TOKEN](variables/REVOKE_REFRESH_TOKEN.md) -- [SIGNUP\_MUTATION](variables/SIGNUP_MUTATION.md) -- [UNBLOCK\_USER\_MUTATION](variables/UNBLOCK_USER_MUTATION.md) -- [UNLIKE\_POST](variables/UNLIKE_POST.md) -- [UPDATE\_ADVERTISEMENT\_MUTATION](variables/UPDATE_ADVERTISEMENT_MUTATION.md) -- [UPDATE\_COMMUNITY](variables/UPDATE_COMMUNITY.md) -- [UPDATE\_EVENT\_MUTATION](variables/UPDATE_EVENT_MUTATION.md) -- [UPDATE\_INSTALL\_STATUS\_PLUGIN\_MUTATION](variables/UPDATE_INSTALL_STATUS_PLUGIN_MUTATION.md) -- [UPDATE\_ORG\_STATUS\_PLUGIN\_MUTATION](variables/UPDATE_ORG_STATUS_PLUGIN_MUTATION.md) -- [UPDATE\_ORGANIZATION\_MUTATION](variables/UPDATE_ORGANIZATION_MUTATION.md) -- [UPDATE\_POST\_MUTATION](variables/UPDATE_POST_MUTATION.md) -- [UPDATE\_SESSION\_TIMEOUT](variables/UPDATE_SESSION_TIMEOUT.md) -- [UPDATE\_USER\_MUTATION](variables/UPDATE_USER_MUTATION.md) -- [UPDATE\_USER\_PASSWORD\_MUTATION](variables/UPDATE_USER_PASSWORD_MUTATION.md) - -## References - -### ADD\_CUSTOM\_FIELD - -Re-exports [ADD_CUSTOM_FIELD](../OrganizationMutations/variables/ADD_CUSTOM_FIELD.md) - -*** - -### ADD\_EVENT\_ATTENDEE - -Re-exports [ADD_EVENT_ATTENDEE](../EventAttendeeMutations/variables/ADD_EVENT_ATTENDEE.md) - -*** - -### CREATE\_ACTION\_ITEM\_CATEGORY\_MUTATION - -Re-exports [CREATE_ACTION_ITEM_CATEGORY_MUTATION](../ActionItemCategoryMutations/variables/CREATE_ACTION_ITEM_CATEGORY_MUTATION.md) - -*** - -### CREATE\_ACTION\_ITEM\_MUTATION - -Re-exports [CREATE_ACTION_ITEM_MUTATION](../ActionItemMutations/variables/CREATE_ACTION_ITEM_MUTATION.md) - -*** - -### CREATE\_AGENDA\_ITEM\_CATEGORY\_MUTATION - -Re-exports [CREATE_AGENDA_ITEM_CATEGORY_MUTATION](../AgendaCategoryMutations/variables/CREATE_AGENDA_ITEM_CATEGORY_MUTATION.md) - -*** - -### CREATE\_AGENDA\_ITEM\_MUTATION - -Re-exports [CREATE_AGENDA_ITEM_MUTATION](../AgendaItemMutations/variables/CREATE_AGENDA_ITEM_MUTATION.md) - -*** - -### CREATE\_COMMENT\_POST - -Re-exports [CREATE_COMMENT_POST](../CommentMutations/variables/CREATE_COMMENT_POST.md) - -*** - -### CREATE\_SAMPLE\_ORGANIZATION\_MUTATION - -Re-exports [CREATE_SAMPLE_ORGANIZATION_MUTATION](../OrganizationMutations/variables/CREATE_SAMPLE_ORGANIZATION_MUTATION.md) - -*** - -### CREATE\_VENUE\_MUTATION - -Re-exports [CREATE_VENUE_MUTATION](../VenueMutations/variables/CREATE_VENUE_MUTATION.md) - -*** - -### DELETE\_ACTION\_ITEM\_MUTATION - -Re-exports [DELETE_ACTION_ITEM_MUTATION](../ActionItemMutations/variables/DELETE_ACTION_ITEM_MUTATION.md) - -*** - -### DELETE\_AGENDA\_ITEM\_CATEGORY\_MUTATION - -Re-exports [DELETE_AGENDA_ITEM_CATEGORY_MUTATION](../AgendaCategoryMutations/variables/DELETE_AGENDA_ITEM_CATEGORY_MUTATION.md) - -*** - -### DELETE\_AGENDA\_ITEM\_MUTATION - -Re-exports [DELETE_AGENDA_ITEM_MUTATION](../AgendaItemMutations/variables/DELETE_AGENDA_ITEM_MUTATION.md) - -*** - -### DELETE\_VENUE\_MUTATION - -Re-exports [DELETE_VENUE_MUTATION](../VenueMutations/variables/DELETE_VENUE_MUTATION.md) - -*** - -### JOIN\_PUBLIC\_ORGANIZATION - -Re-exports [JOIN_PUBLIC_ORGANIZATION](../OrganizationMutations/variables/JOIN_PUBLIC_ORGANIZATION.md) - -*** - -### LIKE\_COMMENT - -Re-exports [LIKE_COMMENT](../CommentMutations/variables/LIKE_COMMENT.md) - -*** - -### MARK\_CHECKIN - -Re-exports [MARK_CHECKIN](../EventAttendeeMutations/variables/MARK_CHECKIN.md) - -*** - -### PLUGIN\_SUBSCRIPTION - -Re-exports [PLUGIN_SUBSCRIPTION](../OrganizationMutations/variables/PLUGIN_SUBSCRIPTION.md) - -*** - -### REMOVE\_CUSTOM\_FIELD - -Re-exports [REMOVE_CUSTOM_FIELD](../OrganizationMutations/variables/REMOVE_CUSTOM_FIELD.md) - -*** - -### REMOVE\_EVENT\_ATTENDEE - -Re-exports [REMOVE_EVENT_ATTENDEE](../EventAttendeeMutations/variables/REMOVE_EVENT_ATTENDEE.md) - -*** - -### REMOVE\_SAMPLE\_ORGANIZATION\_MUTATION - -Re-exports [REMOVE_SAMPLE_ORGANIZATION_MUTATION](../OrganizationMutations/variables/REMOVE_SAMPLE_ORGANIZATION_MUTATION.md) - -*** - -### SEND\_MEMBERSHIP\_REQUEST - -Re-exports [SEND_MEMBERSHIP_REQUEST](../OrganizationMutations/variables/SEND_MEMBERSHIP_REQUEST.md) - -*** - -### TOGGLE\_PINNED\_POST - -Re-exports [TOGGLE_PINNED_POST](../OrganizationMutations/variables/TOGGLE_PINNED_POST.md) - -*** - -### UNLIKE\_COMMENT - -Re-exports [UNLIKE_COMMENT](../CommentMutations/variables/UNLIKE_COMMENT.md) - -*** - -### UPDATE\_ACTION\_ITEM\_CATEGORY\_MUTATION - -Re-exports [UPDATE_ACTION_ITEM_CATEGORY_MUTATION](../ActionItemCategoryMutations/variables/UPDATE_ACTION_ITEM_CATEGORY_MUTATION.md) - -*** - -### UPDATE\_ACTION\_ITEM\_MUTATION - -Re-exports [UPDATE_ACTION_ITEM_MUTATION](../ActionItemMutations/variables/UPDATE_ACTION_ITEM_MUTATION.md) - -*** - -### UPDATE\_AGENDA\_ITEM\_CATEGORY\_MUTATION - -Re-exports [UPDATE_AGENDA_ITEM_CATEGORY_MUTATION](../AgendaCategoryMutations/variables/UPDATE_AGENDA_ITEM_CATEGORY_MUTATION.md) - -*** - -### UPDATE\_AGENDA\_ITEM\_MUTATION - -Re-exports [UPDATE_AGENDA_ITEM_MUTATION](../AgendaItemMutations/variables/UPDATE_AGENDA_ITEM_MUTATION.md) - -*** - -### UPDATE\_USER\_ROLE\_IN\_ORG\_MUTATION - -Re-exports [UPDATE_USER_ROLE_IN_ORG_MUTATION](../OrganizationMutations/variables/UPDATE_USER_ROLE_IN_ORG_MUTATION.md) - -*** - -### UPDATE\_VENUE\_MUTATION - -Re-exports [UPDATE_VENUE_MUTATION](../VenueMutations/variables/UPDATE_VENUE_MUTATION.md) diff --git a/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/ACCEPT_ORGANIZATION_REQUEST_MUTATION.md b/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/ACCEPT_ORGANIZATION_REQUEST_MUTATION.md deleted file mode 100644 index d9f6a8b081..0000000000 --- a/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/ACCEPT_ORGANIZATION_REQUEST_MUTATION.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [GraphQl/Mutations/mutations](../README.md) / ACCEPT\_ORGANIZATION\_REQUEST\_MUTATION - -# Variable: ACCEPT\_ORGANIZATION\_REQUEST\_MUTATION - -> `const` **ACCEPT\_ORGANIZATION\_REQUEST\_MUTATION**: `DocumentNode` - -Defined in: [src/GraphQl/Mutations/mutations.ts:33](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/GraphQl/Mutations/mutations.ts#L33) diff --git a/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/ADDRESS_DETAILS_FRAGMENT.md b/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/ADDRESS_DETAILS_FRAGMENT.md deleted file mode 100644 index bf54396ff7..0000000000 --- a/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/ADDRESS_DETAILS_FRAGMENT.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [GraphQl/Mutations/mutations](../README.md) / ADDRESS\_DETAILS\_FRAGMENT - -# Variable: ADDRESS\_DETAILS\_FRAGMENT - -> `const` **ADDRESS\_DETAILS\_FRAGMENT**: `DocumentNode` - -Defined in: [src/GraphQl/Mutations/mutations.ts:70](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/GraphQl/Mutations/mutations.ts#L70) diff --git a/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/ADD_ADMIN_MUTATION.md b/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/ADD_ADMIN_MUTATION.md deleted file mode 100644 index d1144439e2..0000000000 --- a/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/ADD_ADMIN_MUTATION.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [GraphQl/Mutations/mutations](../README.md) / ADD\_ADMIN\_MUTATION - -# Variable: ADD\_ADMIN\_MUTATION - -> `const` **ADD\_ADMIN\_MUTATION**: `DocumentNode` - -Defined in: [src/GraphQl/Mutations/mutations.ts:351](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/GraphQl/Mutations/mutations.ts#L351) diff --git a/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/ADD_ADVERTISEMENT_MUTATION.md b/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/ADD_ADVERTISEMENT_MUTATION.md deleted file mode 100644 index 188a14aa59..0000000000 --- a/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/ADD_ADVERTISEMENT_MUTATION.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [GraphQl/Mutations/mutations](../README.md) / ADD\_ADVERTISEMENT\_MUTATION - -# Variable: ADD\_ADVERTISEMENT\_MUTATION - -> `const` **ADD\_ADVERTISEMENT\_MUTATION**: `DocumentNode` - -Defined in: [src/GraphQl/Mutations/mutations.ts:486](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/GraphQl/Mutations/mutations.ts#L486) diff --git a/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/ADD_MEMBER_MUTATION.md b/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/ADD_MEMBER_MUTATION.md deleted file mode 100644 index fc2d68ecf4..0000000000 --- a/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/ADD_MEMBER_MUTATION.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [GraphQl/Mutations/mutations](../README.md) / ADD\_MEMBER\_MUTATION - -# Variable: ADD\_MEMBER\_MUTATION - -> `const` **ADD\_MEMBER\_MUTATION**: `DocumentNode` - -Defined in: [src/GraphQl/Mutations/mutations.ts:361](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/GraphQl/Mutations/mutations.ts#L361) diff --git a/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/ADD_PLUGIN_MUTATION.md b/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/ADD_PLUGIN_MUTATION.md deleted file mode 100644 index f1d5031083..0000000000 --- a/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/ADD_PLUGIN_MUTATION.md +++ /dev/null @@ -1,15 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [GraphQl/Mutations/mutations](../README.md) / ADD\_PLUGIN\_MUTATION - -# Variable: ADD\_PLUGIN\_MUTATION - -> `const` **ADD\_PLUGIN\_MUTATION**: `DocumentNode` - -Defined in: [src/GraphQl/Mutations/mutations.ts:468](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/GraphQl/Mutations/mutations.ts#L468) - -## Remarks - -used `createPlugin` to add new Plugin in database diff --git a/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/BLOCK_USER_MUTATION.md b/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/BLOCK_USER_MUTATION.md deleted file mode 100644 index 606951757d..0000000000 --- a/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/BLOCK_USER_MUTATION.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [GraphQl/Mutations/mutations](../README.md) / BLOCK\_USER\_MUTATION - -# Variable: BLOCK\_USER\_MUTATION - -> `const` **BLOCK\_USER\_MUTATION**: `DocumentNode` - -Defined in: [src/GraphQl/Mutations/mutations.ts:13](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/GraphQl/Mutations/mutations.ts#L13) diff --git a/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/CREATE_EVENT_MUTATION.md b/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/CREATE_EVENT_MUTATION.md deleted file mode 100644 index 80b89cdfea..0000000000 --- a/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/CREATE_EVENT_MUTATION.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [GraphQl/Mutations/mutations](../README.md) / CREATE\_EVENT\_MUTATION - -# Variable: CREATE\_EVENT\_MUTATION - -> `const` **CREATE\_EVENT\_MUTATION**: `DocumentNode` - -Defined in: [src/GraphQl/Mutations/mutations.ts:265](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/GraphQl/Mutations/mutations.ts#L265) diff --git a/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/CREATE_ORGANIZATION_MUTATION.md b/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/CREATE_ORGANIZATION_MUTATION.md deleted file mode 100644 index dbd2de8308..0000000000 --- a/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/CREATE_ORGANIZATION_MUTATION.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [GraphQl/Mutations/mutations](../README.md) / CREATE\_ORGANIZATION\_MUTATION - -# Variable: CREATE\_ORGANIZATION\_MUTATION - -> `const` **CREATE\_ORGANIZATION\_MUTATION**: `DocumentNode` - -Defined in: [src/GraphQl/Mutations/mutations.ts:227](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/GraphQl/Mutations/mutations.ts#L227) diff --git a/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/CREATE_POST_MUTATION.md b/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/CREATE_POST_MUTATION.md deleted file mode 100644 index be3642ffee..0000000000 --- a/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/CREATE_POST_MUTATION.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [GraphQl/Mutations/mutations](../README.md) / CREATE\_POST\_MUTATION - -# Variable: CREATE\_POST\_MUTATION - -> `const` **CREATE\_POST\_MUTATION**: `DocumentNode` - -Defined in: [src/GraphQl/Mutations/mutations.ts:371](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/GraphQl/Mutations/mutations.ts#L371) diff --git a/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/DELETE_ADVERTISEMENT_BY_ID.md b/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/DELETE_ADVERTISEMENT_BY_ID.md deleted file mode 100644 index a5aa84a370..0000000000 --- a/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/DELETE_ADVERTISEMENT_BY_ID.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [GraphQl/Mutations/mutations](../README.md) / DELETE\_ADVERTISEMENT\_BY\_ID - -# Variable: DELETE\_ADVERTISEMENT\_BY\_ID - -> `const` **DELETE\_ADVERTISEMENT\_BY\_ID**: `DocumentNode` - -Defined in: [src/GraphQl/Mutations/mutations.ts:536](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/GraphQl/Mutations/mutations.ts#L536) diff --git a/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/DELETE_EVENT_MUTATION.md b/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/DELETE_EVENT_MUTATION.md deleted file mode 100644 index 046e7aa217..0000000000 --- a/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/DELETE_EVENT_MUTATION.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [GraphQl/Mutations/mutations](../README.md) / DELETE\_EVENT\_MUTATION - -# Variable: DELETE\_EVENT\_MUTATION - -> `const` **DELETE\_EVENT\_MUTATION**: `DocumentNode` - -Defined in: [src/GraphQl/Mutations/mutations.ts:321](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/GraphQl/Mutations/mutations.ts#L321) diff --git a/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/DELETE_ORGANIZATION_MUTATION.md b/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/DELETE_ORGANIZATION_MUTATION.md deleted file mode 100644 index c4e82f1b40..0000000000 --- a/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/DELETE_ORGANIZATION_MUTATION.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [GraphQl/Mutations/mutations](../README.md) / DELETE\_ORGANIZATION\_MUTATION - -# Variable: DELETE\_ORGANIZATION\_MUTATION - -> `const` **DELETE\_ORGANIZATION\_MUTATION**: `DocumentNode` - -Defined in: [src/GraphQl/Mutations/mutations.ts:253](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/GraphQl/Mutations/mutations.ts#L253) diff --git a/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/DELETE_POST_MUTATION.md b/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/DELETE_POST_MUTATION.md deleted file mode 100644 index a5c679e338..0000000000 --- a/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/DELETE_POST_MUTATION.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [GraphQl/Mutations/mutations](../README.md) / DELETE\_POST\_MUTATION - -# Variable: DELETE\_POST\_MUTATION - -> `const` **DELETE\_POST\_MUTATION**: `DocumentNode` - -Defined in: [src/GraphQl/Mutations/mutations.ts:397](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/GraphQl/Mutations/mutations.ts#L397) diff --git a/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/DONATE_TO_ORGANIZATION.md b/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/DONATE_TO_ORGANIZATION.md deleted file mode 100644 index 9695617580..0000000000 --- a/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/DONATE_TO_ORGANIZATION.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [GraphQl/Mutations/mutations](../README.md) / DONATE\_TO\_ORGANIZATION - -# Variable: DONATE\_TO\_ORGANIZATION - -> `const` **DONATE\_TO\_ORGANIZATION**: `DocumentNode` - -Defined in: [src/GraphQl/Mutations/mutations.ts:663](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/GraphQl/Mutations/mutations.ts#L663) diff --git a/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/FORGOT_PASSWORD_MUTATION.md b/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/FORGOT_PASSWORD_MUTATION.md deleted file mode 100644 index 91ab3d2664..0000000000 --- a/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/FORGOT_PASSWORD_MUTATION.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [GraphQl/Mutations/mutations](../README.md) / FORGOT\_PASSWORD\_MUTATION - -# Variable: FORGOT\_PASSWORD\_MUTATION - -> `const` **FORGOT\_PASSWORD\_MUTATION**: `DocumentNode` - -Defined in: [src/GraphQl/Mutations/mutations.ts:413](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/GraphQl/Mutations/mutations.ts#L413) diff --git a/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/GENERATE_OTP_MUTATION.md b/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/GENERATE_OTP_MUTATION.md deleted file mode 100644 index 5ee4f642ba..0000000000 --- a/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/GENERATE_OTP_MUTATION.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [GraphQl/Mutations/mutations](../README.md) / GENERATE\_OTP\_MUTATION - -# Variable: GENERATE\_OTP\_MUTATION - -> `const` **GENERATE\_OTP\_MUTATION**: `DocumentNode` - -Defined in: [src/GraphQl/Mutations/mutations.ts:405](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/GraphQl/Mutations/mutations.ts#L405) diff --git a/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/LIKE_POST.md b/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/LIKE_POST.md deleted file mode 100644 index f824132633..0000000000 --- a/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/LIKE_POST.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [GraphQl/Mutations/mutations](../README.md) / LIKE\_POST - -# Variable: LIKE\_POST - -> `const` **LIKE\_POST**: `DocumentNode` - -Defined in: [src/GraphQl/Mutations/mutations.ts:621](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/GraphQl/Mutations/mutations.ts#L621) diff --git a/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/LOGIN_MUTATION.md b/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/LOGIN_MUTATION.md deleted file mode 100644 index 77a35fda73..0000000000 --- a/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/LOGIN_MUTATION.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [GraphQl/Mutations/mutations](../README.md) / LOGIN\_MUTATION - -# Variable: LOGIN\_MUTATION - -> `const` **LOGIN\_MUTATION**: `DocumentNode` - -Defined in: [src/GraphQl/Mutations/mutations.ts:175](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/GraphQl/Mutations/mutations.ts#L175) diff --git a/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/RECAPTCHA_MUTATION.md b/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/RECAPTCHA_MUTATION.md deleted file mode 100644 index dbc0efef14..0000000000 --- a/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/RECAPTCHA_MUTATION.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [GraphQl/Mutations/mutations](../README.md) / RECAPTCHA\_MUTATION - -# Variable: RECAPTCHA\_MUTATION - -> `const` **RECAPTCHA\_MUTATION**: `DocumentNode` - -Defined in: [src/GraphQl/Mutations/mutations.ts:219](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/GraphQl/Mutations/mutations.ts#L219) diff --git a/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/REFRESH_TOKEN_MUTATION.md b/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/REFRESH_TOKEN_MUTATION.md deleted file mode 100644 index f035658544..0000000000 --- a/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/REFRESH_TOKEN_MUTATION.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [GraphQl/Mutations/mutations](../README.md) / REFRESH\_TOKEN\_MUTATION - -# Variable: REFRESH\_TOKEN\_MUTATION - -> `const` **REFRESH\_TOKEN\_MUTATION**: `DocumentNode` - -Defined in: [src/GraphQl/Mutations/mutations.ts:200](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/GraphQl/Mutations/mutations.ts#L200) diff --git a/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/REGISTER_EVENT.md b/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/REGISTER_EVENT.md deleted file mode 100644 index 07aa03e4c3..0000000000 --- a/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/REGISTER_EVENT.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [GraphQl/Mutations/mutations](../README.md) / REGISTER\_EVENT - -# Variable: REGISTER\_EVENT - -> `const` **REGISTER\_EVENT**: `DocumentNode` - -Defined in: [src/GraphQl/Mutations/mutations.ts:637](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/GraphQl/Mutations/mutations.ts#L637) diff --git a/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/REJECT_ORGANIZATION_REQUEST_MUTATION.md b/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/REJECT_ORGANIZATION_REQUEST_MUTATION.md deleted file mode 100644 index 7fcd4e9d27..0000000000 --- a/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/REJECT_ORGANIZATION_REQUEST_MUTATION.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [GraphQl/Mutations/mutations](../README.md) / REJECT\_ORGANIZATION\_REQUEST\_MUTATION - -# Variable: REJECT\_ORGANIZATION\_REQUEST\_MUTATION - -> `const` **REJECT\_ORGANIZATION\_REQUEST\_MUTATION**: `DocumentNode` - -Defined in: [src/GraphQl/Mutations/mutations.ts:23](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/GraphQl/Mutations/mutations.ts#L23) diff --git a/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/REMOVE_ADMIN_MUTATION.md b/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/REMOVE_ADMIN_MUTATION.md deleted file mode 100644 index 182dca9795..0000000000 --- a/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/REMOVE_ADMIN_MUTATION.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [GraphQl/Mutations/mutations](../README.md) / REMOVE\_ADMIN\_MUTATION - -# Variable: REMOVE\_ADMIN\_MUTATION - -> `const` **REMOVE\_ADMIN\_MUTATION**: `DocumentNode` - -Defined in: [src/GraphQl/Mutations/mutations.ts:333](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/GraphQl/Mutations/mutations.ts#L333) diff --git a/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/REMOVE_MEMBER_MUTATION.md b/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/REMOVE_MEMBER_MUTATION.md deleted file mode 100644 index cc3819a76a..0000000000 --- a/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/REMOVE_MEMBER_MUTATION.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [GraphQl/Mutations/mutations](../README.md) / REMOVE\_MEMBER\_MUTATION - -# Variable: REMOVE\_MEMBER\_MUTATION - -> `const` **REMOVE\_MEMBER\_MUTATION**: `DocumentNode` - -Defined in: [src/GraphQl/Mutations/mutations.ts:342](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/GraphQl/Mutations/mutations.ts#L342) diff --git a/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/RESET_COMMUNITY.md b/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/RESET_COMMUNITY.md deleted file mode 100644 index 9729645bf0..0000000000 --- a/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/RESET_COMMUNITY.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [GraphQl/Mutations/mutations](../README.md) / RESET\_COMMUNITY - -# Variable: RESET\_COMMUNITY - -> `const` **RESET\_COMMUNITY**: `DocumentNode` - -Defined in: [src/GraphQl/Mutations/mutations.ts:657](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/GraphQl/Mutations/mutations.ts#L657) diff --git a/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/REVOKE_REFRESH_TOKEN.md b/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/REVOKE_REFRESH_TOKEN.md deleted file mode 100644 index 52bfb45e1d..0000000000 --- a/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/REVOKE_REFRESH_TOKEN.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [GraphQl/Mutations/mutations](../README.md) / REVOKE\_REFRESH\_TOKEN - -# Variable: REVOKE\_REFRESH\_TOKEN - -> `const` **REVOKE\_REFRESH\_TOKEN**: `DocumentNode` - -Defined in: [src/GraphQl/Mutations/mutations.ts:211](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/GraphQl/Mutations/mutations.ts#L211) diff --git a/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/SIGNUP_MUTATION.md b/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/SIGNUP_MUTATION.md deleted file mode 100644 index a4259eff98..0000000000 --- a/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/SIGNUP_MUTATION.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [GraphQl/Mutations/mutations](../README.md) / SIGNUP\_MUTATION - -# Variable: SIGNUP\_MUTATION - -> `const` **SIGNUP\_MUTATION**: `DocumentNode` - -Defined in: [src/GraphQl/Mutations/mutations.ts:147](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/GraphQl/Mutations/mutations.ts#L147) diff --git a/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/UNBLOCK_USER_MUTATION.md b/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/UNBLOCK_USER_MUTATION.md deleted file mode 100644 index 636da7218d..0000000000 --- a/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/UNBLOCK_USER_MUTATION.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [GraphQl/Mutations/mutations](../README.md) / UNBLOCK\_USER\_MUTATION - -# Variable: UNBLOCK\_USER\_MUTATION - -> `const` **UNBLOCK\_USER\_MUTATION**: `DocumentNode` - -Defined in: [src/GraphQl/Mutations/mutations.ts:3](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/GraphQl/Mutations/mutations.ts#L3) diff --git a/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/UNLIKE_POST.md b/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/UNLIKE_POST.md deleted file mode 100644 index 85897062a6..0000000000 --- a/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/UNLIKE_POST.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [GraphQl/Mutations/mutations](../README.md) / UNLIKE\_POST - -# Variable: UNLIKE\_POST - -> `const` **UNLIKE\_POST**: `DocumentNode` - -Defined in: [src/GraphQl/Mutations/mutations.ts:629](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/GraphQl/Mutations/mutations.ts#L629) diff --git a/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/UPDATE_ADVERTISEMENT_MUTATION.md b/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/UPDATE_ADVERTISEMENT_MUTATION.md deleted file mode 100644 index 74b1f713f1..0000000000 --- a/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/UPDATE_ADVERTISEMENT_MUTATION.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [GraphQl/Mutations/mutations](../README.md) / UPDATE\_ADVERTISEMENT\_MUTATION - -# Variable: UPDATE\_ADVERTISEMENT\_MUTATION - -> `const` **UPDATE\_ADVERTISEMENT\_MUTATION**: `DocumentNode` - -Defined in: [src/GraphQl/Mutations/mutations.ts:511](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/GraphQl/Mutations/mutations.ts#L511) diff --git a/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/UPDATE_COMMUNITY.md b/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/UPDATE_COMMUNITY.md deleted file mode 100644 index b1b48de494..0000000000 --- a/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/UPDATE_COMMUNITY.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [GraphQl/Mutations/mutations](../README.md) / UPDATE\_COMMUNITY - -# Variable: UPDATE\_COMMUNITY - -> `const` **UPDATE\_COMMUNITY**: `DocumentNode` - -Defined in: [src/GraphQl/Mutations/mutations.ts:645](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/GraphQl/Mutations/mutations.ts#L645) diff --git a/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/UPDATE_EVENT_MUTATION.md b/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/UPDATE_EVENT_MUTATION.md deleted file mode 100644 index 94f7fb5bc5..0000000000 --- a/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/UPDATE_EVENT_MUTATION.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [GraphQl/Mutations/mutations](../README.md) / UPDATE\_EVENT\_MUTATION - -# Variable: UPDATE\_EVENT\_MUTATION - -> `const` **UPDATE\_EVENT\_MUTATION**: `DocumentNode` - -Defined in: [src/GraphQl/Mutations/mutations.ts:567](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/GraphQl/Mutations/mutations.ts#L567) diff --git a/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/UPDATE_INSTALL_STATUS_PLUGIN_MUTATION.md b/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/UPDATE_INSTALL_STATUS_PLUGIN_MUTATION.md deleted file mode 100644 index 1407d82254..0000000000 --- a/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/UPDATE_INSTALL_STATUS_PLUGIN_MUTATION.md +++ /dev/null @@ -1,15 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [GraphQl/Mutations/mutations](../README.md) / UPDATE\_INSTALL\_STATUS\_PLUGIN\_MUTATION - -# Variable: UPDATE\_INSTALL\_STATUS\_PLUGIN\_MUTATION - -> `const` **UPDATE\_INSTALL\_STATUS\_PLUGIN\_MUTATION**: `DocumentNode` - -Defined in: [src/GraphQl/Mutations/mutations.ts:434](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/GraphQl/Mutations/mutations.ts#L434) - -## Remarks - -used to toggle `installStatus` (boolean value) of a Plugin diff --git a/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/UPDATE_ORGANIZATION_MUTATION.md b/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/UPDATE_ORGANIZATION_MUTATION.md deleted file mode 100644 index d9946b79d3..0000000000 --- a/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/UPDATE_ORGANIZATION_MUTATION.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [GraphQl/Mutations/mutations](../README.md) / UPDATE\_ORGANIZATION\_MUTATION - -# Variable: UPDATE\_ORGANIZATION\_MUTATION - -> `const` **UPDATE\_ORGANIZATION\_MUTATION**: `DocumentNode` - -Defined in: [src/GraphQl/Mutations/mutations.ts:43](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/GraphQl/Mutations/mutations.ts#L43) diff --git a/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/UPDATE_ORG_STATUS_PLUGIN_MUTATION.md b/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/UPDATE_ORG_STATUS_PLUGIN_MUTATION.md deleted file mode 100644 index 8575912779..0000000000 --- a/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/UPDATE_ORG_STATUS_PLUGIN_MUTATION.md +++ /dev/null @@ -1,15 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [GraphQl/Mutations/mutations](../README.md) / UPDATE\_ORG\_STATUS\_PLUGIN\_MUTATION - -# Variable: UPDATE\_ORG\_STATUS\_PLUGIN\_MUTATION - -> `const` **UPDATE\_ORG\_STATUS\_PLUGIN\_MUTATION**: `DocumentNode` - -Defined in: [src/GraphQl/Mutations/mutations.ts:451](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/GraphQl/Mutations/mutations.ts#L451) - -## Remarks - -used `updatePluginStatus`to add or remove the current Organization the in the plugin list `uninstalledOrgs` diff --git a/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/UPDATE_POST_MUTATION.md b/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/UPDATE_POST_MUTATION.md deleted file mode 100644 index b5bffb3a31..0000000000 --- a/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/UPDATE_POST_MUTATION.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [GraphQl/Mutations/mutations](../README.md) / UPDATE\_POST\_MUTATION - -# Variable: UPDATE\_POST\_MUTATION - -> `const` **UPDATE\_POST\_MUTATION**: `DocumentNode` - -Defined in: [src/GraphQl/Mutations/mutations.ts:545](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/GraphQl/Mutations/mutations.ts#L545) diff --git a/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/UPDATE_SESSION_TIMEOUT.md b/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/UPDATE_SESSION_TIMEOUT.md deleted file mode 100644 index 6d24a44182..0000000000 --- a/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/UPDATE_SESSION_TIMEOUT.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [GraphQl/Mutations/mutations](../README.md) / UPDATE\_SESSION\_TIMEOUT - -# Variable: UPDATE\_SESSION\_TIMEOUT - -> `const` **UPDATE\_SESSION\_TIMEOUT**: `DocumentNode` - -Defined in: [src/GraphQl/Mutations/mutations.ts:651](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/GraphQl/Mutations/mutations.ts#L651) diff --git a/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/UPDATE_USER_MUTATION.md b/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/UPDATE_USER_MUTATION.md deleted file mode 100644 index 54ec5a2c2c..0000000000 --- a/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/UPDATE_USER_MUTATION.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [GraphQl/Mutations/mutations](../README.md) / UPDATE\_USER\_MUTATION - -# Variable: UPDATE\_USER\_MUTATION - -> `const` **UPDATE\_USER\_MUTATION**: `DocumentNode` - -Defined in: [src/GraphQl/Mutations/mutations.ts:85](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/GraphQl/Mutations/mutations.ts#L85) diff --git a/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/UPDATE_USER_PASSWORD_MUTATION.md b/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/UPDATE_USER_PASSWORD_MUTATION.md deleted file mode 100644 index 522a058a8d..0000000000 --- a/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/UPDATE_USER_PASSWORD_MUTATION.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [GraphQl/Mutations/mutations](../README.md) / UPDATE\_USER\_PASSWORD\_MUTATION - -# Variable: UPDATE\_USER\_PASSWORD\_MUTATION - -> `const` **UPDATE\_USER\_PASSWORD\_MUTATION**: `DocumentNode` - -Defined in: [src/GraphQl/Mutations/mutations.ts:125](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/GraphQl/Mutations/mutations.ts#L125) diff --git a/docs/docs/auto-docs/GraphQl/Queries/ActionItemCategoryQueries/README.md b/docs/docs/auto-docs/GraphQl/Queries/ActionItemCategoryQueries/README.md deleted file mode 100644 index 8136f04a59..0000000000 --- a/docs/docs/auto-docs/GraphQl/Queries/ActionItemCategoryQueries/README.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / GraphQl/Queries/ActionItemCategoryQueries - -# GraphQl/Queries/ActionItemCategoryQueries - -## Variables - -- [ACTION\_ITEM\_CATEGORY\_LIST](variables/ACTION_ITEM_CATEGORY_LIST.md) diff --git a/docs/docs/auto-docs/GraphQl/Queries/ActionItemCategoryQueries/variables/ACTION_ITEM_CATEGORY_LIST.md b/docs/docs/auto-docs/GraphQl/Queries/ActionItemCategoryQueries/variables/ACTION_ITEM_CATEGORY_LIST.md deleted file mode 100644 index bfeccd5127..0000000000 --- a/docs/docs/auto-docs/GraphQl/Queries/ActionItemCategoryQueries/variables/ACTION_ITEM_CATEGORY_LIST.md +++ /dev/null @@ -1,21 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [GraphQl/Queries/ActionItemCategoryQueries](../README.md) / ACTION\_ITEM\_CATEGORY\_LIST - -# Variable: ACTION\_ITEM\_CATEGORY\_LIST - -> `const` **ACTION\_ITEM\_CATEGORY\_LIST**: `DocumentNode` - -Defined in: [src/GraphQl/Queries/ActionItemCategoryQueries.ts:10](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/GraphQl/Queries/ActionItemCategoryQueries.ts#L10) - -GraphQL query to retrieve action item categories by organization. - -## Param - -The ID of the organization for which action item categories are being retrieved. - -## Returns - -The list of action item categories associated with the organization. diff --git a/docs/docs/auto-docs/GraphQl/Queries/ActionItemQueries/README.md b/docs/docs/auto-docs/GraphQl/Queries/ActionItemQueries/README.md deleted file mode 100644 index e1ceadc0ec..0000000000 --- a/docs/docs/auto-docs/GraphQl/Queries/ActionItemQueries/README.md +++ /dev/null @@ -1,12 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / GraphQl/Queries/ActionItemQueries - -# GraphQl/Queries/ActionItemQueries - -## Variables - -- [ACTION\_ITEM\_LIST](variables/ACTION_ITEM_LIST.md) -- [ACTION\_ITEMS\_BY\_USER](variables/ACTION_ITEMS_BY_USER.md) diff --git a/docs/docs/auto-docs/GraphQl/Queries/ActionItemQueries/variables/ACTION_ITEMS_BY_USER.md b/docs/docs/auto-docs/GraphQl/Queries/ActionItemQueries/variables/ACTION_ITEMS_BY_USER.md deleted file mode 100644 index f33e5be07d..0000000000 --- a/docs/docs/auto-docs/GraphQl/Queries/ActionItemQueries/variables/ACTION_ITEMS_BY_USER.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [GraphQl/Queries/ActionItemQueries](../README.md) / ACTION\_ITEMS\_BY\_USER - -# Variable: ACTION\_ITEMS\_BY\_USER - -> `const` **ACTION\_ITEMS\_BY\_USER**: `DocumentNode` - -Defined in: [src/GraphQl/Queries/ActionItemQueries.ts:78](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/GraphQl/Queries/ActionItemQueries.ts#L78) diff --git a/docs/docs/auto-docs/GraphQl/Queries/ActionItemQueries/variables/ACTION_ITEM_LIST.md b/docs/docs/auto-docs/GraphQl/Queries/ActionItemQueries/variables/ACTION_ITEM_LIST.md deleted file mode 100644 index 2d849020ca..0000000000 --- a/docs/docs/auto-docs/GraphQl/Queries/ActionItemQueries/variables/ACTION_ITEM_LIST.md +++ /dev/null @@ -1,37 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [GraphQl/Queries/ActionItemQueries](../README.md) / ACTION\_ITEM\_LIST - -# Variable: ACTION\_ITEM\_LIST - -> `const` **ACTION\_ITEM\_LIST**: `DocumentNode` - -Defined in: [src/GraphQl/Queries/ActionItemQueries.ts:14](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/GraphQl/Queries/ActionItemQueries.ts#L14) - -GraphQL query to retrieve action item categories by organization. - -## Param - -The ID of the organization for which action item categories are being retrieved. - -## Param - -Sort action items Latest/Earliest first. - -## Param - -Filter action items belonging to an action item category. - -## Param - -Filter action items belonging to an event. - -## Param - -Filter all the completed action items. - -## Returns - -The list of action item categories associated with the organization. diff --git a/docs/docs/auto-docs/GraphQl/Queries/AgendaCategoryQueries/README.md b/docs/docs/auto-docs/GraphQl/Queries/AgendaCategoryQueries/README.md deleted file mode 100644 index ee135197c4..0000000000 --- a/docs/docs/auto-docs/GraphQl/Queries/AgendaCategoryQueries/README.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / GraphQl/Queries/AgendaCategoryQueries - -# GraphQl/Queries/AgendaCategoryQueries - -## Variables - -- [AGENDA\_ITEM\_CATEGORY\_LIST](variables/AGENDA_ITEM_CATEGORY_LIST.md) diff --git a/docs/docs/auto-docs/GraphQl/Queries/AgendaCategoryQueries/variables/AGENDA_ITEM_CATEGORY_LIST.md b/docs/docs/auto-docs/GraphQl/Queries/AgendaCategoryQueries/variables/AGENDA_ITEM_CATEGORY_LIST.md deleted file mode 100644 index 6d3430196a..0000000000 --- a/docs/docs/auto-docs/GraphQl/Queries/AgendaCategoryQueries/variables/AGENDA_ITEM_CATEGORY_LIST.md +++ /dev/null @@ -1,21 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [GraphQl/Queries/AgendaCategoryQueries](../README.md) / AGENDA\_ITEM\_CATEGORY\_LIST - -# Variable: AGENDA\_ITEM\_CATEGORY\_LIST - -> `const` **AGENDA\_ITEM\_CATEGORY\_LIST**: `DocumentNode` - -Defined in: [src/GraphQl/Queries/AgendaCategoryQueries.ts:10](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/GraphQl/Queries/AgendaCategoryQueries.ts#L10) - -GraphQL query to retrieve agenda category by id. - -## Param - -The ID of the category which is being retrieved. - -## Returns - -Agenda category associated with the id. diff --git a/docs/docs/auto-docs/GraphQl/Queries/AgendaItemQueries/README.md b/docs/docs/auto-docs/GraphQl/Queries/AgendaItemQueries/README.md deleted file mode 100644 index 63bdc31b06..0000000000 --- a/docs/docs/auto-docs/GraphQl/Queries/AgendaItemQueries/README.md +++ /dev/null @@ -1,12 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / GraphQl/Queries/AgendaItemQueries - -# GraphQl/Queries/AgendaItemQueries - -## Variables - -- [AgendaItemByEvent](variables/AgendaItemByEvent.md) -- [AgendaItemByOrganization](variables/AgendaItemByOrganization.md) diff --git a/docs/docs/auto-docs/GraphQl/Queries/AgendaItemQueries/variables/AgendaItemByEvent.md b/docs/docs/auto-docs/GraphQl/Queries/AgendaItemQueries/variables/AgendaItemByEvent.md deleted file mode 100644 index 1ae944ec06..0000000000 --- a/docs/docs/auto-docs/GraphQl/Queries/AgendaItemQueries/variables/AgendaItemByEvent.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [GraphQl/Queries/AgendaItemQueries](../README.md) / AgendaItemByEvent - -# Variable: AgendaItemByEvent - -> `const` **AgendaItemByEvent**: `DocumentNode` - -Defined in: [src/GraphQl/Queries/AgendaItemQueries.ts:39](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/GraphQl/Queries/AgendaItemQueries.ts#L39) diff --git a/docs/docs/auto-docs/GraphQl/Queries/AgendaItemQueries/variables/AgendaItemByOrganization.md b/docs/docs/auto-docs/GraphQl/Queries/AgendaItemQueries/variables/AgendaItemByOrganization.md deleted file mode 100644 index 6dc8c96c31..0000000000 --- a/docs/docs/auto-docs/GraphQl/Queries/AgendaItemQueries/variables/AgendaItemByOrganization.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [GraphQl/Queries/AgendaItemQueries](../README.md) / AgendaItemByOrganization - -# Variable: AgendaItemByOrganization - -> `const` **AgendaItemByOrganization**: `DocumentNode` - -Defined in: [src/GraphQl/Queries/AgendaItemQueries.ts:3](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/GraphQl/Queries/AgendaItemQueries.ts#L3) diff --git a/docs/docs/auto-docs/GraphQl/Queries/EventVolunteerQueries/README.md b/docs/docs/auto-docs/GraphQl/Queries/EventVolunteerQueries/README.md deleted file mode 100644 index 0c596e0620..0000000000 --- a/docs/docs/auto-docs/GraphQl/Queries/EventVolunteerQueries/README.md +++ /dev/null @@ -1,14 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / GraphQl/Queries/EventVolunteerQueries - -# GraphQl/Queries/EventVolunteerQueries - -## Variables - -- [EVENT\_VOLUNTEER\_GROUP\_LIST](variables/EVENT_VOLUNTEER_GROUP_LIST.md) -- [EVENT\_VOLUNTEER\_LIST](variables/EVENT_VOLUNTEER_LIST.md) -- [USER\_VOLUNTEER\_MEMBERSHIP](variables/USER_VOLUNTEER_MEMBERSHIP.md) -- [VOLUNTEER\_RANKING](variables/VOLUNTEER_RANKING.md) diff --git a/docs/docs/auto-docs/GraphQl/Queries/EventVolunteerQueries/variables/EVENT_VOLUNTEER_GROUP_LIST.md b/docs/docs/auto-docs/GraphQl/Queries/EventVolunteerQueries/variables/EVENT_VOLUNTEER_GROUP_LIST.md deleted file mode 100644 index 005f6fcc29..0000000000 --- a/docs/docs/auto-docs/GraphQl/Queries/EventVolunteerQueries/variables/EVENT_VOLUNTEER_GROUP_LIST.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [GraphQl/Queries/EventVolunteerQueries](../README.md) / EVENT\_VOLUNTEER\_GROUP\_LIST - -# Variable: EVENT\_VOLUNTEER\_GROUP\_LIST - -> `const` **EVENT\_VOLUNTEER\_GROUP\_LIST**: `DocumentNode` - -Defined in: [src/GraphQl/Queries/EventVolunteerQueries.ts:41](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/GraphQl/Queries/EventVolunteerQueries.ts#L41) diff --git a/docs/docs/auto-docs/GraphQl/Queries/EventVolunteerQueries/variables/EVENT_VOLUNTEER_LIST.md b/docs/docs/auto-docs/GraphQl/Queries/EventVolunteerQueries/variables/EVENT_VOLUNTEER_LIST.md deleted file mode 100644 index b7dc3b587e..0000000000 --- a/docs/docs/auto-docs/GraphQl/Queries/EventVolunteerQueries/variables/EVENT_VOLUNTEER_LIST.md +++ /dev/null @@ -1,25 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [GraphQl/Queries/EventVolunteerQueries](../README.md) / EVENT\_VOLUNTEER\_LIST - -# Variable: EVENT\_VOLUNTEER\_LIST - -> `const` **EVENT\_VOLUNTEER\_LIST**: `DocumentNode` - -Defined in: [src/GraphQl/Queries/EventVolunteerQueries.ts:12](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/GraphQl/Queries/EventVolunteerQueries.ts#L12) - -GraphQL query to retrieve event volunteers. - -## Param - -The filter to apply to the query. - -## Param - -The order in which to return the results. - -## Returns - -The list of event volunteers. diff --git a/docs/docs/auto-docs/GraphQl/Queries/EventVolunteerQueries/variables/USER_VOLUNTEER_MEMBERSHIP.md b/docs/docs/auto-docs/GraphQl/Queries/EventVolunteerQueries/variables/USER_VOLUNTEER_MEMBERSHIP.md deleted file mode 100644 index 4fba06195c..0000000000 --- a/docs/docs/auto-docs/GraphQl/Queries/EventVolunteerQueries/variables/USER_VOLUNTEER_MEMBERSHIP.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [GraphQl/Queries/EventVolunteerQueries](../README.md) / USER\_VOLUNTEER\_MEMBERSHIP - -# Variable: USER\_VOLUNTEER\_MEMBERSHIP - -> `const` **USER\_VOLUNTEER\_MEMBERSHIP**: `DocumentNode` - -Defined in: [src/GraphQl/Queries/EventVolunteerQueries.ts:89](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/GraphQl/Queries/EventVolunteerQueries.ts#L89) diff --git a/docs/docs/auto-docs/GraphQl/Queries/EventVolunteerQueries/variables/VOLUNTEER_RANKING.md b/docs/docs/auto-docs/GraphQl/Queries/EventVolunteerQueries/variables/VOLUNTEER_RANKING.md deleted file mode 100644 index 19cac74b90..0000000000 --- a/docs/docs/auto-docs/GraphQl/Queries/EventVolunteerQueries/variables/VOLUNTEER_RANKING.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [GraphQl/Queries/EventVolunteerQueries](../README.md) / VOLUNTEER\_RANKING - -# Variable: VOLUNTEER\_RANKING - -> `const` **VOLUNTEER\_RANKING**: `DocumentNode` - -Defined in: [src/GraphQl/Queries/EventVolunteerQueries.ts:120](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/GraphQl/Queries/EventVolunteerQueries.ts#L120) diff --git a/docs/docs/auto-docs/GraphQl/Queries/OrganizationQueries/README.md b/docs/docs/auto-docs/GraphQl/Queries/OrganizationQueries/README.md deleted file mode 100644 index 3ac3536541..0000000000 --- a/docs/docs/auto-docs/GraphQl/Queries/OrganizationQueries/README.md +++ /dev/null @@ -1,19 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / GraphQl/Queries/OrganizationQueries - -# GraphQl/Queries/OrganizationQueries - -## Variables - -- [ORGANIZATION\_ADMINS\_LIST](variables/ORGANIZATION_ADMINS_LIST.md) -- [ORGANIZATION\_ADVERTISEMENT\_LIST](variables/ORGANIZATION_ADVERTISEMENT_LIST.md) -- [ORGANIZATION\_FUNDS](variables/ORGANIZATION_FUNDS.md) -- [ORGANIZATION\_POST\_LIST](variables/ORGANIZATION_POST_LIST.md) -- [ORGANIZATION\_USER\_TAGS\_LIST](variables/ORGANIZATION_USER_TAGS_LIST.md) -- [USER\_CREATED\_ORGANIZATIONS](variables/USER_CREATED_ORGANIZATIONS.md) -- [USER\_JOINED\_ORGANIZATIONS](variables/USER_JOINED_ORGANIZATIONS.md) -- [USER\_ORGANIZATION\_CONNECTION](variables/USER_ORGANIZATION_CONNECTION.md) -- [VENUE\_LIST](variables/VENUE_LIST.md) diff --git a/docs/docs/auto-docs/GraphQl/Queries/OrganizationQueries/variables/ORGANIZATION_ADMINS_LIST.md b/docs/docs/auto-docs/GraphQl/Queries/OrganizationQueries/variables/ORGANIZATION_ADMINS_LIST.md deleted file mode 100644 index 6811a1b36d..0000000000 --- a/docs/docs/auto-docs/GraphQl/Queries/OrganizationQueries/variables/ORGANIZATION_ADMINS_LIST.md +++ /dev/null @@ -1,21 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [GraphQl/Queries/OrganizationQueries](../README.md) / ORGANIZATION\_ADMINS\_LIST - -# Variable: ORGANIZATION\_ADMINS\_LIST - -> `const` **ORGANIZATION\_ADMINS\_LIST**: `DocumentNode` - -Defined in: [src/GraphQl/Queries/OrganizationQueries.ts:314](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/GraphQl/Queries/OrganizationQueries.ts#L314) - -GraphQL query to retrieve the list of admins for a specific organization. - -## Param - -The ID of the organization for which admins are being retrieved. - -## Returns - -The list of admins associated with the organization. diff --git a/docs/docs/auto-docs/GraphQl/Queries/OrganizationQueries/variables/ORGANIZATION_ADVERTISEMENT_LIST.md b/docs/docs/auto-docs/GraphQl/Queries/OrganizationQueries/variables/ORGANIZATION_ADVERTISEMENT_LIST.md deleted file mode 100644 index cc4278ed98..0000000000 --- a/docs/docs/auto-docs/GraphQl/Queries/OrganizationQueries/variables/ORGANIZATION_ADVERTISEMENT_LIST.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [GraphQl/Queries/OrganizationQueries](../README.md) / ORGANIZATION\_ADVERTISEMENT\_LIST - -# Variable: ORGANIZATION\_ADVERTISEMENT\_LIST - -> `const` **ORGANIZATION\_ADVERTISEMENT\_LIST**: `DocumentNode` - -Defined in: [src/GraphQl/Queries/OrganizationQueries.ts:134](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/GraphQl/Queries/OrganizationQueries.ts#L134) diff --git a/docs/docs/auto-docs/GraphQl/Queries/OrganizationQueries/variables/ORGANIZATION_FUNDS.md b/docs/docs/auto-docs/GraphQl/Queries/OrganizationQueries/variables/ORGANIZATION_FUNDS.md deleted file mode 100644 index b3686e87e7..0000000000 --- a/docs/docs/auto-docs/GraphQl/Queries/OrganizationQueries/variables/ORGANIZATION_FUNDS.md +++ /dev/null @@ -1,21 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [GraphQl/Queries/OrganizationQueries](../README.md) / ORGANIZATION\_FUNDS - -# Variable: ORGANIZATION\_FUNDS - -> `const` **ORGANIZATION\_FUNDS**: `DocumentNode` - -Defined in: [src/GraphQl/Queries/OrganizationQueries.ts:335](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/GraphQl/Queries/OrganizationQueries.ts#L335) - -GraphQL query to retrieve the list of members for a specific organization. - -## Param - -The ID of the organization for which members are being retrieved. - -## Returns - -The list of members associated with the organization. diff --git a/docs/docs/auto-docs/GraphQl/Queries/OrganizationQueries/variables/ORGANIZATION_POST_LIST.md b/docs/docs/auto-docs/GraphQl/Queries/OrganizationQueries/variables/ORGANIZATION_POST_LIST.md deleted file mode 100644 index 08c5f6fb9d..0000000000 --- a/docs/docs/auto-docs/GraphQl/Queries/OrganizationQueries/variables/ORGANIZATION_POST_LIST.md +++ /dev/null @@ -1,33 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [GraphQl/Queries/OrganizationQueries](../README.md) / ORGANIZATION\_POST\_LIST - -# Variable: ORGANIZATION\_POST\_LIST - -> `const` **ORGANIZATION\_POST\_LIST**: `DocumentNode` - -Defined in: [src/GraphQl/Queries/OrganizationQueries.ts:15](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/GraphQl/Queries/OrganizationQueries.ts#L15) - -GraphQL query to retrieve the list of organizations. - -## Param - -Optional. Number of organizations to retrieve in the first batch. - -## Param - -Optional. Number of organizations to skip before starting to collect the result set. - -## Param - -Optional. Filter organizations by a specified string. - -## Param - -Optional. The ID of a specific organization to retrieve. - -## Returns - -The list of organizations based on the applied filters. diff --git a/docs/docs/auto-docs/GraphQl/Queries/OrganizationQueries/variables/ORGANIZATION_USER_TAGS_LIST.md b/docs/docs/auto-docs/GraphQl/Queries/OrganizationQueries/variables/ORGANIZATION_USER_TAGS_LIST.md deleted file mode 100644 index 47515772da..0000000000 --- a/docs/docs/auto-docs/GraphQl/Queries/OrganizationQueries/variables/ORGANIZATION_USER_TAGS_LIST.md +++ /dev/null @@ -1,37 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [GraphQl/Queries/OrganizationQueries](../README.md) / ORGANIZATION\_USER\_TAGS\_LIST - -# Variable: ORGANIZATION\_USER\_TAGS\_LIST - -> `const` **ORGANIZATION\_USER\_TAGS\_LIST**: `DocumentNode` - -Defined in: [src/GraphQl/Queries/OrganizationQueries.ts:83](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/GraphQl/Queries/OrganizationQueries.ts#L83) - -GraphQL query to retrieve the list of user tags belonging to an organization. - -## Param - -ID of the organization. - -## Param - -Number of tags to retrieve "after" (if provided) a certain tag. - -## Param - -Id of the last tag on the current page. - -## Param - -Number of tags to retrieve "before" (if provided) a certain tag. - -## Param - -Id of the first tag on the current page. - -## Returns - -The list of organizations based on the applied filters. diff --git a/docs/docs/auto-docs/GraphQl/Queries/OrganizationQueries/variables/USER_CREATED_ORGANIZATIONS.md b/docs/docs/auto-docs/GraphQl/Queries/OrganizationQueries/variables/USER_CREATED_ORGANIZATIONS.md deleted file mode 100644 index d2f6ad869f..0000000000 --- a/docs/docs/auto-docs/GraphQl/Queries/OrganizationQueries/variables/USER_CREATED_ORGANIZATIONS.md +++ /dev/null @@ -1,21 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [GraphQl/Queries/OrganizationQueries](../README.md) / USER\_CREATED\_ORGANIZATIONS - -# Variable: USER\_CREATED\_ORGANIZATIONS - -> `const` **USER\_CREATED\_ORGANIZATIONS**: `DocumentNode` - -Defined in: [src/GraphQl/Queries/OrganizationQueries.ts:276](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/GraphQl/Queries/OrganizationQueries.ts#L276) - -GraphQL query to retrieve organizations created by a user. - -## Param - -The ID of the user for which created organizations are being retrieved. - -## Returns - -The list of organizations created by the user. diff --git a/docs/docs/auto-docs/GraphQl/Queries/OrganizationQueries/variables/USER_JOINED_ORGANIZATIONS.md b/docs/docs/auto-docs/GraphQl/Queries/OrganizationQueries/variables/USER_JOINED_ORGANIZATIONS.md deleted file mode 100644 index 75caea8d48..0000000000 --- a/docs/docs/auto-docs/GraphQl/Queries/OrganizationQueries/variables/USER_JOINED_ORGANIZATIONS.md +++ /dev/null @@ -1,21 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [GraphQl/Queries/OrganizationQueries](../README.md) / USER\_JOINED\_ORGANIZATIONS - -# Variable: USER\_JOINED\_ORGANIZATIONS - -> `const` **USER\_JOINED\_ORGANIZATIONS**: `DocumentNode` - -Defined in: [src/GraphQl/Queries/OrganizationQueries.ts:238](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/GraphQl/Queries/OrganizationQueries.ts#L238) - -GraphQL query to retrieve organizations joined by a user. - -## Param - -The ID of the user for which joined organizations are being retrieved. - -## Returns - -The list of organizations joined by the user. diff --git a/docs/docs/auto-docs/GraphQl/Queries/OrganizationQueries/variables/USER_ORGANIZATION_CONNECTION.md b/docs/docs/auto-docs/GraphQl/Queries/OrganizationQueries/variables/USER_ORGANIZATION_CONNECTION.md deleted file mode 100644 index a86e10f3df..0000000000 --- a/docs/docs/auto-docs/GraphQl/Queries/OrganizationQueries/variables/USER_ORGANIZATION_CONNECTION.md +++ /dev/null @@ -1,33 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [GraphQl/Queries/OrganizationQueries](../README.md) / USER\_ORGANIZATION\_CONNECTION - -# Variable: USER\_ORGANIZATION\_CONNECTION - -> `const` **USER\_ORGANIZATION\_CONNECTION**: `DocumentNode` - -Defined in: [src/GraphQl/Queries/OrganizationQueries.ts:182](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/GraphQl/Queries/OrganizationQueries.ts#L182) - -GraphQL query to retrieve organizations based on user connection. - -## Param - -Optional. Number of organizations to retrieve in the first batch. - -## Param - -Optional. Number of organizations to skip before starting to collect the result set. - -## Param - -Optional. Filter organizations by a specified string. - -## Param - -Optional. The ID of a specific organization to retrieve. - -## Returns - -The list of organizations based on the applied filters. diff --git a/docs/docs/auto-docs/GraphQl/Queries/OrganizationQueries/variables/VENUE_LIST.md b/docs/docs/auto-docs/GraphQl/Queries/OrganizationQueries/variables/VENUE_LIST.md deleted file mode 100644 index 70409698a2..0000000000 --- a/docs/docs/auto-docs/GraphQl/Queries/OrganizationQueries/variables/VENUE_LIST.md +++ /dev/null @@ -1,21 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [GraphQl/Queries/OrganizationQueries](../README.md) / VENUE\_LIST - -# Variable: VENUE\_LIST - -> `const` **VENUE\_LIST**: `DocumentNode` - -Defined in: [src/GraphQl/Queries/OrganizationQueries.ts:357](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/GraphQl/Queries/OrganizationQueries.ts#L357) - -GraphQL query to retrieve the list of venues for a specific organization. - -## Param - -The ID of the organization for which venues are being retrieved. - -## Returns - -The list of venues associated with the organization. diff --git a/docs/docs/auto-docs/GraphQl/Queries/PlugInQueries/README.md b/docs/docs/auto-docs/GraphQl/Queries/PlugInQueries/README.md deleted file mode 100644 index 7862961d8e..0000000000 --- a/docs/docs/auto-docs/GraphQl/Queries/PlugInQueries/README.md +++ /dev/null @@ -1,20 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / GraphQl/Queries/PlugInQueries - -# GraphQl/Queries/PlugInQueries - -## Variables - -- [ADVERTISEMENTS\_GET](variables/ADVERTISEMENTS_GET.md) -- [CHAT\_BY\_ID](variables/CHAT_BY_ID.md) -- [CHATS\_LIST](variables/CHATS_LIST.md) -- [GROUP\_CHAT\_LIST](variables/GROUP_CHAT_LIST.md) -- [IS\_SAMPLE\_ORGANIZATION\_QUERY](variables/IS_SAMPLE_ORGANIZATION_QUERY.md) -- [ORGANIZATION\_CUSTOM\_FIELDS](variables/ORGANIZATION_CUSTOM_FIELDS.md) -- [ORGANIZATION\_EVENTS\_CONNECTION](variables/ORGANIZATION_EVENTS_CONNECTION.md) -- [PLUGIN\_GET](variables/PLUGIN_GET.md) -- [UNREAD\_CHAT\_LIST](variables/UNREAD_CHAT_LIST.md) -- [USER\_EVENTS\_VOLUNTEER](variables/USER_EVENTS_VOLUNTEER.md) diff --git a/docs/docs/auto-docs/GraphQl/Queries/PlugInQueries/variables/ADVERTISEMENTS_GET.md b/docs/docs/auto-docs/GraphQl/Queries/PlugInQueries/variables/ADVERTISEMENTS_GET.md deleted file mode 100644 index 1968cfc0cf..0000000000 --- a/docs/docs/auto-docs/GraphQl/Queries/PlugInQueries/variables/ADVERTISEMENTS_GET.md +++ /dev/null @@ -1,17 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [GraphQl/Queries/PlugInQueries](../README.md) / ADVERTISEMENTS\_GET - -# Variable: ADVERTISEMENTS\_GET - -> `const` **ADVERTISEMENTS\_GET**: `DocumentNode` - -Defined in: [src/GraphQl/Queries/PlugInQueries.ts:27](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/GraphQl/Queries/PlugInQueries.ts#L27) - -GraphQL query to retrieve a list of advertisements. - -## Returns - -The list of advertisements with details such as ID, name, type, organization ID, link, start date, and end date. diff --git a/docs/docs/auto-docs/GraphQl/Queries/PlugInQueries/variables/CHATS_LIST.md b/docs/docs/auto-docs/GraphQl/Queries/PlugInQueries/variables/CHATS_LIST.md deleted file mode 100644 index 723fc922fb..0000000000 --- a/docs/docs/auto-docs/GraphQl/Queries/PlugInQueries/variables/CHATS_LIST.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [GraphQl/Queries/PlugInQueries](../README.md) / CHATS\_LIST - -# Variable: CHATS\_LIST - -> `const` **CHATS\_LIST**: `DocumentNode` - -Defined in: [src/GraphQl/Queries/PlugInQueries.ts:304](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/GraphQl/Queries/PlugInQueries.ts#L304) diff --git a/docs/docs/auto-docs/GraphQl/Queries/PlugInQueries/variables/CHAT_BY_ID.md b/docs/docs/auto-docs/GraphQl/Queries/PlugInQueries/variables/CHAT_BY_ID.md deleted file mode 100644 index 48bab9b5ad..0000000000 --- a/docs/docs/auto-docs/GraphQl/Queries/PlugInQueries/variables/CHAT_BY_ID.md +++ /dev/null @@ -1,21 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [GraphQl/Queries/PlugInQueries](../README.md) / CHAT\_BY\_ID - -# Variable: CHAT\_BY\_ID - -> `const` **CHAT\_BY\_ID**: `DocumentNode` - -Defined in: [src/GraphQl/Queries/PlugInQueries.ts:156](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/GraphQl/Queries/PlugInQueries.ts#L156) - -GraphQL query to retrieve a list of chats based on user ID. - -## Param - -The ID of the user for which chats are being retrieved. - -## Returns - -The list of chats associated with the user, including details such as ID, creator, messages, organization, and participating users. diff --git a/docs/docs/auto-docs/GraphQl/Queries/PlugInQueries/variables/GROUP_CHAT_LIST.md b/docs/docs/auto-docs/GraphQl/Queries/PlugInQueries/variables/GROUP_CHAT_LIST.md deleted file mode 100644 index 546641f3e7..0000000000 --- a/docs/docs/auto-docs/GraphQl/Queries/PlugInQueries/variables/GROUP_CHAT_LIST.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [GraphQl/Queries/PlugInQueries](../README.md) / GROUP\_CHAT\_LIST - -# Variable: GROUP\_CHAT\_LIST - -> `const` **GROUP\_CHAT\_LIST**: `DocumentNode` - -Defined in: [src/GraphQl/Queries/PlugInQueries.ts:210](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/GraphQl/Queries/PlugInQueries.ts#L210) diff --git a/docs/docs/auto-docs/GraphQl/Queries/PlugInQueries/variables/IS_SAMPLE_ORGANIZATION_QUERY.md b/docs/docs/auto-docs/GraphQl/Queries/PlugInQueries/variables/IS_SAMPLE_ORGANIZATION_QUERY.md deleted file mode 100644 index ca46d8b846..0000000000 --- a/docs/docs/auto-docs/GraphQl/Queries/PlugInQueries/variables/IS_SAMPLE_ORGANIZATION_QUERY.md +++ /dev/null @@ -1,21 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [GraphQl/Queries/PlugInQueries](../README.md) / IS\_SAMPLE\_ORGANIZATION\_QUERY - -# Variable: IS\_SAMPLE\_ORGANIZATION\_QUERY - -> `const` **IS\_SAMPLE\_ORGANIZATION\_QUERY**: `DocumentNode` - -Defined in: [src/GraphQl/Queries/PlugInQueries.ts:366](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/GraphQl/Queries/PlugInQueries.ts#L366) - -GraphQL query to check if an organization is a sample organization. - -## Param - -The ID of the organization being checked. - -## Returns - -A boolean indicating whether the organization is a sample organization. diff --git a/docs/docs/auto-docs/GraphQl/Queries/PlugInQueries/variables/ORGANIZATION_CUSTOM_FIELDS.md b/docs/docs/auto-docs/GraphQl/Queries/PlugInQueries/variables/ORGANIZATION_CUSTOM_FIELDS.md deleted file mode 100644 index 176deea6c4..0000000000 --- a/docs/docs/auto-docs/GraphQl/Queries/PlugInQueries/variables/ORGANIZATION_CUSTOM_FIELDS.md +++ /dev/null @@ -1,21 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [GraphQl/Queries/PlugInQueries](../README.md) / ORGANIZATION\_CUSTOM\_FIELDS - -# Variable: ORGANIZATION\_CUSTOM\_FIELDS - -> `const` **ORGANIZATION\_CUSTOM\_FIELDS**: `DocumentNode` - -Defined in: [src/GraphQl/Queries/PlugInQueries.ts:379](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/GraphQl/Queries/PlugInQueries.ts#L379) - -GraphQL query to retrieve custom fields for a specific organization. - -## Param - -The ID of the organization for which custom fields are being retrieved. - -## Returns - -The list of custom fields associated with the organization, including details such as ID, type, and name. diff --git a/docs/docs/auto-docs/GraphQl/Queries/PlugInQueries/variables/ORGANIZATION_EVENTS_CONNECTION.md b/docs/docs/auto-docs/GraphQl/Queries/PlugInQueries/variables/ORGANIZATION_EVENTS_CONNECTION.md deleted file mode 100644 index 061e7462f2..0000000000 --- a/docs/docs/auto-docs/GraphQl/Queries/PlugInQueries/variables/ORGANIZATION_EVENTS_CONNECTION.md +++ /dev/null @@ -1,41 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [GraphQl/Queries/PlugInQueries](../README.md) / ORGANIZATION\_EVENTS\_CONNECTION - -# Variable: ORGANIZATION\_EVENTS\_CONNECTION - -> `const` **ORGANIZATION\_EVENTS\_CONNECTION**: `DocumentNode` - -Defined in: [src/GraphQl/Queries/PlugInQueries.ts:59](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/GraphQl/Queries/PlugInQueries.ts#L59) - -GraphQL query to retrieve a list of events based on organization connection. - -## Param - -The ID of the organization for which events are being retrieved. - -## Param - -Optional. Filter events by title containing a specified string. - -## Param - -Optional. Filter events by description containing a specified string. - -## Param - -Optional. Filter events by location containing a specified string. - -## Param - -Optional. Number of events to retrieve in the first batch. - -## Param - -Optional. Number of events to skip before starting to collect the result set. - -## Returns - -The list of events associated with the organization based on the applied filters. diff --git a/docs/docs/auto-docs/GraphQl/Queries/PlugInQueries/variables/PLUGIN_GET.md b/docs/docs/auto-docs/GraphQl/Queries/PlugInQueries/variables/PLUGIN_GET.md deleted file mode 100644 index d9c4dcc1cd..0000000000 --- a/docs/docs/auto-docs/GraphQl/Queries/PlugInQueries/variables/PLUGIN_GET.md +++ /dev/null @@ -1,17 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [GraphQl/Queries/PlugInQueries](../README.md) / PLUGIN\_GET - -# Variable: PLUGIN\_GET - -> `const` **PLUGIN\_GET**: `DocumentNode` - -Defined in: [src/GraphQl/Queries/PlugInQueries.ts:9](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/GraphQl/Queries/PlugInQueries.ts#L9) - -GraphQL query to retrieve a list of plugins. - -## Returns - -The list of plugins with details such as ID, name, creator, description, and uninstalled organizations. diff --git a/docs/docs/auto-docs/GraphQl/Queries/PlugInQueries/variables/UNREAD_CHAT_LIST.md b/docs/docs/auto-docs/GraphQl/Queries/PlugInQueries/variables/UNREAD_CHAT_LIST.md deleted file mode 100644 index c283c371fa..0000000000 --- a/docs/docs/auto-docs/GraphQl/Queries/PlugInQueries/variables/UNREAD_CHAT_LIST.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [GraphQl/Queries/PlugInQueries](../README.md) / UNREAD\_CHAT\_LIST - -# Variable: UNREAD\_CHAT\_LIST - -> `const` **UNREAD\_CHAT\_LIST**: `DocumentNode` - -Defined in: [src/GraphQl/Queries/PlugInQueries.ts:257](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/GraphQl/Queries/PlugInQueries.ts#L257) diff --git a/docs/docs/auto-docs/GraphQl/Queries/PlugInQueries/variables/USER_EVENTS_VOLUNTEER.md b/docs/docs/auto-docs/GraphQl/Queries/PlugInQueries/variables/USER_EVENTS_VOLUNTEER.md deleted file mode 100644 index 0d37cfa739..0000000000 --- a/docs/docs/auto-docs/GraphQl/Queries/PlugInQueries/variables/USER_EVENTS_VOLUNTEER.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [GraphQl/Queries/PlugInQueries](../README.md) / USER\_EVENTS\_VOLUNTEER - -# Variable: USER\_EVENTS\_VOLUNTEER - -> `const` **USER\_EVENTS\_VOLUNTEER**: `DocumentNode` - -Defined in: [src/GraphQl/Queries/PlugInQueries.ts:102](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/GraphQl/Queries/PlugInQueries.ts#L102) diff --git a/docs/docs/auto-docs/GraphQl/Queries/Queries/README.md b/docs/docs/auto-docs/GraphQl/Queries/Queries/README.md deleted file mode 100644 index 5a6baf74bd..0000000000 --- a/docs/docs/auto-docs/GraphQl/Queries/Queries/README.md +++ /dev/null @@ -1,132 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / GraphQl/Queries/Queries - -# GraphQl/Queries/Queries - -## Variables - -- [ADMIN\_LIST](variables/ADMIN_LIST.md) -- [BLOCK\_PAGE\_MEMBER\_LIST](variables/BLOCK_PAGE_MEMBER_LIST.md) -- [CHECK\_AUTH](variables/CHECK_AUTH.md) -- [EVENT\_ATTENDEES](variables/EVENT_ATTENDEES.md) -- [EVENT\_CHECKINS](variables/EVENT_CHECKINS.md) -- [EVENT\_DETAILS](variables/EVENT_DETAILS.md) -- [EVENT\_FEEDBACKS](variables/EVENT_FEEDBACKS.md) -- [EVENT\_REGISTRANTS](variables/EVENT_REGISTRANTS.md) -- [GET\_COMMUNITY\_DATA](variables/GET_COMMUNITY_DATA.md) -- [GET\_COMMUNITY\_SESSION\_TIMEOUT\_DATA](variables/GET_COMMUNITY_SESSION_TIMEOUT_DATA.md) -- [MEMBERS\_LIST](variables/MEMBERS_LIST.md) -- [MEMBERSHIP\_REQUEST](variables/MEMBERSHIP_REQUEST.md) -- [ORGANIZATION\_CONNECTION\_LIST](variables/ORGANIZATION_CONNECTION_LIST.md) -- [ORGANIZATION\_DONATION\_CONNECTION\_LIST](variables/ORGANIZATION_DONATION_CONNECTION_LIST.md) -- [ORGANIZATION\_EVENT\_CONNECTION\_LIST](variables/ORGANIZATION_EVENT_CONNECTION_LIST.md) -- [ORGANIZATION\_EVENT\_LIST](variables/ORGANIZATION_EVENT_LIST.md) -- [ORGANIZATION\_LIST](variables/ORGANIZATION_LIST.md) -- [ORGANIZATIONS\_LIST](variables/ORGANIZATIONS_LIST.md) -- [ORGANIZATIONS\_MEMBER\_CONNECTION\_LIST](variables/ORGANIZATIONS_MEMBER_CONNECTION_LIST.md) -- [RECURRING\_EVENTS](variables/RECURRING_EVENTS.md) -- [USER\_DETAILS](variables/USER_DETAILS.md) -- [USER\_LIST](variables/USER_LIST.md) -- [USER\_LIST\_FOR\_TABLE](variables/USER_LIST_FOR_TABLE.md) -- [USER\_LIST\_REQUEST](variables/USER_LIST_REQUEST.md) -- [USER\_ORGANIZATION\_LIST](variables/USER_ORGANIZATION_LIST.md) -- [USERS\_CONNECTION\_LIST](variables/USERS_CONNECTION_LIST.md) - -## References - -### ACTION\_ITEM\_CATEGORY\_LIST - -Re-exports [ACTION_ITEM_CATEGORY_LIST](../ActionItemCategoryQueries/variables/ACTION_ITEM_CATEGORY_LIST.md) - -*** - -### ACTION\_ITEM\_LIST - -Re-exports [ACTION_ITEM_LIST](../ActionItemQueries/variables/ACTION_ITEM_LIST.md) - -*** - -### ADVERTISEMENTS\_GET - -Re-exports [ADVERTISEMENTS_GET](../PlugInQueries/variables/ADVERTISEMENTS_GET.md) - -*** - -### AGENDA\_ITEM\_CATEGORY\_LIST - -Re-exports [AGENDA_ITEM_CATEGORY_LIST](../AgendaCategoryQueries/variables/AGENDA_ITEM_CATEGORY_LIST.md) - -*** - -### AgendaItemByEvent - -Re-exports [AgendaItemByEvent](../AgendaItemQueries/variables/AgendaItemByEvent.md) - -*** - -### AgendaItemByOrganization - -Re-exports [AgendaItemByOrganization](../AgendaItemQueries/variables/AgendaItemByOrganization.md) - -*** - -### IS\_SAMPLE\_ORGANIZATION\_QUERY - -Re-exports [IS_SAMPLE_ORGANIZATION_QUERY](../PlugInQueries/variables/IS_SAMPLE_ORGANIZATION_QUERY.md) - -*** - -### ORGANIZATION\_ADMINS\_LIST - -Re-exports [ORGANIZATION_ADMINS_LIST](../OrganizationQueries/variables/ORGANIZATION_ADMINS_LIST.md) - -*** - -### ORGANIZATION\_ADVERTISEMENT\_LIST - -Re-exports [ORGANIZATION_ADVERTISEMENT_LIST](../OrganizationQueries/variables/ORGANIZATION_ADVERTISEMENT_LIST.md) - -*** - -### ORGANIZATION\_CUSTOM\_FIELDS - -Re-exports [ORGANIZATION_CUSTOM_FIELDS](../PlugInQueries/variables/ORGANIZATION_CUSTOM_FIELDS.md) - -*** - -### ORGANIZATION\_EVENTS\_CONNECTION - -Re-exports [ORGANIZATION_EVENTS_CONNECTION](../PlugInQueries/variables/ORGANIZATION_EVENTS_CONNECTION.md) - -*** - -### ORGANIZATION\_POST\_LIST - -Re-exports [ORGANIZATION_POST_LIST](../OrganizationQueries/variables/ORGANIZATION_POST_LIST.md) - -*** - -### PLUGIN\_GET - -Re-exports [PLUGIN_GET](../PlugInQueries/variables/PLUGIN_GET.md) - -*** - -### USER\_CREATED\_ORGANIZATIONS - -Re-exports [USER_CREATED_ORGANIZATIONS](../OrganizationQueries/variables/USER_CREATED_ORGANIZATIONS.md) - -*** - -### USER\_JOINED\_ORGANIZATIONS - -Re-exports [USER_JOINED_ORGANIZATIONS](../OrganizationQueries/variables/USER_JOINED_ORGANIZATIONS.md) - -*** - -### USER\_ORGANIZATION\_CONNECTION - -Re-exports [USER_ORGANIZATION_CONNECTION](../OrganizationQueries/variables/USER_ORGANIZATION_CONNECTION.md) diff --git a/docs/docs/auto-docs/GraphQl/Queries/Queries/variables/ADMIN_LIST.md b/docs/docs/auto-docs/GraphQl/Queries/Queries/variables/ADMIN_LIST.md deleted file mode 100644 index 36e53bbbb1..0000000000 --- a/docs/docs/auto-docs/GraphQl/Queries/Queries/variables/ADMIN_LIST.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [GraphQl/Queries/Queries](../README.md) / ADMIN\_LIST - -# Variable: ADMIN\_LIST - -> `const` **ADMIN\_LIST**: `DocumentNode` - -Defined in: [src/GraphQl/Queries/Queries.ts:707](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/GraphQl/Queries/Queries.ts#L707) diff --git a/docs/docs/auto-docs/GraphQl/Queries/Queries/variables/BLOCK_PAGE_MEMBER_LIST.md b/docs/docs/auto-docs/GraphQl/Queries/Queries/variables/BLOCK_PAGE_MEMBER_LIST.md deleted file mode 100644 index f4e08314c8..0000000000 --- a/docs/docs/auto-docs/GraphQl/Queries/Queries/variables/BLOCK_PAGE_MEMBER_LIST.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [GraphQl/Queries/Queries](../README.md) / BLOCK\_PAGE\_MEMBER\_LIST - -# Variable: BLOCK\_PAGE\_MEMBER\_LIST - -> `const` **BLOCK\_PAGE\_MEMBER\_LIST**: `DocumentNode` - -Defined in: [src/GraphQl/Queries/Queries.ts:451](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/GraphQl/Queries/Queries.ts#L451) diff --git a/docs/docs/auto-docs/GraphQl/Queries/Queries/variables/CHECK_AUTH.md b/docs/docs/auto-docs/GraphQl/Queries/Queries/variables/CHECK_AUTH.md deleted file mode 100644 index 5f74a10772..0000000000 --- a/docs/docs/auto-docs/GraphQl/Queries/Queries/variables/CHECK_AUTH.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [GraphQl/Queries/Queries](../README.md) / CHECK\_AUTH - -# Variable: CHECK\_AUTH - -> `const` **CHECK\_AUTH**: `DocumentNode` - -Defined in: [src/GraphQl/Queries/Queries.ts:5](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/GraphQl/Queries/Queries.ts#L5) diff --git a/docs/docs/auto-docs/GraphQl/Queries/Queries/variables/EVENT_ATTENDEES.md b/docs/docs/auto-docs/GraphQl/Queries/Queries/variables/EVENT_ATTENDEES.md deleted file mode 100644 index 742b350e6c..0000000000 --- a/docs/docs/auto-docs/GraphQl/Queries/Queries/variables/EVENT_ATTENDEES.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [GraphQl/Queries/Queries](../README.md) / EVENT\_ATTENDEES - -# Variable: EVENT\_ATTENDEES - -> `const` **EVENT\_ATTENDEES**: `DocumentNode` - -Defined in: [src/GraphQl/Queries/Queries.ts:313](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/GraphQl/Queries/Queries.ts#L313) diff --git a/docs/docs/auto-docs/GraphQl/Queries/Queries/variables/EVENT_CHECKINS.md b/docs/docs/auto-docs/GraphQl/Queries/Queries/variables/EVENT_CHECKINS.md deleted file mode 100644 index a66c9b1aa8..0000000000 --- a/docs/docs/auto-docs/GraphQl/Queries/Queries/variables/EVENT_CHECKINS.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [GraphQl/Queries/Queries](../README.md) / EVENT\_CHECKINS - -# Variable: EVENT\_CHECKINS - -> `const` **EVENT\_CHECKINS**: `DocumentNode` - -Defined in: [src/GraphQl/Queries/Queries.ts:341](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/GraphQl/Queries/Queries.ts#L341) diff --git a/docs/docs/auto-docs/GraphQl/Queries/Queries/variables/EVENT_DETAILS.md b/docs/docs/auto-docs/GraphQl/Queries/Queries/variables/EVENT_DETAILS.md deleted file mode 100644 index 351d213c18..0000000000 --- a/docs/docs/auto-docs/GraphQl/Queries/Queries/variables/EVENT_DETAILS.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [GraphQl/Queries/Queries](../README.md) / EVENT\_DETAILS - -# Variable: EVENT\_DETAILS - -> `const` **EVENT\_DETAILS**: `DocumentNode` - -Defined in: [src/GraphQl/Queries/Queries.ts:268](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/GraphQl/Queries/Queries.ts#L268) diff --git a/docs/docs/auto-docs/GraphQl/Queries/Queries/variables/EVENT_FEEDBACKS.md b/docs/docs/auto-docs/GraphQl/Queries/Queries/variables/EVENT_FEEDBACKS.md deleted file mode 100644 index e5395eefae..0000000000 --- a/docs/docs/auto-docs/GraphQl/Queries/Queries/variables/EVENT_FEEDBACKS.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [GraphQl/Queries/Queries](../README.md) / EVENT\_FEEDBACKS - -# Variable: EVENT\_FEEDBACKS - -> `const` **EVENT\_FEEDBACKS**: `DocumentNode` - -Defined in: [src/GraphQl/Queries/Queries.ts:361](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/GraphQl/Queries/Queries.ts#L361) diff --git a/docs/docs/auto-docs/GraphQl/Queries/Queries/variables/EVENT_REGISTRANTS.md b/docs/docs/auto-docs/GraphQl/Queries/Queries/variables/EVENT_REGISTRANTS.md deleted file mode 100644 index f7fece2ff2..0000000000 --- a/docs/docs/auto-docs/GraphQl/Queries/Queries/variables/EVENT_REGISTRANTS.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [GraphQl/Queries/Queries](../README.md) / EVENT\_REGISTRANTS - -# Variable: EVENT\_REGISTRANTS - -> `const` **EVENT\_REGISTRANTS**: `DocumentNode` - -Defined in: [src/GraphQl/Queries/Queries.ts:331](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/GraphQl/Queries/Queries.ts#L331) diff --git a/docs/docs/auto-docs/GraphQl/Queries/Queries/variables/GET_COMMUNITY_DATA.md b/docs/docs/auto-docs/GraphQl/Queries/Queries/variables/GET_COMMUNITY_DATA.md deleted file mode 100644 index ccbef8e1cc..0000000000 --- a/docs/docs/auto-docs/GraphQl/Queries/Queries/variables/GET_COMMUNITY_DATA.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [GraphQl/Queries/Queries](../README.md) / GET\_COMMUNITY\_DATA - -# Variable: GET\_COMMUNITY\_DATA - -> `const` **GET\_COMMUNITY\_DATA**: `DocumentNode` - -Defined in: [src/GraphQl/Queries/Queries.ts:839](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/GraphQl/Queries/Queries.ts#L839) diff --git a/docs/docs/auto-docs/GraphQl/Queries/Queries/variables/GET_COMMUNITY_SESSION_TIMEOUT_DATA.md b/docs/docs/auto-docs/GraphQl/Queries/Queries/variables/GET_COMMUNITY_SESSION_TIMEOUT_DATA.md deleted file mode 100644 index 7af4b1ba03..0000000000 --- a/docs/docs/auto-docs/GraphQl/Queries/Queries/variables/GET_COMMUNITY_SESSION_TIMEOUT_DATA.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [GraphQl/Queries/Queries](../README.md) / GET\_COMMUNITY\_SESSION\_TIMEOUT\_DATA - -# Variable: GET\_COMMUNITY\_SESSION\_TIMEOUT\_DATA - -> `const` **GET\_COMMUNITY\_SESSION\_TIMEOUT\_DATA**: `DocumentNode` - -Defined in: [src/GraphQl/Queries/Queries.ts:860](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/GraphQl/Queries/Queries.ts#L860) diff --git a/docs/docs/auto-docs/GraphQl/Queries/Queries/variables/MEMBERSHIP_REQUEST.md b/docs/docs/auto-docs/GraphQl/Queries/Queries/variables/MEMBERSHIP_REQUEST.md deleted file mode 100644 index c2d6a72316..0000000000 --- a/docs/docs/auto-docs/GraphQl/Queries/Queries/variables/MEMBERSHIP_REQUEST.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [GraphQl/Queries/Queries](../README.md) / MEMBERSHIP\_REQUEST - -# Variable: MEMBERSHIP\_REQUEST - -> `const` **MEMBERSHIP\_REQUEST**: `DocumentNode` - -Defined in: [src/GraphQl/Queries/Queries.ts:724](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/GraphQl/Queries/Queries.ts#L724) diff --git a/docs/docs/auto-docs/GraphQl/Queries/Queries/variables/MEMBERS_LIST.md b/docs/docs/auto-docs/GraphQl/Queries/Queries/variables/MEMBERS_LIST.md deleted file mode 100644 index a8e1de6002..0000000000 --- a/docs/docs/auto-docs/GraphQl/Queries/Queries/variables/MEMBERS_LIST.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [GraphQl/Queries/Queries](../README.md) / MEMBERS\_LIST - -# Variable: MEMBERS\_LIST - -> `const` **MEMBERS\_LIST**: `DocumentNode` - -Defined in: [src/GraphQl/Queries/Queries.ts:432](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/GraphQl/Queries/Queries.ts#L432) diff --git a/docs/docs/auto-docs/GraphQl/Queries/Queries/variables/ORGANIZATIONS_LIST.md b/docs/docs/auto-docs/GraphQl/Queries/Queries/variables/ORGANIZATIONS_LIST.md deleted file mode 100644 index 16c005c6c6..0000000000 --- a/docs/docs/auto-docs/GraphQl/Queries/Queries/variables/ORGANIZATIONS_LIST.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [GraphQl/Queries/Queries](../README.md) / ORGANIZATIONS\_LIST - -# Variable: ORGANIZATIONS\_LIST - -> `const` **ORGANIZATIONS\_LIST**: `DocumentNode` - -Defined in: [src/GraphQl/Queries/Queries.ts:376](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/GraphQl/Queries/Queries.ts#L376) diff --git a/docs/docs/auto-docs/GraphQl/Queries/Queries/variables/ORGANIZATIONS_MEMBER_CONNECTION_LIST.md b/docs/docs/auto-docs/GraphQl/Queries/Queries/variables/ORGANIZATIONS_MEMBER_CONNECTION_LIST.md deleted file mode 100644 index c6f9d97783..0000000000 --- a/docs/docs/auto-docs/GraphQl/Queries/Queries/variables/ORGANIZATIONS_MEMBER_CONNECTION_LIST.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [GraphQl/Queries/Queries](../README.md) / ORGANIZATIONS\_MEMBER\_CONNECTION\_LIST - -# Variable: ORGANIZATIONS\_MEMBER\_CONNECTION\_LIST - -> `const` **ORGANIZATIONS\_MEMBER\_CONNECTION\_LIST**: `DocumentNode` - -Defined in: [src/GraphQl/Queries/Queries.ts:478](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/GraphQl/Queries/Queries.ts#L478) diff --git a/docs/docs/auto-docs/GraphQl/Queries/Queries/variables/ORGANIZATION_CONNECTION_LIST.md b/docs/docs/auto-docs/GraphQl/Queries/Queries/variables/ORGANIZATION_CONNECTION_LIST.md deleted file mode 100644 index deb5927340..0000000000 --- a/docs/docs/auto-docs/GraphQl/Queries/Queries/variables/ORGANIZATION_CONNECTION_LIST.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [GraphQl/Queries/Queries](../README.md) / ORGANIZATION\_CONNECTION\_LIST - -# Variable: ORGANIZATION\_CONNECTION\_LIST - -> `const` **ORGANIZATION\_CONNECTION\_LIST**: `DocumentNode` - -Defined in: [src/GraphQl/Queries/Queries.ts:67](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/GraphQl/Queries/Queries.ts#L67) diff --git a/docs/docs/auto-docs/GraphQl/Queries/Queries/variables/ORGANIZATION_DONATION_CONNECTION_LIST.md b/docs/docs/auto-docs/GraphQl/Queries/Queries/variables/ORGANIZATION_DONATION_CONNECTION_LIST.md deleted file mode 100644 index 13e6782cff..0000000000 --- a/docs/docs/auto-docs/GraphQl/Queries/Queries/variables/ORGANIZATION_DONATION_CONNECTION_LIST.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [GraphQl/Queries/Queries](../README.md) / ORGANIZATION\_DONATION\_CONNECTION\_LIST - -# Variable: ORGANIZATION\_DONATION\_CONNECTION\_LIST - -> `const` **ORGANIZATION\_DONATION\_CONNECTION\_LIST**: `DocumentNode` - -Defined in: [src/GraphQl/Queries/Queries.ts:686](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/GraphQl/Queries/Queries.ts#L686) diff --git a/docs/docs/auto-docs/GraphQl/Queries/Queries/variables/ORGANIZATION_EVENT_CONNECTION_LIST.md b/docs/docs/auto-docs/GraphQl/Queries/Queries/variables/ORGANIZATION_EVENT_CONNECTION_LIST.md deleted file mode 100644 index 8d714cad68..0000000000 --- a/docs/docs/auto-docs/GraphQl/Queries/Queries/variables/ORGANIZATION_EVENT_CONNECTION_LIST.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [GraphQl/Queries/Queries](../README.md) / ORGANIZATION\_EVENT\_CONNECTION\_LIST - -# Variable: ORGANIZATION\_EVENT\_CONNECTION\_LIST - -> `const` **ORGANIZATION\_EVENT\_CONNECTION\_LIST**: `DocumentNode` - -Defined in: [src/GraphQl/Queries/Queries.ts:630](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/GraphQl/Queries/Queries.ts#L630) diff --git a/docs/docs/auto-docs/GraphQl/Queries/Queries/variables/ORGANIZATION_EVENT_LIST.md b/docs/docs/auto-docs/GraphQl/Queries/Queries/variables/ORGANIZATION_EVENT_LIST.md deleted file mode 100644 index 23dfba40e9..0000000000 --- a/docs/docs/auto-docs/GraphQl/Queries/Queries/variables/ORGANIZATION_EVENT_LIST.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [GraphQl/Queries/Queries](../README.md) / ORGANIZATION\_EVENT\_LIST - -# Variable: ORGANIZATION\_EVENT\_LIST - -> `const` **ORGANIZATION\_EVENT\_LIST**: `DocumentNode` - -Defined in: [src/GraphQl/Queries/Queries.ts:611](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/GraphQl/Queries/Queries.ts#L611) diff --git a/docs/docs/auto-docs/GraphQl/Queries/Queries/variables/ORGANIZATION_LIST.md b/docs/docs/auto-docs/GraphQl/Queries/Queries/variables/ORGANIZATION_LIST.md deleted file mode 100644 index 890cd56b9d..0000000000 --- a/docs/docs/auto-docs/GraphQl/Queries/Queries/variables/ORGANIZATION_LIST.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [GraphQl/Queries/Queries](../README.md) / ORGANIZATION\_LIST - -# Variable: ORGANIZATION\_LIST - -> `const` **ORGANIZATION\_LIST**: `DocumentNode` - -Defined in: [src/GraphQl/Queries/Queries.ts:35](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/GraphQl/Queries/Queries.ts#L35) diff --git a/docs/docs/auto-docs/GraphQl/Queries/Queries/variables/RECURRING_EVENTS.md b/docs/docs/auto-docs/GraphQl/Queries/Queries/variables/RECURRING_EVENTS.md deleted file mode 100644 index 01c02648be..0000000000 --- a/docs/docs/auto-docs/GraphQl/Queries/Queries/variables/RECURRING_EVENTS.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [GraphQl/Queries/Queries](../README.md) / RECURRING\_EVENTS - -# Variable: RECURRING\_EVENTS - -> `const` **RECURRING\_EVENTS**: `DocumentNode` - -Defined in: [src/GraphQl/Queries/Queries.ts:299](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/GraphQl/Queries/Queries.ts#L299) diff --git a/docs/docs/auto-docs/GraphQl/Queries/Queries/variables/USERS_CONNECTION_LIST.md b/docs/docs/auto-docs/GraphQl/Queries/Queries/variables/USERS_CONNECTION_LIST.md deleted file mode 100644 index e9aa0c2c5a..0000000000 --- a/docs/docs/auto-docs/GraphQl/Queries/Queries/variables/USERS_CONNECTION_LIST.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [GraphQl/Queries/Queries](../README.md) / USERS\_CONNECTION\_LIST - -# Variable: USERS\_CONNECTION\_LIST - -> `const` **USERS\_CONNECTION\_LIST**: `DocumentNode` - -Defined in: [src/GraphQl/Queries/Queries.ts:750](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/GraphQl/Queries/Queries.ts#L750) diff --git a/docs/docs/auto-docs/GraphQl/Queries/Queries/variables/USER_DETAILS.md b/docs/docs/auto-docs/GraphQl/Queries/Queries/variables/USER_DETAILS.md deleted file mode 100644 index b159e1c220..0000000000 --- a/docs/docs/auto-docs/GraphQl/Queries/Queries/variables/USER_DETAILS.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [GraphQl/Queries/Queries](../README.md) / USER\_DETAILS - -# Variable: USER\_DETAILS - -> `const` **USER\_DETAILS**: `DocumentNode` - -Defined in: [src/GraphQl/Queries/Queries.ts:522](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/GraphQl/Queries/Queries.ts#L522) diff --git a/docs/docs/auto-docs/GraphQl/Queries/Queries/variables/USER_LIST.md b/docs/docs/auto-docs/GraphQl/Queries/Queries/variables/USER_LIST.md deleted file mode 100644 index 7e54e49537..0000000000 --- a/docs/docs/auto-docs/GraphQl/Queries/Queries/variables/USER_LIST.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [GraphQl/Queries/Queries](../README.md) / USER\_LIST - -# Variable: USER\_LIST - -> `const` **USER\_LIST**: `DocumentNode` - -Defined in: [src/GraphQl/Queries/Queries.ts:109](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/GraphQl/Queries/Queries.ts#L109) diff --git a/docs/docs/auto-docs/GraphQl/Queries/Queries/variables/USER_LIST_FOR_TABLE.md b/docs/docs/auto-docs/GraphQl/Queries/Queries/variables/USER_LIST_FOR_TABLE.md deleted file mode 100644 index 9bdc38fd7c..0000000000 --- a/docs/docs/auto-docs/GraphQl/Queries/Queries/variables/USER_LIST_FOR_TABLE.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [GraphQl/Queries/Queries](../README.md) / USER\_LIST\_FOR\_TABLE - -# Variable: USER\_LIST\_FOR\_TABLE - -> `const` **USER\_LIST\_FOR\_TABLE**: `DocumentNode` - -Defined in: [src/GraphQl/Queries/Queries.ts:205](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/GraphQl/Queries/Queries.ts#L205) diff --git a/docs/docs/auto-docs/GraphQl/Queries/Queries/variables/USER_LIST_REQUEST.md b/docs/docs/auto-docs/GraphQl/Queries/Queries/variables/USER_LIST_REQUEST.md deleted file mode 100644 index 6a8211fcde..0000000000 --- a/docs/docs/auto-docs/GraphQl/Queries/Queries/variables/USER_LIST_REQUEST.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [GraphQl/Queries/Queries](../README.md) / USER\_LIST\_REQUEST - -# Variable: USER\_LIST\_REQUEST - -> `const` **USER\_LIST\_REQUEST**: `DocumentNode` - -Defined in: [src/GraphQl/Queries/Queries.ts:225](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/GraphQl/Queries/Queries.ts#L225) diff --git a/docs/docs/auto-docs/GraphQl/Queries/Queries/variables/USER_ORGANIZATION_LIST.md b/docs/docs/auto-docs/GraphQl/Queries/Queries/variables/USER_ORGANIZATION_LIST.md deleted file mode 100644 index f7ac103405..0000000000 --- a/docs/docs/auto-docs/GraphQl/Queries/Queries/variables/USER_ORGANIZATION_LIST.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [GraphQl/Queries/Queries](../README.md) / USER\_ORGANIZATION\_LIST - -# Variable: USER\_ORGANIZATION\_LIST - -> `const` **USER\_ORGANIZATION\_LIST**: `DocumentNode` - -Defined in: [src/GraphQl/Queries/Queries.ts:508](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/GraphQl/Queries/Queries.ts#L508) diff --git a/docs/docs/auto-docs/GraphQl/Queries/fundQueries/README.md b/docs/docs/auto-docs/GraphQl/Queries/fundQueries/README.md deleted file mode 100644 index 3da9c8c750..0000000000 --- a/docs/docs/auto-docs/GraphQl/Queries/fundQueries/README.md +++ /dev/null @@ -1,15 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / GraphQl/Queries/fundQueries - -# GraphQl/Queries/fundQueries - -## Variables - -- [FUND\_CAMPAIGN](variables/FUND_CAMPAIGN.md) -- [FUND\_CAMPAIGN\_PLEDGE](variables/FUND_CAMPAIGN_PLEDGE.md) -- [FUND\_LIST](variables/FUND_LIST.md) -- [USER\_FUND\_CAMPAIGNS](variables/USER_FUND_CAMPAIGNS.md) -- [USER\_PLEDGES](variables/USER_PLEDGES.md) diff --git a/docs/docs/auto-docs/GraphQl/Queries/fundQueries/variables/FUND_CAMPAIGN.md b/docs/docs/auto-docs/GraphQl/Queries/fundQueries/variables/FUND_CAMPAIGN.md deleted file mode 100644 index e5feb643c6..0000000000 --- a/docs/docs/auto-docs/GraphQl/Queries/fundQueries/variables/FUND_CAMPAIGN.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [GraphQl/Queries/fundQueries](../README.md) / FUND\_CAMPAIGN - -# Variable: FUND\_CAMPAIGN - -> `const` **FUND\_CAMPAIGN**: `DocumentNode` - -Defined in: [src/GraphQl/Queries/fundQueries.ts:39](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/GraphQl/Queries/fundQueries.ts#L39) diff --git a/docs/docs/auto-docs/GraphQl/Queries/fundQueries/variables/FUND_CAMPAIGN_PLEDGE.md b/docs/docs/auto-docs/GraphQl/Queries/fundQueries/variables/FUND_CAMPAIGN_PLEDGE.md deleted file mode 100644 index 4e5a405221..0000000000 --- a/docs/docs/auto-docs/GraphQl/Queries/fundQueries/variables/FUND_CAMPAIGN_PLEDGE.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [GraphQl/Queries/fundQueries](../README.md) / FUND\_CAMPAIGN\_PLEDGE - -# Variable: FUND\_CAMPAIGN\_PLEDGE - -> `const` **FUND\_CAMPAIGN\_PLEDGE**: `DocumentNode` - -Defined in: [src/GraphQl/Queries/fundQueries.ts:60](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/GraphQl/Queries/fundQueries.ts#L60) diff --git a/docs/docs/auto-docs/GraphQl/Queries/fundQueries/variables/FUND_LIST.md b/docs/docs/auto-docs/GraphQl/Queries/fundQueries/variables/FUND_LIST.md deleted file mode 100644 index 7c6c57eced..0000000000 --- a/docs/docs/auto-docs/GraphQl/Queries/fundQueries/variables/FUND_LIST.md +++ /dev/null @@ -1,25 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [GraphQl/Queries/fundQueries](../README.md) / FUND\_LIST - -# Variable: FUND\_LIST - -> `const` **FUND\_LIST**: `DocumentNode` - -Defined in: [src/GraphQl/Queries/fundQueries.ts:11](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/GraphQl/Queries/fundQueries.ts#L11) - -GraphQL query to retrieve the list of members for a specific organization. - -## Param - -The ID of the organization for which members are being retrieved. - -## Param - -The filter to search for a specific member. - -## Returns - -The list of members associated with the organization. diff --git a/docs/docs/auto-docs/GraphQl/Queries/fundQueries/variables/USER_FUND_CAMPAIGNS.md b/docs/docs/auto-docs/GraphQl/Queries/fundQueries/variables/USER_FUND_CAMPAIGNS.md deleted file mode 100644 index 0c84bc2834..0000000000 --- a/docs/docs/auto-docs/GraphQl/Queries/fundQueries/variables/USER_FUND_CAMPAIGNS.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [GraphQl/Queries/fundQueries](../README.md) / USER\_FUND\_CAMPAIGNS - -# Variable: USER\_FUND\_CAMPAIGNS - -> `const` **USER\_FUND\_CAMPAIGNS**: `DocumentNode` - -Defined in: [src/GraphQl/Queries/fundQueries.ts:91](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/GraphQl/Queries/fundQueries.ts#L91) diff --git a/docs/docs/auto-docs/GraphQl/Queries/fundQueries/variables/USER_PLEDGES.md b/docs/docs/auto-docs/GraphQl/Queries/fundQueries/variables/USER_PLEDGES.md deleted file mode 100644 index 65fef4b84c..0000000000 --- a/docs/docs/auto-docs/GraphQl/Queries/fundQueries/variables/USER_PLEDGES.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [GraphQl/Queries/fundQueries](../README.md) / USER\_PLEDGES - -# Variable: USER\_PLEDGES - -> `const` **USER\_PLEDGES**: `DocumentNode` - -Defined in: [src/GraphQl/Queries/fundQueries.ts:107](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/GraphQl/Queries/fundQueries.ts#L107) diff --git a/docs/docs/auto-docs/GraphQl/Queries/userTagQueries/README.md b/docs/docs/auto-docs/GraphQl/Queries/userTagQueries/README.md deleted file mode 100644 index ee918283dd..0000000000 --- a/docs/docs/auto-docs/GraphQl/Queries/userTagQueries/README.md +++ /dev/null @@ -1,13 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / GraphQl/Queries/userTagQueries - -# GraphQl/Queries/userTagQueries - -## Variables - -- [USER\_TAG\_SUB\_TAGS](variables/USER_TAG_SUB_TAGS.md) -- [USER\_TAGS\_ASSIGNED\_MEMBERS](variables/USER_TAGS_ASSIGNED_MEMBERS.md) -- [USER\_TAGS\_MEMBERS\_TO\_ASSIGN\_TO](variables/USER_TAGS_MEMBERS_TO_ASSIGN_TO.md) diff --git a/docs/docs/auto-docs/GraphQl/Queries/userTagQueries/variables/USER_TAGS_ASSIGNED_MEMBERS.md b/docs/docs/auto-docs/GraphQl/Queries/userTagQueries/variables/USER_TAGS_ASSIGNED_MEMBERS.md deleted file mode 100644 index b1ce6696f8..0000000000 --- a/docs/docs/auto-docs/GraphQl/Queries/userTagQueries/variables/USER_TAGS_ASSIGNED_MEMBERS.md +++ /dev/null @@ -1,21 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [GraphQl/Queries/userTagQueries](../README.md) / USER\_TAGS\_ASSIGNED\_MEMBERS - -# Variable: USER\_TAGS\_ASSIGNED\_MEMBERS - -> `const` **USER\_TAGS\_ASSIGNED\_MEMBERS**: `DocumentNode` - -Defined in: [src/GraphQl/Queries/userTagQueries.ts:10](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/GraphQl/Queries/userTagQueries.ts#L10) - -GraphQL query to retrieve organization members assigned a certain tag. - -## Param - -The ID of the tag that is assigned. - -## Returns - -The list of organization members. diff --git a/docs/docs/auto-docs/GraphQl/Queries/userTagQueries/variables/USER_TAGS_MEMBERS_TO_ASSIGN_TO.md b/docs/docs/auto-docs/GraphQl/Queries/userTagQueries/variables/USER_TAGS_MEMBERS_TO_ASSIGN_TO.md deleted file mode 100644 index 60c8ed4338..0000000000 --- a/docs/docs/auto-docs/GraphQl/Queries/userTagQueries/variables/USER_TAGS_MEMBERS_TO_ASSIGN_TO.md +++ /dev/null @@ -1,21 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [GraphQl/Queries/userTagQueries](../README.md) / USER\_TAGS\_MEMBERS\_TO\_ASSIGN\_TO - -# Variable: USER\_TAGS\_MEMBERS\_TO\_ASSIGN\_TO - -> `const` **USER\_TAGS\_MEMBERS\_TO\_ASSIGN\_TO**: `DocumentNode` - -Defined in: [src/GraphQl/Queries/userTagQueries.ts:119](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/GraphQl/Queries/userTagQueries.ts#L119) - -GraphQL query to retrieve organization members that aren't assigned a certain tag. - -## Param - -The ID of the tag. - -## Returns - -The list of organization members. diff --git a/docs/docs/auto-docs/GraphQl/Queries/userTagQueries/variables/USER_TAG_SUB_TAGS.md b/docs/docs/auto-docs/GraphQl/Queries/userTagQueries/variables/USER_TAG_SUB_TAGS.md deleted file mode 100644 index 35ac8e7d6a..0000000000 --- a/docs/docs/auto-docs/GraphQl/Queries/userTagQueries/variables/USER_TAG_SUB_TAGS.md +++ /dev/null @@ -1,21 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [GraphQl/Queries/userTagQueries](../README.md) / USER\_TAG\_SUB\_TAGS - -# Variable: USER\_TAG\_SUB\_TAGS - -> `const` **USER\_TAG\_SUB\_TAGS**: `DocumentNode` - -Defined in: [src/GraphQl/Queries/userTagQueries.ts:60](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/GraphQl/Queries/userTagQueries.ts#L60) - -GraphQL query to retrieve the sub tags of a certain tag. - -## Param - -The ID of the parent tag. - -## Returns - -The list of sub tags. diff --git a/docs/docs/auto-docs/README.md b/docs/docs/auto-docs/README.md deleted file mode 100644 index cdfd8da1c5..0000000000 --- a/docs/docs/auto-docs/README.md +++ /dev/null @@ -1,60 +0,0 @@ -**talawa-admin** - -*** - -# Talawa Admin - -💬 Join the community on Slack from our [Palisadoes Foundation GitHub Home Page](https://github.com/PalisadoesFoundation) - -![talawa-logo-lite-200x200](https://github.com/PalisadoesFoundation/talawa-admin/assets/16875803/26291ec5-d3c1-4135-8bc7-80885dff613d) - -[![License: GPL v3](https://img.shields.io/badge/License-GPLv3-blue.svg)](https://www.gnu.org/licenses/gpl-3.0) -[![GitHub stars](https://img.shields.io/github/stars/PalisadoesFoundation/talawa-admin.svg?style=social&label=Star&maxAge=2592000)](https://github.com/PalisadoesFoundation/talawa-admin) -[![GitHub forks](https://img.shields.io/github/forks/PalisadoesFoundation/talawa-admin.svg?style=social&label=Fork&maxAge=2592000)](https://github.com/PalisadoesFoundation/talawa-admin) -[![codecov](https://codecov.io/gh/PalisadoesFoundation/talawa-admin/branch/develop/graph/badge.svg?token=II0R0RREES)](https://codecov.io/gh/PalisadoesFoundation/talawa-admin) - -Talawa is a modular open source project to manage group activities of both non-profit organizations and businesses. - -Core features include: - -1. Membership management -2. Groups management -3. Event registrations -4. Recurring meetings -5. Facilities registrations - -`talawa` is based on the original `quito` code created by the [Palisadoes Foundation][pfd] as part of its annual Calico Challenge program. Calico provides paid summer internships for Jamaican university students to work on selected open source projects. They are mentored by software professionals and receive stipends based on the completion of predefined milestones. Calico was started in 2015. Visit [The Palisadoes Foundation's website](http://www.palisadoes.org/) for more details on its origin and activities. - -# Table of Contents - - - -- [Talawa Components](#talawa-components) -- [Documentation](#documentation) -- [Videos](#videos) - - - -# Talawa Components - -`talawa` has these major software components: - -1. **talawa**: [A mobile application with social media features](https://github.com/PalisadoesFoundation/talawa) -1. **talawa-api**: [An API providing access to user data and features](https://github.com/PalisadoesFoundation/talawa-api) -1. **talawa-admin**: [A web based administrative portal](https://github.com/PalisadoesFoundation/talawa-admin) -1. **talawa-docs**: [The online documentation website](https://github.com/PalisadoesFoundation/talawa-docs) - -# Documentation - -1. You can install the software for this repository using the steps in our [INSTALLATION.md](_media/INSTALLATION.md) file. -1. Do you want to contribute to our code base? Look at our [CONTRIBUTING.md](_media/CONTRIBUTING.md) file to get started. There you'll also find links to: - 1. Our code of conduct documentation in the [CODE_OF_CONDUCT.md](_media/CODE_OF_CONDUCT.md) file. - 1. How we handle the processing of new and existing issues in our [ISSUE_GUIDELINES.md](_media/ISSUE_GUIDELINES.md) file. - 1. The methodologies we use to manage our pull requests in our [PR_GUIDELINES.md](_media/PR_GUIDELINES.md) file. -1. The `talawa` documentation can be found at our [docs.talawa.io](https://docs.talawa.io) site. - 1. It is automatically generated from the markdown files stored in our [Talawa-Docs GitHub repository](https://github.com/PalisadoesFoundation/talawa-docs). This makes it easy for you to update our documenation. - -# Videos - -1. Visit our [YouTube Channel playlists](https://www.youtube.com/@PalisadoesOrganization/playlists) for more insights - 1. The "[Getting Started - Developers](https://www.youtube.com/watch?v=YpBUoHxEeyg&list=PLv50qHwThlJUIzscg9a80a9-HmAlmUdCF&index=1)" videos are extremely helpful for new open source contributors. diff --git a/docs/docs/auto-docs/_media/CODE_OF_CONDUCT.md b/docs/docs/auto-docs/_media/CODE_OF_CONDUCT.md deleted file mode 100644 index b82fab3779..0000000000 --- a/docs/docs/auto-docs/_media/CODE_OF_CONDUCT.md +++ /dev/null @@ -1,150 +0,0 @@ -# Contributor Covenant Code of Conduct - -# Table of Contents - - - -- [Our Pledge](#our-pledge) -- [Our Standards](#our-standards) -- [Enforcement Responsibilities](#enforcement-responsibilities) -- [Scope](#scope) -- [Enforcement](#enforcement) -- [Enforcement Guidelines](#enforcement-guidelines) - - [1. Correction](#1-correction) - - [2. Warning](#2-warning) - - [3. Temporary Ban](#3-temporary-ban) - - [4. Permanent Ban](#4-permanent-ban) -- [Attribution](#attribution) - - - -## Our Pledge - -We as members, contributors, and leaders pledge to make participation in our -community a harassment-free experience for everyone, regardless of age, body -size, visible or invisible disability, ethnicity, sex characteristics, gender -identity and expression, level of experience, education, socio-economic status, -nationality, personal appearance, race, caste, color, religion, or sexual identity -and orientation. - -We pledge to act and interact in ways that contribute to an open, welcoming, -diverse, inclusive, and healthy community. - -## Our Standards - -Examples of behavior that contributes to a positive environment for our -community include: - -- Demonstrating empathy and kindness toward other people -- Being respectful of differing opinions, viewpoints, and experiences -- Giving and gracefully accepting constructive feedback -- Accepting responsibility and apologizing to those affected by our mistakes, - and learning from the experience -- Focusing on what is best not just for us as individuals, but for the - overall community - -Examples of unacceptable behavior include: - -- The use of sexualized language or imagery, and sexual attention or - advances of any kind -- Trolling, insulting or derogatory comments, and personal or political attacks -- Public or private harassment -- Publishing others' private information, such as a physical or email - address, without their explicit permission -- Other conduct which could reasonably be considered inappropriate in a - professional setting - -## Enforcement Responsibilities - -Community leaders are responsible for clarifying and enforcing our standards of -acceptable behavior and will take appropriate and fair corrective action in -response to any behavior that they deem inappropriate, threatening, offensive, -or harmful. - -Community leaders have the right and responsibility to remove, edit, or reject -comments, commits, code, wiki edits, issues, and other contributions that are -not aligned to this Code of Conduct, and will communicate reasons for moderation -decisions when appropriate. - -## Scope - -This Code of Conduct applies within all community spaces, and also applies when -an individual is officially representing the community in public spaces. -Examples of representing our community include using an official e-mail address, -posting via an official social media account, or acting as an appointed -representative at an online or offline event. - -## Enforcement - -Instances of abusive, harassing, or otherwise unacceptable behavior may be -reported to the community leaders responsible for enforcement at [The Palisadoes Foundation](http://www.palisadoes.org/) - -All complaints will be reviewed and investigated promptly and fairly. - -All community leaders are obligated to respect the privacy and security of the -reporter of any incident. - -## Enforcement Guidelines - -Community leaders will follow these Community Impact Guidelines in determining -the consequences for any action they deem in violation of this Code of Conduct: - -### 1. Correction - -**Community Impact**: Use of inappropriate language or other behavior deemed -unprofessional or unwelcome in the community. - -**Consequence**: A private, written warning from community leaders, providing -clarity around the nature of the violation and an explanation of why the -behavior was inappropriate. A public apology may be requested. - -### 2. Warning - -**Community Impact**: A violation through a single incident or series -of actions. - -**Consequence**: A warning with consequences for continued behavior. No -interaction with the people involved, including unsolicited interaction with -those enforcing the Code of Conduct, for a specified period of time. This -includes avoiding interactions in community spaces as well as external channels -like social media. Violating these terms may lead to a temporary or -permanent ban. - -### 3. Temporary Ban - -**Community Impact**: A serious violation of community standards, including -sustained inappropriate behavior. - -**Consequence**: A temporary ban from any sort of interaction or public -communication with the community for a specified period of time. No public or -private interaction with the people involved, including unsolicited interaction -with those enforcing the Code of Conduct, is allowed during this period. -Violating these terms may lead to a permanent ban. - -### 4. Permanent Ban - -**Community Impact**: Demonstrating a pattern of violation of community -standards, including sustained inappropriate behavior, harassment of an -individual, or aggression toward or disparagement of classes of individuals. - -**Consequence**: A permanent ban from any sort of public interaction within -the community. - -## Attribution - -This Code of Conduct is adapted from the [Contributor Covenant][homepage], -version 2.0, available at -[https://www.contributor-covenant.org/version/2/0/code_of_conduct.html][v2.0]. - -Community Impact Guidelines were inspired by -[Mozilla's code of conduct enforcement ladder][mozilla coc]. - -For answers to common questions about this code of conduct, see the FAQ at -[https://www.contributor-covenant.org/faq][faq]. Translations are available -at [https://www.contributor-covenant.org/translations][translations]. - -[homepage]: https://www.contributor-covenant.org -[v2.0]: https://www.contributor-covenant.org/version/2/0/code_of_conduct.html -[mozilla coc]: https://github.com/mozilla/diversity -[faq]: https://www.contributor-covenant.org/faq -[translations]: https://www.contributor-covenant.org/translations diff --git a/docs/docs/auto-docs/_media/CONTRIBUTING.md b/docs/docs/auto-docs/_media/CONTRIBUTING.md deleted file mode 100644 index dbe448c807..0000000000 --- a/docs/docs/auto-docs/_media/CONTRIBUTING.md +++ /dev/null @@ -1,179 +0,0 @@ -# Contributing to Talawa-Admin - -Thank you for your interest in contributing to Talawa Admin. Regardless of the size of the contribution you make, all contributions are welcome and are appreciated. - -If you are new to contributing to open source, please read the Open Source Guides on [How to Contribute to Open Source](https://opensource.guide/how-to-contribute/). - -## Table of Contents - - - -- [Code of Conduct](#code-of-conduct) -- [Videos](#videos) -- [Ways to Contribute](#ways-to-contribute) - - [Our Development Process](#our-development-process) - - [Issues](#issues) - - [Pull Requests](#pull-requests) - - [Branching Strategy](#branching-strategy) - - [Conflict Resolution](#conflict-resolution) - - [Contributing Code](#contributing-code) -- [Internships](#internships) -- [Community](#community) - - - -## Code of Conduct - -A safe environment is required for everyone to contribute. Read our [Code of Conduct Guide](CODE_OF_CONDUCT.md) to understand what this means. Let us know immediately if you have unacceptable experiences in this area. - -No one should fear voicing their opinion. Respones must be respectful. - -## Videos - -1. Visit our [YouTube Channel playlists](https://www.youtube.com/@PalisadoesOrganization/playlists) for more insights - 1. The "[Getting Started - Developers](https://www.youtube.com/watch?v=YpBUoHxEeyg&list=PLv50qHwThlJUIzscg9a80a9-HmAlmUdCF&index=1)" videos are extremely helpful for new open source contributors. - -## Ways to Contribute - -If you are ready to start contributing code right away, get ready! - -1. Join our Slack and introduce yourself. See details on how to join below in the Community section. - 1. This repository has its own dedicated channel. - 1. There are many persons on the various channels who are willing to assist you in getting started. -1. Take a look at our issues (**_after reading our guidelines below_**): - 1. We have a list of [good first issues](https://github.com/PalisadoesFoundation/talawa-admin/labels/good%20first%20issue) that contain challenges with a limited scope for beginners. - 1. There are issues for creating tests for our code base. We need to increase reliablility. Try those issues, or create your own for files that don't already have tests. This is another good strategy for beginners. - 1. There are [dormant issues on which nobody has worked for some time](https://github.com/PalisadoesFoundation/talawa-admin/issues?q=is%3Aopen+is%3Aissue+label%3Ano-issue-activity). These are another place to start - 1. There may also be [dormant PRs on which nobody has worked for some time](https://github.com/PalisadoesFoundation/talawa-admin/issues?q=is%3Aopen+is%3Aissue+label%3Ano-issue-activity+label%3Ano-pr-activity)! -1. Create an issue based on a bug you have found or a feature you would like to add. We value meaningful sugestions and will prioritize them. - -Welcome aboard! - -### Our Development Process - -We utilize GitHub issues and pull requests to keep track of issues and contributions from the community. - -#### Issues - -Make sure you are following [issue report guidelines](ISSUE_GUIDELINES.md) available here before creating any new issues on Talawa Admin project. - -#### Pull Requests - -[Pull Request guidelines](PR_GUIDELINES.md) is best resource to follow to start working on open issues. - -#### Branching Strategy - -For Talawa Admin, we had employed the following branching strategy to simplify the development process and to ensure that only stable code is pushed to the `main` branch: - -- `develop`: For unstable code and bug fixing -- `main`: Where the stable production ready code lies. This is our default branch. - -#### Conflict Resolution - -When multiple developers are working on issues there is bound to be a conflict of interest (not to be confused with git conflicts) among issues, PRs or even ideas. Usually these conflicts are resolved in a **First Come First Serve** basis however there are certain exceptions to it. - -- In the cases where you feel your potential issues could be an extension or in conflict with other PRs it is important to ask the author of the PR in the slack channel or in their PRs or issues themselves why he/she did not write code for something that would require minimal effort on their part. -- Based on basic courtesy, it is good practice to let the person who created a function apply and test that function when needed. -- Last but not the least, communication is important make sure to talk to other contributors, in these cases, in slack channel or in a issue/PR thread. -- As a last resort the Admins would be responsible for deciding how to resolve this conflict. - -### Contributing Code - -Code contributions to Talawa come in the form of pull requests. These are done by forking the repo and making changes locally. - -Make sure you have read the [Documentation for Setting up the Project](https://github.com/PalisadoesFoundation/talawa-admin#project-setup) - -The process of proposing a change to Talawa Admin can be summarized as: - -1. Fork the Talawa Admin repository and branch off `develop`. -1. Your newly forked repository can be cloned locally using `git clone `. -1. Make the Palisadoes Foundation's repo your `git upstream` for your local repo. -1. Make the desired changes to the Talawa Admin project. -1. Run the app and test your changes. -1. If you've added code, then test suites must be added. - - 1. **_General_:** - - 1. We need to get to 100% test coverage for the app. We periodically increase the desired test coverage for our pull requests to meet this goal. - 1. Pull requests that don't meet the minimum test coverage levels will not be accepted. This may mean that you will have to create tests for code you did not write. You can decide which part of the code base needs additional tests if this happens to you. - - 2. **_Testing_:** - - 1. Test using this set of commands: - - ``` - npm install - npm run test --watchAll=false --coverage - ``` - - 2. Debug tests in browser - - You can see the output of failing tests in broswer by running `jest-preview` package before running your tests - - ``` - npm install - npm run jest-preview - npm run test --watchAll=false --coverage - ``` - - You don't need to re-run the `npm run jest-preview` command each time, simply run the `npm run test` command if the Jest Preview server is already running in the background, it'll automatically detect any failing tests and show the preview at `http://localhost:3336` as shown in this screenshot - - - ![Debugging Test Demo](./public/images/jest-preview.webp) - - 3. **_Test Code Coverage_:** - - 1. _General Information_ - 1. The current code coverage of the repo is: [![codecov](https://codecov.io/gh/PalisadoesFoundation/talawa-admin/branch/develop/graph/badge.svg?token=II0R0RREES)](https://codecov.io/gh/PalisadoesFoundation/talawa-admin) - 2. You can determine the percentage test coverage of your code by running these two commands in sequence: - ``` - npm install - npm run test --watchAll=false --coverage - genhtml coverage/lcov.info -o coverage - ``` - 3. The output of the `npm run test` command will give you a tablular coverage report per file - 4. The overall coverage rate will be visible on the penultimate line of the `genhtml` command's output. - 5. The `genhtml` command is part of the Linux `lcov` package. Similar packages can be found for Windows and MacOS. - 6. The currently acceptable coverage rate can be found in the [GitHub Pull Request file](.github/workflows/pull-requests.yml). Search for the value below the line containing `min_coverage`. - 2. _Testing Individual Files_ - 1. You can test an individual file by running this command: - ``` - npm run test --watchAll=false /path/to/test/file - ``` - 2. You can get the test coverage report for that file by running this command. The report will list all tests in the suite. Those tests that are not run will have zero values. You will need to look for the output line relevant to your test file. - ``` - npm run test --watchAll=false --coverage /path/to/test/file - ``` - 3. _Creating your code coverage account_ - - 1. You can also see your code coverage online for your fork of the repo. This is provided by `codecov.io` - - 1. Go to this link: `https://app.codecov.io/gh/XXXX/YYYY` where XXXX is your GitHub account username and YYYY is the name of the repository - 2. Login to `codecov.io` using your GitHub account, and add your **repo** and **branches** to the `codecov.io` dashboard. - ![Debugging Test Demo](/public/images/codecov/authorise-codecov-github.jpg) - 3. Remember to add the `Repository Upload Token` for your forked repo. This can be found under `Settings` of your `codecov.io` account. - - 4. Click on Setup Repo option - ![Debugging Test Demo]() - 5. Use the value of this token to create a secret named CODE_COV for your forked repo. - [![Code-cov-token.jpg](/public/images/codecov/Code-cov-token.jpg)]() - [![addd-your-key.jpg](/public/images/codecov/addd-your-key.jpg)]() - 6. You will see your code coverage reports with every push to your repo after following these steps - [![results.jpg](/public/images/codecov/results.jpg)]() - -1. After making changes you can add them to git locally using `git add `(to add changes only in a particular file) or `git add .` (to add all changes). -1. After adding the changes you need to commit them using `git commit -m ''`(look at the commit guidelines below for commit messages). -1. Once you have successfully commited your changes, you need to push the changes to the forked repo on github using: `git push origin `.(Here branch name must be name of the branch you want to push the changes to.) -1. Now create a pull request to the Talawa-admin repository from your forked repo. Open an issue regarding the same and link your PR to it. -1. Ensure the test suite passes, either locally or on CI once a PR has been created. -1. Review and address comments on your pull request if requested. - -## Internships - -If you are participating in any of the various internship programs we are members of, then please read the [introduction guides on our documentation website](https://docs.talawa.io/docs/). - -## Community - -There are many ways to communicate with the community. - -1. The Palisadoes Foundation has a Slack channel where members can assist with support and clarification. Visit the [Talawa GitHub repository home page](https://github.com/PalisadoesFoundation/talawa) for the link to join our slack channel. -1. We also have a technical email list run by [freelists.org](https://www.freelists.org/). Search for "palisadoes" and join. Members on this list are also periodically added to our marketing email list that focuses on less technical aspects of our work. diff --git a/docs/docs/auto-docs/_media/INSTALLATION.md b/docs/docs/auto-docs/_media/INSTALLATION.md deleted file mode 100644 index 3c09f69e33..0000000000 --- a/docs/docs/auto-docs/_media/INSTALLATION.md +++ /dev/null @@ -1,382 +0,0 @@ -# Talawa-Admin Installation - -This document provides instructions on how to set up and start a running instance of `talawa-admin` on your local system. The instructions are written to be followed in sequence so make sure to go through each of them step by step without skipping any sections. - -# Table of Contents - - - -- [Installation Steps Summary](#installation-steps-summary) -- [Prerequisites](#prerequisites) - - [Install git](#install-git) - - [Setting up this repository](#setting-up-this-repository) - - [Install node.js](#install-nodejs) - - [Install TypeScript](#install-typescript) - - [Install Required Packages](#install-required-packages) -- [Installation using Docker](#installation-using-docker) - - [Prerequisites](#prerequisites-1) - - [Development Setup](#development-setup) - - - -# Installation Steps Summary - -Installation is not difficult, but there are many steps. This is a brief explanation of what needs to be done: - -1. Install `git` -2. Download the code from GitHub using `git` -3. Install `node.js` (Node), the runtime environment the application will need to work. -4. Configure the Node Package Manager (`npm`) to automatically use the correct version of Node for our application. -5. Use `npm` to install TypeScript, the language the application is written in. -6. Install other supporting software such as the database. -7. Configure the application -8. Start the application - -These steps are explained in more detail in the sections that follow. - -# Prerequisites - -In this section we'll explain how to set up all the prerequisite software packages to get you up and running. - -## Install git - -The easiest way to get the latest copies of our code is to install the `git` package on your computer. - -Follow the setup guide for `git` on official [git docs](https://git-scm.com/downloads). Basic `git` knowledge is required for open source contribution so make sure you're comfortable with it. [Here's](https://youtu.be/apGV9Kg7ics) a good tutorial to get started with `git` and `github`. - -## Setting up this repository - -First you need a local copy of `talawa-admin`. Run the following command in the directory of choice on your local system. - -1. On your computer, navigate to the folder where you want to setup the repository. -2. Open a `cmd` (Windows) or `terminal` (Linux or MacOS) session in this folder. - 1. An easy way to do this is to right-click and choose appropriate option based on your OS. -3. **For Our Open Source Contributor Software Developers:** - - 1. Next, we'll fork and clone the `talawa-admin` repository. - 1. In your web browser, navigate to [https://github.com/PalisadoesFoundation/talawa-admin/](https://github.com/PalisadoesFoundation/talawa-admin/) and click on the `fork` button. It is placed on the right corner opposite the repository name `PalisadoesFoundation/talawa-admin`. - - ![Image with fork](public/markdown/images/install1.png) - - 1. You should now see `talawa-admin` under your repositories. It will be marked as forked from `PalisadoesFoundation/talawa-admin` - - ![Image of user's clone](public/markdown/images/install2.png) - - 1. Clone the repository to your local computer (replacing the values in `{{}}`): - ```bash - $ git clone https://github.com/{{YOUR GITHUB USERNAME}}/talawa-admin.git - cd talawa-admin - git checkout develop - ``` - - **Note:** Make sure to check out the `develop` branch - 1. You now have a local copy of the code files. For more detailed instructions on contributing code, and managing the versions of this repository with `git`, checkout our [CONTRIBUTING.md](./CONTRIBUTING.md) file. - -4. **Talawa Administrators:** - - 1. Clone the repository to your local computer using this command: - - ```bash - $ git clone https://github.com/PalisadoesFoundation/talawa-admin.git - ``` - -## Install node.js - -Best way to install and manage `node.js` is making use of node version managers. We recommend using `fnm`, which will be described in more detail later. - -Follow these steps to install the `node.js` packages in Windows, Linux and MacOS. - -1. For Windows: - 1. first install `node.js` from their website at https://nodejs.org - 1. When installing, don't click the option to install the `necessary tools`. These are not needed in our case. - 2. then install [fnm](https://github.com/Schniz/fnm). Please read all the steps in this section first. - 1. All the commands listed on this page will need to be run in a Windows terminal session in the `talawa-admin` directory. - 2. Install `fnm` using the `winget` option listed on the page. - 3. Setup `fnm` to automatically set the version of `node.js` to the version required for the repository using these steps: - 1. First, refer to the `fnm` web page's section on `Shell Setup` recommendations. - 2. Open a `Windows PowerShell` terminal window - 3. Run the recommended `Windows PowerShell` command to open `notepad`. - 4. Paste the recommended string into `notepad` - 5. Save the document. - 6. Exit `notepad` - 7. Exit PowerShell - 8. This will ensure that you are always using the correct version of `node.js` -2. For Linux and MacOS, use the terminal window. - 1. install `node.js` - 2. then install `fnm` - 1. Refer to the installation page's section on the `Shell Setup` recommendations. - 2. Run the respective recommended commands to setup your node environment - 3. This will ensure that you are always using the correct version of `node.js` - -## Install TypeScript - -TypeScript is a typed superset of JavaScript that compiles to plain JavaScript. It adds optional types, classes, and modules to JavaScript, and supports tools for large-scale JavaScript applications. - -To install TypeScript, you can use the `npm` command which comes with `node.js`: - -```bash -npm install -g typescript -``` - -This command installs TypeScript globally on your system so that it can be accessed from any project. - -## Install Required Packages - -Run the following command to install the packages and dependencies required by the app: - -``` -npm install -``` - -The prerequisites are now installed. The next step will be to get the app up and running. - -# Installation using Docker - -## Prerequisites - -1. Install Docker on your system: - - [Docker Desktop for Windows/Mac](https://www.docker.com/products/docker-desktop) - - [Docker Engine for Linux](https://docs.docker.com/engine/install/) - -### Development Setup - -If you prefer to use Docker, you can install the app using the following command: - -1. Create a `.env` file as described in the Configuration section - -2. Build the Docker Image: - -Run the following command to build the Docker image: - -````bash -docker build -t talawa-admin . -```bash - -3. Run the Docker container: - -After the build is complete, run the Docker container using this command: - -```bash -docker run -p 4321:4321 talawa-admin -```bash - -The application will be accessible at `http://localhost:4321` - -# Configuration - -It's important to configure Talawa-Admin. Here's how to do it. - -You can use our interactive setup script for the configuration. Use the following command for the same. - -```bash -npm run setup -```bash - -All the options in "setup" can be done manually as well and here's how to do it. - [Creating .env file](#creating-env-file) - -## Creating .env file - -A file named .env is required in the root directory of talawa-admin for storing environment variables used at runtime. It is not a part of the repo and you will have to create it. For a sample of `.env` file there is a file named `.env.example` in the root directory. Create a new `.env` file by copying the contents of the `.env.example` into `.env` file. Use this command: - -```` - -cp .env.example .env - -``` - -This `.env` file must be populated with the following environment variables for `talawa-admin` to work: - -| Variable | Description | -| ------------------------------- | ------------------------------------------------- | -| PORT | Custom port for Talawa-Admin development purposes | -| REACT_APP_TALAWA_URL | URL endpoint for talawa-api graphql service | -| REACT_APP_BACKEND_WEBSOCKET_URL | URL endpoint for websocket end point | -| REACT_APP_USE_RECAPTCHA | Whether you want to use reCAPTCHA or not | -| REACT_APP_RECAPTCHA_SITE_KEY | Site key for authentication using reCAPTCHA | - -Follow the instructions from the sections [Setting up PORT in .env file](#setting-up-port-in-env-file), [Setting up REACT_APP_TALAWA_URL in .env file](#setting-up-REACT_APP_TALAWA_URL-in-env-file), [Setting up REACT_APP_BACKEND_WEBSOCKET_URL in .env file](#setting-up-react_app_backend_websocket_url-in-env-file), [Setting up REACT_APP_RECAPTCHA_SITE_KEY in .env file](#setting-up-REACT_APP_RECAPTCHA_SITE_KEY-in-env-file) and [Setting up Compiletime and Runtime logs](#setting-up-compiletime-and-runtime-logs) to set up these environment variables. - -## Setting up PORT in .env file - -Add a custom port number for Talawa-Admin development purposes to the variable named `PORT` in the `.env` file. - -## Setting up REACT_APP_TALAWA_URL in .env file - -Add the endpoint for accessing talawa-api graphql service to the variable named `REACT_APP_TALAWA_URL` in the `.env` file. - -``` - -REACT_APP_TALAWA_URL="http://API-IP-ADRESS:4000/graphql/" - -``` - -If you are a software developer working on your local system, then the URL would be: - -``` - -REACT_APP_TALAWA_URL="http://localhost:4000/graphql/" - -``` - -If you are trying to access Talawa Admin from a remote host with the API URL containing "localhost", You will have to change the API URL to - -``` - -REACT_APP_TALAWA_URL="http://YOUR-REMOTE-ADDRESS:4000/graphql/" - -``` - -## Setting up REACT_APP_BACKEND_WEBSOCKET_URL in .env file - -The endpoint for accessing talawa-api WebSocket graphql service for handling subscriptions is automatically added to the variable named `REACT_APP_BACKEND_WEBSOCKET_URL` in the `.env` file. - -``` - -REACT_APP_BACKEND_WEBSOCKET_URL="ws://API-IP-ADRESS:4000/graphql/" - -``` - -If you are a software developer working on your local system, then the URL would be: - -``` - -REACT_APP_BACKEND_WEBSOCKET_URL="ws://localhost:4000/graphql/" - -``` - -If you are trying to access Talawa Admin from a remote host with the API URL containing "localhost", You will have to change the API URL to - -``` - -REACT_APP_BACKEND_WEBSOCKET_URL="ws://YOUR-REMOTE-ADDRESS:4000/graphql/" - -``` - -For additional details, please refer the `How to Access the Talawa-API URL` section in the INSTALLATION.md file found in the [Talawa-API repo](https://github.com/PalisadoesFoundation/talawa-api). - -## Setting up REACT_APP_RECAPTCHA_SITE_KEY in .env file - -You may not want to setup reCAPTCHA since the project will still work. Moreover, it is recommended to not set it up in development environment. - -Just skip to the [Post Configuration Steps](#post-configuration-steps) if you don't want to set it up. Else, read the following steps. - -If you want to setup Google reCAPTCHA now, you may refer to the `RECAPTCHA` section in the INSTALLATION.md file found in [Talawa-API repo](https://github.com/PalisadoesFoundation/talawa-api). - -`Talawa-admin` needs the `reCAPTCHA site key` for the `reCAPTCHA` service you set up during `talawa-api` installation as shown in this screenshot: - -![reCAPTCHA site key](./public/images/REACT_SITE_KEY.webp) - -Copy/paste this `reCAPTCHA site key` to the variable named `REACT_APP_RECAPTCHA_SITE_KEY` in `.env` file. - -``` - -REACT_APP_RECAPTCHA_SITE_KEY="this_is_the_recaptcha_key" - -``` - -## Setting up Compiletime and Runtime logs - -Set the `ALLOW_LOGS` to "YES" if you want warnings , info and error messages in your console or leave it blank if you dont need them or want to keep the console clean - -# Post Configuration Steps - -It's now time to start Talawa-Admin and get it running - -## Running Talawa-Admin - -Run the following command to start `talawa-admin` development server: - -``` - -npm run serve - -``` - -## Accessing Talawa-Admin - -By default `talawa-admin` runs on port `4321` on your system's localhost. It is available on the following endpoint: - -``` - -http://localhost:4321/ - -``` - -If you have specified a custom port number in your `.env` file, Talawa-Admin will run on the following endpoint: - -``` - -http://localhost:${{customPort}}/ - -``` - -Replace `${{customPort}}` with the actual custom port number you have configured in your `.env` file. - -## Talawa-Admin Registration - -The first time you navigate to the running talawa-admin's website you'll land at talawa-admin registration page. Sign up using whatever credentials you want and create the account. Make sure to remember the email and password you entered because they'll be used to sign you in later on. - -## Talawa-Admin Login - -Now sign in to talawa-admin using the `email` and `password` you used to sign up. - -# Testing - -It is important to test our code. If you are a contributor, please follow these steps. - -## Running tests - -You can run the tests for `talawa-admin` using this command: - -``` - -npm run test - -``` - -## Debugging tests - -You can see the output of failing tests in broswer by running `jest-preview` package before running your tests - -``` - -npm run jest-preview -npm run test - -``` - -You don't need to re-run the `npm run jest-preview` command each time, simply run the `npm run test` command if the Jest Preview server is already running in the background, it'll automatically detect any failing tests and show the preview at `http://localhost:3336` as shown in this screenshot - - -![Debugging Test Demo](./public/images/jest-preview.webp) - -## Linting code files - -You can lint your code files using this command: - -``` - -npm run lint:fix - -``` - -## Husky for Git Hooks - -We are using the package `Husky` to run git hooks that run according to different git workflows. - -#### pre-commit hook - -We run a pre-commit hook which automatically runs code quality checks each time you make a commit and also fixes some of the issues. This way you don't have to run them manually each time. - -If you don't want these pre-commit checks running on each commit, you can manually opt out of it using the `--no-verify` flag with your commit message as shown:- - - git commit -m "commit message" --no-verify - -#### post-merge hook - -We are also running a post-merge(post-pull) hook which will automatically run "npm install" only if there is any change made to pakage.json file so that the developer has all the required dependencies when pulling files from remote. - -If you don't want this hook to run, you can manually opt out of this using the `no verify` flag while using the merge command(git pull): - - git pull --no-verify - -
-``` diff --git a/docs/docs/auto-docs/_media/ISSUE_GUIDELINES.md b/docs/docs/auto-docs/_media/ISSUE_GUIDELINES.md deleted file mode 100644 index 5170de5839..0000000000 --- a/docs/docs/auto-docs/_media/ISSUE_GUIDELINES.md +++ /dev/null @@ -1,59 +0,0 @@ -# Issue Report Guidelines - -:+1::tada: First off, thanks for taking the time to contribute! :tada::+1: - -In order to give everyone a chance to submit a issues reports and contribute to the Talawa project, we have put restrictions in place. This section outlines the guidelines that should be imposed upon issue reports in the Talawa project. - -___ -## Table of Contents - - - -- [Issue Management](#issue-management) - - [New Issues](#new-issues) - - [Existing Issues](#existing-issues) - - [Feature Request Issues](#feature-request-issues) - - [Monitoring the Creation of New Issues](#monitoring-the-creation-of-new-issues) -- [General Guidelines](#general-guidelines) - - - -___ -## Issue Management - -In all cases please use the [GitHub open issue search](https://github.com/PalisadoesFoundation/talawa-admin/issues) to check whether the issue has already been reported. - -### New Issues -To create new issues follow these steps: - -1. Your issue may have already been created. Search for duplicate open issues before submitting yours.for similar deficiencies in the code.duplicate issues are created. -1. Verify whether the issue has been fixed by trying to reproduce it using the latest master or development branch in the repository. -1. Click on the [`New Issue`](https://github.com/PalisadoesFoundation/talawa-admin/issues/new/choose) button -1. Use the templates to create a standardized report of what needs to be done and why. -1. If you want to be assigned the issue that you have created, then add a comment immediately after submitting it. - -We welcome contributors who find new ways to make the code better. - -### Existing Issues - -You can also be a valuable contributor by searching for dormant issues. Here's how you can do that: - -1. **Previously Assigned Issues**: We regularly review issues and add a [`no-issue-activity`](https://github.com/PalisadoesFoundation/talawa-admin/issues?q=is%3Aissue+is%3Aopen+label%3Ano-issue-activity) label to them. Use the issue comments to ask whether the assignee is still working on the issue, and if not, ask for the issue to be assigned to you. -1. **Unassigned Issues**: If the issue is already reported and [not assigned to anyone](https://github.com/PalisadoesFoundation/talawa-admin/issues?q=is%3Aissue+is%3Aopen+no%3Aassignee) and you are interested in working on the issue then: - 1. Ask for the issue to be assigned to you in the issue comments - 2. Ask our contributors to assign it to you in `#talawa` slack channel. - -Working on these types of existing issues is a good way of getting started with the community. - -### Feature Request Issues - -Feature requests are welcome. But take a moment to find out whether your idea fits with the scope and aims of the project. It's up to you to make a strong case to convince the mentors of the merits of this feature. Please provide as much detail and context as possible. - -### Monitoring the Creation of New Issues -1. Join our `#talawa-github` slack channel for automatic issue and pull request updates. - -## General Guidelines - -1. Discuss issues in our various slack channels when necessary -2. Please do not derail or troll issues. -3. Keep the discussion on topic and respect the opinions of others. diff --git a/docs/docs/auto-docs/_media/PR_GUIDELINES.md b/docs/docs/auto-docs/_media/PR_GUIDELINES.md deleted file mode 100644 index 4c904c782d..0000000000 --- a/docs/docs/auto-docs/_media/PR_GUIDELINES.md +++ /dev/null @@ -1,69 +0,0 @@ -# Pull Request Guidelines - -:+1::tada: First off, thanks for taking the time to contribute! :tada::+1: - -In order to give everyone a chance to submit a pull request and contribute to the Talawa project, we have put restrictions in place. This section outlines the guidelines that should be imposed upon pull requests in the Talawa project. - -# Table of Contents - - - -- [Pull Requests and Issues](#pull-requests-and-issues) -- [Linting and Formatting](#linting-and-formatting) -- [Testing](#testing) -- [Pull Request Processing](#pull-request-processing) - - [Only submit PRs against our `develop` branch, not the default `main` branch](#only-submit-prs-against-our-develop-branch-not-the-default-main-branch) - - - -## Pull Requests and Issues - -1. Do not start working on any open issue and raise a PR unless the issue is assigned to you. PRs that don't meet these guidelines will be closed. -1. Pull requests must be based on [open issues](https://github.com/PalisadoesFoundation/talawa-admin/issues) available. -1. [Use this method to automatically close the issue when the PR is completed.](https://docs.github.com/en/github/managing-your-work-on-github/linking-a-pull-request-to-an-issue) - -## Linting and Formatting - -All the pull requests must have code that is properly linted and formatted, so that uniformity across the repository can be ensured. - -Before opening a PR, you can run the following scripts to automatically lint and format the code properly: - -``` -npm run lint:fix -npm run format:fix -``` - -Both of these scripts also have a `check` counterpart, which would be used by the GitHub CI to ensure that the code is properly formatted. -You can run the following scripts yourself to ensure that your pull request doesn't fail due to linting and formatting errors: - -``` -npm run lint:check -npm run format:check -``` - -## Testing - -1. All pull requests must have test units. If, for some reason, it is not possible to add tests, please let us know and explain why. In that case, you'll need to tell us what steps you followed to manually test your changes. -1. Please read our [CONTRIBUTING.md](CONTRIBUTING.md) document for details on our testing policy. - -## Pull Request Processing -These are key guidelines for the procedure: - -### Only submit PRs against our `develop` branch, not the default `main` branch - -1. Only submit PRs against our `develop` branch. The default is `main`, so you will have to modify this before submitting your PR for review. PRs made against `main` will be closed. -1. We do not accept draft Pull Requests. They will be closed if submitted. We focus on work that is ready for immediate review. -1. Removing assigned reviewers from your Pull Request will cause it to be closed. The quality of our code is very important to us. Therefore we make experienced maintainers of our code base review your code. Removing these assigned persons is not in the best interest of this goal. -1. If you have not done so already, please read the `Pull Requests and Issues` and `Testing` sections above. -1. Each contributor may only create one pull request at a time. We have this rule in place due to our limited resources - if everyone was allowed to post multiple pull requests, we would not be able to review them properly. It is also better for contributors because you can focus on creating one quality PR - so spend time making sure it is as good as it can be. -1. Upon successful push to the fork, check if all tests are passing; if not, fix the issues and then create a pull request. -1. If the pull request's code quality is not up to par, or it would break the app, it will more likely be closed. So please be careful when creating a PR. -1. Please follow the PR template provided. Ensure the PR title clearly describes the problem it is solving. In the description, include the relevant issue number, snapshots, and videos after changes are added. -1. If you are borrowing a code, please disclose it. It is fine and sometimes even recommended to borrow code, but we need to know about it to assess your work. If we find out that your pull request contains a lot of code copied from elsewhere, we will close the pull request. -1. No Work In Progress. ONLY completed and working pull requests and with respective test units will be accepted. A WIP would fall under rule 4 and be closed immediately. -1. Please do not @mention contributors and mentors. Sometimes it takes time before we can review your pull request or answer your questions, but we'll get to it sooner or later. @mentioning someone just adds to the pile of notifications we get and it won't make us look at your issue faster. -1. Do not force push. If you make changes to your pull request, please simply add a new commit, as that makes it easy for us to review your new changes. If you force push, we'll have to review everything from the beginning. -1. PR should be small, easy to review and should follow standard coding styles. -1. If PR has conflicts because of recently added changes to the same file, resolve issues, test new changes, and submit PR again for review. -1. PRs should be atomic. That is, they should address one item (issue or feature) -1. After submitting PR, if you are not replying within 48 hours, then in that case, we may need to assign the issue to other contributors based on the priority of the issue. diff --git a/docs/docs/auto-docs/assets/svgs/social-icons/README.md b/docs/docs/auto-docs/assets/svgs/social-icons/README.md deleted file mode 100644 index ea42cd11bd..0000000000 --- a/docs/docs/auto-docs/assets/svgs/social-icons/README.md +++ /dev/null @@ -1,7 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / assets/svgs/social-icons - -# assets/svgs/social-icons diff --git a/docs/docs/auto-docs/components/AddOn/AddOn/README.md b/docs/docs/auto-docs/components/AddOn/AddOn/README.md deleted file mode 100644 index 3fb85e739b..0000000000 --- a/docs/docs/auto-docs/components/AddOn/AddOn/README.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / components/AddOn/AddOn - -# components/AddOn/AddOn - -## Functions - -- [default](functions/default.md) diff --git a/docs/docs/auto-docs/components/AddOn/AddOn/functions/default.md b/docs/docs/auto-docs/components/AddOn/AddOn/functions/default.md deleted file mode 100644 index 4dcce33cf0..0000000000 --- a/docs/docs/auto-docs/components/AddOn/AddOn/functions/default.md +++ /dev/null @@ -1,27 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [components/AddOn/AddOn](../README.md) / default - -# Function: default() - -> **default**(`__namedParameters`): `JSX.Element` - -Defined in: [src/components/AddOn/AddOn.tsx:22](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/AddOn/AddOn.tsx#L22) - -The AddOn component is used to wrap children within a plugin container. -It also accepts additional properties (`extras` and `name`) to allow for -extensibility and custom naming. - -## Parameters - -### \_\_namedParameters - -`InterfaceAddOnProps` - -## Returns - -`JSX.Element` - -The JSX element representing the AddOn component. diff --git a/docs/docs/auto-docs/components/AddOn/core/AddOnEntry/AddOnEntry/README.md b/docs/docs/auto-docs/components/AddOn/core/AddOnEntry/AddOnEntry/README.md deleted file mode 100644 index 66c7ecc60f..0000000000 --- a/docs/docs/auto-docs/components/AddOn/core/AddOnEntry/AddOnEntry/README.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../../README.md) - -*** - -[talawa-admin](../../../../../modules.md) / components/AddOn/core/AddOnEntry/AddOnEntry - -# components/AddOn/core/AddOnEntry/AddOnEntry - -## Functions - -- [default](functions/default.md) diff --git a/docs/docs/auto-docs/components/AddOn/core/AddOnEntry/AddOnEntry/functions/default.md b/docs/docs/auto-docs/components/AddOn/core/AddOnEntry/AddOnEntry/functions/default.md deleted file mode 100644 index b3c7db8b70..0000000000 --- a/docs/docs/auto-docs/components/AddOn/core/AddOnEntry/AddOnEntry/functions/default.md +++ /dev/null @@ -1,43 +0,0 @@ -[**talawa-admin**](../../../../../../README.md) - -*** - -[talawa-admin](../../../../../../modules.md) / [components/AddOn/core/AddOnEntry/AddOnEntry](../README.md) / default - -# Function: default() - -> **default**(`props`): `JSX.Element` - -Defined in: [src/components/AddOn/core/AddOnEntry/AddOnEntry.tsx:46](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/AddOn/core/AddOnEntry/AddOnEntry.tsx#L46) - -A React component that represents an add-on entry, displaying its details and allowing installation or uninstallation. - -## Parameters - -### props - -`InterfaceAddOnEntryProps` - -The properties for the component. - -## Returns - -`JSX.Element` - -A JSX element containing the add-on entry. - -## Example - -```tsx - {}} -/> -``` diff --git a/docs/docs/auto-docs/components/AddOn/core/AddOnEntry/AddOnEntryMocks/README.md b/docs/docs/auto-docs/components/AddOn/core/AddOnEntry/AddOnEntryMocks/README.md deleted file mode 100644 index 04fe5af8f5..0000000000 --- a/docs/docs/auto-docs/components/AddOn/core/AddOnEntry/AddOnEntryMocks/README.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../../README.md) - -*** - -[talawa-admin](../../../../../modules.md) / components/AddOn/core/AddOnEntry/AddOnEntryMocks - -# components/AddOn/core/AddOnEntry/AddOnEntryMocks - -## Variables - -- [ADD\_ON\_ENTRY\_MOCK](variables/ADD_ON_ENTRY_MOCK.md) diff --git a/docs/docs/auto-docs/components/AddOn/core/AddOnEntry/AddOnEntryMocks/variables/ADD_ON_ENTRY_MOCK.md b/docs/docs/auto-docs/components/AddOn/core/AddOnEntry/AddOnEntryMocks/variables/ADD_ON_ENTRY_MOCK.md deleted file mode 100644 index 7cf2c39d66..0000000000 --- a/docs/docs/auto-docs/components/AddOn/core/AddOnEntry/AddOnEntryMocks/variables/ADD_ON_ENTRY_MOCK.md +++ /dev/null @@ -1,65 +0,0 @@ -[**talawa-admin**](../../../../../../README.md) - -*** - -[talawa-admin](../../../../../../modules.md) / [components/AddOn/core/AddOnEntry/AddOnEntryMocks](../README.md) / ADD\_ON\_ENTRY\_MOCK - -# Variable: ADD\_ON\_ENTRY\_MOCK - -> `const` **ADD\_ON\_ENTRY\_MOCK**: `object`[] - -Defined in: [src/components/AddOn/core/AddOnEntry/AddOnEntryMocks.ts:13](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/AddOn/core/AddOnEntry/AddOnEntryMocks.ts#L13) - -## Type declaration - -### request - -> **request**: `object` - -#### request.query - -> **query**: `DocumentNode` = `UPDATE_INSTALL_STATUS_PLUGIN_MUTATION` - -#### request.variables - -> **variables**: `object` - -#### request.variables.id - -> **id**: `string` = `'1'` - -#### request.variables.orgId - -> **orgId**: `string` = `'undefined'` - -### result - -> **result**: `object` - -#### result.data - -> **data**: `object` - -#### result.data.updatePluginStatus - -> **updatePluginStatus**: `object` = `updatePluginStatus` - -#### result.data.updatePluginStatus.\_id - -> **\_id**: `string` = `'123'` - -#### result.data.updatePluginStatus.pluginCreatedBy - -> **pluginCreatedBy**: `string` = `'John Doe'` - -#### result.data.updatePluginStatus.pluginDesc - -> **pluginDesc**: `string` = `'This is a sample plugin description.'` - -#### result.data.updatePluginStatus.pluginName - -> **pluginName**: `string` = `'Sample Plugin'` - -#### result.data.updatePluginStatus.uninstalledOrgs - -> **uninstalledOrgs**: `never`[] = `[]` diff --git a/docs/docs/auto-docs/components/AddOn/core/AddOnRegister/AddOnRegister/README.md b/docs/docs/auto-docs/components/AddOn/core/AddOnRegister/AddOnRegister/README.md deleted file mode 100644 index cf56d90951..0000000000 --- a/docs/docs/auto-docs/components/AddOn/core/AddOnRegister/AddOnRegister/README.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../../README.md) - -*** - -[talawa-admin](../../../../../modules.md) / components/AddOn/core/AddOnRegister/AddOnRegister - -# components/AddOn/core/AddOnRegister/AddOnRegister - -## Functions - -- [default](functions/default.md) diff --git a/docs/docs/auto-docs/components/AddOn/core/AddOnRegister/AddOnRegister/functions/default.md b/docs/docs/auto-docs/components/AddOn/core/AddOnRegister/AddOnRegister/functions/default.md deleted file mode 100644 index 5c868759c2..0000000000 --- a/docs/docs/auto-docs/components/AddOn/core/AddOnRegister/AddOnRegister/functions/default.md +++ /dev/null @@ -1,32 +0,0 @@ -[**talawa-admin**](../../../../../../README.md) - -*** - -[talawa-admin](../../../../../../modules.md) / [components/AddOn/core/AddOnRegister/AddOnRegister](../README.md) / default - -# Function: default() - -> **default**(`__namedParameters`): `JSX.Element` - -Defined in: [src/components/AddOn/core/AddOnRegister/AddOnRegister.tsx:38](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/AddOn/core/AddOnRegister/AddOnRegister.tsx#L38) - -A React component for registering a new add-on plugin. - -This component: -- Displays a button to open a modal for plugin registration. -- Contains a form in the modal for entering plugin details. -- Uses GraphQL mutation to register the plugin. -- Uses `react-i18next` for localization and `react-toastify` for notifications. -- Redirects to the organization list page if no `orgId` is found in the URL. - -## Parameters - -### \_\_namedParameters - -`InterfaceAddOnRegisterProps` - -## Returns - -`JSX.Element` - -A JSX element containing the button and modal for plugin registration. diff --git a/docs/docs/auto-docs/components/AddOn/core/AddOnStore/AddOnStore/README.md b/docs/docs/auto-docs/components/AddOn/core/AddOnStore/AddOnStore/README.md deleted file mode 100644 index bfbd8077d0..0000000000 --- a/docs/docs/auto-docs/components/AddOn/core/AddOnStore/AddOnStore/README.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../../README.md) - -*** - -[talawa-admin](../../../../../modules.md) / components/AddOn/core/AddOnStore/AddOnStore - -# components/AddOn/core/AddOnStore/AddOnStore - -## Functions - -- [default](functions/default.md) diff --git a/docs/docs/auto-docs/components/AddOn/core/AddOnStore/AddOnStore/functions/default.md b/docs/docs/auto-docs/components/AddOn/core/AddOnStore/AddOnStore/functions/default.md deleted file mode 100644 index d2177b6919..0000000000 --- a/docs/docs/auto-docs/components/AddOn/core/AddOnStore/AddOnStore/functions/default.md +++ /dev/null @@ -1,25 +0,0 @@ -[**talawa-admin**](../../../../../../README.md) - -*** - -[talawa-admin](../../../../../../modules.md) / [components/AddOn/core/AddOnStore/AddOnStore](../README.md) / default - -# Function: default() - -> **default**(): `JSX.Element` - -Defined in: [src/components/AddOn/core/AddOnStore/AddOnStore.tsx:37](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/AddOn/core/AddOnStore/AddOnStore.tsx#L37) - -Component for managing and displaying plugins in the store. - -This component: -- Displays a search input and filter options. -- Uses tabs to switch between available and installed plugins. -- Fetches plugins from a GraphQL endpoint and filters them based on search criteria. -- Utilizes Redux store to manage plugin data. - -## Returns - -`JSX.Element` - -A JSX element containing the UI for the add-on store. diff --git a/docs/docs/auto-docs/components/AddOn/support/components/Action/Action/README.md b/docs/docs/auto-docs/components/AddOn/support/components/Action/Action/README.md deleted file mode 100644 index 016a824d7f..0000000000 --- a/docs/docs/auto-docs/components/AddOn/support/components/Action/Action/README.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../../../README.md) - -*** - -[talawa-admin](../../../../../../modules.md) / components/AddOn/support/components/Action/Action - -# components/AddOn/support/components/Action/Action - -## Functions - -- [default](functions/default.md) diff --git a/docs/docs/auto-docs/components/AddOn/support/components/Action/Action/functions/default.md b/docs/docs/auto-docs/components/AddOn/support/components/Action/Action/functions/default.md deleted file mode 100644 index 4d1682c64d..0000000000 --- a/docs/docs/auto-docs/components/AddOn/support/components/Action/Action/functions/default.md +++ /dev/null @@ -1,35 +0,0 @@ -[**talawa-admin**](../../../../../../../README.md) - -*** - -[talawa-admin](../../../../../../../modules.md) / [components/AddOn/support/components/Action/Action](../README.md) / default - -# Function: default() - -> **default**(`props`): `JSX.Element` - -Defined in: [src/components/AddOn/support/components/Action/Action.tsx:29](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/AddOn/support/components/Action/Action.tsx#L29) - -A React component that renders a labeled container for embedded actions. - -## Parameters - -### props - -`InterfaceActionProps` - -The properties for the component. - -## Returns - -`JSX.Element` - -A JSX element containing the label and child elements. - -## Example - -```ts - - - -``` diff --git a/docs/docs/auto-docs/components/AddOn/support/components/MainContent/MainContent/README.md b/docs/docs/auto-docs/components/AddOn/support/components/MainContent/MainContent/README.md deleted file mode 100644 index 96985c44dc..0000000000 --- a/docs/docs/auto-docs/components/AddOn/support/components/MainContent/MainContent/README.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../../../README.md) - -*** - -[talawa-admin](../../../../../../modules.md) / components/AddOn/support/components/MainContent/MainContent - -# components/AddOn/support/components/MainContent/MainContent - -## Functions - -- [default](functions/default.md) diff --git a/docs/docs/auto-docs/components/AddOn/support/components/MainContent/MainContent/functions/default.md b/docs/docs/auto-docs/components/AddOn/support/components/MainContent/MainContent/functions/default.md deleted file mode 100644 index 4b4ddbebdd..0000000000 --- a/docs/docs/auto-docs/components/AddOn/support/components/MainContent/MainContent/functions/default.md +++ /dev/null @@ -1,35 +0,0 @@ -[**talawa-admin**](../../../../../../../README.md) - -*** - -[talawa-admin](../../../../../../../modules.md) / [components/AddOn/support/components/MainContent/MainContent](../README.md) / default - -# Function: default() - -> **default**(`props`): `JSX.Element` - -Defined in: [src/components/AddOn/support/components/MainContent/MainContent.tsx:25](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/AddOn/support/components/MainContent/MainContent.tsx#L25) - -A React component that renders a main content container with additional styles. - -## Parameters - -### props - -`InterfaceMainContentProps` - -The properties for the component. - -## Returns - -`JSX.Element` - -A JSX element containing the main content container with the provided child elements. - -## Example - -```ts - -

Main content goes here

-
-``` diff --git a/docs/docs/auto-docs/components/AddOn/support/components/SidePanel/SidePanel/README.md b/docs/docs/auto-docs/components/AddOn/support/components/SidePanel/SidePanel/README.md deleted file mode 100644 index 1280bc8469..0000000000 --- a/docs/docs/auto-docs/components/AddOn/support/components/SidePanel/SidePanel/README.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../../../README.md) - -*** - -[talawa-admin](../../../../../../modules.md) / components/AddOn/support/components/SidePanel/SidePanel - -# components/AddOn/support/components/SidePanel/SidePanel - -## Functions - -- [default](functions/default.md) diff --git a/docs/docs/auto-docs/components/AddOn/support/components/SidePanel/SidePanel/functions/default.md b/docs/docs/auto-docs/components/AddOn/support/components/SidePanel/SidePanel/functions/default.md deleted file mode 100644 index fff744c3f0..0000000000 --- a/docs/docs/auto-docs/components/AddOn/support/components/SidePanel/SidePanel/functions/default.md +++ /dev/null @@ -1,35 +0,0 @@ -[**talawa-admin**](../../../../../../../README.md) - -*** - -[talawa-admin](../../../../../../../modules.md) / [components/AddOn/support/components/SidePanel/SidePanel](../README.md) / default - -# Function: default() - -> **default**(`props`): `JSX.Element` - -Defined in: [src/components/AddOn/support/components/SidePanel/SidePanel.tsx:30](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/AddOn/support/components/SidePanel/SidePanel.tsx#L30) - -A React component that renders a side panel with an optional collapse state. - -## Parameters - -### props - -`InterfaceSidePanelProps` - -The properties for the component. - -## Returns - -`JSX.Element` - -A JSX element containing the side panel with the provided child elements. - -## Example - -```ts - -

Side panel content

-
-``` diff --git a/docs/docs/auto-docs/components/AddOn/support/services/Plugin.helper/README.md b/docs/docs/auto-docs/components/AddOn/support/services/Plugin.helper/README.md deleted file mode 100644 index a0cb53abad..0000000000 --- a/docs/docs/auto-docs/components/AddOn/support/services/Plugin.helper/README.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../../README.md) - -*** - -[talawa-admin](../../../../../modules.md) / components/AddOn/support/services/Plugin.helper - -# components/AddOn/support/services/Plugin.helper - -## Classes - -- [default](classes/default.md) diff --git a/docs/docs/auto-docs/components/AddOn/support/services/Plugin.helper/classes/default.md b/docs/docs/auto-docs/components/AddOn/support/services/Plugin.helper/classes/default.md deleted file mode 100644 index 2796b1a5d1..0000000000 --- a/docs/docs/auto-docs/components/AddOn/support/services/Plugin.helper/classes/default.md +++ /dev/null @@ -1,77 +0,0 @@ -[**talawa-admin**](../../../../../../README.md) - -*** - -[talawa-admin](../../../../../../modules.md) / [components/AddOn/support/services/Plugin.helper](../README.md) / default - -# Class: default - -Defined in: [src/components/AddOn/support/services/Plugin.helper.ts:5](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/AddOn/support/services/Plugin.helper.ts#L5) - -Helper class for managing plugin-related tasks such as fetching store data, installed plugins, and generating plugin links. - -## Constructors - -### new default() - -> **new default**(): [`default`](default.md) - -#### Returns - -[`default`](default.md) - -## Methods - -### fetchInstalled() - -> **fetchInstalled**(): `Promise`\<`any`\> - -Defined in: [src/components/AddOn/support/services/Plugin.helper.ts:21](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/AddOn/support/services/Plugin.helper.ts#L21) - -Fetches the list of installed plugins from a local server. - -#### Returns - -`Promise`\<`any`\> - -A promise that resolves to the installed plugins data in JSON format. - -*** - -### fetchStore() - -> **fetchStore**(): `Promise`\<`any`\> - -Defined in: [src/components/AddOn/support/services/Plugin.helper.ts:11](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/AddOn/support/services/Plugin.helper.ts#L11) - -Fetches the store data from a local server. - -#### Returns - -`Promise`\<`any`\> - -A promise that resolves to the store data in JSON format. - -*** - -### generateLinks() - -> **generateLinks**(`plugins`): `object`[] - -Defined in: [src/components/AddOn/support/services/Plugin.helper.ts:32](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/AddOn/support/services/Plugin.helper.ts#L32) - -Generates an array of links for the enabled plugins. - -#### Parameters - -##### plugins - -`any`[] - -An array of plugin objects. - -#### Returns - -`object`[] - -An array of objects containing the name and URL of each enabled plugin. diff --git a/docs/docs/auto-docs/components/AddOn/support/services/Render.helper/README.md b/docs/docs/auto-docs/components/AddOn/support/services/Render.helper/README.md deleted file mode 100644 index e6cace69dd..0000000000 --- a/docs/docs/auto-docs/components/AddOn/support/services/Render.helper/README.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../../README.md) - -*** - -[talawa-admin](../../../../../modules.md) / components/AddOn/support/services/Render.helper - -# components/AddOn/support/services/Render.helper - -## Classes - -- [default](classes/default.md) diff --git a/docs/docs/auto-docs/components/AddOn/support/services/Render.helper/classes/default.md b/docs/docs/auto-docs/components/AddOn/support/services/Render.helper/classes/default.md deleted file mode 100644 index 5cf16f6abf..0000000000 --- a/docs/docs/auto-docs/components/AddOn/support/services/Render.helper/classes/default.md +++ /dev/null @@ -1,19 +0,0 @@ -[**talawa-admin**](../../../../../../README.md) - -*** - -[talawa-admin](../../../../../../modules.md) / [components/AddOn/support/services/Render.helper](../README.md) / default - -# Class: default - -Defined in: [src/components/AddOn/support/services/Render.helper.ts:1](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/AddOn/support/services/Render.helper.ts#L1) - -## Constructors - -### new default() - -> **new default**(): [`default`](default.md) - -#### Returns - -[`default`](default.md) diff --git a/docs/docs/auto-docs/components/AddPeopleToTag/AddPeopleToTag/README.md b/docs/docs/auto-docs/components/AddPeopleToTag/AddPeopleToTag/README.md deleted file mode 100644 index 1f8f9dcc9b..0000000000 --- a/docs/docs/auto-docs/components/AddPeopleToTag/AddPeopleToTag/README.md +++ /dev/null @@ -1,15 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / components/AddPeopleToTag/AddPeopleToTag - -# components/AddPeopleToTag/AddPeopleToTag - -## Interfaces - -- [InterfaceAddPeopleToTagProps](interfaces/InterfaceAddPeopleToTagProps.md) - -## Functions - -- [default](functions/default.md) diff --git a/docs/docs/auto-docs/components/AddPeopleToTag/AddPeopleToTag/functions/default.md b/docs/docs/auto-docs/components/AddPeopleToTag/AddPeopleToTag/functions/default.md deleted file mode 100644 index 2cd961985a..0000000000 --- a/docs/docs/auto-docs/components/AddPeopleToTag/AddPeopleToTag/functions/default.md +++ /dev/null @@ -1,31 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [components/AddPeopleToTag/AddPeopleToTag](../README.md) / default - -# Function: default() - -> **default**(`props`, `deprecatedLegacyContext`?): `ReactNode` - -Defined in: [src/components/AddPeopleToTag/AddPeopleToTag.tsx:42](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/AddPeopleToTag/AddPeopleToTag.tsx#L42) - -## Parameters - -### props - -[`InterfaceAddPeopleToTagProps`](../interfaces/InterfaceAddPeopleToTagProps.md) - -### deprecatedLegacyContext? - -`any` - -**Deprecated** - -**See** - -[React Docs](https://legacy.reactjs.org/docs/legacy-context.html#referencing-context-in-lifecycle-methods) - -## Returns - -`ReactNode` diff --git a/docs/docs/auto-docs/components/AddPeopleToTag/AddPeopleToTag/interfaces/InterfaceAddPeopleToTagProps.md b/docs/docs/auto-docs/components/AddPeopleToTag/AddPeopleToTag/interfaces/InterfaceAddPeopleToTagProps.md deleted file mode 100644 index 3f9d006931..0000000000 --- a/docs/docs/auto-docs/components/AddPeopleToTag/AddPeopleToTag/interfaces/InterfaceAddPeopleToTagProps.md +++ /dev/null @@ -1,59 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [components/AddPeopleToTag/AddPeopleToTag](../README.md) / InterfaceAddPeopleToTagProps - -# Interface: InterfaceAddPeopleToTagProps - -Defined in: [src/components/AddPeopleToTag/AddPeopleToTag.tsx:28](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/AddPeopleToTag/AddPeopleToTag.tsx#L28) - -Props for the `AddPeopleToTag` component. - -## Properties - -### addPeopleToTagModalIsOpen - -> **addPeopleToTagModalIsOpen**: `boolean` - -Defined in: [src/components/AddPeopleToTag/AddPeopleToTag.tsx:29](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/AddPeopleToTag/AddPeopleToTag.tsx#L29) - -*** - -### hideAddPeopleToTagModal() - -> **hideAddPeopleToTagModal**: () => `void` - -Defined in: [src/components/AddPeopleToTag/AddPeopleToTag.tsx:30](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/AddPeopleToTag/AddPeopleToTag.tsx#L30) - -#### Returns - -`void` - -*** - -### refetchAssignedMembersData() - -> **refetchAssignedMembersData**: () => `void` - -Defined in: [src/components/AddPeopleToTag/AddPeopleToTag.tsx:31](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/AddPeopleToTag/AddPeopleToTag.tsx#L31) - -#### Returns - -`void` - -*** - -### t - -> **t**: `TFunction`\<`"manageTag"`\> - -Defined in: [src/components/AddPeopleToTag/AddPeopleToTag.tsx:32](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/AddPeopleToTag/AddPeopleToTag.tsx#L32) - -*** - -### tCommon - -> **tCommon**: `TFunction`\<`"common"`\> - -Defined in: [src/components/AddPeopleToTag/AddPeopleToTag.tsx:33](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/AddPeopleToTag/AddPeopleToTag.tsx#L33) diff --git a/docs/docs/auto-docs/components/AddPeopleToTag/AddPeopleToTagsMocks/README.md b/docs/docs/auto-docs/components/AddPeopleToTag/AddPeopleToTagsMocks/README.md deleted file mode 100644 index fefcf7c92a..0000000000 --- a/docs/docs/auto-docs/components/AddPeopleToTag/AddPeopleToTagsMocks/README.md +++ /dev/null @@ -1,12 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / components/AddPeopleToTag/AddPeopleToTagsMocks - -# components/AddPeopleToTag/AddPeopleToTagsMocks - -## Variables - -- [MOCKS](variables/MOCKS.md) -- [MOCKS\_ERROR](variables/MOCKS_ERROR.md) diff --git a/docs/docs/auto-docs/components/AddPeopleToTag/AddPeopleToTagsMocks/variables/MOCKS.md b/docs/docs/auto-docs/components/AddPeopleToTag/AddPeopleToTagsMocks/variables/MOCKS.md deleted file mode 100644 index 3642e12577..0000000000 --- a/docs/docs/auto-docs/components/AddPeopleToTag/AddPeopleToTagsMocks/variables/MOCKS.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [components/AddPeopleToTag/AddPeopleToTagsMocks](../README.md) / MOCKS - -# Variable: MOCKS - -> `const` **MOCKS**: (\{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `after`: `undefined`; `first`: `number`; `id`: `string`; `tagId`: `undefined`; `userIds`: `undefined`; `where`: \{ `firstName`: \{ `starts_with`: `string`; \}; `lastName`: \{ `starts_with`: `string`; \}; \}; \}; \}; `result`: \{ `data`: \{ `addPeopleToUserTag`: `undefined`; `getUsersToAssignTo`: \{ `name`: `string`; `usersToAssignTo`: \{ `edges`: `object`[]; `pageInfo`: \{ `endCursor`: `string`; `hasNextPage`: `boolean`; `hasPreviousPage`: `boolean`; `startCursor`: `string`; \}; `totalCount`: `number`; \}; \}; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `after`: `string`; `first`: `number`; `id`: `string`; `tagId`: `undefined`; `userIds`: `undefined`; `where`: \{ `firstName`: \{ `starts_with`: `string`; \}; `lastName`: \{ `starts_with`: `string`; \}; \}; \}; \}; `result`: \{ `data`: \{ `addPeopleToUserTag`: `undefined`; `getUsersToAssignTo`: \{ `name`: `string`; `usersToAssignTo`: \{ `edges`: `object`[]; `pageInfo`: \{ `endCursor`: `string`; `hasNextPage`: `boolean`; `hasPreviousPage`: `boolean`; `startCursor`: `string`; \}; `totalCount`: `number`; \}; \}; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `after`: `undefined`; `first`: `undefined`; `id`: `undefined`; `tagId`: `string`; `userIds`: `string`[]; `where`: `undefined`; \}; \}; `result`: \{ `data`: \{ `addPeopleToUserTag`: \{ `_id`: `string`; \}; `getUsersToAssignTo`: `undefined`; \}; \}; \})[] - -Defined in: [src/components/AddPeopleToTag/AddPeopleToTagsMocks.ts:5](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/AddPeopleToTag/AddPeopleToTagsMocks.ts#L5) diff --git a/docs/docs/auto-docs/components/AddPeopleToTag/AddPeopleToTagsMocks/variables/MOCKS_ERROR.md b/docs/docs/auto-docs/components/AddPeopleToTag/AddPeopleToTagsMocks/variables/MOCKS_ERROR.md deleted file mode 100644 index ff854009dd..0000000000 --- a/docs/docs/auto-docs/components/AddPeopleToTag/AddPeopleToTagsMocks/variables/MOCKS_ERROR.md +++ /dev/null @@ -1,57 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [components/AddPeopleToTag/AddPeopleToTagsMocks](../README.md) / MOCKS\_ERROR - -# Variable: MOCKS\_ERROR - -> `const` **MOCKS\_ERROR**: `object`[] - -Defined in: [src/components/AddPeopleToTag/AddPeopleToTagsMocks.ts:277](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/AddPeopleToTag/AddPeopleToTagsMocks.ts#L277) - -## Type declaration - -### error - -> **error**: `Error` - -### request - -> **request**: `object` - -#### request.query - -> **query**: `DocumentNode` = `USER_TAGS_MEMBERS_TO_ASSIGN_TO` - -#### request.variables - -> **variables**: `object` - -#### request.variables.first - -> **first**: `number` = `TAGS_QUERY_DATA_CHUNK_SIZE` - -#### request.variables.id - -> **id**: `string` = `'1'` - -#### request.variables.where - -> **where**: `object` - -#### request.variables.where.firstName - -> **firstName**: `object` - -#### request.variables.where.firstName.starts\_with - -> **starts\_with**: `string` = `''` - -#### request.variables.where.lastName - -> **lastName**: `object` - -#### request.variables.where.lastName.starts\_with - -> **starts\_with**: `string` = `''` diff --git a/docs/docs/auto-docs/components/Advertisements/Advertisements/README.md b/docs/docs/auto-docs/components/Advertisements/Advertisements/README.md deleted file mode 100644 index a80e38ea71..0000000000 --- a/docs/docs/auto-docs/components/Advertisements/Advertisements/README.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / components/Advertisements/Advertisements - -# components/Advertisements/Advertisements - -## Functions - -- [default](functions/default.md) diff --git a/docs/docs/auto-docs/components/Advertisements/Advertisements/functions/default.md b/docs/docs/auto-docs/components/Advertisements/Advertisements/functions/default.md deleted file mode 100644 index b7acf2e80d..0000000000 --- a/docs/docs/auto-docs/components/Advertisements/Advertisements/functions/default.md +++ /dev/null @@ -1,15 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [components/Advertisements/Advertisements](../README.md) / default - -# Function: default() - -> **default**(): `JSX.Element` - -Defined in: [src/components/Advertisements/Advertisements.tsx:14](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/Advertisements/Advertisements.tsx#L14) - -## Returns - -`JSX.Element` diff --git a/docs/docs/auto-docs/components/Advertisements/core/AdvertisementEntry/AdvertisementEntry/README.md b/docs/docs/auto-docs/components/Advertisements/core/AdvertisementEntry/AdvertisementEntry/README.md deleted file mode 100644 index 14277b3d34..0000000000 --- a/docs/docs/auto-docs/components/Advertisements/core/AdvertisementEntry/AdvertisementEntry/README.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../../README.md) - -*** - -[talawa-admin](../../../../../modules.md) / components/Advertisements/core/AdvertisementEntry/AdvertisementEntry - -# components/Advertisements/core/AdvertisementEntry/AdvertisementEntry - -## Functions - -- [default](functions/default.md) diff --git a/docs/docs/auto-docs/components/Advertisements/core/AdvertisementEntry/AdvertisementEntry/functions/default.md b/docs/docs/auto-docs/components/Advertisements/core/AdvertisementEntry/AdvertisementEntry/functions/default.md deleted file mode 100644 index 23e01c6d0f..0000000000 --- a/docs/docs/auto-docs/components/Advertisements/core/AdvertisementEntry/AdvertisementEntry/functions/default.md +++ /dev/null @@ -1,28 +0,0 @@ -[**talawa-admin**](../../../../../../README.md) - -*** - -[talawa-admin](../../../../../../modules.md) / [components/Advertisements/core/AdvertisementEntry/AdvertisementEntry](../README.md) / default - -# Function: default() - -> **default**(`props`): `JSX.Element` - -Defined in: [src/components/Advertisements/core/AdvertisementEntry/AdvertisementEntry.tsx:31](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/Advertisements/core/AdvertisementEntry/AdvertisementEntry.tsx#L31) - -Component for displaying an advertisement entry. -Allows viewing, editing, and deleting of the advertisement. - -## Parameters - -### props - -`InterfaceAddOnEntryProps` - -Component properties - -## Returns - -`JSX.Element` - -The rendered component diff --git a/docs/docs/auto-docs/components/Advertisements/core/AdvertisementRegister/AdvertisementRegister/README.md b/docs/docs/auto-docs/components/Advertisements/core/AdvertisementRegister/AdvertisementRegister/README.md deleted file mode 100644 index c4b017d6ef..0000000000 --- a/docs/docs/auto-docs/components/Advertisements/core/AdvertisementRegister/AdvertisementRegister/README.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../../README.md) - -*** - -[talawa-admin](../../../../../modules.md) / components/Advertisements/core/AdvertisementRegister/AdvertisementRegister - -# components/Advertisements/core/AdvertisementRegister/AdvertisementRegister - -## Functions - -- [default](functions/default.md) diff --git a/docs/docs/auto-docs/components/Advertisements/core/AdvertisementRegister/AdvertisementRegister/functions/default.md b/docs/docs/auto-docs/components/Advertisements/core/AdvertisementRegister/AdvertisementRegister/functions/default.md deleted file mode 100644 index 3af42e3b8e..0000000000 --- a/docs/docs/auto-docs/components/Advertisements/core/AdvertisementRegister/AdvertisementRegister/functions/default.md +++ /dev/null @@ -1,36 +0,0 @@ -[**talawa-admin**](../../../../../../README.md) - -*** - -[talawa-admin](../../../../../../modules.md) / [components/Advertisements/core/AdvertisementRegister/AdvertisementRegister](../README.md) / default - -# Function: default() - -> **default**(`props`): `JSX.Element` - -Defined in: [src/components/Advertisements/core/AdvertisementRegister/AdvertisementRegister.tsx:60](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/Advertisements/core/AdvertisementRegister/AdvertisementRegister.tsx#L60) - -Component for registering or editing an advertisement. - -## Parameters - -### props - -`InterfaceAddOnRegisterProps` - -Contains form status, advertisement details, and a function to update parent state. - -## Returns - -`JSX.Element` - -A JSX element that renders a form inside a modal for creating or editing an advertisement. - -## Example - -```tsx - console.log(value)} -/> -``` diff --git a/docs/docs/auto-docs/components/AgendaCategory/AgendaCategoryContainer/README.md b/docs/docs/auto-docs/components/AgendaCategory/AgendaCategoryContainer/README.md deleted file mode 100644 index cefa1a1fe2..0000000000 --- a/docs/docs/auto-docs/components/AgendaCategory/AgendaCategoryContainer/README.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / components/AgendaCategory/AgendaCategoryContainer - -# components/AgendaCategory/AgendaCategoryContainer - -## Functions - -- [default](functions/default.md) diff --git a/docs/docs/auto-docs/components/AgendaCategory/AgendaCategoryContainer/functions/default.md b/docs/docs/auto-docs/components/AgendaCategory/AgendaCategoryContainer/functions/default.md deleted file mode 100644 index 3c48de87a9..0000000000 --- a/docs/docs/auto-docs/components/AgendaCategory/AgendaCategoryContainer/functions/default.md +++ /dev/null @@ -1,47 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [components/AgendaCategory/AgendaCategoryContainer](../README.md) / default - -# Function: default() - -> **default**(`props`): `JSX.Element` - -Defined in: [src/components/AgendaCategory/AgendaCategoryContainer.tsx:34](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/AgendaCategory/AgendaCategoryContainer.tsx#L34) - -Component for displaying and managing agenda item categories. - -## Parameters - -### props - -Contains agenda category data and functions for data management. - -#### agendaCategoryConnection - -`"Organization"` - -#### agendaCategoryData - -`undefined` \| [`InterfaceAgendaItemCategoryInfo`](../../../../utils/interfaces/interfaces/InterfaceAgendaItemCategoryInfo.md)[] - -#### agendaCategoryRefetch - -() => `void` - -## Returns - -`JSX.Element` - -A JSX element that renders agenda item categories with options to preview, edit, and delete. - -## Example - -```tsx - -``` diff --git a/docs/docs/auto-docs/components/AgendaCategory/AgendaCategoryContainerMocks/README.md b/docs/docs/auto-docs/components/AgendaCategory/AgendaCategoryContainerMocks/README.md deleted file mode 100644 index e655973093..0000000000 --- a/docs/docs/auto-docs/components/AgendaCategory/AgendaCategoryContainerMocks/README.md +++ /dev/null @@ -1,12 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / components/AgendaCategory/AgendaCategoryContainerMocks - -# components/AgendaCategory/AgendaCategoryContainerMocks - -## Variables - -- [MOCKS](variables/MOCKS.md) -- [MOCKS\_ERROR\_MUTATIONS](variables/MOCKS_ERROR_MUTATIONS.md) diff --git a/docs/docs/auto-docs/components/AgendaCategory/AgendaCategoryContainerMocks/variables/MOCKS.md b/docs/docs/auto-docs/components/AgendaCategory/AgendaCategoryContainerMocks/variables/MOCKS.md deleted file mode 100644 index 0d195e027f..0000000000 --- a/docs/docs/auto-docs/components/AgendaCategory/AgendaCategoryContainerMocks/variables/MOCKS.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [components/AgendaCategory/AgendaCategoryContainerMocks](../README.md) / MOCKS - -# Variable: MOCKS - -> `const` **MOCKS**: (\{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `deleteAgendaCategoryId`: `undefined`; `input`: \{ `description`: `string`; `name`: `string`; \}; `updateAgendaCategoryId`: `string`; \}; \}; `result`: \{ `data`: \{ `deleteAgendaCategory`: `undefined`; `updateAgendaCategory`: \{ `_id`: `string`; \}; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `deleteAgendaCategoryId`: `string`; `input`: `undefined`; `updateAgendaCategoryId`: `undefined`; \}; \}; `result`: \{ `data`: \{ `deleteAgendaCategory`: \{ `_id`: `string`; \}; `updateAgendaCategory`: `undefined`; \}; \}; \})[] - -Defined in: [src/components/AgendaCategory/AgendaCategoryContainerMocks.ts:6](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/AgendaCategory/AgendaCategoryContainerMocks.ts#L6) diff --git a/docs/docs/auto-docs/components/AgendaCategory/AgendaCategoryContainerMocks/variables/MOCKS_ERROR_MUTATIONS.md b/docs/docs/auto-docs/components/AgendaCategory/AgendaCategoryContainerMocks/variables/MOCKS_ERROR_MUTATIONS.md deleted file mode 100644 index 4288ed00db..0000000000 --- a/docs/docs/auto-docs/components/AgendaCategory/AgendaCategoryContainerMocks/variables/MOCKS_ERROR_MUTATIONS.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [components/AgendaCategory/AgendaCategoryContainerMocks](../README.md) / MOCKS\_ERROR\_MUTATIONS - -# Variable: MOCKS\_ERROR\_MUTATIONS - -> `const` **MOCKS\_ERROR\_MUTATIONS**: (\{ `error`: `Error`; `request`: \{ `query`: `DocumentNode`; `variables`: \{ `deleteAgendaCategoryId`: `undefined`; `input`: \{ `description`: `string`; `name`: `string`; \}; `updateAgendaCategoryId`: `string`; \}; \}; \} \| \{ `error`: `Error`; `request`: \{ `query`: `DocumentNode`; `variables`: \{ `deleteAgendaCategoryId`: `string`; `input`: `undefined`; `updateAgendaCategoryId`: `undefined`; \}; \}; \})[] - -Defined in: [src/components/AgendaCategory/AgendaCategoryContainerMocks.ts:81](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/AgendaCategory/AgendaCategoryContainerMocks.ts#L81) diff --git a/docs/docs/auto-docs/components/AgendaCategory/AgendaCategoryContainerProps/README.md b/docs/docs/auto-docs/components/AgendaCategory/AgendaCategoryContainerProps/README.md deleted file mode 100644 index 5162a0870f..0000000000 --- a/docs/docs/auto-docs/components/AgendaCategory/AgendaCategoryContainerProps/README.md +++ /dev/null @@ -1,12 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / components/AgendaCategory/AgendaCategoryContainerProps - -# components/AgendaCategory/AgendaCategoryContainerProps - -## Variables - -- [props](variables/props.md) -- [props2](variables/props2.md) diff --git a/docs/docs/auto-docs/components/AgendaCategory/AgendaCategoryContainerProps/variables/props.md b/docs/docs/auto-docs/components/AgendaCategory/AgendaCategoryContainerProps/variables/props.md deleted file mode 100644 index ca54596207..0000000000 --- a/docs/docs/auto-docs/components/AgendaCategory/AgendaCategoryContainerProps/variables/props.md +++ /dev/null @@ -1,25 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [components/AgendaCategory/AgendaCategoryContainerProps](../README.md) / props - -# Variable: props - -> `const` **props**: `object` - -Defined in: [src/components/AgendaCategory/AgendaCategoryContainerProps.ts:4](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/AgendaCategory/AgendaCategoryContainerProps.ts#L4) - -## Type declaration - -### agendaCategoryConnection - -> **agendaCategoryConnection**: `"Organization"` - -### agendaCategoryData - -> **agendaCategoryData**: `object`[] - -### agendaCategoryRefetch - -> **agendaCategoryRefetch**: `Mock` diff --git a/docs/docs/auto-docs/components/AgendaCategory/AgendaCategoryContainerProps/variables/props2.md b/docs/docs/auto-docs/components/AgendaCategory/AgendaCategoryContainerProps/variables/props2.md deleted file mode 100644 index ede70b966e..0000000000 --- a/docs/docs/auto-docs/components/AgendaCategory/AgendaCategoryContainerProps/variables/props2.md +++ /dev/null @@ -1,25 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [components/AgendaCategory/AgendaCategoryContainerProps](../README.md) / props2 - -# Variable: props2 - -> `const` **props2**: `object` - -Defined in: [src/components/AgendaCategory/AgendaCategoryContainerProps.ts:31](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/AgendaCategory/AgendaCategoryContainerProps.ts#L31) - -## Type declaration - -### agendaCategoryConnection - -> **agendaCategoryConnection**: `"Organization"` - -### agendaCategoryData - -> **agendaCategoryData**: `never`[] = `[]` - -### agendaCategoryRefetch - -> **agendaCategoryRefetch**: `Mock` diff --git a/docs/docs/auto-docs/components/AgendaItems/AgendaItemsContainer/README.md b/docs/docs/auto-docs/components/AgendaItems/AgendaItemsContainer/README.md deleted file mode 100644 index 7ac39feddc..0000000000 --- a/docs/docs/auto-docs/components/AgendaItems/AgendaItemsContainer/README.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / components/AgendaItems/AgendaItemsContainer - -# components/AgendaItems/AgendaItemsContainer - -## Functions - -- [default](functions/default.md) diff --git a/docs/docs/auto-docs/components/AgendaItems/AgendaItemsContainer/functions/default.md b/docs/docs/auto-docs/components/AgendaItems/AgendaItemsContainer/functions/default.md deleted file mode 100644 index 49c2130859..0000000000 --- a/docs/docs/auto-docs/components/AgendaItems/AgendaItemsContainer/functions/default.md +++ /dev/null @@ -1,43 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [components/AgendaItems/AgendaItemsContainer](../README.md) / default - -# Function: default() - -> **default**(`props`): `JSX.Element` - -Defined in: [src/components/AgendaItems/AgendaItemsContainer.tsx:32](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/AgendaItems/AgendaItemsContainer.tsx#L32) - -Component for displaying and managing agenda items. -Supports drag-and-drop functionality, and includes modals for previewing, -updating, and deleting agenda items. - -## Parameters - -### props - -The props for the component. - -#### agendaItemCategories - -`undefined` \| [`InterfaceAgendaItemCategoryInfo`](../../../../utils/interfaces/interfaces/InterfaceAgendaItemCategoryInfo.md)[] - -#### agendaItemConnection - -`"Event"` - -#### agendaItemData - -`undefined` \| [`InterfaceAgendaItemInfo`](../../../../utils/interfaces/interfaces/InterfaceAgendaItemInfo.md)[] - -#### agendaItemRefetch - -() => `void` - -## Returns - -`JSX.Element` - -JSX.Element diff --git a/docs/docs/auto-docs/components/AgendaItems/AgendaItemsContainerMocks/README.md b/docs/docs/auto-docs/components/AgendaItems/AgendaItemsContainerMocks/README.md deleted file mode 100644 index 5922fb87b2..0000000000 --- a/docs/docs/auto-docs/components/AgendaItems/AgendaItemsContainerMocks/README.md +++ /dev/null @@ -1,12 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / components/AgendaItems/AgendaItemsContainerMocks - -# components/AgendaItems/AgendaItemsContainerMocks - -## Variables - -- [MOCKS](variables/MOCKS.md) -- [MOCKS\_ERROR](variables/MOCKS_ERROR.md) diff --git a/docs/docs/auto-docs/components/AgendaItems/AgendaItemsContainerMocks/variables/MOCKS.md b/docs/docs/auto-docs/components/AgendaItems/AgendaItemsContainerMocks/variables/MOCKS.md deleted file mode 100644 index 0a8e70531c..0000000000 --- a/docs/docs/auto-docs/components/AgendaItems/AgendaItemsContainerMocks/variables/MOCKS.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [components/AgendaItems/AgendaItemsContainerMocks](../README.md) / MOCKS - -# Variable: MOCKS - -> `const` **MOCKS**: (\{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `input`: \{ `description`: `string`; `title`: `string`; \}; `removeAgendaItemId`: `undefined`; `updateAgendaItemId`: `string`; \}; \}; `result`: \{ `data`: \{ `removeAgendaItem`: `undefined`; `updateAgendaItem`: \{ `_id`: `string`; \}; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `input`: `undefined`; `removeAgendaItemId`: `string`; `updateAgendaItemId`: `undefined`; \}; \}; `result`: \{ `data`: \{ `removeAgendaItem`: \{ `_id`: `string`; \}; `updateAgendaItem`: `undefined`; \}; \}; \})[] - -Defined in: [src/components/AgendaItems/AgendaItemsContainerMocks.ts:6](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/AgendaItems/AgendaItemsContainerMocks.ts#L6) diff --git a/docs/docs/auto-docs/components/AgendaItems/AgendaItemsContainerMocks/variables/MOCKS_ERROR.md b/docs/docs/auto-docs/components/AgendaItems/AgendaItemsContainerMocks/variables/MOCKS_ERROR.md deleted file mode 100644 index 926a4ef896..0000000000 --- a/docs/docs/auto-docs/components/AgendaItems/AgendaItemsContainerMocks/variables/MOCKS_ERROR.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [components/AgendaItems/AgendaItemsContainerMocks](../README.md) / MOCKS\_ERROR - -# Variable: MOCKS\_ERROR - -> `const` **MOCKS\_ERROR**: (\{ `error`: `Error`; `request`: \{ `query`: `DocumentNode`; `variables`: \{ `input`: \{ `description`: `string`; `title`: `string`; \}; `removeAgendaItemId`: `undefined`; `updateAgendaItemId`: `string`; \}; \}; \} \| \{ `error`: `Error`; `request`: \{ `query`: `DocumentNode`; `variables`: \{ `input`: `undefined`; `removeAgendaItemId`: `string`; `updateAgendaItemId`: `undefined`; \}; \}; \})[] - -Defined in: [src/components/AgendaItems/AgendaItemsContainerMocks.ts:96](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/AgendaItems/AgendaItemsContainerMocks.ts#L96) diff --git a/docs/docs/auto-docs/components/AgendaItems/AgendaItemsContainerProps/README.md b/docs/docs/auto-docs/components/AgendaItems/AgendaItemsContainerProps/README.md deleted file mode 100644 index c8fed11bb8..0000000000 --- a/docs/docs/auto-docs/components/AgendaItems/AgendaItemsContainerProps/README.md +++ /dev/null @@ -1,12 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / components/AgendaItems/AgendaItemsContainerProps - -# components/AgendaItems/AgendaItemsContainerProps - -## Variables - -- [props](variables/props.md) -- [props2](variables/props2.md) diff --git a/docs/docs/auto-docs/components/AgendaItems/AgendaItemsContainerProps/variables/props.md b/docs/docs/auto-docs/components/AgendaItems/AgendaItemsContainerProps/variables/props.md deleted file mode 100644 index b2e3c4b0ed..0000000000 --- a/docs/docs/auto-docs/components/AgendaItems/AgendaItemsContainerProps/variables/props.md +++ /dev/null @@ -1,29 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [components/AgendaItems/AgendaItemsContainerProps](../README.md) / props - -# Variable: props - -> `const` **props**: `object` - -Defined in: [src/components/AgendaItems/AgendaItemsContainerProps.ts:4](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/AgendaItems/AgendaItemsContainerProps.ts#L4) - -## Type declaration - -### agendaItemCategories - -> **agendaItemCategories**: `object`[] - -### agendaItemConnection - -> **agendaItemConnection**: `"Event"` - -### agendaItemData - -> **agendaItemData**: `object`[] - -### agendaItemRefetch - -> **agendaItemRefetch**: `Mock` diff --git a/docs/docs/auto-docs/components/AgendaItems/AgendaItemsContainerProps/variables/props2.md b/docs/docs/auto-docs/components/AgendaItems/AgendaItemsContainerProps/variables/props2.md deleted file mode 100644 index 2dcd3c4936..0000000000 --- a/docs/docs/auto-docs/components/AgendaItems/AgendaItemsContainerProps/variables/props2.md +++ /dev/null @@ -1,29 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [components/AgendaItems/AgendaItemsContainerProps](../README.md) / props2 - -# Variable: props2 - -> `const` **props2**: `object` - -Defined in: [src/components/AgendaItems/AgendaItemsContainerProps.ts:97](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/AgendaItems/AgendaItemsContainerProps.ts#L97) - -## Type declaration - -### agendaItemCategories - -> **agendaItemCategories**: `never`[] = `[]` - -### agendaItemConnection - -> **agendaItemConnection**: `"Event"` - -### agendaItemData - -> **agendaItemData**: `never`[] = `[]` - -### agendaItemRefetch - -> **agendaItemRefetch**: `Mock` diff --git a/docs/docs/auto-docs/components/AgendaItems/AgendaItemsCreateModal/README.md b/docs/docs/auto-docs/components/AgendaItems/AgendaItemsCreateModal/README.md deleted file mode 100644 index af532f7ea5..0000000000 --- a/docs/docs/auto-docs/components/AgendaItems/AgendaItemsCreateModal/README.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / components/AgendaItems/AgendaItemsCreateModal - -# components/AgendaItems/AgendaItemsCreateModal - -## Functions - -- [default](functions/default.md) diff --git a/docs/docs/auto-docs/components/AgendaItems/AgendaItemsCreateModal/functions/default.md b/docs/docs/auto-docs/components/AgendaItems/AgendaItemsCreateModal/functions/default.md deleted file mode 100644 index 1023e000da..0000000000 --- a/docs/docs/auto-docs/components/AgendaItems/AgendaItemsCreateModal/functions/default.md +++ /dev/null @@ -1,34 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [components/AgendaItems/AgendaItemsCreateModal](../README.md) / default - -# Function: default() - -> **default**(`props`, `deprecatedLegacyContext`?): `ReactNode` - -Defined in: [src/components/AgendaItems/AgendaItemsCreateModal.tsx:43](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/AgendaItems/AgendaItemsCreateModal.tsx#L43) - -Component for creating a new agenda item. -Displays a modal form where users can input details for a new agenda item, including title, description, duration, categories, URLs, and attachments. - -## Parameters - -### props - -`InterfaceAgendaItemsCreateModalProps` - -### deprecatedLegacyContext? - -`any` - -**Deprecated** - -**See** - -[React Docs](https://legacy.reactjs.org/docs/legacy-context.html#referencing-context-in-lifecycle-methods) - -## Returns - -`ReactNode` diff --git a/docs/docs/auto-docs/components/AgendaItems/AgendaItemsDeleteModal/README.md b/docs/docs/auto-docs/components/AgendaItems/AgendaItemsDeleteModal/README.md deleted file mode 100644 index e4cf4d5114..0000000000 --- a/docs/docs/auto-docs/components/AgendaItems/AgendaItemsDeleteModal/README.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / components/AgendaItems/AgendaItemsDeleteModal - -# components/AgendaItems/AgendaItemsDeleteModal - -## Functions - -- [default](functions/default.md) diff --git a/docs/docs/auto-docs/components/AgendaItems/AgendaItemsDeleteModal/functions/default.md b/docs/docs/auto-docs/components/AgendaItems/AgendaItemsDeleteModal/functions/default.md deleted file mode 100644 index 8b3247067d..0000000000 --- a/docs/docs/auto-docs/components/AgendaItems/AgendaItemsDeleteModal/functions/default.md +++ /dev/null @@ -1,34 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [components/AgendaItems/AgendaItemsDeleteModal](../README.md) / default - -# Function: default() - -> **default**(`props`, `deprecatedLegacyContext`?): `ReactNode` - -Defined in: [src/components/AgendaItems/AgendaItemsDeleteModal.tsx:23](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/AgendaItems/AgendaItemsDeleteModal.tsx#L23) - -Modal component for confirming the deletion of an agenda item. -Displays a confirmation dialog when a user attempts to delete an agenda item. - -## Parameters - -### props - -`InterfaceAgendaItemsDeleteModalProps` - -### deprecatedLegacyContext? - -`any` - -**Deprecated** - -**See** - -[React Docs](https://legacy.reactjs.org/docs/legacy-context.html#referencing-context-in-lifecycle-methods) - -## Returns - -`ReactNode` diff --git a/docs/docs/auto-docs/components/AgendaItems/AgendaItemsPreviewModal/README.md b/docs/docs/auto-docs/components/AgendaItems/AgendaItemsPreviewModal/README.md deleted file mode 100644 index 83e0e2b11d..0000000000 --- a/docs/docs/auto-docs/components/AgendaItems/AgendaItemsPreviewModal/README.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / components/AgendaItems/AgendaItemsPreviewModal - -# components/AgendaItems/AgendaItemsPreviewModal - -## Functions - -- [default](functions/default.md) diff --git a/docs/docs/auto-docs/components/AgendaItems/AgendaItemsPreviewModal/functions/default.md b/docs/docs/auto-docs/components/AgendaItems/AgendaItemsPreviewModal/functions/default.md deleted file mode 100644 index f6a6ff13b7..0000000000 --- a/docs/docs/auto-docs/components/AgendaItems/AgendaItemsPreviewModal/functions/default.md +++ /dev/null @@ -1,35 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [components/AgendaItems/AgendaItemsPreviewModal](../README.md) / default - -# Function: default() - -> **default**(`props`, `deprecatedLegacyContext`?): `ReactNode` - -Defined in: [src/components/AgendaItems/AgendaItemsPreviewModal.tsx:41](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/AgendaItems/AgendaItemsPreviewModal.tsx#L41) - -Modal component for previewing details of an agenda item. -Displays the details of the selected agenda item, including its categories, title, description, duration, creator, URLs, and attachments. -Also provides options to update or delete the agenda item. - -## Parameters - -### props - -`InterfaceAgendaItemsPreviewModalProps` - -### deprecatedLegacyContext? - -`any` - -**Deprecated** - -**See** - -[React Docs](https://legacy.reactjs.org/docs/legacy-context.html#referencing-context-in-lifecycle-methods) - -## Returns - -`ReactNode` diff --git a/docs/docs/auto-docs/components/AgendaItems/AgendaItemsUpdateModal/README.md b/docs/docs/auto-docs/components/AgendaItems/AgendaItemsUpdateModal/README.md deleted file mode 100644 index 08535ac0bc..0000000000 --- a/docs/docs/auto-docs/components/AgendaItems/AgendaItemsUpdateModal/README.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / components/AgendaItems/AgendaItemsUpdateModal - -# components/AgendaItems/AgendaItemsUpdateModal - -## Functions - -- [default](functions/default.md) diff --git a/docs/docs/auto-docs/components/AgendaItems/AgendaItemsUpdateModal/functions/default.md b/docs/docs/auto-docs/components/AgendaItems/AgendaItemsUpdateModal/functions/default.md deleted file mode 100644 index 996bbc599b..0000000000 --- a/docs/docs/auto-docs/components/AgendaItems/AgendaItemsUpdateModal/functions/default.md +++ /dev/null @@ -1,35 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [components/AgendaItems/AgendaItemsUpdateModal](../README.md) / default - -# Function: default() - -> **default**(`props`, `deprecatedLegacyContext`?): `ReactNode` - -Defined in: [src/components/AgendaItems/AgendaItemsUpdateModal.tsx:49](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/AgendaItems/AgendaItemsUpdateModal.tsx#L49) - -Modal component for updating details of an agenda item. -Provides a form to update the agenda item's title, description, duration, categories, URLs, and attachments. -Also includes functionality to add, remove URLs and attachments. - -## Parameters - -### props - -`InterfaceAgendaItemsUpdateModalProps` - -### deprecatedLegacyContext? - -`any` - -**Deprecated** - -**See** - -[React Docs](https://legacy.reactjs.org/docs/legacy-context.html#referencing-context-in-lifecycle-methods) - -## Returns - -`ReactNode` diff --git a/docs/docs/auto-docs/components/Avatar/Avatar/README.md b/docs/docs/auto-docs/components/Avatar/Avatar/README.md deleted file mode 100644 index 9cdcde35ad..0000000000 --- a/docs/docs/auto-docs/components/Avatar/Avatar/README.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / components/Avatar/Avatar - -# components/Avatar/Avatar - -## Functions - -- [default](functions/default.md) diff --git a/docs/docs/auto-docs/components/Avatar/Avatar/functions/default.md b/docs/docs/auto-docs/components/Avatar/Avatar/functions/default.md deleted file mode 100644 index c5bfe7d6eb..0000000000 --- a/docs/docs/auto-docs/components/Avatar/Avatar/functions/default.md +++ /dev/null @@ -1,26 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [components/Avatar/Avatar](../README.md) / default - -# Function: default() - -> **default**(`__namedParameters`): `Element` - -Defined in: [src/components/Avatar/Avatar.tsx:29](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/Avatar/Avatar.tsx#L29) - -A component that generates and displays an avatar based on the provided name. -The avatar is generated using the DiceBear library with the initials style. - -## Parameters - -### \_\_namedParameters - -`InterfaceAvatarProps` - -## Returns - -`Element` - -JSX.Element - The rendered avatar image component. diff --git a/docs/docs/auto-docs/components/ChangeLanguageDropdown/ChangeLanguageDropDown/README.md b/docs/docs/auto-docs/components/ChangeLanguageDropdown/ChangeLanguageDropDown/README.md deleted file mode 100644 index fb7e82ebb4..0000000000 --- a/docs/docs/auto-docs/components/ChangeLanguageDropdown/ChangeLanguageDropDown/README.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / components/ChangeLanguageDropdown/ChangeLanguageDropDown - -# components/ChangeLanguageDropdown/ChangeLanguageDropDown - -## Functions - -- [default](functions/default.md) diff --git a/docs/docs/auto-docs/components/ChangeLanguageDropdown/ChangeLanguageDropDown/functions/default.md b/docs/docs/auto-docs/components/ChangeLanguageDropdown/ChangeLanguageDropDown/functions/default.md deleted file mode 100644 index cab36fed1c..0000000000 --- a/docs/docs/auto-docs/components/ChangeLanguageDropdown/ChangeLanguageDropDown/functions/default.md +++ /dev/null @@ -1,28 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [components/ChangeLanguageDropdown/ChangeLanguageDropDown](../README.md) / default - -# Function: default() - -> **default**(`props`): `Element` - -Defined in: [src/components/ChangeLanguageDropdown/ChangeLanguageDropDown.tsx:29](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/ChangeLanguageDropdown/ChangeLanguageDropDown.tsx#L29) - -A dropdown component that allows users to change the application's language. -It updates the user's language preference in the backend and stores the selection in cookies. - -## Parameters - -### props - -`InterfaceChangeLanguageDropDownProps` - -The properties for customizing the dropdown component. - -## Returns - -`Element` - -JSX.Element - The rendered dropdown component for changing languages. diff --git a/docs/docs/auto-docs/components/CheckIn/CheckInModal/README.md b/docs/docs/auto-docs/components/CheckIn/CheckInModal/README.md deleted file mode 100644 index 93e35d3191..0000000000 --- a/docs/docs/auto-docs/components/CheckIn/CheckInModal/README.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / components/CheckIn/CheckInModal - -# components/CheckIn/CheckInModal - -## Functions - -- [CheckInModal](functions/CheckInModal.md) diff --git a/docs/docs/auto-docs/components/CheckIn/CheckInModal/functions/CheckInModal.md b/docs/docs/auto-docs/components/CheckIn/CheckInModal/functions/CheckInModal.md deleted file mode 100644 index 55b47eb4a7..0000000000 --- a/docs/docs/auto-docs/components/CheckIn/CheckInModal/functions/CheckInModal.md +++ /dev/null @@ -1,26 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [components/CheckIn/CheckInModal](../README.md) / CheckInModal - -# Function: CheckInModal() - -> **CheckInModal**(`__namedParameters`): `Element` - -Defined in: [src/components/CheckIn/CheckInModal.tsx:26](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/CheckIn/CheckInModal.tsx#L26) - -Modal component for managing event check-ins. Displays a list of attendees -and their check-in statuses, allowing for filtering by user name. - -## Parameters - -### \_\_namedParameters - -[`InterfaceModalProp`](../../types/interfaces/InterfaceModalProp.md) - -## Returns - -`Element` - -JSX.Element - The rendered modal component. diff --git a/docs/docs/auto-docs/components/CheckIn/CheckInWrapper/README.md b/docs/docs/auto-docs/components/CheckIn/CheckInWrapper/README.md deleted file mode 100644 index 47606eb0df..0000000000 --- a/docs/docs/auto-docs/components/CheckIn/CheckInWrapper/README.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / components/CheckIn/CheckInWrapper - -# components/CheckIn/CheckInWrapper - -## Functions - -- [CheckInWrapper](functions/CheckInWrapper.md) diff --git a/docs/docs/auto-docs/components/CheckIn/CheckInWrapper/functions/CheckInWrapper.md b/docs/docs/auto-docs/components/CheckIn/CheckInWrapper/functions/CheckInWrapper.md deleted file mode 100644 index 3baa8a75a9..0000000000 --- a/docs/docs/auto-docs/components/CheckIn/CheckInWrapper/functions/CheckInWrapper.md +++ /dev/null @@ -1,27 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [components/CheckIn/CheckInWrapper](../README.md) / CheckInWrapper - -# Function: CheckInWrapper() - -> **CheckInWrapper**(`eventId`): `Element` - -Defined in: [src/components/CheckIn/CheckInWrapper.tsx:17](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/CheckIn/CheckInWrapper.tsx#L17) - -Wrapper component that displays a button to open the CheckInModal. - -## Parameters - -### eventId - -`PropType` - -The ID of the event for which check-in management is being handled. - -## Returns - -`Element` - -JSX.Element - The rendered CheckInWrapper component. diff --git a/docs/docs/auto-docs/components/CheckIn/TableRow/README.md b/docs/docs/auto-docs/components/CheckIn/TableRow/README.md deleted file mode 100644 index d603432368..0000000000 --- a/docs/docs/auto-docs/components/CheckIn/TableRow/README.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / components/CheckIn/TableRow - -# components/CheckIn/TableRow - -## Functions - -- [TableRow](functions/TableRow.md) diff --git a/docs/docs/auto-docs/components/CheckIn/TableRow/functions/TableRow.md b/docs/docs/auto-docs/components/CheckIn/TableRow/functions/TableRow.md deleted file mode 100644 index f98c7a8968..0000000000 --- a/docs/docs/auto-docs/components/CheckIn/TableRow/functions/TableRow.md +++ /dev/null @@ -1,32 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [components/CheckIn/TableRow](../README.md) / TableRow - -# Function: TableRow() - -> **TableRow**(`__namedParameters`): `Element` - -Defined in: [src/components/CheckIn/TableRow.tsx:19](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/CheckIn/TableRow.tsx#L19) - -Component that represents a single row in the check-in table. -Allows users to mark themselves as checked in and download a tag if they are already checked in. - -## Parameters - -### \_\_namedParameters - -#### data - -[`InterfaceTableCheckIn`](../../types/interfaces/InterfaceTableCheckIn.md) - -#### refetch - -() => `void` - -## Returns - -`Element` - -JSX.Element - The rendered TableRow component. diff --git a/docs/docs/auto-docs/components/CheckIn/mocks/README.md b/docs/docs/auto-docs/components/CheckIn/mocks/README.md deleted file mode 100644 index 9173908595..0000000000 --- a/docs/docs/auto-docs/components/CheckIn/mocks/README.md +++ /dev/null @@ -1,13 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / components/CheckIn/mocks - -# components/CheckIn/mocks - -## Variables - -- [checkInMutationSuccess](variables/checkInMutationSuccess.md) -- [checkInMutationUnsuccess](variables/checkInMutationUnsuccess.md) -- [checkInQueryMock](variables/checkInQueryMock.md) diff --git a/docs/docs/auto-docs/components/CheckIn/mocks/variables/checkInMutationSuccess.md b/docs/docs/auto-docs/components/CheckIn/mocks/variables/checkInMutationSuccess.md deleted file mode 100644 index 040b2275e4..0000000000 --- a/docs/docs/auto-docs/components/CheckIn/mocks/variables/checkInMutationSuccess.md +++ /dev/null @@ -1,49 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [components/CheckIn/mocks](../README.md) / checkInMutationSuccess - -# Variable: checkInMutationSuccess - -> `const` **checkInMutationSuccess**: `object`[] - -Defined in: [src/components/CheckIn/mocks.ts:46](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/CheckIn/mocks.ts#L46) - -## Type declaration - -### request - -> **request**: `object` - -#### request.query - -> **query**: `DocumentNode` = `MARK_CHECKIN` - -#### request.variables - -> **variables**: `object` - -#### request.variables.eventId - -> **eventId**: `string` = `'event123'` - -#### request.variables.userId - -> **userId**: `string` = `'user123'` - -### result - -> **result**: `object` - -#### result.data - -> **data**: `object` - -#### result.data.checkIn - -> **checkIn**: `object` - -#### result.data.checkIn.\_id - -> **\_id**: `string` = `'123'` diff --git a/docs/docs/auto-docs/components/CheckIn/mocks/variables/checkInMutationUnsuccess.md b/docs/docs/auto-docs/components/CheckIn/mocks/variables/checkInMutationUnsuccess.md deleted file mode 100644 index df4af4b925..0000000000 --- a/docs/docs/auto-docs/components/CheckIn/mocks/variables/checkInMutationUnsuccess.md +++ /dev/null @@ -1,37 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [components/CheckIn/mocks](../README.md) / checkInMutationUnsuccess - -# Variable: checkInMutationUnsuccess - -> `const` **checkInMutationUnsuccess**: `object`[] - -Defined in: [src/components/CheckIn/mocks.ts:65](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/CheckIn/mocks.ts#L65) - -## Type declaration - -### error - -> **error**: `Error` - -### request - -> **request**: `object` - -#### request.query - -> **query**: `DocumentNode` = `MARK_CHECKIN` - -#### request.variables - -> **variables**: `object` - -#### request.variables.eventId - -> **eventId**: `string` = `'event123'` - -#### request.variables.userId - -> **userId**: `string` = `'user123'` diff --git a/docs/docs/auto-docs/components/CheckIn/mocks/variables/checkInQueryMock.md b/docs/docs/auto-docs/components/CheckIn/mocks/variables/checkInQueryMock.md deleted file mode 100644 index 8aeb7cfba2..0000000000 --- a/docs/docs/auto-docs/components/CheckIn/mocks/variables/checkInQueryMock.md +++ /dev/null @@ -1,37 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [components/CheckIn/mocks](../README.md) / checkInQueryMock - -# Variable: checkInQueryMock - -> `const` **checkInQueryMock**: `object`[] - -Defined in: [src/components/CheckIn/mocks.ts:34](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/CheckIn/mocks.ts#L34) - -## Type declaration - -### request - -> **request**: `object` - -#### request.query - -> **query**: `DocumentNode` = `EVENT_CHECKINS` - -#### request.variables - -> **variables**: `object` - -#### request.variables.id - -> **id**: `string` = `'event123'` - -### result - -> **result**: `object` - -#### result.data - -> **data**: [`InterfaceAttendeeQueryResponse`](../../types/interfaces/InterfaceAttendeeQueryResponse.md) = `checkInQueryData` diff --git a/docs/docs/auto-docs/components/CheckIn/tagTemplate/README.md b/docs/docs/auto-docs/components/CheckIn/tagTemplate/README.md deleted file mode 100644 index fdb4f3533e..0000000000 --- a/docs/docs/auto-docs/components/CheckIn/tagTemplate/README.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / components/CheckIn/tagTemplate - -# components/CheckIn/tagTemplate - -## Variables - -- [tagTemplate](variables/tagTemplate.md) diff --git a/docs/docs/auto-docs/components/CheckIn/tagTemplate/variables/tagTemplate.md b/docs/docs/auto-docs/components/CheckIn/tagTemplate/variables/tagTemplate.md deleted file mode 100644 index edd5dc663a..0000000000 --- a/docs/docs/auto-docs/components/CheckIn/tagTemplate/variables/tagTemplate.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [components/CheckIn/tagTemplate](../README.md) / tagTemplate - -# Variable: tagTemplate - -> `const` **tagTemplate**: `Template` - -Defined in: [src/components/CheckIn/tagTemplate.ts:4](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/CheckIn/tagTemplate.ts#L4) diff --git a/docs/docs/auto-docs/components/CheckIn/types/README.md b/docs/docs/auto-docs/components/CheckIn/types/README.md deleted file mode 100644 index 1750d4df6e..0000000000 --- a/docs/docs/auto-docs/components/CheckIn/types/README.md +++ /dev/null @@ -1,16 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / components/CheckIn/types - -# components/CheckIn/types - -## Interfaces - -- [InterfaceAttendeeCheckIn](interfaces/InterfaceAttendeeCheckIn.md) -- [InterfaceAttendeeQueryResponse](interfaces/InterfaceAttendeeQueryResponse.md) -- [InterfaceModalProp](interfaces/InterfaceModalProp.md) -- [InterfaceTableCheckIn](interfaces/InterfaceTableCheckIn.md) -- [InterfaceTableData](interfaces/InterfaceTableData.md) -- [InterfaceUser](interfaces/InterfaceUser.md) diff --git a/docs/docs/auto-docs/components/CheckIn/types/interfaces/InterfaceAttendeeCheckIn.md b/docs/docs/auto-docs/components/CheckIn/types/interfaces/InterfaceAttendeeCheckIn.md deleted file mode 100644 index 7f950df6e9..0000000000 --- a/docs/docs/auto-docs/components/CheckIn/types/interfaces/InterfaceAttendeeCheckIn.md +++ /dev/null @@ -1,33 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [components/CheckIn/types](../README.md) / InterfaceAttendeeCheckIn - -# Interface: InterfaceAttendeeCheckIn - -Defined in: [src/components/CheckIn/types.ts:7](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/CheckIn/types.ts#L7) - -## Properties - -### \_id - -> **\_id**: `string` - -Defined in: [src/components/CheckIn/types.ts:8](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/CheckIn/types.ts#L8) - -*** - -### checkIn - -> **checkIn**: `null` \| \{ `_id`: `string`; `time`: `string`; \} - -Defined in: [src/components/CheckIn/types.ts:10](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/CheckIn/types.ts#L10) - -*** - -### user - -> **user**: [`InterfaceUser`](InterfaceUser.md) - -Defined in: [src/components/CheckIn/types.ts:9](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/CheckIn/types.ts#L9) diff --git a/docs/docs/auto-docs/components/CheckIn/types/interfaces/InterfaceAttendeeQueryResponse.md b/docs/docs/auto-docs/components/CheckIn/types/interfaces/InterfaceAttendeeQueryResponse.md deleted file mode 100644 index 2ca9345e5b..0000000000 --- a/docs/docs/auto-docs/components/CheckIn/types/interfaces/InterfaceAttendeeQueryResponse.md +++ /dev/null @@ -1,25 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [components/CheckIn/types](../README.md) / InterfaceAttendeeQueryResponse - -# Interface: InterfaceAttendeeQueryResponse - -Defined in: [src/components/CheckIn/types.ts:16](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/CheckIn/types.ts#L16) - -## Properties - -### event - -> **event**: `object` - -Defined in: [src/components/CheckIn/types.ts:17](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/CheckIn/types.ts#L17) - -#### \_id - -> **\_id**: `string` - -#### attendeesCheckInStatus - -> **attendeesCheckInStatus**: [`InterfaceAttendeeCheckIn`](InterfaceAttendeeCheckIn.md)[] diff --git a/docs/docs/auto-docs/components/CheckIn/types/interfaces/InterfaceModalProp.md b/docs/docs/auto-docs/components/CheckIn/types/interfaces/InterfaceModalProp.md deleted file mode 100644 index 899b65d168..0000000000 --- a/docs/docs/auto-docs/components/CheckIn/types/interfaces/InterfaceModalProp.md +++ /dev/null @@ -1,37 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [components/CheckIn/types](../README.md) / InterfaceModalProp - -# Interface: InterfaceModalProp - -Defined in: [src/components/CheckIn/types.ts:23](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/CheckIn/types.ts#L23) - -## Properties - -### eventId - -> **eventId**: `string` - -Defined in: [src/components/CheckIn/types.ts:25](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/CheckIn/types.ts#L25) - -*** - -### handleClose() - -> **handleClose**: () => `void` - -Defined in: [src/components/CheckIn/types.ts:26](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/CheckIn/types.ts#L26) - -#### Returns - -`void` - -*** - -### show - -> **show**: `boolean` - -Defined in: [src/components/CheckIn/types.ts:24](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/CheckIn/types.ts#L24) diff --git a/docs/docs/auto-docs/components/CheckIn/types/interfaces/InterfaceTableCheckIn.md b/docs/docs/auto-docs/components/CheckIn/types/interfaces/InterfaceTableCheckIn.md deleted file mode 100644 index eeefcb9029..0000000000 --- a/docs/docs/auto-docs/components/CheckIn/types/interfaces/InterfaceTableCheckIn.md +++ /dev/null @@ -1,49 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [components/CheckIn/types](../README.md) / InterfaceTableCheckIn - -# Interface: InterfaceTableCheckIn - -Defined in: [src/components/CheckIn/types.ts:29](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/CheckIn/types.ts#L29) - -## Properties - -### checkIn - -> **checkIn**: `null` \| \{ `_id`: `string`; `time`: `string`; \} - -Defined in: [src/components/CheckIn/types.ts:33](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/CheckIn/types.ts#L33) - -*** - -### eventId - -> **eventId**: `string` - -Defined in: [src/components/CheckIn/types.ts:37](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/CheckIn/types.ts#L37) - -*** - -### id - -> **id**: `string` - -Defined in: [src/components/CheckIn/types.ts:30](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/CheckIn/types.ts#L30) - -*** - -### name - -> **name**: `string` - -Defined in: [src/components/CheckIn/types.ts:31](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/CheckIn/types.ts#L31) - -*** - -### userId - -> **userId**: `string` - -Defined in: [src/components/CheckIn/types.ts:32](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/CheckIn/types.ts#L32) diff --git a/docs/docs/auto-docs/components/CheckIn/types/interfaces/InterfaceTableData.md b/docs/docs/auto-docs/components/CheckIn/types/interfaces/InterfaceTableData.md deleted file mode 100644 index e64c0d8a84..0000000000 --- a/docs/docs/auto-docs/components/CheckIn/types/interfaces/InterfaceTableData.md +++ /dev/null @@ -1,33 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [components/CheckIn/types](../README.md) / InterfaceTableData - -# Interface: InterfaceTableData - -Defined in: [src/components/CheckIn/types.ts:40](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/CheckIn/types.ts#L40) - -## Properties - -### checkInData - -> **checkInData**: [`InterfaceTableCheckIn`](InterfaceTableCheckIn.md) - -Defined in: [src/components/CheckIn/types.ts:43](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/CheckIn/types.ts#L43) - -*** - -### id - -> **id**: `string` - -Defined in: [src/components/CheckIn/types.ts:42](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/CheckIn/types.ts#L42) - -*** - -### userName - -> **userName**: `string` - -Defined in: [src/components/CheckIn/types.ts:41](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/CheckIn/types.ts#L41) diff --git a/docs/docs/auto-docs/components/CheckIn/types/interfaces/InterfaceUser.md b/docs/docs/auto-docs/components/CheckIn/types/interfaces/InterfaceUser.md deleted file mode 100644 index a894a4bbc0..0000000000 --- a/docs/docs/auto-docs/components/CheckIn/types/interfaces/InterfaceUser.md +++ /dev/null @@ -1,33 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [components/CheckIn/types](../README.md) / InterfaceUser - -# Interface: InterfaceUser - -Defined in: [src/components/CheckIn/types.ts:1](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/CheckIn/types.ts#L1) - -## Properties - -### \_id - -> **\_id**: `string` - -Defined in: [src/components/CheckIn/types.ts:2](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/CheckIn/types.ts#L2) - -*** - -### firstName - -> **firstName**: `string` - -Defined in: [src/components/CheckIn/types.ts:3](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/CheckIn/types.ts#L3) - -*** - -### lastName - -> **lastName**: `string` - -Defined in: [src/components/CheckIn/types.ts:4](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/CheckIn/types.ts#L4) diff --git a/docs/docs/auto-docs/components/CollapsibleDropdown/CollapsibleDropdown/README.md b/docs/docs/auto-docs/components/CollapsibleDropdown/CollapsibleDropdown/README.md deleted file mode 100644 index d79ea7e55b..0000000000 --- a/docs/docs/auto-docs/components/CollapsibleDropdown/CollapsibleDropdown/README.md +++ /dev/null @@ -1,15 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / components/CollapsibleDropdown/CollapsibleDropdown - -# components/CollapsibleDropdown/CollapsibleDropdown - -## Interfaces - -- [InterfaceCollapsibleDropdown](interfaces/InterfaceCollapsibleDropdown.md) - -## Functions - -- [default](functions/default.md) diff --git a/docs/docs/auto-docs/components/CollapsibleDropdown/CollapsibleDropdown/functions/default.md b/docs/docs/auto-docs/components/CollapsibleDropdown/CollapsibleDropdown/functions/default.md deleted file mode 100644 index 4307ee9050..0000000000 --- a/docs/docs/auto-docs/components/CollapsibleDropdown/CollapsibleDropdown/functions/default.md +++ /dev/null @@ -1,25 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [components/CollapsibleDropdown/CollapsibleDropdown](../README.md) / default - -# Function: default() - -> **default**(`__namedParameters`): `Element` - -Defined in: [src/components/CollapsibleDropdown/CollapsibleDropdown.tsx:24](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/CollapsibleDropdown/CollapsibleDropdown.tsx#L24) - -A collapsible dropdown component that toggles visibility of sub-targets. - -## Parameters - -### \_\_namedParameters - -[`InterfaceCollapsibleDropdown`](../interfaces/InterfaceCollapsibleDropdown.md) - -## Returns - -`Element` - -JSX.Element - The rendered CollapsibleDropdown component. diff --git a/docs/docs/auto-docs/components/CollapsibleDropdown/CollapsibleDropdown/interfaces/InterfaceCollapsibleDropdown.md b/docs/docs/auto-docs/components/CollapsibleDropdown/CollapsibleDropdown/interfaces/InterfaceCollapsibleDropdown.md deleted file mode 100644 index 200ce000df..0000000000 --- a/docs/docs/auto-docs/components/CollapsibleDropdown/CollapsibleDropdown/interfaces/InterfaceCollapsibleDropdown.md +++ /dev/null @@ -1,33 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [components/CollapsibleDropdown/CollapsibleDropdown](../README.md) / InterfaceCollapsibleDropdown - -# Interface: InterfaceCollapsibleDropdown - -Defined in: [src/components/CollapsibleDropdown/CollapsibleDropdown.tsx:9](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/CollapsibleDropdown/CollapsibleDropdown.tsx#L9) - -## Properties - -### setShowDropdown - -> **setShowDropdown**: `Dispatch`\<`SetStateAction`\<`boolean`\>\> - -Defined in: [src/components/CollapsibleDropdown/CollapsibleDropdown.tsx:12](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/CollapsibleDropdown/CollapsibleDropdown.tsx#L12) - -*** - -### showDropdown - -> **showDropdown**: `boolean` - -Defined in: [src/components/CollapsibleDropdown/CollapsibleDropdown.tsx:10](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/CollapsibleDropdown/CollapsibleDropdown.tsx#L10) - -*** - -### target - -> **target**: [`TargetsType`](../../../../state/reducers/routesReducer/type-aliases/TargetsType.md) - -Defined in: [src/components/CollapsibleDropdown/CollapsibleDropdown.tsx:11](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/CollapsibleDropdown/CollapsibleDropdown.tsx#L11) diff --git a/docs/docs/auto-docs/components/ContriStats/ContriStats/README.md b/docs/docs/auto-docs/components/ContriStats/ContriStats/README.md deleted file mode 100644 index 587df84c24..0000000000 --- a/docs/docs/auto-docs/components/ContriStats/ContriStats/README.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / components/ContriStats/ContriStats - -# components/ContriStats/ContriStats - -## Functions - -- [default](functions/default.md) diff --git a/docs/docs/auto-docs/components/ContriStats/ContriStats/functions/default.md b/docs/docs/auto-docs/components/ContriStats/ContriStats/functions/default.md deleted file mode 100644 index c4d6434254..0000000000 --- a/docs/docs/auto-docs/components/ContriStats/ContriStats/functions/default.md +++ /dev/null @@ -1,25 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [components/ContriStats/ContriStats](../README.md) / default - -# Function: default() - -> **default**(`__namedParameters`): `JSX.Element` - -Defined in: [src/components/ContriStats/ContriStats.tsx:22](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/ContriStats/ContriStats.tsx#L22) - -A component that displays contribution statistics. - -## Parameters - -### \_\_namedParameters - -`InterfaceContriStatsProps` - -## Returns - -`JSX.Element` - -JSX.Element - The rendered component displaying the contribution stats. diff --git a/docs/docs/auto-docs/components/CurrentHourIndicator/CurrentHourIndicator/README.md b/docs/docs/auto-docs/components/CurrentHourIndicator/CurrentHourIndicator/README.md deleted file mode 100644 index f48317f2f1..0000000000 --- a/docs/docs/auto-docs/components/CurrentHourIndicator/CurrentHourIndicator/README.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / components/CurrentHourIndicator/CurrentHourIndicator - -# components/CurrentHourIndicator/CurrentHourIndicator - -## Functions - -- [default](functions/default.md) diff --git a/docs/docs/auto-docs/components/CurrentHourIndicator/CurrentHourIndicator/functions/default.md b/docs/docs/auto-docs/components/CurrentHourIndicator/CurrentHourIndicator/functions/default.md deleted file mode 100644 index f80c9e251a..0000000000 --- a/docs/docs/auto-docs/components/CurrentHourIndicator/CurrentHourIndicator/functions/default.md +++ /dev/null @@ -1,19 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [components/CurrentHourIndicator/CurrentHourIndicator](../README.md) / default - -# Function: default() - -> **default**(): `Element` - -Defined in: [src/components/CurrentHourIndicator/CurrentHourIndicator.tsx:9](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/CurrentHourIndicator/CurrentHourIndicator.tsx#L9) - -A component that displays an indicator for the current hour. - -## Returns - -`Element` - -JSX.Element - The rendered component showing the current hour indicator. diff --git a/docs/docs/auto-docs/components/DynamicDropDown/DynamicDropDown/README.md b/docs/docs/auto-docs/components/DynamicDropDown/DynamicDropDown/README.md deleted file mode 100644 index d1af600000..0000000000 --- a/docs/docs/auto-docs/components/DynamicDropDown/DynamicDropDown/README.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / components/DynamicDropDown/DynamicDropDown - -# components/DynamicDropDown/DynamicDropDown - -## Functions - -- [default](functions/default.md) diff --git a/docs/docs/auto-docs/components/DynamicDropDown/DynamicDropDown/functions/default.md b/docs/docs/auto-docs/components/DynamicDropDown/DynamicDropDown/functions/default.md deleted file mode 100644 index c2e3c26c5a..0000000000 --- a/docs/docs/auto-docs/components/DynamicDropDown/DynamicDropDown/functions/default.md +++ /dev/null @@ -1,32 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [components/DynamicDropDown/DynamicDropDown](../README.md) / default - -# Function: default() - -> **default**\<`T`\>(`__namedParameters`): `Element` - -Defined in: [src/components/DynamicDropDown/DynamicDropDown.tsx:34](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/DynamicDropDown/DynamicDropDown.tsx#L34) - -A dynamic dropdown component that allows users to select an option. - -This component renders a dropdown with a toggle button. Clicking the button -opens a menu with options. When an option is selected, it updates the form state. - -## Type Parameters - -• **T** *extends* `Record`\<`string`, `unknown`\> - -## Parameters - -### \_\_namedParameters - -`InterfaceChangeDropDownProps`\<`T`\> - -## Returns - -`Element` - -JSX.Element - The rendered dropdown component. diff --git a/docs/docs/auto-docs/components/EditCustomFieldDropDown/EditCustomFieldDropDown/README.md b/docs/docs/auto-docs/components/EditCustomFieldDropDown/EditCustomFieldDropDown/README.md deleted file mode 100644 index 045ad51fde..0000000000 --- a/docs/docs/auto-docs/components/EditCustomFieldDropDown/EditCustomFieldDropDown/README.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / components/EditCustomFieldDropDown/EditCustomFieldDropDown - -# components/EditCustomFieldDropDown/EditCustomFieldDropDown - -## Functions - -- [default](functions/default.md) diff --git a/docs/docs/auto-docs/components/EditCustomFieldDropDown/EditCustomFieldDropDown/functions/default.md b/docs/docs/auto-docs/components/EditCustomFieldDropDown/EditCustomFieldDropDown/functions/default.md deleted file mode 100644 index ebb919095d..0000000000 --- a/docs/docs/auto-docs/components/EditCustomFieldDropDown/EditCustomFieldDropDown/functions/default.md +++ /dev/null @@ -1,29 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [components/EditCustomFieldDropDown/EditCustomFieldDropDown](../README.md) / default - -# Function: default() - -> **default**(`__namedParameters`): `Element` - -Defined in: [src/components/EditCustomFieldDropDown/EditCustomFieldDropDown.tsx:33](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/EditCustomFieldDropDown/EditCustomFieldDropDown.tsx#L33) - -A dropdown component for editing custom field types. - -This component displays a dropdown menu that allows users to select a custom field type. -It shows the current type of the field and provides a list of available types to choose from. -When a new type is selected, it updates the custom field data. - -## Parameters - -### \_\_namedParameters - -`InterfaceEditCustomFieldDropDownProps` - -## Returns - -`Element` - -JSX.Element - The rendered dropdown component. diff --git a/docs/docs/auto-docs/components/EventCalendar/EventCalendar/README.md b/docs/docs/auto-docs/components/EventCalendar/EventCalendar/README.md deleted file mode 100644 index 1472b8295d..0000000000 --- a/docs/docs/auto-docs/components/EventCalendar/EventCalendar/README.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / components/EventCalendar/EventCalendar - -# components/EventCalendar/EventCalendar - -## Functions - -- [default](functions/default.md) diff --git a/docs/docs/auto-docs/components/EventCalendar/EventCalendar/functions/default.md b/docs/docs/auto-docs/components/EventCalendar/EventCalendar/functions/default.md deleted file mode 100644 index 5b532ca97f..0000000000 --- a/docs/docs/auto-docs/components/EventCalendar/EventCalendar/functions/default.md +++ /dev/null @@ -1,31 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [components/EventCalendar/EventCalendar](../README.md) / default - -# Function: default() - -> **default**(`props`, `deprecatedLegacyContext`?): `ReactNode` - -Defined in: [src/components/EventCalendar/EventCalendar.tsx:58](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/EventCalendar/EventCalendar.tsx#L58) - -## Parameters - -### props - -`InterfaceCalendarProps` - -### deprecatedLegacyContext? - -`any` - -**Deprecated** - -**See** - -[React Docs](https://legacy.reactjs.org/docs/legacy-context.html#referencing-context-in-lifecycle-methods) - -## Returns - -`ReactNode` diff --git a/docs/docs/auto-docs/components/EventCalendar/EventHeader/README.md b/docs/docs/auto-docs/components/EventCalendar/EventHeader/README.md deleted file mode 100644 index 61eb1fc8da..0000000000 --- a/docs/docs/auto-docs/components/EventCalendar/EventHeader/README.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / components/EventCalendar/EventHeader - -# components/EventCalendar/EventHeader - -## Functions - -- [default](functions/default.md) diff --git a/docs/docs/auto-docs/components/EventCalendar/EventHeader/functions/default.md b/docs/docs/auto-docs/components/EventCalendar/EventHeader/functions/default.md deleted file mode 100644 index 8fc3c1a306..0000000000 --- a/docs/docs/auto-docs/components/EventCalendar/EventHeader/functions/default.md +++ /dev/null @@ -1,26 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [components/EventCalendar/EventHeader](../README.md) / default - -# Function: default() - -> **default**(`__namedParameters`): `JSX.Element` - -Defined in: [src/components/EventCalendar/EventHeader.tsx:27](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/EventCalendar/EventHeader.tsx#L27) - -EventHeader component displays the header for the event calendar. -It includes a search field, view type dropdown, event type dropdown, and a button to create an event. - -## Parameters - -### \_\_namedParameters - -`InterfaceEventHeaderProps` - -## Returns - -`JSX.Element` - -JSX.Element - The rendered EventHeader component. diff --git a/docs/docs/auto-docs/components/EventCalendar/YearlyEventCalender/README.md b/docs/docs/auto-docs/components/EventCalendar/YearlyEventCalender/README.md deleted file mode 100644 index c7eb5d8b30..0000000000 --- a/docs/docs/auto-docs/components/EventCalendar/YearlyEventCalender/README.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / components/EventCalendar/YearlyEventCalender - -# components/EventCalendar/YearlyEventCalender - -## Functions - -- [default](functions/default.md) diff --git a/docs/docs/auto-docs/components/EventCalendar/YearlyEventCalender/functions/default.md b/docs/docs/auto-docs/components/EventCalendar/YearlyEventCalender/functions/default.md deleted file mode 100644 index afb7aca407..0000000000 --- a/docs/docs/auto-docs/components/EventCalendar/YearlyEventCalender/functions/default.md +++ /dev/null @@ -1,38 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [components/EventCalendar/YearlyEventCalender](../README.md) / default - -# Function: default() - -> **default**(`props`, `deprecatedLegacyContext`?): `ReactNode` - -Defined in: [src/components/EventCalendar/YearlyEventCalender.tsx:95](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/EventCalendar/YearlyEventCalender.tsx#L95) - -Calendar component to display events for a selected year. - -This component renders a yearly calendar with navigation to view previous and next years. -It displays events for each day, with functionality to expand and view details of events. - -## Parameters - -### props - -`InterfaceCalendarProps` - -### deprecatedLegacyContext? - -`any` - -**Deprecated** - -**See** - -[React Docs](https://legacy.reactjs.org/docs/legacy-context.html#referencing-context-in-lifecycle-methods) - -## Returns - -`ReactNode` - -JSX.Element - The rendered calendar component. diff --git a/docs/docs/auto-docs/components/EventCalendar/constants/README.md b/docs/docs/auto-docs/components/EventCalendar/constants/README.md deleted file mode 100644 index 0cc41207b0..0000000000 --- a/docs/docs/auto-docs/components/EventCalendar/constants/README.md +++ /dev/null @@ -1,14 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / components/EventCalendar/constants - -# components/EventCalendar/constants - -## Variables - -- [holidays](variables/holidays.md) -- [hours](variables/hours.md) -- [months](variables/months.md) -- [weekdays](variables/weekdays.md) diff --git a/docs/docs/auto-docs/components/EventCalendar/constants/variables/holidays.md b/docs/docs/auto-docs/components/EventCalendar/constants/variables/holidays.md deleted file mode 100644 index 7d3650e1ab..0000000000 --- a/docs/docs/auto-docs/components/EventCalendar/constants/variables/holidays.md +++ /dev/null @@ -1,25 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [components/EventCalendar/constants](../README.md) / holidays - -# Variable: holidays - -> `const` **holidays**: `object`[] - -Defined in: [src/components/EventCalendar/constants.js:1](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/EventCalendar/constants.js#L1) - -## Type declaration - -### date - -> **date**: `string` = `'05-01'` - -### month - -> **month**: `string` = `'May'` - -### name - -> **name**: `string` = `'May Day / Labour Day'` diff --git a/docs/docs/auto-docs/components/EventCalendar/constants/variables/hours.md b/docs/docs/auto-docs/components/EventCalendar/constants/variables/hours.md deleted file mode 100644 index d253fc95ad..0000000000 --- a/docs/docs/auto-docs/components/EventCalendar/constants/variables/hours.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [components/EventCalendar/constants](../README.md) / hours - -# Variable: hours - -> `const` **hours**: `string`[] - -Defined in: [src/components/EventCalendar/constants.js:31](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/EventCalendar/constants.js#L31) diff --git a/docs/docs/auto-docs/components/EventCalendar/constants/variables/months.md b/docs/docs/auto-docs/components/EventCalendar/constants/variables/months.md deleted file mode 100644 index c8babf9ad6..0000000000 --- a/docs/docs/auto-docs/components/EventCalendar/constants/variables/months.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [components/EventCalendar/constants](../README.md) / months - -# Variable: months - -> `const` **months**: `string`[] - -Defined in: [src/components/EventCalendar/constants.js:17](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/EventCalendar/constants.js#L17) diff --git a/docs/docs/auto-docs/components/EventCalendar/constants/variables/weekdays.md b/docs/docs/auto-docs/components/EventCalendar/constants/variables/weekdays.md deleted file mode 100644 index 2d8ba17bbb..0000000000 --- a/docs/docs/auto-docs/components/EventCalendar/constants/variables/weekdays.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [components/EventCalendar/constants](../README.md) / weekdays - -# Variable: weekdays - -> `const` **weekdays**: `string`[] - -Defined in: [src/components/EventCalendar/constants.js:16](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/EventCalendar/constants.js#L16) diff --git a/docs/docs/auto-docs/components/EventDashboardScreen/EventDashboardScreen/README.md b/docs/docs/auto-docs/components/EventDashboardScreen/EventDashboardScreen/README.md deleted file mode 100644 index 8ab5d2ee2b..0000000000 --- a/docs/docs/auto-docs/components/EventDashboardScreen/EventDashboardScreen/README.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / components/EventDashboardScreen/EventDashboardScreen - -# components/EventDashboardScreen/EventDashboardScreen - -## Functions - -- [default](functions/default.md) diff --git a/docs/docs/auto-docs/components/EventDashboardScreen/EventDashboardScreen/functions/default.md b/docs/docs/auto-docs/components/EventDashboardScreen/EventDashboardScreen/functions/default.md deleted file mode 100644 index db42608b4c..0000000000 --- a/docs/docs/auto-docs/components/EventDashboardScreen/EventDashboardScreen/functions/default.md +++ /dev/null @@ -1,20 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [components/EventDashboardScreen/EventDashboardScreen](../README.md) / default - -# Function: default() - -> **default**(): `Element` - -Defined in: [src/components/EventDashboardScreen/EventDashboardScreen.tsx:21](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/EventDashboardScreen/EventDashboardScreen.tsx#L21) - -The EventDashboardScreen component is the main dashboard view for event management. -It includes navigation, a sidebar, and a profile dropdown. - -## Returns - -`Element` - -JSX.Element - The rendered EventDashboardScreen component. diff --git a/docs/docs/auto-docs/components/EventListCard/EventListCard/README.md b/docs/docs/auto-docs/components/EventListCard/EventListCard/README.md deleted file mode 100644 index 413bd041b0..0000000000 --- a/docs/docs/auto-docs/components/EventListCard/EventListCard/README.md +++ /dev/null @@ -1,15 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / components/EventListCard/EventListCard - -# components/EventListCard/EventListCard - -## Interfaces - -- [InterfaceEventListCardProps](interfaces/InterfaceEventListCardProps.md) - -## Functions - -- [default](functions/default.md) diff --git a/docs/docs/auto-docs/components/EventListCard/EventListCard/functions/default.md b/docs/docs/auto-docs/components/EventListCard/EventListCard/functions/default.md deleted file mode 100644 index e7d3558dd4..0000000000 --- a/docs/docs/auto-docs/components/EventListCard/EventListCard/functions/default.md +++ /dev/null @@ -1,27 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [components/EventListCard/EventListCard](../README.md) / default - -# Function: default() - -> **default**(`props`): `JSX.Element` - -Defined in: [src/components/EventListCard/EventListCard.tsx:45](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/EventListCard/EventListCard.tsx#L45) - -Component that displays an event card with a modal for event details. - -## Parameters - -### props - -[`InterfaceEventListCardProps`](../interfaces/InterfaceEventListCardProps.md) - -The props for the EventListCard component. - -## Returns - -`JSX.Element` - -The rendered EventListCard component. diff --git a/docs/docs/auto-docs/components/EventListCard/EventListCard/interfaces/InterfaceEventListCardProps.md b/docs/docs/auto-docs/components/EventListCard/EventListCard/interfaces/InterfaceEventListCardProps.md deleted file mode 100644 index e40fce27a8..0000000000 --- a/docs/docs/auto-docs/components/EventListCard/EventListCard/interfaces/InterfaceEventListCardProps.md +++ /dev/null @@ -1,183 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [components/EventListCard/EventListCard](../README.md) / InterfaceEventListCardProps - -# Interface: InterfaceEventListCardProps - -Defined in: [src/components/EventListCard/EventListCard.tsx:11](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/EventListCard/EventListCard.tsx#L11) - -Props for the EventListCard component. - -## Properties - -### allDay - -> **allDay**: `boolean` - -Defined in: [src/components/EventListCard/EventListCard.tsx:23](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/EventListCard/EventListCard.tsx#L23) - -*** - -### creator? - -> `optional` **creator**: `object` - -Defined in: [src/components/EventListCard/EventListCard.tsx:32](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/EventListCard/EventListCard.tsx#L32) - -#### \_id - -> **\_id**: `string` - -#### firstName - -> **firstName**: `string` - -#### lastName - -> **lastName**: `string` - -*** - -### endDate - -> **endDate**: `string` - -Defined in: [src/components/EventListCard/EventListCard.tsx:20](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/EventListCard/EventListCard.tsx#L20) - -*** - -### endTime - -> **endTime**: `null` \| `string` - -Defined in: [src/components/EventListCard/EventListCard.tsx:22](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/EventListCard/EventListCard.tsx#L22) - -*** - -### eventDescription - -> **eventDescription**: `string` - -Defined in: [src/components/EventListCard/EventListCard.tsx:18](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/EventListCard/EventListCard.tsx#L18) - -*** - -### eventLocation - -> **eventLocation**: `string` - -Defined in: [src/components/EventListCard/EventListCard.tsx:16](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/EventListCard/EventListCard.tsx#L16) - -*** - -### eventName - -> **eventName**: `string` - -Defined in: [src/components/EventListCard/EventListCard.tsx:17](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/EventListCard/EventListCard.tsx#L17) - -*** - -### id - -> **id**: `string` - -Defined in: [src/components/EventListCard/EventListCard.tsx:15](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/EventListCard/EventListCard.tsx#L15) - -*** - -### isPublic - -> **isPublic**: `boolean` - -Defined in: [src/components/EventListCard/EventListCard.tsx:27](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/EventListCard/EventListCard.tsx#L27) - -*** - -### isRecurringEventException - -> **isRecurringEventException**: `boolean` - -Defined in: [src/components/EventListCard/EventListCard.tsx:26](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/EventListCard/EventListCard.tsx#L26) - -*** - -### isRegisterable - -> **isRegisterable**: `boolean` - -Defined in: [src/components/EventListCard/EventListCard.tsx:28](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/EventListCard/EventListCard.tsx#L28) - -*** - -### key - -> **key**: `string` - -Defined in: [src/components/EventListCard/EventListCard.tsx:14](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/EventListCard/EventListCard.tsx#L14) - -*** - -### recurrenceRule - -> **recurrenceRule**: `null` \| [`InterfaceRecurrenceRule`](../../../../utils/recurrenceUtils/recurrenceTypes/interfaces/InterfaceRecurrenceRule.md) - -Defined in: [src/components/EventListCard/EventListCard.tsx:25](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/EventListCard/EventListCard.tsx#L25) - -*** - -### recurring - -> **recurring**: `boolean` - -Defined in: [src/components/EventListCard/EventListCard.tsx:24](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/EventListCard/EventListCard.tsx#L24) - -*** - -### refetchEvents()? - -> `optional` **refetchEvents**: () => `void` - -Defined in: [src/components/EventListCard/EventListCard.tsx:12](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/EventListCard/EventListCard.tsx#L12) - -#### Returns - -`void` - -*** - -### registrants? - -> `optional` **registrants**: `object`[] - -Defined in: [src/components/EventListCard/EventListCard.tsx:29](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/EventListCard/EventListCard.tsx#L29) - -#### \_id - -> **\_id**: `string` - -*** - -### startDate - -> **startDate**: `string` - -Defined in: [src/components/EventListCard/EventListCard.tsx:19](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/EventListCard/EventListCard.tsx#L19) - -*** - -### startTime - -> **startTime**: `null` \| `string` - -Defined in: [src/components/EventListCard/EventListCard.tsx:21](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/EventListCard/EventListCard.tsx#L21) - -*** - -### userRole? - -> `optional` **userRole**: `string` - -Defined in: [src/components/EventListCard/EventListCard.tsx:13](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/EventListCard/EventListCard.tsx#L13) diff --git a/docs/docs/auto-docs/components/EventListCard/EventListCardMocks/README.md b/docs/docs/auto-docs/components/EventListCard/EventListCardMocks/README.md deleted file mode 100644 index f3e178dc1b..0000000000 --- a/docs/docs/auto-docs/components/EventListCard/EventListCardMocks/README.md +++ /dev/null @@ -1,12 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / components/EventListCard/EventListCardMocks - -# components/EventListCard/EventListCardMocks - -## Variables - -- [ERROR\_MOCKS](variables/ERROR_MOCKS.md) -- [MOCKS](variables/MOCKS.md) diff --git a/docs/docs/auto-docs/components/EventListCard/EventListCardMocks/variables/ERROR_MOCKS.md b/docs/docs/auto-docs/components/EventListCard/EventListCardMocks/variables/ERROR_MOCKS.md deleted file mode 100644 index 75e9981393..0000000000 --- a/docs/docs/auto-docs/components/EventListCard/EventListCardMocks/variables/ERROR_MOCKS.md +++ /dev/null @@ -1,33 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [components/EventListCard/EventListCardMocks](../README.md) / ERROR\_MOCKS - -# Variable: ERROR\_MOCKS - -> `const` **ERROR\_MOCKS**: `object`[] - -Defined in: [src/components/EventListCard/EventListCardMocks.ts:191](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/EventListCard/EventListCardMocks.ts#L191) - -## Type declaration - -### error - -> **error**: `Error` - -### request - -> **request**: `object` - -#### request.query - -> **query**: `DocumentNode` = `DELETE_EVENT_MUTATION` - -#### request.variables - -> **variables**: `object` - -#### request.variables.id - -> **id**: `string` = `'1'` diff --git a/docs/docs/auto-docs/components/EventListCard/EventListCardMocks/variables/MOCKS.md b/docs/docs/auto-docs/components/EventListCard/EventListCardMocks/variables/MOCKS.md deleted file mode 100644 index e7a59d272d..0000000000 --- a/docs/docs/auto-docs/components/EventListCard/EventListCardMocks/variables/MOCKS.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [components/EventListCard/EventListCardMocks](../README.md) / MOCKS - -# Variable: MOCKS - -> `const` **MOCKS**: (\{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `allDay`: `undefined`; `description`: `undefined`; `endDate`: `undefined`; `endTime`: `undefined`; `eventId`: `undefined`; `frequency`: `undefined`; `id`: `string`; `interval`: `undefined`; `isPublic`: `undefined`; `isRegisterable`: `undefined`; `location`: `undefined`; `recurrenceEndDate`: `undefined`; `recurrenceStartDate`: `undefined`; `recurring`: `undefined`; `recurringEventDeleteType`: `undefined`; `recurringEventUpdateType`: `undefined`; `startDate`: `undefined`; `startTime`: `undefined`; `title`: `undefined`; `weekDayOccurenceInMonth`: `undefined`; `weekDays`: `undefined`; \}; \}; `result`: \{ `data`: \{ `registerForEvent`: `undefined`; `removeEvent`: \{ `_id`: `string`; \}; `updateEvent`: `undefined`; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `allDay`: `undefined`; `description`: `undefined`; `endDate`: `undefined`; `endTime`: `undefined`; `eventId`: `undefined`; `frequency`: `undefined`; `id`: `string`; `interval`: `undefined`; `isPublic`: `undefined`; `isRegisterable`: `undefined`; `location`: `undefined`; `recurrenceEndDate`: `undefined`; `recurrenceStartDate`: `undefined`; `recurring`: `undefined`; `recurringEventDeleteType`: `string`; `recurringEventUpdateType`: `undefined`; `startDate`: `undefined`; `startTime`: `undefined`; `title`: `undefined`; `weekDayOccurenceInMonth`: `undefined`; `weekDays`: `undefined`; \}; \}; `result`: \{ `data`: \{ `registerForEvent`: `undefined`; `removeEvent`: \{ `_id`: `string`; \}; `updateEvent`: `undefined`; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `allDay`: `boolean`; `description`: `string`; `endDate`: `string`; `endTime`: `undefined`; `eventId`: `undefined`; `frequency`: `undefined`; `id`: `string`; `interval`: `undefined`; `isPublic`: `boolean`; `isRegisterable`: `boolean`; `location`: `string`; `recurrenceEndDate`: `undefined`; `recurrenceStartDate`: `undefined`; `recurring`: `boolean`; `recurringEventDeleteType`: `undefined`; `recurringEventUpdateType`: `undefined`; `startDate`: `string`; `startTime`: `undefined`; `title`: `string`; `weekDayOccurenceInMonth`: `undefined`; `weekDays`: `undefined`; \}; \}; `result`: \{ `data`: \{ `registerForEvent`: `undefined`; `removeEvent`: `undefined`; `updateEvent`: \{ `_id`: `string`; \}; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `allDay`: `boolean`; `description`: `string`; `endDate`: `string`; `endTime`: `string`; `eventId`: `undefined`; `frequency`: `undefined`; `id`: `string`; `interval`: `undefined`; `isPublic`: `boolean`; `isRegisterable`: `boolean`; `location`: `string`; `recurrenceEndDate`: `undefined`; `recurrenceStartDate`: `undefined`; `recurring`: `boolean`; `recurringEventDeleteType`: `undefined`; `recurringEventUpdateType`: `undefined`; `startDate`: `string`; `startTime`: `string`; `title`: `string`; `weekDayOccurenceInMonth`: `undefined`; `weekDays`: `undefined`; \}; \}; `result`: \{ `data`: \{ `registerForEvent`: `undefined`; `removeEvent`: `undefined`; `updateEvent`: \{ `_id`: `string`; \}; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `allDay`: `boolean`; `description`: `string`; `endDate`: `string`; `endTime`: `undefined`; `eventId`: `undefined`; `frequency`: `string`; `id`: `string`; `interval`: `number`; `isPublic`: `boolean`; `isRegisterable`: `boolean`; `location`: `string`; `recurrenceEndDate`: `null`; `recurrenceStartDate`: `string`; `recurring`: `boolean`; `recurringEventDeleteType`: `undefined`; `recurringEventUpdateType`: `string`; `startDate`: `string`; `startTime`: `undefined`; `title`: `string`; `weekDayOccurenceInMonth`: `undefined`; `weekDays`: `string`[]; \}; \}; `result`: \{ `data`: \{ `registerForEvent`: `undefined`; `removeEvent`: `undefined`; `updateEvent`: \{ `_id`: `string`; \}; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `allDay`: `boolean`; `description`: `string`; `endDate`: `string`; `endTime`: `undefined`; `eventId`: `undefined`; `frequency`: `string`; `id`: `string`; `interval`: `number`; `isPublic`: `boolean`; `isRegisterable`: `boolean`; `location`: `string`; `recurrenceEndDate`: `string`; `recurrenceStartDate`: `string`; `recurring`: `boolean`; `recurringEventDeleteType`: `undefined`; `recurringEventUpdateType`: `string`; `startDate`: `string`; `startTime`: `undefined`; `title`: `string`; `weekDayOccurenceInMonth`: `number`; `weekDays`: `string`[]; \}; \}; `result`: \{ `data`: \{ `registerForEvent`: `undefined`; `removeEvent`: `undefined`; `updateEvent`: \{ `_id`: `string`; \}; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `allDay`: `boolean`; `description`: `string`; `endDate`: `string`; `endTime`: `undefined`; `eventId`: `undefined`; `frequency`: `string`; `id`: `string`; `interval`: `number`; `isPublic`: `boolean`; `isRegisterable`: `boolean`; `location`: `string`; `recurrenceEndDate`: `null`; `recurrenceStartDate`: `string`; `recurring`: `boolean`; `recurringEventDeleteType`: `undefined`; `recurringEventUpdateType`: `string`; `startDate`: `string`; `startTime`: `undefined`; `title`: `string`; `weekDayOccurenceInMonth`: `undefined`; `weekDays`: `undefined`; \}; \}; `result`: \{ `data`: \{ `registerForEvent`: `undefined`; `removeEvent`: `undefined`; `updateEvent`: \{ `_id`: `string`; \}; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `allDay`: `undefined`; `description`: `undefined`; `endDate`: `undefined`; `endTime`: `undefined`; `eventId`: `string`; `frequency`: `undefined`; `id`: `undefined`; `interval`: `undefined`; `isPublic`: `undefined`; `isRegisterable`: `undefined`; `location`: `undefined`; `recurrenceEndDate`: `undefined`; `recurrenceStartDate`: `undefined`; `recurring`: `undefined`; `recurringEventDeleteType`: `undefined`; `recurringEventUpdateType`: `undefined`; `startDate`: `undefined`; `startTime`: `undefined`; `title`: `undefined`; `weekDayOccurenceInMonth`: `undefined`; `weekDays`: `undefined`; \}; \}; `result`: \{ `data`: \{ `registerForEvent`: `object`[]; `removeEvent`: `undefined`; `updateEvent`: `undefined`; \}; \}; \})[] - -Defined in: [src/components/EventListCard/EventListCardMocks.ts:7](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/EventListCard/EventListCardMocks.ts#L7) diff --git a/docs/docs/auto-docs/components/EventListCard/EventListCardModals/README.md b/docs/docs/auto-docs/components/EventListCard/EventListCardModals/README.md deleted file mode 100644 index a431dca3dd..0000000000 --- a/docs/docs/auto-docs/components/EventListCard/EventListCardModals/README.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / components/EventListCard/EventListCardModals - -# components/EventListCard/EventListCardModals - -## Functions - -- [default](functions/default.md) diff --git a/docs/docs/auto-docs/components/EventListCard/EventListCardModals/functions/default.md b/docs/docs/auto-docs/components/EventListCard/EventListCardModals/functions/default.md deleted file mode 100644 index 69ae7f715b..0000000000 --- a/docs/docs/auto-docs/components/EventListCard/EventListCardModals/functions/default.md +++ /dev/null @@ -1,28 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [components/EventListCard/EventListCardModals](../README.md) / default - -# Function: default() - -> **default**(`props`): `JSX.Element` - -Defined in: [src/components/EventListCard/EventListCardModals.tsx:72](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/EventListCard/EventListCardModals.tsx#L72) - -The `EventListCardModals` component displays the modals related to events, such as viewing, -updating, and deleting events. - -## Parameters - -### props - -`InterfaceEventListCardModalProps` - -The properties for the component. - -## Returns - -`JSX.Element` - -A JSX element containing the event modals. diff --git a/docs/docs/auto-docs/components/EventListCard/EventListCardProps/README.md b/docs/docs/auto-docs/components/EventListCard/EventListCardProps/README.md deleted file mode 100644 index 57a365ea63..0000000000 --- a/docs/docs/auto-docs/components/EventListCard/EventListCardProps/README.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / components/EventListCard/EventListCardProps - -# components/EventListCard/EventListCardProps - -## Variables - -- [props](variables/props.md) diff --git a/docs/docs/auto-docs/components/EventListCard/EventListCardProps/variables/props.md b/docs/docs/auto-docs/components/EventListCard/EventListCardProps/variables/props.md deleted file mode 100644 index 935847c5ad..0000000000 --- a/docs/docs/auto-docs/components/EventListCard/EventListCardProps/variables/props.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [components/EventListCard/EventListCardProps](../README.md) / props - -# Variable: props - -> `const` **props**: [`InterfaceEventListCardProps`](../../EventListCard/interfaces/InterfaceEventListCardProps.md)[] - -Defined in: [src/components/EventListCard/EventListCardProps.ts:4](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/EventListCard/EventListCardProps.ts#L4) diff --git a/docs/docs/auto-docs/components/EventManagement/Dashboard/EventDashboard.mocks/README.md b/docs/docs/auto-docs/components/EventManagement/Dashboard/EventDashboard.mocks/README.md deleted file mode 100644 index 6077bc4772..0000000000 --- a/docs/docs/auto-docs/components/EventManagement/Dashboard/EventDashboard.mocks/README.md +++ /dev/null @@ -1,12 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / components/EventManagement/Dashboard/EventDashboard.mocks - -# components/EventManagement/Dashboard/EventDashboard.mocks - -## Variables - -- [MOCKS\_WITH\_TIME](variables/MOCKS_WITH_TIME.md) -- [MOCKS\_WITHOUT\_TIME](variables/MOCKS_WITHOUT_TIME.md) diff --git a/docs/docs/auto-docs/components/EventManagement/Dashboard/EventDashboard.mocks/variables/MOCKS_WITHOUT_TIME.md b/docs/docs/auto-docs/components/EventManagement/Dashboard/EventDashboard.mocks/variables/MOCKS_WITHOUT_TIME.md deleted file mode 100644 index 46322a32fb..0000000000 --- a/docs/docs/auto-docs/components/EventManagement/Dashboard/EventDashboard.mocks/variables/MOCKS_WITHOUT_TIME.md +++ /dev/null @@ -1,101 +0,0 @@ -[**talawa-admin**](../../../../../README.md) - -*** - -[talawa-admin](../../../../../modules.md) / [components/EventManagement/Dashboard/EventDashboard.mocks](../README.md) / MOCKS\_WITHOUT\_TIME - -# Variable: MOCKS\_WITHOUT\_TIME - -> `const` **MOCKS\_WITHOUT\_TIME**: `object`[] - -Defined in: [src/components/EventManagement/Dashboard/EventDashboard.mocks.ts:34](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/EventManagement/Dashboard/EventDashboard.mocks.ts#L34) - -## Type declaration - -### request - -> **request**: `object` - -#### request.query - -> **query**: `DocumentNode` = `EVENT_DETAILS` - -#### request.variables - -> **variables**: `object` - -#### request.variables.id - -> **id**: `string` = `'event123'` - -### result - -> **result**: `object` - -#### result.data - -> **data**: `object` - -#### result.data.event - -> **event**: `object` - -#### result.data.event.\_id - -> **\_id**: `string` = `'event123'` - -#### result.data.event.allDay - -> **allDay**: `boolean` = `true` - -#### result.data.event.attendees - -> **attendees**: `object`[] - -#### result.data.event.creator - -> **creator**: `object` - -#### result.data.event.creator.\_id - -> **\_id**: `string` = `'creator1'` - -#### result.data.event.creator.firstName - -> **firstName**: `string` = `'John'` - -#### result.data.event.creator.lastName - -> **lastName**: `string` = `'Doe'` - -#### result.data.event.description - -> **description**: `string` = `'Test Description'` - -#### result.data.event.endDate - -> **endDate**: `string` = `'2024-01-02'` - -#### result.data.event.endTime - -> **endTime**: `null` = `null` - -#### result.data.event.location - -> **location**: `string` = `'India'` - -#### result.data.event.recurring - -> **recurring**: `boolean` = `false` - -#### result.data.event.startDate - -> **startDate**: `string` = `'2024-01-01'` - -#### result.data.event.startTime - -> **startTime**: `null` = `null` - -#### result.data.event.title - -> **title**: `string` = `'Test Event'` diff --git a/docs/docs/auto-docs/components/EventManagement/Dashboard/EventDashboard.mocks/variables/MOCKS_WITH_TIME.md b/docs/docs/auto-docs/components/EventManagement/Dashboard/EventDashboard.mocks/variables/MOCKS_WITH_TIME.md deleted file mode 100644 index 9b4c72388f..0000000000 --- a/docs/docs/auto-docs/components/EventManagement/Dashboard/EventDashboard.mocks/variables/MOCKS_WITH_TIME.md +++ /dev/null @@ -1,101 +0,0 @@ -[**talawa-admin**](../../../../../README.md) - -*** - -[talawa-admin](../../../../../modules.md) / [components/EventManagement/Dashboard/EventDashboard.mocks](../README.md) / MOCKS\_WITH\_TIME - -# Variable: MOCKS\_WITH\_TIME - -> `const` **MOCKS\_WITH\_TIME**: `object`[] - -Defined in: [src/components/EventManagement/Dashboard/EventDashboard.mocks.ts:3](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/EventManagement/Dashboard/EventDashboard.mocks.ts#L3) - -## Type declaration - -### request - -> **request**: `object` - -#### request.query - -> **query**: `DocumentNode` = `EVENT_DETAILS` - -#### request.variables - -> **variables**: `object` - -#### request.variables.id - -> **id**: `string` = `'event123'` - -### result - -> **result**: `object` - -#### result.data - -> **data**: `object` - -#### result.data.event - -> **event**: `object` - -#### result.data.event.\_id - -> **\_id**: `string` = `'event123'` - -#### result.data.event.allDay - -> **allDay**: `boolean` = `false` - -#### result.data.event.attendees - -> **attendees**: `object`[] - -#### result.data.event.creator - -> **creator**: `object` - -#### result.data.event.creator.\_id - -> **\_id**: `string` = `'creator1'` - -#### result.data.event.creator.firstName - -> **firstName**: `string` = `'John'` - -#### result.data.event.creator.lastName - -> **lastName**: `string` = `'Doe'` - -#### result.data.event.description - -> **description**: `string` = `'Test Description'` - -#### result.data.event.endDate - -> **endDate**: `string` = `'2024-01-02'` - -#### result.data.event.endTime - -> **endTime**: `string` = `'17:00:00'` - -#### result.data.event.location - -> **location**: `string` = `'India'` - -#### result.data.event.recurring - -> **recurring**: `boolean` = `false` - -#### result.data.event.startDate - -> **startDate**: `string` = `'2024-01-01'` - -#### result.data.event.startTime - -> **startTime**: `string` = `'09:00:00'` - -#### result.data.event.title - -> **title**: `string` = `'Test Event'` diff --git a/docs/docs/auto-docs/components/EventManagement/Dashboard/EventDashboard/README.md b/docs/docs/auto-docs/components/EventManagement/Dashboard/EventDashboard/README.md deleted file mode 100644 index 8a531a757e..0000000000 --- a/docs/docs/auto-docs/components/EventManagement/Dashboard/EventDashboard/README.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / components/EventManagement/Dashboard/EventDashboard - -# components/EventManagement/Dashboard/EventDashboard - -## Functions - -- [default](functions/default.md) diff --git a/docs/docs/auto-docs/components/EventManagement/Dashboard/EventDashboard/functions/default.md b/docs/docs/auto-docs/components/EventManagement/Dashboard/EventDashboard/functions/default.md deleted file mode 100644 index a837383772..0000000000 --- a/docs/docs/auto-docs/components/EventManagement/Dashboard/EventDashboard/functions/default.md +++ /dev/null @@ -1,29 +0,0 @@ -[**talawa-admin**](../../../../../README.md) - -*** - -[talawa-admin](../../../../../modules.md) / [components/EventManagement/Dashboard/EventDashboard](../README.md) / default - -# Function: default() - -> **default**(`props`): `Element` - -Defined in: [src/components/EventManagement/Dashboard/EventDashboard.tsx:20](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/EventManagement/Dashboard/EventDashboard.tsx#L20) - -Component that displays event details. - -## Parameters - -### props - -The props for the EventDashboard component. - -#### eventId - -`string` - -## Returns - -`Element` - -The rendered EventDashboard component. diff --git a/docs/docs/auto-docs/components/EventManagement/EventAgendaItems/EventAgendaItems/README.md b/docs/docs/auto-docs/components/EventManagement/EventAgendaItems/EventAgendaItems/README.md deleted file mode 100644 index 986421c468..0000000000 --- a/docs/docs/auto-docs/components/EventManagement/EventAgendaItems/EventAgendaItems/README.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / components/EventManagement/EventAgendaItems/EventAgendaItems - -# components/EventManagement/EventAgendaItems/EventAgendaItems - -## Functions - -- [default](functions/default.md) diff --git a/docs/docs/auto-docs/components/EventManagement/EventAgendaItems/EventAgendaItems/functions/default.md b/docs/docs/auto-docs/components/EventManagement/EventAgendaItems/EventAgendaItems/functions/default.md deleted file mode 100644 index 49307b2aa5..0000000000 --- a/docs/docs/auto-docs/components/EventManagement/EventAgendaItems/EventAgendaItems/functions/default.md +++ /dev/null @@ -1,29 +0,0 @@ -[**talawa-admin**](../../../../../README.md) - -*** - -[talawa-admin](../../../../../modules.md) / [components/EventManagement/EventAgendaItems/EventAgendaItems](../README.md) / default - -# Function: default() - -> **default**(`props`): `JSX.Element` - -Defined in: [src/components/EventManagement/EventAgendaItems/EventAgendaItems.tsx:33](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/EventManagement/EventAgendaItems/EventAgendaItems.tsx#L33) - -Component to manage and display agenda items for a specific event. - -## Parameters - -### props - -The component props. - -#### eventId - -`string` - -## Returns - -`JSX.Element` - -The rendered component. diff --git a/docs/docs/auto-docs/components/EventManagement/EventAgendaItems/EventAgendaItemsMocks/README.md b/docs/docs/auto-docs/components/EventManagement/EventAgendaItems/EventAgendaItemsMocks/README.md deleted file mode 100644 index 26246e02f3..0000000000 --- a/docs/docs/auto-docs/components/EventManagement/EventAgendaItems/EventAgendaItemsMocks/README.md +++ /dev/null @@ -1,13 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / components/EventManagement/EventAgendaItems/EventAgendaItemsMocks - -# components/EventManagement/EventAgendaItems/EventAgendaItemsMocks - -## Variables - -- [MOCKS](variables/MOCKS.md) -- [MOCKS\_ERROR\_MUTATION](variables/MOCKS_ERROR_MUTATION.md) -- [MOCKS\_ERROR\_QUERY](variables/MOCKS_ERROR_QUERY.md) diff --git a/docs/docs/auto-docs/components/EventManagement/EventAgendaItems/EventAgendaItemsMocks/variables/MOCKS.md b/docs/docs/auto-docs/components/EventManagement/EventAgendaItems/EventAgendaItemsMocks/variables/MOCKS.md deleted file mode 100644 index 702860bdfc..0000000000 --- a/docs/docs/auto-docs/components/EventManagement/EventAgendaItems/EventAgendaItemsMocks/variables/MOCKS.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../../README.md) - -*** - -[talawa-admin](../../../../../modules.md) / [components/EventManagement/EventAgendaItems/EventAgendaItemsMocks](../README.md) / MOCKS - -# Variable: MOCKS - -> `const` **MOCKS**: (\{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `input`: `undefined`; `organizationId`: `string`; `relatedEventId`: `undefined`; \}; \}; `result`: \{ `data`: \{ `agendaItemByEvent`: `undefined`; `agendaItemCategoriesByOrganization`: `object`[]; `createAgendaItem`: `undefined`; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `input`: `undefined`; `organizationId`: `undefined`; `relatedEventId`: `string`; \}; \}; `result`: \{ `data`: \{ `agendaItemByEvent`: `object`[]; `agendaItemCategoriesByOrganization`: `undefined`; `createAgendaItem`: `undefined`; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `input`: \{ `attachments`: `never`[]; `categories`: `string`[]; `description`: `string`; `duration`: `string`; `organizationId`: `string`; `relatedEventId`: `string`; `sequence`: `number`; `title`: `string`; `urls`: `never`[]; \}; `organizationId`: `undefined`; `relatedEventId`: `undefined`; \}; \}; `result`: \{ `data`: \{ `agendaItemByEvent`: `undefined`; `agendaItemCategoriesByOrganization`: `undefined`; `createAgendaItem`: \{ `_id`: `string`; \}; \}; \}; \})[] - -Defined in: [src/components/EventManagement/EventAgendaItems/EventAgendaItemsMocks.ts:6](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/EventManagement/EventAgendaItems/EventAgendaItemsMocks.ts#L6) diff --git a/docs/docs/auto-docs/components/EventManagement/EventAgendaItems/EventAgendaItemsMocks/variables/MOCKS_ERROR_MUTATION.md b/docs/docs/auto-docs/components/EventManagement/EventAgendaItems/EventAgendaItemsMocks/variables/MOCKS_ERROR_MUTATION.md deleted file mode 100644 index 4d6d8496a1..0000000000 --- a/docs/docs/auto-docs/components/EventManagement/EventAgendaItems/EventAgendaItemsMocks/variables/MOCKS_ERROR_MUTATION.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../../README.md) - -*** - -[talawa-admin](../../../../../modules.md) / [components/EventManagement/EventAgendaItems/EventAgendaItemsMocks](../README.md) / MOCKS\_ERROR\_MUTATION - -# Variable: MOCKS\_ERROR\_MUTATION - -> `const` **MOCKS\_ERROR\_MUTATION**: (\{ `error`: `Error`; `request`: \{ `query`: `DocumentNode`; `variables`: \{ `input`: \{ `attachments`: `never`[]; `categories`: `string`[]; `description`: `string`; `duration`: `string`; `organizationId`: `string`; `relatedEventId`: `string`; `sequence`: `number`; `title`: `string`; `urls`: `never`[]; \}; `organizationId`: `undefined`; `relatedEventId`: `undefined`; \}; \}; \} \| \{ `error`: `Error`; `request`: \{ `query`: `DocumentNode`; `variables`: \{ `input`: `undefined`; `organizationId`: `undefined`; `relatedEventId`: `string`; \}; \}; \} \| \{ `error`: `Error`; `request`: \{ `query`: `DocumentNode`; `variables`: \{ `input`: `undefined`; `organizationId`: `string`; `relatedEventId`: `undefined`; \}; \}; \})[] - -Defined in: [src/components/EventManagement/EventAgendaItems/EventAgendaItemsMocks.ts:97](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/EventManagement/EventAgendaItems/EventAgendaItemsMocks.ts#L97) diff --git a/docs/docs/auto-docs/components/EventManagement/EventAgendaItems/EventAgendaItemsMocks/variables/MOCKS_ERROR_QUERY.md b/docs/docs/auto-docs/components/EventManagement/EventAgendaItems/EventAgendaItemsMocks/variables/MOCKS_ERROR_QUERY.md deleted file mode 100644 index 498335dddd..0000000000 --- a/docs/docs/auto-docs/components/EventManagement/EventAgendaItems/EventAgendaItemsMocks/variables/MOCKS_ERROR_QUERY.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../../README.md) - -*** - -[talawa-admin](../../../../../modules.md) / [components/EventManagement/EventAgendaItems/EventAgendaItemsMocks](../README.md) / MOCKS\_ERROR\_QUERY - -# Variable: MOCKS\_ERROR\_QUERY - -> `const` **MOCKS\_ERROR\_QUERY**: `never`[] = `[]` - -Defined in: [src/components/EventManagement/EventAgendaItems/EventAgendaItemsMocks.ts:133](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/EventManagement/EventAgendaItems/EventAgendaItemsMocks.ts#L133) diff --git a/docs/docs/auto-docs/components/EventManagement/EventAttendance/Attendance.mocks/README.md b/docs/docs/auto-docs/components/EventManagement/EventAttendance/Attendance.mocks/README.md deleted file mode 100644 index d618005d2e..0000000000 --- a/docs/docs/auto-docs/components/EventManagement/EventAttendance/Attendance.mocks/README.md +++ /dev/null @@ -1,12 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / components/EventManagement/EventAttendance/Attendance.mocks - -# components/EventManagement/EventAttendance/Attendance.mocks - -## Variables - -- [MOCKS](variables/MOCKS.md) -- [MOCKS\_ERROR](variables/MOCKS_ERROR.md) diff --git a/docs/docs/auto-docs/components/EventManagement/EventAttendance/Attendance.mocks/variables/MOCKS.md b/docs/docs/auto-docs/components/EventManagement/EventAttendance/Attendance.mocks/variables/MOCKS.md deleted file mode 100644 index 7df0ea2b2d..0000000000 --- a/docs/docs/auto-docs/components/EventManagement/EventAttendance/Attendance.mocks/variables/MOCKS.md +++ /dev/null @@ -1,41 +0,0 @@ -[**talawa-admin**](../../../../../README.md) - -*** - -[talawa-admin](../../../../../modules.md) / [components/EventManagement/EventAttendance/Attendance.mocks](../README.md) / MOCKS - -# Variable: MOCKS - -> `const` **MOCKS**: `object`[] - -Defined in: [src/components/EventManagement/EventAttendance/Attendance.mocks.ts:3](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/EventManagement/EventAttendance/Attendance.mocks.ts#L3) - -## Type declaration - -### request - -> **request**: `object` - -#### request.query - -> **query**: `DocumentNode` = `EVENT_ATTENDEES` - -#### request.variables - -> **variables**: `object` = `{}` - -### result - -> **result**: `object` - -#### result.data - -> **data**: `object` - -#### result.data.event - -> **event**: `object` - -#### result.data.event.attendees - -> **attendees**: `object`[] diff --git a/docs/docs/auto-docs/components/EventManagement/EventAttendance/Attendance.mocks/variables/MOCKS_ERROR.md b/docs/docs/auto-docs/components/EventManagement/EventAttendance/Attendance.mocks/variables/MOCKS_ERROR.md deleted file mode 100644 index a91064c91f..0000000000 --- a/docs/docs/auto-docs/components/EventManagement/EventAttendance/Attendance.mocks/variables/MOCKS_ERROR.md +++ /dev/null @@ -1,29 +0,0 @@ -[**talawa-admin**](../../../../../README.md) - -*** - -[talawa-admin](../../../../../modules.md) / [components/EventManagement/EventAttendance/Attendance.mocks](../README.md) / MOCKS\_ERROR - -# Variable: MOCKS\_ERROR - -> `const` **MOCKS\_ERROR**: `object`[] - -Defined in: [src/components/EventManagement/EventAttendance/Attendance.mocks.ts:54](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/EventManagement/EventAttendance/Attendance.mocks.ts#L54) - -## Type declaration - -### error - -> **error**: `Error` - -### request - -> **request**: `object` - -#### request.query - -> **query**: `DocumentNode` = `EVENT_ATTENDEES` - -#### request.variables - -> **variables**: `object` = `{}` diff --git a/docs/docs/auto-docs/components/EventManagement/EventAttendance/AttendedEventList/README.md b/docs/docs/auto-docs/components/EventManagement/EventAttendance/AttendedEventList/README.md deleted file mode 100644 index 9b16ced2f2..0000000000 --- a/docs/docs/auto-docs/components/EventManagement/EventAttendance/AttendedEventList/README.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / components/EventManagement/EventAttendance/AttendedEventList - -# components/EventManagement/EventAttendance/AttendedEventList - -## Functions - -- [default](functions/default.md) diff --git a/docs/docs/auto-docs/components/EventManagement/EventAttendance/AttendedEventList/functions/default.md b/docs/docs/auto-docs/components/EventManagement/EventAttendance/AttendedEventList/functions/default.md deleted file mode 100644 index 236ecd54c5..0000000000 --- a/docs/docs/auto-docs/components/EventManagement/EventAttendance/AttendedEventList/functions/default.md +++ /dev/null @@ -1,35 +0,0 @@ -[**talawa-admin**](../../../../../README.md) - -*** - -[talawa-admin](../../../../../modules.md) / [components/EventManagement/EventAttendance/AttendedEventList](../README.md) / default - -# Function: default() - -> **default**(`props`, `deprecatedLegacyContext`?): `ReactNode` - -Defined in: [src/components/EventManagement/EventAttendance/AttendedEventList.tsx:16](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/EventManagement/EventAttendance/AttendedEventList.tsx#L16) - -Component to display a list of events attended by a member - -## Parameters - -### props - -`InterfaceEventsAttended` - -### deprecatedLegacyContext? - -`any` - -**Deprecated** - -**See** - -[React Docs](https://legacy.reactjs.org/docs/legacy-context.html#referencing-context-in-lifecycle-methods) - -## Returns - -`ReactNode` - -A table row containing event details with a link to the event diff --git a/docs/docs/auto-docs/components/EventManagement/EventAttendance/EventAttendance/README.md b/docs/docs/auto-docs/components/EventManagement/EventAttendance/EventAttendance/README.md deleted file mode 100644 index 5cc3bcb609..0000000000 --- a/docs/docs/auto-docs/components/EventManagement/EventAttendance/EventAttendance/README.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / components/EventManagement/EventAttendance/EventAttendance - -# components/EventManagement/EventAttendance/EventAttendance - -## Functions - -- [default](functions/default.md) diff --git a/docs/docs/auto-docs/components/EventManagement/EventAttendance/EventAttendance/functions/default.md b/docs/docs/auto-docs/components/EventManagement/EventAttendance/EventAttendance/functions/default.md deleted file mode 100644 index 2462865559..0000000000 --- a/docs/docs/auto-docs/components/EventManagement/EventAttendance/EventAttendance/functions/default.md +++ /dev/null @@ -1,20 +0,0 @@ -[**talawa-admin**](../../../../../README.md) - -*** - -[talawa-admin](../../../../../modules.md) / [components/EventManagement/EventAttendance/EventAttendance](../README.md) / default - -# Function: default() - -> **default**(): `JSX.Element` - -Defined in: [src/components/EventManagement/EventAttendance/EventAttendance.tsx:34](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/EventManagement/EventAttendance/EventAttendance.tsx#L34) - -Component to manage and display event attendance information -Includes filtering and sorting functionality for attendees - -## Returns - -`JSX.Element` - -JSX element containing the event attendance interface diff --git a/docs/docs/auto-docs/components/EventManagement/EventAttendance/EventStatistics/README.md b/docs/docs/auto-docs/components/EventManagement/EventAttendance/EventStatistics/README.md deleted file mode 100644 index 28c111d1ec..0000000000 --- a/docs/docs/auto-docs/components/EventManagement/EventAttendance/EventStatistics/README.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / components/EventManagement/EventAttendance/EventStatistics - -# components/EventManagement/EventAttendance/EventStatistics - -## Functions - -- [AttendanceStatisticsModal](functions/AttendanceStatisticsModal.md) diff --git a/docs/docs/auto-docs/components/EventManagement/EventAttendance/EventStatistics/functions/AttendanceStatisticsModal.md b/docs/docs/auto-docs/components/EventManagement/EventAttendance/EventStatistics/functions/AttendanceStatisticsModal.md deleted file mode 100644 index a5c4c0684f..0000000000 --- a/docs/docs/auto-docs/components/EventManagement/EventAttendance/EventStatistics/functions/AttendanceStatisticsModal.md +++ /dev/null @@ -1,36 +0,0 @@ -[**talawa-admin**](../../../../../README.md) - -*** - -[talawa-admin](../../../../../modules.md) / [components/EventManagement/EventAttendance/EventStatistics](../README.md) / AttendanceStatisticsModal - -# Function: AttendanceStatisticsModal() - -> **AttendanceStatisticsModal**(`props`, `deprecatedLegacyContext`?): `ReactNode` - -Defined in: [src/components/EventManagement/EventAttendance/EventStatistics.tsx:50](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/EventManagement/EventAttendance/EventStatistics.tsx#L50) - -Component to display statistical information about event attendance -Shows metrics like total attendees, filtering options, and attendance trends - -## Parameters - -### props - -[`InterfaceAttendanceStatisticsModalProps`](../../InterfaceEvents/interfaces/InterfaceAttendanceStatisticsModalProps.md) - -### deprecatedLegacyContext? - -`any` - -**Deprecated** - -**See** - -[React Docs](https://legacy.reactjs.org/docs/legacy-context.html#referencing-context-in-lifecycle-methods) - -## Returns - -`ReactNode` - -JSX element with event statistics dashboard diff --git a/docs/docs/auto-docs/components/EventManagement/EventAttendance/InterfaceEvents/README.md b/docs/docs/auto-docs/components/EventManagement/EventAttendance/InterfaceEvents/README.md deleted file mode 100644 index aeb9b6a842..0000000000 --- a/docs/docs/auto-docs/components/EventManagement/EventAttendance/InterfaceEvents/README.md +++ /dev/null @@ -1,14 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / components/EventManagement/EventAttendance/InterfaceEvents - -# components/EventManagement/EventAttendance/InterfaceEvents - -## Interfaces - -- [InterfaceAttendanceStatisticsModalProps](interfaces/InterfaceAttendanceStatisticsModalProps.md) -- [InterfaceEvent](interfaces/InterfaceEvent.md) -- [InterfaceMember](interfaces/InterfaceMember.md) -- [InterfaceRecurringEvent](interfaces/InterfaceRecurringEvent.md) diff --git a/docs/docs/auto-docs/components/EventManagement/EventAttendance/InterfaceEvents/interfaces/InterfaceAttendanceStatisticsModalProps.md b/docs/docs/auto-docs/components/EventManagement/EventAttendance/InterfaceEvents/interfaces/InterfaceAttendanceStatisticsModalProps.md deleted file mode 100644 index 4da68d9034..0000000000 --- a/docs/docs/auto-docs/components/EventManagement/EventAttendance/InterfaceEvents/interfaces/InterfaceAttendanceStatisticsModalProps.md +++ /dev/null @@ -1,75 +0,0 @@ -[**talawa-admin**](../../../../../README.md) - -*** - -[talawa-admin](../../../../../modules.md) / [components/EventManagement/EventAttendance/InterfaceEvents](../README.md) / InterfaceAttendanceStatisticsModalProps - -# Interface: InterfaceAttendanceStatisticsModalProps - -Defined in: [src/components/EventManagement/EventAttendance/InterfaceEvents.ts:1](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/EventManagement/EventAttendance/InterfaceEvents.ts#L1) - -## Properties - -### handleClose() - -> **handleClose**: () => `void` - -Defined in: [src/components/EventManagement/EventAttendance/InterfaceEvents.ts:3](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/EventManagement/EventAttendance/InterfaceEvents.ts#L3) - -#### Returns - -`void` - -*** - -### memberData - -> **memberData**: [`InterfaceMember`](InterfaceMember.md)[] - -Defined in: [src/components/EventManagement/EventAttendance/InterfaceEvents.ts:9](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/EventManagement/EventAttendance/InterfaceEvents.ts#L9) - -*** - -### show - -> **show**: `boolean` - -Defined in: [src/components/EventManagement/EventAttendance/InterfaceEvents.ts:2](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/EventManagement/EventAttendance/InterfaceEvents.ts#L2) - -*** - -### statistics - -> **statistics**: `object` - -Defined in: [src/components/EventManagement/EventAttendance/InterfaceEvents.ts:4](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/EventManagement/EventAttendance/InterfaceEvents.ts#L4) - -#### attendanceRate - -> **attendanceRate**: `number` - -#### membersAttended - -> **membersAttended**: `number` - -#### totalMembers - -> **totalMembers**: `number` - -*** - -### t() - -> **t**: (`key`) => `string` - -Defined in: [src/components/EventManagement/EventAttendance/InterfaceEvents.ts:10](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/EventManagement/EventAttendance/InterfaceEvents.ts#L10) - -#### Parameters - -##### key - -`string` - -#### Returns - -`string` diff --git a/docs/docs/auto-docs/components/EventManagement/EventAttendance/InterfaceEvents/interfaces/InterfaceEvent.md b/docs/docs/auto-docs/components/EventManagement/EventAttendance/InterfaceEvents/interfaces/InterfaceEvent.md deleted file mode 100644 index 9f1b86f8aa..0000000000 --- a/docs/docs/auto-docs/components/EventManagement/EventAttendance/InterfaceEvents/interfaces/InterfaceEvent.md +++ /dev/null @@ -1,189 +0,0 @@ -[**talawa-admin**](../../../../../README.md) - -*** - -[talawa-admin](../../../../../modules.md) / [components/EventManagement/EventAttendance/InterfaceEvents](../README.md) / InterfaceEvent - -# Interface: InterfaceEvent - -Defined in: [src/components/EventManagement/EventAttendance/InterfaceEvents.ts:35](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/EventManagement/EventAttendance/InterfaceEvents.ts#L35) - -## Properties - -### \_\_typename - -> **\_\_typename**: `string` - -Defined in: [src/components/EventManagement/EventAttendance/InterfaceEvents.ts:66](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/EventManagement/EventAttendance/InterfaceEvents.ts#L66) - -*** - -### \_id - -> **\_id**: `string` - -Defined in: [src/components/EventManagement/EventAttendance/InterfaceEvents.ts:36](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/EventManagement/EventAttendance/InterfaceEvents.ts#L36) - -*** - -### allDay - -> **allDay**: `boolean` - -Defined in: [src/components/EventManagement/EventAttendance/InterfaceEvents.ts:44](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/EventManagement/EventAttendance/InterfaceEvents.ts#L44) - -*** - -### attendees - -> **attendees**: `object`[] - -Defined in: [src/components/EventManagement/EventAttendance/InterfaceEvents.ts:58](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/EventManagement/EventAttendance/InterfaceEvents.ts#L58) - -#### \_id - -> **\_id**: `string` - -#### birthDate - -> **birthDate**: `string` - -#### email - -> **email**: `string` - -#### firstName - -> **firstName**: `string` - -#### gender - -> **gender**: `string` - -#### lastName - -> **lastName**: `string` - -*** - -### description - -> **description**: `string` - -Defined in: [src/components/EventManagement/EventAttendance/InterfaceEvents.ts:38](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/EventManagement/EventAttendance/InterfaceEvents.ts#L38) - -*** - -### endDate - -> **endDate**: `string` - -Defined in: [src/components/EventManagement/EventAttendance/InterfaceEvents.ts:40](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/EventManagement/EventAttendance/InterfaceEvents.ts#L40) - -*** - -### endTime - -> **endTime**: `string` - -Defined in: [src/components/EventManagement/EventAttendance/InterfaceEvents.ts:43](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/EventManagement/EventAttendance/InterfaceEvents.ts#L43) - -*** - -### isPublic - -> **isPublic**: `boolean` - -Defined in: [src/components/EventManagement/EventAttendance/InterfaceEvents.ts:56](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/EventManagement/EventAttendance/InterfaceEvents.ts#L56) - -*** - -### isRecurringEventException - -> **isRecurringEventException**: `boolean` - -Defined in: [src/components/EventManagement/EventAttendance/InterfaceEvents.ts:55](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/EventManagement/EventAttendance/InterfaceEvents.ts#L55) - -*** - -### isRegisterable - -> **isRegisterable**: `boolean` - -Defined in: [src/components/EventManagement/EventAttendance/InterfaceEvents.ts:57](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/EventManagement/EventAttendance/InterfaceEvents.ts#L57) - -*** - -### location - -> **location**: `string` - -Defined in: [src/components/EventManagement/EventAttendance/InterfaceEvents.ts:41](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/EventManagement/EventAttendance/InterfaceEvents.ts#L41) - -*** - -### recurrenceRule - -> **recurrenceRule**: `object` - -Defined in: [src/components/EventManagement/EventAttendance/InterfaceEvents.ts:46](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/EventManagement/EventAttendance/InterfaceEvents.ts#L46) - -#### count? - -> `optional` **count**: `number` - -#### frequency - -> **frequency**: `string` - -#### interval - -> **interval**: `number` - -#### recurrenceEndDate? - -> `optional` **recurrenceEndDate**: `null` \| `string` - -#### recurrenceStartDate - -> **recurrenceStartDate**: `string` - -#### weekDayOccurenceInMonth? - -> `optional` **weekDayOccurenceInMonth**: `number` - -#### weekDays - -> **weekDays**: `string`[] - -*** - -### recurring - -> **recurring**: `boolean` - -Defined in: [src/components/EventManagement/EventAttendance/InterfaceEvents.ts:45](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/EventManagement/EventAttendance/InterfaceEvents.ts#L45) - -*** - -### startDate - -> **startDate**: `string` - -Defined in: [src/components/EventManagement/EventAttendance/InterfaceEvents.ts:39](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/EventManagement/EventAttendance/InterfaceEvents.ts#L39) - -*** - -### startTime - -> **startTime**: `string` - -Defined in: [src/components/EventManagement/EventAttendance/InterfaceEvents.ts:42](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/EventManagement/EventAttendance/InterfaceEvents.ts#L42) - -*** - -### title - -> **title**: `string` - -Defined in: [src/components/EventManagement/EventAttendance/InterfaceEvents.ts:37](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/EventManagement/EventAttendance/InterfaceEvents.ts#L37) diff --git a/docs/docs/auto-docs/components/EventManagement/EventAttendance/InterfaceEvents/interfaces/InterfaceMember.md b/docs/docs/auto-docs/components/EventManagement/EventAttendance/InterfaceEvents/interfaces/InterfaceMember.md deleted file mode 100644 index 4dcec3a62f..0000000000 --- a/docs/docs/auto-docs/components/EventManagement/EventAttendance/InterfaceEvents/interfaces/InterfaceMember.md +++ /dev/null @@ -1,97 +0,0 @@ -[**talawa-admin**](../../../../../README.md) - -*** - -[talawa-admin](../../../../../modules.md) / [components/EventManagement/EventAttendance/InterfaceEvents](../README.md) / InterfaceMember - -# Interface: InterfaceMember - -Defined in: [src/components/EventManagement/EventAttendance/InterfaceEvents.ts:13](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/EventManagement/EventAttendance/InterfaceEvents.ts#L13) - -## Properties - -### \_\_typename - -> **\_\_typename**: `string` - -Defined in: [src/components/EventManagement/EventAttendance/InterfaceEvents.ts:23](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/EventManagement/EventAttendance/InterfaceEvents.ts#L23) - -*** - -### \_id - -> **\_id**: `string` - -Defined in: [src/components/EventManagement/EventAttendance/InterfaceEvents.ts:24](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/EventManagement/EventAttendance/InterfaceEvents.ts#L24) - -*** - -### birthDate - -> **birthDate**: `Date` - -Defined in: [src/components/EventManagement/EventAttendance/InterfaceEvents.ts:22](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/EventManagement/EventAttendance/InterfaceEvents.ts#L22) - -*** - -### createdAt - -> **createdAt**: `string` - -Defined in: [src/components/EventManagement/EventAttendance/InterfaceEvents.ts:14](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/EventManagement/EventAttendance/InterfaceEvents.ts#L14) - -*** - -### email - -> **email**: `` `${string}@${string}.${string}` `` - -Defined in: [src/components/EventManagement/EventAttendance/InterfaceEvents.ts:17](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/EventManagement/EventAttendance/InterfaceEvents.ts#L17) - -*** - -### eventsAttended? - -> `optional` **eventsAttended**: `object`[] - -Defined in: [src/components/EventManagement/EventAttendance/InterfaceEvents.ts:19](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/EventManagement/EventAttendance/InterfaceEvents.ts#L19) - -#### \_id - -> **\_id**: `string` - -*** - -### firstName - -> **firstName**: `string` - -Defined in: [src/components/EventManagement/EventAttendance/InterfaceEvents.ts:15](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/EventManagement/EventAttendance/InterfaceEvents.ts#L15) - -*** - -### gender - -> **gender**: `string` - -Defined in: [src/components/EventManagement/EventAttendance/InterfaceEvents.ts:18](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/EventManagement/EventAttendance/InterfaceEvents.ts#L18) - -*** - -### lastName - -> **lastName**: `string` - -Defined in: [src/components/EventManagement/EventAttendance/InterfaceEvents.ts:16](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/EventManagement/EventAttendance/InterfaceEvents.ts#L16) - -*** - -### tagsAssignedWith - -> **tagsAssignedWith**: `object` - -Defined in: [src/components/EventManagement/EventAttendance/InterfaceEvents.ts:25](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/EventManagement/EventAttendance/InterfaceEvents.ts#L25) - -#### edges - -> **edges**: `object`[] diff --git a/docs/docs/auto-docs/components/EventManagement/EventAttendance/InterfaceEvents/interfaces/InterfaceRecurringEvent.md b/docs/docs/auto-docs/components/EventManagement/EventAttendance/InterfaceEvents/interfaces/InterfaceRecurringEvent.md deleted file mode 100644 index 035fa85b0d..0000000000 --- a/docs/docs/auto-docs/components/EventManagement/EventAttendance/InterfaceEvents/interfaces/InterfaceRecurringEvent.md +++ /dev/null @@ -1,89 +0,0 @@ -[**talawa-admin**](../../../../../README.md) - -*** - -[talawa-admin](../../../../../modules.md) / [components/EventManagement/EventAttendance/InterfaceEvents](../README.md) / InterfaceRecurringEvent - -# Interface: InterfaceRecurringEvent - -Defined in: [src/components/EventManagement/EventAttendance/InterfaceEvents.ts:69](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/EventManagement/EventAttendance/InterfaceEvents.ts#L69) - -## Properties - -### \_id - -> **\_id**: `string` - -Defined in: [src/components/EventManagement/EventAttendance/InterfaceEvents.ts:70](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/EventManagement/EventAttendance/InterfaceEvents.ts#L70) - -*** - -### attendees - -> **attendees**: `object`[] - -Defined in: [src/components/EventManagement/EventAttendance/InterfaceEvents.ts:76](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/EventManagement/EventAttendance/InterfaceEvents.ts#L76) - -#### \_id - -> **\_id**: `string` - -#### gender - -> **gender**: `"MALE"` \| `"FEMALE"` \| `"OTHER"` \| `"PREFER_NOT_TO_SAY"` - -*** - -### endDate - -> **endDate**: `string` - -Defined in: [src/components/EventManagement/EventAttendance/InterfaceEvents.ts:73](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/EventManagement/EventAttendance/InterfaceEvents.ts#L73) - -*** - -### frequency - -> **frequency**: `string` - -Defined in: [src/components/EventManagement/EventAttendance/InterfaceEvents.ts:74](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/EventManagement/EventAttendance/InterfaceEvents.ts#L74) - -*** - -### interval - -> **interval**: `number` - -Defined in: [src/components/EventManagement/EventAttendance/InterfaceEvents.ts:75](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/EventManagement/EventAttendance/InterfaceEvents.ts#L75) - -*** - -### isPublic - -> **isPublic**: `boolean` - -Defined in: [src/components/EventManagement/EventAttendance/InterfaceEvents.ts:80](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/EventManagement/EventAttendance/InterfaceEvents.ts#L80) - -*** - -### isRegisterable - -> **isRegisterable**: `boolean` - -Defined in: [src/components/EventManagement/EventAttendance/InterfaceEvents.ts:81](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/EventManagement/EventAttendance/InterfaceEvents.ts#L81) - -*** - -### startDate - -> **startDate**: `string` - -Defined in: [src/components/EventManagement/EventAttendance/InterfaceEvents.ts:72](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/EventManagement/EventAttendance/InterfaceEvents.ts#L72) - -*** - -### title - -> **title**: `string` - -Defined in: [src/components/EventManagement/EventAttendance/InterfaceEvents.ts:71](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/EventManagement/EventAttendance/InterfaceEvents.ts#L71) diff --git a/docs/docs/auto-docs/components/EventManagement/EventRegistrant/EventRegistrants/README.md b/docs/docs/auto-docs/components/EventManagement/EventRegistrant/EventRegistrants/README.md deleted file mode 100644 index 5cea6aa16c..0000000000 --- a/docs/docs/auto-docs/components/EventManagement/EventRegistrant/EventRegistrants/README.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / components/EventManagement/EventRegistrant/EventRegistrants - -# components/EventManagement/EventRegistrant/EventRegistrants - -## Functions - -- [default](functions/default.md) diff --git a/docs/docs/auto-docs/components/EventManagement/EventRegistrant/EventRegistrants/functions/default.md b/docs/docs/auto-docs/components/EventManagement/EventRegistrant/EventRegistrants/functions/default.md deleted file mode 100644 index f1ea3f9ae8..0000000000 --- a/docs/docs/auto-docs/components/EventManagement/EventRegistrant/EventRegistrants/functions/default.md +++ /dev/null @@ -1,20 +0,0 @@ -[**talawa-admin**](../../../../../README.md) - -*** - -[talawa-admin](../../../../../modules.md) / [components/EventManagement/EventRegistrant/EventRegistrants](../README.md) / default - -# Function: default() - -> **default**(): `JSX.Element` - -Defined in: [src/components/EventManagement/EventRegistrant/EventRegistrants.tsx:34](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/EventManagement/EventRegistrant/EventRegistrants.tsx#L34) - -Component to manage and display event registrant information -Includes adding new registrants and check-in functionality for registrants - -## Returns - -`JSX.Element` - -JSX element containing the event attendance interface diff --git a/docs/docs/auto-docs/components/EventManagement/EventRegistrant/Registrations.mocks/README.md b/docs/docs/auto-docs/components/EventManagement/EventRegistrant/Registrations.mocks/README.md deleted file mode 100644 index 3b775ce0f9..0000000000 --- a/docs/docs/auto-docs/components/EventManagement/EventRegistrant/Registrations.mocks/README.md +++ /dev/null @@ -1,12 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / components/EventManagement/EventRegistrant/Registrations.mocks - -# components/EventManagement/EventRegistrant/Registrations.mocks - -## Variables - -- [REGISTRANTS\_MOCKS](variables/REGISTRANTS_MOCKS.md) -- [REGISTRANTS\_MOCKS\_ERROR](variables/REGISTRANTS_MOCKS_ERROR.md) diff --git a/docs/docs/auto-docs/components/EventManagement/EventRegistrant/Registrations.mocks/variables/REGISTRANTS_MOCKS.md b/docs/docs/auto-docs/components/EventManagement/EventRegistrant/Registrations.mocks/variables/REGISTRANTS_MOCKS.md deleted file mode 100644 index a454e88464..0000000000 --- a/docs/docs/auto-docs/components/EventManagement/EventRegistrant/Registrations.mocks/variables/REGISTRANTS_MOCKS.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../../README.md) - -*** - -[talawa-admin](../../../../../modules.md) / [components/EventManagement/EventRegistrant/Registrations.mocks](../README.md) / REGISTRANTS\_MOCKS - -# Variable: REGISTRANTS\_MOCKS - -> `const` **REGISTRANTS\_MOCKS**: (\{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `eventId`: `string`; `id`: `undefined`; \}; \}; `result`: \{ `data`: \{ `event`: `undefined`; `getEventAttendeesByEventId`: `object`[]; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `eventId`: `undefined`; `id`: `string`; \}; \}; `result`: \{ `data`: \{ `event`: \{ `attendees`: `object`[]; \}; `getEventAttendeesByEventId`: `undefined`; \}; \}; \})[] - -Defined in: [src/components/EventManagement/EventRegistrant/Registrations.mocks.ts:3](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/EventManagement/EventRegistrant/Registrations.mocks.ts#L3) diff --git a/docs/docs/auto-docs/components/EventManagement/EventRegistrant/Registrations.mocks/variables/REGISTRANTS_MOCKS_ERROR.md b/docs/docs/auto-docs/components/EventManagement/EventRegistrant/Registrations.mocks/variables/REGISTRANTS_MOCKS_ERROR.md deleted file mode 100644 index 6742d796fa..0000000000 --- a/docs/docs/auto-docs/components/EventManagement/EventRegistrant/Registrations.mocks/variables/REGISTRANTS_MOCKS_ERROR.md +++ /dev/null @@ -1,33 +0,0 @@ -[**talawa-admin**](../../../../../README.md) - -*** - -[talawa-admin](../../../../../modules.md) / [components/EventManagement/EventRegistrant/Registrations.mocks](../README.md) / REGISTRANTS\_MOCKS\_ERROR - -# Variable: REGISTRANTS\_MOCKS\_ERROR - -> `const` **REGISTRANTS\_MOCKS\_ERROR**: `object`[] - -Defined in: [src/components/EventManagement/EventRegistrant/Registrations.mocks.ts:58](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/EventManagement/EventRegistrant/Registrations.mocks.ts#L58) - -## Type declaration - -### error - -> **error**: `Error` - -### request - -> **request**: `object` - -#### request.query - -> **query**: `DocumentNode` = `EVENT_REGISTRANTS` - -#### request.variables - -> **variables**: `object` - -#### request.variables.eventId - -> **eventId**: `string` = `'event123'` diff --git a/docs/docs/auto-docs/components/EventRegistrantsModal/AddOnSpotAttendee/README.md b/docs/docs/auto-docs/components/EventRegistrantsModal/AddOnSpotAttendee/README.md deleted file mode 100644 index 0d20c6918e..0000000000 --- a/docs/docs/auto-docs/components/EventRegistrantsModal/AddOnSpotAttendee/README.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / components/EventRegistrantsModal/AddOnSpotAttendee - -# components/EventRegistrantsModal/AddOnSpotAttendee - -## Functions - -- [default](functions/default.md) diff --git a/docs/docs/auto-docs/components/EventRegistrantsModal/AddOnSpotAttendee/functions/default.md b/docs/docs/auto-docs/components/EventRegistrantsModal/AddOnSpotAttendee/functions/default.md deleted file mode 100644 index e819d24532..0000000000 --- a/docs/docs/auto-docs/components/EventRegistrantsModal/AddOnSpotAttendee/functions/default.md +++ /dev/null @@ -1,35 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [components/EventRegistrantsModal/AddOnSpotAttendee](../README.md) / default - -# Function: default() - -> **default**(`props`, `deprecatedLegacyContext`?): `ReactNode` - -Defined in: [src/components/EventRegistrantsModal/AddOnSpotAttendee.tsx:21](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/EventRegistrantsModal/AddOnSpotAttendee.tsx#L21) - -Modal component for adding on-spot attendees to an event - -## Parameters - -### props - -[`InterfaceAddOnSpotAttendeeProps`](../../../../utils/interfaces/interfaces/InterfaceAddOnSpotAttendeeProps.md) - -### deprecatedLegacyContext? - -`any` - -**Deprecated** - -**See** - -[React Docs](https://legacy.reactjs.org/docs/legacy-context.html#referencing-context-in-lifecycle-methods) - -## Returns - -`ReactNode` - -Modal component with form for adding new attendee diff --git a/docs/docs/auto-docs/components/EventRegistrantsModal/EventRegistrantsModal/README.md b/docs/docs/auto-docs/components/EventRegistrantsModal/EventRegistrantsModal/README.md deleted file mode 100644 index f4c911304e..0000000000 --- a/docs/docs/auto-docs/components/EventRegistrantsModal/EventRegistrantsModal/README.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / components/EventRegistrantsModal/EventRegistrantsModal - -# components/EventRegistrantsModal/EventRegistrantsModal - -## Functions - -- [EventRegistrantsModal](functions/EventRegistrantsModal.md) diff --git a/docs/docs/auto-docs/components/EventRegistrantsModal/EventRegistrantsModal/functions/EventRegistrantsModal.md b/docs/docs/auto-docs/components/EventRegistrantsModal/EventRegistrantsModal/functions/EventRegistrantsModal.md deleted file mode 100644 index df455a00c6..0000000000 --- a/docs/docs/auto-docs/components/EventRegistrantsModal/EventRegistrantsModal/functions/EventRegistrantsModal.md +++ /dev/null @@ -1,26 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [components/EventRegistrantsModal/EventRegistrantsModal](../README.md) / EventRegistrantsModal - -# Function: EventRegistrantsModal() - -> **EventRegistrantsModal**(`props`): `Element` - -Defined in: [src/components/EventRegistrantsModal/EventRegistrantsModal.tsx:44](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/EventRegistrantsModal/EventRegistrantsModal.tsx#L44) - -Modal component for managing event registrants. -Allows adding and removing attendees from an event. - -## Parameters - -### props - -`ModalPropType` - -## Returns - -`Element` - -JSX element representing the modal. diff --git a/docs/docs/auto-docs/components/EventRegistrantsModal/EventRegistrantsWrapper/README.md b/docs/docs/auto-docs/components/EventRegistrantsModal/EventRegistrantsWrapper/README.md deleted file mode 100644 index 198804f459..0000000000 --- a/docs/docs/auto-docs/components/EventRegistrantsModal/EventRegistrantsWrapper/README.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / components/EventRegistrantsModal/EventRegistrantsWrapper - -# components/EventRegistrantsModal/EventRegistrantsWrapper - -## Functions - -- [EventRegistrantsWrapper](functions/EventRegistrantsWrapper.md) diff --git a/docs/docs/auto-docs/components/EventRegistrantsModal/EventRegistrantsWrapper/functions/EventRegistrantsWrapper.md b/docs/docs/auto-docs/components/EventRegistrantsModal/EventRegistrantsWrapper/functions/EventRegistrantsWrapper.md deleted file mode 100644 index 0bd2a280f1..0000000000 --- a/docs/docs/auto-docs/components/EventRegistrantsModal/EventRegistrantsWrapper/functions/EventRegistrantsWrapper.md +++ /dev/null @@ -1,25 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [components/EventRegistrantsModal/EventRegistrantsWrapper](../README.md) / EventRegistrantsWrapper - -# Function: EventRegistrantsWrapper() - -> **EventRegistrantsWrapper**(`__namedParameters`): `Element` - -Defined in: [src/components/EventRegistrantsModal/EventRegistrantsWrapper.tsx:20](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/EventRegistrantsModal/EventRegistrantsWrapper.tsx#L20) - -Wrapper component that displays a button to show the event registrants modal. - -## Parameters - -### \_\_namedParameters - -`PropType` - -## Returns - -`Element` - -JSX element representing the wrapper with a button to show the modal. diff --git a/docs/docs/auto-docs/components/EventStats/EventStats/README.md b/docs/docs/auto-docs/components/EventStats/EventStats/README.md deleted file mode 100644 index 37b49f4e4e..0000000000 --- a/docs/docs/auto-docs/components/EventStats/EventStats/README.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / components/EventStats/EventStats - -# components/EventStats/EventStats - -## Functions - -- [EventStats](functions/EventStats.md) diff --git a/docs/docs/auto-docs/components/EventStats/EventStats/functions/EventStats.md b/docs/docs/auto-docs/components/EventStats/EventStats/functions/EventStats.md deleted file mode 100644 index 378924d9d7..0000000000 --- a/docs/docs/auto-docs/components/EventStats/EventStats/functions/EventStats.md +++ /dev/null @@ -1,26 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [components/EventStats/EventStats](../README.md) / EventStats - -# Function: EventStats() - -> **EventStats**(`__namedParameters`): `Element` - -Defined in: [src/components/EventStats/EventStats.tsx:27](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/EventStats/EventStats.tsx#L27) - -Component that displays event statistics in a modal. -Shows feedback, reviews, and average rating for the event. - -## Parameters - -### \_\_namedParameters - -`ModalPropType` - -## Returns - -`Element` - -JSX element representing the event statistics modal. diff --git a/docs/docs/auto-docs/components/EventStats/EventStatsWrapper/README.md b/docs/docs/auto-docs/components/EventStats/EventStatsWrapper/README.md deleted file mode 100644 index 5e00a71e19..0000000000 --- a/docs/docs/auto-docs/components/EventStats/EventStatsWrapper/README.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / components/EventStats/EventStatsWrapper - -# components/EventStats/EventStatsWrapper - -## Functions - -- [EventStatsWrapper](functions/EventStatsWrapper.md) diff --git a/docs/docs/auto-docs/components/EventStats/EventStatsWrapper/functions/EventStatsWrapper.md b/docs/docs/auto-docs/components/EventStats/EventStatsWrapper/functions/EventStatsWrapper.md deleted file mode 100644 index 6b16d5e7e5..0000000000 --- a/docs/docs/auto-docs/components/EventStats/EventStatsWrapper/functions/EventStatsWrapper.md +++ /dev/null @@ -1,27 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [components/EventStats/EventStatsWrapper](../README.md) / EventStatsWrapper - -# Function: EventStatsWrapper() - -> **EventStatsWrapper**(`eventId`): `Element` - -Defined in: [src/components/EventStats/EventStatsWrapper.tsx:18](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/EventStats/EventStatsWrapper.tsx#L18) - -Wrapper component that displays a button to show event statistics. - -## Parameters - -### eventId - -`PropType` - -The ID of the event. - -## Returns - -`Element` - -JSX element representing the wrapper with a button to view event statistics. diff --git a/docs/docs/auto-docs/components/EventStats/Statistics/AverageRating/README.md b/docs/docs/auto-docs/components/EventStats/Statistics/AverageRating/README.md deleted file mode 100644 index 8f37a3f2fb..0000000000 --- a/docs/docs/auto-docs/components/EventStats/Statistics/AverageRating/README.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / components/EventStats/Statistics/AverageRating - -# components/EventStats/Statistics/AverageRating - -## Functions - -- [AverageRating](functions/AverageRating.md) diff --git a/docs/docs/auto-docs/components/EventStats/Statistics/AverageRating/functions/AverageRating.md b/docs/docs/auto-docs/components/EventStats/Statistics/AverageRating/functions/AverageRating.md deleted file mode 100644 index a82b5df2a5..0000000000 --- a/docs/docs/auto-docs/components/EventStats/Statistics/AverageRating/functions/AverageRating.md +++ /dev/null @@ -1,28 +0,0 @@ -[**talawa-admin**](../../../../../README.md) - -*** - -[talawa-admin](../../../../../modules.md) / [components/EventStats/Statistics/AverageRating](../README.md) / AverageRating - -# Function: AverageRating() - -> **AverageRating**(`data`): `Element` - -Defined in: [src/components/EventStats/Statistics/AverageRating.tsx:33](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/EventStats/Statistics/AverageRating.tsx#L33) - -Component that displays the average rating for an event. -Shows a rating value and a star rating icon. - -## Parameters - -### data - -`ModalPropType` - -Data containing the average feedback score to be displayed. - -## Returns - -`Element` - -JSX element representing the average rating card with a star rating. diff --git a/docs/docs/auto-docs/components/EventStats/Statistics/Feedback/README.md b/docs/docs/auto-docs/components/EventStats/Statistics/Feedback/README.md deleted file mode 100644 index b319a633ca..0000000000 --- a/docs/docs/auto-docs/components/EventStats/Statistics/Feedback/README.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / components/EventStats/Statistics/Feedback - -# components/EventStats/Statistics/Feedback - -## Functions - -- [FeedbackStats](functions/FeedbackStats.md) diff --git a/docs/docs/auto-docs/components/EventStats/Statistics/Feedback/functions/FeedbackStats.md b/docs/docs/auto-docs/components/EventStats/Statistics/Feedback/functions/FeedbackStats.md deleted file mode 100644 index 4e3fce0e64..0000000000 --- a/docs/docs/auto-docs/components/EventStats/Statistics/Feedback/functions/FeedbackStats.md +++ /dev/null @@ -1,28 +0,0 @@ -[**talawa-admin**](../../../../../README.md) - -*** - -[talawa-admin](../../../../../modules.md) / [components/EventStats/Statistics/Feedback](../README.md) / FeedbackStats - -# Function: FeedbackStats() - -> **FeedbackStats**(`data`): `Element` - -Defined in: [src/components/EventStats/Statistics/Feedback.tsx:34](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/EventStats/Statistics/Feedback.tsx#L34) - -Component that displays a pie chart of feedback ratings for an event. -Shows how many people gave each rating. - -## Parameters - -### data - -`ModalPropType` - -Data containing event feedback to be displayed in the chart. - -## Returns - -`Element` - -JSX element representing the feedback analysis card with a pie chart. diff --git a/docs/docs/auto-docs/components/EventStats/Statistics/Review/README.md b/docs/docs/auto-docs/components/EventStats/Statistics/Review/README.md deleted file mode 100644 index 570c0082b2..0000000000 --- a/docs/docs/auto-docs/components/EventStats/Statistics/Review/README.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / components/EventStats/Statistics/Review - -# components/EventStats/Statistics/Review - -## Functions - -- [ReviewStats](functions/ReviewStats.md) diff --git a/docs/docs/auto-docs/components/EventStats/Statistics/Review/functions/ReviewStats.md b/docs/docs/auto-docs/components/EventStats/Statistics/Review/functions/ReviewStats.md deleted file mode 100644 index 579ec75733..0000000000 --- a/docs/docs/auto-docs/components/EventStats/Statistics/Review/functions/ReviewStats.md +++ /dev/null @@ -1,28 +0,0 @@ -[**talawa-admin**](../../../../../README.md) - -*** - -[talawa-admin](../../../../../modules.md) / [components/EventStats/Statistics/Review](../README.md) / ReviewStats - -# Function: ReviewStats() - -> **ReviewStats**(`data`): `Element` - -Defined in: [src/components/EventStats/Statistics/Review.tsx:30](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/EventStats/Statistics/Review.tsx#L30) - -Component that displays reviews for an event. -Shows a list of reviews with ratings and text. - -## Parameters - -### data - -`ModalPropType` - -Data containing event feedback to be displayed. - -## Returns - -`Element` - -JSX element representing the reviews card. diff --git a/docs/docs/auto-docs/components/GroupChatDetails/GroupChatDetails/README.md b/docs/docs/auto-docs/components/GroupChatDetails/GroupChatDetails/README.md deleted file mode 100644 index 262c3f8919..0000000000 --- a/docs/docs/auto-docs/components/GroupChatDetails/GroupChatDetails/README.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / components/GroupChatDetails/GroupChatDetails - -# components/GroupChatDetails/GroupChatDetails - -## Functions - -- [default](functions/default.md) diff --git a/docs/docs/auto-docs/components/GroupChatDetails/GroupChatDetails/functions/default.md b/docs/docs/auto-docs/components/GroupChatDetails/GroupChatDetails/functions/default.md deleted file mode 100644 index 4b43ce775e..0000000000 --- a/docs/docs/auto-docs/components/GroupChatDetails/GroupChatDetails/functions/default.md +++ /dev/null @@ -1,25 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [components/GroupChatDetails/GroupChatDetails](../README.md) / default - -# Function: default() - -> **default**(`__namedParameters`): `JSX.Element` - -Defined in: [src/components/GroupChatDetails/GroupChatDetails.tsx:120](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/GroupChatDetails/GroupChatDetails.tsx#L120) - -Component for displaying and managing group chat details. - -## Parameters - -### \_\_namedParameters - -`InterfaceGoroupChatDetailsProps` - -## Returns - -`JSX.Element` - -The rendered component. diff --git a/docs/docs/auto-docs/components/HolidayCards/HolidayCard/README.md b/docs/docs/auto-docs/components/HolidayCards/HolidayCard/README.md deleted file mode 100644 index 4bf1aa700e..0000000000 --- a/docs/docs/auto-docs/components/HolidayCards/HolidayCard/README.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / components/HolidayCards/HolidayCard - -# components/HolidayCards/HolidayCard - -## Functions - -- [default](functions/default.md) diff --git a/docs/docs/auto-docs/components/HolidayCards/HolidayCard/functions/default.md b/docs/docs/auto-docs/components/HolidayCards/HolidayCard/functions/default.md deleted file mode 100644 index 1883ee450f..0000000000 --- a/docs/docs/auto-docs/components/HolidayCards/HolidayCard/functions/default.md +++ /dev/null @@ -1,27 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [components/HolidayCards/HolidayCard](../README.md) / default - -# Function: default() - -> **default**(`props`): `Element` - -Defined in: [src/components/HolidayCards/HolidayCard.tsx:15](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/HolidayCards/HolidayCard.tsx#L15) - -Component that displays a card with the name of a holiday. - -## Parameters - -### props - -`InterfaceHolidayList` - -Contains the holidayName to be displayed on the card. - -## Returns - -`Element` - -JSX element representing a card with the holiday name. diff --git a/docs/docs/auto-docs/components/IconComponent/IconComponent/README.md b/docs/docs/auto-docs/components/IconComponent/IconComponent/README.md deleted file mode 100644 index 925ecf21a9..0000000000 --- a/docs/docs/auto-docs/components/IconComponent/IconComponent/README.md +++ /dev/null @@ -1,15 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / components/IconComponent/IconComponent - -# components/IconComponent/IconComponent - -## Interfaces - -- [InterfaceIconComponent](interfaces/InterfaceIconComponent.md) - -## Functions - -- [default](functions/default.md) diff --git a/docs/docs/auto-docs/components/IconComponent/IconComponent/functions/default.md b/docs/docs/auto-docs/components/IconComponent/IconComponent/functions/default.md deleted file mode 100644 index 2822630b89..0000000000 --- a/docs/docs/auto-docs/components/IconComponent/IconComponent/functions/default.md +++ /dev/null @@ -1,27 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [components/IconComponent/IconComponent](../README.md) / default - -# Function: default() - -> **default**(`props`): `Element` - -Defined in: [src/components/IconComponent/IconComponent.tsx:39](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/IconComponent/IconComponent.tsx#L39) - -Renders an icon based on the provided name. - -## Parameters - -### props - -[`InterfaceIconComponent`](../interfaces/InterfaceIconComponent.md) - -Contains the name of the icon and optional styles (fill, height, width). - -## Returns - -`Element` - -JSX element representing the icon. diff --git a/docs/docs/auto-docs/components/IconComponent/IconComponent/interfaces/InterfaceIconComponent.md b/docs/docs/auto-docs/components/IconComponent/IconComponent/interfaces/InterfaceIconComponent.md deleted file mode 100644 index 72955d55ff..0000000000 --- a/docs/docs/auto-docs/components/IconComponent/IconComponent/interfaces/InterfaceIconComponent.md +++ /dev/null @@ -1,41 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [components/IconComponent/IconComponent](../README.md) / InterfaceIconComponent - -# Interface: InterfaceIconComponent - -Defined in: [src/components/IconComponent/IconComponent.tsx:27](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/IconComponent/IconComponent.tsx#L27) - -## Properties - -### fill? - -> `optional` **fill**: `string` - -Defined in: [src/components/IconComponent/IconComponent.tsx:29](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/IconComponent/IconComponent.tsx#L29) - -*** - -### height? - -> `optional` **height**: `string` - -Defined in: [src/components/IconComponent/IconComponent.tsx:30](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/IconComponent/IconComponent.tsx#L30) - -*** - -### name - -> **name**: `string` - -Defined in: [src/components/IconComponent/IconComponent.tsx:28](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/IconComponent/IconComponent.tsx#L28) - -*** - -### width? - -> `optional` **width**: `string` - -Defined in: [src/components/IconComponent/IconComponent.tsx:31](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/IconComponent/IconComponent.tsx#L31) diff --git a/docs/docs/auto-docs/components/InfiniteScrollLoader/InfiniteScrollLoader/README.md b/docs/docs/auto-docs/components/InfiniteScrollLoader/InfiniteScrollLoader/README.md deleted file mode 100644 index 3d896e2472..0000000000 --- a/docs/docs/auto-docs/components/InfiniteScrollLoader/InfiniteScrollLoader/README.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / components/InfiniteScrollLoader/InfiniteScrollLoader - -# components/InfiniteScrollLoader/InfiniteScrollLoader - -## Functions - -- [default](functions/default.md) diff --git a/docs/docs/auto-docs/components/InfiniteScrollLoader/InfiniteScrollLoader/functions/default.md b/docs/docs/auto-docs/components/InfiniteScrollLoader/InfiniteScrollLoader/functions/default.md deleted file mode 100644 index de12177c4d..0000000000 --- a/docs/docs/auto-docs/components/InfiniteScrollLoader/InfiniteScrollLoader/functions/default.md +++ /dev/null @@ -1,17 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [components/InfiniteScrollLoader/InfiniteScrollLoader](../README.md) / default - -# Function: default() - -> **default**(): `Element` - -Defined in: [src/components/InfiniteScrollLoader/InfiniteScrollLoader.tsx:8](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/InfiniteScrollLoader/InfiniteScrollLoader.tsx#L8) - -A Loader for infinite scroll. - -## Returns - -`Element` diff --git a/docs/docs/auto-docs/components/LeftDrawer/LeftDrawer/README.md b/docs/docs/auto-docs/components/LeftDrawer/LeftDrawer/README.md deleted file mode 100644 index aa0d9e2266..0000000000 --- a/docs/docs/auto-docs/components/LeftDrawer/LeftDrawer/README.md +++ /dev/null @@ -1,15 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / components/LeftDrawer/LeftDrawer - -# components/LeftDrawer/LeftDrawer - -## Interfaces - -- [InterfaceLeftDrawerProps](interfaces/InterfaceLeftDrawerProps.md) - -## Functions - -- [default](functions/default.md) diff --git a/docs/docs/auto-docs/components/LeftDrawer/LeftDrawer/functions/default.md b/docs/docs/auto-docs/components/LeftDrawer/LeftDrawer/functions/default.md deleted file mode 100644 index d1ebf71fdf..0000000000 --- a/docs/docs/auto-docs/components/LeftDrawer/LeftDrawer/functions/default.md +++ /dev/null @@ -1,25 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [components/LeftDrawer/LeftDrawer](../README.md) / default - -# Function: default() - -> **default**(`__namedParameters`): `Element` - -Defined in: [src/components/LeftDrawer/LeftDrawer.tsx:24](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/LeftDrawer/LeftDrawer.tsx#L24) - -LeftDrawer component for displaying navigation options. - -## Parameters - -### \_\_namedParameters - -[`InterfaceLeftDrawerProps`](../interfaces/InterfaceLeftDrawerProps.md) - -## Returns - -`Element` - -JSX element for the left navigation drawer. diff --git a/docs/docs/auto-docs/components/LeftDrawer/LeftDrawer/interfaces/InterfaceLeftDrawerProps.md b/docs/docs/auto-docs/components/LeftDrawer/LeftDrawer/interfaces/InterfaceLeftDrawerProps.md deleted file mode 100644 index ff48534a2f..0000000000 --- a/docs/docs/auto-docs/components/LeftDrawer/LeftDrawer/interfaces/InterfaceLeftDrawerProps.md +++ /dev/null @@ -1,25 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [components/LeftDrawer/LeftDrawer](../README.md) / InterfaceLeftDrawerProps - -# Interface: InterfaceLeftDrawerProps - -Defined in: [src/components/LeftDrawer/LeftDrawer.tsx:12](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/LeftDrawer/LeftDrawer.tsx#L12) - -## Properties - -### hideDrawer - -> **hideDrawer**: `null` \| `boolean` - -Defined in: [src/components/LeftDrawer/LeftDrawer.tsx:13](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/LeftDrawer/LeftDrawer.tsx#L13) - -*** - -### setHideDrawer - -> **setHideDrawer**: `Dispatch`\<`SetStateAction`\<`null` \| `boolean`\>\> - -Defined in: [src/components/LeftDrawer/LeftDrawer.tsx:14](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/LeftDrawer/LeftDrawer.tsx#L14) diff --git a/docs/docs/auto-docs/components/LeftDrawerOrg/LeftDrawerOrg/README.md b/docs/docs/auto-docs/components/LeftDrawerOrg/LeftDrawerOrg/README.md deleted file mode 100644 index eba6903f72..0000000000 --- a/docs/docs/auto-docs/components/LeftDrawerOrg/LeftDrawerOrg/README.md +++ /dev/null @@ -1,15 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / components/LeftDrawerOrg/LeftDrawerOrg - -# components/LeftDrawerOrg/LeftDrawerOrg - -## Interfaces - -- [InterfaceLeftDrawerProps](interfaces/InterfaceLeftDrawerProps.md) - -## Functions - -- [default](functions/default.md) diff --git a/docs/docs/auto-docs/components/LeftDrawerOrg/LeftDrawerOrg/functions/default.md b/docs/docs/auto-docs/components/LeftDrawerOrg/LeftDrawerOrg/functions/default.md deleted file mode 100644 index 3d2034a5f5..0000000000 --- a/docs/docs/auto-docs/components/LeftDrawerOrg/LeftDrawerOrg/functions/default.md +++ /dev/null @@ -1,25 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [components/LeftDrawerOrg/LeftDrawerOrg](../README.md) / default - -# Function: default() - -> **default**(`__namedParameters`): `Element` - -Defined in: [src/components/LeftDrawerOrg/LeftDrawerOrg.tsx:35](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/LeftDrawerOrg/LeftDrawerOrg.tsx#L35) - -LeftDrawerOrg component for displaying organization details and navigation options. - -## Parameters - -### \_\_namedParameters - -[`InterfaceLeftDrawerProps`](../interfaces/InterfaceLeftDrawerProps.md) - -## Returns - -`Element` - -JSX element for the left navigation drawer with organization details. diff --git a/docs/docs/auto-docs/components/LeftDrawerOrg/LeftDrawerOrg/interfaces/InterfaceLeftDrawerProps.md b/docs/docs/auto-docs/components/LeftDrawerOrg/LeftDrawerOrg/interfaces/InterfaceLeftDrawerProps.md deleted file mode 100644 index 27cf8cbf67..0000000000 --- a/docs/docs/auto-docs/components/LeftDrawerOrg/LeftDrawerOrg/interfaces/InterfaceLeftDrawerProps.md +++ /dev/null @@ -1,41 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [components/LeftDrawerOrg/LeftDrawerOrg](../README.md) / InterfaceLeftDrawerProps - -# Interface: InterfaceLeftDrawerProps - -Defined in: [src/components/LeftDrawerOrg/LeftDrawerOrg.tsx:18](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/LeftDrawerOrg/LeftDrawerOrg.tsx#L18) - -## Properties - -### hideDrawer - -> **hideDrawer**: `null` \| `boolean` - -Defined in: [src/components/LeftDrawerOrg/LeftDrawerOrg.tsx:21](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/LeftDrawerOrg/LeftDrawerOrg.tsx#L21) - -*** - -### orgId - -> **orgId**: `string` - -Defined in: [src/components/LeftDrawerOrg/LeftDrawerOrg.tsx:19](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/LeftDrawerOrg/LeftDrawerOrg.tsx#L19) - -*** - -### setHideDrawer - -> **setHideDrawer**: `Dispatch`\<`SetStateAction`\<`null` \| `boolean`\>\> - -Defined in: [src/components/LeftDrawerOrg/LeftDrawerOrg.tsx:22](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/LeftDrawerOrg/LeftDrawerOrg.tsx#L22) - -*** - -### targets - -> **targets**: [`TargetsType`](../../../../state/reducers/routesReducer/type-aliases/TargetsType.md)[] - -Defined in: [src/components/LeftDrawerOrg/LeftDrawerOrg.tsx:20](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/LeftDrawerOrg/LeftDrawerOrg.tsx#L20) diff --git a/docs/docs/auto-docs/components/Loader/Loader/README.md b/docs/docs/auto-docs/components/Loader/Loader/README.md deleted file mode 100644 index 6121de4969..0000000000 --- a/docs/docs/auto-docs/components/Loader/Loader/README.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / components/Loader/Loader - -# components/Loader/Loader - -## Functions - -- [default](functions/default.md) diff --git a/docs/docs/auto-docs/components/Loader/Loader/functions/default.md b/docs/docs/auto-docs/components/Loader/Loader/functions/default.md deleted file mode 100644 index 5e271e3c8a..0000000000 --- a/docs/docs/auto-docs/components/Loader/Loader/functions/default.md +++ /dev/null @@ -1,25 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [components/Loader/Loader](../README.md) / default - -# Function: default() - -> **default**(`props`): `Element` - -Defined in: [src/components/Loader/Loader.tsx:17](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/Loader/Loader.tsx#L17) - -Loader component for displaying a loading spinner. - -## Parameters - -### props - -`InterfaceLoaderProps` - -## Returns - -`Element` - -JSX element for a loading spinner. diff --git a/docs/docs/auto-docs/components/LoginPortalToggle/LoginPortalToggle/README.md b/docs/docs/auto-docs/components/LoginPortalToggle/LoginPortalToggle/README.md deleted file mode 100644 index e671f4ec8f..0000000000 --- a/docs/docs/auto-docs/components/LoginPortalToggle/LoginPortalToggle/README.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / components/LoginPortalToggle/LoginPortalToggle - -# components/LoginPortalToggle/LoginPortalToggle - -## Functions - -- [default](functions/default.md) diff --git a/docs/docs/auto-docs/components/LoginPortalToggle/LoginPortalToggle/functions/default.md b/docs/docs/auto-docs/components/LoginPortalToggle/LoginPortalToggle/functions/default.md deleted file mode 100644 index 51acbc4c26..0000000000 --- a/docs/docs/auto-docs/components/LoginPortalToggle/LoginPortalToggle/functions/default.md +++ /dev/null @@ -1,27 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [components/LoginPortalToggle/LoginPortalToggle](../README.md) / default - -# Function: default() - -> **default**(`onToggle`): `JSX.Element` - -Defined in: [src/components/LoginPortalToggle/LoginPortalToggle.tsx:18](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/LoginPortalToggle/LoginPortalToggle.tsx#L18) - -Component for toggling between admin and user login portals. - -## Parameters - -### onToggle - -`InterfaceLoginPortalToggleProps` - -Callback function to handle role changes ('admin' or 'user'). - -## Returns - -`JSX.Element` - -JSX element for login portal toggle. diff --git a/docs/docs/auto-docs/components/MemberDetail/EventsAttendedByMember/README.md b/docs/docs/auto-docs/components/MemberDetail/EventsAttendedByMember/README.md deleted file mode 100644 index f6d25bb237..0000000000 --- a/docs/docs/auto-docs/components/MemberDetail/EventsAttendedByMember/README.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / components/MemberDetail/EventsAttendedByMember - -# components/MemberDetail/EventsAttendedByMember - -## Functions - -- [default](functions/default.md) diff --git a/docs/docs/auto-docs/components/MemberDetail/EventsAttendedByMember/functions/default.md b/docs/docs/auto-docs/components/MemberDetail/EventsAttendedByMember/functions/default.md deleted file mode 100644 index d7fb78111a..0000000000 --- a/docs/docs/auto-docs/components/MemberDetail/EventsAttendedByMember/functions/default.md +++ /dev/null @@ -1,21 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [components/MemberDetail/EventsAttendedByMember](../README.md) / default - -# Function: default() - -> **default**(`__namedParameters`): `JSX.Element` - -Defined in: [src/components/MemberDetail/EventsAttendedByMember.tsx:15](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/MemberDetail/EventsAttendedByMember.tsx#L15) - -## Parameters - -### \_\_namedParameters - -`InterfaceEventsAttendedByMember` - -## Returns - -`JSX.Element` diff --git a/docs/docs/auto-docs/components/MemberDetail/EventsAttendedCardItem/README.md b/docs/docs/auto-docs/components/MemberDetail/EventsAttendedCardItem/README.md deleted file mode 100644 index 54a651098f..0000000000 --- a/docs/docs/auto-docs/components/MemberDetail/EventsAttendedCardItem/README.md +++ /dev/null @@ -1,15 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / components/MemberDetail/EventsAttendedCardItem - -# components/MemberDetail/EventsAttendedCardItem - -## Interfaces - -- [InterfaceCardItem](interfaces/InterfaceCardItem.md) - -## Functions - -- [default](functions/default.md) diff --git a/docs/docs/auto-docs/components/MemberDetail/EventsAttendedCardItem/functions/default.md b/docs/docs/auto-docs/components/MemberDetail/EventsAttendedCardItem/functions/default.md deleted file mode 100644 index cfe2e91bbd..0000000000 --- a/docs/docs/auto-docs/components/MemberDetail/EventsAttendedCardItem/functions/default.md +++ /dev/null @@ -1,21 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [components/MemberDetail/EventsAttendedCardItem](../README.md) / default - -# Function: default() - -> **default**(`props`): `Element` - -Defined in: [src/components/MemberDetail/EventsAttendedCardItem.tsx:26](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/MemberDetail/EventsAttendedCardItem.tsx#L26) - -## Parameters - -### props - -[`InterfaceCardItem`](../interfaces/InterfaceCardItem.md) - -## Returns - -`Element` diff --git a/docs/docs/auto-docs/components/MemberDetail/EventsAttendedCardItem/interfaces/InterfaceCardItem.md b/docs/docs/auto-docs/components/MemberDetail/EventsAttendedCardItem/interfaces/InterfaceCardItem.md deleted file mode 100644 index 5b5065faee..0000000000 --- a/docs/docs/auto-docs/components/MemberDetail/EventsAttendedCardItem/interfaces/InterfaceCardItem.md +++ /dev/null @@ -1,88 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [components/MemberDetail/EventsAttendedCardItem](../README.md) / InterfaceCardItem - -# Interface: InterfaceCardItem - -Defined in: [src/components/MemberDetail/EventsAttendedCardItem.tsx:16](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/MemberDetail/EventsAttendedCardItem.tsx#L16) - -Card component to display individual event attendance information -Shows event details including title, date, location and organization - -## Param - -Organization ID - -## Param - -Event ID - -## Param - -Event start date - -## Param - -Event title - -## Param - -Event location - -## Properties - -### creator? - -> `optional` **creator**: `string` - -Defined in: [src/components/MemberDetail/EventsAttendedCardItem.tsx:20](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/MemberDetail/EventsAttendedCardItem.tsx#L20) - -*** - -### eventId? - -> `optional` **eventId**: `string` - -Defined in: [src/components/MemberDetail/EventsAttendedCardItem.tsx:22](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/MemberDetail/EventsAttendedCardItem.tsx#L22) - -*** - -### location? - -> `optional` **location**: `string` - -Defined in: [src/components/MemberDetail/EventsAttendedCardItem.tsx:21](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/MemberDetail/EventsAttendedCardItem.tsx#L21) - -*** - -### orgId? - -> `optional` **orgId**: `string` - -Defined in: [src/components/MemberDetail/EventsAttendedCardItem.tsx:23](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/MemberDetail/EventsAttendedCardItem.tsx#L23) - -*** - -### startdate? - -> `optional` **startdate**: `string` - -Defined in: [src/components/MemberDetail/EventsAttendedCardItem.tsx:19](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/MemberDetail/EventsAttendedCardItem.tsx#L19) - -*** - -### time? - -> `optional` **time**: `string` - -Defined in: [src/components/MemberDetail/EventsAttendedCardItem.tsx:18](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/MemberDetail/EventsAttendedCardItem.tsx#L18) - -*** - -### title - -> **title**: `string` - -Defined in: [src/components/MemberDetail/EventsAttendedCardItem.tsx:17](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/MemberDetail/EventsAttendedCardItem.tsx#L17) diff --git a/docs/docs/auto-docs/components/MemberDetail/EventsAttendedMemberModal/README.md b/docs/docs/auto-docs/components/MemberDetail/EventsAttendedMemberModal/README.md deleted file mode 100644 index fb1b316570..0000000000 --- a/docs/docs/auto-docs/components/MemberDetail/EventsAttendedMemberModal/README.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / components/MemberDetail/EventsAttendedMemberModal - -# components/MemberDetail/EventsAttendedMemberModal - -## Functions - -- [default](functions/default.md) diff --git a/docs/docs/auto-docs/components/MemberDetail/EventsAttendedMemberModal/functions/default.md b/docs/docs/auto-docs/components/MemberDetail/EventsAttendedMemberModal/functions/default.md deleted file mode 100644 index c6cee6c20c..0000000000 --- a/docs/docs/auto-docs/components/MemberDetail/EventsAttendedMemberModal/functions/default.md +++ /dev/null @@ -1,31 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [components/MemberDetail/EventsAttendedMemberModal](../README.md) / default - -# Function: default() - -> **default**(`props`, `deprecatedLegacyContext`?): `ReactNode` - -Defined in: [src/components/MemberDetail/EventsAttendedMemberModal.tsx:39](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/MemberDetail/EventsAttendedMemberModal.tsx#L39) - -## Parameters - -### props - -`InterfaceEventsAttendedMemberModalProps` - -### deprecatedLegacyContext? - -`any` - -**Deprecated** - -**See** - -[React Docs](https://legacy.reactjs.org/docs/legacy-context.html#referencing-context-in-lifecycle-methods) - -## Returns - -`ReactNode` diff --git a/docs/docs/auto-docs/components/MemberDetail/customTableCell/README.md b/docs/docs/auto-docs/components/MemberDetail/customTableCell/README.md deleted file mode 100644 index b73565cc94..0000000000 --- a/docs/docs/auto-docs/components/MemberDetail/customTableCell/README.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / components/MemberDetail/customTableCell - -# components/MemberDetail/customTableCell - -## Functions - -- [CustomTableCell](functions/CustomTableCell.md) diff --git a/docs/docs/auto-docs/components/MemberDetail/customTableCell/functions/CustomTableCell.md b/docs/docs/auto-docs/components/MemberDetail/customTableCell/functions/CustomTableCell.md deleted file mode 100644 index 18fd6cf0e6..0000000000 --- a/docs/docs/auto-docs/components/MemberDetail/customTableCell/functions/CustomTableCell.md +++ /dev/null @@ -1,37 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [components/MemberDetail/customTableCell](../README.md) / CustomTableCell - -# Function: CustomTableCell() - -> **CustomTableCell**(`props`, `deprecatedLegacyContext`?): `ReactNode` - -Defined in: [src/components/MemberDetail/customTableCell.tsx:13](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/MemberDetail/customTableCell.tsx#L13) - -Custom table cell component to display event details - -## Parameters - -### props - -#### eventId - -`string` - -### deprecatedLegacyContext? - -`any` - -**Deprecated** - -**See** - -[React Docs](https://legacy.reactjs.org/docs/legacy-context.html#referencing-context-in-lifecycle-methods) - -## Returns - -`ReactNode` - -TableRow component with event information diff --git a/docs/docs/auto-docs/components/MemberRequestCard/MemberRequestCard/README.md b/docs/docs/auto-docs/components/MemberRequestCard/MemberRequestCard/README.md deleted file mode 100644 index 0e2ff9bf92..0000000000 --- a/docs/docs/auto-docs/components/MemberRequestCard/MemberRequestCard/README.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / components/MemberRequestCard/MemberRequestCard - -# components/MemberRequestCard/MemberRequestCard - -## Functions - -- [default](functions/default.md) diff --git a/docs/docs/auto-docs/components/MemberRequestCard/MemberRequestCard/functions/default.md b/docs/docs/auto-docs/components/MemberRequestCard/MemberRequestCard/functions/default.md deleted file mode 100644 index 80dc0ac3dd..0000000000 --- a/docs/docs/auto-docs/components/MemberRequestCard/MemberRequestCard/functions/default.md +++ /dev/null @@ -1,27 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [components/MemberRequestCard/MemberRequestCard](../README.md) / default - -# Function: default() - -> **default**(`props`): `JSX.Element` - -Defined in: [src/components/MemberRequestCard/MemberRequestCard.tsx:31](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/MemberRequestCard/MemberRequestCard.tsx#L31) - -Component for displaying and managing member requests. - -## Parameters - -### props - -`InterfaceMemberRequestCardProps` - -Properties for the member request card. - -## Returns - -`JSX.Element` - -JSX element for member request card. diff --git a/docs/docs/auto-docs/components/NotFound/NotFound/README.md b/docs/docs/auto-docs/components/NotFound/NotFound/README.md deleted file mode 100644 index 5b37138d23..0000000000 --- a/docs/docs/auto-docs/components/NotFound/NotFound/README.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / components/NotFound/NotFound - -# components/NotFound/NotFound - -## Functions - -- [default](functions/default.md) diff --git a/docs/docs/auto-docs/components/NotFound/NotFound/functions/default.md b/docs/docs/auto-docs/components/NotFound/NotFound/functions/default.md deleted file mode 100644 index 4975e6f228..0000000000 --- a/docs/docs/auto-docs/components/NotFound/NotFound/functions/default.md +++ /dev/null @@ -1,25 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [components/NotFound/NotFound](../README.md) / default - -# Function: default() - -> **default**(`props`): `JSX.Element` - -Defined in: [src/components/NotFound/NotFound.tsx:18](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/NotFound/NotFound.tsx#L18) - -Component to display a "Not Found" message. - -## Parameters - -### props - -`InterfaceNotFoundProps` - -## Returns - -`JSX.Element` - -JSX element for the "Not Found" page. diff --git a/docs/docs/auto-docs/components/OrgAdminListCard/OrgAdminListCard/README.md b/docs/docs/auto-docs/components/OrgAdminListCard/OrgAdminListCard/README.md deleted file mode 100644 index 8ad3c4634a..0000000000 --- a/docs/docs/auto-docs/components/OrgAdminListCard/OrgAdminListCard/README.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / components/OrgAdminListCard/OrgAdminListCard - -# components/OrgAdminListCard/OrgAdminListCard - -## Functions - -- [default](functions/default.md) diff --git a/docs/docs/auto-docs/components/OrgAdminListCard/OrgAdminListCard/functions/default.md b/docs/docs/auto-docs/components/OrgAdminListCard/OrgAdminListCard/functions/default.md deleted file mode 100644 index c5bb982840..0000000000 --- a/docs/docs/auto-docs/components/OrgAdminListCard/OrgAdminListCard/functions/default.md +++ /dev/null @@ -1,25 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [components/OrgAdminListCard/OrgAdminListCard](../README.md) / default - -# Function: default() - -> **default**(`props`): `JSX.Element` - -Defined in: [src/components/OrgAdminListCard/OrgAdminListCard.tsx:22](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/OrgAdminListCard/OrgAdminListCard.tsx#L22) - -Component to confirm and handle the removal of an admin. - -## Parameters - -### props - -`InterfaceOrgPeopleListCardProps` - -## Returns - -`JSX.Element` - -JSX element for the removal confirmation modal. diff --git a/docs/docs/auto-docs/components/OrgContriCards/OrgContriCards/README.md b/docs/docs/auto-docs/components/OrgContriCards/OrgContriCards/README.md deleted file mode 100644 index 6837afa7f4..0000000000 --- a/docs/docs/auto-docs/components/OrgContriCards/OrgContriCards/README.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / components/OrgContriCards/OrgContriCards - -# components/OrgContriCards/OrgContriCards - -## Functions - -- [default](functions/default.md) diff --git a/docs/docs/auto-docs/components/OrgContriCards/OrgContriCards/functions/default.md b/docs/docs/auto-docs/components/OrgContriCards/OrgContriCards/functions/default.md deleted file mode 100644 index 565b4d6a99..0000000000 --- a/docs/docs/auto-docs/components/OrgContriCards/OrgContriCards/functions/default.md +++ /dev/null @@ -1,30 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [components/OrgContriCards/OrgContriCards](../README.md) / default - -# Function: default() - -> **default**(`props`): `JSX.Element` - -Defined in: [src/components/OrgContriCards/OrgContriCards.tsx:30](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/OrgContriCards/OrgContriCards.tsx#L30) - -Component to display organization contribution cards - -This component shows the contribution details of a user in a card format. It includes -the user's name, email, contribution date, transaction ID, and the contribution amount. - -## Parameters - -### props - -`InterfaceOrgContriCardsProps` - -The properties passed to the component - -## Returns - -`JSX.Element` - -JSX.Element representing a contribution card diff --git a/docs/docs/auto-docs/components/OrgDelete/OrgDelete/README.md b/docs/docs/auto-docs/components/OrgDelete/OrgDelete/README.md deleted file mode 100644 index 61d0992c04..0000000000 --- a/docs/docs/auto-docs/components/OrgDelete/OrgDelete/README.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / components/OrgDelete/OrgDelete - -# components/OrgDelete/OrgDelete - -## Functions - -- [default](functions/default.md) diff --git a/docs/docs/auto-docs/components/OrgDelete/OrgDelete/functions/default.md b/docs/docs/auto-docs/components/OrgDelete/OrgDelete/functions/default.md deleted file mode 100644 index daea31febd..0000000000 --- a/docs/docs/auto-docs/components/OrgDelete/OrgDelete/functions/default.md +++ /dev/null @@ -1,21 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [components/OrgDelete/OrgDelete](../README.md) / default - -# Function: default() - -> **default**(): `JSX.Element` - -Defined in: [src/components/OrgDelete/OrgDelete.tsx:11](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/OrgDelete/OrgDelete.tsx#L11) - -Component for displaying organization deletion message - -This component renders a message related to deleting an organization. - -## Returns - -`JSX.Element` - -JSX.Element representing the organization deletion message diff --git a/docs/docs/auto-docs/components/OrgListCard/OrgListCard/README.md b/docs/docs/auto-docs/components/OrgListCard/OrgListCard/README.md deleted file mode 100644 index 48cc0da29f..0000000000 --- a/docs/docs/auto-docs/components/OrgListCard/OrgListCard/README.md +++ /dev/null @@ -1,15 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / components/OrgListCard/OrgListCard - -# components/OrgListCard/OrgListCard - -## Interfaces - -- [InterfaceOrgListCardProps](interfaces/InterfaceOrgListCardProps.md) - -## Functions - -- [default](functions/default.md) diff --git a/docs/docs/auto-docs/components/OrgListCard/OrgListCard/functions/default.md b/docs/docs/auto-docs/components/OrgListCard/OrgListCard/functions/default.md deleted file mode 100644 index 955184846a..0000000000 --- a/docs/docs/auto-docs/components/OrgListCard/OrgListCard/functions/default.md +++ /dev/null @@ -1,31 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [components/OrgListCard/OrgListCard](../README.md) / default - -# Function: default() - -> **default**(`props`): `JSX.Element` - -Defined in: [src/components/OrgListCard/OrgListCard.tsx:38](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/OrgListCard/OrgListCard.tsx#L38) - -Component for displaying a list card for an organization - -This component renders a card that displays information about an organization, -including its name, address, members, and admins. It also provides a button -to manage the organization, navigating to the organization's dashboard. - -## Parameters - -### props - -[`InterfaceOrgListCardProps`](../interfaces/InterfaceOrgListCardProps.md) - -The properties passed to the component - -## Returns - -`JSX.Element` - -JSX.Element representing an organization list card diff --git a/docs/docs/auto-docs/components/OrgListCard/OrgListCard/interfaces/InterfaceOrgListCardProps.md b/docs/docs/auto-docs/components/OrgListCard/OrgListCard/interfaces/InterfaceOrgListCardProps.md deleted file mode 100644 index ba4d564cb7..0000000000 --- a/docs/docs/auto-docs/components/OrgListCard/OrgListCard/interfaces/InterfaceOrgListCardProps.md +++ /dev/null @@ -1,19 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [components/OrgListCard/OrgListCard](../README.md) / InterfaceOrgListCardProps - -# Interface: InterfaceOrgListCardProps - -Defined in: [src/components/OrgListCard/OrgListCard.tsx:24](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/OrgListCard/OrgListCard.tsx#L24) - -Props for the OrgListCard component - -## Properties - -### data - -> **data**: [`InterfaceOrgConnectionInfoType`](../../../../utils/interfaces/interfaces/InterfaceOrgConnectionInfoType.md) - -Defined in: [src/components/OrgListCard/OrgListCard.tsx:25](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/OrgListCard/OrgListCard.tsx#L25) diff --git a/docs/docs/auto-docs/components/OrgListCard/TruncatedText/README.md b/docs/docs/auto-docs/components/OrgListCard/TruncatedText/README.md deleted file mode 100644 index fac93a67cb..0000000000 --- a/docs/docs/auto-docs/components/OrgListCard/TruncatedText/README.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / components/OrgListCard/TruncatedText - -# components/OrgListCard/TruncatedText - -## Functions - -- [default](functions/default.md) diff --git a/docs/docs/auto-docs/components/OrgListCard/TruncatedText/functions/default.md b/docs/docs/auto-docs/components/OrgListCard/TruncatedText/functions/default.md deleted file mode 100644 index b2993682db..0000000000 --- a/docs/docs/auto-docs/components/OrgListCard/TruncatedText/functions/default.md +++ /dev/null @@ -1,47 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [components/OrgListCard/TruncatedText](../README.md) / default - -# Function: default() - -> **default**(`props`, `deprecatedLegacyContext`?): `ReactNode` - -Defined in: [src/components/OrgListCard/TruncatedText.tsx:31](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/OrgListCard/TruncatedText.tsx#L31) - -A React functional component that displays text and truncates it with an ellipsis (`...`) -if the text exceeds the available width or the `maxWidthOverride` value. - -The component adjusts the truncation dynamically based on the available space -or the `maxWidthOverride` value. It also listens for window resize events to reapply truncation. - -## Parameters - -### props - -`InterfaceTruncatedTextProps` - -The props for the component. - -### deprecatedLegacyContext? - -`any` - -**Deprecated** - -**See** - -[React Docs](https://legacy.reactjs.org/docs/legacy-context.html#referencing-context-in-lifecycle-methods) - -## Returns - -`ReactNode` - -A heading element (`
`) containing the truncated or full text. - -## Example - -```tsx - -``` diff --git a/docs/docs/auto-docs/components/OrgListCard/useDebounce/README.md b/docs/docs/auto-docs/components/OrgListCard/useDebounce/README.md deleted file mode 100644 index 3cbd337a25..0000000000 --- a/docs/docs/auto-docs/components/OrgListCard/useDebounce/README.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / components/OrgListCard/useDebounce - -# components/OrgListCard/useDebounce - -## Functions - -- [default](functions/default.md) diff --git a/docs/docs/auto-docs/components/OrgListCard/useDebounce/functions/default.md b/docs/docs/auto-docs/components/OrgListCard/useDebounce/functions/default.md deleted file mode 100644 index 241fce9576..0000000000 --- a/docs/docs/auto-docs/components/OrgListCard/useDebounce/functions/default.md +++ /dev/null @@ -1,61 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [components/OrgListCard/useDebounce](../README.md) / default - -# Function: default() - -> **default**\<`T`\>(`callback`, `delay`): `object` - -Defined in: [src/components/OrgListCard/useDebounce.tsx:12](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/OrgListCard/useDebounce.tsx#L12) - -A custom React hook for debouncing a callback function. -It delays the execution of the callback until after a specified delay has elapsed -since the last time the debounced function was invoked. - -## Type Parameters - -• **T** *extends* (...`args`) => `void` - -## Parameters - -### callback - -`T` - -The function to debounce. - -### delay - -`number` - -The delay in milliseconds to wait before invoking the callback. - -## Returns - -`object` - -An object with the `debouncedCallback` function and a `cancel` method to clear the timeout. - -### cancel() - -> **cancel**: () => `void` - -#### Returns - -`void` - -### debouncedCallback() - -> **debouncedCallback**: (...`args`) => `void` - -#### Parameters - -##### args - -...`Parameters`\<`T`\> - -#### Returns - -`void` diff --git a/docs/docs/auto-docs/components/OrgPeopleListCard/OrgPeopleListCard/README.md b/docs/docs/auto-docs/components/OrgPeopleListCard/OrgPeopleListCard/README.md deleted file mode 100644 index bc89def863..0000000000 --- a/docs/docs/auto-docs/components/OrgPeopleListCard/OrgPeopleListCard/README.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / components/OrgPeopleListCard/OrgPeopleListCard - -# components/OrgPeopleListCard/OrgPeopleListCard - -## Functions - -- [default](functions/default.md) diff --git a/docs/docs/auto-docs/components/OrgPeopleListCard/OrgPeopleListCard/functions/default.md b/docs/docs/auto-docs/components/OrgPeopleListCard/OrgPeopleListCard/functions/default.md deleted file mode 100644 index 019fd84f7f..0000000000 --- a/docs/docs/auto-docs/components/OrgPeopleListCard/OrgPeopleListCard/functions/default.md +++ /dev/null @@ -1,30 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [components/OrgPeopleListCard/OrgPeopleListCard](../README.md) / default - -# Function: default() - -> **default**(`props`): `JSX.Element` - -Defined in: [src/components/OrgPeopleListCard/OrgPeopleListCard.tsx:30](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/OrgPeopleListCard/OrgPeopleListCard.tsx#L30) - -Component for displaying a modal to remove a member from an organization - -This component shows a modal that confirms the removal of a member from the organization. -It performs the removal action and displays success or error messages. - -## Parameters - -### props - -`InterfaceOrgPeopleListCardProps` - -The properties passed to the component - -## Returns - -`JSX.Element` - -JSX.Element representing the organization people list card modal diff --git a/docs/docs/auto-docs/components/OrgPostCard/DeletePostModal/README.md b/docs/docs/auto-docs/components/OrgPostCard/DeletePostModal/README.md deleted file mode 100644 index e9fcbcd946..0000000000 --- a/docs/docs/auto-docs/components/OrgPostCard/DeletePostModal/README.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / components/OrgPostCard/DeletePostModal - -# components/OrgPostCard/DeletePostModal - -## Functions - -- [default](functions/default.md) diff --git a/docs/docs/auto-docs/components/OrgPostCard/DeletePostModal/functions/default.md b/docs/docs/auto-docs/components/OrgPostCard/DeletePostModal/functions/default.md deleted file mode 100644 index 5ec22963c7..0000000000 --- a/docs/docs/auto-docs/components/OrgPostCard/DeletePostModal/functions/default.md +++ /dev/null @@ -1,31 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [components/OrgPostCard/DeletePostModal](../README.md) / default - -# Function: default() - -> **default**(`props`, `deprecatedLegacyContext`?): `ReactNode` - -Defined in: [src/components/OrgPostCard/DeletePostModal.tsx:20](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/OrgPostCard/DeletePostModal.tsx#L20) - -## Parameters - -### props - -`InterfaceDeletePostModalProps` - -### deprecatedLegacyContext? - -`any` - -**Deprecated** - -**See** - -[React Docs](https://legacy.reactjs.org/docs/legacy-context.html#referencing-context-in-lifecycle-methods) - -## Returns - -`ReactNode` diff --git a/docs/docs/auto-docs/components/OrgPostCard/OrgPostCard/README.md b/docs/docs/auto-docs/components/OrgPostCard/OrgPostCard/README.md deleted file mode 100644 index 697b44c4da..0000000000 --- a/docs/docs/auto-docs/components/OrgPostCard/OrgPostCard/README.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / components/OrgPostCard/OrgPostCard - -# components/OrgPostCard/OrgPostCard - -## Functions - -- [default](functions/default.md) diff --git a/docs/docs/auto-docs/components/OrgPostCard/OrgPostCard/functions/default.md b/docs/docs/auto-docs/components/OrgPostCard/OrgPostCard/functions/default.md deleted file mode 100644 index e8799815f6..0000000000 --- a/docs/docs/auto-docs/components/OrgPostCard/OrgPostCard/functions/default.md +++ /dev/null @@ -1,21 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [components/OrgPostCard/OrgPostCard](../README.md) / default - -# Function: default() - -> **default**(`props`): `JSX.Element` - -Defined in: [src/components/OrgPostCard/OrgPostCard.tsx:29](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/OrgPostCard/OrgPostCard.tsx#L29) - -## Parameters - -### props - -`InterfaceOrgPostCardProps` - -## Returns - -`JSX.Element` diff --git a/docs/docs/auto-docs/components/OrgSettings/ActionItemCategories/CategoryModal/README.md b/docs/docs/auto-docs/components/OrgSettings/ActionItemCategories/CategoryModal/README.md deleted file mode 100644 index 25ff96a2bb..0000000000 --- a/docs/docs/auto-docs/components/OrgSettings/ActionItemCategories/CategoryModal/README.md +++ /dev/null @@ -1,15 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / components/OrgSettings/ActionItemCategories/CategoryModal - -# components/OrgSettings/ActionItemCategories/CategoryModal - -## Interfaces - -- [InterfaceActionItemCategoryModal](interfaces/InterfaceActionItemCategoryModal.md) - -## Functions - -- [default](functions/default.md) diff --git a/docs/docs/auto-docs/components/OrgSettings/ActionItemCategories/CategoryModal/functions/default.md b/docs/docs/auto-docs/components/OrgSettings/ActionItemCategories/CategoryModal/functions/default.md deleted file mode 100644 index 3f8b06e684..0000000000 --- a/docs/docs/auto-docs/components/OrgSettings/ActionItemCategories/CategoryModal/functions/default.md +++ /dev/null @@ -1,37 +0,0 @@ -[**talawa-admin**](../../../../../README.md) - -*** - -[talawa-admin](../../../../../modules.md) / [components/OrgSettings/ActionItemCategories/CategoryModal](../README.md) / default - -# Function: default() - -> **default**(`props`, `deprecatedLegacyContext`?): `ReactNode` - -Defined in: [src/components/OrgSettings/ActionItemCategories/CategoryModal.tsx:41](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/OrgSettings/ActionItemCategories/CategoryModal.tsx#L41) - -A modal component for creating and editing action item categories. - -## Parameters - -### props - -[`InterfaceActionItemCategoryModal`](../interfaces/InterfaceActionItemCategoryModal.md) - -The properties passed to the component. - -### deprecatedLegacyContext? - -`any` - -**Deprecated** - -**See** - -[React Docs](https://legacy.reactjs.org/docs/legacy-context.html#referencing-context-in-lifecycle-methods) - -## Returns - -`ReactNode` - -The `CategoryModal` component. diff --git a/docs/docs/auto-docs/components/OrgSettings/ActionItemCategories/CategoryModal/interfaces/InterfaceActionItemCategoryModal.md b/docs/docs/auto-docs/components/OrgSettings/ActionItemCategories/CategoryModal/interfaces/InterfaceActionItemCategoryModal.md deleted file mode 100644 index 59aee6eead..0000000000 --- a/docs/docs/auto-docs/components/OrgSettings/ActionItemCategories/CategoryModal/interfaces/InterfaceActionItemCategoryModal.md +++ /dev/null @@ -1,74 +0,0 @@ -[**talawa-admin**](../../../../../README.md) - -*** - -[talawa-admin](../../../../../modules.md) / [components/OrgSettings/ActionItemCategories/CategoryModal](../README.md) / InterfaceActionItemCategoryModal - -# Interface: InterfaceActionItemCategoryModal - -Defined in: [src/components/OrgSettings/ActionItemCategories/CategoryModal.tsx:26](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/OrgSettings/ActionItemCategories/CategoryModal.tsx#L26) - -Props for the `CategoryModal` component. - -isOpen - The state of the modal. -hide - The function to hide the modal. -refetchCategories - The function to refetch the categories. -orgId - The organization ID. -category - The category to be edited. -mode - The mode of the modal. - -## Properties - -### category - -> **category**: `null` \| [`InterfaceActionItemCategoryInfo`](../../../../../utils/interfaces/interfaces/InterfaceActionItemCategoryInfo.md) - -Defined in: [src/components/OrgSettings/ActionItemCategories/CategoryModal.tsx:31](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/OrgSettings/ActionItemCategories/CategoryModal.tsx#L31) - -*** - -### hide() - -> **hide**: () => `void` - -Defined in: [src/components/OrgSettings/ActionItemCategories/CategoryModal.tsx:28](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/OrgSettings/ActionItemCategories/CategoryModal.tsx#L28) - -#### Returns - -`void` - -*** - -### isOpen - -> **isOpen**: `boolean` - -Defined in: [src/components/OrgSettings/ActionItemCategories/CategoryModal.tsx:27](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/OrgSettings/ActionItemCategories/CategoryModal.tsx#L27) - -*** - -### mode - -> **mode**: `"create"` \| `"edit"` - -Defined in: [src/components/OrgSettings/ActionItemCategories/CategoryModal.tsx:32](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/OrgSettings/ActionItemCategories/CategoryModal.tsx#L32) - -*** - -### orgId - -> **orgId**: `string` - -Defined in: [src/components/OrgSettings/ActionItemCategories/CategoryModal.tsx:30](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/OrgSettings/ActionItemCategories/CategoryModal.tsx#L30) - -*** - -### refetchCategories() - -> **refetchCategories**: () => `void` - -Defined in: [src/components/OrgSettings/ActionItemCategories/CategoryModal.tsx:29](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/OrgSettings/ActionItemCategories/CategoryModal.tsx#L29) - -#### Returns - -`void` diff --git a/docs/docs/auto-docs/components/OrgSettings/ActionItemCategories/OrgActionItemCategories/README.md b/docs/docs/auto-docs/components/OrgSettings/ActionItemCategories/OrgActionItemCategories/README.md deleted file mode 100644 index 9fbcade10c..0000000000 --- a/docs/docs/auto-docs/components/OrgSettings/ActionItemCategories/OrgActionItemCategories/README.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / components/OrgSettings/ActionItemCategories/OrgActionItemCategories - -# components/OrgSettings/ActionItemCategories/OrgActionItemCategories - -## Functions - -- [default](functions/default.md) diff --git a/docs/docs/auto-docs/components/OrgSettings/ActionItemCategories/OrgActionItemCategories/functions/default.md b/docs/docs/auto-docs/components/OrgSettings/ActionItemCategories/OrgActionItemCategories/functions/default.md deleted file mode 100644 index 4c69e90a54..0000000000 --- a/docs/docs/auto-docs/components/OrgSettings/ActionItemCategories/OrgActionItemCategories/functions/default.md +++ /dev/null @@ -1,34 +0,0 @@ -[**talawa-admin**](../../../../../README.md) - -*** - -[talawa-admin](../../../../../modules.md) / [components/OrgSettings/ActionItemCategories/OrgActionItemCategories](../README.md) / default - -# Function: default() - -> **default**(`props`, `deprecatedLegacyContext`?): `ReactNode` - -Defined in: [src/components/OrgSettings/ActionItemCategories/OrgActionItemCategories.tsx:61](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/OrgSettings/ActionItemCategories/OrgActionItemCategories.tsx#L61) - -Represents the component for managing organization action item categories. -This component allows creating, updating, enabling, and disabling action item categories. - -## Parameters - -### props - -`InterfaceActionItemCategoryProps` - -### deprecatedLegacyContext? - -`any` - -**Deprecated** - -**See** - -[React Docs](https://legacy.reactjs.org/docs/legacy-context.html#referencing-context-in-lifecycle-methods) - -## Returns - -`ReactNode` diff --git a/docs/docs/auto-docs/components/OrgSettings/ActionItemCategories/OrgActionItemCategoryMocks/README.md b/docs/docs/auto-docs/components/OrgSettings/ActionItemCategories/OrgActionItemCategoryMocks/README.md deleted file mode 100644 index 7141fc79d4..0000000000 --- a/docs/docs/auto-docs/components/OrgSettings/ActionItemCategories/OrgActionItemCategoryMocks/README.md +++ /dev/null @@ -1,13 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / components/OrgSettings/ActionItemCategories/OrgActionItemCategoryMocks - -# components/OrgSettings/ActionItemCategories/OrgActionItemCategoryMocks - -## Variables - -- [MOCKS](variables/MOCKS.md) -- [MOCKS\_EMPTY](variables/MOCKS_EMPTY.md) -- [MOCKS\_ERROR](variables/MOCKS_ERROR.md) diff --git a/docs/docs/auto-docs/components/OrgSettings/ActionItemCategories/OrgActionItemCategoryMocks/variables/MOCKS.md b/docs/docs/auto-docs/components/OrgSettings/ActionItemCategories/OrgActionItemCategoryMocks/variables/MOCKS.md deleted file mode 100644 index a64ae0373b..0000000000 --- a/docs/docs/auto-docs/components/OrgSettings/ActionItemCategories/OrgActionItemCategoryMocks/variables/MOCKS.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../../README.md) - -*** - -[talawa-admin](../../../../../modules.md) / [components/OrgSettings/ActionItemCategories/OrgActionItemCategoryMocks](../README.md) / MOCKS - -# Variable: MOCKS - -> `const` **MOCKS**: (\{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `actionItemCategoryId`: `undefined`; `isDisabled`: `undefined`; `name`: `undefined`; `orderBy`: `string`; `organizationId`: `string`; `where`: \{ `is_disabled`: `undefined`; `name_contains`: `string`; \}; \}; \}; `result`: \{ `data`: \{ `actionItemCategoriesByOrganization`: `object`[]; `createActionItemCategory`: `undefined`; `updateActionItemCategory`: `undefined`; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `actionItemCategoryId`: `undefined`; `isDisabled`: `undefined`; `name`: `undefined`; `orderBy`: `string`; `organizationId`: `string`; `where`: \{ `is_disabled`: `boolean`; `name_contains`: `string`; \}; \}; \}; `result`: \{ `data`: \{ `actionItemCategoriesByOrganization`: `object`[]; `createActionItemCategory`: `undefined`; `updateActionItemCategory`: `undefined`; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `actionItemCategoryId`: `undefined`; `isDisabled`: `boolean`; `name`: `string`; `orderBy`: `undefined`; `organizationId`: `string`; `where`: `undefined`; \}; \}; `result`: \{ `data`: \{ `actionItemCategoriesByOrganization`: `undefined`; `createActionItemCategory`: \{ `_id`: `string`; \}; `updateActionItemCategory`: `undefined`; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `actionItemCategoryId`: `string`; `isDisabled`: `boolean`; `name`: `string`; `orderBy`: `undefined`; `organizationId`: `undefined`; `where`: `undefined`; \}; \}; `result`: \{ `data`: \{ `actionItemCategoriesByOrganization`: `undefined`; `createActionItemCategory`: `undefined`; `updateActionItemCategory`: \{ `_id`: `string`; \}; \}; \}; \})[] - -Defined in: [src/components/OrgSettings/ActionItemCategories/OrgActionItemCategoryMocks.ts:8](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/OrgSettings/ActionItemCategories/OrgActionItemCategoryMocks.ts#L8) diff --git a/docs/docs/auto-docs/components/OrgSettings/ActionItemCategories/OrgActionItemCategoryMocks/variables/MOCKS_EMPTY.md b/docs/docs/auto-docs/components/OrgSettings/ActionItemCategories/OrgActionItemCategoryMocks/variables/MOCKS_EMPTY.md deleted file mode 100644 index 9eb5627dcd..0000000000 --- a/docs/docs/auto-docs/components/OrgSettings/ActionItemCategories/OrgActionItemCategoryMocks/variables/MOCKS_EMPTY.md +++ /dev/null @@ -1,53 +0,0 @@ -[**talawa-admin**](../../../../../README.md) - -*** - -[talawa-admin](../../../../../modules.md) / [components/OrgSettings/ActionItemCategories/OrgActionItemCategoryMocks](../README.md) / MOCKS\_EMPTY - -# Variable: MOCKS\_EMPTY - -> `const` **MOCKS\_EMPTY**: `object`[] - -Defined in: [src/components/OrgSettings/ActionItemCategories/OrgActionItemCategoryMocks.ts:236](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/OrgSettings/ActionItemCategories/OrgActionItemCategoryMocks.ts#L236) - -## Type declaration - -### request - -> **request**: `object` - -#### request.query - -> **query**: `DocumentNode` = `ACTION_ITEM_CATEGORY_LIST` - -#### request.variables - -> **variables**: `object` - -#### request.variables.orderBy - -> **orderBy**: `string` = `'createdAt_DESC'` - -#### request.variables.organizationId - -> **organizationId**: `string` = `'orgId'` - -#### request.variables.where - -> **where**: `object` - -#### request.variables.where.name\_contains - -> **name\_contains**: `string` = `''` - -### result - -> **result**: `object` - -#### result.data - -> **data**: `object` - -#### result.data.actionItemCategoriesByOrganization - -> **actionItemCategoriesByOrganization**: `never`[] = `[]` diff --git a/docs/docs/auto-docs/components/OrgSettings/ActionItemCategories/OrgActionItemCategoryMocks/variables/MOCKS_ERROR.md b/docs/docs/auto-docs/components/OrgSettings/ActionItemCategories/OrgActionItemCategoryMocks/variables/MOCKS_ERROR.md deleted file mode 100644 index dbec977949..0000000000 --- a/docs/docs/auto-docs/components/OrgSettings/ActionItemCategories/OrgActionItemCategoryMocks/variables/MOCKS_ERROR.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../../README.md) - -*** - -[talawa-admin](../../../../../modules.md) / [components/OrgSettings/ActionItemCategories/OrgActionItemCategoryMocks](../README.md) / MOCKS\_ERROR - -# Variable: MOCKS\_ERROR - -> `const` **MOCKS\_ERROR**: (\{ `error`: `Error`; `request`: \{ `query`: `DocumentNode`; `variables`: \{ `actionItemCategoryId`: `undefined`; `isDisabled`: `undefined`; `name`: `undefined`; `orderBy`: `string`; `organizationId`: `string`; `where`: \{ `name_contains`: `string`; \}; \}; \}; \} \| \{ `error`: `Error`; `request`: \{ `query`: `DocumentNode`; `variables`: \{ `actionItemCategoryId`: `undefined`; `isDisabled`: `boolean`; `name`: `string`; `orderBy`: `undefined`; `organizationId`: `string`; `where`: `undefined`; \}; \}; \} \| \{ `error`: `Error`; `request`: \{ `query`: `DocumentNode`; `variables`: \{ `actionItemCategoryId`: `string`; `isDisabled`: `boolean`; `name`: `string`; `orderBy`: `undefined`; `organizationId`: `undefined`; `where`: `undefined`; \}; \}; \})[] - -Defined in: [src/components/OrgSettings/ActionItemCategories/OrgActionItemCategoryMocks.ts:254](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/OrgSettings/ActionItemCategories/OrgActionItemCategoryMocks.ts#L254) diff --git a/docs/docs/auto-docs/components/OrgSettings/AgendaItemCategories/AgendaCategoryCreateModal/README.md b/docs/docs/auto-docs/components/OrgSettings/AgendaItemCategories/AgendaCategoryCreateModal/README.md deleted file mode 100644 index 93cb2dcfd5..0000000000 --- a/docs/docs/auto-docs/components/OrgSettings/AgendaItemCategories/AgendaCategoryCreateModal/README.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / components/OrgSettings/AgendaItemCategories/AgendaCategoryCreateModal - -# components/OrgSettings/AgendaItemCategories/AgendaCategoryCreateModal - -## Functions - -- [default](functions/default.md) diff --git a/docs/docs/auto-docs/components/OrgSettings/AgendaItemCategories/AgendaCategoryCreateModal/functions/default.md b/docs/docs/auto-docs/components/OrgSettings/AgendaItemCategories/AgendaCategoryCreateModal/functions/default.md deleted file mode 100644 index 918f045ca9..0000000000 --- a/docs/docs/auto-docs/components/OrgSettings/AgendaItemCategories/AgendaCategoryCreateModal/functions/default.md +++ /dev/null @@ -1,35 +0,0 @@ -[**talawa-admin**](../../../../../README.md) - -*** - -[talawa-admin](../../../../../modules.md) / [components/OrgSettings/AgendaItemCategories/AgendaCategoryCreateModal](../README.md) / default - -# Function: default() - -> **default**(`props`, `deprecatedLegacyContext`?): `ReactNode` - -Defined in: [src/components/OrgSettings/AgendaItemCategories/AgendaCategoryCreateModal.tsx:38](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/OrgSettings/AgendaItemCategories/AgendaCategoryCreateModal.tsx#L38) - -AgendaCategoryCreateModal component is used to create the agenda category details like name, description - -## Parameters - -### props - -`InterfaceAgendaCategoryCreateModalProps` - -### deprecatedLegacyContext? - -`any` - -**Deprecated** - -**See** - -[React Docs](https://legacy.reactjs.org/docs/legacy-context.html#referencing-context-in-lifecycle-methods) - -## Returns - -`ReactNode` - -returns the AgendaCategoryCreateModal component diff --git a/docs/docs/auto-docs/components/OrgSettings/AgendaItemCategories/AgendaCategoryDeleteModal/README.md b/docs/docs/auto-docs/components/OrgSettings/AgendaItemCategories/AgendaCategoryDeleteModal/README.md deleted file mode 100644 index 206ecdb910..0000000000 --- a/docs/docs/auto-docs/components/OrgSettings/AgendaItemCategories/AgendaCategoryDeleteModal/README.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / components/OrgSettings/AgendaItemCategories/AgendaCategoryDeleteModal - -# components/OrgSettings/AgendaItemCategories/AgendaCategoryDeleteModal - -## Functions - -- [default](functions/default.md) diff --git a/docs/docs/auto-docs/components/OrgSettings/AgendaItemCategories/AgendaCategoryDeleteModal/functions/default.md b/docs/docs/auto-docs/components/OrgSettings/AgendaItemCategories/AgendaCategoryDeleteModal/functions/default.md deleted file mode 100644 index e8debbf3a4..0000000000 --- a/docs/docs/auto-docs/components/OrgSettings/AgendaItemCategories/AgendaCategoryDeleteModal/functions/default.md +++ /dev/null @@ -1,35 +0,0 @@ -[**talawa-admin**](../../../../../README.md) - -*** - -[talawa-admin](../../../../../modules.md) / [components/OrgSettings/AgendaItemCategories/AgendaCategoryDeleteModal](../README.md) / default - -# Function: default() - -> **default**(`props`, `deprecatedLegacyContext`?): `ReactNode` - -Defined in: [src/components/OrgSettings/AgendaItemCategories/AgendaCategoryDeleteModal.tsx:25](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/OrgSettings/AgendaItemCategories/AgendaCategoryDeleteModal.tsx#L25) - -AgendaCategoryDeleteModal component is used to delete the agenda category - -## Parameters - -### props - -`InterfaceAgendaCategoryDeleteModalProps` - -### deprecatedLegacyContext? - -`any` - -**Deprecated** - -**See** - -[React Docs](https://legacy.reactjs.org/docs/legacy-context.html#referencing-context-in-lifecycle-methods) - -## Returns - -`ReactNode` - -returns the AgendaCategoryDeleteModal component diff --git a/docs/docs/auto-docs/components/OrgSettings/AgendaItemCategories/AgendaCategoryPreviewModal/README.md b/docs/docs/auto-docs/components/OrgSettings/AgendaItemCategories/AgendaCategoryPreviewModal/README.md deleted file mode 100644 index b757415768..0000000000 --- a/docs/docs/auto-docs/components/OrgSettings/AgendaItemCategories/AgendaCategoryPreviewModal/README.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / components/OrgSettings/AgendaItemCategories/AgendaCategoryPreviewModal - -# components/OrgSettings/AgendaItemCategories/AgendaCategoryPreviewModal - -## Functions - -- [default](functions/default.md) diff --git a/docs/docs/auto-docs/components/OrgSettings/AgendaItemCategories/AgendaCategoryPreviewModal/functions/default.md b/docs/docs/auto-docs/components/OrgSettings/AgendaItemCategories/AgendaCategoryPreviewModal/functions/default.md deleted file mode 100644 index c7c1c5ae73..0000000000 --- a/docs/docs/auto-docs/components/OrgSettings/AgendaItemCategories/AgendaCategoryPreviewModal/functions/default.md +++ /dev/null @@ -1,35 +0,0 @@ -[**talawa-admin**](../../../../../README.md) - -*** - -[talawa-admin](../../../../../modules.md) / [components/OrgSettings/AgendaItemCategories/AgendaCategoryPreviewModal](../README.md) / default - -# Function: default() - -> **default**(`props`, `deprecatedLegacyContext`?): `ReactNode` - -Defined in: [src/components/OrgSettings/AgendaItemCategories/AgendaCategoryPreviewModal.tsx:38](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/OrgSettings/AgendaItemCategories/AgendaCategoryPreviewModal.tsx#L38) - -AgendaCategoryPreviewModal component is used to preview the agenda category details like name, description, createdBy - -## Parameters - -### props - -`InterfaceAgendaCategoryPreviewModalProps` - -### deprecatedLegacyContext? - -`any` - -**Deprecated** - -**See** - -[React Docs](https://legacy.reactjs.org/docs/legacy-context.html#referencing-context-in-lifecycle-methods) - -## Returns - -`ReactNode` - -returns the AgendaCategoryPreviewModal component diff --git a/docs/docs/auto-docs/components/OrgSettings/AgendaItemCategories/AgendaCategoryUpdateModal/README.md b/docs/docs/auto-docs/components/OrgSettings/AgendaItemCategories/AgendaCategoryUpdateModal/README.md deleted file mode 100644 index 19b2d6ad70..0000000000 --- a/docs/docs/auto-docs/components/OrgSettings/AgendaItemCategories/AgendaCategoryUpdateModal/README.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / components/OrgSettings/AgendaItemCategories/AgendaCategoryUpdateModal - -# components/OrgSettings/AgendaItemCategories/AgendaCategoryUpdateModal - -## Functions - -- [default](functions/default.md) diff --git a/docs/docs/auto-docs/components/OrgSettings/AgendaItemCategories/AgendaCategoryUpdateModal/functions/default.md b/docs/docs/auto-docs/components/OrgSettings/AgendaItemCategories/AgendaCategoryUpdateModal/functions/default.md deleted file mode 100644 index 44b95c7da3..0000000000 --- a/docs/docs/auto-docs/components/OrgSettings/AgendaItemCategories/AgendaCategoryUpdateModal/functions/default.md +++ /dev/null @@ -1,35 +0,0 @@ -[**talawa-admin**](../../../../../README.md) - -*** - -[talawa-admin](../../../../../modules.md) / [components/OrgSettings/AgendaItemCategories/AgendaCategoryUpdateModal](../README.md) / default - -# Function: default() - -> **default**(`props`, `deprecatedLegacyContext`?): `ReactNode` - -Defined in: [src/components/OrgSettings/AgendaItemCategories/AgendaCategoryUpdateModal.tsx:40](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/OrgSettings/AgendaItemCategories/AgendaCategoryUpdateModal.tsx#L40) - -AgendaCategoryUpdateModal component is used to update the agenda category details like name, description - -## Parameters - -### props - -`InterfaceAgendaCategoryUpdateModalProps` - -### deprecatedLegacyContext? - -`any` - -**Deprecated** - -**See** - -[React Docs](https://legacy.reactjs.org/docs/legacy-context.html#referencing-context-in-lifecycle-methods) - -## Returns - -`ReactNode` - -returns the AgendaCategoryUpdateModal component diff --git a/docs/docs/auto-docs/components/OrgSettings/AgendaItemCategories/OrganizationAgendaCategory/README.md b/docs/docs/auto-docs/components/OrgSettings/AgendaItemCategories/OrganizationAgendaCategory/README.md deleted file mode 100644 index c70db04ac7..0000000000 --- a/docs/docs/auto-docs/components/OrgSettings/AgendaItemCategories/OrganizationAgendaCategory/README.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / components/OrgSettings/AgendaItemCategories/OrganizationAgendaCategory - -# components/OrgSettings/AgendaItemCategories/OrganizationAgendaCategory - -## Functions - -- [default](functions/default.md) diff --git a/docs/docs/auto-docs/components/OrgSettings/AgendaItemCategories/OrganizationAgendaCategory/functions/default.md b/docs/docs/auto-docs/components/OrgSettings/AgendaItemCategories/OrganizationAgendaCategory/functions/default.md deleted file mode 100644 index e6710b8626..0000000000 --- a/docs/docs/auto-docs/components/OrgSettings/AgendaItemCategories/OrganizationAgendaCategory/functions/default.md +++ /dev/null @@ -1,37 +0,0 @@ -[**talawa-admin**](../../../../../README.md) - -*** - -[talawa-admin](../../../../../modules.md) / [components/OrgSettings/AgendaItemCategories/OrganizationAgendaCategory](../README.md) / default - -# Function: default() - -> **default**(`props`, `deprecatedLegacyContext`?): `ReactNode` - -Defined in: [src/components/OrgSettings/AgendaItemCategories/OrganizationAgendaCategory.tsx:31](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/OrgSettings/AgendaItemCategories/OrganizationAgendaCategory.tsx#L31) - -Component for managing and displaying agenda item categories within an organization. - -This component allows users to view, create, and manage agenda item categories. It includes functionality for displaying categories, handling creation, and managing modal visibility. - -## Parameters - -### props - -`InterfaceAgendaCategoryProps` - -### deprecatedLegacyContext? - -`any` - -**Deprecated** - -**See** - -[React Docs](https://legacy.reactjs.org/docs/legacy-context.html#referencing-context-in-lifecycle-methods) - -## Returns - -`ReactNode` - -The rendered component. diff --git a/docs/docs/auto-docs/components/OrgSettings/AgendaItemCategories/OrganizationAgendaCategoryErrorMocks/README.md b/docs/docs/auto-docs/components/OrgSettings/AgendaItemCategories/OrganizationAgendaCategoryErrorMocks/README.md deleted file mode 100644 index 170de04bd0..0000000000 --- a/docs/docs/auto-docs/components/OrgSettings/AgendaItemCategories/OrganizationAgendaCategoryErrorMocks/README.md +++ /dev/null @@ -1,12 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / components/OrgSettings/AgendaItemCategories/OrganizationAgendaCategoryErrorMocks - -# components/OrgSettings/AgendaItemCategories/OrganizationAgendaCategoryErrorMocks - -## Variables - -- [MOCKS\_ERROR\_AGENDA\_ITEM\_CATEGORY\_LIST\_QUERY](variables/MOCKS_ERROR_AGENDA_ITEM_CATEGORY_LIST_QUERY.md) -- [MOCKS\_ERROR\_MUTATION](variables/MOCKS_ERROR_MUTATION.md) diff --git a/docs/docs/auto-docs/components/OrgSettings/AgendaItemCategories/OrganizationAgendaCategoryErrorMocks/variables/MOCKS_ERROR_AGENDA_ITEM_CATEGORY_LIST_QUERY.md b/docs/docs/auto-docs/components/OrgSettings/AgendaItemCategories/OrganizationAgendaCategoryErrorMocks/variables/MOCKS_ERROR_AGENDA_ITEM_CATEGORY_LIST_QUERY.md deleted file mode 100644 index efa0957704..0000000000 --- a/docs/docs/auto-docs/components/OrgSettings/AgendaItemCategories/OrganizationAgendaCategoryErrorMocks/variables/MOCKS_ERROR_AGENDA_ITEM_CATEGORY_LIST_QUERY.md +++ /dev/null @@ -1,41 +0,0 @@ -[**talawa-admin**](../../../../../README.md) - -*** - -[talawa-admin](../../../../../modules.md) / [components/OrgSettings/AgendaItemCategories/OrganizationAgendaCategoryErrorMocks](../README.md) / MOCKS\_ERROR\_AGENDA\_ITEM\_CATEGORY\_LIST\_QUERY - -# Variable: MOCKS\_ERROR\_AGENDA\_ITEM\_CATEGORY\_LIST\_QUERY - -> `const` **MOCKS\_ERROR\_AGENDA\_ITEM\_CATEGORY\_LIST\_QUERY**: `object`[] - -Defined in: [src/components/OrgSettings/AgendaItemCategories/OrganizationAgendaCategoryErrorMocks.ts:5](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/OrgSettings/AgendaItemCategories/OrganizationAgendaCategoryErrorMocks.ts#L5) - -## Type declaration - -### error - -> **error**: `Error` - -### request - -> **request**: `object` - -#### request.query - -> **query**: `DocumentNode` = `AGENDA_ITEM_CATEGORY_LIST` - -#### request.variables - -> **variables**: `object` - -#### request.variables.organizationId - -> **organizationId**: `string` = `'123'` - -#### request.variables.where - -> **where**: `object` - -#### request.variables.where.name\_contains - -> **name\_contains**: `string` = `''` diff --git a/docs/docs/auto-docs/components/OrgSettings/AgendaItemCategories/OrganizationAgendaCategoryErrorMocks/variables/MOCKS_ERROR_MUTATION.md b/docs/docs/auto-docs/components/OrgSettings/AgendaItemCategories/OrganizationAgendaCategoryErrorMocks/variables/MOCKS_ERROR_MUTATION.md deleted file mode 100644 index 630aa15018..0000000000 --- a/docs/docs/auto-docs/components/OrgSettings/AgendaItemCategories/OrganizationAgendaCategoryErrorMocks/variables/MOCKS_ERROR_MUTATION.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../../README.md) - -*** - -[talawa-admin](../../../../../modules.md) / [components/OrgSettings/AgendaItemCategories/OrganizationAgendaCategoryErrorMocks](../README.md) / MOCKS\_ERROR\_MUTATION - -# Variable: MOCKS\_ERROR\_MUTATION - -> `const` **MOCKS\_ERROR\_MUTATION**: (\{ `error`: `undefined`; `request`: \{ `query`: `DocumentNode`; `variables`: \{ `input`: `undefined`; `organizationId`: `string`; `where`: \{ `name_contains`: `string`; \}; \}; \}; `result`: \{ `data`: \{ `agendaItemCategoriesByOrganization`: `object`[]; \}; \}; \} \| \{ `error`: `Error`; `request`: \{ `query`: `DocumentNode`; `variables`: \{ `input`: \{ `description`: `string`; `name`: `string`; `organizationId`: `string`; \}; `organizationId`: `undefined`; `where`: `undefined`; \}; \}; `result`: `undefined`; \})[] - -Defined in: [src/components/OrgSettings/AgendaItemCategories/OrganizationAgendaCategoryErrorMocks.ts:20](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/OrgSettings/AgendaItemCategories/OrganizationAgendaCategoryErrorMocks.ts#L20) diff --git a/docs/docs/auto-docs/components/OrgSettings/AgendaItemCategories/OrganizationAgendaCategoryMocks/README.md b/docs/docs/auto-docs/components/OrgSettings/AgendaItemCategories/OrganizationAgendaCategoryMocks/README.md deleted file mode 100644 index 6abcadf0c7..0000000000 --- a/docs/docs/auto-docs/components/OrgSettings/AgendaItemCategories/OrganizationAgendaCategoryMocks/README.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / components/OrgSettings/AgendaItemCategories/OrganizationAgendaCategoryMocks - -# components/OrgSettings/AgendaItemCategories/OrganizationAgendaCategoryMocks - -## Variables - -- [MOCKS](variables/MOCKS.md) diff --git a/docs/docs/auto-docs/components/OrgSettings/AgendaItemCategories/OrganizationAgendaCategoryMocks/variables/MOCKS.md b/docs/docs/auto-docs/components/OrgSettings/AgendaItemCategories/OrganizationAgendaCategoryMocks/variables/MOCKS.md deleted file mode 100644 index 03f8218fd4..0000000000 --- a/docs/docs/auto-docs/components/OrgSettings/AgendaItemCategories/OrganizationAgendaCategoryMocks/variables/MOCKS.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../../README.md) - -*** - -[talawa-admin](../../../../../modules.md) / [components/OrgSettings/AgendaItemCategories/OrganizationAgendaCategoryMocks](../README.md) / MOCKS - -# Variable: MOCKS - -> `const` **MOCKS**: (\{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `input`: `undefined`; `organizationId`: `string`; `where`: \{ `name_contains`: `string`; \}; \}; \}; `result`: \{ `data`: \{ `agendaItemCategoriesByOrganization`: `object`[]; `createAgendaCategory`: `undefined`; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `input`: \{ `description`: `string`; `name`: `string`; `organizationId`: `string`; \}; `organizationId`: `undefined`; `where`: `undefined`; \}; \}; `result`: \{ `data`: \{ `agendaItemCategoriesByOrganization`: `undefined`; `createAgendaCategory`: \{ `_id`: `string`; \}; \}; \}; \})[] - -Defined in: [src/components/OrgSettings/AgendaItemCategories/OrganizationAgendaCategoryMocks.ts:5](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/OrgSettings/AgendaItemCategories/OrganizationAgendaCategoryMocks.ts#L5) diff --git a/docs/docs/auto-docs/components/OrgSettings/General/DeleteOrg/DeleteOrg/README.md b/docs/docs/auto-docs/components/OrgSettings/General/DeleteOrg/DeleteOrg/README.md deleted file mode 100644 index 2930197acf..0000000000 --- a/docs/docs/auto-docs/components/OrgSettings/General/DeleteOrg/DeleteOrg/README.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../../README.md) - -*** - -[talawa-admin](../../../../../modules.md) / components/OrgSettings/General/DeleteOrg/DeleteOrg - -# components/OrgSettings/General/DeleteOrg/DeleteOrg - -## Functions - -- [default](functions/default.md) diff --git a/docs/docs/auto-docs/components/OrgSettings/General/DeleteOrg/DeleteOrg/functions/default.md b/docs/docs/auto-docs/components/OrgSettings/General/DeleteOrg/DeleteOrg/functions/default.md deleted file mode 100644 index cc8686373b..0000000000 --- a/docs/docs/auto-docs/components/OrgSettings/General/DeleteOrg/DeleteOrg/functions/default.md +++ /dev/null @@ -1,24 +0,0 @@ -[**talawa-admin**](../../../../../../README.md) - -*** - -[talawa-admin](../../../../../../modules.md) / [components/OrgSettings/General/DeleteOrg/DeleteOrg](../README.md) / default - -# Function: default() - -> **default**(): `JSX.Element` - -Defined in: [src/components/OrgSettings/General/DeleteOrg/DeleteOrg.tsx:26](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/OrgSettings/General/DeleteOrg/DeleteOrg.tsx#L26) - -A component for deleting an organization. - -It displays a card with a delete button. When the delete button is clicked, -a modal appears asking for confirmation. Depending on the type of organization -(sample or regular), it performs the delete operation and shows appropriate -success or error messages. - -## Returns - -`JSX.Element` - -JSX.Element - The rendered component with delete functionality. diff --git a/docs/docs/auto-docs/components/OrgSettings/General/GeneralSettings/README.md b/docs/docs/auto-docs/components/OrgSettings/General/GeneralSettings/README.md deleted file mode 100644 index 94753fd6ad..0000000000 --- a/docs/docs/auto-docs/components/OrgSettings/General/GeneralSettings/README.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / components/OrgSettings/General/GeneralSettings - -# components/OrgSettings/General/GeneralSettings - -## Functions - -- [default](functions/default.md) diff --git a/docs/docs/auto-docs/components/OrgSettings/General/GeneralSettings/functions/default.md b/docs/docs/auto-docs/components/OrgSettings/General/GeneralSettings/functions/default.md deleted file mode 100644 index 7d0d9e55f8..0000000000 --- a/docs/docs/auto-docs/components/OrgSettings/General/GeneralSettings/functions/default.md +++ /dev/null @@ -1,37 +0,0 @@ -[**talawa-admin**](../../../../../README.md) - -*** - -[talawa-admin](../../../../../modules.md) / [components/OrgSettings/General/GeneralSettings](../README.md) / default - -# Function: default() - -> **default**(`props`, `deprecatedLegacyContext`?): `ReactNode` - -Defined in: [src/components/OrgSettings/General/GeneralSettings.tsx:23](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/OrgSettings/General/GeneralSettings.tsx#L23) - -A component for displaying general settings for an organization. - -## Parameters - -### props - -`InterfaceGeneralSettingsProps` - -The properties passed to the component. - -### deprecatedLegacyContext? - -`any` - -**Deprecated** - -**See** - -[React Docs](https://legacy.reactjs.org/docs/legacy-context.html#referencing-context-in-lifecycle-methods) - -## Returns - -`ReactNode` - -The `GeneralSettings` component. diff --git a/docs/docs/auto-docs/components/OrgSettings/General/OrgProfileFieldSettings/OrgProfileFieldSettings/README.md b/docs/docs/auto-docs/components/OrgSettings/General/OrgProfileFieldSettings/OrgProfileFieldSettings/README.md deleted file mode 100644 index da8152d8d2..0000000000 --- a/docs/docs/auto-docs/components/OrgSettings/General/OrgProfileFieldSettings/OrgProfileFieldSettings/README.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../../README.md) - -*** - -[talawa-admin](../../../../../modules.md) / components/OrgSettings/General/OrgProfileFieldSettings/OrgProfileFieldSettings - -# components/OrgSettings/General/OrgProfileFieldSettings/OrgProfileFieldSettings - -## Functions - -- [default](functions/default.md) diff --git a/docs/docs/auto-docs/components/OrgSettings/General/OrgProfileFieldSettings/OrgProfileFieldSettings/functions/default.md b/docs/docs/auto-docs/components/OrgSettings/General/OrgProfileFieldSettings/OrgProfileFieldSettings/functions/default.md deleted file mode 100644 index 7e5001a40c..0000000000 --- a/docs/docs/auto-docs/components/OrgSettings/General/OrgProfileFieldSettings/OrgProfileFieldSettings/functions/default.md +++ /dev/null @@ -1,22 +0,0 @@ -[**talawa-admin**](../../../../../../README.md) - -*** - -[talawa-admin](../../../../../../modules.md) / [components/OrgSettings/General/OrgProfileFieldSettings/OrgProfileFieldSettings](../README.md) / default - -# Function: default() - -> **default**(): `Element` - -Defined in: [src/components/OrgSettings/General/OrgProfileFieldSettings/OrgProfileFieldSettings.tsx:26](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/OrgSettings/General/OrgProfileFieldSettings/OrgProfileFieldSettings.tsx#L26) - -Component for managing organization profile field settings - -This component allows adding and removing custom fields for an organization. -It displays existing custom fields and provides a form to add new fields. - -## Returns - -`Element` - -JSX.Element representing the organization profile field settings diff --git a/docs/docs/auto-docs/components/OrgSettings/General/OrgUpdate/OrgUpdate/README.md b/docs/docs/auto-docs/components/OrgSettings/General/OrgUpdate/OrgUpdate/README.md deleted file mode 100644 index 3021f67a45..0000000000 --- a/docs/docs/auto-docs/components/OrgSettings/General/OrgUpdate/OrgUpdate/README.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../../README.md) - -*** - -[talawa-admin](../../../../../modules.md) / components/OrgSettings/General/OrgUpdate/OrgUpdate - -# components/OrgSettings/General/OrgUpdate/OrgUpdate - -## Functions - -- [default](functions/default.md) diff --git a/docs/docs/auto-docs/components/OrgSettings/General/OrgUpdate/OrgUpdate/functions/default.md b/docs/docs/auto-docs/components/OrgSettings/General/OrgUpdate/OrgUpdate/functions/default.md deleted file mode 100644 index 743e1ae5c5..0000000000 --- a/docs/docs/auto-docs/components/OrgSettings/General/OrgUpdate/OrgUpdate/functions/default.md +++ /dev/null @@ -1,31 +0,0 @@ -[**talawa-admin**](../../../../../../README.md) - -*** - -[talawa-admin](../../../../../../modules.md) / [components/OrgSettings/General/OrgUpdate/OrgUpdate](../README.md) / default - -# Function: default() - -> **default**(`props`): `JSX.Element` - -Defined in: [src/components/OrgSettings/General/OrgUpdate/OrgUpdate.tsx:36](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/OrgSettings/General/OrgUpdate/OrgUpdate.tsx#L36) - -Component for updating organization details. - -This component allows users to update the organization's name, description, address, -visibility settings, and upload an image. It uses GraphQL mutations and queries to -fetch and update data. - -## Parameters - -### props - -`InterfaceOrgUpdateProps` - -Component props containing the organization ID. - -## Returns - -`JSX.Element` - -The rendered component. diff --git a/docs/docs/auto-docs/components/OrgSettings/General/OrgUpdate/OrgUpdateMocks/README.md b/docs/docs/auto-docs/components/OrgSettings/General/OrgUpdate/OrgUpdateMocks/README.md deleted file mode 100644 index aec709b65b..0000000000 --- a/docs/docs/auto-docs/components/OrgSettings/General/OrgUpdate/OrgUpdateMocks/README.md +++ /dev/null @@ -1,13 +0,0 @@ -[**talawa-admin**](../../../../../README.md) - -*** - -[talawa-admin](../../../../../modules.md) / components/OrgSettings/General/OrgUpdate/OrgUpdateMocks - -# components/OrgSettings/General/OrgUpdate/OrgUpdateMocks - -## Variables - -- [MOCKS](variables/MOCKS.md) -- [MOCKS\_ERROR\_ORGLIST](variables/MOCKS_ERROR_ORGLIST.md) -- [MOCKS\_ERROR\_UPDATE\_ORGLIST](variables/MOCKS_ERROR_UPDATE_ORGLIST.md) diff --git a/docs/docs/auto-docs/components/OrgSettings/General/OrgUpdate/OrgUpdateMocks/variables/MOCKS.md b/docs/docs/auto-docs/components/OrgSettings/General/OrgUpdate/OrgUpdateMocks/variables/MOCKS.md deleted file mode 100644 index 1f62a9166b..0000000000 --- a/docs/docs/auto-docs/components/OrgSettings/General/OrgUpdate/OrgUpdateMocks/variables/MOCKS.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../../../README.md) - -*** - -[talawa-admin](../../../../../../modules.md) / [components/OrgSettings/General/OrgUpdate/OrgUpdateMocks](../README.md) / MOCKS - -# Variable: MOCKS - -> `const` **MOCKS**: (\{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `address`: `undefined`; `description`: `undefined`; `id`: `string`; `image`: `undefined`; `name`: `undefined`; `userRegistrationRequired`: `undefined`; `visibleInSearch`: `undefined`; \}; \}; `result`: \{ `data`: \{ `organizations`: `object`[]; `updateOrganization`: `undefined`; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `address`: \{ `city`: `string`; `countryCode`: `string`; `dependentLocality`: `string`; `line1`: `string`; `line2`: `string`; `postalCode`: `string`; `sortingCode`: `string`; `state`: `string`; \}; `description`: `string`; `id`: `string`; `image`: `File`; `name`: `string`; `userRegistrationRequired`: `boolean`; `visibleInSearch`: `boolean`; \}; \}; `result`: \{ `data`: \{ `organizations`: `undefined`; `updateOrganization`: \{ `_id`: `string`; `address`: \{ `city`: `string`; `countryCode`: `string`; `dependentLocality`: `string`; `line1`: `string`; `line2`: `string`; `postalCode`: `string`; `sortingCode`: `string`; `state`: `string`; \}; `description`: `string`; `name`: `string`; `userRegistrationRequired`: `boolean`; `visibleInSearch`: `boolean`; \}; \}; \}; \})[] - -Defined in: [src/components/OrgSettings/General/OrgUpdate/OrgUpdateMocks.ts:4](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/OrgSettings/General/OrgUpdate/OrgUpdateMocks.ts#L4) diff --git a/docs/docs/auto-docs/components/OrgSettings/General/OrgUpdate/OrgUpdateMocks/variables/MOCKS_ERROR_ORGLIST.md b/docs/docs/auto-docs/components/OrgSettings/General/OrgUpdate/OrgUpdateMocks/variables/MOCKS_ERROR_ORGLIST.md deleted file mode 100644 index 5d07f6faac..0000000000 --- a/docs/docs/auto-docs/components/OrgSettings/General/OrgUpdate/OrgUpdateMocks/variables/MOCKS_ERROR_ORGLIST.md +++ /dev/null @@ -1,33 +0,0 @@ -[**talawa-admin**](../../../../../../README.md) - -*** - -[talawa-admin](../../../../../../modules.md) / [components/OrgSettings/General/OrgUpdate/OrgUpdateMocks](../README.md) / MOCKS\_ERROR\_ORGLIST - -# Variable: MOCKS\_ERROR\_ORGLIST - -> `const` **MOCKS\_ERROR\_ORGLIST**: `object`[] - -Defined in: [src/components/OrgSettings/General/OrgUpdate/OrgUpdateMocks.ts:110](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/OrgSettings/General/OrgUpdate/OrgUpdateMocks.ts#L110) - -## Type declaration - -### error - -> **error**: `Error` - -### request - -> **request**: `object` - -#### request.query - -> **query**: `DocumentNode` = `ORGANIZATIONS_LIST` - -#### request.variables - -> **variables**: `object` - -#### request.variables.id - -> **id**: `string` = `'123'` diff --git a/docs/docs/auto-docs/components/OrgSettings/General/OrgUpdate/OrgUpdateMocks/variables/MOCKS_ERROR_UPDATE_ORGLIST.md b/docs/docs/auto-docs/components/OrgSettings/General/OrgUpdate/OrgUpdateMocks/variables/MOCKS_ERROR_UPDATE_ORGLIST.md deleted file mode 100644 index 656e15841a..0000000000 --- a/docs/docs/auto-docs/components/OrgSettings/General/OrgUpdate/OrgUpdateMocks/variables/MOCKS_ERROR_UPDATE_ORGLIST.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../../../README.md) - -*** - -[talawa-admin](../../../../../../modules.md) / [components/OrgSettings/General/OrgUpdate/OrgUpdateMocks](../README.md) / MOCKS\_ERROR\_UPDATE\_ORGLIST - -# Variable: MOCKS\_ERROR\_UPDATE\_ORGLIST - -> `const` **MOCKS\_ERROR\_UPDATE\_ORGLIST**: (\{ `erorr`: `undefined`; `request`: \{ `query`: `DocumentNode`; `variables`: \{ `address`: `undefined`; `description`: `undefined`; `id`: `string`; `image`: `undefined`; `name`: `undefined`; `userRegistrationRequired`: `undefined`; `visibleInSearch`: `undefined`; \}; \}; `result`: \{ `data`: \{ `organizations`: `object`[]; \}; \}; \} \| \{ `erorr`: `Error`; `request`: \{ `query`: `DocumentNode`; `variables`: \{ `address`: \{ `city`: `string`; `countryCode`: `string`; `dependentLocality`: `string`; `line1`: `string`; `line2`: `string`; `postalCode`: `string`; `sortingCode`: `string`; `state`: `string`; \}; `description`: `string`; `id`: `string`; `image`: `File`; `name`: `string`; `userRegistrationRequired`: `boolean`; `visibleInSearch`: `boolean`; \}; \}; `result`: `undefined`; \})[] - -Defined in: [src/components/OrgSettings/General/OrgUpdate/OrgUpdateMocks.ts:120](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/OrgSettings/General/OrgUpdate/OrgUpdateMocks.ts#L120) diff --git a/docs/docs/auto-docs/components/OrganizationCard/OrganizationCard/README.md b/docs/docs/auto-docs/components/OrganizationCard/OrganizationCard/README.md deleted file mode 100644 index fb6c91285d..0000000000 --- a/docs/docs/auto-docs/components/OrganizationCard/OrganizationCard/README.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / components/OrganizationCard/OrganizationCard - -# components/OrganizationCard/OrganizationCard - -## Functions - -- [default](functions/default.md) diff --git a/docs/docs/auto-docs/components/OrganizationCard/OrganizationCard/functions/default.md b/docs/docs/auto-docs/components/OrganizationCard/OrganizationCard/functions/default.md deleted file mode 100644 index 6a0f3da90a..0000000000 --- a/docs/docs/auto-docs/components/OrganizationCard/OrganizationCard/functions/default.md +++ /dev/null @@ -1,27 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [components/OrganizationCard/OrganizationCard](../README.md) / default - -# Function: default() - -> **default**(`props`): `JSX.Element` - -Defined in: [src/components/OrganizationCard/OrganizationCard.tsx:18](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/OrganizationCard/OrganizationCard.tsx#L18) - -Component to display an organization's card with its image and owner details. - -## Parameters - -### props - -`InterfaceOrganizationCardProps` - -Properties for the organization card. - -## Returns - -`JSX.Element` - -JSX element representing the organization card. diff --git a/docs/docs/auto-docs/components/OrganizationCardStart/OrganizationCardStart/README.md b/docs/docs/auto-docs/components/OrganizationCardStart/OrganizationCardStart/README.md deleted file mode 100644 index bdb5ef1f8b..0000000000 --- a/docs/docs/auto-docs/components/OrganizationCardStart/OrganizationCardStart/README.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / components/OrganizationCardStart/OrganizationCardStart - -# components/OrganizationCardStart/OrganizationCardStart - -## Functions - -- [default](functions/default.md) diff --git a/docs/docs/auto-docs/components/OrganizationCardStart/OrganizationCardStart/functions/default.md b/docs/docs/auto-docs/components/OrganizationCardStart/OrganizationCardStart/functions/default.md deleted file mode 100644 index 39229ba883..0000000000 --- a/docs/docs/auto-docs/components/OrganizationCardStart/OrganizationCardStart/functions/default.md +++ /dev/null @@ -1,25 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [components/OrganizationCardStart/OrganizationCardStart](../README.md) / default - -# Function: default() - -> **default**(`props`): `JSX.Element` - -Defined in: [src/components/OrganizationCardStart/OrganizationCardStart.tsx:18](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/OrganizationCardStart/OrganizationCardStart.tsx#L18) - -Component to display a simplified card for an organization. - -## Parameters - -### props - -`InterfaceOrganizationCardStartProps` - -## Returns - -`JSX.Element` - -JSX element representing the organization card. diff --git a/docs/docs/auto-docs/components/OrganizationDashCards/CardItem/README.md b/docs/docs/auto-docs/components/OrganizationDashCards/CardItem/README.md deleted file mode 100644 index 85c9fc2dc0..0000000000 --- a/docs/docs/auto-docs/components/OrganizationDashCards/CardItem/README.md +++ /dev/null @@ -1,15 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / components/OrganizationDashCards/CardItem - -# components/OrganizationDashCards/CardItem - -## Interfaces - -- [InterfaceCardItem](interfaces/InterfaceCardItem.md) - -## Functions - -- [default](functions/default.md) diff --git a/docs/docs/auto-docs/components/OrganizationDashCards/CardItem/functions/default.md b/docs/docs/auto-docs/components/OrganizationDashCards/CardItem/functions/default.md deleted file mode 100644 index d2c8709bad..0000000000 --- a/docs/docs/auto-docs/components/OrganizationDashCards/CardItem/functions/default.md +++ /dev/null @@ -1,27 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [components/OrganizationDashCards/CardItem](../README.md) / default - -# Function: default() - -> **default**(`props`): `Element` - -Defined in: [src/components/OrganizationDashCards/CardItem.tsx:35](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/OrganizationDashCards/CardItem.tsx#L35) - -Component to display a card item with various types such as Event, Post, or MembershipRequest. - -## Parameters - -### props - -[`InterfaceCardItem`](../interfaces/InterfaceCardItem.md) - -Props for the CardItem component. - -## Returns - -`Element` - -JSX element representing the card item. diff --git a/docs/docs/auto-docs/components/OrganizationDashCards/CardItem/interfaces/InterfaceCardItem.md b/docs/docs/auto-docs/components/OrganizationDashCards/CardItem/interfaces/InterfaceCardItem.md deleted file mode 100644 index 6264f38cec..0000000000 --- a/docs/docs/auto-docs/components/OrganizationDashCards/CardItem/interfaces/InterfaceCardItem.md +++ /dev/null @@ -1,83 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [components/OrganizationDashCards/CardItem](../README.md) / InterfaceCardItem - -# Interface: InterfaceCardItem - -Defined in: [src/components/OrganizationDashCards/CardItem.tsx:14](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/OrganizationDashCards/CardItem.tsx#L14) - -Interface for the CardItem component's props. - -## Properties - -### creator? - -> `optional` **creator**: `object` - -Defined in: [src/components/OrganizationDashCards/CardItem.tsx:20](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/OrganizationDashCards/CardItem.tsx#L20) - -#### \_id - -> **\_id**: `string` - -#### email - -> **email**: `string` - -#### firstName - -> **firstName**: `string` - -#### lastName - -> **lastName**: `string` - -*** - -### enddate? - -> `optional` **enddate**: `string` - -Defined in: [src/components/OrganizationDashCards/CardItem.tsx:19](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/OrganizationDashCards/CardItem.tsx#L19) - -*** - -### location? - -> `optional` **location**: `string` - -Defined in: [src/components/OrganizationDashCards/CardItem.tsx:26](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/OrganizationDashCards/CardItem.tsx#L26) - -*** - -### startdate? - -> `optional` **startdate**: `string` - -Defined in: [src/components/OrganizationDashCards/CardItem.tsx:18](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/OrganizationDashCards/CardItem.tsx#L18) - -*** - -### time? - -> `optional` **time**: `string` - -Defined in: [src/components/OrganizationDashCards/CardItem.tsx:17](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/OrganizationDashCards/CardItem.tsx#L17) - -*** - -### title - -> **title**: `string` - -Defined in: [src/components/OrganizationDashCards/CardItem.tsx:16](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/OrganizationDashCards/CardItem.tsx#L16) - -*** - -### type - -> **type**: `"Event"` \| `"Post"` \| `"MembershipRequest"` - -Defined in: [src/components/OrganizationDashCards/CardItem.tsx:15](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/OrganizationDashCards/CardItem.tsx#L15) diff --git a/docs/docs/auto-docs/components/OrganizationDashCards/CardItemLoading/README.md b/docs/docs/auto-docs/components/OrganizationDashCards/CardItemLoading/README.md deleted file mode 100644 index af5a47e20e..0000000000 --- a/docs/docs/auto-docs/components/OrganizationDashCards/CardItemLoading/README.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / components/OrganizationDashCards/CardItemLoading - -# components/OrganizationDashCards/CardItemLoading - -## Functions - -- [default](functions/default.md) diff --git a/docs/docs/auto-docs/components/OrganizationDashCards/CardItemLoading/functions/default.md b/docs/docs/auto-docs/components/OrganizationDashCards/CardItemLoading/functions/default.md deleted file mode 100644 index a9f12be062..0000000000 --- a/docs/docs/auto-docs/components/OrganizationDashCards/CardItemLoading/functions/default.md +++ /dev/null @@ -1,19 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [components/OrganizationDashCards/CardItemLoading](../README.md) / default - -# Function: default() - -> **default**(): `Element` - -Defined in: [src/components/OrganizationDashCards/CardItemLoading.tsx:8](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/OrganizationDashCards/CardItemLoading.tsx#L8) - -CardItemLoading component is a loading state for the card item. It is used when the data is being fetched. - -## Returns - -`Element` - -JSX.Element diff --git a/docs/docs/auto-docs/components/OrganizationDashCards/DashboardCard/README.md b/docs/docs/auto-docs/components/OrganizationDashCards/DashboardCard/README.md deleted file mode 100644 index c966d0184c..0000000000 --- a/docs/docs/auto-docs/components/OrganizationDashCards/DashboardCard/README.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / components/OrganizationDashCards/DashboardCard - -# components/OrganizationDashCards/DashboardCard - -## Functions - -- [default](functions/default.md) diff --git a/docs/docs/auto-docs/components/OrganizationDashCards/DashboardCard/functions/default.md b/docs/docs/auto-docs/components/OrganizationDashCards/DashboardCard/functions/default.md deleted file mode 100644 index 4589103744..0000000000 --- a/docs/docs/auto-docs/components/OrganizationDashCards/DashboardCard/functions/default.md +++ /dev/null @@ -1,35 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [components/OrganizationDashCards/DashboardCard](../README.md) / default - -# Function: default() - -> **default**(`props`): `Element` - -Defined in: [src/components/OrganizationDashCards/DashboardCard.tsx:13](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/OrganizationDashCards/DashboardCard.tsx#L13) - -Dashboard card component is used to display the card with icon, title and count. - -## Parameters - -### props - -#### count - -`number` - -#### icon - -`ReactNode` - -#### title - -`string` - -## Returns - -`Element` - -Dashboard card component diff --git a/docs/docs/auto-docs/components/OrganizationDashCards/DashboardCardLoading/README.md b/docs/docs/auto-docs/components/OrganizationDashCards/DashboardCardLoading/README.md deleted file mode 100644 index 0229ba496b..0000000000 --- a/docs/docs/auto-docs/components/OrganizationDashCards/DashboardCardLoading/README.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / components/OrganizationDashCards/DashboardCardLoading - -# components/OrganizationDashCards/DashboardCardLoading - -## Functions - -- [default](functions/default.md) diff --git a/docs/docs/auto-docs/components/OrganizationDashCards/DashboardCardLoading/functions/default.md b/docs/docs/auto-docs/components/OrganizationDashCards/DashboardCardLoading/functions/default.md deleted file mode 100644 index 0c9f41857f..0000000000 --- a/docs/docs/auto-docs/components/OrganizationDashCards/DashboardCardLoading/functions/default.md +++ /dev/null @@ -1,19 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [components/OrganizationDashCards/DashboardCardLoading](../README.md) / default - -# Function: default() - -> **default**(): `Element` - -Defined in: [src/components/OrganizationDashCards/DashboardCardLoading.tsx:10](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/OrganizationDashCards/DashboardCardLoading.tsx#L10) - -Dashboard card loading component is a loading state for the dashboard card. It is used when the data is being fetched. - -## Returns - -`Element` - -JSX.Element diff --git a/docs/docs/auto-docs/components/OrganizationScreen/OrganizationScreen/README.md b/docs/docs/auto-docs/components/OrganizationScreen/OrganizationScreen/README.md deleted file mode 100644 index f69f4d0dd9..0000000000 --- a/docs/docs/auto-docs/components/OrganizationScreen/OrganizationScreen/README.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / components/OrganizationScreen/OrganizationScreen - -# components/OrganizationScreen/OrganizationScreen - -## Functions - -- [default](functions/default.md) diff --git a/docs/docs/auto-docs/components/OrganizationScreen/OrganizationScreen/functions/default.md b/docs/docs/auto-docs/components/OrganizationScreen/OrganizationScreen/functions/default.md deleted file mode 100644 index 5920a56c1a..0000000000 --- a/docs/docs/auto-docs/components/OrganizationScreen/OrganizationScreen/functions/default.md +++ /dev/null @@ -1,24 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [components/OrganizationScreen/OrganizationScreen](../README.md) / default - -# Function: default() - -> **default**(): `Element` - -Defined in: [src/components/OrganizationScreen/OrganizationScreen.tsx:37](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/OrganizationScreen/OrganizationScreen.tsx#L37) - -Component for the organization screen - -This component displays the organization screen and handles the layout -including a side drawer, header, and main content area. It adjusts -the layout based on the screen size and shows the appropriate content -based on the route. - -## Returns - -`Element` - -JSX.Element representing the organization screen diff --git a/docs/docs/auto-docs/components/Pagination/Pagination/README.md b/docs/docs/auto-docs/components/Pagination/Pagination/README.md deleted file mode 100644 index e4478da85f..0000000000 --- a/docs/docs/auto-docs/components/Pagination/Pagination/README.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / components/Pagination/Pagination - -# components/Pagination/Pagination - -## Functions - -- [default](functions/default.md) diff --git a/docs/docs/auto-docs/components/Pagination/Pagination/functions/default.md b/docs/docs/auto-docs/components/Pagination/Pagination/functions/default.md deleted file mode 100644 index 3affc60aac..0000000000 --- a/docs/docs/auto-docs/components/Pagination/Pagination/functions/default.md +++ /dev/null @@ -1,31 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [components/Pagination/Pagination](../README.md) / default - -# Function: default() - -> **default**(`props`): `JSX.Element` - -Defined in: [src/components/Pagination/Pagination.tsx:30](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/Pagination/Pagination.tsx#L30) - -Pagination component for navigating between pages in a table. - -This component provides buttons to navigate to the first page, previous page, -next page, and last page of a table. The visibility and functionality of the -buttons are controlled based on the current page and the total number of items. - -## Parameters - -### props - -`InterfaceTablePaginationActionsProps` - -Component properties. - -## Returns - -`JSX.Element` - -The rendered component. diff --git a/docs/docs/auto-docs/components/PaginationList/PaginationList/README.md b/docs/docs/auto-docs/components/PaginationList/PaginationList/README.md deleted file mode 100644 index 97e958ec2f..0000000000 --- a/docs/docs/auto-docs/components/PaginationList/PaginationList/README.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / components/PaginationList/PaginationList - -# components/PaginationList/PaginationList - -## Functions - -- [default](functions/default.md) diff --git a/docs/docs/auto-docs/components/PaginationList/PaginationList/functions/default.md b/docs/docs/auto-docs/components/PaginationList/PaginationList/functions/default.md deleted file mode 100644 index 500015e5e0..0000000000 --- a/docs/docs/auto-docs/components/PaginationList/PaginationList/functions/default.md +++ /dev/null @@ -1,24 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [components/PaginationList/PaginationList](../README.md) / default - -# Function: default() - -> **default**(`__namedParameters`): `Element` - -Defined in: [src/components/PaginationList/PaginationList.tsx:31](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/PaginationList/PaginationList.tsx#L31) - -A component that provides pagination controls for a table. -It uses different pagination styles based on screen size. - -## Parameters - -### \_\_namedParameters - -`InterfacePropsInterface` - -## Returns - -`Element` diff --git a/docs/docs/auto-docs/components/ProfileDropdown/ProfileDropdown/README.md b/docs/docs/auto-docs/components/ProfileDropdown/ProfileDropdown/README.md deleted file mode 100644 index 7730f4adbe..0000000000 --- a/docs/docs/auto-docs/components/ProfileDropdown/ProfileDropdown/README.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / components/ProfileDropdown/ProfileDropdown - -# components/ProfileDropdown/ProfileDropdown - -## Functions - -- [default](functions/default.md) diff --git a/docs/docs/auto-docs/components/ProfileDropdown/ProfileDropdown/functions/default.md b/docs/docs/auto-docs/components/ProfileDropdown/ProfileDropdown/functions/default.md deleted file mode 100644 index efe5f10ca2..0000000000 --- a/docs/docs/auto-docs/components/ProfileDropdown/ProfileDropdown/functions/default.md +++ /dev/null @@ -1,26 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [components/ProfileDropdown/ProfileDropdown](../README.md) / default - -# Function: default() - -> **default**(): `Element` - -Defined in: [src/components/ProfileDropdown/ProfileDropdown.tsx:24](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/ProfileDropdown/ProfileDropdown.tsx#L24) - -Renders a profile dropdown menu for the user. - -This component displays the user's profile picture or an avatar, their name (truncated if necessary), -and their role (SuperAdmin, Admin, or User). It provides options to view the profile or log out. - -- If a user image is available, it displays that; otherwise, it shows an avatar. -- The displayed name is truncated if it exceeds a specified length. -- The logout function revokes the refresh token and clears local storage before redirecting to the home page. - -## Returns - -`Element` - -JSX.Element - The profile dropdown menu. diff --git a/docs/docs/auto-docs/components/RecurrenceOptions/CustomRecurrenceModal/README.md b/docs/docs/auto-docs/components/RecurrenceOptions/CustomRecurrenceModal/README.md deleted file mode 100644 index 905215ebe4..0000000000 --- a/docs/docs/auto-docs/components/RecurrenceOptions/CustomRecurrenceModal/README.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / components/RecurrenceOptions/CustomRecurrenceModal - -# components/RecurrenceOptions/CustomRecurrenceModal - -## Functions - -- [default](functions/default.md) diff --git a/docs/docs/auto-docs/components/RecurrenceOptions/CustomRecurrenceModal/functions/default.md b/docs/docs/auto-docs/components/RecurrenceOptions/CustomRecurrenceModal/functions/default.md deleted file mode 100644 index 35c67c807b..0000000000 --- a/docs/docs/auto-docs/components/RecurrenceOptions/CustomRecurrenceModal/functions/default.md +++ /dev/null @@ -1,41 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [components/RecurrenceOptions/CustomRecurrenceModal](../README.md) / default - -# Function: default() - -> **default**(`props`, `deprecatedLegacyContext`?): `ReactNode` - -Defined in: [src/components/RecurrenceOptions/CustomRecurrenceModal.tsx:54](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/RecurrenceOptions/CustomRecurrenceModal.tsx#L54) - -A modal for setting up custom recurrence rules. - -This component allows users to configure how often an event should repeat, and -when it should end. It includes options for daily, weekly, monthly, and yearly -recurrence, as well as specific end options. - -## Parameters - -### props - -`InterfaceCustomRecurrenceModalProps` - -The props object containing various configurations and state management functions. - -### deprecatedLegacyContext? - -`any` - -**Deprecated** - -**See** - -[React Docs](https://legacy.reactjs.org/docs/legacy-context.html#referencing-context-in-lifecycle-methods) - -## Returns - -`ReactNode` - -The JSX element representing the CustomRecurrenceModal. diff --git a/docs/docs/auto-docs/components/RecurrenceOptions/RecurrenceOptions/README.md b/docs/docs/auto-docs/components/RecurrenceOptions/RecurrenceOptions/README.md deleted file mode 100644 index 64470d030e..0000000000 --- a/docs/docs/auto-docs/components/RecurrenceOptions/RecurrenceOptions/README.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / components/RecurrenceOptions/RecurrenceOptions - -# components/RecurrenceOptions/RecurrenceOptions - -## Functions - -- [default](functions/default.md) diff --git a/docs/docs/auto-docs/components/RecurrenceOptions/RecurrenceOptions/functions/default.md b/docs/docs/auto-docs/components/RecurrenceOptions/RecurrenceOptions/functions/default.md deleted file mode 100644 index aca5644e56..0000000000 --- a/docs/docs/auto-docs/components/RecurrenceOptions/RecurrenceOptions/functions/default.md +++ /dev/null @@ -1,49 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [components/RecurrenceOptions/RecurrenceOptions](../README.md) / default - -# Function: default() - -> **default**(`props`, `deprecatedLegacyContext`?): `ReactNode` - -Defined in: [src/components/RecurrenceOptions/RecurrenceOptions.tsx:49](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/RecurrenceOptions/RecurrenceOptions.tsx#L49) - -Renders a dropdown menu for selecting recurrence options. - -This component allows users to choose various recurrence rules (daily, weekly, monthly, yearly) for a given event. -It displays the current recurrence rule text and provides options to modify it, including a custom recurrence modal. - -The dropdown menu includes options for: -- Daily recurrence -- Weekly recurrence (including a specific day of the week or Monday to Friday) -- Monthly recurrence (on a specific day or occurrence) -- Yearly recurrence -- Custom recurrence (opens a modal for advanced settings) - -The displayed recurrence rule text is truncated if it exceeds a specified length, with an overlay showing the full text on hover. - -## Parameters - -### props - -`InterfaceRecurrenceOptionsProps` - -The properties to configure the recurrence options dropdown. - -### deprecatedLegacyContext? - -`any` - -**Deprecated** - -**See** - -[React Docs](https://legacy.reactjs.org/docs/legacy-context.html#referencing-context-in-lifecycle-methods) - -## Returns - -`ReactNode` - -JSX.Element - The recurrence options dropdown and the custom recurrence modal. diff --git a/docs/docs/auto-docs/components/RequestsTableItem/RequestsTableItem/README.md b/docs/docs/auto-docs/components/RequestsTableItem/RequestsTableItem/README.md deleted file mode 100644 index 86e8b36c33..0000000000 --- a/docs/docs/auto-docs/components/RequestsTableItem/RequestsTableItem/README.md +++ /dev/null @@ -1,15 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / components/RequestsTableItem/RequestsTableItem - -# components/RequestsTableItem/RequestsTableItem - -## Interfaces - -- [InterfaceRequestsListItem](interfaces/InterfaceRequestsListItem.md) - -## Functions - -- [default](functions/default.md) diff --git a/docs/docs/auto-docs/components/RequestsTableItem/RequestsTableItem/functions/default.md b/docs/docs/auto-docs/components/RequestsTableItem/RequestsTableItem/functions/default.md deleted file mode 100644 index f1c2bb4c78..0000000000 --- a/docs/docs/auto-docs/components/RequestsTableItem/RequestsTableItem/functions/default.md +++ /dev/null @@ -1,31 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [components/RequestsTableItem/RequestsTableItem](../README.md) / default - -# Function: default() - -> **default**(`props`): `Element` - -Defined in: [src/components/RequestsTableItem/RequestsTableItem.tsx:45](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/RequestsTableItem/RequestsTableItem.tsx#L45) - -Renders a table row item for a membership request. - -This component displays user details and provides buttons to accept or reject -the membership request. It also handles showing success or error messages using -toast notifications. - -## Parameters - -### props - -`Props` - -The props object containing request details, index, and state reset function. - -## Returns - -`Element` - -The JSX element representing the RequestsTableItem. diff --git a/docs/docs/auto-docs/components/RequestsTableItem/RequestsTableItem/interfaces/InterfaceRequestsListItem.md b/docs/docs/auto-docs/components/RequestsTableItem/RequestsTableItem/interfaces/InterfaceRequestsListItem.md deleted file mode 100644 index f9f913ce6e..0000000000 --- a/docs/docs/auto-docs/components/RequestsTableItem/RequestsTableItem/interfaces/InterfaceRequestsListItem.md +++ /dev/null @@ -1,39 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [components/RequestsTableItem/RequestsTableItem](../README.md) / InterfaceRequestsListItem - -# Interface: InterfaceRequestsListItem - -Defined in: [src/components/RequestsTableItem/RequestsTableItem.tsx:16](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/RequestsTableItem/RequestsTableItem.tsx#L16) - -Represents a membership request in the requests table. - -## Properties - -### \_id - -> **\_id**: `string` - -Defined in: [src/components/RequestsTableItem/RequestsTableItem.tsx:17](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/RequestsTableItem/RequestsTableItem.tsx#L17) - -*** - -### user - -> **user**: `object` - -Defined in: [src/components/RequestsTableItem/RequestsTableItem.tsx:18](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/RequestsTableItem/RequestsTableItem.tsx#L18) - -#### email - -> **email**: `string` - -#### firstName - -> **firstName**: `string` - -#### lastName - -> **lastName**: `string` diff --git a/docs/docs/auto-docs/components/RequestsTableItem/RequestsTableItemMocks/README.md b/docs/docs/auto-docs/components/RequestsTableItem/RequestsTableItemMocks/README.md deleted file mode 100644 index cc799b603d..0000000000 --- a/docs/docs/auto-docs/components/RequestsTableItem/RequestsTableItemMocks/README.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / components/RequestsTableItem/RequestsTableItemMocks - -# components/RequestsTableItem/RequestsTableItemMocks - -## Variables - -- [MOCKS](variables/MOCKS.md) diff --git a/docs/docs/auto-docs/components/RequestsTableItem/RequestsTableItemMocks/variables/MOCKS.md b/docs/docs/auto-docs/components/RequestsTableItem/RequestsTableItemMocks/variables/MOCKS.md deleted file mode 100644 index cf96817245..0000000000 --- a/docs/docs/auto-docs/components/RequestsTableItem/RequestsTableItemMocks/variables/MOCKS.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [components/RequestsTableItem/RequestsTableItemMocks](../README.md) / MOCKS - -# Variable: MOCKS - -> `const` **MOCKS**: (\{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `id`: `string`; \}; \}; `result`: \{ `data`: \{ `acceptMembershipRequest`: \{ `_id`: `string`; \}; `rejectMembershipRequest`: `undefined`; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `id`: `string`; \}; \}; `result`: \{ `data`: \{ `acceptMembershipRequest`: `undefined`; `rejectMembershipRequest`: \{ `_id`: `string`; \}; \}; \}; \})[] - -Defined in: [src/components/RequestsTableItem/RequestsTableItemMocks.ts:6](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/RequestsTableItem/RequestsTableItemMocks.ts#L6) diff --git a/docs/docs/auto-docs/components/SecuredRoute/SecuredRoute/README.md b/docs/docs/auto-docs/components/SecuredRoute/SecuredRoute/README.md deleted file mode 100644 index 3f41aee770..0000000000 --- a/docs/docs/auto-docs/components/SecuredRoute/SecuredRoute/README.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / components/SecuredRoute/SecuredRoute - -# components/SecuredRoute/SecuredRoute - -## Functions - -- [default](functions/default.md) diff --git a/docs/docs/auto-docs/components/SecuredRoute/SecuredRoute/functions/default.md b/docs/docs/auto-docs/components/SecuredRoute/SecuredRoute/functions/default.md deleted file mode 100644 index 1438d14b12..0000000000 --- a/docs/docs/auto-docs/components/SecuredRoute/SecuredRoute/functions/default.md +++ /dev/null @@ -1,22 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [components/SecuredRoute/SecuredRoute](../README.md) / default - -# Function: default() - -> **default**(): `Element` - -Defined in: [src/components/SecuredRoute/SecuredRoute.tsx:16](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/SecuredRoute/SecuredRoute.tsx#L16) - -A route guard that checks if the user is logged in and has the necessary permissions. - -If the user is logged in and has an admin role set, it renders the child routes. -Otherwise, it redirects to the home page or shows a 404 page if admin role is not set. - -## Returns - -`Element` - -The JSX element representing the secured route. diff --git a/docs/docs/auto-docs/components/SuperAdminScreen/SuperAdminScreen/README.md b/docs/docs/auto-docs/components/SuperAdminScreen/SuperAdminScreen/README.md deleted file mode 100644 index 2bc917ec5e..0000000000 --- a/docs/docs/auto-docs/components/SuperAdminScreen/SuperAdminScreen/README.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / components/SuperAdminScreen/SuperAdminScreen - -# components/SuperAdminScreen/SuperAdminScreen - -## Functions - -- [default](functions/default.md) diff --git a/docs/docs/auto-docs/components/SuperAdminScreen/SuperAdminScreen/functions/default.md b/docs/docs/auto-docs/components/SuperAdminScreen/SuperAdminScreen/functions/default.md deleted file mode 100644 index 519e103120..0000000000 --- a/docs/docs/auto-docs/components/SuperAdminScreen/SuperAdminScreen/functions/default.md +++ /dev/null @@ -1,20 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [components/SuperAdminScreen/SuperAdminScreen](../README.md) / default - -# Function: default() - -> **default**(): `Element` - -Defined in: [src/components/SuperAdminScreen/SuperAdminScreen.tsx:15](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/SuperAdminScreen/SuperAdminScreen.tsx#L15) - -The SuperAdminScreen component manages the layout for the Super Admin screen, -including handling the sidebar visibility and page title based on the current route. - -## Returns - -`Element` - -The JSX element representing the Super Admin screen layout. diff --git a/docs/docs/auto-docs/components/TableLoader/TableLoader/README.md b/docs/docs/auto-docs/components/TableLoader/TableLoader/README.md deleted file mode 100644 index 4ea503163f..0000000000 --- a/docs/docs/auto-docs/components/TableLoader/TableLoader/README.md +++ /dev/null @@ -1,15 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / components/TableLoader/TableLoader - -# components/TableLoader/TableLoader - -## Interfaces - -- [InterfaceTableLoader](interfaces/InterfaceTableLoader.md) - -## Functions - -- [default](functions/default.md) diff --git a/docs/docs/auto-docs/components/TableLoader/TableLoader/functions/default.md b/docs/docs/auto-docs/components/TableLoader/TableLoader/functions/default.md deleted file mode 100644 index 5e68fc843e..0000000000 --- a/docs/docs/auto-docs/components/TableLoader/TableLoader/functions/default.md +++ /dev/null @@ -1,29 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [components/TableLoader/TableLoader](../README.md) / default - -# Function: default() - -> **default**(`props`): `Element` - -Defined in: [src/components/TableLoader/TableLoader.tsx:23](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/TableLoader/TableLoader.tsx#L23) - -The TableLoader component displays a loading skeleton for tables. -It shows a specified number of rows and columns as placeholders -with a shimmering effect to indicate loading content. - -## Parameters - -### props - -[`InterfaceTableLoader`](../interfaces/InterfaceTableLoader.md) - -The properties for the TableLoader component. - -## Returns - -`Element` - -The JSX element representing the table loader. diff --git a/docs/docs/auto-docs/components/TableLoader/TableLoader/interfaces/InterfaceTableLoader.md b/docs/docs/auto-docs/components/TableLoader/TableLoader/interfaces/InterfaceTableLoader.md deleted file mode 100644 index c2012703e8..0000000000 --- a/docs/docs/auto-docs/components/TableLoader/TableLoader/interfaces/InterfaceTableLoader.md +++ /dev/null @@ -1,33 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [components/TableLoader/TableLoader](../README.md) / InterfaceTableLoader - -# Interface: InterfaceTableLoader - -Defined in: [src/components/TableLoader/TableLoader.tsx:5](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/TableLoader/TableLoader.tsx#L5) - -## Properties - -### headerTitles? - -> `optional` **headerTitles**: `string`[] - -Defined in: [src/components/TableLoader/TableLoader.tsx:7](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/TableLoader/TableLoader.tsx#L7) - -*** - -### noOfCols? - -> `optional` **noOfCols**: `number` - -Defined in: [src/components/TableLoader/TableLoader.tsx:8](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/TableLoader/TableLoader.tsx#L8) - -*** - -### noOfRows - -> **noOfRows**: `number` - -Defined in: [src/components/TableLoader/TableLoader.tsx:6](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/TableLoader/TableLoader.tsx#L6) diff --git a/docs/docs/auto-docs/components/TagActions/TagActions/README.md b/docs/docs/auto-docs/components/TagActions/TagActions/README.md deleted file mode 100644 index b150d81f56..0000000000 --- a/docs/docs/auto-docs/components/TagActions/TagActions/README.md +++ /dev/null @@ -1,15 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / components/TagActions/TagActions - -# components/TagActions/TagActions - -## Interfaces - -- [InterfaceTagActionsProps](interfaces/InterfaceTagActionsProps.md) - -## Functions - -- [default](functions/default.md) diff --git a/docs/docs/auto-docs/components/TagActions/TagActions/functions/default.md b/docs/docs/auto-docs/components/TagActions/TagActions/functions/default.md deleted file mode 100644 index 9d870ce1c3..0000000000 --- a/docs/docs/auto-docs/components/TagActions/TagActions/functions/default.md +++ /dev/null @@ -1,31 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [components/TagActions/TagActions](../README.md) / default - -# Function: default() - -> **default**(`props`, `deprecatedLegacyContext`?): `ReactNode` - -Defined in: [src/components/TagActions/TagActions.tsx:44](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/TagActions/TagActions.tsx#L44) - -## Parameters - -### props - -[`InterfaceTagActionsProps`](../interfaces/InterfaceTagActionsProps.md) - -### deprecatedLegacyContext? - -`any` - -**Deprecated** - -**See** - -[React Docs](https://legacy.reactjs.org/docs/legacy-context.html#referencing-context-in-lifecycle-methods) - -## Returns - -`ReactNode` diff --git a/docs/docs/auto-docs/components/TagActions/TagActions/interfaces/InterfaceTagActionsProps.md b/docs/docs/auto-docs/components/TagActions/TagActions/interfaces/InterfaceTagActionsProps.md deleted file mode 100644 index ec6b068d83..0000000000 --- a/docs/docs/auto-docs/components/TagActions/TagActions/interfaces/InterfaceTagActionsProps.md +++ /dev/null @@ -1,55 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [components/TagActions/TagActions](../README.md) / InterfaceTagActionsProps - -# Interface: InterfaceTagActionsProps - -Defined in: [src/components/TagActions/TagActions.tsx:36](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/TagActions/TagActions.tsx#L36) - -Props for the `AssignToTags` component. - -## Properties - -### hideTagActionsModal() - -> **hideTagActionsModal**: () => `void` - -Defined in: [src/components/TagActions/TagActions.tsx:38](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/TagActions/TagActions.tsx#L38) - -#### Returns - -`void` - -*** - -### t - -> **t**: `TFunction`\<`"manageTag"`\> - -Defined in: [src/components/TagActions/TagActions.tsx:40](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/TagActions/TagActions.tsx#L40) - -*** - -### tagActionsModalIsOpen - -> **tagActionsModalIsOpen**: `boolean` - -Defined in: [src/components/TagActions/TagActions.tsx:37](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/TagActions/TagActions.tsx#L37) - -*** - -### tagActionType - -> **tagActionType**: [`TagActionType`](../../../../utils/organizationTagsUtils/type-aliases/TagActionType.md) - -Defined in: [src/components/TagActions/TagActions.tsx:39](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/TagActions/TagActions.tsx#L39) - -*** - -### tCommon - -> **tCommon**: `TFunction`\<`"common"`\> - -Defined in: [src/components/TagActions/TagActions.tsx:41](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/TagActions/TagActions.tsx#L41) diff --git a/docs/docs/auto-docs/components/TagActions/TagActionsMocks/README.md b/docs/docs/auto-docs/components/TagActions/TagActionsMocks/README.md deleted file mode 100644 index 039d549e67..0000000000 --- a/docs/docs/auto-docs/components/TagActions/TagActionsMocks/README.md +++ /dev/null @@ -1,13 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / components/TagActions/TagActionsMocks - -# components/TagActions/TagActionsMocks - -## Variables - -- [MOCKS](variables/MOCKS.md) -- [MOCKS\_ERROR\_ORGANIZATION\_TAGS\_QUERY](variables/MOCKS_ERROR_ORGANIZATION_TAGS_QUERY.md) -- [MOCKS\_ERROR\_SUBTAGS\_QUERY](variables/MOCKS_ERROR_SUBTAGS_QUERY.md) diff --git a/docs/docs/auto-docs/components/TagActions/TagActionsMocks/variables/MOCKS.md b/docs/docs/auto-docs/components/TagActions/TagActionsMocks/variables/MOCKS.md deleted file mode 100644 index fc0114a003..0000000000 --- a/docs/docs/auto-docs/components/TagActions/TagActionsMocks/variables/MOCKS.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [components/TagActions/TagActionsMocks](../README.md) / MOCKS - -# Variable: MOCKS - -> `const` **MOCKS**: (\{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `after`: `undefined`; `currentTagId`: `undefined`; `first`: `number`; `id`: `string`; `selectedTagIds`: `undefined`; `where`: \{ `name`: \{ `starts_with`: `string`; \}; \}; \}; \}; `result`: \{ `data`: \{ `assignToUserTags`: `undefined`; `getChildTags`: `undefined`; `organizations`: `object`[]; `removeFromUserTags`: `undefined`; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `after`: `string`; `currentTagId`: `undefined`; `first`: `number`; `id`: `string`; `selectedTagIds`: `undefined`; `where`: \{ `name`: \{ `starts_with`: `string`; \}; \}; \}; \}; `result`: \{ `data`: \{ `assignToUserTags`: `undefined`; `getChildTags`: `undefined`; `organizations`: `object`[]; `removeFromUserTags`: `undefined`; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `after`: `undefined`; `currentTagId`: `undefined`; `first`: `number`; `id`: `string`; `selectedTagIds`: `undefined`; `where`: \{ `name`: \{ `starts_with`: `string`; \}; \}; \}; \}; `result`: \{ `data`: \{ `assignToUserTags`: `undefined`; `getChildTags`: `undefined`; `organizations`: `object`[]; `removeFromUserTags`: `undefined`; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `after`: `undefined`; `currentTagId`: `undefined`; `first`: `number`; `id`: `string`; `selectedTagIds`: `undefined`; `where`: `undefined`; \}; \}; `result`: \{ `data`: \{ `assignToUserTags`: `undefined`; `getChildTags`: \{ `ancestorTags`: `never`[]; `childTags`: \{ `edges`: `object`[]; `pageInfo`: \{ `endCursor`: `string`; `hasNextPage`: `boolean`; `hasPreviousPage`: `boolean`; `startCursor`: `string`; \}; `totalCount`: `number`; \}; `name`: `string`; \}; `organizations`: `undefined`; `removeFromUserTags`: `undefined`; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `after`: `string`; `currentTagId`: `undefined`; `first`: `number`; `id`: `string`; `selectedTagIds`: `undefined`; `where`: `undefined`; \}; \}; `result`: \{ `data`: \{ `assignToUserTags`: `undefined`; `getChildTags`: \{ `ancestorTags`: `never`[]; `childTags`: \{ `edges`: `object`[]; `pageInfo`: \{ `endCursor`: `string`; `hasNextPage`: `boolean`; `hasPreviousPage`: `boolean`; `startCursor`: `string`; \}; `totalCount`: `number`; \}; `name`: `string`; \}; `organizations`: `undefined`; `removeFromUserTags`: `undefined`; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `after`: `undefined`; `currentTagId`: `string`; `first`: `undefined`; `id`: `undefined`; `selectedTagIds`: `string`[]; `where`: `undefined`; \}; \}; `result`: \{ `data`: \{ `assignToUserTags`: \{ `_id`: `string`; \}; `getChildTags`: `undefined`; `organizations`: `undefined`; `removeFromUserTags`: `undefined`; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `after`: `undefined`; `currentTagId`: `string`; `first`: `undefined`; `id`: `undefined`; `selectedTagIds`: `string`[]; `where`: `undefined`; \}; \}; `result`: \{ `data`: \{ `assignToUserTags`: `undefined`; `getChildTags`: `undefined`; `organizations`: `undefined`; `removeFromUserTags`: \{ `_id`: `string`; \}; \}; \}; \})[] - -Defined in: [src/components/TagActions/TagActionsMocks.ts:9](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/TagActions/TagActionsMocks.ts#L9) diff --git a/docs/docs/auto-docs/components/TagActions/TagActionsMocks/variables/MOCKS_ERROR_ORGANIZATION_TAGS_QUERY.md b/docs/docs/auto-docs/components/TagActions/TagActionsMocks/variables/MOCKS_ERROR_ORGANIZATION_TAGS_QUERY.md deleted file mode 100644 index d47e3c4287..0000000000 --- a/docs/docs/auto-docs/components/TagActions/TagActionsMocks/variables/MOCKS_ERROR_ORGANIZATION_TAGS_QUERY.md +++ /dev/null @@ -1,49 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [components/TagActions/TagActionsMocks](../README.md) / MOCKS\_ERROR\_ORGANIZATION\_TAGS\_QUERY - -# Variable: MOCKS\_ERROR\_ORGANIZATION\_TAGS\_QUERY - -> `const` **MOCKS\_ERROR\_ORGANIZATION\_TAGS\_QUERY**: `object`[] - -Defined in: [src/components/TagActions/TagActionsMocks.ts:622](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/TagActions/TagActionsMocks.ts#L622) - -## Type declaration - -### error - -> **error**: `Error` - -### request - -> **request**: `object` - -#### request.query - -> **query**: `DocumentNode` = `ORGANIZATION_USER_TAGS_LIST` - -#### request.variables - -> **variables**: `object` - -#### request.variables.first - -> **first**: `number` = `TAGS_QUERY_DATA_CHUNK_SIZE` - -#### request.variables.id - -> **id**: `string` = `'123'` - -#### request.variables.where - -> **where**: `object` - -#### request.variables.where.name - -> **name**: `object` - -#### request.variables.where.name.starts\_with - -> **starts\_with**: `string` = `''` diff --git a/docs/docs/auto-docs/components/TagActions/TagActionsMocks/variables/MOCKS_ERROR_SUBTAGS_QUERY.md b/docs/docs/auto-docs/components/TagActions/TagActionsMocks/variables/MOCKS_ERROR_SUBTAGS_QUERY.md deleted file mode 100644 index 1ffe547855..0000000000 --- a/docs/docs/auto-docs/components/TagActions/TagActionsMocks/variables/MOCKS_ERROR_SUBTAGS_QUERY.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [components/TagActions/TagActionsMocks](../README.md) / MOCKS\_ERROR\_SUBTAGS\_QUERY - -# Variable: MOCKS\_ERROR\_SUBTAGS\_QUERY - -> `const` **MOCKS\_ERROR\_SUBTAGS\_QUERY**: (\{ `error`: `undefined`; `request`: \{ `query`: `DocumentNode`; `variables`: \{ `first`: `number`; `id`: `string`; `where`: \{ `name`: \{ `starts_with`: `string`; \}; \}; \}; \}; `result`: \{ `data`: \{ `organizations`: `object`[]; \}; \}; \} \| \{ `error`: `Error`; `request`: \{ `query`: `DocumentNode`; `variables`: \{ `first`: `number`; `id`: `string`; `where`: `undefined`; \}; \}; `result`: `undefined`; \})[] - -Defined in: [src/components/TagActions/TagActionsMocks.ts:636](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/TagActions/TagActionsMocks.ts#L636) diff --git a/docs/docs/auto-docs/components/TagActions/TagNode/README.md b/docs/docs/auto-docs/components/TagActions/TagNode/README.md deleted file mode 100644 index 094685e530..0000000000 --- a/docs/docs/auto-docs/components/TagActions/TagNode/README.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / components/TagActions/TagNode - -# components/TagActions/TagNode - -## Functions - -- [default](functions/default.md) diff --git a/docs/docs/auto-docs/components/TagActions/TagNode/functions/default.md b/docs/docs/auto-docs/components/TagActions/TagNode/functions/default.md deleted file mode 100644 index 2ea183aa1a..0000000000 --- a/docs/docs/auto-docs/components/TagActions/TagNode/functions/default.md +++ /dev/null @@ -1,33 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [components/TagActions/TagNode](../README.md) / default - -# Function: default() - -> **default**(`props`, `deprecatedLegacyContext`?): `ReactNode` - -Defined in: [src/components/TagActions/TagNode.tsx:29](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/TagActions/TagNode.tsx#L29) - -Renders the Tags which can be expanded to list subtags. - -## Parameters - -### props - -`InterfaceTagNodeProps` - -### deprecatedLegacyContext? - -`any` - -**Deprecated** - -**See** - -[React Docs](https://legacy.reactjs.org/docs/legacy-context.html#referencing-context-in-lifecycle-methods) - -## Returns - -`ReactNode` diff --git a/docs/docs/auto-docs/components/TagActions/TagNodeMocks/README.md b/docs/docs/auto-docs/components/TagActions/TagNodeMocks/README.md deleted file mode 100644 index a5a0bd060a..0000000000 --- a/docs/docs/auto-docs/components/TagActions/TagNodeMocks/README.md +++ /dev/null @@ -1,12 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / components/TagActions/TagNodeMocks - -# components/TagActions/TagNodeMocks - -## Variables - -- [MOCKS\_ERROR\_SUBTAGS\_QUERY1](variables/MOCKS_ERROR_SUBTAGS_QUERY1.md) -- [MOCKS1](variables/MOCKS1.md) diff --git a/docs/docs/auto-docs/components/TagActions/TagNodeMocks/variables/MOCKS1.md b/docs/docs/auto-docs/components/TagActions/TagNodeMocks/variables/MOCKS1.md deleted file mode 100644 index 1bed854fb5..0000000000 --- a/docs/docs/auto-docs/components/TagActions/TagNodeMocks/variables/MOCKS1.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [components/TagActions/TagNodeMocks](../README.md) / MOCKS1 - -# Variable: MOCKS1 - -> `const` **MOCKS1**: (\{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `after`: `undefined`; `first`: `number`; `id`: `string`; \}; \}; `result`: \{ `data`: \{ `getChildTags`: \{ `__typename`: `string`; `childTags`: \{ `__typename`: `string`; `edges`: `object`[]; `pageInfo`: \{ `__typename`: `string`; `endCursor`: `string`; `hasNextPage`: `boolean`; \}; \}; \}; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `after`: `string`; `first`: `number`; `id`: `string`; \}; \}; `result`: \{ `data`: \{ `getChildTags`: \{ `__typename`: `string`; `childTags`: \{ `__typename`: `string`; `edges`: `object`[]; `pageInfo`: \{ `__typename`: `string`; `endCursor`: `string`; `hasNextPage`: `boolean`; \}; \}; \}; \}; \}; \})[] - -Defined in: [src/components/TagActions/TagNodeMocks.ts:3](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/TagActions/TagNodeMocks.ts#L3) diff --git a/docs/docs/auto-docs/components/TagActions/TagNodeMocks/variables/MOCKS_ERROR_SUBTAGS_QUERY1.md b/docs/docs/auto-docs/components/TagActions/TagNodeMocks/variables/MOCKS_ERROR_SUBTAGS_QUERY1.md deleted file mode 100644 index bd4d3d0dfb..0000000000 --- a/docs/docs/auto-docs/components/TagActions/TagNodeMocks/variables/MOCKS_ERROR_SUBTAGS_QUERY1.md +++ /dev/null @@ -1,37 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [components/TagActions/TagNodeMocks](../README.md) / MOCKS\_ERROR\_SUBTAGS\_QUERY1 - -# Variable: MOCKS\_ERROR\_SUBTAGS\_QUERY1 - -> `const` **MOCKS\_ERROR\_SUBTAGS\_QUERY1**: `object`[] - -Defined in: [src/components/TagActions/TagNodeMocks.ts:64](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/TagActions/TagNodeMocks.ts#L64) - -## Type declaration - -### error - -> **error**: `Error` - -### request - -> **request**: `object` - -#### request.query - -> **query**: `DocumentNode` = `USER_TAG_SUB_TAGS` - -#### request.variables - -> **variables**: `object` - -#### request.variables.first - -> **first**: `number` = `10` - -#### request.variables.id - -> **id**: `string` = `'1'` diff --git a/docs/docs/auto-docs/components/UpdateSession/UpdateSession/README.md b/docs/docs/auto-docs/components/UpdateSession/UpdateSession/README.md deleted file mode 100644 index 803802d4f8..0000000000 --- a/docs/docs/auto-docs/components/UpdateSession/UpdateSession/README.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / components/UpdateSession/UpdateSession - -# components/UpdateSession/UpdateSession - -## Functions - -- [default](functions/default.md) diff --git a/docs/docs/auto-docs/components/UpdateSession/UpdateSession/functions/default.md b/docs/docs/auto-docs/components/UpdateSession/UpdateSession/functions/default.md deleted file mode 100644 index 7ee0b6624f..0000000000 --- a/docs/docs/auto-docs/components/UpdateSession/UpdateSession/functions/default.md +++ /dev/null @@ -1,31 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [components/UpdateSession/UpdateSession](../README.md) / default - -# Function: default() - -> **default**(`props`, `deprecatedLegacyContext`?): `ReactNode` - -Defined in: [src/components/UpdateSession/UpdateSession.tsx:29](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/UpdateSession/UpdateSession.tsx#L29) - -## Parameters - -### props - -`TestInterfaceUpdateTimeoutProps` - -### deprecatedLegacyContext? - -`any` - -**Deprecated** - -**See** - -[React Docs](https://legacy.reactjs.org/docs/legacy-context.html#referencing-context-in-lifecycle-methods) - -## Returns - -`ReactNode` diff --git a/docs/docs/auto-docs/components/UserListCard/UserListCard/README.md b/docs/docs/auto-docs/components/UserListCard/UserListCard/README.md deleted file mode 100644 index c6f01125f2..0000000000 --- a/docs/docs/auto-docs/components/UserListCard/UserListCard/README.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / components/UserListCard/UserListCard - -# components/UserListCard/UserListCard - -## Functions - -- [default](functions/default.md) diff --git a/docs/docs/auto-docs/components/UserListCard/UserListCard/functions/default.md b/docs/docs/auto-docs/components/UserListCard/UserListCard/functions/default.md deleted file mode 100644 index 2202ac6602..0000000000 --- a/docs/docs/auto-docs/components/UserListCard/UserListCard/functions/default.md +++ /dev/null @@ -1,28 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [components/UserListCard/UserListCard](../README.md) / default - -# Function: default() - -> **default**(`props`): `JSX.Element` - -Defined in: [src/components/UserListCard/UserListCard.tsx:27](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/UserListCard/UserListCard.tsx#L27) - -The UserListCard component allows for adding a user as an admin in a specific organization. -It uses a button to trigger a mutation for updating the user's role. - -## Parameters - -### props - -`InterfaceUserListCardProps` - -The properties for the UserListCard component. - -## Returns - -`JSX.Element` - -The JSX element representing the user list card. diff --git a/docs/docs/auto-docs/components/UserPasswordUpdate/UserPasswordUpdate/README.md b/docs/docs/auto-docs/components/UserPasswordUpdate/UserPasswordUpdate/README.md deleted file mode 100644 index f40a70775b..0000000000 --- a/docs/docs/auto-docs/components/UserPasswordUpdate/UserPasswordUpdate/README.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / components/UserPasswordUpdate/UserPasswordUpdate - -# components/UserPasswordUpdate/UserPasswordUpdate - -## Functions - -- [default](functions/default.md) diff --git a/docs/docs/auto-docs/components/UserPasswordUpdate/UserPasswordUpdate/functions/default.md b/docs/docs/auto-docs/components/UserPasswordUpdate/UserPasswordUpdate/functions/default.md deleted file mode 100644 index 4ede6de206..0000000000 --- a/docs/docs/auto-docs/components/UserPasswordUpdate/UserPasswordUpdate/functions/default.md +++ /dev/null @@ -1,38 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [components/UserPasswordUpdate/UserPasswordUpdate](../README.md) / default - -# Function: default() - -> **default**(`props`, `deprecatedLegacyContext`?): `ReactNode` - -Defined in: [src/components/UserPasswordUpdate/UserPasswordUpdate.tsx:23](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/UserPasswordUpdate/UserPasswordUpdate.tsx#L23) - -UserUpdate component allows users to update their passwords. -It handles form submission and communicates with the backend to update the user's password. - -## Parameters - -### props - -`InterfaceUserPasswordUpdateProps` - -The properties for the UserUpdate component. - -### deprecatedLegacyContext? - -`any` - -**Deprecated** - -**See** - -[React Docs](https://legacy.reactjs.org/docs/legacy-context.html#referencing-context-in-lifecycle-methods) - -## Returns - -`ReactNode` - -The JSX element for updating user password. diff --git a/docs/docs/auto-docs/components/UserPasswordUpdate/UserPasswordUpdateMocks/README.md b/docs/docs/auto-docs/components/UserPasswordUpdate/UserPasswordUpdateMocks/README.md deleted file mode 100644 index 3282ccc987..0000000000 --- a/docs/docs/auto-docs/components/UserPasswordUpdate/UserPasswordUpdateMocks/README.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / components/UserPasswordUpdate/UserPasswordUpdateMocks - -# components/UserPasswordUpdate/UserPasswordUpdateMocks - -## Variables - -- [MOCKS](variables/MOCKS.md) diff --git a/docs/docs/auto-docs/components/UserPasswordUpdate/UserPasswordUpdateMocks/variables/MOCKS.md b/docs/docs/auto-docs/components/UserPasswordUpdate/UserPasswordUpdateMocks/variables/MOCKS.md deleted file mode 100644 index 83ed7f2a32..0000000000 --- a/docs/docs/auto-docs/components/UserPasswordUpdate/UserPasswordUpdateMocks/variables/MOCKS.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [components/UserPasswordUpdate/UserPasswordUpdateMocks](../README.md) / MOCKS - -# Variable: MOCKS - -> `const` **MOCKS**: (\{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `confirmNewPassword`: `string`; `newPassword`: `string`; `previousPassword`: `string`; \}; \}; `result`: \{ `data`: \{ `users`: `object`[]; \}; `errors`: `undefined`; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `confirmNewPassword`: `string`; `newPassword`: `string`; `previousPassword`: `string`; \}; \}; `result`: \{ `data`: `undefined`; `errors`: `object`[]; \}; \})[] - -Defined in: [src/components/UserPasswordUpdate/UserPasswordUpdateMocks.ts:3](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/UserPasswordUpdate/UserPasswordUpdateMocks.ts#L3) diff --git a/docs/docs/auto-docs/components/UserPortal/ChatRoom/ChatRoom/README.md b/docs/docs/auto-docs/components/UserPortal/ChatRoom/ChatRoom/README.md deleted file mode 100644 index 278150d222..0000000000 --- a/docs/docs/auto-docs/components/UserPortal/ChatRoom/ChatRoom/README.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / components/UserPortal/ChatRoom/ChatRoom - -# components/UserPortal/ChatRoom/ChatRoom - -## Functions - -- [default](functions/default.md) diff --git a/docs/docs/auto-docs/components/UserPortal/ChatRoom/ChatRoom/functions/default.md b/docs/docs/auto-docs/components/UserPortal/ChatRoom/ChatRoom/functions/default.md deleted file mode 100644 index 661f67002b..0000000000 --- a/docs/docs/auto-docs/components/UserPortal/ChatRoom/ChatRoom/functions/default.md +++ /dev/null @@ -1,21 +0,0 @@ -[**talawa-admin**](../../../../../README.md) - -*** - -[talawa-admin](../../../../../modules.md) / [components/UserPortal/ChatRoom/ChatRoom](../README.md) / default - -# Function: default() - -> **default**(`props`): `JSX.Element` - -Defined in: [src/components/UserPortal/ChatRoom/ChatRoom.tsx:100](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/UserPortal/ChatRoom/ChatRoom.tsx#L100) - -## Parameters - -### props - -`InterfaceChatRoomProps` - -## Returns - -`JSX.Element` diff --git a/docs/docs/auto-docs/components/UserPortal/CommentCard/CommentCard/README.md b/docs/docs/auto-docs/components/UserPortal/CommentCard/CommentCard/README.md deleted file mode 100644 index b611b74f48..0000000000 --- a/docs/docs/auto-docs/components/UserPortal/CommentCard/CommentCard/README.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / components/UserPortal/CommentCard/CommentCard - -# components/UserPortal/CommentCard/CommentCard - -## Functions - -- [default](functions/default.md) diff --git a/docs/docs/auto-docs/components/UserPortal/CommentCard/CommentCard/functions/default.md b/docs/docs/auto-docs/components/UserPortal/CommentCard/CommentCard/functions/default.md deleted file mode 100644 index ff5d7f0180..0000000000 --- a/docs/docs/auto-docs/components/UserPortal/CommentCard/CommentCard/functions/default.md +++ /dev/null @@ -1,30 +0,0 @@ -[**talawa-admin**](../../../../../README.md) - -*** - -[talawa-admin](../../../../../modules.md) / [components/UserPortal/CommentCard/CommentCard](../README.md) / default - -# Function: default() - -> **default**(`props`): `JSX.Element` - -Defined in: [src/components/UserPortal/CommentCard/CommentCard.tsx:51](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/UserPortal/CommentCard/CommentCard.tsx#L51) - -Displays a card for a single comment with options to like or dislike the comment. - -Shows the commenter's name, the comment text, and the number of likes. -Allows the user to like or dislike the comment. The button icon changes based on whether the comment is liked by the user. - -## Parameters - -### props - -`InterfaceCommentCardProps` - -The properties passed to the component. - -## Returns - -`JSX.Element` - -The rendered comment card component. diff --git a/docs/docs/auto-docs/components/UserPortal/ContactCard/ContactCard/README.md b/docs/docs/auto-docs/components/UserPortal/ContactCard/ContactCard/README.md deleted file mode 100644 index 829e0d2ed6..0000000000 --- a/docs/docs/auto-docs/components/UserPortal/ContactCard/ContactCard/README.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / components/UserPortal/ContactCard/ContactCard - -# components/UserPortal/ContactCard/ContactCard - -## Functions - -- [default](functions/default.md) diff --git a/docs/docs/auto-docs/components/UserPortal/ContactCard/ContactCard/functions/default.md b/docs/docs/auto-docs/components/UserPortal/ContactCard/ContactCard/functions/default.md deleted file mode 100644 index 3e37c7c423..0000000000 --- a/docs/docs/auto-docs/components/UserPortal/ContactCard/ContactCard/functions/default.md +++ /dev/null @@ -1,31 +0,0 @@ -[**talawa-admin**](../../../../../README.md) - -*** - -[talawa-admin](../../../../../modules.md) / [components/UserPortal/ContactCard/ContactCard](../README.md) / default - -# Function: default() - -> **default**(`props`): `JSX.Element` - -Defined in: [src/components/UserPortal/ContactCard/ContactCard.tsx:36](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/UserPortal/ContactCard/ContactCard.tsx#L36) - -Displays a card for a contact in a contact list. - -Shows the contact's name, email, and an image or avatar. -The card changes background color based on whether it is selected. -Clicking on the card sets it as the selected contact and updates the contact name. - -## Parameters - -### props - -`InterfaceContactCardProps` - -The properties passed to the component. - -## Returns - -`JSX.Element` - -The rendered contact card component. diff --git a/docs/docs/auto-docs/components/UserPortal/CreateDirectChat/CreateDirectChat/README.md b/docs/docs/auto-docs/components/UserPortal/CreateDirectChat/CreateDirectChat/README.md deleted file mode 100644 index ae31d45ce2..0000000000 --- a/docs/docs/auto-docs/components/UserPortal/CreateDirectChat/CreateDirectChat/README.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / components/UserPortal/CreateDirectChat/CreateDirectChat - -# components/UserPortal/CreateDirectChat/CreateDirectChat - -## Functions - -- [default](functions/default.md) diff --git a/docs/docs/auto-docs/components/UserPortal/CreateDirectChat/CreateDirectChat/functions/default.md b/docs/docs/auto-docs/components/UserPortal/CreateDirectChat/CreateDirectChat/functions/default.md deleted file mode 100644 index 895acaed7f..0000000000 --- a/docs/docs/auto-docs/components/UserPortal/CreateDirectChat/CreateDirectChat/functions/default.md +++ /dev/null @@ -1,21 +0,0 @@ -[**talawa-admin**](../../../../../README.md) - -*** - -[talawa-admin](../../../../../modules.md) / [components/UserPortal/CreateDirectChat/CreateDirectChat](../README.md) / default - -# Function: default() - -> **default**(`__namedParameters`): `JSX.Element` - -Defined in: [src/components/UserPortal/CreateDirectChat/CreateDirectChat.tsx:60](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/UserPortal/CreateDirectChat/CreateDirectChat.tsx#L60) - -## Parameters - -### \_\_namedParameters - -`InterfaceCreateDirectChatProps` - -## Returns - -`JSX.Element` diff --git a/docs/docs/auto-docs/components/UserPortal/CreateGroupChat/CreateGroupChat/README.md b/docs/docs/auto-docs/components/UserPortal/CreateGroupChat/CreateGroupChat/README.md deleted file mode 100644 index e1e42b76cb..0000000000 --- a/docs/docs/auto-docs/components/UserPortal/CreateGroupChat/CreateGroupChat/README.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / components/UserPortal/CreateGroupChat/CreateGroupChat - -# components/UserPortal/CreateGroupChat/CreateGroupChat - -## Functions - -- [default](functions/default.md) diff --git a/docs/docs/auto-docs/components/UserPortal/CreateGroupChat/CreateGroupChat/functions/default.md b/docs/docs/auto-docs/components/UserPortal/CreateGroupChat/CreateGroupChat/functions/default.md deleted file mode 100644 index ad68c544b4..0000000000 --- a/docs/docs/auto-docs/components/UserPortal/CreateGroupChat/CreateGroupChat/functions/default.md +++ /dev/null @@ -1,21 +0,0 @@ -[**talawa-admin**](../../../../../README.md) - -*** - -[talawa-admin](../../../../../modules.md) / [components/UserPortal/CreateGroupChat/CreateGroupChat](../README.md) / default - -# Function: default() - -> **default**(`__namedParameters`): `JSX.Element` - -Defined in: [src/components/UserPortal/CreateGroupChat/CreateGroupChat.tsx:63](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/UserPortal/CreateGroupChat/CreateGroupChat.tsx#L63) - -## Parameters - -### \_\_namedParameters - -`InterfaceCreateGroupChatProps` - -## Returns - -`JSX.Element` diff --git a/docs/docs/auto-docs/components/UserPortal/DonationCard/DonationCard/README.md b/docs/docs/auto-docs/components/UserPortal/DonationCard/DonationCard/README.md deleted file mode 100644 index 0e4045098f..0000000000 --- a/docs/docs/auto-docs/components/UserPortal/DonationCard/DonationCard/README.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / components/UserPortal/DonationCard/DonationCard - -# components/UserPortal/DonationCard/DonationCard - -## Functions - -- [default](functions/default.md) diff --git a/docs/docs/auto-docs/components/UserPortal/DonationCard/DonationCard/functions/default.md b/docs/docs/auto-docs/components/UserPortal/DonationCard/DonationCard/functions/default.md deleted file mode 100644 index ba31328f24..0000000000 --- a/docs/docs/auto-docs/components/UserPortal/DonationCard/DonationCard/functions/default.md +++ /dev/null @@ -1,30 +0,0 @@ -[**talawa-admin**](../../../../../README.md) - -*** - -[talawa-admin](../../../../../modules.md) / [components/UserPortal/DonationCard/DonationCard](../README.md) / default - -# Function: default() - -> **default**(`props`): `JSX.Element` - -Defined in: [src/components/UserPortal/DonationCard/DonationCard.tsx:19](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/UserPortal/DonationCard/DonationCard.tsx#L19) - -Displays a card with details about a donation. - -Shows the donor's name, the amount donated, and the date of the donation. -Includes a button to view more details about the donation. - -## Parameters - -### props - -[`InterfaceDonationCardProps`](../../../../../screens/UserPortal/Donate/Donate/interfaces/InterfaceDonationCardProps.md) - -The properties passed to the component. - -## Returns - -`JSX.Element` - -The rendered donation card component. diff --git a/docs/docs/auto-docs/components/UserPortal/EventCard/EventCard/README.md b/docs/docs/auto-docs/components/UserPortal/EventCard/EventCard/README.md deleted file mode 100644 index 4c08daf4d5..0000000000 --- a/docs/docs/auto-docs/components/UserPortal/EventCard/EventCard/README.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / components/UserPortal/EventCard/EventCard - -# components/UserPortal/EventCard/EventCard - -## Functions - -- [default](functions/default.md) diff --git a/docs/docs/auto-docs/components/UserPortal/EventCard/EventCard/functions/default.md b/docs/docs/auto-docs/components/UserPortal/EventCard/EventCard/functions/default.md deleted file mode 100644 index 681e4619b1..0000000000 --- a/docs/docs/auto-docs/components/UserPortal/EventCard/EventCard/functions/default.md +++ /dev/null @@ -1,31 +0,0 @@ -[**talawa-admin**](../../../../../README.md) - -*** - -[talawa-admin](../../../../../modules.md) / [components/UserPortal/EventCard/EventCard](../README.md) / default - -# Function: default() - -> **default**(`props`): `JSX.Element` - -Defined in: [src/components/UserPortal/EventCard/EventCard.tsx:63](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/UserPortal/EventCard/EventCard.tsx#L63) - -Displays information about an event and provides an option to register for it. - -Shows the event's title, description, location, start and end dates and times, -creator's name, and registration status. Includes a button to register for the event -if the user is not already registered. - -## Parameters - -### props - -`InterfaceEventCardProps` - -The properties for the event card. - -## Returns - -`JSX.Element` - -The event card component. diff --git a/docs/docs/auto-docs/components/UserPortal/OrganizationCard/OrganizationCard/README.md b/docs/docs/auto-docs/components/UserPortal/OrganizationCard/OrganizationCard/README.md deleted file mode 100644 index 25b71e5469..0000000000 --- a/docs/docs/auto-docs/components/UserPortal/OrganizationCard/OrganizationCard/README.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / components/UserPortal/OrganizationCard/OrganizationCard - -# components/UserPortal/OrganizationCard/OrganizationCard - -## Functions - -- [default](functions/default.md) diff --git a/docs/docs/auto-docs/components/UserPortal/OrganizationCard/OrganizationCard/functions/default.md b/docs/docs/auto-docs/components/UserPortal/OrganizationCard/OrganizationCard/functions/default.md deleted file mode 100644 index fa41c4e98e..0000000000 --- a/docs/docs/auto-docs/components/UserPortal/OrganizationCard/OrganizationCard/functions/default.md +++ /dev/null @@ -1,21 +0,0 @@ -[**talawa-admin**](../../../../../README.md) - -*** - -[talawa-admin](../../../../../modules.md) / [components/UserPortal/OrganizationCard/OrganizationCard](../README.md) / default - -# Function: default() - -> **default**(`props`): `JSX.Element` - -Defined in: [src/components/UserPortal/OrganizationCard/OrganizationCard.tsx:73](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/UserPortal/OrganizationCard/OrganizationCard.tsx#L73) - -## Parameters - -### props - -`InterfaceOrganizationCardProps` - -## Returns - -`JSX.Element` diff --git a/docs/docs/auto-docs/components/UserPortal/OrganizationNavbar/OrganizationNavbar/README.md b/docs/docs/auto-docs/components/UserPortal/OrganizationNavbar/OrganizationNavbar/README.md deleted file mode 100644 index 5677238173..0000000000 --- a/docs/docs/auto-docs/components/UserPortal/OrganizationNavbar/OrganizationNavbar/README.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / components/UserPortal/OrganizationNavbar/OrganizationNavbar - -# components/UserPortal/OrganizationNavbar/OrganizationNavbar - -## Functions - -- [default](functions/default.md) diff --git a/docs/docs/auto-docs/components/UserPortal/OrganizationNavbar/OrganizationNavbar/functions/default.md b/docs/docs/auto-docs/components/UserPortal/OrganizationNavbar/OrganizationNavbar/functions/default.md deleted file mode 100644 index de9bed5878..0000000000 --- a/docs/docs/auto-docs/components/UserPortal/OrganizationNavbar/OrganizationNavbar/functions/default.md +++ /dev/null @@ -1,33 +0,0 @@ -[**talawa-admin**](../../../../../README.md) - -*** - -[talawa-admin](../../../../../modules.md) / [components/UserPortal/OrganizationNavbar/OrganizationNavbar](../README.md) / default - -# Function: default() - -> **default**(`props`): `JSX.Element` - -Defined in: [src/components/UserPortal/OrganizationNavbar/OrganizationNavbar.tsx:44](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/UserPortal/OrganizationNavbar/OrganizationNavbar.tsx#L44) - -Displays the organization navbar with navigation options, user settings, and language selection. - -The navbar includes: -- Organization branding and name. -- Navigation links for various plugins based on user permissions. -- Language dropdown for changing the interface language. -- User dropdown for accessing settings and logging out. - -## Parameters - -### props - -`InterfaceNavbarProps` - -The properties for the navbar. - -## Returns - -`JSX.Element` - -The organization navbar component. diff --git a/docs/docs/auto-docs/components/UserPortal/OrganizationSidebar/OrganizationSidebar/README.md b/docs/docs/auto-docs/components/UserPortal/OrganizationSidebar/OrganizationSidebar/README.md deleted file mode 100644 index 91d4321195..0000000000 --- a/docs/docs/auto-docs/components/UserPortal/OrganizationSidebar/OrganizationSidebar/README.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / components/UserPortal/OrganizationSidebar/OrganizationSidebar - -# components/UserPortal/OrganizationSidebar/OrganizationSidebar - -## Functions - -- [default](functions/default.md) diff --git a/docs/docs/auto-docs/components/UserPortal/OrganizationSidebar/OrganizationSidebar/functions/default.md b/docs/docs/auto-docs/components/UserPortal/OrganizationSidebar/OrganizationSidebar/functions/default.md deleted file mode 100644 index 9a63284d59..0000000000 --- a/docs/docs/auto-docs/components/UserPortal/OrganizationSidebar/OrganizationSidebar/functions/default.md +++ /dev/null @@ -1,29 +0,0 @@ -[**talawa-admin**](../../../../../README.md) - -*** - -[talawa-admin](../../../../../modules.md) / [components/UserPortal/OrganizationSidebar/OrganizationSidebar](../README.md) / default - -# Function: default() - -> **default**(): `JSX.Element` - -Defined in: [src/components/UserPortal/OrganizationSidebar/OrganizationSidebar.tsx:36](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/UserPortal/OrganizationSidebar/OrganizationSidebar.tsx#L36) - -OrganizationSidebar displays the sidebar for an organization, showing a list of members and events. - -This component fetches and displays: -- The top 3 members of the organization with their images and names. -- The top 3 upcoming events for the organization with their titles, start, and end dates. - -It includes: -- A link to view all members. -- A link to view all events. - -The sidebar handles loading states and displays appropriate messages while data is being fetched. - -## Returns - -`JSX.Element` - -JSX.Element representing the organization sidebar. diff --git a/docs/docs/auto-docs/components/UserPortal/PeopleCard/PeopleCard/README.md b/docs/docs/auto-docs/components/UserPortal/PeopleCard/PeopleCard/README.md deleted file mode 100644 index 8440febd7f..0000000000 --- a/docs/docs/auto-docs/components/UserPortal/PeopleCard/PeopleCard/README.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / components/UserPortal/PeopleCard/PeopleCard - -# components/UserPortal/PeopleCard/PeopleCard - -## Functions - -- [default](functions/default.md) diff --git a/docs/docs/auto-docs/components/UserPortal/PeopleCard/PeopleCard/functions/default.md b/docs/docs/auto-docs/components/UserPortal/PeopleCard/PeopleCard/functions/default.md deleted file mode 100644 index a6f86fd2ff..0000000000 --- a/docs/docs/auto-docs/components/UserPortal/PeopleCard/PeopleCard/functions/default.md +++ /dev/null @@ -1,34 +0,0 @@ -[**talawa-admin**](../../../../../README.md) - -*** - -[talawa-admin](../../../../../modules.md) / [components/UserPortal/PeopleCard/PeopleCard](../README.md) / default - -# Function: default() - -> **default**(`props`): `JSX.Element` - -Defined in: [src/components/UserPortal/PeopleCard/PeopleCard.tsx:30](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/UserPortal/PeopleCard/PeopleCard.tsx#L30) - -PeopleCard component displays information about a person within an organization. - -It includes: -- An image of the person or a default image if none is provided. -- The serial number of the person. -- The person's name. -- The person's email address. -- The person's role within the organization, styled with a border. - -## Parameters - -### props - -`InterfaceOrganizationCardProps` - -The properties passed to the component. - -## Returns - -`JSX.Element` - -JSX.Element representing a card with the person's details. diff --git a/docs/docs/auto-docs/components/UserPortal/PostCard/PostCard/README.md b/docs/docs/auto-docs/components/UserPortal/PostCard/PostCard/README.md deleted file mode 100644 index 741a0eada0..0000000000 --- a/docs/docs/auto-docs/components/UserPortal/PostCard/PostCard/README.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / components/UserPortal/PostCard/PostCard - -# components/UserPortal/PostCard/PostCard - -## Functions - -- [default](functions/default.md) diff --git a/docs/docs/auto-docs/components/UserPortal/PostCard/PostCard/functions/default.md b/docs/docs/auto-docs/components/UserPortal/PostCard/PostCard/functions/default.md deleted file mode 100644 index 5647ad973d..0000000000 --- a/docs/docs/auto-docs/components/UserPortal/PostCard/PostCard/functions/default.md +++ /dev/null @@ -1,34 +0,0 @@ -[**talawa-admin**](../../../../../README.md) - -*** - -[talawa-admin](../../../../../modules.md) / [components/UserPortal/PostCard/PostCard](../README.md) / default - -# Function: default() - -> **default**(`props`): `JSX.Element` - -Defined in: [src/components/UserPortal/PostCard/PostCard.tsx:69](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/UserPortal/PostCard/PostCard.tsx#L69) - -PostCard component displays an individual post, including its details, interactions, and comments. - -The component allows users to: -- View the post's details in a modal. -- Edit or delete the post. -- Like or unlike the post. -- Add comments to the post. -- Like or dislike individual comments. - -## Parameters - -### props - -[`InterfacePostCard`](../../../../../utils/interfaces/interfaces/InterfacePostCard.md) - -The properties passed to the component including post details, comments, and related actions. - -## Returns - -`JSX.Element` - -JSX.Element representing a post card with interactive features. diff --git a/docs/docs/auto-docs/components/UserPortal/PromotedPost/PromotedPost/README.md b/docs/docs/auto-docs/components/UserPortal/PromotedPost/PromotedPost/README.md deleted file mode 100644 index c906e91831..0000000000 --- a/docs/docs/auto-docs/components/UserPortal/PromotedPost/PromotedPost/README.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / components/UserPortal/PromotedPost/PromotedPost - -# components/UserPortal/PromotedPost/PromotedPost - -## Functions - -- [default](functions/default.md) diff --git a/docs/docs/auto-docs/components/UserPortal/PromotedPost/PromotedPost/functions/default.md b/docs/docs/auto-docs/components/UserPortal/PromotedPost/PromotedPost/functions/default.md deleted file mode 100644 index b91ad7c51a..0000000000 --- a/docs/docs/auto-docs/components/UserPortal/PromotedPost/PromotedPost/functions/default.md +++ /dev/null @@ -1,32 +0,0 @@ -[**talawa-admin**](../../../../../README.md) - -*** - -[talawa-admin](../../../../../modules.md) / [components/UserPortal/PromotedPost/PromotedPost](../README.md) / default - -# Function: default() - -> **default**(`props`): `JSX.Element` - -Defined in: [src/components/UserPortal/PromotedPost/PromotedPost.tsx:23](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/UserPortal/PromotedPost/PromotedPost.tsx#L23) - -PromotedPost component displays a card representing promoted content. - -This component includes: -- A header with a star icon indicating the content is promoted. -- A title and description of the promoted content. -- An optional image associated with the promoted content. - -## Parameters - -### props - -`InterfacePostCardProps` - -Properties passed to the component including an image, title, and ID. - -## Returns - -`JSX.Element` - -JSX.Element representing a card with promoted content. diff --git a/docs/docs/auto-docs/components/UserPortal/Register/Register/README.md b/docs/docs/auto-docs/components/UserPortal/Register/Register/README.md deleted file mode 100644 index 5df2315aa1..0000000000 --- a/docs/docs/auto-docs/components/UserPortal/Register/Register/README.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / components/UserPortal/Register/Register - -# components/UserPortal/Register/Register - -## Functions - -- [default](functions/default.md) diff --git a/docs/docs/auto-docs/components/UserPortal/Register/Register/functions/default.md b/docs/docs/auto-docs/components/UserPortal/Register/Register/functions/default.md deleted file mode 100644 index 365f492cd2..0000000000 --- a/docs/docs/auto-docs/components/UserPortal/Register/Register/functions/default.md +++ /dev/null @@ -1,21 +0,0 @@ -[**talawa-admin**](../../../../../README.md) - -*** - -[talawa-admin](../../../../../modules.md) / [components/UserPortal/Register/Register](../README.md) / default - -# Function: default() - -> **default**(`props`): `JSX.Element` - -Defined in: [src/components/UserPortal/Register/Register.tsx:22](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/UserPortal/Register/Register.tsx#L22) - -## Parameters - -### props - -`InterfaceRegisterProps` - -## Returns - -`JSX.Element` diff --git a/docs/docs/auto-docs/components/UserPortal/SecuredRouteForUser/SecuredRouteForUser/README.md b/docs/docs/auto-docs/components/UserPortal/SecuredRouteForUser/SecuredRouteForUser/README.md deleted file mode 100644 index 3e3da099d0..0000000000 --- a/docs/docs/auto-docs/components/UserPortal/SecuredRouteForUser/SecuredRouteForUser/README.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / components/UserPortal/SecuredRouteForUser/SecuredRouteForUser - -# components/UserPortal/SecuredRouteForUser/SecuredRouteForUser - -## Functions - -- [default](functions/default.md) diff --git a/docs/docs/auto-docs/components/UserPortal/SecuredRouteForUser/SecuredRouteForUser/functions/default.md b/docs/docs/auto-docs/components/UserPortal/SecuredRouteForUser/SecuredRouteForUser/functions/default.md deleted file mode 100644 index 6dd1a023a1..0000000000 --- a/docs/docs/auto-docs/components/UserPortal/SecuredRouteForUser/SecuredRouteForUser/functions/default.md +++ /dev/null @@ -1,22 +0,0 @@ -[**talawa-admin**](../../../../../README.md) - -*** - -[talawa-admin](../../../../../modules.md) / [components/UserPortal/SecuredRouteForUser/SecuredRouteForUser](../README.md) / default - -# Function: default() - -> **default**(): `Element` - -Defined in: [src/components/UserPortal/SecuredRouteForUser/SecuredRouteForUser.tsx:14](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/UserPortal/SecuredRouteForUser/SecuredRouteForUser.tsx#L14) - -A component that guards routes by checking if the user is logged in. -If the user is logged in and does not have 'AdminFor' set, the child routes are rendered. -If the user is not logged in, they are redirected to the homepage. -If the user is logged in but has 'AdminFor' set, a 404 page is shown. - -## Returns - -`Element` - -JSX.Element - Rendered component based on user authentication and role. diff --git a/docs/docs/auto-docs/components/UserPortal/StartPostModal/StartPostModal/README.md b/docs/docs/auto-docs/components/UserPortal/StartPostModal/StartPostModal/README.md deleted file mode 100644 index 0a50b6de47..0000000000 --- a/docs/docs/auto-docs/components/UserPortal/StartPostModal/StartPostModal/README.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / components/UserPortal/StartPostModal/StartPostModal - -# components/UserPortal/StartPostModal/StartPostModal - -## Functions - -- [default](functions/default.md) diff --git a/docs/docs/auto-docs/components/UserPortal/StartPostModal/StartPostModal/functions/default.md b/docs/docs/auto-docs/components/UserPortal/StartPostModal/StartPostModal/functions/default.md deleted file mode 100644 index 432bbf2b26..0000000000 --- a/docs/docs/auto-docs/components/UserPortal/StartPostModal/StartPostModal/functions/default.md +++ /dev/null @@ -1,30 +0,0 @@ -[**talawa-admin**](../../../../../README.md) - -*** - -[talawa-admin](../../../../../modules.md) / [components/UserPortal/StartPostModal/StartPostModal](../README.md) / default - -# Function: default() - -> **default**(`__namedParameters`): `Element` - -Defined in: [src/components/UserPortal/StartPostModal/StartPostModal.tsx:40](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/UserPortal/StartPostModal/StartPostModal.tsx#L40) - -A modal component for creating a new post. - -This modal includes: -- A form where users can input the content of the post. -- A preview of the image if provided. -- User's profile image and name displayed in the modal header. - -## Parameters - -### \_\_namedParameters - -`InterfaceStartPostModalProps` - -## Returns - -`Element` - -JSX.Element - The rendered modal component. diff --git a/docs/docs/auto-docs/components/UserPortal/UserNavbar/UserNavbar/README.md b/docs/docs/auto-docs/components/UserPortal/UserNavbar/UserNavbar/README.md deleted file mode 100644 index e5c8408b35..0000000000 --- a/docs/docs/auto-docs/components/UserPortal/UserNavbar/UserNavbar/README.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / components/UserPortal/UserNavbar/UserNavbar - -# components/UserPortal/UserNavbar/UserNavbar - -## Functions - -- [default](functions/default.md) diff --git a/docs/docs/auto-docs/components/UserPortal/UserNavbar/UserNavbar/functions/default.md b/docs/docs/auto-docs/components/UserPortal/UserNavbar/UserNavbar/functions/default.md deleted file mode 100644 index 8a65f38f03..0000000000 --- a/docs/docs/auto-docs/components/UserPortal/UserNavbar/UserNavbar/functions/default.md +++ /dev/null @@ -1,24 +0,0 @@ -[**talawa-admin**](../../../../../README.md) - -*** - -[talawa-admin](../../../../../modules.md) / [components/UserPortal/UserNavbar/UserNavbar](../README.md) / default - -# Function: default() - -> **default**(): `JSX.Element` - -Defined in: [src/components/UserPortal/UserNavbar/UserNavbar.tsx:26](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/UserPortal/UserNavbar/UserNavbar.tsx#L26) - -Navbar component for user-specific actions and settings. - -This component provides: -- A branding image and name. -- A dropdown for language selection. -- A dropdown for user actions including profile settings and logout. - -## Returns - -`JSX.Element` - -JSX.Element - The rendered Navbar component. diff --git a/docs/docs/auto-docs/components/UserPortal/UserProfile/EventsAttendedByUser/README.md b/docs/docs/auto-docs/components/UserPortal/UserProfile/EventsAttendedByUser/README.md deleted file mode 100644 index f6715014d5..0000000000 --- a/docs/docs/auto-docs/components/UserPortal/UserProfile/EventsAttendedByUser/README.md +++ /dev/null @@ -1,17 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / components/UserPortal/UserProfile/EventsAttendedByUser - -# components/UserPortal/UserProfile/EventsAttendedByUser - -## Functions - -- [EventsAttendedByUser](functions/EventsAttendedByUser.md) - -## References - -### default - -Renames and re-exports [EventsAttendedByUser](functions/EventsAttendedByUser.md) diff --git a/docs/docs/auto-docs/components/UserPortal/UserProfile/EventsAttendedByUser/functions/EventsAttendedByUser.md b/docs/docs/auto-docs/components/UserPortal/UserProfile/EventsAttendedByUser/functions/EventsAttendedByUser.md deleted file mode 100644 index 0e477d6dac..0000000000 --- a/docs/docs/auto-docs/components/UserPortal/UserProfile/EventsAttendedByUser/functions/EventsAttendedByUser.md +++ /dev/null @@ -1,31 +0,0 @@ -[**talawa-admin**](../../../../../README.md) - -*** - -[talawa-admin](../../../../../modules.md) / [components/UserPortal/UserProfile/EventsAttendedByUser](../README.md) / EventsAttendedByUser - -# Function: EventsAttendedByUser() - -> **EventsAttendedByUser**(`props`, `deprecatedLegacyContext`?): `ReactNode` - -Defined in: [src/components/UserPortal/UserProfile/EventsAttendedByUser.tsx:31](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/UserPortal/UserProfile/EventsAttendedByUser.tsx#L31) - -## Parameters - -### props - -`InterfaceUser` - -### deprecatedLegacyContext? - -`any` - -**Deprecated** - -**See** - -[React Docs](https://legacy.reactjs.org/docs/legacy-context.html#referencing-context-in-lifecycle-methods) - -## Returns - -`ReactNode` diff --git a/docs/docs/auto-docs/components/UserPortal/UserProfile/UserAddressFields/README.md b/docs/docs/auto-docs/components/UserPortal/UserProfile/UserAddressFields/README.md deleted file mode 100644 index fcf8648765..0000000000 --- a/docs/docs/auto-docs/components/UserPortal/UserProfile/UserAddressFields/README.md +++ /dev/null @@ -1,17 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / components/UserPortal/UserProfile/UserAddressFields - -# components/UserPortal/UserProfile/UserAddressFields - -## Functions - -- [UserAddressFields](functions/UserAddressFields.md) - -## References - -### default - -Renames and re-exports [UserAddressFields](functions/UserAddressFields.md) diff --git a/docs/docs/auto-docs/components/UserPortal/UserProfile/UserAddressFields/functions/UserAddressFields.md b/docs/docs/auto-docs/components/UserPortal/UserProfile/UserAddressFields/functions/UserAddressFields.md deleted file mode 100644 index 58af4f4c39..0000000000 --- a/docs/docs/auto-docs/components/UserPortal/UserProfile/UserAddressFields/functions/UserAddressFields.md +++ /dev/null @@ -1,38 +0,0 @@ -[**talawa-admin**](../../../../../README.md) - -*** - -[talawa-admin](../../../../../modules.md) / [components/UserPortal/UserProfile/UserAddressFields](../README.md) / UserAddressFields - -# Function: UserAddressFields() - -> **UserAddressFields**(`props`, `deprecatedLegacyContext`?): `ReactNode` - -Defined in: [src/components/UserPortal/UserProfile/UserAddressFields.tsx:26](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/UserPortal/UserProfile/UserAddressFields.tsx#L26) - -Form component containing address-related input fields for user profile -Includes fields for address, city, state, and country - -## Parameters - -### props - -`InterfaceUserAddressFieldsProps` - -Component props - -### deprecatedLegacyContext? - -`any` - -**Deprecated** - -**See** - -[React Docs](https://legacy.reactjs.org/docs/legacy-context.html#referencing-context-in-lifecycle-methods) - -## Returns - -`ReactNode` - -Form group with address input fields diff --git a/docs/docs/auto-docs/components/UserPortal/UserSidebar/UserSidebar/README.md b/docs/docs/auto-docs/components/UserPortal/UserSidebar/UserSidebar/README.md deleted file mode 100644 index 6dba28665f..0000000000 --- a/docs/docs/auto-docs/components/UserPortal/UserSidebar/UserSidebar/README.md +++ /dev/null @@ -1,15 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / components/UserPortal/UserSidebar/UserSidebar - -# components/UserPortal/UserSidebar/UserSidebar - -## Interfaces - -- [InterfaceUserSidebarProps](interfaces/InterfaceUserSidebarProps.md) - -## Functions - -- [default](functions/default.md) diff --git a/docs/docs/auto-docs/components/UserPortal/UserSidebar/UserSidebar/functions/default.md b/docs/docs/auto-docs/components/UserPortal/UserSidebar/UserSidebar/functions/default.md deleted file mode 100644 index 3cf8cfb938..0000000000 --- a/docs/docs/auto-docs/components/UserPortal/UserSidebar/UserSidebar/functions/default.md +++ /dev/null @@ -1,30 +0,0 @@ -[**talawa-admin**](../../../../../README.md) - -*** - -[talawa-admin](../../../../../modules.md) / [components/UserPortal/UserSidebar/UserSidebar](../README.md) / default - -# Function: default() - -> **default**(`__namedParameters`): `Element` - -Defined in: [src/components/UserPortal/UserSidebar/UserSidebar.tsx:28](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/UserPortal/UserSidebar/UserSidebar.tsx#L28) - -Sidebar component for user navigation, including links to organizations and settings. - -Provides: -- A logo and title for the sidebar. -- Navigation buttons for "My Organizations" and "Settings". -- Dynamic styling based on the active route. - -## Parameters - -### \_\_namedParameters - -[`InterfaceUserSidebarProps`](../interfaces/InterfaceUserSidebarProps.md) - -## Returns - -`Element` - -JSX.Element - The rendered sidebar component. diff --git a/docs/docs/auto-docs/components/UserPortal/UserSidebar/UserSidebar/interfaces/InterfaceUserSidebarProps.md b/docs/docs/auto-docs/components/UserPortal/UserSidebar/UserSidebar/interfaces/InterfaceUserSidebarProps.md deleted file mode 100644 index ae51b9bc0d..0000000000 --- a/docs/docs/auto-docs/components/UserPortal/UserSidebar/UserSidebar/interfaces/InterfaceUserSidebarProps.md +++ /dev/null @@ -1,25 +0,0 @@ -[**talawa-admin**](../../../../../README.md) - -*** - -[talawa-admin](../../../../../modules.md) / [components/UserPortal/UserSidebar/UserSidebar](../README.md) / InterfaceUserSidebarProps - -# Interface: InterfaceUserSidebarProps - -Defined in: [src/components/UserPortal/UserSidebar/UserSidebar.tsx:10](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/UserPortal/UserSidebar/UserSidebar.tsx#L10) - -## Properties - -### hideDrawer - -> **hideDrawer**: `null` \| `boolean` - -Defined in: [src/components/UserPortal/UserSidebar/UserSidebar.tsx:11](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/UserPortal/UserSidebar/UserSidebar.tsx#L11) - -*** - -### setHideDrawer - -> **setHideDrawer**: `Dispatch`\<`SetStateAction`\<`null` \| `boolean`\>\> - -Defined in: [src/components/UserPortal/UserSidebar/UserSidebar.tsx:12](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/UserPortal/UserSidebar/UserSidebar.tsx#L12) diff --git a/docs/docs/auto-docs/components/UserPortal/UserSidebarOrg/UserSidebarOrg/README.md b/docs/docs/auto-docs/components/UserPortal/UserSidebarOrg/UserSidebarOrg/README.md deleted file mode 100644 index 5fc2924076..0000000000 --- a/docs/docs/auto-docs/components/UserPortal/UserSidebarOrg/UserSidebarOrg/README.md +++ /dev/null @@ -1,15 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / components/UserPortal/UserSidebarOrg/UserSidebarOrg - -# components/UserPortal/UserSidebarOrg/UserSidebarOrg - -## Interfaces - -- [InterfaceUserSidebarOrgProps](interfaces/InterfaceUserSidebarOrgProps.md) - -## Functions - -- [default](functions/default.md) diff --git a/docs/docs/auto-docs/components/UserPortal/UserSidebarOrg/UserSidebarOrg/functions/default.md b/docs/docs/auto-docs/components/UserPortal/UserSidebarOrg/UserSidebarOrg/functions/default.md deleted file mode 100644 index feb7df325f..0000000000 --- a/docs/docs/auto-docs/components/UserPortal/UserSidebarOrg/UserSidebarOrg/functions/default.md +++ /dev/null @@ -1,30 +0,0 @@ -[**talawa-admin**](../../../../../README.md) - -*** - -[talawa-admin](../../../../../modules.md) / [components/UserPortal/UserSidebarOrg/UserSidebarOrg](../README.md) / default - -# Function: default() - -> **default**(`__namedParameters`): `Element` - -Defined in: [src/components/UserPortal/UserSidebarOrg/UserSidebarOrg.tsx:39](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/UserPortal/UserSidebarOrg/UserSidebarOrg.tsx#L39) - -Sidebar component for user navigation within an organization. - -Provides: -- Branding with the Talawa logo. -- Displays the current organization's details. -- Navigation options with links and collapsible dropdowns. - -## Parameters - -### \_\_namedParameters - -[`InterfaceUserSidebarOrgProps`](../interfaces/InterfaceUserSidebarOrgProps.md) - -## Returns - -`Element` - -JSX.Element - The rendered sidebar component. diff --git a/docs/docs/auto-docs/components/UserPortal/UserSidebarOrg/UserSidebarOrg/interfaces/InterfaceUserSidebarOrgProps.md b/docs/docs/auto-docs/components/UserPortal/UserSidebarOrg/UserSidebarOrg/interfaces/InterfaceUserSidebarOrgProps.md deleted file mode 100644 index 4cd8b26e6c..0000000000 --- a/docs/docs/auto-docs/components/UserPortal/UserSidebarOrg/UserSidebarOrg/interfaces/InterfaceUserSidebarOrgProps.md +++ /dev/null @@ -1,41 +0,0 @@ -[**talawa-admin**](../../../../../README.md) - -*** - -[talawa-admin](../../../../../modules.md) / [components/UserPortal/UserSidebarOrg/UserSidebarOrg](../README.md) / InterfaceUserSidebarOrgProps - -# Interface: InterfaceUserSidebarOrgProps - -Defined in: [src/components/UserPortal/UserSidebarOrg/UserSidebarOrg.tsx:17](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/UserPortal/UserSidebarOrg/UserSidebarOrg.tsx#L17) - -## Properties - -### hideDrawer - -> **hideDrawer**: `null` \| `boolean` - -Defined in: [src/components/UserPortal/UserSidebarOrg/UserSidebarOrg.tsx:20](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/UserPortal/UserSidebarOrg/UserSidebarOrg.tsx#L20) - -*** - -### orgId - -> **orgId**: `string` - -Defined in: [src/components/UserPortal/UserSidebarOrg/UserSidebarOrg.tsx:18](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/UserPortal/UserSidebarOrg/UserSidebarOrg.tsx#L18) - -*** - -### setHideDrawer - -> **setHideDrawer**: `Dispatch`\<`SetStateAction`\<`null` \| `boolean`\>\> - -Defined in: [src/components/UserPortal/UserSidebarOrg/UserSidebarOrg.tsx:21](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/UserPortal/UserSidebarOrg/UserSidebarOrg.tsx#L21) - -*** - -### targets - -> **targets**: [`TargetsType`](../../../../../state/reducers/routesReducer/type-aliases/TargetsType.md)[] - -Defined in: [src/components/UserPortal/UserSidebarOrg/UserSidebarOrg.tsx:19](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/UserPortal/UserSidebarOrg/UserSidebarOrg.tsx#L19) diff --git a/docs/docs/auto-docs/components/UserProfileSettings/DeleteUser/README.md b/docs/docs/auto-docs/components/UserProfileSettings/DeleteUser/README.md deleted file mode 100644 index aed329a07a..0000000000 --- a/docs/docs/auto-docs/components/UserProfileSettings/DeleteUser/README.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / components/UserProfileSettings/DeleteUser - -# components/UserProfileSettings/DeleteUser - -## Functions - -- [default](functions/default.md) diff --git a/docs/docs/auto-docs/components/UserProfileSettings/DeleteUser/functions/default.md b/docs/docs/auto-docs/components/UserProfileSettings/DeleteUser/functions/default.md deleted file mode 100644 index 99326172a2..0000000000 --- a/docs/docs/auto-docs/components/UserProfileSettings/DeleteUser/functions/default.md +++ /dev/null @@ -1,34 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [components/UserProfileSettings/DeleteUser](../README.md) / default - -# Function: default() - -> **default**(`props`, `deprecatedLegacyContext`?): `ReactNode` - -Defined in: [src/components/UserProfileSettings/DeleteUser.tsx:12](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/UserProfileSettings/DeleteUser.tsx#L12) - -DeleteUser component displays a card with a button to delete a user. -It includes a message and a button to trigger the delete action. - -## Parameters - -### props - -### deprecatedLegacyContext? - -`any` - -**Deprecated** - -**See** - -[React Docs](https://legacy.reactjs.org/docs/legacy-context.html#referencing-context-in-lifecycle-methods) - -## Returns - -`ReactNode` - -The JSX element for the delete user card. diff --git a/docs/docs/auto-docs/components/UserProfileSettings/OtherSettings/README.md b/docs/docs/auto-docs/components/UserProfileSettings/OtherSettings/README.md deleted file mode 100644 index d62f597c02..0000000000 --- a/docs/docs/auto-docs/components/UserProfileSettings/OtherSettings/README.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / components/UserProfileSettings/OtherSettings - -# components/UserProfileSettings/OtherSettings - -## Functions - -- [default](functions/default.md) diff --git a/docs/docs/auto-docs/components/UserProfileSettings/OtherSettings/functions/default.md b/docs/docs/auto-docs/components/UserProfileSettings/OtherSettings/functions/default.md deleted file mode 100644 index 083fc667c3..0000000000 --- a/docs/docs/auto-docs/components/UserProfileSettings/OtherSettings/functions/default.md +++ /dev/null @@ -1,34 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [components/UserProfileSettings/OtherSettings](../README.md) / default - -# Function: default() - -> **default**(`props`, `deprecatedLegacyContext`?): `ReactNode` - -Defined in: [src/components/UserProfileSettings/OtherSettings.tsx:13](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/UserProfileSettings/OtherSettings.tsx#L13) - -OtherSettings component displays a card with settings options such as changing the language. -It includes a label and a dropdown for selecting a different language. - -## Parameters - -### props - -### deprecatedLegacyContext? - -`any` - -**Deprecated** - -**See** - -[React Docs](https://legacy.reactjs.org/docs/legacy-context.html#referencing-context-in-lifecycle-methods) - -## Returns - -`ReactNode` - -The JSX element for the other settings card. diff --git a/docs/docs/auto-docs/components/UserProfileSettings/UserProfile/README.md b/docs/docs/auto-docs/components/UserProfileSettings/UserProfile/README.md deleted file mode 100644 index c20ee1ebcb..0000000000 --- a/docs/docs/auto-docs/components/UserProfileSettings/UserProfile/README.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / components/UserProfileSettings/UserProfile - -# components/UserProfileSettings/UserProfile - -## Functions - -- [default](functions/default.md) diff --git a/docs/docs/auto-docs/components/UserProfileSettings/UserProfile/functions/default.md b/docs/docs/auto-docs/components/UserProfileSettings/UserProfile/functions/default.md deleted file mode 100644 index b5cb678b2c..0000000000 --- a/docs/docs/auto-docs/components/UserProfileSettings/UserProfile/functions/default.md +++ /dev/null @@ -1,38 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [components/UserProfileSettings/UserProfile](../README.md) / default - -# Function: default() - -> **default**(`props`, `deprecatedLegacyContext`?): `ReactNode` - -Defined in: [src/components/UserProfileSettings/UserProfile.tsx:38](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/UserProfileSettings/UserProfile.tsx#L38) - -UserProfile component displays user profile details including an avatar or profile image, name, email, and join date. -It also provides a button to copy the profile link. - -## Parameters - -### props - -`InterfaceUserProfile` - -The properties to be passed into the component. - -### deprecatedLegacyContext? - -`any` - -**Deprecated** - -**See** - -[React Docs](https://legacy.reactjs.org/docs/legacy-context.html#referencing-context-in-lifecycle-methods) - -## Returns - -`ReactNode` - -The JSX element for the user profile card. diff --git a/docs/docs/auto-docs/components/UsersTableItem/UserTableItemMocks/README.md b/docs/docs/auto-docs/components/UsersTableItem/UserTableItemMocks/README.md deleted file mode 100644 index a6bc5cb05c..0000000000 --- a/docs/docs/auto-docs/components/UsersTableItem/UserTableItemMocks/README.md +++ /dev/null @@ -1,13 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / components/UsersTableItem/UserTableItemMocks - -# components/UsersTableItem/UserTableItemMocks - -## Variables - -- [MOCKS](variables/MOCKS.md) -- [MOCKS\_UPDATE](variables/MOCKS_UPDATE.md) -- [MOCKS2](variables/MOCKS2.md) diff --git a/docs/docs/auto-docs/components/UsersTableItem/UserTableItemMocks/variables/MOCKS.md b/docs/docs/auto-docs/components/UsersTableItem/UserTableItemMocks/variables/MOCKS.md deleted file mode 100644 index 24ab29dd4e..0000000000 --- a/docs/docs/auto-docs/components/UsersTableItem/UserTableItemMocks/variables/MOCKS.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [components/UsersTableItem/UserTableItemMocks](../README.md) / MOCKS - -# Variable: MOCKS - -> `const` **MOCKS**: (\{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `organizationId`: `undefined`; `orgid`: `string`; `role`: `undefined`; `userid`: `string`; `userId`: `undefined`; \}; \}; `result`: \{ `data`: \{ `removeMember`: \{ `_id`: `string`; \}; `updateUserRoleInOrganization`: `undefined`; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `organizationId`: `string`; `orgid`: `undefined`; `role`: `string`; `userid`: `undefined`; `userId`: `string`; \}; \}; `result`: \{ `data`: \{ `removeMember`: `undefined`; `updateUserRoleInOrganization`: \{ `_id`: `string`; \}; \}; \}; \})[] - -Defined in: [src/components/UsersTableItem/UserTableItemMocks.ts:6](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/UsersTableItem/UserTableItemMocks.ts#L6) diff --git a/docs/docs/auto-docs/components/UsersTableItem/UserTableItemMocks/variables/MOCKS2.md b/docs/docs/auto-docs/components/UsersTableItem/UserTableItemMocks/variables/MOCKS2.md deleted file mode 100644 index 1a7d22e665..0000000000 --- a/docs/docs/auto-docs/components/UsersTableItem/UserTableItemMocks/variables/MOCKS2.md +++ /dev/null @@ -1,37 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [components/UsersTableItem/UserTableItemMocks](../README.md) / MOCKS2 - -# Variable: MOCKS2 - -> `const` **MOCKS2**: `object`[] - -Defined in: [src/components/UsersTableItem/UserTableItemMocks.ts:42](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/UsersTableItem/UserTableItemMocks.ts#L42) - -## Type declaration - -### error - -> **error**: `Error` - -### request - -> **request**: `object` - -#### request.query - -> **query**: `DocumentNode` = `REMOVE_MEMBER_MUTATION` - -#### request.variables - -> **variables**: `object` - -#### request.variables.orgid - -> **orgid**: `string` = `'abc'` - -#### request.variables.userid - -> **userid**: `string` = `'123'` diff --git a/docs/docs/auto-docs/components/UsersTableItem/UserTableItemMocks/variables/MOCKS_UPDATE.md b/docs/docs/auto-docs/components/UsersTableItem/UserTableItemMocks/variables/MOCKS_UPDATE.md deleted file mode 100644 index e5145ec475..0000000000 --- a/docs/docs/auto-docs/components/UsersTableItem/UserTableItemMocks/variables/MOCKS_UPDATE.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [components/UsersTableItem/UserTableItemMocks](../README.md) / MOCKS\_UPDATE - -# Variable: MOCKS\_UPDATE - -> `const` **MOCKS\_UPDATE**: (\{ `error`: `Error`; `request`: \{ `query`: `DocumentNode`; `variables`: \{ `organizationId`: `string`; `role`: `string`; `userId`: `string`; \}; \}; `result`: `undefined`; \} \| \{ `error`: `undefined`; `request`: \{ `query`: `DocumentNode`; `variables`: \{ `organizationId`: `string`; `role`: `string`; `userId`: `string`; \}; \}; `result`: \{ `data`: \{ `updateUserRoleInOrganization`: \{ `_id`: `string`; \}; \}; \}; \})[] - -Defined in: [src/components/UsersTableItem/UserTableItemMocks.ts:55](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/UsersTableItem/UserTableItemMocks.ts#L55) diff --git a/docs/docs/auto-docs/components/UsersTableItem/UsersTableItem/README.md b/docs/docs/auto-docs/components/UsersTableItem/UsersTableItem/README.md deleted file mode 100644 index 35774184ed..0000000000 --- a/docs/docs/auto-docs/components/UsersTableItem/UsersTableItem/README.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / components/UsersTableItem/UsersTableItem - -# components/UsersTableItem/UsersTableItem - -## Functions - -- [default](functions/default.md) diff --git a/docs/docs/auto-docs/components/UsersTableItem/UsersTableItem/functions/default.md b/docs/docs/auto-docs/components/UsersTableItem/UsersTableItem/functions/default.md deleted file mode 100644 index 29a068829e..0000000000 --- a/docs/docs/auto-docs/components/UsersTableItem/UsersTableItem/functions/default.md +++ /dev/null @@ -1,21 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [components/UsersTableItem/UsersTableItem](../README.md) / default - -# Function: default() - -> **default**(`props`): `Element` - -Defined in: [src/components/UsersTableItem/UsersTableItem.tsx:23](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/UsersTableItem/UsersTableItem.tsx#L23) - -## Parameters - -### props - -`Props` - -## Returns - -`Element` diff --git a/docs/docs/auto-docs/components/Venues/VenueCard/README.md b/docs/docs/auto-docs/components/Venues/VenueCard/README.md deleted file mode 100644 index f5058ba6f0..0000000000 --- a/docs/docs/auto-docs/components/Venues/VenueCard/README.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / components/Venues/VenueCard - -# components/Venues/VenueCard - -## Functions - -- [default](functions/default.md) diff --git a/docs/docs/auto-docs/components/Venues/VenueCard/functions/default.md b/docs/docs/auto-docs/components/Venues/VenueCard/functions/default.md deleted file mode 100644 index 9fe342fa99..0000000000 --- a/docs/docs/auto-docs/components/Venues/VenueCard/functions/default.md +++ /dev/null @@ -1,39 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [components/Venues/VenueCard](../README.md) / default - -# Function: default() - -> **default**(`__namedParameters`): `Element` - -Defined in: [src/components/Venues/VenueCard.tsx:39](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/Venues/VenueCard.tsx#L39) - -Represents a card component displaying venue information. - -This component renders a card with the venue's image, name, capacity, and description. -It also provides buttons to edit or delete the venue. - -## Parameters - -### \_\_namedParameters - -`InterfaceVenueCardProps` - -## Returns - -`Element` - -JSX.Element - The `VenueCard` component. - -## Example - -```tsx - -``` diff --git a/docs/docs/auto-docs/components/Venues/VenueModal/README.md b/docs/docs/auto-docs/components/Venues/VenueModal/README.md deleted file mode 100644 index 1ef81a0b58..0000000000 --- a/docs/docs/auto-docs/components/Venues/VenueModal/README.md +++ /dev/null @@ -1,15 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / components/Venues/VenueModal - -# components/Venues/VenueModal - -## Interfaces - -- [InterfaceVenueModalProps](interfaces/InterfaceVenueModalProps.md) - -## Functions - -- [default](functions/default.md) diff --git a/docs/docs/auto-docs/components/Venues/VenueModal/functions/default.md b/docs/docs/auto-docs/components/Venues/VenueModal/functions/default.md deleted file mode 100644 index ebe4deff1b..0000000000 --- a/docs/docs/auto-docs/components/Venues/VenueModal/functions/default.md +++ /dev/null @@ -1,28 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [components/Venues/VenueModal](../README.md) / default - -# Function: default() - -> **default**(`__namedParameters`): `Element` - -Defined in: [src/components/Venues/VenueModal.tsx:39](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/Venues/VenueModal.tsx#L39) - -A modal component for creating or updating venue information. - -This component displays a modal window where users can enter details for a venue, such as name, description, capacity, and an image. -It also handles submitting the form data to create or update a venue based on whether the `edit` prop is true or false. - -## Parameters - -### \_\_namedParameters - -[`InterfaceVenueModalProps`](../interfaces/InterfaceVenueModalProps.md) - -## Returns - -`Element` - -The rendered modal component. diff --git a/docs/docs/auto-docs/components/Venues/VenueModal/interfaces/InterfaceVenueModalProps.md b/docs/docs/auto-docs/components/Venues/VenueModal/interfaces/InterfaceVenueModalProps.md deleted file mode 100644 index 39d8ad13e0..0000000000 --- a/docs/docs/auto-docs/components/Venues/VenueModal/interfaces/InterfaceVenueModalProps.md +++ /dev/null @@ -1,65 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [components/Venues/VenueModal](../README.md) / InterfaceVenueModalProps - -# Interface: InterfaceVenueModalProps - -Defined in: [src/components/Venues/VenueModal.tsx:15](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/Venues/VenueModal.tsx#L15) - -## Properties - -### edit - -> **edit**: `boolean` - -Defined in: [src/components/Venues/VenueModal.tsx:21](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/Venues/VenueModal.tsx#L21) - -*** - -### onHide() - -> **onHide**: () => `void` - -Defined in: [src/components/Venues/VenueModal.tsx:17](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/Venues/VenueModal.tsx#L17) - -#### Returns - -`void` - -*** - -### orgId - -> **orgId**: `string` - -Defined in: [src/components/Venues/VenueModal.tsx:19](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/Venues/VenueModal.tsx#L19) - -*** - -### refetchVenues() - -> **refetchVenues**: () => `void` - -Defined in: [src/components/Venues/VenueModal.tsx:18](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/Venues/VenueModal.tsx#L18) - -#### Returns - -`void` - -*** - -### show - -> **show**: `boolean` - -Defined in: [src/components/Venues/VenueModal.tsx:16](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/Venues/VenueModal.tsx#L16) - -*** - -### venueData? - -> `optional` **venueData**: `null` \| [`InterfaceQueryVenueListItem`](../../../../utils/interfaces/interfaces/InterfaceQueryVenueListItem.md) - -Defined in: [src/components/Venues/VenueModal.tsx:20](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/Venues/VenueModal.tsx#L20) diff --git a/docs/docs/auto-docs/components/plugins/DummyPlugin/DummyPlugin.test/README.md b/docs/docs/auto-docs/components/plugins/DummyPlugin/DummyPlugin.test/README.md deleted file mode 100644 index 2a73d87fd8..0000000000 --- a/docs/docs/auto-docs/components/plugins/DummyPlugin/DummyPlugin.test/README.md +++ /dev/null @@ -1,7 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / components/plugins/DummyPlugin/DummyPlugin.test - -# components/plugins/DummyPlugin/DummyPlugin.test diff --git a/docs/docs/auto-docs/components/plugins/DummyPlugin/DummyPlugin/README.md b/docs/docs/auto-docs/components/plugins/DummyPlugin/DummyPlugin/README.md deleted file mode 100644 index c582ebf9fa..0000000000 --- a/docs/docs/auto-docs/components/plugins/DummyPlugin/DummyPlugin/README.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / components/plugins/DummyPlugin/DummyPlugin - -# components/plugins/DummyPlugin/DummyPlugin - -## Functions - -- [default](functions/default.md) diff --git a/docs/docs/auto-docs/components/plugins/DummyPlugin/DummyPlugin/functions/default.md b/docs/docs/auto-docs/components/plugins/DummyPlugin/DummyPlugin/functions/default.md deleted file mode 100644 index 7fcd1e80f4..0000000000 --- a/docs/docs/auto-docs/components/plugins/DummyPlugin/DummyPlugin/functions/default.md +++ /dev/null @@ -1,22 +0,0 @@ -[**talawa-admin**](../../../../../README.md) - -*** - -[talawa-admin](../../../../../modules.md) / [components/plugins/DummyPlugin/DummyPlugin](../README.md) / default - -# Function: default() - -> **default**(): `JSX.Element` - -Defined in: [src/components/plugins/DummyPlugin/DummyPlugin.tsx:12](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/plugins/DummyPlugin/DummyPlugin.tsx#L12) - -A dummy plugin component that renders a welcome message inside an `AddOn` component. - -This component is used for demonstration or testing purposes and does not have any -additional functionality or properties. - -## Returns - -`JSX.Element` - -JSX.Element - Renders the `AddOn` component containing a welcome message. diff --git a/docs/docs/auto-docs/components/plugins/DummyPlugin2/DummyPlugin2.test/README.md b/docs/docs/auto-docs/components/plugins/DummyPlugin2/DummyPlugin2.test/README.md deleted file mode 100644 index ca55658c24..0000000000 --- a/docs/docs/auto-docs/components/plugins/DummyPlugin2/DummyPlugin2.test/README.md +++ /dev/null @@ -1,7 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / components/plugins/DummyPlugin2/DummyPlugin2.test - -# components/plugins/DummyPlugin2/DummyPlugin2.test diff --git a/docs/docs/auto-docs/components/plugins/DummyPlugin2/DummyPlugin2/README.md b/docs/docs/auto-docs/components/plugins/DummyPlugin2/DummyPlugin2/README.md deleted file mode 100644 index e01e669542..0000000000 --- a/docs/docs/auto-docs/components/plugins/DummyPlugin2/DummyPlugin2/README.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / components/plugins/DummyPlugin2/DummyPlugin2 - -# components/plugins/DummyPlugin2/DummyPlugin2 - -## Functions - -- [default](functions/default.md) diff --git a/docs/docs/auto-docs/components/plugins/DummyPlugin2/DummyPlugin2/functions/default.md b/docs/docs/auto-docs/components/plugins/DummyPlugin2/DummyPlugin2/functions/default.md deleted file mode 100644 index 2abc9479b4..0000000000 --- a/docs/docs/auto-docs/components/plugins/DummyPlugin2/DummyPlugin2/functions/default.md +++ /dev/null @@ -1,21 +0,0 @@ -[**talawa-admin**](../../../../../README.md) - -*** - -[talawa-admin](../../../../../modules.md) / [components/plugins/DummyPlugin2/DummyPlugin2](../README.md) / default - -# Function: default() - -> **default**(): `JSX.Element` - -Defined in: [src/components/plugins/DummyPlugin2/DummyPlugin2.tsx:10](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/components/plugins/DummyPlugin2/DummyPlugin2.tsx#L10) - -A placeholder component for demonstration or testing purposes. -It renders an empty `div` element. - -This component currently does not have any additional functionality -or properties. - -## Returns - -`JSX.Element` diff --git a/docs/docs/auto-docs/components/plugins/README.md b/docs/docs/auto-docs/components/plugins/README.md deleted file mode 100644 index 5512e9966c..0000000000 --- a/docs/docs/auto-docs/components/plugins/README.md +++ /dev/null @@ -1,19 +0,0 @@ -[**talawa-admin**](../../README.md) - -*** - -[talawa-admin](../../modules.md) / components/plugins - -# components/plugins - -## References - -### DummyPlugin - -Renames and re-exports [default](DummyPlugin/DummyPlugin/functions/default.md) - -*** - -### DummyPlugin2 - -Renames and re-exports [default](DummyPlugin2/DummyPlugin2/functions/default.md) diff --git a/docs/docs/auto-docs/constants/README.md b/docs/docs/auto-docs/constants/README.md deleted file mode 100644 index 1813337544..0000000000 --- a/docs/docs/auto-docs/constants/README.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../README.md) - -*** - -[talawa-admin](../modules.md) / constants - -# constants - -## Variables - -- [socialMediaLinks](variables/socialMediaLinks.md) diff --git a/docs/docs/auto-docs/constants/variables/socialMediaLinks.md b/docs/docs/auto-docs/constants/variables/socialMediaLinks.md deleted file mode 100644 index 17b1ec7b85..0000000000 --- a/docs/docs/auto-docs/constants/variables/socialMediaLinks.md +++ /dev/null @@ -1,25 +0,0 @@ -[**talawa-admin**](../../README.md) - -*** - -[talawa-admin](../../modules.md) / [constants](../README.md) / socialMediaLinks - -# Variable: socialMediaLinks - -> `const` **socialMediaLinks**: `object`[] - -Defined in: [src/constants.ts:12](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/constants.ts#L12) - -## Type declaration - -### href - -> **href**: `string` = `'https://www.facebook.com/palisadoesproject'` - -### logo - -> **logo**: `string` = `FacebookLogo` - -### tag - -> **tag**: `string` = `'facebook'` diff --git a/docs/docs/auto-docs/index/README.md b/docs/docs/auto-docs/index/README.md deleted file mode 100644 index 73aef1b7cd..0000000000 --- a/docs/docs/auto-docs/index/README.md +++ /dev/null @@ -1,7 +0,0 @@ -[**talawa-admin**](../README.md) - -*** - -[talawa-admin](../modules.md) / index - -# index diff --git a/docs/docs/auto-docs/modules.md b/docs/docs/auto-docs/modules.md deleted file mode 100644 index ce498993a6..0000000000 --- a/docs/docs/auto-docs/modules.md +++ /dev/null @@ -1,339 +0,0 @@ -[**talawa-admin**](README.md) - -*** - -# talawa-admin - -## Modules - -- [App](App/README.md) -- [assets/svgs/social-icons](assets/svgs/social-icons/README.md) -- [components/AddOn/AddOn](components/AddOn/AddOn/README.md) -- [components/AddOn/core/AddOnEntry/AddOnEntry](components/AddOn/core/AddOnEntry/AddOnEntry/README.md) -- [components/AddOn/core/AddOnEntry/AddOnEntryMocks](components/AddOn/core/AddOnEntry/AddOnEntryMocks/README.md) -- [components/AddOn/core/AddOnRegister/AddOnRegister](components/AddOn/core/AddOnRegister/AddOnRegister/README.md) -- [components/AddOn/core/AddOnStore/AddOnStore](components/AddOn/core/AddOnStore/AddOnStore/README.md) -- [components/AddOn/support/components/Action/Action](components/AddOn/support/components/Action/Action/README.md) -- [components/AddOn/support/components/MainContent/MainContent](components/AddOn/support/components/MainContent/MainContent/README.md) -- [components/AddOn/support/components/SidePanel/SidePanel](components/AddOn/support/components/SidePanel/SidePanel/README.md) -- [components/AddOn/support/services/Plugin.helper](components/AddOn/support/services/Plugin.helper/README.md) -- [components/AddOn/support/services/Render.helper](components/AddOn/support/services/Render.helper/README.md) -- [components/AddPeopleToTag/AddPeopleToTag](components/AddPeopleToTag/AddPeopleToTag/README.md) -- [components/AddPeopleToTag/AddPeopleToTagsMocks](components/AddPeopleToTag/AddPeopleToTagsMocks/README.md) -- [components/Advertisements/Advertisements](components/Advertisements/Advertisements/README.md) -- [components/Advertisements/core/AdvertisementEntry/AdvertisementEntry](components/Advertisements/core/AdvertisementEntry/AdvertisementEntry/README.md) -- [components/Advertisements/core/AdvertisementRegister/AdvertisementRegister](components/Advertisements/core/AdvertisementRegister/AdvertisementRegister/README.md) -- [components/AgendaCategory/AgendaCategoryContainer](components/AgendaCategory/AgendaCategoryContainer/README.md) -- [components/AgendaCategory/AgendaCategoryContainerMocks](components/AgendaCategory/AgendaCategoryContainerMocks/README.md) -- [components/AgendaCategory/AgendaCategoryContainerProps](components/AgendaCategory/AgendaCategoryContainerProps/README.md) -- [components/AgendaItems/AgendaItemsContainer](components/AgendaItems/AgendaItemsContainer/README.md) -- [components/AgendaItems/AgendaItemsContainerMocks](components/AgendaItems/AgendaItemsContainerMocks/README.md) -- [components/AgendaItems/AgendaItemsContainerProps](components/AgendaItems/AgendaItemsContainerProps/README.md) -- [components/AgendaItems/AgendaItemsCreateModal](components/AgendaItems/AgendaItemsCreateModal/README.md) -- [components/AgendaItems/AgendaItemsDeleteModal](components/AgendaItems/AgendaItemsDeleteModal/README.md) -- [components/AgendaItems/AgendaItemsPreviewModal](components/AgendaItems/AgendaItemsPreviewModal/README.md) -- [components/AgendaItems/AgendaItemsUpdateModal](components/AgendaItems/AgendaItemsUpdateModal/README.md) -- [components/Avatar/Avatar](components/Avatar/Avatar/README.md) -- [components/ChangeLanguageDropdown/ChangeLanguageDropDown](components/ChangeLanguageDropdown/ChangeLanguageDropDown/README.md) -- [components/CheckIn/CheckInModal](components/CheckIn/CheckInModal/README.md) -- [components/CheckIn/CheckInWrapper](components/CheckIn/CheckInWrapper/README.md) -- [components/CheckIn/mocks](components/CheckIn/mocks/README.md) -- [components/CheckIn/TableRow](components/CheckIn/TableRow/README.md) -- [components/CheckIn/tagTemplate](components/CheckIn/tagTemplate/README.md) -- [components/CheckIn/types](components/CheckIn/types/README.md) -- [components/CollapsibleDropdown/CollapsibleDropdown](components/CollapsibleDropdown/CollapsibleDropdown/README.md) -- [components/ContriStats/ContriStats](components/ContriStats/ContriStats/README.md) -- [components/CurrentHourIndicator/CurrentHourIndicator](components/CurrentHourIndicator/CurrentHourIndicator/README.md) -- [components/DynamicDropDown/DynamicDropDown](components/DynamicDropDown/DynamicDropDown/README.md) -- [components/EditCustomFieldDropDown/EditCustomFieldDropDown](components/EditCustomFieldDropDown/EditCustomFieldDropDown/README.md) -- [components/EventCalendar/constants](components/EventCalendar/constants/README.md) -- [components/EventCalendar/EventCalendar](components/EventCalendar/EventCalendar/README.md) -- [components/EventCalendar/EventHeader](components/EventCalendar/EventHeader/README.md) -- [components/EventCalendar/YearlyEventCalender](components/EventCalendar/YearlyEventCalender/README.md) -- [components/EventDashboardScreen/EventDashboardScreen](components/EventDashboardScreen/EventDashboardScreen/README.md) -- [components/EventListCard/EventListCard](components/EventListCard/EventListCard/README.md) -- [components/EventListCard/EventListCardMocks](components/EventListCard/EventListCardMocks/README.md) -- [components/EventListCard/EventListCardModals](components/EventListCard/EventListCardModals/README.md) -- [components/EventListCard/EventListCardProps](components/EventListCard/EventListCardProps/README.md) -- [components/EventManagement/Dashboard/EventDashboard](components/EventManagement/Dashboard/EventDashboard/README.md) -- [components/EventManagement/Dashboard/EventDashboard.mocks](components/EventManagement/Dashboard/EventDashboard.mocks/README.md) -- [components/EventManagement/EventAgendaItems/EventAgendaItems](components/EventManagement/EventAgendaItems/EventAgendaItems/README.md) -- [components/EventManagement/EventAgendaItems/EventAgendaItemsMocks](components/EventManagement/EventAgendaItems/EventAgendaItemsMocks/README.md) -- [components/EventManagement/EventAttendance/Attendance.mocks](components/EventManagement/EventAttendance/Attendance.mocks/README.md) -- [components/EventManagement/EventAttendance/AttendedEventList](components/EventManagement/EventAttendance/AttendedEventList/README.md) -- [components/EventManagement/EventAttendance/EventAttendance](components/EventManagement/EventAttendance/EventAttendance/README.md) -- [components/EventManagement/EventAttendance/EventStatistics](components/EventManagement/EventAttendance/EventStatistics/README.md) -- [components/EventManagement/EventAttendance/InterfaceEvents](components/EventManagement/EventAttendance/InterfaceEvents/README.md) -- [components/EventManagement/EventRegistrant/EventRegistrants](components/EventManagement/EventRegistrant/EventRegistrants/README.md) -- [components/EventManagement/EventRegistrant/Registrations.mocks](components/EventManagement/EventRegistrant/Registrations.mocks/README.md) -- [components/EventRegistrantsModal/AddOnSpotAttendee](components/EventRegistrantsModal/AddOnSpotAttendee/README.md) -- [components/EventRegistrantsModal/EventRegistrantsModal](components/EventRegistrantsModal/EventRegistrantsModal/README.md) -- [components/EventRegistrantsModal/EventRegistrantsWrapper](components/EventRegistrantsModal/EventRegistrantsWrapper/README.md) -- [components/EventStats/EventStats](components/EventStats/EventStats/README.md) -- [components/EventStats/EventStatsWrapper](components/EventStats/EventStatsWrapper/README.md) -- [components/EventStats/Statistics/AverageRating](components/EventStats/Statistics/AverageRating/README.md) -- [components/EventStats/Statistics/Feedback](components/EventStats/Statistics/Feedback/README.md) -- [components/EventStats/Statistics/Review](components/EventStats/Statistics/Review/README.md) -- [components/GroupChatDetails/GroupChatDetails](components/GroupChatDetails/GroupChatDetails/README.md) -- [components/HolidayCards/HolidayCard](components/HolidayCards/HolidayCard/README.md) -- [components/IconComponent/IconComponent](components/IconComponent/IconComponent/README.md) -- [components/InfiniteScrollLoader/InfiniteScrollLoader](components/InfiniteScrollLoader/InfiniteScrollLoader/README.md) -- [components/LeftDrawer/LeftDrawer](components/LeftDrawer/LeftDrawer/README.md) -- [components/LeftDrawerOrg/LeftDrawerOrg](components/LeftDrawerOrg/LeftDrawerOrg/README.md) -- [components/Loader/Loader](components/Loader/Loader/README.md) -- [components/LoginPortalToggle/LoginPortalToggle](components/LoginPortalToggle/LoginPortalToggle/README.md) -- [components/MemberDetail/customTableCell](components/MemberDetail/customTableCell/README.md) -- [components/MemberDetail/EventsAttendedByMember](components/MemberDetail/EventsAttendedByMember/README.md) -- [components/MemberDetail/EventsAttendedCardItem](components/MemberDetail/EventsAttendedCardItem/README.md) -- [components/MemberDetail/EventsAttendedMemberModal](components/MemberDetail/EventsAttendedMemberModal/README.md) -- [components/MemberRequestCard/MemberRequestCard](components/MemberRequestCard/MemberRequestCard/README.md) -- [components/NotFound/NotFound](components/NotFound/NotFound/README.md) -- [components/OrgAdminListCard/OrgAdminListCard](components/OrgAdminListCard/OrgAdminListCard/README.md) -- [components/OrganizationCard/OrganizationCard](components/OrganizationCard/OrganizationCard/README.md) -- [components/OrganizationCardStart/OrganizationCardStart](components/OrganizationCardStart/OrganizationCardStart/README.md) -- [components/OrganizationDashCards/CardItem](components/OrganizationDashCards/CardItem/README.md) -- [components/OrganizationDashCards/CardItemLoading](components/OrganizationDashCards/CardItemLoading/README.md) -- [components/OrganizationDashCards/DashboardCard](components/OrganizationDashCards/DashboardCard/README.md) -- [components/OrganizationDashCards/DashboardCardLoading](components/OrganizationDashCards/DashboardCardLoading/README.md) -- [components/OrganizationScreen/OrganizationScreen](components/OrganizationScreen/OrganizationScreen/README.md) -- [components/OrgContriCards/OrgContriCards](components/OrgContriCards/OrgContriCards/README.md) -- [components/OrgDelete/OrgDelete](components/OrgDelete/OrgDelete/README.md) -- [components/OrgListCard/OrgListCard](components/OrgListCard/OrgListCard/README.md) -- [components/OrgListCard/TruncatedText](components/OrgListCard/TruncatedText/README.md) -- [components/OrgListCard/useDebounce](components/OrgListCard/useDebounce/README.md) -- [components/OrgPeopleListCard/OrgPeopleListCard](components/OrgPeopleListCard/OrgPeopleListCard/README.md) -- [components/OrgPostCard/DeletePostModal](components/OrgPostCard/DeletePostModal/README.md) -- [components/OrgPostCard/OrgPostCard](components/OrgPostCard/OrgPostCard/README.md) -- [components/OrgSettings/ActionItemCategories/CategoryModal](components/OrgSettings/ActionItemCategories/CategoryModal/README.md) -- [components/OrgSettings/ActionItemCategories/OrgActionItemCategories](components/OrgSettings/ActionItemCategories/OrgActionItemCategories/README.md) -- [components/OrgSettings/ActionItemCategories/OrgActionItemCategoryMocks](components/OrgSettings/ActionItemCategories/OrgActionItemCategoryMocks/README.md) -- [components/OrgSettings/AgendaItemCategories/AgendaCategoryCreateModal](components/OrgSettings/AgendaItemCategories/AgendaCategoryCreateModal/README.md) -- [components/OrgSettings/AgendaItemCategories/AgendaCategoryDeleteModal](components/OrgSettings/AgendaItemCategories/AgendaCategoryDeleteModal/README.md) -- [components/OrgSettings/AgendaItemCategories/AgendaCategoryPreviewModal](components/OrgSettings/AgendaItemCategories/AgendaCategoryPreviewModal/README.md) -- [components/OrgSettings/AgendaItemCategories/AgendaCategoryUpdateModal](components/OrgSettings/AgendaItemCategories/AgendaCategoryUpdateModal/README.md) -- [components/OrgSettings/AgendaItemCategories/OrganizationAgendaCategory](components/OrgSettings/AgendaItemCategories/OrganizationAgendaCategory/README.md) -- [components/OrgSettings/AgendaItemCategories/OrganizationAgendaCategoryErrorMocks](components/OrgSettings/AgendaItemCategories/OrganizationAgendaCategoryErrorMocks/README.md) -- [components/OrgSettings/AgendaItemCategories/OrganizationAgendaCategoryMocks](components/OrgSettings/AgendaItemCategories/OrganizationAgendaCategoryMocks/README.md) -- [components/OrgSettings/General/DeleteOrg/DeleteOrg](components/OrgSettings/General/DeleteOrg/DeleteOrg/README.md) -- [components/OrgSettings/General/GeneralSettings](components/OrgSettings/General/GeneralSettings/README.md) -- [components/OrgSettings/General/OrgProfileFieldSettings/OrgProfileFieldSettings](components/OrgSettings/General/OrgProfileFieldSettings/OrgProfileFieldSettings/README.md) -- [components/OrgSettings/General/OrgUpdate/OrgUpdate](components/OrgSettings/General/OrgUpdate/OrgUpdate/README.md) -- [components/OrgSettings/General/OrgUpdate/OrgUpdateMocks](components/OrgSettings/General/OrgUpdate/OrgUpdateMocks/README.md) -- [components/Pagination/Pagination](components/Pagination/Pagination/README.md) -- [components/PaginationList/PaginationList](components/PaginationList/PaginationList/README.md) -- [components/plugins](components/plugins/README.md) -- [components/plugins/DummyPlugin/DummyPlugin](components/plugins/DummyPlugin/DummyPlugin/README.md) -- [components/plugins/DummyPlugin/DummyPlugin.test](components/plugins/DummyPlugin/DummyPlugin.test/README.md) -- [components/plugins/DummyPlugin2/DummyPlugin2](components/plugins/DummyPlugin2/DummyPlugin2/README.md) -- [components/plugins/DummyPlugin2/DummyPlugin2.test](components/plugins/DummyPlugin2/DummyPlugin2.test/README.md) -- [components/ProfileDropdown/ProfileDropdown](components/ProfileDropdown/ProfileDropdown/README.md) -- [components/RecurrenceOptions/CustomRecurrenceModal](components/RecurrenceOptions/CustomRecurrenceModal/README.md) -- [components/RecurrenceOptions/RecurrenceOptions](components/RecurrenceOptions/RecurrenceOptions/README.md) -- [components/RequestsTableItem/RequestsTableItem](components/RequestsTableItem/RequestsTableItem/README.md) -- [components/RequestsTableItem/RequestsTableItemMocks](components/RequestsTableItem/RequestsTableItemMocks/README.md) -- [components/SecuredRoute/SecuredRoute](components/SecuredRoute/SecuredRoute/README.md) -- [components/SuperAdminScreen/SuperAdminScreen](components/SuperAdminScreen/SuperAdminScreen/README.md) -- [components/TableLoader/TableLoader](components/TableLoader/TableLoader/README.md) -- [components/TagActions/TagActions](components/TagActions/TagActions/README.md) -- [components/TagActions/TagActionsMocks](components/TagActions/TagActionsMocks/README.md) -- [components/TagActions/TagNode](components/TagActions/TagNode/README.md) -- [components/TagActions/TagNodeMocks](components/TagActions/TagNodeMocks/README.md) -- [components/UpdateSession/UpdateSession](components/UpdateSession/UpdateSession/README.md) -- [components/UserListCard/UserListCard](components/UserListCard/UserListCard/README.md) -- [components/UserPasswordUpdate/UserPasswordUpdate](components/UserPasswordUpdate/UserPasswordUpdate/README.md) -- [components/UserPasswordUpdate/UserPasswordUpdateMocks](components/UserPasswordUpdate/UserPasswordUpdateMocks/README.md) -- [components/UserPortal/ChatRoom/ChatRoom](components/UserPortal/ChatRoom/ChatRoom/README.md) -- [components/UserPortal/CommentCard/CommentCard](components/UserPortal/CommentCard/CommentCard/README.md) -- [components/UserPortal/ContactCard/ContactCard](components/UserPortal/ContactCard/ContactCard/README.md) -- [components/UserPortal/CreateDirectChat/CreateDirectChat](components/UserPortal/CreateDirectChat/CreateDirectChat/README.md) -- [components/UserPortal/CreateGroupChat/CreateGroupChat](components/UserPortal/CreateGroupChat/CreateGroupChat/README.md) -- [components/UserPortal/DonationCard/DonationCard](components/UserPortal/DonationCard/DonationCard/README.md) -- [components/UserPortal/EventCard/EventCard](components/UserPortal/EventCard/EventCard/README.md) -- [components/UserPortal/OrganizationCard/OrganizationCard](components/UserPortal/OrganizationCard/OrganizationCard/README.md) -- [components/UserPortal/OrganizationNavbar/OrganizationNavbar](components/UserPortal/OrganizationNavbar/OrganizationNavbar/README.md) -- [components/UserPortal/OrganizationSidebar/OrganizationSidebar](components/UserPortal/OrganizationSidebar/OrganizationSidebar/README.md) -- [components/UserPortal/PeopleCard/PeopleCard](components/UserPortal/PeopleCard/PeopleCard/README.md) -- [components/UserPortal/PostCard/PostCard](components/UserPortal/PostCard/PostCard/README.md) -- [components/UserPortal/PromotedPost/PromotedPost](components/UserPortal/PromotedPost/PromotedPost/README.md) -- [components/UserPortal/Register/Register](components/UserPortal/Register/Register/README.md) -- [components/UserPortal/SecuredRouteForUser/SecuredRouteForUser](components/UserPortal/SecuredRouteForUser/SecuredRouteForUser/README.md) -- [components/UserPortal/StartPostModal/StartPostModal](components/UserPortal/StartPostModal/StartPostModal/README.md) -- [components/UserPortal/UserNavbar/UserNavbar](components/UserPortal/UserNavbar/UserNavbar/README.md) -- [components/UserPortal/UserProfile/EventsAttendedByUser](components/UserPortal/UserProfile/EventsAttendedByUser/README.md) -- [components/UserPortal/UserProfile/UserAddressFields](components/UserPortal/UserProfile/UserAddressFields/README.md) -- [components/UserPortal/UserSidebar/UserSidebar](components/UserPortal/UserSidebar/UserSidebar/README.md) -- [components/UserPortal/UserSidebarOrg/UserSidebarOrg](components/UserPortal/UserSidebarOrg/UserSidebarOrg/README.md) -- [components/UserProfileSettings/DeleteUser](components/UserProfileSettings/DeleteUser/README.md) -- [components/UserProfileSettings/OtherSettings](components/UserProfileSettings/OtherSettings/README.md) -- [components/UserProfileSettings/UserProfile](components/UserProfileSettings/UserProfile/README.md) -- [components/UsersTableItem/UsersTableItem](components/UsersTableItem/UsersTableItem/README.md) -- [components/UsersTableItem/UserTableItemMocks](components/UsersTableItem/UserTableItemMocks/README.md) -- [components/Venues/VenueCard](components/Venues/VenueCard/README.md) -- [components/Venues/VenueModal](components/Venues/VenueModal/README.md) -- [Constant/constant](Constant/constant/README.md) -- [constants](constants/README.md) -- [GraphQl/Mutations/ActionItemCategoryMutations](GraphQl/Mutations/ActionItemCategoryMutations/README.md) -- [GraphQl/Mutations/ActionItemMutations](GraphQl/Mutations/ActionItemMutations/README.md) -- [GraphQl/Mutations/AgendaCategoryMutations](GraphQl/Mutations/AgendaCategoryMutations/README.md) -- [GraphQl/Mutations/AgendaItemMutations](GraphQl/Mutations/AgendaItemMutations/README.md) -- [GraphQl/Mutations/CampaignMutation](GraphQl/Mutations/CampaignMutation/README.md) -- [GraphQl/Mutations/CommentMutations](GraphQl/Mutations/CommentMutations/README.md) -- [GraphQl/Mutations/EventAttendeeMutations](GraphQl/Mutations/EventAttendeeMutations/README.md) -- [GraphQl/Mutations/EventVolunteerMutation](GraphQl/Mutations/EventVolunteerMutation/README.md) -- [GraphQl/Mutations/FundMutation](GraphQl/Mutations/FundMutation/README.md) -- [GraphQl/Mutations/mutations](GraphQl/Mutations/mutations/README.md) -- [GraphQl/Mutations/OrganizationMutations](GraphQl/Mutations/OrganizationMutations/README.md) -- [GraphQl/Mutations/PledgeMutation](GraphQl/Mutations/PledgeMutation/README.md) -- [GraphQl/Mutations/TagMutations](GraphQl/Mutations/TagMutations/README.md) -- [GraphQl/Mutations/VenueMutations](GraphQl/Mutations/VenueMutations/README.md) -- [GraphQl/Queries/ActionItemCategoryQueries](GraphQl/Queries/ActionItemCategoryQueries/README.md) -- [GraphQl/Queries/ActionItemQueries](GraphQl/Queries/ActionItemQueries/README.md) -- [GraphQl/Queries/AgendaCategoryQueries](GraphQl/Queries/AgendaCategoryQueries/README.md) -- [GraphQl/Queries/AgendaItemQueries](GraphQl/Queries/AgendaItemQueries/README.md) -- [GraphQl/Queries/EventVolunteerQueries](GraphQl/Queries/EventVolunteerQueries/README.md) -- [GraphQl/Queries/fundQueries](GraphQl/Queries/fundQueries/README.md) -- [GraphQl/Queries/OrganizationQueries](GraphQl/Queries/OrganizationQueries/README.md) -- [GraphQl/Queries/PlugInQueries](GraphQl/Queries/PlugInQueries/README.md) -- [GraphQl/Queries/Queries](GraphQl/Queries/Queries/README.md) -- [GraphQl/Queries/userTagQueries](GraphQl/Queries/userTagQueries/README.md) -- [index](index/README.md) -- [reportWebVitals](reportWebVitals/README.md) -- [screens/BlockUser/BlockUser](screens/BlockUser/BlockUser/README.md) -- [screens/CommunityProfile/CommunityProfile](screens/CommunityProfile/CommunityProfile/README.md) -- [screens/EventManagement/EventManagement](screens/EventManagement/EventManagement/README.md) -- [screens/EventVolunteers/Requests/Requests](screens/EventVolunteers/Requests/Requests/README.md) -- [screens/EventVolunteers/Requests/Requests.mocks](screens/EventVolunteers/Requests/Requests.mocks/README.md) -- [screens/EventVolunteers/VolunteerContainer](screens/EventVolunteers/VolunteerContainer/README.md) -- [screens/EventVolunteers/VolunteerGroups/VolunteerGroupDeleteModal](screens/EventVolunteers/VolunteerGroups/VolunteerGroupDeleteModal/README.md) -- [screens/EventVolunteers/VolunteerGroups/VolunteerGroupModal](screens/EventVolunteers/VolunteerGroups/VolunteerGroupModal/README.md) -- [screens/EventVolunteers/VolunteerGroups/VolunteerGroups](screens/EventVolunteers/VolunteerGroups/VolunteerGroups/README.md) -- [screens/EventVolunteers/VolunteerGroups/VolunteerGroups.mocks](screens/EventVolunteers/VolunteerGroups/VolunteerGroups.mocks/README.md) -- [screens/EventVolunteers/VolunteerGroups/VolunteerGroupViewModal](screens/EventVolunteers/VolunteerGroups/VolunteerGroupViewModal/README.md) -- [screens/EventVolunteers/Volunteers/VolunteerCreateModal](screens/EventVolunteers/Volunteers/VolunteerCreateModal/README.md) -- [screens/EventVolunteers/Volunteers/VolunteerDeleteModal](screens/EventVolunteers/Volunteers/VolunteerDeleteModal/README.md) -- [screens/EventVolunteers/Volunteers/Volunteers](screens/EventVolunteers/Volunteers/Volunteers/README.md) -- [screens/EventVolunteers/Volunteers/Volunteers.mocks](screens/EventVolunteers/Volunteers/Volunteers.mocks/README.md) -- [screens/EventVolunteers/Volunteers/VolunteerViewModal](screens/EventVolunteers/Volunteers/VolunteerViewModal/README.md) -- [screens/ForgotPassword/ForgotPassword](screens/ForgotPassword/ForgotPassword/README.md) -- [screens/FundCampaignPledge/FundCampaignPledge](screens/FundCampaignPledge/FundCampaignPledge/README.md) -- [screens/FundCampaignPledge/PledgeDeleteModal](screens/FundCampaignPledge/PledgeDeleteModal/README.md) -- [screens/FundCampaignPledge/PledgeModal](screens/FundCampaignPledge/PledgeModal/README.md) -- [screens/FundCampaignPledge/PledgesMocks](screens/FundCampaignPledge/PledgesMocks/README.md) -- [screens/Leaderboard/Leaderboard](screens/Leaderboard/Leaderboard/README.md) -- [screens/Leaderboard/Leaderboard.mocks](screens/Leaderboard/Leaderboard.mocks/README.md) -- [screens/LoginPage/LoginPage](screens/LoginPage/LoginPage/README.md) -- [screens/ManageTag/EditUserTagModal](screens/ManageTag/EditUserTagModal/README.md) -- [screens/ManageTag/ManageTag](screens/ManageTag/ManageTag/README.md) -- [screens/ManageTag/ManageTagMockComponents/MockAddPeopleToTag](screens/ManageTag/ManageTagMockComponents/MockAddPeopleToTag/README.md) -- [screens/ManageTag/ManageTagMockComponents/MockTagActions](screens/ManageTag/ManageTagMockComponents/MockTagActions/README.md) -- [screens/ManageTag/ManageTagMocks](screens/ManageTag/ManageTagMocks/README.md) -- [screens/ManageTag/RemoveUserTagModal](screens/ManageTag/RemoveUserTagModal/README.md) -- [screens/ManageTag/UnassignUserTagModal](screens/ManageTag/UnassignUserTagModal/README.md) -- [screens/MemberDetail/MemberDetail](screens/MemberDetail/MemberDetail/README.md) -- [screens/MemberDetail/MemberDetailMocks](screens/MemberDetail/MemberDetailMocks/README.md) -- [screens/OrganizationActionItems/ItemDeleteModal](screens/OrganizationActionItems/ItemDeleteModal/README.md) -- [screens/OrganizationActionItems/ItemModal](screens/OrganizationActionItems/ItemModal/README.md) -- [screens/OrganizationActionItems/ItemUpdateStatusModal](screens/OrganizationActionItems/ItemUpdateStatusModal/README.md) -- [screens/OrganizationActionItems/ItemViewModal](screens/OrganizationActionItems/ItemViewModal/README.md) -- [screens/OrganizationActionItems/OrganizationActionItem.mocks](screens/OrganizationActionItems/OrganizationActionItem.mocks/README.md) -- [screens/OrganizationActionItems/OrganizationActionItems](screens/OrganizationActionItems/OrganizationActionItems/README.md) -- [screens/OrganizationActionItems/testObject.mocks](screens/OrganizationActionItems/testObject.mocks/README.md) -- [screens/OrganizationDashboard/OrganizationDashboard](screens/OrganizationDashboard/OrganizationDashboard/README.md) -- [screens/OrganizationDashboard/OrganizationDashboardMocks](screens/OrganizationDashboard/OrganizationDashboardMocks/README.md) -- [screens/OrganizationEvents/OrganizationEvents](screens/OrganizationEvents/OrganizationEvents/README.md) -- [screens/OrganizationEvents/OrganizationEventsMocks](screens/OrganizationEvents/OrganizationEventsMocks/README.md) -- [screens/OrganizationFundCampaign/CampaignModal](screens/OrganizationFundCampaign/CampaignModal/README.md) -- [screens/OrganizationFundCampaign/OrganizationFundCampagins](screens/OrganizationFundCampaign/OrganizationFundCampagins/README.md) -- [screens/OrganizationFundCampaign/OrganizationFundCampaignMocks](screens/OrganizationFundCampaign/OrganizationFundCampaignMocks/README.md) -- [screens/OrganizationFunds/FundModal](screens/OrganizationFunds/FundModal/README.md) -- [screens/OrganizationFunds/OrganizationFunds](screens/OrganizationFunds/OrganizationFunds/README.md) -- [screens/OrganizationFunds/OrganizationFundsMocks](screens/OrganizationFunds/OrganizationFundsMocks/README.md) -- [screens/OrganizationPeople/AddMember](screens/OrganizationPeople/AddMember/README.md) -- [screens/OrganizationPeople/MockDataTypes](screens/OrganizationPeople/MockDataTypes/README.md) -- [screens/OrganizationPeople/OrganizationPeople](screens/OrganizationPeople/OrganizationPeople/README.md) -- [screens/OrganizationTags/OrganizationTags](screens/OrganizationTags/OrganizationTags/README.md) -- [screens/OrganizationTags/OrganizationTagsMocks](screens/OrganizationTags/OrganizationTagsMocks/README.md) -- [screens/OrganizationVenues/OrganizationVenues](screens/OrganizationVenues/OrganizationVenues/README.md) -- [screens/OrgContribution/OrgContribution](screens/OrgContribution/OrgContribution/README.md) -- [screens/OrgList/OrganizationModal](screens/OrgList/OrganizationModal/README.md) -- [screens/OrgList/OrgList](screens/OrgList/OrgList/README.md) -- [screens/OrgList/OrgListMocks](screens/OrgList/OrgListMocks/README.md) -- [screens/OrgPost/OrgPost](screens/OrgPost/OrgPost/README.md) -- [screens/OrgSettings/OrgSettings](screens/OrgSettings/OrgSettings/README.md) -- [screens/OrgSettings/OrgSettings.mocks](screens/OrgSettings/OrgSettings.mocks/README.md) -- [screens/PageNotFound/PageNotFound](screens/PageNotFound/PageNotFound/README.md) -- [screens/Requests/Requests](screens/Requests/Requests/README.md) -- [screens/Requests/RequestsMocks](screens/Requests/RequestsMocks/README.md) -- [screens/SubTags/SubTags](screens/SubTags/SubTags/README.md) -- [screens/SubTags/SubTagsMocks](screens/SubTags/SubTagsMocks/README.md) -- [screens/UserPortal/Campaigns/Campaigns](screens/UserPortal/Campaigns/Campaigns/README.md) -- [screens/UserPortal/Campaigns/CampaignsMocks](screens/UserPortal/Campaigns/CampaignsMocks/README.md) -- [screens/UserPortal/Campaigns/PledgeModal](screens/UserPortal/Campaigns/PledgeModal/README.md) -- [screens/UserPortal/Chat/Chat](screens/UserPortal/Chat/Chat/README.md) -- [screens/UserPortal/Donate/Donate](screens/UserPortal/Donate/Donate/README.md) -- [screens/UserPortal/Events/Events](screens/UserPortal/Events/Events/README.md) -- [screens/UserPortal/LeaveOrganization/LeaveOrganization](screens/UserPortal/LeaveOrganization/LeaveOrganization/README.md) -- [screens/UserPortal/Organizations/Organizations](screens/UserPortal/Organizations/Organizations/README.md) -- [screens/UserPortal/People/People](screens/UserPortal/People/People/README.md) -- [screens/UserPortal/Pledges/Pledges](screens/UserPortal/Pledges/Pledges/README.md) -- [screens/UserPortal/Pledges/PledgesMocks](screens/UserPortal/Pledges/PledgesMocks/README.md) -- [screens/UserPortal/Posts/Posts](screens/UserPortal/Posts/Posts/README.md) -- [screens/UserPortal/Settings/Settings](screens/UserPortal/Settings/Settings/README.md) -- [screens/UserPortal/UserScreen/UserScreen](screens/UserPortal/UserScreen/UserScreen/README.md) -- [screens/UserPortal/Volunteer/Actions/Actions](screens/UserPortal/Volunteer/Actions/Actions/README.md) -- [screens/UserPortal/Volunteer/Actions/Actions.mocks](screens/UserPortal/Volunteer/Actions/Actions.mocks/README.md) -- [screens/UserPortal/Volunteer/Groups/GroupModal](screens/UserPortal/Volunteer/Groups/GroupModal/README.md) -- [screens/UserPortal/Volunteer/Groups/Groups](screens/UserPortal/Volunteer/Groups/Groups/README.md) -- [screens/UserPortal/Volunteer/Groups/Groups.mocks](screens/UserPortal/Volunteer/Groups/Groups.mocks/README.md) -- [screens/UserPortal/Volunteer/Invitations/Invitations](screens/UserPortal/Volunteer/Invitations/Invitations/README.md) -- [screens/UserPortal/Volunteer/Invitations/Invitations.mocks](screens/UserPortal/Volunteer/Invitations/Invitations.mocks/README.md) -- [screens/UserPortal/Volunteer/UpcomingEvents/UpcomingEvents](screens/UserPortal/Volunteer/UpcomingEvents/UpcomingEvents/README.md) -- [screens/UserPortal/Volunteer/UpcomingEvents/UpcomingEvents.mocks](screens/UserPortal/Volunteer/UpcomingEvents/UpcomingEvents.mocks/README.md) -- [screens/UserPortal/Volunteer/VolunteerManagement](screens/UserPortal/Volunteer/VolunteerManagement/README.md) -- [screens/Users/Users](screens/Users/Users/README.md) -- [screens/Users/UsersMocks](screens/Users/UsersMocks/README.md) -- [setup/askAndSetDockerOption/askAndSetDockerOption](setup/askAndSetDockerOption/askAndSetDockerOption/README.md) -- [setup/askAndUpdatePort/askAndUpdatePort](setup/askAndUpdatePort/askAndUpdatePort/README.md) -- [setup/askForCustomPort/askForCustomPort](setup/askForCustomPort/askForCustomPort/README.md) -- [setup/askForDocker/askForDocker](setup/askForDocker/askForDocker/README.md) -- [setup/askForTalawaApiUrl/askForTalawaApiUrl](setup/askForTalawaApiUrl/askForTalawaApiUrl/README.md) -- [setup/checkConnection/checkConnection](setup/checkConnection/checkConnection/README.md) -- [setup/checkEnvFile/checkEnvFile](setup/checkEnvFile/checkEnvFile/README.md) -- [setup/updateEnvFile/updateEnvFile](setup/updateEnvFile/updateEnvFile/README.md) -- [setup/validateRecaptcha/validateRecaptcha](setup/validateRecaptcha/validateRecaptcha/README.md) -- [setupTests](setupTests/README.md) -- [state](state/README.md) -- [state/action-creators](state/action-creators/README.md) -- [state/helpers/Action](state/helpers/Action/README.md) -- [state/hooks](state/hooks/README.md) -- [state/reducers](state/reducers/README.md) -- [state/reducers/pluginReducer](state/reducers/pluginReducer/README.md) -- [state/reducers/routesReducer](state/reducers/routesReducer/README.md) -- [state/reducers/userRoutesReducer](state/reducers/userRoutesReducer/README.md) -- [state/store](state/store/README.md) -- [subComponents/SortingButton](subComponents/SortingButton/README.md) -- [utils/chartToPdf](utils/chartToPdf/README.md) -- [utils/convertToBase64](utils/convertToBase64/README.md) -- [utils/currency](utils/currency/README.md) -- [utils/dateFormatter](utils/dateFormatter/README.md) -- [utils/errorHandler](utils/errorHandler/README.md) -- [utils/fieldTypes](utils/fieldTypes/README.md) -- [utils/formEnumFields](utils/formEnumFields/README.md) -- [utils/getOrganizationId](utils/getOrganizationId/README.md) -- [utils/getRefreshToken](utils/getRefreshToken/README.md) -- [utils/i18n](utils/i18n/README.md) -- [utils/i18nForTest](utils/i18nForTest/README.md) -- [utils/interfaces](utils/interfaces/README.md) -- [utils/languages](utils/languages/README.md) -- [utils/linkValidator](utils/linkValidator/README.md) -- [utils/organizationTagsUtils](utils/organizationTagsUtils/README.md) -- [utils/recurrenceUtils](utils/recurrenceUtils/README.md) -- [utils/recurrenceUtils/recurrenceConstants](utils/recurrenceUtils/recurrenceConstants/README.md) -- [utils/recurrenceUtils/recurrenceTypes](utils/recurrenceUtils/recurrenceTypes/README.md) -- [utils/recurrenceUtils/recurrenceUtilityFunctions](utils/recurrenceUtils/recurrenceUtilityFunctions/README.md) -- [utils/StaticMockLink](utils/StaticMockLink/README.md) -- [utils/timezoneUtils](utils/timezoneUtils/README.md) -- [utils/timezoneUtils/dateTimeConfig](utils/timezoneUtils/dateTimeConfig/README.md) -- [utils/timezoneUtils/dateTimeMiddleware](utils/timezoneUtils/dateTimeMiddleware/README.md) -- [utils/useLocalstorage](utils/useLocalstorage/README.md) -- [utils/useSession](utils/useSession/README.md) diff --git a/docs/docs/auto-docs/reportWebVitals/README.md b/docs/docs/auto-docs/reportWebVitals/README.md deleted file mode 100644 index 7d1257e8c6..0000000000 --- a/docs/docs/auto-docs/reportWebVitals/README.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../README.md) - -*** - -[talawa-admin](../modules.md) / reportWebVitals - -# reportWebVitals - -## Functions - -- [default](functions/default.md) diff --git a/docs/docs/auto-docs/reportWebVitals/functions/default.md b/docs/docs/auto-docs/reportWebVitals/functions/default.md deleted file mode 100644 index 5e60b354e6..0000000000 --- a/docs/docs/auto-docs/reportWebVitals/functions/default.md +++ /dev/null @@ -1,21 +0,0 @@ -[**talawa-admin**](../../README.md) - -*** - -[talawa-admin](../../modules.md) / [reportWebVitals](../README.md) / default - -# Function: default() - -> **default**(`onPerfEntry`?): `void` - -Defined in: [src/reportWebVitals.ts:4](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/reportWebVitals.ts#L4) - -## Parameters - -### onPerfEntry? - -(`metric`) => `void` - -## Returns - -`void` diff --git a/docs/docs/auto-docs/screens/BlockUser/BlockUser/README.md b/docs/docs/auto-docs/screens/BlockUser/BlockUser/README.md deleted file mode 100644 index 5966130741..0000000000 --- a/docs/docs/auto-docs/screens/BlockUser/BlockUser/README.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / screens/BlockUser/BlockUser - -# screens/BlockUser/BlockUser - -## Functions - -- [default](functions/default.md) diff --git a/docs/docs/auto-docs/screens/BlockUser/BlockUser/functions/default.md b/docs/docs/auto-docs/screens/BlockUser/BlockUser/functions/default.md deleted file mode 100644 index 60613c706a..0000000000 --- a/docs/docs/auto-docs/screens/BlockUser/BlockUser/functions/default.md +++ /dev/null @@ -1,28 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [screens/BlockUser/BlockUser](../README.md) / default - -# Function: default() - -> **default**(): `Element` - -Defined in: [src/screens/BlockUser/BlockUser.tsx:45](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/BlockUser/BlockUser.tsx#L45) - -Requests component displays and manages a list of users that can be blocked or unblocked. - -This component allows users to search for members by their first name or last name, -toggle between viewing blocked and all members, and perform block/unblock operations. - -## Returns - -`Element` - -JSX.Element - The `Requests` component. - -## Example - -```tsx - -``` diff --git a/docs/docs/auto-docs/screens/CommunityProfile/CommunityProfile/README.md b/docs/docs/auto-docs/screens/CommunityProfile/CommunityProfile/README.md deleted file mode 100644 index 4cfeaf8531..0000000000 --- a/docs/docs/auto-docs/screens/CommunityProfile/CommunityProfile/README.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / screens/CommunityProfile/CommunityProfile - -# screens/CommunityProfile/CommunityProfile - -## Functions - -- [default](functions/default.md) diff --git a/docs/docs/auto-docs/screens/CommunityProfile/CommunityProfile/functions/default.md b/docs/docs/auto-docs/screens/CommunityProfile/CommunityProfile/functions/default.md deleted file mode 100644 index 457706c83d..0000000000 --- a/docs/docs/auto-docs/screens/CommunityProfile/CommunityProfile/functions/default.md +++ /dev/null @@ -1,30 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [screens/CommunityProfile/CommunityProfile](../README.md) / default - -# Function: default() - -> **default**(): `Element` - -Defined in: [src/screens/CommunityProfile/CommunityProfile.tsx:40](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/CommunityProfile/CommunityProfile.tsx#L40) - -`CommunityProfile` component allows users to view and update their community profile details. - -It includes functionalities to: -- Display current community profile information -- Update profile details including social media links and logo -- Reset profile changes to the initial state - -## Returns - -`Element` - -JSX.Element - The `CommunityProfile` component. - -## Example - -```tsx - -``` diff --git a/docs/docs/auto-docs/screens/EventManagement/EventManagement/README.md b/docs/docs/auto-docs/screens/EventManagement/EventManagement/README.md deleted file mode 100644 index 65b8b007de..0000000000 --- a/docs/docs/auto-docs/screens/EventManagement/EventManagement/README.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / screens/EventManagement/EventManagement - -# screens/EventManagement/EventManagement - -## Functions - -- [default](functions/default.md) diff --git a/docs/docs/auto-docs/screens/EventManagement/EventManagement/functions/default.md b/docs/docs/auto-docs/screens/EventManagement/EventManagement/functions/default.md deleted file mode 100644 index e3bd716dc1..0000000000 --- a/docs/docs/auto-docs/screens/EventManagement/EventManagement/functions/default.md +++ /dev/null @@ -1,34 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [screens/EventManagement/EventManagement](../README.md) / default - -# Function: default() - -> **default**(): `Element` - -Defined in: [src/screens/EventManagement/EventManagement.tsx:91](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/EventManagement/EventManagement.tsx#L91) - -`EventManagement` component handles the display and navigation of different event management sections. - -It provides a tabbed interface for: -- Viewing event dashboard -- Managing event registrants -- Handling event actions -- Reviewing event agendas -- Viewing event statistics -- Managing event volunteers -- Managing event attendance - -## Returns - -`Element` - -JSX.Element - The `EventManagement` component. - -## Example - -```tsx - -``` diff --git a/docs/docs/auto-docs/screens/EventVolunteers/Requests/Requests.mocks/README.md b/docs/docs/auto-docs/screens/EventVolunteers/Requests/Requests.mocks/README.md deleted file mode 100644 index 75a66f86b6..0000000000 --- a/docs/docs/auto-docs/screens/EventVolunteers/Requests/Requests.mocks/README.md +++ /dev/null @@ -1,14 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / screens/EventVolunteers/Requests/Requests.mocks - -# screens/EventVolunteers/Requests/Requests.mocks - -## Variables - -- [EMPTY\_MOCKS](variables/EMPTY_MOCKS.md) -- [ERROR\_MOCKS](variables/ERROR_MOCKS.md) -- [MOCKS](variables/MOCKS.md) -- [UPDATE\_ERROR\_MOCKS](variables/UPDATE_ERROR_MOCKS.md) diff --git a/docs/docs/auto-docs/screens/EventVolunteers/Requests/Requests.mocks/variables/EMPTY_MOCKS.md b/docs/docs/auto-docs/screens/EventVolunteers/Requests/Requests.mocks/variables/EMPTY_MOCKS.md deleted file mode 100644 index b066f45b11..0000000000 --- a/docs/docs/auto-docs/screens/EventVolunteers/Requests/Requests.mocks/variables/EMPTY_MOCKS.md +++ /dev/null @@ -1,49 +0,0 @@ -[**talawa-admin**](../../../../../README.md) - -*** - -[talawa-admin](../../../../../modules.md) / [screens/EventVolunteers/Requests/Requests.mocks](../README.md) / EMPTY\_MOCKS - -# Variable: EMPTY\_MOCKS - -> `const` **EMPTY\_MOCKS**: `object`[] - -Defined in: [src/screens/EventVolunteers/Requests/Requests.mocks.ts:148](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/EventVolunteers/Requests/Requests.mocks.ts#L148) - -## Type declaration - -### request - -> **request**: `object` - -#### request.query - -> **query**: `DocumentNode` = `USER_VOLUNTEER_MEMBERSHIP` - -#### request.variables - -> **variables**: `object` - -#### request.variables.where - -> **where**: `object` - -#### request.variables.where.eventId - -> **eventId**: `string` = `'eventId'` - -#### request.variables.where.status - -> **status**: `string` = `'requested'` - -### result - -> **result**: `object` - -#### result.data - -> **data**: `object` - -#### result.data.getVolunteerMembership - -> **getVolunteerMembership**: `never`[] = `[]` diff --git a/docs/docs/auto-docs/screens/EventVolunteers/Requests/Requests.mocks/variables/ERROR_MOCKS.md b/docs/docs/auto-docs/screens/EventVolunteers/Requests/Requests.mocks/variables/ERROR_MOCKS.md deleted file mode 100644 index 2736e6c72e..0000000000 --- a/docs/docs/auto-docs/screens/EventVolunteers/Requests/Requests.mocks/variables/ERROR_MOCKS.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../../README.md) - -*** - -[talawa-admin](../../../../../modules.md) / [screens/EventVolunteers/Requests/Requests.mocks](../README.md) / ERROR\_MOCKS - -# Variable: ERROR\_MOCKS - -> `const` **ERROR\_MOCKS**: (\{ `error`: `Error`; `request`: \{ `query`: `DocumentNode`; `variables`: \{ `id`: `undefined`; `orderBy`: `undefined`; `status`: `undefined`; `where`: \{ `eventId`: `string`; `status`: `string`; `userName`: `undefined`; \}; \}; \}; \} \| \{ `error`: `Error`; `request`: \{ `query`: `DocumentNode`; `variables`: \{ `id`: `string`; `orderBy`: `undefined`; `status`: `string`; `where`: `undefined`; \}; \}; \})[] - -Defined in: [src/screens/EventVolunteers/Requests/Requests.mocks.ts:167](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/EventVolunteers/Requests/Requests.mocks.ts#L167) diff --git a/docs/docs/auto-docs/screens/EventVolunteers/Requests/Requests.mocks/variables/MOCKS.md b/docs/docs/auto-docs/screens/EventVolunteers/Requests/Requests.mocks/variables/MOCKS.md deleted file mode 100644 index 13e345dbe6..0000000000 --- a/docs/docs/auto-docs/screens/EventVolunteers/Requests/Requests.mocks/variables/MOCKS.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../../README.md) - -*** - -[talawa-admin](../../../../../modules.md) / [screens/EventVolunteers/Requests/Requests.mocks](../README.md) / MOCKS - -# Variable: MOCKS - -> `const` **MOCKS**: (\{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `id`: `undefined`; `orderBy`: `undefined`; `status`: `undefined`; `where`: \{ `eventId`: `string`; `status`: `string`; `userName`: `undefined`; \}; \}; \}; `result`: \{ `data`: \{ `getVolunteerMembership`: (\{ `_id`: `string`; `createdAt`: `string`; `event`: \{ `_id`: `string`; `startDate`: `string`; `title`: `string`; \}; `group`: `null`; `status`: `string`; `volunteer`: \{ `_id`: `string`; `user`: \{ `_id`: `string`; `firstName`: `string`; `image`: `string`; `lastName`: `string`; \}; \}; \} \| \{ `_id`: `string`; `createdAt`: `string`; `event`: \{ `_id`: `string`; `startDate`: `string`; `title`: `string`; \}; `group`: `null`; `status`: `string`; `volunteer`: \{ `_id`: `string`; `user`: \{ `_id`: `string`; `firstName`: `string`; `image`: `null`; `lastName`: `string`; \}; \}; \})[]; `updateVolunteerMembership`: `undefined`; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `id`: `undefined`; `orderBy`: `string`; `status`: `undefined`; `where`: \{ `eventId`: `string`; `status`: `string`; `userName`: `undefined`; \}; \}; \}; `result`: \{ `data`: \{ `getVolunteerMembership`: (\{ `_id`: `string`; `createdAt`: `string`; `event`: \{ `_id`: `string`; `startDate`: `string`; `title`: `string`; \}; `group`: `null`; `status`: `string`; `volunteer`: \{ `_id`: `string`; `user`: \{ `_id`: `string`; `firstName`: `string`; `image`: `string`; `lastName`: `string`; \}; \}; \} \| \{ `_id`: `string`; `createdAt`: `string`; `event`: \{ `_id`: `string`; `startDate`: `string`; `title`: `string`; \}; `group`: `null`; `status`: `string`; `volunteer`: \{ `_id`: `string`; `user`: \{ `_id`: `string`; `firstName`: `string`; `image`: `null`; `lastName`: `string`; \}; \}; \})[]; `updateVolunteerMembership`: `undefined`; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `id`: `undefined`; `orderBy`: `undefined`; `status`: `undefined`; `where`: \{ `eventId`: `string`; `status`: `string`; `userName`: `string`; \}; \}; \}; `result`: \{ `data`: \{ `getVolunteerMembership`: `object`[]; `updateVolunteerMembership`: `undefined`; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `id`: `string`; `orderBy`: `undefined`; `status`: `string`; `where`: `undefined`; \}; \}; `result`: \{ `data`: \{ `getVolunteerMembership`: `undefined`; `updateVolunteerMembership`: \{ `_id`: `string`; \}; \}; \}; \})[] - -Defined in: [src/screens/EventVolunteers/Requests/Requests.mocks.ts:46](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/EventVolunteers/Requests/Requests.mocks.ts#L46) diff --git a/docs/docs/auto-docs/screens/EventVolunteers/Requests/Requests.mocks/variables/UPDATE_ERROR_MOCKS.md b/docs/docs/auto-docs/screens/EventVolunteers/Requests/Requests.mocks/variables/UPDATE_ERROR_MOCKS.md deleted file mode 100644 index 98f30df5f4..0000000000 --- a/docs/docs/auto-docs/screens/EventVolunteers/Requests/Requests.mocks/variables/UPDATE_ERROR_MOCKS.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../../README.md) - -*** - -[talawa-admin](../../../../../modules.md) / [screens/EventVolunteers/Requests/Requests.mocks](../README.md) / UPDATE\_ERROR\_MOCKS - -# Variable: UPDATE\_ERROR\_MOCKS - -> `const` **UPDATE\_ERROR\_MOCKS**: (\{ `error`: `undefined`; `request`: \{ `query`: `DocumentNode`; `variables`: \{ `id`: `undefined`; `status`: `undefined`; `where`: \{ `eventId`: `string`; `status`: `string`; \}; \}; \}; `result`: \{ `data`: \{ `getVolunteerMembership`: (\{ `_id`: `string`; `createdAt`: `string`; `event`: \{ `_id`: `string`; `startDate`: `string`; `title`: `string`; \}; `group`: `null`; `status`: `string`; `volunteer`: \{ `_id`: `string`; `user`: \{ `_id`: `string`; `firstName`: `string`; `image`: `string`; `lastName`: `string`; \}; \}; \} \| \{ `_id`: `string`; `createdAt`: `string`; `event`: \{ `_id`: `string`; `startDate`: `string`; `title`: `string`; \}; `group`: `null`; `status`: `string`; `volunteer`: \{ `_id`: `string`; `user`: \{ `_id`: `string`; `firstName`: `string`; `image`: `null`; `lastName`: `string`; \}; \}; \})[]; \}; \}; \} \| \{ `error`: `Error`; `request`: \{ `query`: `DocumentNode`; `variables`: \{ `id`: `string`; `status`: `string`; `where`: `undefined`; \}; \}; `result`: `undefined`; \})[] - -Defined in: [src/screens/EventVolunteers/Requests/Requests.mocks.ts:194](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/EventVolunteers/Requests/Requests.mocks.ts#L194) diff --git a/docs/docs/auto-docs/screens/EventVolunteers/Requests/Requests/README.md b/docs/docs/auto-docs/screens/EventVolunteers/Requests/Requests/README.md deleted file mode 100644 index 669266bca9..0000000000 --- a/docs/docs/auto-docs/screens/EventVolunteers/Requests/Requests/README.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / screens/EventVolunteers/Requests/Requests - -# screens/EventVolunteers/Requests/Requests - -## Functions - -- [default](functions/default.md) diff --git a/docs/docs/auto-docs/screens/EventVolunteers/Requests/Requests/functions/default.md b/docs/docs/auto-docs/screens/EventVolunteers/Requests/Requests/functions/default.md deleted file mode 100644 index 876d5834ce..0000000000 --- a/docs/docs/auto-docs/screens/EventVolunteers/Requests/Requests/functions/default.md +++ /dev/null @@ -1,21 +0,0 @@ -[**talawa-admin**](../../../../../README.md) - -*** - -[talawa-admin](../../../../../modules.md) / [screens/EventVolunteers/Requests/Requests](../README.md) / default - -# Function: default() - -> **default**(): `JSX.Element` - -Defined in: [src/screens/EventVolunteers/Requests/Requests.tsx:53](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/EventVolunteers/Requests/Requests.tsx#L53) - -Component for managing and displaying Volunteer Membership requests for an event. - -This component allows users to view, filter, sort, and create action items. It also allows users to accept or reject volunteer membership requests. - -## Returns - -`JSX.Element` - -The rendered component. diff --git a/docs/docs/auto-docs/screens/EventVolunteers/VolunteerContainer/README.md b/docs/docs/auto-docs/screens/EventVolunteers/VolunteerContainer/README.md deleted file mode 100644 index 03cc6c6ef1..0000000000 --- a/docs/docs/auto-docs/screens/EventVolunteers/VolunteerContainer/README.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / screens/EventVolunteers/VolunteerContainer - -# screens/EventVolunteers/VolunteerContainer - -## Functions - -- [default](functions/default.md) diff --git a/docs/docs/auto-docs/screens/EventVolunteers/VolunteerContainer/functions/default.md b/docs/docs/auto-docs/screens/EventVolunteers/VolunteerContainer/functions/default.md deleted file mode 100644 index d8798982aa..0000000000 --- a/docs/docs/auto-docs/screens/EventVolunteers/VolunteerContainer/functions/default.md +++ /dev/null @@ -1,21 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [screens/EventVolunteers/VolunteerContainer](../README.md) / default - -# Function: default() - -> **default**(): `JSX.Element` - -Defined in: [src/screens/EventVolunteers/VolunteerContainer.tsx:18](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/EventVolunteers/VolunteerContainer.tsx#L18) - -Container Component for Volunteer or VolunteerGroups as per selection. - -This component allows users switch between Volunteers and VolunteerGroups. - -## Returns - -`JSX.Element` - -The rendered component. diff --git a/docs/docs/auto-docs/screens/EventVolunteers/VolunteerGroups/VolunteerGroupDeleteModal/README.md b/docs/docs/auto-docs/screens/EventVolunteers/VolunteerGroups/VolunteerGroupDeleteModal/README.md deleted file mode 100644 index d744309fca..0000000000 --- a/docs/docs/auto-docs/screens/EventVolunteers/VolunteerGroups/VolunteerGroupDeleteModal/README.md +++ /dev/null @@ -1,15 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / screens/EventVolunteers/VolunteerGroups/VolunteerGroupDeleteModal - -# screens/EventVolunteers/VolunteerGroups/VolunteerGroupDeleteModal - -## Interfaces - -- [InterfaceDeleteVolunteerGroupModal](interfaces/InterfaceDeleteVolunteerGroupModal.md) - -## Functions - -- [default](functions/default.md) diff --git a/docs/docs/auto-docs/screens/EventVolunteers/VolunteerGroups/VolunteerGroupDeleteModal/functions/default.md b/docs/docs/auto-docs/screens/EventVolunteers/VolunteerGroups/VolunteerGroupDeleteModal/functions/default.md deleted file mode 100644 index 88e3466059..0000000000 --- a/docs/docs/auto-docs/screens/EventVolunteers/VolunteerGroups/VolunteerGroupDeleteModal/functions/default.md +++ /dev/null @@ -1,48 +0,0 @@ -[**talawa-admin**](../../../../../README.md) - -*** - -[talawa-admin](../../../../../modules.md) / [screens/EventVolunteers/VolunteerGroups/VolunteerGroupDeleteModal](../README.md) / default - -# Function: default() - -> **default**(`props`, `deprecatedLegacyContext`?): `ReactNode` - -Defined in: [src/screens/EventVolunteers/VolunteerGroups/VolunteerGroupDeleteModal.tsx:42](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/EventVolunteers/VolunteerGroups/VolunteerGroupDeleteModal.tsx#L42) - -A modal dialog for confirming the deletion of a volunteer group. - -## Parameters - -### props - -[`InterfaceDeleteVolunteerGroupModal`](../interfaces/InterfaceDeleteVolunteerGroupModal.md) - -### deprecatedLegacyContext? - -`any` - -**Deprecated** - -**See** - -[React Docs](https://legacy.reactjs.org/docs/legacy-context.html#referencing-context-in-lifecycle-methods) - -## Returns - -`ReactNode` - -The rendered modal component. - -The `VolunteerGroupDeleteModal` component displays a confirmation dialog when a user attempts to delete a volunteer group. -It allows the user to either confirm or cancel the deletion. -On confirmation, the `deleteVolunteerGroup` mutation is called to remove the volunteer group from the database, -and the `refetchGroups` function is invoked to update the list of volunteer groups. -A success or error toast notification is shown based on the result of the deletion operation. - -The modal includes: -- A header with a title and a close button. -- A body with a message asking for confirmation. -- A footer with "Yes" and "No" buttons to confirm or cancel the deletion. - -The `deleteVolunteerGroup` mutation is used to perform the deletion operation. diff --git a/docs/docs/auto-docs/screens/EventVolunteers/VolunteerGroups/VolunteerGroupDeleteModal/interfaces/InterfaceDeleteVolunteerGroupModal.md b/docs/docs/auto-docs/screens/EventVolunteers/VolunteerGroups/VolunteerGroupDeleteModal/interfaces/InterfaceDeleteVolunteerGroupModal.md deleted file mode 100644 index a44f1b5589..0000000000 --- a/docs/docs/auto-docs/screens/EventVolunteers/VolunteerGroups/VolunteerGroupDeleteModal/interfaces/InterfaceDeleteVolunteerGroupModal.md +++ /dev/null @@ -1,49 +0,0 @@ -[**talawa-admin**](../../../../../README.md) - -*** - -[talawa-admin](../../../../../modules.md) / [screens/EventVolunteers/VolunteerGroups/VolunteerGroupDeleteModal](../README.md) / InterfaceDeleteVolunteerGroupModal - -# Interface: InterfaceDeleteVolunteerGroupModal - -Defined in: [src/screens/EventVolunteers/VolunteerGroups/VolunteerGroupDeleteModal.tsx:10](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/EventVolunteers/VolunteerGroups/VolunteerGroupDeleteModal.tsx#L10) - -## Properties - -### group - -> **group**: `null` \| [`InterfaceVolunteerGroupInfo`](../../../../../utils/interfaces/interfaces/InterfaceVolunteerGroupInfo.md) - -Defined in: [src/screens/EventVolunteers/VolunteerGroups/VolunteerGroupDeleteModal.tsx:13](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/EventVolunteers/VolunteerGroups/VolunteerGroupDeleteModal.tsx#L13) - -*** - -### hide() - -> **hide**: () => `void` - -Defined in: [src/screens/EventVolunteers/VolunteerGroups/VolunteerGroupDeleteModal.tsx:12](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/EventVolunteers/VolunteerGroups/VolunteerGroupDeleteModal.tsx#L12) - -#### Returns - -`void` - -*** - -### isOpen - -> **isOpen**: `boolean` - -Defined in: [src/screens/EventVolunteers/VolunteerGroups/VolunteerGroupDeleteModal.tsx:11](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/EventVolunteers/VolunteerGroups/VolunteerGroupDeleteModal.tsx#L11) - -*** - -### refetchGroups() - -> **refetchGroups**: () => `void` - -Defined in: [src/screens/EventVolunteers/VolunteerGroups/VolunteerGroupDeleteModal.tsx:14](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/EventVolunteers/VolunteerGroups/VolunteerGroupDeleteModal.tsx#L14) - -#### Returns - -`void` diff --git a/docs/docs/auto-docs/screens/EventVolunteers/VolunteerGroups/VolunteerGroupModal/README.md b/docs/docs/auto-docs/screens/EventVolunteers/VolunteerGroups/VolunteerGroupModal/README.md deleted file mode 100644 index 51f59d0b3d..0000000000 --- a/docs/docs/auto-docs/screens/EventVolunteers/VolunteerGroups/VolunteerGroupModal/README.md +++ /dev/null @@ -1,15 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / screens/EventVolunteers/VolunteerGroups/VolunteerGroupModal - -# screens/EventVolunteers/VolunteerGroups/VolunteerGroupModal - -## Interfaces - -- [InterfaceVolunteerGroupModal](interfaces/InterfaceVolunteerGroupModal.md) - -## Functions - -- [default](functions/default.md) diff --git a/docs/docs/auto-docs/screens/EventVolunteers/VolunteerGroups/VolunteerGroupModal/functions/default.md b/docs/docs/auto-docs/screens/EventVolunteers/VolunteerGroups/VolunteerGroupModal/functions/default.md deleted file mode 100644 index 046079a62f..0000000000 --- a/docs/docs/auto-docs/screens/EventVolunteers/VolunteerGroups/VolunteerGroupModal/functions/default.md +++ /dev/null @@ -1,54 +0,0 @@ -[**talawa-admin**](../../../../../README.md) - -*** - -[talawa-admin](../../../../../modules.md) / [screens/EventVolunteers/VolunteerGroups/VolunteerGroupModal](../README.md) / default - -# Function: default() - -> **default**(`props`, `deprecatedLegacyContext`?): `ReactNode` - -Defined in: [src/screens/EventVolunteers/VolunteerGroups/VolunteerGroupModal.tsx:63](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/EventVolunteers/VolunteerGroups/VolunteerGroupModal.tsx#L63) - -A modal dialog for creating or editing a volunteer group. - -## Parameters - -### props - -[`InterfaceVolunteerGroupModal`](../interfaces/InterfaceVolunteerGroupModal.md) - -### deprecatedLegacyContext? - -`any` - -**Deprecated** - -**See** - -[React Docs](https://legacy.reactjs.org/docs/legacy-context.html#referencing-context-in-lifecycle-methods) - -## Returns - -`ReactNode` - -The rendered modal component. - -The `VolunteerGroupModal` component displays a form within a modal dialog for creating or editing a Volunteer Group. -It includes fields for entering the group name, description, volunteersRequired, and selecting volunteers/leaders. - -The modal includes: -- A header with a title indicating the current mode (create or edit) and a close button. -- A form with: - - An input field for entering the group name. - - A textarea for entering the group description. - - A multi-select dropdown for selecting leader. - - A multi-select dropdown for selecting volunteers. - - An input field for entering the number of volunteers required. -- A submit button to create or update the pledge. - -On form submission, the component either: -- Calls `updatePledge` mutation to update an existing pledge, or -- Calls `createPledge` mutation to create a new pledge. - -Success or error messages are displayed using toast notifications based on the result of the mutation. diff --git a/docs/docs/auto-docs/screens/EventVolunteers/VolunteerGroups/VolunteerGroupModal/interfaces/InterfaceVolunteerGroupModal.md b/docs/docs/auto-docs/screens/EventVolunteers/VolunteerGroups/VolunteerGroupModal/interfaces/InterfaceVolunteerGroupModal.md deleted file mode 100644 index b8c25ef289..0000000000 --- a/docs/docs/auto-docs/screens/EventVolunteers/VolunteerGroups/VolunteerGroupModal/interfaces/InterfaceVolunteerGroupModal.md +++ /dev/null @@ -1,73 +0,0 @@ -[**talawa-admin**](../../../../../README.md) - -*** - -[talawa-admin](../../../../../modules.md) / [screens/EventVolunteers/VolunteerGroups/VolunteerGroupModal](../README.md) / InterfaceVolunteerGroupModal - -# Interface: InterfaceVolunteerGroupModal - -Defined in: [src/screens/EventVolunteers/VolunteerGroups/VolunteerGroupModal.tsx:21](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/EventVolunteers/VolunteerGroups/VolunteerGroupModal.tsx#L21) - -## Properties - -### eventId - -> **eventId**: `string` - -Defined in: [src/screens/EventVolunteers/VolunteerGroups/VolunteerGroupModal.tsx:24](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/EventVolunteers/VolunteerGroups/VolunteerGroupModal.tsx#L24) - -*** - -### group - -> **group**: `null` \| [`InterfaceVolunteerGroupInfo`](../../../../../utils/interfaces/interfaces/InterfaceVolunteerGroupInfo.md) - -Defined in: [src/screens/EventVolunteers/VolunteerGroups/VolunteerGroupModal.tsx:26](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/EventVolunteers/VolunteerGroups/VolunteerGroupModal.tsx#L26) - -*** - -### hide() - -> **hide**: () => `void` - -Defined in: [src/screens/EventVolunteers/VolunteerGroups/VolunteerGroupModal.tsx:23](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/EventVolunteers/VolunteerGroups/VolunteerGroupModal.tsx#L23) - -#### Returns - -`void` - -*** - -### isOpen - -> **isOpen**: `boolean` - -Defined in: [src/screens/EventVolunteers/VolunteerGroups/VolunteerGroupModal.tsx:22](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/EventVolunteers/VolunteerGroups/VolunteerGroupModal.tsx#L22) - -*** - -### mode - -> **mode**: `"create"` \| `"edit"` - -Defined in: [src/screens/EventVolunteers/VolunteerGroups/VolunteerGroupModal.tsx:28](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/EventVolunteers/VolunteerGroups/VolunteerGroupModal.tsx#L28) - -*** - -### orgId - -> **orgId**: `string` - -Defined in: [src/screens/EventVolunteers/VolunteerGroups/VolunteerGroupModal.tsx:25](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/EventVolunteers/VolunteerGroups/VolunteerGroupModal.tsx#L25) - -*** - -### refetchGroups() - -> **refetchGroups**: () => `void` - -Defined in: [src/screens/EventVolunteers/VolunteerGroups/VolunteerGroupModal.tsx:27](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/EventVolunteers/VolunteerGroups/VolunteerGroupModal.tsx#L27) - -#### Returns - -`void` diff --git a/docs/docs/auto-docs/screens/EventVolunteers/VolunteerGroups/VolunteerGroupViewModal/README.md b/docs/docs/auto-docs/screens/EventVolunteers/VolunteerGroups/VolunteerGroupViewModal/README.md deleted file mode 100644 index 9e4517af04..0000000000 --- a/docs/docs/auto-docs/screens/EventVolunteers/VolunteerGroups/VolunteerGroupViewModal/README.md +++ /dev/null @@ -1,15 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / screens/EventVolunteers/VolunteerGroups/VolunteerGroupViewModal - -# screens/EventVolunteers/VolunteerGroups/VolunteerGroupViewModal - -## Interfaces - -- [InterfaceVolunteerGroupViewModal](interfaces/InterfaceVolunteerGroupViewModal.md) - -## Functions - -- [default](functions/default.md) diff --git a/docs/docs/auto-docs/screens/EventVolunteers/VolunteerGroups/VolunteerGroupViewModal/functions/default.md b/docs/docs/auto-docs/screens/EventVolunteers/VolunteerGroups/VolunteerGroupViewModal/functions/default.md deleted file mode 100644 index 68fd5516bb..0000000000 --- a/docs/docs/auto-docs/screens/EventVolunteers/VolunteerGroups/VolunteerGroupViewModal/functions/default.md +++ /dev/null @@ -1,41 +0,0 @@ -[**talawa-admin**](../../../../../README.md) - -*** - -[talawa-admin](../../../../../modules.md) / [screens/EventVolunteers/VolunteerGroups/VolunteerGroupViewModal](../README.md) / default - -# Function: default() - -> **default**(`props`, `deprecatedLegacyContext`?): `ReactNode` - -Defined in: [src/screens/EventVolunteers/VolunteerGroups/VolunteerGroupViewModal.tsx:41](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/EventVolunteers/VolunteerGroups/VolunteerGroupViewModal.tsx#L41) - -A modal dialog for viewing volunteer group information for an event. - -## Parameters - -### props - -[`InterfaceVolunteerGroupViewModal`](../interfaces/InterfaceVolunteerGroupViewModal.md) - -### deprecatedLegacyContext? - -`any` - -**Deprecated** - -**See** - -[React Docs](https://legacy.reactjs.org/docs/legacy-context.html#referencing-context-in-lifecycle-methods) - -## Returns - -`ReactNode` - -The rendered modal component. - -The `VolunteerGroupViewModal` component displays all the fields of a volunteer group in a modal dialog. - -The modal includes: -- A header with a title and a close button. -- fields for volunteer name, status, hours volunteered, groups, and assignments. diff --git a/docs/docs/auto-docs/screens/EventVolunteers/VolunteerGroups/VolunteerGroupViewModal/interfaces/InterfaceVolunteerGroupViewModal.md b/docs/docs/auto-docs/screens/EventVolunteers/VolunteerGroups/VolunteerGroupViewModal/interfaces/InterfaceVolunteerGroupViewModal.md deleted file mode 100644 index 3a34e13a98..0000000000 --- a/docs/docs/auto-docs/screens/EventVolunteers/VolunteerGroups/VolunteerGroupViewModal/interfaces/InterfaceVolunteerGroupViewModal.md +++ /dev/null @@ -1,37 +0,0 @@ -[**talawa-admin**](../../../../../README.md) - -*** - -[talawa-admin](../../../../../modules.md) / [screens/EventVolunteers/VolunteerGroups/VolunteerGroupViewModal](../README.md) / InterfaceVolunteerGroupViewModal - -# Interface: InterfaceVolunteerGroupViewModal - -Defined in: [src/screens/EventVolunteers/VolunteerGroups/VolunteerGroupViewModal.tsx:19](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/EventVolunteers/VolunteerGroups/VolunteerGroupViewModal.tsx#L19) - -## Properties - -### group - -> **group**: [`InterfaceVolunteerGroupInfo`](../../../../../utils/interfaces/interfaces/InterfaceVolunteerGroupInfo.md) - -Defined in: [src/screens/EventVolunteers/VolunteerGroups/VolunteerGroupViewModal.tsx:22](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/EventVolunteers/VolunteerGroups/VolunteerGroupViewModal.tsx#L22) - -*** - -### hide() - -> **hide**: () => `void` - -Defined in: [src/screens/EventVolunteers/VolunteerGroups/VolunteerGroupViewModal.tsx:21](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/EventVolunteers/VolunteerGroups/VolunteerGroupViewModal.tsx#L21) - -#### Returns - -`void` - -*** - -### isOpen - -> **isOpen**: `boolean` - -Defined in: [src/screens/EventVolunteers/VolunteerGroups/VolunteerGroupViewModal.tsx:20](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/EventVolunteers/VolunteerGroups/VolunteerGroupViewModal.tsx#L20) diff --git a/docs/docs/auto-docs/screens/EventVolunteers/VolunteerGroups/VolunteerGroups.mocks/README.md b/docs/docs/auto-docs/screens/EventVolunteers/VolunteerGroups/VolunteerGroups.mocks/README.md deleted file mode 100644 index f9b469997c..0000000000 --- a/docs/docs/auto-docs/screens/EventVolunteers/VolunteerGroups/VolunteerGroups.mocks/README.md +++ /dev/null @@ -1,13 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / screens/EventVolunteers/VolunteerGroups/VolunteerGroups.mocks - -# screens/EventVolunteers/VolunteerGroups/VolunteerGroups.mocks - -## Variables - -- [MOCKS](variables/MOCKS.md) -- [MOCKS\_EMPTY](variables/MOCKS_EMPTY.md) -- [MOCKS\_ERROR](variables/MOCKS_ERROR.md) diff --git a/docs/docs/auto-docs/screens/EventVolunteers/VolunteerGroups/VolunteerGroups.mocks/variables/MOCKS.md b/docs/docs/auto-docs/screens/EventVolunteers/VolunteerGroups/VolunteerGroups.mocks/variables/MOCKS.md deleted file mode 100644 index 78cbdcc5d5..0000000000 --- a/docs/docs/auto-docs/screens/EventVolunteers/VolunteerGroups/VolunteerGroups.mocks/variables/MOCKS.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../../README.md) - -*** - -[talawa-admin](../../../../../modules.md) / [screens/EventVolunteers/VolunteerGroups/VolunteerGroups.mocks](../README.md) / MOCKS - -# Variable: MOCKS - -> `const` **MOCKS**: (\{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `data`: `undefined`; `id`: `undefined`; `orderBy`: `null`; `where`: \{ `eventId`: `string`; `leaderName`: `null`; `name_contains`: `string`; \}; \}; \}; `result`: \{ `data`: \{ `createEventVolunteerGroup`: `undefined`; `getEventVolunteerGroups`: (\{ `_id`: `string`; `assignments`: `never`[]; `createdAt`: `string`; `creator`: \{ `_id`: `string`; `firstName`: `string`; `image`: `null`; `lastName`: `string`; \}; `description`: `string`; `event`: \{ `_id`: `string`; \}; `leader`: \{ `_id`: `string`; `firstName`: `string`; `image`: `string`; `lastName`: `string`; \}; `name`: `string`; `volunteers`: `object`[]; `volunteersRequired`: `null`; \} \| \{ `_id`: `string`; `assignments`: `never`[]; `createdAt`: `string`; `creator`: \{ `_id`: `string`; `firstName`: `string`; `image`: `null`; `lastName`: `string`; \}; `description`: `string`; `event`: \{ `_id`: `string`; \}; `leader`: \{ `_id`: `string`; `firstName`: `string`; `image`: `null`; `lastName`: `string`; \}; `name`: `string`; `volunteers`: `object`[]; `volunteersRequired`: `null`; \})[]; `organizations`: `undefined`; `removeEventVolunteerGroup`: `undefined`; `updateEventVolunteerGroup`: `undefined`; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `data`: `undefined`; `id`: `undefined`; `orderBy`: `string`; `where`: \{ `eventId`: `string`; `leaderName`: `null`; `name_contains`: `string`; \}; \}; \}; `result`: \{ `data`: \{ `createEventVolunteerGroup`: `undefined`; `getEventVolunteerGroups`: (\{ `_id`: `string`; `assignments`: `never`[]; `createdAt`: `string`; `creator`: \{ `_id`: `string`; `firstName`: `string`; `image`: `null`; `lastName`: `string`; \}; `description`: `string`; `event`: \{ `_id`: `string`; \}; `leader`: \{ `_id`: `string`; `firstName`: `string`; `image`: `string`; `lastName`: `string`; \}; `name`: `string`; `volunteers`: `object`[]; `volunteersRequired`: `null`; \} \| \{ `_id`: `string`; `assignments`: `never`[]; `createdAt`: `string`; `creator`: \{ `_id`: `string`; `firstName`: `string`; `image`: `null`; `lastName`: `string`; \}; `description`: `string`; `event`: \{ `_id`: `string`; \}; `leader`: \{ `_id`: `string`; `firstName`: `string`; `image`: `null`; `lastName`: `string`; \}; `name`: `string`; `volunteers`: `object`[]; `volunteersRequired`: `null`; \})[]; `organizations`: `undefined`; `removeEventVolunteerGroup`: `undefined`; `updateEventVolunteerGroup`: `undefined`; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `data`: `undefined`; `id`: `undefined`; `orderBy`: `null`; `where`: \{ `eventId`: `string`; `leaderName`: `string`; `name_contains`: `null`; \}; \}; \}; `result`: \{ `data`: \{ `createEventVolunteerGroup`: `undefined`; `getEventVolunteerGroups`: (\{ `_id`: `string`; `assignments`: `never`[]; `createdAt`: `string`; `creator`: \{ `_id`: `string`; `firstName`: `string`; `image`: `null`; `lastName`: `string`; \}; `description`: `string`; `event`: \{ `_id`: `string`; \}; `leader`: \{ `_id`: `string`; `firstName`: `string`; `image`: `string`; `lastName`: `string`; \}; `name`: `string`; `volunteers`: `object`[]; `volunteersRequired`: `null`; \} \| \{ `_id`: `string`; `assignments`: `never`[]; `createdAt`: `string`; `creator`: \{ `_id`: `string`; `firstName`: `string`; `image`: `null`; `lastName`: `string`; \}; `description`: `string`; `event`: \{ `_id`: `string`; \}; `leader`: \{ `_id`: `string`; `firstName`: `string`; `image`: `null`; `lastName`: `string`; \}; `name`: `string`; `volunteers`: `object`[]; `volunteersRequired`: `null`; \})[]; `organizations`: `undefined`; `removeEventVolunteerGroup`: `undefined`; `updateEventVolunteerGroup`: `undefined`; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `data`: `undefined`; `id`: `string`; `orderBy`: `undefined`; `where`: `undefined`; \}; \}; `result`: \{ `data`: \{ `createEventVolunteerGroup`: `undefined`; `getEventVolunteerGroups`: `undefined`; `organizations`: `object`[]; `removeEventVolunteerGroup`: `undefined`; `updateEventVolunteerGroup`: `undefined`; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `data`: \{ `description`: `string`; `eventId`: `string`; `leaderId`: `string`; `name`: `string`; `volunteersRequired`: `number`; `volunteerUserIds`: `string`[]; \}; `id`: `undefined`; `orderBy`: `undefined`; `where`: `undefined`; \}; \}; `result`: \{ `data`: \{ `createEventVolunteerGroup`: \{ `_id`: `string`; \}; `getEventVolunteerGroups`: `undefined`; `organizations`: `undefined`; `removeEventVolunteerGroup`: `undefined`; `updateEventVolunteerGroup`: `undefined`; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `data`: `undefined`; `id`: `string`; `orderBy`: `undefined`; `where`: `undefined`; \}; \}; `result`: \{ `data`: \{ `createEventVolunteerGroup`: `undefined`; `getEventVolunteerGroups`: `undefined`; `organizations`: `undefined`; `removeEventVolunteerGroup`: \{ `_id`: `string`; \}; `updateEventVolunteerGroup`: `undefined`; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `data`: \{ `description`: `string`; `eventId`: `string`; `leaderId`: `undefined`; `name`: `string`; `volunteersRequired`: `number`; `volunteerUserIds`: `undefined`; \}; `id`: `string`; `orderBy`: `undefined`; `where`: `undefined`; \}; \}; `result`: \{ `data`: \{ `createEventVolunteerGroup`: `undefined`; `getEventVolunteerGroups`: `undefined`; `organizations`: `undefined`; `removeEventVolunteerGroup`: `undefined`; `updateEventVolunteerGroup`: \{ `_id`: `string`; \}; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `data`: \{ `description`: `undefined`; `eventId`: `string`; `leaderId`: `undefined`; `name`: `undefined`; `volunteersRequired`: `undefined`; `volunteerUserIds`: `undefined`; \}; `id`: `string`; `orderBy`: `undefined`; `where`: `undefined`; \}; \}; `result`: \{ `data`: \{ `createEventVolunteerGroup`: `undefined`; `getEventVolunteerGroups`: `undefined`; `organizations`: `undefined`; `removeEventVolunteerGroup`: `undefined`; `updateEventVolunteerGroup`: \{ `_id`: `string`; \}; \}; \}; \})[] - -Defined in: [src/screens/EventVolunteers/VolunteerGroups/VolunteerGroups.mocks.ts:114](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/EventVolunteers/VolunteerGroups/VolunteerGroups.mocks.ts#L114) diff --git a/docs/docs/auto-docs/screens/EventVolunteers/VolunteerGroups/VolunteerGroups.mocks/variables/MOCKS_EMPTY.md b/docs/docs/auto-docs/screens/EventVolunteers/VolunteerGroups/VolunteerGroups.mocks/variables/MOCKS_EMPTY.md deleted file mode 100644 index cb0ed69724..0000000000 --- a/docs/docs/auto-docs/screens/EventVolunteers/VolunteerGroups/VolunteerGroups.mocks/variables/MOCKS_EMPTY.md +++ /dev/null @@ -1,57 +0,0 @@ -[**talawa-admin**](../../../../../README.md) - -*** - -[talawa-admin](../../../../../modules.md) / [screens/EventVolunteers/VolunteerGroups/VolunteerGroups.mocks](../README.md) / MOCKS\_EMPTY - -# Variable: MOCKS\_EMPTY - -> `const` **MOCKS\_EMPTY**: `object`[] - -Defined in: [src/screens/EventVolunteers/VolunteerGroups/VolunteerGroups.mocks.ts:339](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/EventVolunteers/VolunteerGroups/VolunteerGroups.mocks.ts#L339) - -## Type declaration - -### request - -> **request**: `object` - -#### request.query - -> **query**: `DocumentNode` = `EVENT_VOLUNTEER_GROUP_LIST` - -#### request.variables - -> **variables**: `object` - -#### request.variables.orderBy - -> **orderBy**: `null` = `null` - -#### request.variables.where - -> **where**: `object` - -#### request.variables.where.eventId - -> **eventId**: `string` = `'eventId'` - -#### request.variables.where.leaderName - -> **leaderName**: `null` = `null` - -#### request.variables.where.name\_contains - -> **name\_contains**: `string` = `''` - -### result - -> **result**: `object` - -#### result.data - -> **data**: `object` - -#### result.data.getEventVolunteerGroups - -> **getEventVolunteerGroups**: `never`[] = `[]` diff --git a/docs/docs/auto-docs/screens/EventVolunteers/VolunteerGroups/VolunteerGroups.mocks/variables/MOCKS_ERROR.md b/docs/docs/auto-docs/screens/EventVolunteers/VolunteerGroups/VolunteerGroups.mocks/variables/MOCKS_ERROR.md deleted file mode 100644 index 102ff917d7..0000000000 --- a/docs/docs/auto-docs/screens/EventVolunteers/VolunteerGroups/VolunteerGroups.mocks/variables/MOCKS_ERROR.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../../README.md) - -*** - -[talawa-admin](../../../../../modules.md) / [screens/EventVolunteers/VolunteerGroups/VolunteerGroups.mocks](../README.md) / MOCKS\_ERROR - -# Variable: MOCKS\_ERROR - -> `const` **MOCKS\_ERROR**: (\{ `error`: `Error`; `request`: \{ `query`: `DocumentNode`; `variables`: \{ `data`: `undefined`; `id`: `undefined`; `orderBy`: `null`; `where`: \{ `eventId`: `string`; `leaderName`: `null`; `name_contains`: `string`; \}; \}; \}; `result`: `undefined`; \} \| \{ `error`: `Error`; `request`: \{ `query`: `DocumentNode`; `variables`: \{ `data`: `undefined`; `id`: `string`; `orderBy`: `undefined`; `where`: `undefined`; \}; \}; `result`: `undefined`; \} \| \{ `error`: `undefined`; `request`: \{ `query`: `DocumentNode`; `variables`: \{ `data`: `undefined`; `id`: `string`; `orderBy`: `undefined`; `where`: `undefined`; \}; \}; `result`: \{ `data`: \{ `organizations`: `object`[]; \}; \}; \} \| \{ `error`: `Error`; `request`: \{ `query`: `DocumentNode`; `variables`: \{ `data`: \{ `description`: `string`; `eventId`: `string`; `leaderId`: `string`; `name`: `string`; `volunteersRequired`: `number`; `volunteerUserIds`: `string`[]; \}; `id`: `undefined`; `orderBy`: `undefined`; `where`: `undefined`; \}; \}; `result`: `undefined`; \} \| \{ `error`: `Error`; `request`: \{ `query`: `DocumentNode`; `variables`: \{ `data`: \{ `description`: `string`; `eventId`: `string`; `leaderId`: `undefined`; `name`: `string`; `volunteersRequired`: `number`; `volunteerUserIds`: `undefined`; \}; `id`: `string`; `orderBy`: `undefined`; `where`: `undefined`; \}; \}; `result`: `undefined`; \})[] - -Defined in: [src/screens/EventVolunteers/VolunteerGroups/VolunteerGroups.mocks.ts:360](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/EventVolunteers/VolunteerGroups/VolunteerGroups.mocks.ts#L360) diff --git a/docs/docs/auto-docs/screens/EventVolunteers/VolunteerGroups/VolunteerGroups/README.md b/docs/docs/auto-docs/screens/EventVolunteers/VolunteerGroups/VolunteerGroups/README.md deleted file mode 100644 index faf3f11e82..0000000000 --- a/docs/docs/auto-docs/screens/EventVolunteers/VolunteerGroups/VolunteerGroups/README.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / screens/EventVolunteers/VolunteerGroups/VolunteerGroups - -# screens/EventVolunteers/VolunteerGroups/VolunteerGroups - -## Functions - -- [default](functions/default.md) diff --git a/docs/docs/auto-docs/screens/EventVolunteers/VolunteerGroups/VolunteerGroups/functions/default.md b/docs/docs/auto-docs/screens/EventVolunteers/VolunteerGroups/VolunteerGroups/functions/default.md deleted file mode 100644 index 8e35884aaa..0000000000 --- a/docs/docs/auto-docs/screens/EventVolunteers/VolunteerGroups/VolunteerGroups/functions/default.md +++ /dev/null @@ -1,20 +0,0 @@ -[**talawa-admin**](../../../../../README.md) - -*** - -[talawa-admin](../../../../../modules.md) / [screens/EventVolunteers/VolunteerGroups/VolunteerGroups](../README.md) / default - -# Function: default() - -> **default**(): `JSX.Element` - -Defined in: [src/screens/EventVolunteers/VolunteerGroups/VolunteerGroups.tsx:58](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/EventVolunteers/VolunteerGroups/VolunteerGroups.tsx#L58) - -Component for managing volunteer groups for an event. -This component allows users to view, filter, sort, and create action items. It also provides a modal for creating and editing action items. - -## Returns - -`JSX.Element` - -The rendered component. diff --git a/docs/docs/auto-docs/screens/EventVolunteers/Volunteers/VolunteerCreateModal/README.md b/docs/docs/auto-docs/screens/EventVolunteers/Volunteers/VolunteerCreateModal/README.md deleted file mode 100644 index 6457ea9675..0000000000 --- a/docs/docs/auto-docs/screens/EventVolunteers/Volunteers/VolunteerCreateModal/README.md +++ /dev/null @@ -1,15 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / screens/EventVolunteers/Volunteers/VolunteerCreateModal - -# screens/EventVolunteers/Volunteers/VolunteerCreateModal - -## Interfaces - -- [InterfaceVolunteerCreateModal](interfaces/InterfaceVolunteerCreateModal.md) - -## Functions - -- [default](functions/default.md) diff --git a/docs/docs/auto-docs/screens/EventVolunteers/Volunteers/VolunteerCreateModal/functions/default.md b/docs/docs/auto-docs/screens/EventVolunteers/Volunteers/VolunteerCreateModal/functions/default.md deleted file mode 100644 index 8e400c77ee..0000000000 --- a/docs/docs/auto-docs/screens/EventVolunteers/Volunteers/VolunteerCreateModal/functions/default.md +++ /dev/null @@ -1,49 +0,0 @@ -[**talawa-admin**](../../../../../README.md) - -*** - -[talawa-admin](../../../../../modules.md) / [screens/EventVolunteers/Volunteers/VolunteerCreateModal](../README.md) / default - -# Function: default() - -> **default**(`props`, `deprecatedLegacyContext`?): `ReactNode` - -Defined in: [src/screens/EventVolunteers/Volunteers/VolunteerCreateModal.tsx:48](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/EventVolunteers/Volunteers/VolunteerCreateModal.tsx#L48) - -A modal dialog for add a volunteer for an event. - -## Parameters - -### props - -[`InterfaceVolunteerCreateModal`](../interfaces/InterfaceVolunteerCreateModal.md) - -### deprecatedLegacyContext? - -`any` - -**Deprecated** - -**See** - -[React Docs](https://legacy.reactjs.org/docs/legacy-context.html#referencing-context-in-lifecycle-methods) - -## Returns - -`ReactNode` - -The rendered modal component. - -The `VolunteerCreateModal` component displays a form within a modal dialog for adding a volunteer. -It includes fields for selecting user. - -The modal includes: -- A header with a title and a close button. -- A form with: -- A multi-select dropdown for selecting user be added as volunteer. -- A submit button to create or update the pledge. - -On form submission, the component: -- Calls `addVolunteer` mutation to add a new Volunteer. - -Success or error messages are displayed using toast notifications based on the result of the mutation. diff --git a/docs/docs/auto-docs/screens/EventVolunteers/Volunteers/VolunteerCreateModal/interfaces/InterfaceVolunteerCreateModal.md b/docs/docs/auto-docs/screens/EventVolunteers/Volunteers/VolunteerCreateModal/interfaces/InterfaceVolunteerCreateModal.md deleted file mode 100644 index 134b17318a..0000000000 --- a/docs/docs/auto-docs/screens/EventVolunteers/Volunteers/VolunteerCreateModal/interfaces/InterfaceVolunteerCreateModal.md +++ /dev/null @@ -1,57 +0,0 @@ -[**talawa-admin**](../../../../../README.md) - -*** - -[talawa-admin](../../../../../modules.md) / [screens/EventVolunteers/Volunteers/VolunteerCreateModal](../README.md) / InterfaceVolunteerCreateModal - -# Interface: InterfaceVolunteerCreateModal - -Defined in: [src/screens/EventVolunteers/Volunteers/VolunteerCreateModal.tsx:14](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/EventVolunteers/Volunteers/VolunteerCreateModal.tsx#L14) - -## Properties - -### eventId - -> **eventId**: `string` - -Defined in: [src/screens/EventVolunteers/Volunteers/VolunteerCreateModal.tsx:17](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/EventVolunteers/Volunteers/VolunteerCreateModal.tsx#L17) - -*** - -### hide() - -> **hide**: () => `void` - -Defined in: [src/screens/EventVolunteers/Volunteers/VolunteerCreateModal.tsx:16](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/EventVolunteers/Volunteers/VolunteerCreateModal.tsx#L16) - -#### Returns - -`void` - -*** - -### isOpen - -> **isOpen**: `boolean` - -Defined in: [src/screens/EventVolunteers/Volunteers/VolunteerCreateModal.tsx:15](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/EventVolunteers/Volunteers/VolunteerCreateModal.tsx#L15) - -*** - -### orgId - -> **orgId**: `string` - -Defined in: [src/screens/EventVolunteers/Volunteers/VolunteerCreateModal.tsx:18](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/EventVolunteers/Volunteers/VolunteerCreateModal.tsx#L18) - -*** - -### refetchVolunteers() - -> **refetchVolunteers**: () => `void` - -Defined in: [src/screens/EventVolunteers/Volunteers/VolunteerCreateModal.tsx:19](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/EventVolunteers/Volunteers/VolunteerCreateModal.tsx#L19) - -#### Returns - -`void` diff --git a/docs/docs/auto-docs/screens/EventVolunteers/Volunteers/VolunteerDeleteModal/README.md b/docs/docs/auto-docs/screens/EventVolunteers/Volunteers/VolunteerDeleteModal/README.md deleted file mode 100644 index b8c4b05c6f..0000000000 --- a/docs/docs/auto-docs/screens/EventVolunteers/Volunteers/VolunteerDeleteModal/README.md +++ /dev/null @@ -1,15 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / screens/EventVolunteers/Volunteers/VolunteerDeleteModal - -# screens/EventVolunteers/Volunteers/VolunteerDeleteModal - -## Interfaces - -- [InterfaceDeleteVolunteerModal](interfaces/InterfaceDeleteVolunteerModal.md) - -## Functions - -- [default](functions/default.md) diff --git a/docs/docs/auto-docs/screens/EventVolunteers/Volunteers/VolunteerDeleteModal/functions/default.md b/docs/docs/auto-docs/screens/EventVolunteers/Volunteers/VolunteerDeleteModal/functions/default.md deleted file mode 100644 index 6e5376ba6d..0000000000 --- a/docs/docs/auto-docs/screens/EventVolunteers/Volunteers/VolunteerDeleteModal/functions/default.md +++ /dev/null @@ -1,48 +0,0 @@ -[**talawa-admin**](../../../../../README.md) - -*** - -[talawa-admin](../../../../../modules.md) / [screens/EventVolunteers/Volunteers/VolunteerDeleteModal](../README.md) / default - -# Function: default() - -> **default**(`props`, `deprecatedLegacyContext`?): `ReactNode` - -Defined in: [src/screens/EventVolunteers/Volunteers/VolunteerDeleteModal.tsx:42](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/EventVolunteers/Volunteers/VolunteerDeleteModal.tsx#L42) - -A modal dialog for confirming the deletion of a volunteer. - -## Parameters - -### props - -[`InterfaceDeleteVolunteerModal`](../interfaces/InterfaceDeleteVolunteerModal.md) - -### deprecatedLegacyContext? - -`any` - -**Deprecated** - -**See** - -[React Docs](https://legacy.reactjs.org/docs/legacy-context.html#referencing-context-in-lifecycle-methods) - -## Returns - -`ReactNode` - -The rendered modal component. - -The `VolunteerDeleteModal` component displays a confirmation dialog when a user attempts to delete a volunteer. -It allows the user to either confirm or cancel the deletion. -On confirmation, the `deleteVolunteer` mutation is called to remove the pledge from the database, -and the `refetchVolunteers` function is invoked to update the list of volunteers. -A success or error toast notification is shown based on the result of the deletion operation. - -The modal includes: -- A header with a title and a close button. -- A body with a message asking for confirmation. -- A footer with "Yes" and "No" buttons to confirm or cancel the deletion. - -The `deleteVolunteer` mutation is used to perform the deletion operation. diff --git a/docs/docs/auto-docs/screens/EventVolunteers/Volunteers/VolunteerDeleteModal/interfaces/InterfaceDeleteVolunteerModal.md b/docs/docs/auto-docs/screens/EventVolunteers/Volunteers/VolunteerDeleteModal/interfaces/InterfaceDeleteVolunteerModal.md deleted file mode 100644 index 05be963cb9..0000000000 --- a/docs/docs/auto-docs/screens/EventVolunteers/Volunteers/VolunteerDeleteModal/interfaces/InterfaceDeleteVolunteerModal.md +++ /dev/null @@ -1,49 +0,0 @@ -[**talawa-admin**](../../../../../README.md) - -*** - -[talawa-admin](../../../../../modules.md) / [screens/EventVolunteers/Volunteers/VolunteerDeleteModal](../README.md) / InterfaceDeleteVolunteerModal - -# Interface: InterfaceDeleteVolunteerModal - -Defined in: [src/screens/EventVolunteers/Volunteers/VolunteerDeleteModal.tsx:10](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/EventVolunteers/Volunteers/VolunteerDeleteModal.tsx#L10) - -## Properties - -### hide() - -> **hide**: () => `void` - -Defined in: [src/screens/EventVolunteers/Volunteers/VolunteerDeleteModal.tsx:12](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/EventVolunteers/Volunteers/VolunteerDeleteModal.tsx#L12) - -#### Returns - -`void` - -*** - -### isOpen - -> **isOpen**: `boolean` - -Defined in: [src/screens/EventVolunteers/Volunteers/VolunteerDeleteModal.tsx:11](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/EventVolunteers/Volunteers/VolunteerDeleteModal.tsx#L11) - -*** - -### refetchVolunteers() - -> **refetchVolunteers**: () => `void` - -Defined in: [src/screens/EventVolunteers/Volunteers/VolunteerDeleteModal.tsx:14](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/EventVolunteers/Volunteers/VolunteerDeleteModal.tsx#L14) - -#### Returns - -`void` - -*** - -### volunteer - -> **volunteer**: [`InterfaceEventVolunteerInfo`](../../../../../utils/interfaces/interfaces/InterfaceEventVolunteerInfo.md) - -Defined in: [src/screens/EventVolunteers/Volunteers/VolunteerDeleteModal.tsx:13](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/EventVolunteers/Volunteers/VolunteerDeleteModal.tsx#L13) diff --git a/docs/docs/auto-docs/screens/EventVolunteers/Volunteers/VolunteerViewModal/README.md b/docs/docs/auto-docs/screens/EventVolunteers/Volunteers/VolunteerViewModal/README.md deleted file mode 100644 index 8546213b41..0000000000 --- a/docs/docs/auto-docs/screens/EventVolunteers/Volunteers/VolunteerViewModal/README.md +++ /dev/null @@ -1,15 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / screens/EventVolunteers/Volunteers/VolunteerViewModal - -# screens/EventVolunteers/Volunteers/VolunteerViewModal - -## Interfaces - -- [InterfaceVolunteerViewModal](interfaces/InterfaceVolunteerViewModal.md) - -## Functions - -- [default](functions/default.md) diff --git a/docs/docs/auto-docs/screens/EventVolunteers/Volunteers/VolunteerViewModal/functions/default.md b/docs/docs/auto-docs/screens/EventVolunteers/Volunteers/VolunteerViewModal/functions/default.md deleted file mode 100644 index c0484c02e7..0000000000 --- a/docs/docs/auto-docs/screens/EventVolunteers/Volunteers/VolunteerViewModal/functions/default.md +++ /dev/null @@ -1,41 +0,0 @@ -[**talawa-admin**](../../../../../README.md) - -*** - -[talawa-admin](../../../../../modules.md) / [screens/EventVolunteers/Volunteers/VolunteerViewModal](../README.md) / default - -# Function: default() - -> **default**(`props`, `deprecatedLegacyContext`?): `ReactNode` - -Defined in: [src/screens/EventVolunteers/Volunteers/VolunteerViewModal.tsx:42](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/EventVolunteers/Volunteers/VolunteerViewModal.tsx#L42) - -A modal dialog for viewing volunteer information for an event. - -## Parameters - -### props - -[`InterfaceVolunteerViewModal`](../interfaces/InterfaceVolunteerViewModal.md) - -### deprecatedLegacyContext? - -`any` - -**Deprecated** - -**See** - -[React Docs](https://legacy.reactjs.org/docs/legacy-context.html#referencing-context-in-lifecycle-methods) - -## Returns - -`ReactNode` - -The rendered modal component. - -The `VolunteerViewModal` component displays all the fields of a volunteer in a modal dialog. - -The modal includes: -- A header with a title and a close button. -- fields for volunteer name, status, hours volunteered, groups, and assignments. diff --git a/docs/docs/auto-docs/screens/EventVolunteers/Volunteers/VolunteerViewModal/interfaces/InterfaceVolunteerViewModal.md b/docs/docs/auto-docs/screens/EventVolunteers/Volunteers/VolunteerViewModal/interfaces/InterfaceVolunteerViewModal.md deleted file mode 100644 index 1477878187..0000000000 --- a/docs/docs/auto-docs/screens/EventVolunteers/Volunteers/VolunteerViewModal/interfaces/InterfaceVolunteerViewModal.md +++ /dev/null @@ -1,37 +0,0 @@ -[**talawa-admin**](../../../../../README.md) - -*** - -[talawa-admin](../../../../../modules.md) / [screens/EventVolunteers/Volunteers/VolunteerViewModal](../README.md) / InterfaceVolunteerViewModal - -# Interface: InterfaceVolunteerViewModal - -Defined in: [src/screens/EventVolunteers/Volunteers/VolunteerViewModal.tsx:20](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/EventVolunteers/Volunteers/VolunteerViewModal.tsx#L20) - -## Properties - -### hide() - -> **hide**: () => `void` - -Defined in: [src/screens/EventVolunteers/Volunteers/VolunteerViewModal.tsx:22](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/EventVolunteers/Volunteers/VolunteerViewModal.tsx#L22) - -#### Returns - -`void` - -*** - -### isOpen - -> **isOpen**: `boolean` - -Defined in: [src/screens/EventVolunteers/Volunteers/VolunteerViewModal.tsx:21](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/EventVolunteers/Volunteers/VolunteerViewModal.tsx#L21) - -*** - -### volunteer - -> **volunteer**: [`InterfaceEventVolunteerInfo`](../../../../../utils/interfaces/interfaces/InterfaceEventVolunteerInfo.md) - -Defined in: [src/screens/EventVolunteers/Volunteers/VolunteerViewModal.tsx:23](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/EventVolunteers/Volunteers/VolunteerViewModal.tsx#L23) diff --git a/docs/docs/auto-docs/screens/EventVolunteers/Volunteers/Volunteers.mocks/README.md b/docs/docs/auto-docs/screens/EventVolunteers/Volunteers/Volunteers.mocks/README.md deleted file mode 100644 index cc8ac8f4e0..0000000000 --- a/docs/docs/auto-docs/screens/EventVolunteers/Volunteers/Volunteers.mocks/README.md +++ /dev/null @@ -1,13 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / screens/EventVolunteers/Volunteers/Volunteers.mocks - -# screens/EventVolunteers/Volunteers/Volunteers.mocks - -## Variables - -- [MOCKS](variables/MOCKS.md) -- [MOCKS\_EMPTY](variables/MOCKS_EMPTY.md) -- [MOCKS\_ERROR](variables/MOCKS_ERROR.md) diff --git a/docs/docs/auto-docs/screens/EventVolunteers/Volunteers/Volunteers.mocks/variables/MOCKS.md b/docs/docs/auto-docs/screens/EventVolunteers/Volunteers/Volunteers.mocks/variables/MOCKS.md deleted file mode 100644 index 0567d15655..0000000000 --- a/docs/docs/auto-docs/screens/EventVolunteers/Volunteers/Volunteers.mocks/variables/MOCKS.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../../README.md) - -*** - -[talawa-admin](../../../../../modules.md) / [screens/EventVolunteers/Volunteers/Volunteers.mocks](../README.md) / MOCKS - -# Variable: MOCKS - -> `const` **MOCKS**: (\{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `data`: `undefined`; `id`: `undefined`; `orderBy`: `null`; `where`: \{ `eventId`: `string`; `hasAccepted`: `undefined`; `name_contains`: `string`; \}; \}; \}; `result`: \{ `data`: \{ `createEventVolunteer`: `undefined`; `getEventVolunteers`: (\{ `_id`: `string`; `assignments`: `never`[]; `groups`: `object`[]; `hasAccepted`: `boolean`; `hoursVolunteered`: `number`; `user`: \{ `_id`: `string`; `firstName`: `string`; `image`: `null`; `lastName`: `string`; \}; \} \| \{ `_id`: `string`; `assignments`: `never`[]; `groups`: `never`[]; `hasAccepted`: `boolean`; `hoursVolunteered`: `null`; `user`: \{ `_id`: `string`; `firstName`: `string`; `image`: `string`; `lastName`: `string`; \}; \})[]; `organizations`: `undefined`; `removeEventVolunteer`: `undefined`; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `data`: `undefined`; `id`: `undefined`; `orderBy`: `string`; `where`: \{ `eventId`: `string`; `hasAccepted`: `undefined`; `name_contains`: `string`; \}; \}; \}; `result`: \{ `data`: \{ `createEventVolunteer`: `undefined`; `getEventVolunteers`: (\{ `_id`: `string`; `assignments`: `never`[]; `groups`: `object`[]; `hasAccepted`: `boolean`; `hoursVolunteered`: `number`; `user`: \{ `_id`: `string`; `firstName`: `string`; `image`: `null`; `lastName`: `string`; \}; \} \| \{ `_id`: `string`; `assignments`: `never`[]; `groups`: `never`[]; `hasAccepted`: `boolean`; `hoursVolunteered`: `null`; `user`: \{ `_id`: `string`; `firstName`: `string`; `image`: `string`; `lastName`: `string`; \}; \})[]; `organizations`: `undefined`; `removeEventVolunteer`: `undefined`; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `data`: `undefined`; `id`: `undefined`; `orderBy`: `null`; `where`: \{ `eventId`: `string`; `hasAccepted`: `boolean`; `name_contains`: `string`; \}; \}; \}; `result`: \{ `data`: \{ `createEventVolunteer`: `undefined`; `getEventVolunteers`: `object`[]; `organizations`: `undefined`; `removeEventVolunteer`: `undefined`; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `data`: `undefined`; `id`: `undefined`; `orderBy`: `null`; `where`: \{ `eventId`: `string`; `hasAccepted`: `boolean`; `name_contains`: `string`; \}; \}; \}; `result`: \{ `data`: \{ `createEventVolunteer`: `undefined`; `getEventVolunteers`: `object`[]; `organizations`: `undefined`; `removeEventVolunteer`: `undefined`; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `data`: `undefined`; `id`: `string`; `orderBy`: `undefined`; `where`: `undefined`; \}; \}; `result`: \{ `data`: \{ `createEventVolunteer`: `undefined`; `getEventVolunteers`: `undefined`; `organizations`: `undefined`; `removeEventVolunteer`: \{ `_id`: `string`; \}; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `data`: `undefined`; `id`: `string`; `orderBy`: `undefined`; `where`: `undefined`; \}; \}; `result`: \{ `data`: \{ `createEventVolunteer`: `undefined`; `getEventVolunteers`: `undefined`; `organizations`: `object`[]; `removeEventVolunteer`: `undefined`; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `data`: \{ `eventId`: `string`; `userId`: `string`; \}; `id`: `undefined`; `orderBy`: `undefined`; `where`: `undefined`; \}; \}; `result`: \{ `data`: \{ `createEventVolunteer`: \{ `_id`: `string`; \}; `getEventVolunteers`: `undefined`; `organizations`: `undefined`; `removeEventVolunteer`: `undefined`; \}; \}; \})[] - -Defined in: [src/screens/EventVolunteers/Volunteers/Volunteers.mocks.ts:46](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/EventVolunteers/Volunteers/Volunteers.mocks.ts#L46) diff --git a/docs/docs/auto-docs/screens/EventVolunteers/Volunteers/Volunteers.mocks/variables/MOCKS_EMPTY.md b/docs/docs/auto-docs/screens/EventVolunteers/Volunteers/Volunteers.mocks/variables/MOCKS_EMPTY.md deleted file mode 100644 index 372df01bac..0000000000 --- a/docs/docs/auto-docs/screens/EventVolunteers/Volunteers/Volunteers.mocks/variables/MOCKS_EMPTY.md +++ /dev/null @@ -1,53 +0,0 @@ -[**talawa-admin**](../../../../../README.md) - -*** - -[talawa-admin](../../../../../modules.md) / [screens/EventVolunteers/Volunteers/Volunteers.mocks](../README.md) / MOCKS\_EMPTY - -# Variable: MOCKS\_EMPTY - -> `const` **MOCKS\_EMPTY**: `object`[] - -Defined in: [src/screens/EventVolunteers/Volunteers/Volunteers.mocks.ts:288](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/EventVolunteers/Volunteers/Volunteers.mocks.ts#L288) - -## Type declaration - -### request - -> **request**: `object` - -#### request.query - -> **query**: `DocumentNode` = `EVENT_VOLUNTEER_LIST` - -#### request.variables - -> **variables**: `object` - -#### request.variables.orderBy - -> **orderBy**: `null` = `null` - -#### request.variables.where - -> **where**: `object` - -#### request.variables.where.eventId - -> **eventId**: `string` = `'eventId'` - -#### request.variables.where.name\_contains - -> **name\_contains**: `string` = `''` - -### result - -> **result**: `object` - -#### result.data - -> **data**: `object` - -#### result.data.getEventVolunteers - -> **getEventVolunteers**: `never`[] = `[]` diff --git a/docs/docs/auto-docs/screens/EventVolunteers/Volunteers/Volunteers.mocks/variables/MOCKS_ERROR.md b/docs/docs/auto-docs/screens/EventVolunteers/Volunteers/Volunteers.mocks/variables/MOCKS_ERROR.md deleted file mode 100644 index 558dd184b6..0000000000 --- a/docs/docs/auto-docs/screens/EventVolunteers/Volunteers/Volunteers.mocks/variables/MOCKS_ERROR.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../../README.md) - -*** - -[talawa-admin](../../../../../modules.md) / [screens/EventVolunteers/Volunteers/Volunteers.mocks](../README.md) / MOCKS\_ERROR - -# Variable: MOCKS\_ERROR - -> `const` **MOCKS\_ERROR**: (\{ `error`: `Error`; `request`: \{ `query`: `DocumentNode`; `variables`: \{ `data`: `undefined`; `id`: `undefined`; `orderBy`: `null`; `where`: \{ `eventId`: `string`; `name_contains`: `string`; \}; \}; \}; `result`: `undefined`; \} \| \{ `error`: `Error`; `request`: \{ `query`: `DocumentNode`; `variables`: \{ `data`: `undefined`; `id`: `string`; `orderBy`: `undefined`; `where`: `undefined`; \}; \}; `result`: `undefined`; \} \| \{ `error`: `undefined`; `request`: \{ `query`: `DocumentNode`; `variables`: \{ `data`: `undefined`; `id`: `string`; `orderBy`: `undefined`; `where`: `undefined`; \}; \}; `result`: \{ `data`: \{ `organizations`: `object`[]; \}; \}; \} \| \{ `error`: `Error`; `request`: \{ `query`: `DocumentNode`; `variables`: \{ `data`: \{ `eventId`: `string`; `userId`: `string`; \}; `id`: `undefined`; `orderBy`: `undefined`; `where`: `undefined`; \}; \}; `result`: `undefined`; \})[] - -Defined in: [src/screens/EventVolunteers/Volunteers/Volunteers.mocks.ts:217](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/EventVolunteers/Volunteers/Volunteers.mocks.ts#L217) diff --git a/docs/docs/auto-docs/screens/EventVolunteers/Volunteers/Volunteers/README.md b/docs/docs/auto-docs/screens/EventVolunteers/Volunteers/Volunteers/README.md deleted file mode 100644 index d4454ffc42..0000000000 --- a/docs/docs/auto-docs/screens/EventVolunteers/Volunteers/Volunteers/README.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / screens/EventVolunteers/Volunteers/Volunteers - -# screens/EventVolunteers/Volunteers/Volunteers - -## Functions - -- [default](functions/default.md) diff --git a/docs/docs/auto-docs/screens/EventVolunteers/Volunteers/Volunteers/functions/default.md b/docs/docs/auto-docs/screens/EventVolunteers/Volunteers/Volunteers/functions/default.md deleted file mode 100644 index dd0c3a5a14..0000000000 --- a/docs/docs/auto-docs/screens/EventVolunteers/Volunteers/Volunteers/functions/default.md +++ /dev/null @@ -1,21 +0,0 @@ -[**talawa-admin**](../../../../../README.md) - -*** - -[talawa-admin](../../../../../modules.md) / [screens/EventVolunteers/Volunteers/Volunteers](../README.md) / default - -# Function: default() - -> **default**(): `JSX.Element` - -Defined in: [src/screens/EventVolunteers/Volunteers/Volunteers.tsx:65](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/EventVolunteers/Volunteers/Volunteers.tsx#L65) - -Component for managing and displaying event volunteers related to an event. - -This component allows users to view, filter, sort, and create volunteers. It also handles fetching and displaying related data such as volunteer acceptance status, etc. - -## Returns - -`JSX.Element` - -The rendered component. diff --git a/docs/docs/auto-docs/screens/ForgotPassword/ForgotPassword/README.md b/docs/docs/auto-docs/screens/ForgotPassword/ForgotPassword/README.md deleted file mode 100644 index 242cc67fcc..0000000000 --- a/docs/docs/auto-docs/screens/ForgotPassword/ForgotPassword/README.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / screens/ForgotPassword/ForgotPassword - -# screens/ForgotPassword/ForgotPassword - -## Functions - -- [default](functions/default.md) diff --git a/docs/docs/auto-docs/screens/ForgotPassword/ForgotPassword/functions/default.md b/docs/docs/auto-docs/screens/ForgotPassword/ForgotPassword/functions/default.md deleted file mode 100644 index 331ac4ed69..0000000000 --- a/docs/docs/auto-docs/screens/ForgotPassword/ForgotPassword/functions/default.md +++ /dev/null @@ -1,29 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [screens/ForgotPassword/ForgotPassword](../README.md) / default - -# Function: default() - -> **default**(): `Element` - -Defined in: [src/screens/ForgotPassword/ForgotPassword.tsx:36](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/ForgotPassword/ForgotPassword.tsx#L36) - -`ForgotPassword` component allows users to reset their password. - -It provides two stages: -1. Entering the registered email to receive an OTP. -2. Entering the OTP and new password to reset the password. - -## Returns - -`Element` - -JSX.Element - The `ForgotPassword` component. - -## Example - -```tsx - -``` diff --git a/docs/docs/auto-docs/screens/FundCampaignPledge/FundCampaignPledge/README.md b/docs/docs/auto-docs/screens/FundCampaignPledge/FundCampaignPledge/README.md deleted file mode 100644 index 6d4032a000..0000000000 --- a/docs/docs/auto-docs/screens/FundCampaignPledge/FundCampaignPledge/README.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / screens/FundCampaignPledge/FundCampaignPledge - -# screens/FundCampaignPledge/FundCampaignPledge - -## Functions - -- [default](functions/default.md) diff --git a/docs/docs/auto-docs/screens/FundCampaignPledge/FundCampaignPledge/functions/default.md b/docs/docs/auto-docs/screens/FundCampaignPledge/FundCampaignPledge/functions/default.md deleted file mode 100644 index c419289a27..0000000000 --- a/docs/docs/auto-docs/screens/FundCampaignPledge/FundCampaignPledge/functions/default.md +++ /dev/null @@ -1,15 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [screens/FundCampaignPledge/FundCampaignPledge](../README.md) / default - -# Function: default() - -> **default**(): `Element` - -Defined in: [src/screens/FundCampaignPledge/FundCampaignPledge.tsx:62](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/FundCampaignPledge/FundCampaignPledge.tsx#L62) - -## Returns - -`Element` diff --git a/docs/docs/auto-docs/screens/FundCampaignPledge/PledgeDeleteModal/README.md b/docs/docs/auto-docs/screens/FundCampaignPledge/PledgeDeleteModal/README.md deleted file mode 100644 index af92bb2e5a..0000000000 --- a/docs/docs/auto-docs/screens/FundCampaignPledge/PledgeDeleteModal/README.md +++ /dev/null @@ -1,15 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / screens/FundCampaignPledge/PledgeDeleteModal - -# screens/FundCampaignPledge/PledgeDeleteModal - -## Interfaces - -- [InterfaceDeletePledgeModal](interfaces/InterfaceDeletePledgeModal.md) - -## Functions - -- [default](functions/default.md) diff --git a/docs/docs/auto-docs/screens/FundCampaignPledge/PledgeDeleteModal/functions/default.md b/docs/docs/auto-docs/screens/FundCampaignPledge/PledgeDeleteModal/functions/default.md deleted file mode 100644 index 8f73c3aaae..0000000000 --- a/docs/docs/auto-docs/screens/FundCampaignPledge/PledgeDeleteModal/functions/default.md +++ /dev/null @@ -1,48 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [screens/FundCampaignPledge/PledgeDeleteModal](../README.md) / default - -# Function: default() - -> **default**(`props`, `deprecatedLegacyContext`?): `ReactNode` - -Defined in: [src/screens/FundCampaignPledge/PledgeDeleteModal.tsx:42](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/FundCampaignPledge/PledgeDeleteModal.tsx#L42) - -A modal dialog for confirming the deletion of a pledge. - -## Parameters - -### props - -[`InterfaceDeletePledgeModal`](../interfaces/InterfaceDeletePledgeModal.md) - -### deprecatedLegacyContext? - -`any` - -**Deprecated** - -**See** - -[React Docs](https://legacy.reactjs.org/docs/legacy-context.html#referencing-context-in-lifecycle-methods) - -## Returns - -`ReactNode` - -The rendered modal component. - -The `PledgeDeleteModal` component displays a confirmation dialog when a user attempts to delete a pledge. -It allows the user to either confirm or cancel the deletion. -On confirmation, the `deletePledge` mutation is called to remove the pledge from the database, -and the `refetchPledge` function is invoked to update the list of pledges. -A success or error toast notification is shown based on the result of the deletion operation. - -The modal includes: -- A header with a title and a close button. -- A body with a message asking for confirmation. -- A footer with "Yes" and "No" buttons to confirm or cancel the deletion. - -The `deletePledge` mutation is used to perform the deletion operation. diff --git a/docs/docs/auto-docs/screens/FundCampaignPledge/PledgeDeleteModal/interfaces/InterfaceDeletePledgeModal.md b/docs/docs/auto-docs/screens/FundCampaignPledge/PledgeDeleteModal/interfaces/InterfaceDeletePledgeModal.md deleted file mode 100644 index 5f96eb37d8..0000000000 --- a/docs/docs/auto-docs/screens/FundCampaignPledge/PledgeDeleteModal/interfaces/InterfaceDeletePledgeModal.md +++ /dev/null @@ -1,49 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [screens/FundCampaignPledge/PledgeDeleteModal](../README.md) / InterfaceDeletePledgeModal - -# Interface: InterfaceDeletePledgeModal - -Defined in: [src/screens/FundCampaignPledge/PledgeDeleteModal.tsx:10](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/FundCampaignPledge/PledgeDeleteModal.tsx#L10) - -## Properties - -### hide() - -> **hide**: () => `void` - -Defined in: [src/screens/FundCampaignPledge/PledgeDeleteModal.tsx:12](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/FundCampaignPledge/PledgeDeleteModal.tsx#L12) - -#### Returns - -`void` - -*** - -### isOpen - -> **isOpen**: `boolean` - -Defined in: [src/screens/FundCampaignPledge/PledgeDeleteModal.tsx:11](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/FundCampaignPledge/PledgeDeleteModal.tsx#L11) - -*** - -### pledge - -> **pledge**: `null` \| [`InterfacePledgeInfo`](../../../../utils/interfaces/interfaces/InterfacePledgeInfo.md) - -Defined in: [src/screens/FundCampaignPledge/PledgeDeleteModal.tsx:13](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/FundCampaignPledge/PledgeDeleteModal.tsx#L13) - -*** - -### refetchPledge() - -> **refetchPledge**: () => `void` - -Defined in: [src/screens/FundCampaignPledge/PledgeDeleteModal.tsx:14](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/FundCampaignPledge/PledgeDeleteModal.tsx#L14) - -#### Returns - -`void` diff --git a/docs/docs/auto-docs/screens/FundCampaignPledge/PledgeModal/README.md b/docs/docs/auto-docs/screens/FundCampaignPledge/PledgeModal/README.md deleted file mode 100644 index 0e89faf3e6..0000000000 --- a/docs/docs/auto-docs/screens/FundCampaignPledge/PledgeModal/README.md +++ /dev/null @@ -1,15 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / screens/FundCampaignPledge/PledgeModal - -# screens/FundCampaignPledge/PledgeModal - -## Interfaces - -- [InterfacePledgeModal](interfaces/InterfacePledgeModal.md) - -## Functions - -- [default](functions/default.md) diff --git a/docs/docs/auto-docs/screens/FundCampaignPledge/PledgeModal/functions/default.md b/docs/docs/auto-docs/screens/FundCampaignPledge/PledgeModal/functions/default.md deleted file mode 100644 index d2296722f0..0000000000 --- a/docs/docs/auto-docs/screens/FundCampaignPledge/PledgeModal/functions/default.md +++ /dev/null @@ -1,53 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [screens/FundCampaignPledge/PledgeModal](../README.md) / default - -# Function: default() - -> **default**(`props`, `deprecatedLegacyContext`?): `ReactNode` - -Defined in: [src/screens/FundCampaignPledge/PledgeModal.tsx:72](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/FundCampaignPledge/PledgeModal.tsx#L72) - -A modal dialog for creating or editing a pledge. - -## Parameters - -### props - -[`InterfacePledgeModal`](../interfaces/InterfacePledgeModal.md) - -### deprecatedLegacyContext? - -`any` - -**Deprecated** - -**See** - -[React Docs](https://legacy.reactjs.org/docs/legacy-context.html#referencing-context-in-lifecycle-methods) - -## Returns - -`ReactNode` - -The rendered modal component. - -The `PledgeModal` component displays a form within a modal dialog for creating or editing a pledge. -It includes fields for selecting users, entering an amount, choosing a currency, and setting start and end dates for the pledge. - -The modal includes: -- A header with a title indicating the current mode (create or edit) and a close button. -- A form with: - - A multi-select dropdown for selecting users to participate in the pledge. - - Date pickers for selecting the start and end dates of the pledge. - - A dropdown for selecting the currency of the pledge amount. - - An input field for entering the pledge amount. -- A submit button to create or update the pledge. - -On form submission, the component either: -- Calls `updatePledge` mutation to update an existing pledge, or -- Calls `createPledge` mutation to create a new pledge. - -Success or error messages are displayed using toast notifications based on the result of the mutation. diff --git a/docs/docs/auto-docs/screens/FundCampaignPledge/PledgeModal/interfaces/InterfacePledgeModal.md b/docs/docs/auto-docs/screens/FundCampaignPledge/PledgeModal/interfaces/InterfacePledgeModal.md deleted file mode 100644 index f7561c2c72..0000000000 --- a/docs/docs/auto-docs/screens/FundCampaignPledge/PledgeModal/interfaces/InterfacePledgeModal.md +++ /dev/null @@ -1,81 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [screens/FundCampaignPledge/PledgeModal](../README.md) / InterfacePledgeModal - -# Interface: InterfacePledgeModal - -Defined in: [src/screens/FundCampaignPledge/PledgeModal.tsx:28](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/FundCampaignPledge/PledgeModal.tsx#L28) - -## Properties - -### campaignId - -> **campaignId**: `string` - -Defined in: [src/screens/FundCampaignPledge/PledgeModal.tsx:31](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/FundCampaignPledge/PledgeModal.tsx#L31) - -*** - -### endDate - -> **endDate**: `Date` - -Defined in: [src/screens/FundCampaignPledge/PledgeModal.tsx:35](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/FundCampaignPledge/PledgeModal.tsx#L35) - -*** - -### hide() - -> **hide**: () => `void` - -Defined in: [src/screens/FundCampaignPledge/PledgeModal.tsx:30](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/FundCampaignPledge/PledgeModal.tsx#L30) - -#### Returns - -`void` - -*** - -### isOpen - -> **isOpen**: `boolean` - -Defined in: [src/screens/FundCampaignPledge/PledgeModal.tsx:29](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/FundCampaignPledge/PledgeModal.tsx#L29) - -*** - -### mode - -> **mode**: `"create"` \| `"edit"` - -Defined in: [src/screens/FundCampaignPledge/PledgeModal.tsx:36](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/FundCampaignPledge/PledgeModal.tsx#L36) - -*** - -### orgId - -> **orgId**: `string` - -Defined in: [src/screens/FundCampaignPledge/PledgeModal.tsx:32](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/FundCampaignPledge/PledgeModal.tsx#L32) - -*** - -### pledge - -> **pledge**: `null` \| [`InterfacePledgeInfo`](../../../../utils/interfaces/interfaces/InterfacePledgeInfo.md) - -Defined in: [src/screens/FundCampaignPledge/PledgeModal.tsx:33](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/FundCampaignPledge/PledgeModal.tsx#L33) - -*** - -### refetchPledge() - -> **refetchPledge**: () => `void` - -Defined in: [src/screens/FundCampaignPledge/PledgeModal.tsx:34](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/FundCampaignPledge/PledgeModal.tsx#L34) - -#### Returns - -`void` diff --git a/docs/docs/auto-docs/screens/FundCampaignPledge/PledgesMocks/README.md b/docs/docs/auto-docs/screens/FundCampaignPledge/PledgesMocks/README.md deleted file mode 100644 index 09161cf5a8..0000000000 --- a/docs/docs/auto-docs/screens/FundCampaignPledge/PledgesMocks/README.md +++ /dev/null @@ -1,15 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / screens/FundCampaignPledge/PledgesMocks - -# screens/FundCampaignPledge/PledgesMocks - -## Variables - -- [EMPTY\_MOCKS](variables/EMPTY_MOCKS.md) -- [MOCKS](variables/MOCKS.md) -- [MOCKS\_DELETE\_PLEDGE\_ERROR](variables/MOCKS_DELETE_PLEDGE_ERROR.md) -- [MOCKS\_FUND\_CAMPAIGN\_PLEDGE\_ERROR](variables/MOCKS_FUND_CAMPAIGN_PLEDGE_ERROR.md) -- [PLEDGE\_MODAL\_MOCKS](variables/PLEDGE_MODAL_MOCKS.md) diff --git a/docs/docs/auto-docs/screens/FundCampaignPledge/PledgesMocks/variables/EMPTY_MOCKS.md b/docs/docs/auto-docs/screens/FundCampaignPledge/PledgesMocks/variables/EMPTY_MOCKS.md deleted file mode 100644 index 256382d5e3..0000000000 --- a/docs/docs/auto-docs/screens/FundCampaignPledge/PledgesMocks/variables/EMPTY_MOCKS.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [screens/FundCampaignPledge/PledgesMocks](../README.md) / EMPTY\_MOCKS - -# Variable: EMPTY\_MOCKS - -> `const` **EMPTY\_MOCKS**: (\{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `id`: `string`; \}; \}; `result`: \{ `data`: \{ `organizations`: `object`[]; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `pledgeOrderBy`: `string`; `where`: \{ `id`: `string`; \}; \}; \}; `result`: \{ `data`: \{ `getFundraisingCampaigns`: `object`[]; \}; \}; \})[] - -Defined in: [src/screens/FundCampaignPledge/PledgesMocks.ts:387](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/FundCampaignPledge/PledgesMocks.ts#L387) diff --git a/docs/docs/auto-docs/screens/FundCampaignPledge/PledgesMocks/variables/MOCKS.md b/docs/docs/auto-docs/screens/FundCampaignPledge/PledgesMocks/variables/MOCKS.md deleted file mode 100644 index c59d259df7..0000000000 --- a/docs/docs/auto-docs/screens/FundCampaignPledge/PledgesMocks/variables/MOCKS.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [screens/FundCampaignPledge/PledgesMocks](../README.md) / MOCKS - -# Variable: MOCKS - -> `const` **MOCKS**: (\{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `id`: `string`; \}; \}; `result`: \{ `data`: \{ `organizations`: `object`[]; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `id`: `undefined`; `pledgeOrderBy`: `string`; `where`: \{ `id`: `string`; \}; \}; \}; `result`: \{ `data`: \{ `getFundraisingCampaigns`: `object`[]; `removeFundraisingCampaignPledge`: `undefined`; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `id`: `string`; `pledgeOrderBy`: `undefined`; `where`: `undefined`; \}; \}; `result`: \{ `data`: \{ `getFundraisingCampaigns`: `undefined`; `removeFundraisingCampaignPledge`: \{ `_id`: `string`; \}; \}; \}; \})[] - -Defined in: [src/screens/FundCampaignPledge/PledgesMocks.ts:49](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/FundCampaignPledge/PledgesMocks.ts#L49) diff --git a/docs/docs/auto-docs/screens/FundCampaignPledge/PledgesMocks/variables/MOCKS_DELETE_PLEDGE_ERROR.md b/docs/docs/auto-docs/screens/FundCampaignPledge/PledgesMocks/variables/MOCKS_DELETE_PLEDGE_ERROR.md deleted file mode 100644 index ae6e53b3dd..0000000000 --- a/docs/docs/auto-docs/screens/FundCampaignPledge/PledgesMocks/variables/MOCKS_DELETE_PLEDGE_ERROR.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [screens/FundCampaignPledge/PledgesMocks](../README.md) / MOCKS\_DELETE\_PLEDGE\_ERROR - -# Variable: MOCKS\_DELETE\_PLEDGE\_ERROR - -> `const` **MOCKS\_DELETE\_PLEDGE\_ERROR**: (\{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `id`: `string`; \}; \}; `result`: \{ `data`: \{ `organizations`: `object`[]; \}; \}; \} \| \{ `error`: `Error`; `request`: \{ `query`: `DocumentNode`; `variables`: \{ `id`: `string`; \}; \}; \})[] - -Defined in: [src/screens/FundCampaignPledge/PledgesMocks.ts:374](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/FundCampaignPledge/PledgesMocks.ts#L374) diff --git a/docs/docs/auto-docs/screens/FundCampaignPledge/PledgesMocks/variables/MOCKS_FUND_CAMPAIGN_PLEDGE_ERROR.md b/docs/docs/auto-docs/screens/FundCampaignPledge/PledgesMocks/variables/MOCKS_FUND_CAMPAIGN_PLEDGE_ERROR.md deleted file mode 100644 index 24f7696346..0000000000 --- a/docs/docs/auto-docs/screens/FundCampaignPledge/PledgesMocks/variables/MOCKS_FUND_CAMPAIGN_PLEDGE_ERROR.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [screens/FundCampaignPledge/PledgesMocks](../README.md) / MOCKS\_FUND\_CAMPAIGN\_PLEDGE\_ERROR - -# Variable: MOCKS\_FUND\_CAMPAIGN\_PLEDGE\_ERROR - -> `const` **MOCKS\_FUND\_CAMPAIGN\_PLEDGE\_ERROR**: (\{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `id`: `string`; \}; \}; `result`: \{ `data`: \{ `organizations`: `object`[]; \}; \}; \} \| \{ `error`: `Error`; `request`: \{ `query`: `DocumentNode`; `variables`: \{ `pledgeOrderBy`: `string`; `where`: \{ `id`: `string`; \}; \}; \}; \})[] - -Defined in: [src/screens/FundCampaignPledge/PledgesMocks.ts:358](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/FundCampaignPledge/PledgesMocks.ts#L358) diff --git a/docs/docs/auto-docs/screens/FundCampaignPledge/PledgesMocks/variables/PLEDGE_MODAL_MOCKS.md b/docs/docs/auto-docs/screens/FundCampaignPledge/PledgesMocks/variables/PLEDGE_MODAL_MOCKS.md deleted file mode 100644 index d6767eefe3..0000000000 --- a/docs/docs/auto-docs/screens/FundCampaignPledge/PledgesMocks/variables/PLEDGE_MODAL_MOCKS.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [screens/FundCampaignPledge/PledgesMocks](../README.md) / PLEDGE\_MODAL\_MOCKS - -# Variable: PLEDGE\_MODAL\_MOCKS - -> `const` **PLEDGE\_MODAL\_MOCKS**: (\{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `id`: `string`; \}; \}; `result`: \{ `data`: \{ `organizations`: `object`[]; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `amount`: `number`; `campaignId`: `undefined`; `currency`: `undefined`; `endDate`: `undefined`; `id`: `string`; `startDate`: `undefined`; `userIds`: `undefined`; \}; \}; `result`: \{ `data`: \{ `createFundraisingCampaignPledge`: `undefined`; `updateFundraisingCampaignPledge`: \{ `_id`: `string`; \}; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `amount`: `number`; `campaignId`: `string`; `currency`: `string`; `endDate`: `string`; `id`: `undefined`; `startDate`: `string`; `userIds`: `string`[]; \}; \}; `result`: \{ `data`: \{ `createFundraisingCampaignPledge`: \{ `_id`: `string`; \}; `updateFundraisingCampaignPledge`: `undefined`; \}; \}; \})[] - -Defined in: [src/screens/FundCampaignPledge/PledgesMocks.ts:419](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/FundCampaignPledge/PledgesMocks.ts#L419) diff --git a/docs/docs/auto-docs/screens/Leaderboard/Leaderboard.mocks/README.md b/docs/docs/auto-docs/screens/Leaderboard/Leaderboard.mocks/README.md deleted file mode 100644 index 300d2201d7..0000000000 --- a/docs/docs/auto-docs/screens/Leaderboard/Leaderboard.mocks/README.md +++ /dev/null @@ -1,13 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / screens/Leaderboard/Leaderboard.mocks - -# screens/Leaderboard/Leaderboard.mocks - -## Variables - -- [EMPTY\_MOCKS](variables/EMPTY_MOCKS.md) -- [ERROR\_MOCKS](variables/ERROR_MOCKS.md) -- [MOCKS](variables/MOCKS.md) diff --git a/docs/docs/auto-docs/screens/Leaderboard/Leaderboard.mocks/variables/EMPTY_MOCKS.md b/docs/docs/auto-docs/screens/Leaderboard/Leaderboard.mocks/variables/EMPTY_MOCKS.md deleted file mode 100644 index 70a4793e55..0000000000 --- a/docs/docs/auto-docs/screens/Leaderboard/Leaderboard.mocks/variables/EMPTY_MOCKS.md +++ /dev/null @@ -1,57 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [screens/Leaderboard/Leaderboard.mocks](../README.md) / EMPTY\_MOCKS - -# Variable: EMPTY\_MOCKS - -> `const` **EMPTY\_MOCKS**: `object`[] - -Defined in: [src/screens/Leaderboard/Leaderboard.mocks.ts:162](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/Leaderboard/Leaderboard.mocks.ts#L162) - -## Type declaration - -### request - -> **request**: `object` - -#### request.query - -> **query**: `DocumentNode` = `VOLUNTEER_RANKING` - -#### request.variables - -> **variables**: `object` - -#### request.variables.orgId - -> **orgId**: `string` = `'orgId'` - -#### request.variables.where - -> **where**: `object` - -#### request.variables.where.nameContains - -> **nameContains**: `string` = `''` - -#### request.variables.where.orderBy - -> **orderBy**: `string` = `'hours_DESC'` - -#### request.variables.where.timeFrame - -> **timeFrame**: `string` = `'allTime'` - -### result - -> **result**: `object` - -#### result.data - -> **data**: `object` - -#### result.data.getVolunteerRanks - -> **getVolunteerRanks**: `never`[] = `[]` diff --git a/docs/docs/auto-docs/screens/Leaderboard/Leaderboard.mocks/variables/ERROR_MOCKS.md b/docs/docs/auto-docs/screens/Leaderboard/Leaderboard.mocks/variables/ERROR_MOCKS.md deleted file mode 100644 index a9390b3937..0000000000 --- a/docs/docs/auto-docs/screens/Leaderboard/Leaderboard.mocks/variables/ERROR_MOCKS.md +++ /dev/null @@ -1,49 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [screens/Leaderboard/Leaderboard.mocks](../README.md) / ERROR\_MOCKS - -# Variable: ERROR\_MOCKS - -> `const` **ERROR\_MOCKS**: `object`[] - -Defined in: [src/screens/Leaderboard/Leaderboard.mocks.ts:183](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/Leaderboard/Leaderboard.mocks.ts#L183) - -## Type declaration - -### error - -> **error**: `Error` - -### request - -> **request**: `object` - -#### request.query - -> **query**: `DocumentNode` = `VOLUNTEER_RANKING` - -#### request.variables - -> **variables**: `object` - -#### request.variables.orgId - -> **orgId**: `string` = `'orgId'` - -#### request.variables.where - -> **where**: `object` - -#### request.variables.where.nameContains - -> **nameContains**: `string` = `''` - -#### request.variables.where.orderBy - -> **orderBy**: `string` = `'hours_DESC'` - -#### request.variables.where.timeFrame - -> **timeFrame**: `string` = `'allTime'` diff --git a/docs/docs/auto-docs/screens/Leaderboard/Leaderboard.mocks/variables/MOCKS.md b/docs/docs/auto-docs/screens/Leaderboard/Leaderboard.mocks/variables/MOCKS.md deleted file mode 100644 index 71ae3a2be0..0000000000 --- a/docs/docs/auto-docs/screens/Leaderboard/Leaderboard.mocks/variables/MOCKS.md +++ /dev/null @@ -1,57 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [screens/Leaderboard/Leaderboard.mocks](../README.md) / MOCKS - -# Variable: MOCKS - -> `const` **MOCKS**: `object`[] - -Defined in: [src/screens/Leaderboard/Leaderboard.mocks.ts:51](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/Leaderboard/Leaderboard.mocks.ts#L51) - -## Type declaration - -### request - -> **request**: `object` - -#### request.query - -> **query**: `DocumentNode` = `VOLUNTEER_RANKING` - -#### request.variables - -> **variables**: `object` - -#### request.variables.orgId - -> **orgId**: `string` = `'orgId'` - -#### request.variables.where - -> **where**: `object` - -#### request.variables.where.nameContains - -> **nameContains**: `string` = `''` - -#### request.variables.where.orderBy - -> **orderBy**: `string` = `'hours_DESC'` - -#### request.variables.where.timeFrame - -> **timeFrame**: `string` = `'allTime'` - -### result - -> **result**: `object` - -#### result.data - -> **data**: `object` - -#### result.data.getVolunteerRanks - -> **getVolunteerRanks**: (\{ `hoursVolunteered`: `number`; `rank`: `number`; `user`: \{ `_id`: `string`; `email`: `string`; `firstName`: `string`; `image`: `string`; `lastName`: `string`; \}; \} \| \{ `hoursVolunteered`: `number`; `rank`: `number`; `user`: \{ `_id`: `string`; `email`: `string`; `firstName`: `string`; `image`: `null`; `lastName`: `string`; \}; \})[] diff --git a/docs/docs/auto-docs/screens/Leaderboard/Leaderboard/README.md b/docs/docs/auto-docs/screens/Leaderboard/Leaderboard/README.md deleted file mode 100644 index a8117a54a7..0000000000 --- a/docs/docs/auto-docs/screens/Leaderboard/Leaderboard/README.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / screens/Leaderboard/Leaderboard - -# screens/Leaderboard/Leaderboard - -## Functions - -- [default](functions/default.md) diff --git a/docs/docs/auto-docs/screens/Leaderboard/Leaderboard/functions/default.md b/docs/docs/auto-docs/screens/Leaderboard/Leaderboard/functions/default.md deleted file mode 100644 index d506e0f2e5..0000000000 --- a/docs/docs/auto-docs/screens/Leaderboard/Leaderboard/functions/default.md +++ /dev/null @@ -1,23 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [screens/Leaderboard/Leaderboard](../README.md) / default - -# Function: default() - -> **default**(): `JSX.Element` - -Defined in: [src/screens/Leaderboard/Leaderboard.tsx:62](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/Leaderboard/Leaderboard.tsx#L62) - -Component to display the leaderboard of volunteers. - -This component shows a leaderboard of volunteers ranked by hours contributed, -with features for filtering by time frame and sorting by hours. It displays -volunteer details including rank, name, email, and hours volunteered. - -## Returns - -`JSX.Element` - -The rendered component. diff --git a/docs/docs/auto-docs/screens/LoginPage/LoginPage/README.md b/docs/docs/auto-docs/screens/LoginPage/LoginPage/README.md deleted file mode 100644 index 3258f97741..0000000000 --- a/docs/docs/auto-docs/screens/LoginPage/LoginPage/README.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / screens/LoginPage/LoginPage - -# screens/LoginPage/LoginPage - -## Functions - -- [default](functions/default.md) diff --git a/docs/docs/auto-docs/screens/LoginPage/LoginPage/functions/default.md b/docs/docs/auto-docs/screens/LoginPage/LoginPage/functions/default.md deleted file mode 100644 index 95ab56377c..0000000000 --- a/docs/docs/auto-docs/screens/LoginPage/LoginPage/functions/default.md +++ /dev/null @@ -1,19 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [screens/LoginPage/LoginPage](../README.md) / default - -# Function: default() - -> **default**(): `Element` - -Defined in: [src/screens/LoginPage/LoginPage.tsx:46](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/LoginPage/LoginPage.tsx#L46) - -LoginPage component is used to render the login page of the application where user can login or register -to the application using email and password. The component also provides the functionality to switch between login and -register form. - -## Returns - -`Element` diff --git a/docs/docs/auto-docs/screens/ManageTag/EditUserTagModal/README.md b/docs/docs/auto-docs/screens/ManageTag/EditUserTagModal/README.md deleted file mode 100644 index b40848f3a0..0000000000 --- a/docs/docs/auto-docs/screens/ManageTag/EditUserTagModal/README.md +++ /dev/null @@ -1,15 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / screens/ManageTag/EditUserTagModal - -# screens/ManageTag/EditUserTagModal - -## Interfaces - -- [InterfaceEditUserTagModalProps](interfaces/InterfaceEditUserTagModalProps.md) - -## Functions - -- [default](functions/default.md) diff --git a/docs/docs/auto-docs/screens/ManageTag/EditUserTagModal/functions/default.md b/docs/docs/auto-docs/screens/ManageTag/EditUserTagModal/functions/default.md deleted file mode 100644 index 3b622bbe0d..0000000000 --- a/docs/docs/auto-docs/screens/ManageTag/EditUserTagModal/functions/default.md +++ /dev/null @@ -1,31 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [screens/ManageTag/EditUserTagModal](../README.md) / default - -# Function: default() - -> **default**(`props`, `deprecatedLegacyContext`?): `ReactNode` - -Defined in: [src/screens/ManageTag/EditUserTagModal.tsx:20](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/ManageTag/EditUserTagModal.tsx#L20) - -## Parameters - -### props - -[`InterfaceEditUserTagModalProps`](../interfaces/InterfaceEditUserTagModalProps.md) - -### deprecatedLegacyContext? - -`any` - -**Deprecated** - -**See** - -[React Docs](https://legacy.reactjs.org/docs/legacy-context.html#referencing-context-in-lifecycle-methods) - -## Returns - -`ReactNode` diff --git a/docs/docs/auto-docs/screens/ManageTag/EditUserTagModal/interfaces/InterfaceEditUserTagModalProps.md b/docs/docs/auto-docs/screens/ManageTag/EditUserTagModal/interfaces/InterfaceEditUserTagModalProps.md deleted file mode 100644 index 22fe71f7a9..0000000000 --- a/docs/docs/auto-docs/screens/ManageTag/EditUserTagModal/interfaces/InterfaceEditUserTagModalProps.md +++ /dev/null @@ -1,91 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [screens/ManageTag/EditUserTagModal](../README.md) / InterfaceEditUserTagModalProps - -# Interface: InterfaceEditUserTagModalProps - -Defined in: [src/screens/ManageTag/EditUserTagModal.tsx:10](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/ManageTag/EditUserTagModal.tsx#L10) - -Edit UserTag Modal component for the Manage Tag screen. - -## Properties - -### editUserTagModalIsOpen - -> **editUserTagModalIsOpen**: `boolean` - -Defined in: [src/screens/ManageTag/EditUserTagModal.tsx:11](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/ManageTag/EditUserTagModal.tsx#L11) - -*** - -### handleEditUserTag() - -> **handleEditUserTag**: (`e`) => `Promise`\<`void`\> - -Defined in: [src/screens/ManageTag/EditUserTagModal.tsx:15](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/ManageTag/EditUserTagModal.tsx#L15) - -#### Parameters - -##### e - -`FormEvent`\<`HTMLFormElement`\> - -#### Returns - -`Promise`\<`void`\> - -*** - -### hideEditUserTagModal() - -> **hideEditUserTagModal**: () => `void` - -Defined in: [src/screens/ManageTag/EditUserTagModal.tsx:12](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/ManageTag/EditUserTagModal.tsx#L12) - -#### Returns - -`void` - -*** - -### newTagName - -> **newTagName**: `string` - -Defined in: [src/screens/ManageTag/EditUserTagModal.tsx:13](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/ManageTag/EditUserTagModal.tsx#L13) - -*** - -### setNewTagName() - -> **setNewTagName**: (`state`) => `void` - -Defined in: [src/screens/ManageTag/EditUserTagModal.tsx:14](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/ManageTag/EditUserTagModal.tsx#L14) - -#### Parameters - -##### state - -`SetStateAction`\<`string`\> - -#### Returns - -`void` - -*** - -### t - -> **t**: `TFunction`\<`"manageTag"`\> - -Defined in: [src/screens/ManageTag/EditUserTagModal.tsx:16](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/ManageTag/EditUserTagModal.tsx#L16) - -*** - -### tCommon - -> **tCommon**: `TFunction`\<`"common"`\> - -Defined in: [src/screens/ManageTag/EditUserTagModal.tsx:17](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/ManageTag/EditUserTagModal.tsx#L17) diff --git a/docs/docs/auto-docs/screens/ManageTag/ManageTag/README.md b/docs/docs/auto-docs/screens/ManageTag/ManageTag/README.md deleted file mode 100644 index fd25228ebe..0000000000 --- a/docs/docs/auto-docs/screens/ManageTag/ManageTag/README.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / screens/ManageTag/ManageTag - -# screens/ManageTag/ManageTag - -## Functions - -- [default](functions/default.md) diff --git a/docs/docs/auto-docs/screens/ManageTag/ManageTag/functions/default.md b/docs/docs/auto-docs/screens/ManageTag/ManageTag/functions/default.md deleted file mode 100644 index 2fc42e9036..0000000000 --- a/docs/docs/auto-docs/screens/ManageTag/ManageTag/functions/default.md +++ /dev/null @@ -1,17 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [screens/ManageTag/ManageTag](../README.md) / default - -# Function: default() - -> **default**(): `JSX.Element` - -Defined in: [src/screens/ManageTag/ManageTag.tsx:46](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/ManageTag/ManageTag.tsx#L46) - -Component that renders the Manage Tag screen when the app navigates to '/orgtags/:orgId/manageTag/:tagId'. - -## Returns - -`JSX.Element` diff --git a/docs/docs/auto-docs/screens/ManageTag/ManageTagMockComponents/MockAddPeopleToTag/README.md b/docs/docs/auto-docs/screens/ManageTag/ManageTagMockComponents/MockAddPeopleToTag/README.md deleted file mode 100644 index 472f1e281d..0000000000 --- a/docs/docs/auto-docs/screens/ManageTag/ManageTagMockComponents/MockAddPeopleToTag/README.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / screens/ManageTag/ManageTagMockComponents/MockAddPeopleToTag - -# screens/ManageTag/ManageTagMockComponents/MockAddPeopleToTag - -## Functions - -- [default](functions/default.md) diff --git a/docs/docs/auto-docs/screens/ManageTag/ManageTagMockComponents/MockAddPeopleToTag/functions/default.md b/docs/docs/auto-docs/screens/ManageTag/ManageTagMockComponents/MockAddPeopleToTag/functions/default.md deleted file mode 100644 index 25daa9d683..0000000000 --- a/docs/docs/auto-docs/screens/ManageTag/ManageTagMockComponents/MockAddPeopleToTag/functions/default.md +++ /dev/null @@ -1,31 +0,0 @@ -[**talawa-admin**](../../../../../README.md) - -*** - -[talawa-admin](../../../../../modules.md) / [screens/ManageTag/ManageTagMockComponents/MockAddPeopleToTag](../README.md) / default - -# Function: default() - -> **default**(`props`, `deprecatedLegacyContext`?): `ReactNode` - -Defined in: [src/screens/ManageTag/ManageTagMockComponents/MockAddPeopleToTag.tsx:12](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/ManageTag/ManageTagMockComponents/MockAddPeopleToTag.tsx#L12) - -## Parameters - -### props - -[`InterfaceAddPeopleToTagProps`](../../../../../components/AddPeopleToTag/AddPeopleToTag/interfaces/InterfaceAddPeopleToTagProps.md) - -### deprecatedLegacyContext? - -`any` - -**Deprecated** - -**See** - -[React Docs](https://legacy.reactjs.org/docs/legacy-context.html#referencing-context-in-lifecycle-methods) - -## Returns - -`ReactNode` diff --git a/docs/docs/auto-docs/screens/ManageTag/ManageTagMockComponents/MockTagActions/README.md b/docs/docs/auto-docs/screens/ManageTag/ManageTagMockComponents/MockTagActions/README.md deleted file mode 100644 index b7165dfdef..0000000000 --- a/docs/docs/auto-docs/screens/ManageTag/ManageTagMockComponents/MockTagActions/README.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / screens/ManageTag/ManageTagMockComponents/MockTagActions - -# screens/ManageTag/ManageTagMockComponents/MockTagActions - -## Functions - -- [default](functions/default.md) diff --git a/docs/docs/auto-docs/screens/ManageTag/ManageTagMockComponents/MockTagActions/functions/default.md b/docs/docs/auto-docs/screens/ManageTag/ManageTagMockComponents/MockTagActions/functions/default.md deleted file mode 100644 index 7ecb38dba7..0000000000 --- a/docs/docs/auto-docs/screens/ManageTag/ManageTagMockComponents/MockTagActions/functions/default.md +++ /dev/null @@ -1,33 +0,0 @@ -[**talawa-admin**](../../../../../README.md) - -*** - -[talawa-admin](../../../../../modules.md) / [screens/ManageTag/ManageTagMockComponents/MockTagActions](../README.md) / default - -# Function: default() - -> **default**(`props`, `deprecatedLegacyContext`?): `ReactNode` - -Defined in: [src/screens/ManageTag/ManageTagMockComponents/MockTagActions.tsx:8](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/ManageTag/ManageTagMockComponents/MockTagActions.tsx#L8) - -Component that mocks the TagActions component for the Manage Tag screen. - -## Parameters - -### props - -[`InterfaceTagActionsProps`](../../../../../components/TagActions/TagActions/interfaces/InterfaceTagActionsProps.md) - -### deprecatedLegacyContext? - -`any` - -**Deprecated** - -**See** - -[React Docs](https://legacy.reactjs.org/docs/legacy-context.html#referencing-context-in-lifecycle-methods) - -## Returns - -`ReactNode` diff --git a/docs/docs/auto-docs/screens/ManageTag/ManageTagMocks/README.md b/docs/docs/auto-docs/screens/ManageTag/ManageTagMocks/README.md deleted file mode 100644 index b371650a1e..0000000000 --- a/docs/docs/auto-docs/screens/ManageTag/ManageTagMocks/README.md +++ /dev/null @@ -1,12 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / screens/ManageTag/ManageTagMocks - -# screens/ManageTag/ManageTagMocks - -## Variables - -- [MOCKS](variables/MOCKS.md) -- [MOCKS\_ERROR\_ASSIGNED\_MEMBERS](variables/MOCKS_ERROR_ASSIGNED_MEMBERS.md) diff --git a/docs/docs/auto-docs/screens/ManageTag/ManageTagMocks/variables/MOCKS.md b/docs/docs/auto-docs/screens/ManageTag/ManageTagMocks/variables/MOCKS.md deleted file mode 100644 index 10cae21739..0000000000 --- a/docs/docs/auto-docs/screens/ManageTag/ManageTagMocks/variables/MOCKS.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [screens/ManageTag/ManageTagMocks](../README.md) / MOCKS - -# Variable: MOCKS - -> `const` **MOCKS**: (\{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `after`: `undefined`; `first`: `number`; `id`: `string`; `name`: `undefined`; `sortedBy`: \{ `id`: `string`; \}; `tagId`: `undefined`; `userId`: `undefined`; `where`: \{ `firstName`: \{ `starts_with`: `string`; \}; `lastName`: \{ `starts_with`: `string`; \}; \}; \}; \}; `result`: \{ `data`: \{ `getAssignedUsers`: \{ `ancestorTags`: `never`[]; `name`: `string`; `usersAssignedTo`: \{ `edges`: `object`[]; `pageInfo`: \{ `endCursor`: `string`; `hasNextPage`: `boolean`; `hasPreviousPage`: `boolean`; `startCursor`: `string`; \}; `totalCount`: `number`; \}; \}; `removeUserTag`: `undefined`; `unassignUserTag`: `undefined`; `updateUserTag`: `undefined`; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `after`: `string`; `first`: `number`; `id`: `string`; `name`: `undefined`; `sortedBy`: \{ `id`: `string`; \}; `tagId`: `undefined`; `userId`: `undefined`; `where`: \{ `firstName`: \{ `starts_with`: `string`; \}; `lastName`: \{ `starts_with`: `string`; \}; \}; \}; \}; `result`: \{ `data`: \{ `getAssignedUsers`: \{ `ancestorTags`: `never`[]; `name`: `string`; `usersAssignedTo`: \{ `edges`: `object`[]; `pageInfo`: \{ `endCursor`: `string`; `hasNextPage`: `boolean`; `hasPreviousPage`: `boolean`; `startCursor`: `string`; \}; `totalCount`: `number`; \}; \}; `removeUserTag`: `undefined`; `unassignUserTag`: `undefined`; `updateUserTag`: `undefined`; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `after`: `undefined`; `first`: `undefined`; `id`: `undefined`; `name`: `undefined`; `sortedBy`: `undefined`; `tagId`: `string`; `userId`: `string`; `where`: `undefined`; \}; \}; `result`: \{ `data`: \{ `getAssignedUsers`: `undefined`; `removeUserTag`: `undefined`; `unassignUserTag`: \{ `_id`: `string`; \}; `updateUserTag`: `undefined`; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `after`: `undefined`; `first`: `undefined`; `id`: `undefined`; `name`: `string`; `sortedBy`: `undefined`; `tagId`: `string`; `userId`: `undefined`; `where`: `undefined`; \}; \}; `result`: \{ `data`: \{ `getAssignedUsers`: `undefined`; `removeUserTag`: `undefined`; `unassignUserTag`: `undefined`; `updateUserTag`: \{ `_id`: `string`; \}; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `after`: `undefined`; `first`: `undefined`; `id`: `string`; `name`: `undefined`; `sortedBy`: `undefined`; `tagId`: `undefined`; `userId`: `undefined`; `where`: `undefined`; \}; \}; `result`: \{ `data`: \{ `getAssignedUsers`: `undefined`; `removeUserTag`: \{ `_id`: `string`; \}; `unassignUserTag`: `undefined`; `updateUserTag`: `undefined`; \}; \}; \})[] - -Defined in: [src/screens/ManageTag/ManageTagMocks.ts:9](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/ManageTag/ManageTagMocks.ts#L9) diff --git a/docs/docs/auto-docs/screens/ManageTag/ManageTagMocks/variables/MOCKS_ERROR_ASSIGNED_MEMBERS.md b/docs/docs/auto-docs/screens/ManageTag/ManageTagMocks/variables/MOCKS_ERROR_ASSIGNED_MEMBERS.md deleted file mode 100644 index 230c05b3c0..0000000000 --- a/docs/docs/auto-docs/screens/ManageTag/ManageTagMocks/variables/MOCKS_ERROR_ASSIGNED_MEMBERS.md +++ /dev/null @@ -1,65 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [screens/ManageTag/ManageTagMocks](../README.md) / MOCKS\_ERROR\_ASSIGNED\_MEMBERS - -# Variable: MOCKS\_ERROR\_ASSIGNED\_MEMBERS - -> `const` **MOCKS\_ERROR\_ASSIGNED\_MEMBERS**: `object`[] - -Defined in: [src/screens/ManageTag/ManageTagMocks.ts:320](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/ManageTag/ManageTagMocks.ts#L320) - -## Type declaration - -### error - -> **error**: `Error` - -### request - -> **request**: `object` - -#### request.query - -> **query**: `DocumentNode` = `USER_TAGS_ASSIGNED_MEMBERS` - -#### request.variables - -> **variables**: `object` - -#### request.variables.first - -> **first**: `number` = `TAGS_QUERY_DATA_CHUNK_SIZE` - -#### request.variables.id - -> **id**: `string` = `'1'` - -#### request.variables.sortedBy - -> **sortedBy**: `object` - -#### request.variables.sortedBy.id - -> **id**: `string` = `'DESCENDING'` - -#### request.variables.where - -> **where**: `object` - -#### request.variables.where.firstName - -> **firstName**: `object` - -#### request.variables.where.firstName.starts\_with - -> **starts\_with**: `string` = `''` - -#### request.variables.where.lastName - -> **lastName**: `object` - -#### request.variables.where.lastName.starts\_with - -> **starts\_with**: `string` = `''` diff --git a/docs/docs/auto-docs/screens/ManageTag/RemoveUserTagModal/README.md b/docs/docs/auto-docs/screens/ManageTag/RemoveUserTagModal/README.md deleted file mode 100644 index 81941d24ec..0000000000 --- a/docs/docs/auto-docs/screens/ManageTag/RemoveUserTagModal/README.md +++ /dev/null @@ -1,15 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / screens/ManageTag/RemoveUserTagModal - -# screens/ManageTag/RemoveUserTagModal - -## Interfaces - -- [InterfaceRemoveUserTagModalProps](interfaces/InterfaceRemoveUserTagModalProps.md) - -## Functions - -- [default](functions/default.md) diff --git a/docs/docs/auto-docs/screens/ManageTag/RemoveUserTagModal/functions/default.md b/docs/docs/auto-docs/screens/ManageTag/RemoveUserTagModal/functions/default.md deleted file mode 100644 index a4c8ac804e..0000000000 --- a/docs/docs/auto-docs/screens/ManageTag/RemoveUserTagModal/functions/default.md +++ /dev/null @@ -1,31 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [screens/ManageTag/RemoveUserTagModal](../README.md) / default - -# Function: default() - -> **default**(`props`, `deprecatedLegacyContext`?): `ReactNode` - -Defined in: [src/screens/ManageTag/RemoveUserTagModal.tsx:17](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/ManageTag/RemoveUserTagModal.tsx#L17) - -## Parameters - -### props - -[`InterfaceRemoveUserTagModalProps`](../interfaces/InterfaceRemoveUserTagModalProps.md) - -### deprecatedLegacyContext? - -`any` - -**Deprecated** - -**See** - -[React Docs](https://legacy.reactjs.org/docs/legacy-context.html#referencing-context-in-lifecycle-methods) - -## Returns - -`ReactNode` diff --git a/docs/docs/auto-docs/screens/ManageTag/RemoveUserTagModal/interfaces/InterfaceRemoveUserTagModalProps.md b/docs/docs/auto-docs/screens/ManageTag/RemoveUserTagModal/interfaces/InterfaceRemoveUserTagModalProps.md deleted file mode 100644 index 671f0ba356..0000000000 --- a/docs/docs/auto-docs/screens/ManageTag/RemoveUserTagModal/interfaces/InterfaceRemoveUserTagModalProps.md +++ /dev/null @@ -1,59 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [screens/ManageTag/RemoveUserTagModal](../README.md) / InterfaceRemoveUserTagModalProps - -# Interface: InterfaceRemoveUserTagModalProps - -Defined in: [src/screens/ManageTag/RemoveUserTagModal.tsx:9](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/ManageTag/RemoveUserTagModal.tsx#L9) - -Remove UserTag Modal component for the Manage Tag screen. - -## Properties - -### handleRemoveUserTag() - -> **handleRemoveUserTag**: () => `Promise`\<`void`\> - -Defined in: [src/screens/ManageTag/RemoveUserTagModal.tsx:12](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/ManageTag/RemoveUserTagModal.tsx#L12) - -#### Returns - -`Promise`\<`void`\> - -*** - -### removeUserTagModalIsOpen - -> **removeUserTagModalIsOpen**: `boolean` - -Defined in: [src/screens/ManageTag/RemoveUserTagModal.tsx:10](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/ManageTag/RemoveUserTagModal.tsx#L10) - -*** - -### t - -> **t**: `TFunction`\<`"manageTag"`\> - -Defined in: [src/screens/ManageTag/RemoveUserTagModal.tsx:13](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/ManageTag/RemoveUserTagModal.tsx#L13) - -*** - -### tCommon - -> **tCommon**: `TFunction`\<`"common"`\> - -Defined in: [src/screens/ManageTag/RemoveUserTagModal.tsx:14](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/ManageTag/RemoveUserTagModal.tsx#L14) - -*** - -### toggleRemoveUserTagModal() - -> **toggleRemoveUserTagModal**: () => `void` - -Defined in: [src/screens/ManageTag/RemoveUserTagModal.tsx:11](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/ManageTag/RemoveUserTagModal.tsx#L11) - -#### Returns - -`void` diff --git a/docs/docs/auto-docs/screens/ManageTag/UnassignUserTagModal/README.md b/docs/docs/auto-docs/screens/ManageTag/UnassignUserTagModal/README.md deleted file mode 100644 index a2f139ddb6..0000000000 --- a/docs/docs/auto-docs/screens/ManageTag/UnassignUserTagModal/README.md +++ /dev/null @@ -1,15 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / screens/ManageTag/UnassignUserTagModal - -# screens/ManageTag/UnassignUserTagModal - -## Interfaces - -- [InterfaceUnassignUserTagModalProps](interfaces/InterfaceUnassignUserTagModalProps.md) - -## Functions - -- [default](functions/default.md) diff --git a/docs/docs/auto-docs/screens/ManageTag/UnassignUserTagModal/functions/default.md b/docs/docs/auto-docs/screens/ManageTag/UnassignUserTagModal/functions/default.md deleted file mode 100644 index 78d04adae9..0000000000 --- a/docs/docs/auto-docs/screens/ManageTag/UnassignUserTagModal/functions/default.md +++ /dev/null @@ -1,31 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [screens/ManageTag/UnassignUserTagModal](../README.md) / default - -# Function: default() - -> **default**(`props`, `deprecatedLegacyContext`?): `ReactNode` - -Defined in: [src/screens/ManageTag/UnassignUserTagModal.tsx:17](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/ManageTag/UnassignUserTagModal.tsx#L17) - -## Parameters - -### props - -[`InterfaceUnassignUserTagModalProps`](../interfaces/InterfaceUnassignUserTagModalProps.md) - -### deprecatedLegacyContext? - -`any` - -**Deprecated** - -**See** - -[React Docs](https://legacy.reactjs.org/docs/legacy-context.html#referencing-context-in-lifecycle-methods) - -## Returns - -`ReactNode` diff --git a/docs/docs/auto-docs/screens/ManageTag/UnassignUserTagModal/interfaces/InterfaceUnassignUserTagModalProps.md b/docs/docs/auto-docs/screens/ManageTag/UnassignUserTagModal/interfaces/InterfaceUnassignUserTagModalProps.md deleted file mode 100644 index 545c873517..0000000000 --- a/docs/docs/auto-docs/screens/ManageTag/UnassignUserTagModal/interfaces/InterfaceUnassignUserTagModalProps.md +++ /dev/null @@ -1,59 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [screens/ManageTag/UnassignUserTagModal](../README.md) / InterfaceUnassignUserTagModalProps - -# Interface: InterfaceUnassignUserTagModalProps - -Defined in: [src/screens/ManageTag/UnassignUserTagModal.tsx:9](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/ManageTag/UnassignUserTagModal.tsx#L9) - -Unassign UserTag Modal component for the Manage Tag screen. - -## Properties - -### handleUnassignUserTag() - -> **handleUnassignUserTag**: () => `Promise`\<`void`\> - -Defined in: [src/screens/ManageTag/UnassignUserTagModal.tsx:12](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/ManageTag/UnassignUserTagModal.tsx#L12) - -#### Returns - -`Promise`\<`void`\> - -*** - -### t - -> **t**: `TFunction`\<`"manageTag"` \| `"memberDetail"`\> - -Defined in: [src/screens/ManageTag/UnassignUserTagModal.tsx:13](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/ManageTag/UnassignUserTagModal.tsx#L13) - -*** - -### tCommon - -> **tCommon**: `TFunction`\<`"common"`\> - -Defined in: [src/screens/ManageTag/UnassignUserTagModal.tsx:14](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/ManageTag/UnassignUserTagModal.tsx#L14) - -*** - -### toggleUnassignUserTagModal() - -> **toggleUnassignUserTagModal**: () => `void` - -Defined in: [src/screens/ManageTag/UnassignUserTagModal.tsx:11](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/ManageTag/UnassignUserTagModal.tsx#L11) - -#### Returns - -`void` - -*** - -### unassignUserTagModalIsOpen - -> **unassignUserTagModalIsOpen**: `boolean` - -Defined in: [src/screens/ManageTag/UnassignUserTagModal.tsx:10](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/ManageTag/UnassignUserTagModal.tsx#L10) diff --git a/docs/docs/auto-docs/screens/MemberDetail/MemberDetail/README.md b/docs/docs/auto-docs/screens/MemberDetail/MemberDetail/README.md deleted file mode 100644 index abab2714e3..0000000000 --- a/docs/docs/auto-docs/screens/MemberDetail/MemberDetail/README.md +++ /dev/null @@ -1,13 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / screens/MemberDetail/MemberDetail - -# screens/MemberDetail/MemberDetail - -## Functions - -- [default](functions/default.md) -- [getLanguageName](functions/getLanguageName.md) -- [prettyDate](functions/prettyDate.md) diff --git a/docs/docs/auto-docs/screens/MemberDetail/MemberDetail/functions/default.md b/docs/docs/auto-docs/screens/MemberDetail/MemberDetail/functions/default.md deleted file mode 100644 index a1289dd5bc..0000000000 --- a/docs/docs/auto-docs/screens/MemberDetail/MemberDetail/functions/default.md +++ /dev/null @@ -1,38 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [screens/MemberDetail/MemberDetail](../README.md) / default - -# Function: default() - -> **default**(`props`, `deprecatedLegacyContext`?): `ReactNode` - -Defined in: [src/screens/MemberDetail/MemberDetail.tsx:51](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/MemberDetail/MemberDetail.tsx#L51) - -MemberDetail component is used to display the details of a user. -It also allows the user to update the details. It uses the UPDATE_USER_MUTATION to update the user details. -It uses the USER_DETAILS query to get the user details. It uses the useLocalStorage hook to store the user - details in the local storage. - -## Parameters - -### props - -`MemberDetailProps` - -### deprecatedLegacyContext? - -`any` - -**Deprecated** - -**See** - -[React Docs](https://legacy.reactjs.org/docs/legacy-context.html#referencing-context-in-lifecycle-methods) - -## Returns - -`ReactNode` - -React component diff --git a/docs/docs/auto-docs/screens/MemberDetail/MemberDetail/functions/getLanguageName.md b/docs/docs/auto-docs/screens/MemberDetail/MemberDetail/functions/getLanguageName.md deleted file mode 100644 index 87bd2d5840..0000000000 --- a/docs/docs/auto-docs/screens/MemberDetail/MemberDetail/functions/getLanguageName.md +++ /dev/null @@ -1,21 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [screens/MemberDetail/MemberDetail](../README.md) / getLanguageName - -# Function: getLanguageName() - -> **getLanguageName**(`code`): `string` - -Defined in: [src/screens/MemberDetail/MemberDetail.tsx:752](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/MemberDetail/MemberDetail.tsx#L752) - -## Parameters - -### code - -`string` - -## Returns - -`string` diff --git a/docs/docs/auto-docs/screens/MemberDetail/MemberDetail/functions/prettyDate.md b/docs/docs/auto-docs/screens/MemberDetail/MemberDetail/functions/prettyDate.md deleted file mode 100644 index 38084c0431..0000000000 --- a/docs/docs/auto-docs/screens/MemberDetail/MemberDetail/functions/prettyDate.md +++ /dev/null @@ -1,21 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [screens/MemberDetail/MemberDetail](../README.md) / prettyDate - -# Function: prettyDate() - -> **prettyDate**(`param`): `string` - -Defined in: [src/screens/MemberDetail/MemberDetail.tsx:742](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/MemberDetail/MemberDetail.tsx#L742) - -## Parameters - -### param - -`string` - -## Returns - -`string` diff --git a/docs/docs/auto-docs/screens/MemberDetail/MemberDetailMocks/README.md b/docs/docs/auto-docs/screens/MemberDetail/MemberDetailMocks/README.md deleted file mode 100644 index 5b10a708fc..0000000000 --- a/docs/docs/auto-docs/screens/MemberDetail/MemberDetailMocks/README.md +++ /dev/null @@ -1,13 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / screens/MemberDetail/MemberDetailMocks - -# screens/MemberDetail/MemberDetailMocks - -## Variables - -- [MOCKS1](variables/MOCKS1.md) -- [MOCKS2](variables/MOCKS2.md) -- [MOCKS3](variables/MOCKS3.md) diff --git a/docs/docs/auto-docs/screens/MemberDetail/MemberDetailMocks/variables/MOCKS1.md b/docs/docs/auto-docs/screens/MemberDetail/MemberDetailMocks/variables/MOCKS1.md deleted file mode 100644 index 269a687170..0000000000 --- a/docs/docs/auto-docs/screens/MemberDetail/MemberDetailMocks/variables/MOCKS1.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [screens/MemberDetail/MemberDetailMocks](../README.md) / MOCKS1 - -# Variable: MOCKS1 - -> `const` **MOCKS1**: (\{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `after`: `undefined`; `first`: `number`; `id`: `string`; `tagId`: `undefined`; `userId`: `undefined`; \}; \}; `result`: \{ `data`: \{ `unassignUserTag`: `undefined`; `user`: \{ `__typename`: `string`; `appUserProfile`: \{ `__typename`: `string`; `_id`: `string`; `adminFor`: `object`[]; `appLanguageCode`: `string`; `createdEvents`: `object`[]; `createdOrganizations`: `object`[]; `eventAdmin`: `object`[]; `isSuperAdmin`: `boolean`; `pluginCreationAllowed`: `boolean`; \}; `user`: \{ `__typename`: `string`; `_id`: `string`; `address`: \{ `city`: `string`; `countryCode`: `string`; `line1`: `string`; `state`: `string`; \}; `birthDate`: `string`; `createdAt`: `string`; `educationGrade`: `string`; `email`: `string`; `employmentStatus`: `string`; `eventsAttended`: `never`[]; `firstName`: `string`; `gender`: `string`; `image`: `null`; `joinedOrganizations`: `object`[]; `lastName`: `string`; `maritalStatus`: `string`; `membershipRequests`: `never`[]; `organizationsBlockedBy`: `never`[]; `phone`: \{ `mobile`: `string`; \}; `registeredEvents`: `object`[]; `tagsAssignedWith`: \{ `edges`: `object`[]; `pageInfo`: \{ `endCursor`: `string`; `hasNextPage`: `boolean`; `hasPreviousPage`: `boolean`; `startCursor`: `string`; \}; `totalCount`: `number`; \}; \}; \}; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `after`: `string`; `first`: `number`; `id`: `string`; `tagId`: `undefined`; `userId`: `undefined`; \}; \}; `result`: \{ `data`: \{ `unassignUserTag`: `undefined`; `user`: \{ `__typename`: `string`; `appUserProfile`: \{ `__typename`: `string`; `_id`: `string`; `adminFor`: `object`[]; `appLanguageCode`: `string`; `createdEvents`: `object`[]; `createdOrganizations`: `object`[]; `eventAdmin`: `object`[]; `isSuperAdmin`: `boolean`; `pluginCreationAllowed`: `boolean`; \}; `user`: \{ `__typename`: `string`; `_id`: `string`; `address`: \{ `city`: `string`; `countryCode`: `string`; `line1`: `string`; `state`: `string`; \}; `birthDate`: `string`; `createdAt`: `string`; `educationGrade`: `string`; `email`: `string`; `employmentStatus`: `string`; `eventsAttended`: `never`[]; `firstName`: `string`; `gender`: `string`; `image`: `null`; `joinedOrganizations`: `object`[]; `lastName`: `string`; `maritalStatus`: `string`; `membershipRequests`: `never`[]; `organizationsBlockedBy`: `never`[]; `phone`: \{ `mobile`: `string`; \}; `registeredEvents`: `object`[]; `tagsAssignedWith`: \{ `edges`: (\{ `cursor`: ...; `node`: ...; \} \| \{ `cursor`: ...; `node`: ...; \})[]; `pageInfo`: \{ `endCursor`: `string`; `hasNextPage`: `boolean`; `hasPreviousPage`: `boolean`; `startCursor`: `string`; \}; `totalCount`: `number`; \}; \}; \}; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `after`: `undefined`; `first`: `undefined`; `id`: `undefined`; `tagId`: `string`; `userId`: `string`; \}; \}; `result`: \{ `data`: \{ `unassignUserTag`: \{ `_id`: `string`; \}; `user`: `undefined`; \}; \}; \})[] - -Defined in: [src/screens/MemberDetail/MemberDetailMocks.ts:5](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/MemberDetail/MemberDetailMocks.ts#L5) diff --git a/docs/docs/auto-docs/screens/MemberDetail/MemberDetailMocks/variables/MOCKS2.md b/docs/docs/auto-docs/screens/MemberDetail/MemberDetailMocks/variables/MOCKS2.md deleted file mode 100644 index daeedb4557..0000000000 --- a/docs/docs/auto-docs/screens/MemberDetail/MemberDetailMocks/variables/MOCKS2.md +++ /dev/null @@ -1,221 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [screens/MemberDetail/MemberDetailMocks](../README.md) / MOCKS2 - -# Variable: MOCKS2 - -> `const` **MOCKS2**: `object`[] - -Defined in: [src/screens/MemberDetail/MemberDetailMocks.ts:337](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/MemberDetail/MemberDetailMocks.ts#L337) - -## Type declaration - -### request - -> **request**: `object` - -#### request.query - -> **query**: `DocumentNode` = `USER_DETAILS` - -#### request.variables - -> **variables**: `object` - -#### request.variables.first - -> **first**: `number` = `TAGS_QUERY_DATA_CHUNK_SIZE` - -#### request.variables.id - -> **id**: `string` = `'rishav-jha-mech'` - -### result - -> **result**: `object` - -#### result.data - -> **data**: `object` - -#### result.data.user - -> **user**: `object` - -#### result.data.user.\_\_typename - -> **\_\_typename**: `string` = `'UserData'` - -#### result.data.user.appUserProfile - -> **appUserProfile**: `object` - -#### result.data.user.appUserProfile.\_\_typename - -> **\_\_typename**: `string` = `'AppUserProfile'` - -#### result.data.user.appUserProfile.\_id - -> **\_id**: `string` = `'1'` - -#### result.data.user.appUserProfile.adminFor - -> **adminFor**: `never`[] = `[]` - -#### result.data.user.appUserProfile.appLanguageCode - -> **appLanguageCode**: `string` = `'en'` - -#### result.data.user.appUserProfile.createdEvents - -> **createdEvents**: `object`[] - -#### result.data.user.appUserProfile.createdOrganizations - -> **createdOrganizations**: `object`[] - -#### result.data.user.appUserProfile.eventAdmin - -> **eventAdmin**: `object`[] - -#### result.data.user.appUserProfile.isSuperAdmin - -> **isSuperAdmin**: `boolean` = `false` - -#### result.data.user.appUserProfile.pluginCreationAllowed - -> **pluginCreationAllowed**: `boolean` = `true` - -#### result.data.user.user - -> **user**: `object` - -#### result.data.user.user.\_\_typename - -> **\_\_typename**: `string` = `'User'` - -#### result.data.user.user.\_id - -> **\_id**: `string` = `'1'` - -#### result.data.user.user.address - -> **address**: `object` - -#### result.data.user.user.address.city - -> **city**: `string` = `''` - -#### result.data.user.user.address.countryCode - -> **countryCode**: `string` = `''` - -#### result.data.user.user.address.line1 - -> **line1**: `string` = `''` - -#### result.data.user.user.address.state - -> **state**: `string` = `''` - -#### result.data.user.user.birthDate - -> **birthDate**: `string` = `'2024-03-14'` - -#### result.data.user.user.createdAt - -> **createdAt**: `string` = `'2024-02-26T10:36:33.098Z'` - -#### result.data.user.user.educationGrade - -> **educationGrade**: `string` = `''` - -#### result.data.user.user.email - -> **email**: `string` = `'adi790u@gmail.com'` - -#### result.data.user.user.employmentStatus - -> **employmentStatus**: `string` = `''` - -#### result.data.user.user.eventsAttended - -> **eventsAttended**: `object`[] - -#### result.data.user.user.firstName - -> **firstName**: `string` = `'Aditya'` - -#### result.data.user.user.gender - -> **gender**: `string` = `''` - -#### result.data.user.user.image - -> **image**: `string` = `'https://placeholder.com/200x200'` - -#### result.data.user.user.joinedOrganizations - -> **joinedOrganizations**: `object`[] - -#### result.data.user.user.lastName - -> **lastName**: `string` = `'Agarwal'` - -#### result.data.user.user.maritalStatus - -> **maritalStatus**: `string` = `''` - -#### result.data.user.user.membershipRequests - -> **membershipRequests**: `never`[] = `[]` - -#### result.data.user.user.organizationsBlockedBy - -> **organizationsBlockedBy**: `never`[] = `[]` - -#### result.data.user.user.phone - -> **phone**: `object` - -#### result.data.user.user.phone.mobile - -> **mobile**: `string` = `''` - -#### result.data.user.user.registeredEvents - -> **registeredEvents**: `object`[] - -#### result.data.user.user.tagsAssignedWith - -> **tagsAssignedWith**: `object` - -#### result.data.user.user.tagsAssignedWith.edges - -> **edges**: `never`[] = `[]` - -#### result.data.user.user.tagsAssignedWith.pageInfo - -> **pageInfo**: `object` - -#### result.data.user.user.tagsAssignedWith.pageInfo.endCursor - -> **endCursor**: `null` = `null` - -#### result.data.user.user.tagsAssignedWith.pageInfo.hasNextPage - -> **hasNextPage**: `boolean` = `false` - -#### result.data.user.user.tagsAssignedWith.pageInfo.hasPreviousPage - -> **hasPreviousPage**: `boolean` = `false` - -#### result.data.user.user.tagsAssignedWith.pageInfo.startCursor - -> **startCursor**: `null` = `null` - -#### result.data.user.user.tagsAssignedWith.totalCount - -> **totalCount**: `number` = `0` diff --git a/docs/docs/auto-docs/screens/MemberDetail/MemberDetailMocks/variables/MOCKS3.md b/docs/docs/auto-docs/screens/MemberDetail/MemberDetailMocks/variables/MOCKS3.md deleted file mode 100644 index 4e44e6a1db..0000000000 --- a/docs/docs/auto-docs/screens/MemberDetail/MemberDetailMocks/variables/MOCKS3.md +++ /dev/null @@ -1,221 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [screens/MemberDetail/MemberDetailMocks](../README.md) / MOCKS3 - -# Variable: MOCKS3 - -> `const` **MOCKS3**: `object`[] - -Defined in: [src/screens/MemberDetail/MemberDetailMocks.ts:437](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/MemberDetail/MemberDetailMocks.ts#L437) - -## Type declaration - -### request - -> **request**: `object` - -#### request.query - -> **query**: `DocumentNode` = `USER_DETAILS` - -#### request.variables - -> **variables**: `object` - -#### request.variables.first - -> **first**: `number` = `TAGS_QUERY_DATA_CHUNK_SIZE` - -#### request.variables.id - -> **id**: `string` = `'rishav-jha-mech'` - -### result - -> **result**: `object` - -#### result.data - -> **data**: `object` - -#### result.data.user - -> **user**: `object` - -#### result.data.user.\_\_typename - -> **\_\_typename**: `string` = `'UserData'` - -#### result.data.user.appUserProfile - -> **appUserProfile**: `object` - -#### result.data.user.appUserProfile.\_\_typename - -> **\_\_typename**: `string` = `'AppUserProfile'` - -#### result.data.user.appUserProfile.\_id - -> **\_id**: `string` = `'1'` - -#### result.data.user.appUserProfile.adminFor - -> **adminFor**: `never`[] = `[]` - -#### result.data.user.appUserProfile.appLanguageCode - -> **appLanguageCode**: `string` = `'en'` - -#### result.data.user.appUserProfile.createdEvents - -> **createdEvents**: `object`[] - -#### result.data.user.appUserProfile.createdOrganizations - -> **createdOrganizations**: `object`[] - -#### result.data.user.appUserProfile.eventAdmin - -> **eventAdmin**: `object`[] - -#### result.data.user.appUserProfile.isSuperAdmin - -> **isSuperAdmin**: `boolean` = `true` - -#### result.data.user.appUserProfile.pluginCreationAllowed - -> **pluginCreationAllowed**: `boolean` = `true` - -#### result.data.user.user - -> **user**: `object` - -#### result.data.user.user.\_\_typename - -> **\_\_typename**: `string` = `'User'` - -#### result.data.user.user.\_id - -> **\_id**: `string` = `'1'` - -#### result.data.user.user.address - -> **address**: `object` - -#### result.data.user.user.address.city - -> **city**: `string` = `''` - -#### result.data.user.user.address.countryCode - -> **countryCode**: `string` = `''` - -#### result.data.user.user.address.line1 - -> **line1**: `string` = `''` - -#### result.data.user.user.address.state - -> **state**: `string` = `''` - -#### result.data.user.user.birthDate - -> **birthDate**: `string` = `'2024-03-14'` - -#### result.data.user.user.createdAt - -> **createdAt**: `string` = `'2024-02-26T10:36:33.098Z'` - -#### result.data.user.user.educationGrade - -> **educationGrade**: `string` = `''` - -#### result.data.user.user.email - -> **email**: `string` = `'adi790u@gmail.com'` - -#### result.data.user.user.employmentStatus - -> **employmentStatus**: `string` = `''` - -#### result.data.user.user.eventsAttended - -> **eventsAttended**: `never`[] = `[]` - -#### result.data.user.user.firstName - -> **firstName**: `string` = `'Aditya'` - -#### result.data.user.user.gender - -> **gender**: `string` = `''` - -#### result.data.user.user.image - -> **image**: `string` = `'https://placeholder.com/200x200'` - -#### result.data.user.user.joinedOrganizations - -> **joinedOrganizations**: `object`[] - -#### result.data.user.user.lastName - -> **lastName**: `string` = `'Agarwal'` - -#### result.data.user.user.maritalStatus - -> **maritalStatus**: `string` = `''` - -#### result.data.user.user.membershipRequests - -> **membershipRequests**: `never`[] = `[]` - -#### result.data.user.user.organizationsBlockedBy - -> **organizationsBlockedBy**: `never`[] = `[]` - -#### result.data.user.user.phone - -> **phone**: `object` - -#### result.data.user.user.phone.mobile - -> **mobile**: `string` = `''` - -#### result.data.user.user.registeredEvents - -> **registeredEvents**: `object`[] - -#### result.data.user.user.tagsAssignedWith - -> **tagsAssignedWith**: `object` - -#### result.data.user.user.tagsAssignedWith.edges - -> **edges**: `never`[] = `[]` - -#### result.data.user.user.tagsAssignedWith.pageInfo - -> **pageInfo**: `object` - -#### result.data.user.user.tagsAssignedWith.pageInfo.endCursor - -> **endCursor**: `null` = `null` - -#### result.data.user.user.tagsAssignedWith.pageInfo.hasNextPage - -> **hasNextPage**: `boolean` = `false` - -#### result.data.user.user.tagsAssignedWith.pageInfo.hasPreviousPage - -> **hasPreviousPage**: `boolean` = `false` - -#### result.data.user.user.tagsAssignedWith.pageInfo.startCursor - -> **startCursor**: `null` = `null` - -#### result.data.user.user.tagsAssignedWith.totalCount - -> **totalCount**: `number` = `0` diff --git a/docs/docs/auto-docs/screens/OrgContribution/OrgContribution/README.md b/docs/docs/auto-docs/screens/OrgContribution/OrgContribution/README.md deleted file mode 100644 index 60e9af1bc2..0000000000 --- a/docs/docs/auto-docs/screens/OrgContribution/OrgContribution/README.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / screens/OrgContribution/OrgContribution - -# screens/OrgContribution/OrgContribution - -## Functions - -- [default](functions/default.md) diff --git a/docs/docs/auto-docs/screens/OrgContribution/OrgContribution/functions/default.md b/docs/docs/auto-docs/screens/OrgContribution/OrgContribution/functions/default.md deleted file mode 100644 index db094ccc33..0000000000 --- a/docs/docs/auto-docs/screens/OrgContribution/OrgContribution/functions/default.md +++ /dev/null @@ -1,19 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [screens/OrgContribution/OrgContribution](../README.md) / default - -# Function: default() - -> **default**(): `JSX.Element` - -Defined in: [src/screens/OrgContribution/OrgContribution.tsx:16](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/OrgContribution/OrgContribution.tsx#L16) - -The `orgContribution` component displays the contributions to an organization. -It includes a sidebar for filtering contributions by organization name and transaction ID. -Additionally, it shows recent contribution statistics and a list of contribution cards. - -## Returns - -`JSX.Element` diff --git a/docs/docs/auto-docs/screens/OrgList/OrgList/README.md b/docs/docs/auto-docs/screens/OrgList/OrgList/README.md deleted file mode 100644 index 9bd1f0b701..0000000000 --- a/docs/docs/auto-docs/screens/OrgList/OrgList/README.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / screens/OrgList/OrgList - -# screens/OrgList/OrgList - -## Functions - -- [default](functions/default.md) diff --git a/docs/docs/auto-docs/screens/OrgList/OrgList/functions/default.md b/docs/docs/auto-docs/screens/OrgList/OrgList/functions/default.md deleted file mode 100644 index 8d9839d0a5..0000000000 --- a/docs/docs/auto-docs/screens/OrgList/OrgList/functions/default.md +++ /dev/null @@ -1,15 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [screens/OrgList/OrgList](../README.md) / default - -# Function: default() - -> **default**(): `JSX.Element` - -Defined in: [src/screens/OrgList/OrgList.tsx:33](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/OrgList/OrgList.tsx#L33) - -## Returns - -`JSX.Element` diff --git a/docs/docs/auto-docs/screens/OrgList/OrgListMocks/README.md b/docs/docs/auto-docs/screens/OrgList/OrgListMocks/README.md deleted file mode 100644 index 5b9d765f0d..0000000000 --- a/docs/docs/auto-docs/screens/OrgList/OrgListMocks/README.md +++ /dev/null @@ -1,14 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / screens/OrgList/OrgListMocks - -# screens/OrgList/OrgListMocks - -## Variables - -- [MOCKS](variables/MOCKS.md) -- [MOCKS\_ADMIN](variables/MOCKS_ADMIN.md) -- [MOCKS\_EMPTY](variables/MOCKS_EMPTY.md) -- [MOCKS\_WITH\_ERROR](variables/MOCKS_WITH_ERROR.md) diff --git a/docs/docs/auto-docs/screens/OrgList/OrgListMocks/variables/MOCKS.md b/docs/docs/auto-docs/screens/OrgList/OrgListMocks/variables/MOCKS.md deleted file mode 100644 index 82aacec5eb..0000000000 --- a/docs/docs/auto-docs/screens/OrgList/OrgListMocks/variables/MOCKS.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [screens/OrgList/OrgListMocks](../README.md) / MOCKS - -# Variable: MOCKS - -> `const` **MOCKS**: (\{ `request`: \{ `notifyOnNetworkStatusChange`: `boolean`; `query`: `DocumentNode`; `variables`: \{ `address`: `undefined`; `description`: `undefined`; `filter`: `string`; `first`: `number`; `image`: `undefined`; `name`: `undefined`; `orderBy`: `string`; `skip`: `number`; `userId`: `undefined`; `userRegistrationRequired`: `undefined`; `visibleInSearch`: `undefined`; \}; \}; `result`: \{ `data`: \{ `createOrganization`: `undefined`; `createSampleOrganization`: `undefined`; `organizationsConnection`: [`InterfaceOrgConnectionInfoType`](../../../../utils/interfaces/interfaces/InterfaceOrgConnectionInfoType.md)[]; `user`: `undefined`; \}; \}; \} \| \{ `request`: \{ `notifyOnNetworkStatusChange`: `undefined`; `query`: `DocumentNode`; `variables`: \{ `address`: `undefined`; `description`: `undefined`; `filter`: `undefined`; `first`: `undefined`; `image`: `undefined`; `name`: `undefined`; `orderBy`: `undefined`; `skip`: `undefined`; `userId`: `string`; `userRegistrationRequired`: `undefined`; `visibleInSearch`: `undefined`; \}; \}; `result`: \{ `data`: \{ `createOrganization`: `undefined`; `createSampleOrganization`: `undefined`; `organizationsConnection`: `undefined`; `user`: [`InterfaceUserType`](../../../../utils/interfaces/interfaces/InterfaceUserType.md); \}; \}; \} \| \{ `request`: \{ `notifyOnNetworkStatusChange`: `undefined`; `query`: `DocumentNode`; `variables`: `undefined`; \}; `result`: \{ `data`: \{ `createOrganization`: `undefined`; `createSampleOrganization`: \{ `id`: `string`; `name`: `string`; \}; `organizationsConnection`: `undefined`; `user`: `undefined`; \}; \}; \} \| \{ `request`: \{ `notifyOnNetworkStatusChange`: `undefined`; `query`: `DocumentNode`; `variables`: \{ `address`: \{ `city`: `string`; `countryCode`: `string`; `dependentLocality`: `string`; `line1`: `string`; `line2`: `string`; `postalCode`: `string`; `sortingCode`: `string`; `state`: `string`; \}; `description`: `string`; `filter`: `undefined`; `first`: `undefined`; `image`: `string`; `name`: `string`; `orderBy`: `undefined`; `skip`: `undefined`; `userId`: `undefined`; `userRegistrationRequired`: `boolean`; `visibleInSearch`: `boolean`; \}; \}; `result`: \{ `data`: \{ `createOrganization`: \{ `_id`: `string`; \}; `createSampleOrganization`: `undefined`; `organizationsConnection`: `undefined`; `user`: `undefined`; \}; \}; \})[] - -Defined in: [src/screens/OrgList/OrgListMocks.ts:94](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/OrgList/OrgListMocks.ts#L94) diff --git a/docs/docs/auto-docs/screens/OrgList/OrgListMocks/variables/MOCKS_ADMIN.md b/docs/docs/auto-docs/screens/OrgList/OrgListMocks/variables/MOCKS_ADMIN.md deleted file mode 100644 index 52c73027e4..0000000000 --- a/docs/docs/auto-docs/screens/OrgList/OrgListMocks/variables/MOCKS_ADMIN.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [screens/OrgList/OrgListMocks](../README.md) / MOCKS\_ADMIN - -# Variable: MOCKS\_ADMIN - -> `const` **MOCKS\_ADMIN**: (\{ `request`: \{ `notifyOnNetworkStatusChange`: `boolean`; `query`: `DocumentNode`; `variables`: \{ `filter`: `string`; `first`: `number`; `orderBy`: `string`; `skip`: `number`; `userId`: `undefined`; \}; \}; `result`: \{ `data`: \{ `organizationsConnection`: [`InterfaceOrgConnectionInfoType`](../../../../utils/interfaces/interfaces/InterfaceOrgConnectionInfoType.md)[]; `user`: `undefined`; \}; \}; \} \| \{ `request`: \{ `notifyOnNetworkStatusChange`: `undefined`; `query`: `DocumentNode`; `variables`: \{ `filter`: `undefined`; `first`: `undefined`; `orderBy`: `undefined`; `skip`: `undefined`; `userId`: `string`; \}; \}; `result`: \{ `data`: \{ `organizationsConnection`: `undefined`; `user`: [`InterfaceUserType`](../../../../utils/interfaces/interfaces/InterfaceUserType.md); \}; \}; \})[] - -Defined in: [src/screens/OrgList/OrgListMocks.ts:228](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/OrgList/OrgListMocks.ts#L228) diff --git a/docs/docs/auto-docs/screens/OrgList/OrgListMocks/variables/MOCKS_EMPTY.md b/docs/docs/auto-docs/screens/OrgList/OrgListMocks/variables/MOCKS_EMPTY.md deleted file mode 100644 index 774f6c1253..0000000000 --- a/docs/docs/auto-docs/screens/OrgList/OrgListMocks/variables/MOCKS_EMPTY.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [screens/OrgList/OrgListMocks](../README.md) / MOCKS\_EMPTY - -# Variable: MOCKS\_EMPTY - -> `const` **MOCKS\_EMPTY**: (\{ `request`: \{ `notifyOnNetworkStatusChange`: `boolean`; `query`: `DocumentNode`; `variables`: \{ `filter`: `string`; `first`: `number`; `orderBy`: `string`; `skip`: `number`; `userId`: `undefined`; \}; \}; `result`: \{ `data`: \{ `organizationsConnection`: `never`[]; `user`: `undefined`; \}; \}; \} \| \{ `request`: \{ `notifyOnNetworkStatusChange`: `undefined`; `query`: `DocumentNode`; `variables`: \{ `filter`: `undefined`; `first`: `undefined`; `orderBy`: `undefined`; `skip`: `undefined`; `userId`: `string`; \}; \}; `result`: \{ `data`: \{ `organizationsConnection`: `undefined`; `user`: [`InterfaceUserType`](../../../../utils/interfaces/interfaces/InterfaceUserType.md); \}; \}; \})[] - -Defined in: [src/screens/OrgList/OrgListMocks.ts:164](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/OrgList/OrgListMocks.ts#L164) diff --git a/docs/docs/auto-docs/screens/OrgList/OrgListMocks/variables/MOCKS_WITH_ERROR.md b/docs/docs/auto-docs/screens/OrgList/OrgListMocks/variables/MOCKS_WITH_ERROR.md deleted file mode 100644 index ad41fb505a..0000000000 --- a/docs/docs/auto-docs/screens/OrgList/OrgListMocks/variables/MOCKS_WITH_ERROR.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [screens/OrgList/OrgListMocks](../README.md) / MOCKS\_WITH\_ERROR - -# Variable: MOCKS\_WITH\_ERROR - -> `const` **MOCKS\_WITH\_ERROR**: (\{ `error`: `undefined`; `request`: \{ `notifyOnNetworkStatusChange`: `boolean`; `query`: `DocumentNode`; `variables`: \{ `filter`: `string`; `first`: `number`; `orderBy`: `string`; `skip`: `number`; `userId`: `undefined`; \}; \}; `result`: \{ `data`: \{ `organizationsConnection`: [`InterfaceOrgConnectionInfoType`](../../../../utils/interfaces/interfaces/InterfaceOrgConnectionInfoType.md)[]; `user`: `undefined`; \}; \}; \} \| \{ `error`: `undefined`; `request`: \{ `notifyOnNetworkStatusChange`: `undefined`; `query`: `DocumentNode`; `variables`: \{ `filter`: `undefined`; `first`: `undefined`; `orderBy`: `undefined`; `skip`: `undefined`; `userId`: `string`; \}; \}; `result`: \{ `data`: \{ `organizationsConnection`: `undefined`; `user`: [`InterfaceUserType`](../../../../utils/interfaces/interfaces/InterfaceUserType.md); \}; \}; \} \| \{ `error`: `Error`; `request`: \{ `notifyOnNetworkStatusChange`: `undefined`; `query`: `DocumentNode`; `variables`: `undefined`; \}; `result`: `undefined`; \})[] - -Defined in: [src/screens/OrgList/OrgListMocks.ts:192](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/OrgList/OrgListMocks.ts#L192) diff --git a/docs/docs/auto-docs/screens/OrgList/OrganizationModal/README.md b/docs/docs/auto-docs/screens/OrgList/OrganizationModal/README.md deleted file mode 100644 index 671448d22a..0000000000 --- a/docs/docs/auto-docs/screens/OrgList/OrganizationModal/README.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / screens/OrgList/OrganizationModal - -# screens/OrgList/OrganizationModal - -## Functions - -- [default](functions/default.md) diff --git a/docs/docs/auto-docs/screens/OrgList/OrganizationModal/functions/default.md b/docs/docs/auto-docs/screens/OrgList/OrganizationModal/functions/default.md deleted file mode 100644 index 8201609cbf..0000000000 --- a/docs/docs/auto-docs/screens/OrgList/OrganizationModal/functions/default.md +++ /dev/null @@ -1,33 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [screens/OrgList/OrganizationModal](../README.md) / default - -# Function: default() - -> **default**(`props`, `deprecatedLegacyContext`?): `ReactNode` - -Defined in: [src/screens/OrgList/OrganizationModal.tsx:55](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/OrgList/OrganizationModal.tsx#L55) - -Represents the organization modal component. - -## Parameters - -### props - -`InterfaceOrganizationModalProps` - -### deprecatedLegacyContext? - -`any` - -**Deprecated** - -**See** - -[React Docs](https://legacy.reactjs.org/docs/legacy-context.html#referencing-context-in-lifecycle-methods) - -## Returns - -`ReactNode` diff --git a/docs/docs/auto-docs/screens/OrgPost/OrgPost/README.md b/docs/docs/auto-docs/screens/OrgPost/OrgPost/README.md deleted file mode 100644 index c6c7b0e66e..0000000000 --- a/docs/docs/auto-docs/screens/OrgPost/OrgPost/README.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / screens/OrgPost/OrgPost - -# screens/OrgPost/OrgPost - -## Functions - -- [default](functions/default.md) diff --git a/docs/docs/auto-docs/screens/OrgPost/OrgPost/functions/default.md b/docs/docs/auto-docs/screens/OrgPost/OrgPost/functions/default.md deleted file mode 100644 index fe2d5a9ce2..0000000000 --- a/docs/docs/auto-docs/screens/OrgPost/OrgPost/functions/default.md +++ /dev/null @@ -1,21 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [screens/OrgPost/OrgPost](../README.md) / default - -# Function: default() - -> **default**(): `JSX.Element` - -Defined in: [src/screens/OrgPost/OrgPost.tsx:51](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/OrgPost/OrgPost.tsx#L51) - -This function is used to display the posts of the organization. It displays the posts in a card format. -It also provides the functionality to create a new post. The user can also sort the posts based on the date of creation. -The user can also search for a post based on the title of the post. - -## Returns - -`JSX.Element` - -JSX.Element which contains the posts of the organization. diff --git a/docs/docs/auto-docs/screens/OrgSettings/OrgSettings.mocks/README.md b/docs/docs/auto-docs/screens/OrgSettings/OrgSettings.mocks/README.md deleted file mode 100644 index bd267dc545..0000000000 --- a/docs/docs/auto-docs/screens/OrgSettings/OrgSettings.mocks/README.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / screens/OrgSettings/OrgSettings.mocks - -# screens/OrgSettings/OrgSettings.mocks - -## Variables - -- [MOCKS](variables/MOCKS.md) diff --git a/docs/docs/auto-docs/screens/OrgSettings/OrgSettings.mocks/variables/MOCKS.md b/docs/docs/auto-docs/screens/OrgSettings/OrgSettings.mocks/variables/MOCKS.md deleted file mode 100644 index 4b0a36127f..0000000000 --- a/docs/docs/auto-docs/screens/OrgSettings/OrgSettings.mocks/variables/MOCKS.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [screens/OrgSettings/OrgSettings.mocks](../README.md) / MOCKS - -# Variable: MOCKS - -> `const` **MOCKS**: (\{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `customFieldsByOrganizationId`: `undefined`; `id`: `string`; `isSampleOrganizationId`: `undefined`; `orderBy`: `undefined`; `organizationId`: `undefined`; `where`: `undefined`; \}; \}; `result`: \{ `data`: \{ `actionItemCategoriesByOrganization`: `undefined`; `agendaItemCategoriesByOrganization`: `undefined`; `customFieldsByOrganization`: `undefined`; `isSampleOrganization`: `undefined`; `organizations`: `object`[]; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `customFieldsByOrganizationId`: `string`; `id`: `undefined`; `isSampleOrganizationId`: `undefined`; `orderBy`: `undefined`; `organizationId`: `undefined`; `where`: `undefined`; \}; \}; `result`: \{ `data`: \{ `actionItemCategoriesByOrganization`: `undefined`; `agendaItemCategoriesByOrganization`: `undefined`; `customFieldsByOrganization`: `object`[]; `isSampleOrganization`: `undefined`; `organizations`: `undefined`; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `customFieldsByOrganizationId`: `undefined`; `id`: `undefined`; `isSampleOrganizationId`: `string`; `orderBy`: `undefined`; `organizationId`: `undefined`; `where`: `undefined`; \}; \}; `result`: \{ `data`: \{ `actionItemCategoriesByOrganization`: `undefined`; `agendaItemCategoriesByOrganization`: `undefined`; `customFieldsByOrganization`: `undefined`; `isSampleOrganization`: `boolean`; `organizations`: `undefined`; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `customFieldsByOrganizationId`: `undefined`; `id`: `undefined`; `isSampleOrganizationId`: `undefined`; `orderBy`: `undefined`; `organizationId`: `string`; `where`: `undefined`; \}; \}; `result`: \{ `data`: \{ `actionItemCategoriesByOrganization`: `undefined`; `agendaItemCategoriesByOrganization`: `never`[]; `customFieldsByOrganization`: `undefined`; `isSampleOrganization`: `undefined`; `organizations`: `undefined`; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `customFieldsByOrganizationId`: `undefined`; `id`: `undefined`; `isSampleOrganizationId`: `undefined`; `orderBy`: `string`; `organizationId`: `string`; `where`: \{ `name_contains`: `string`; \}; \}; \}; `result`: \{ `data`: \{ `actionItemCategoriesByOrganization`: `object`[]; `agendaItemCategoriesByOrganization`: `undefined`; `customFieldsByOrganization`: `undefined`; `isSampleOrganization`: `undefined`; `organizations`: `undefined`; \}; \}; \})[] - -Defined in: [src/screens/OrgSettings/OrgSettings.mocks.ts:9](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/OrgSettings/OrgSettings.mocks.ts#L9) diff --git a/docs/docs/auto-docs/screens/OrgSettings/OrgSettings/README.md b/docs/docs/auto-docs/screens/OrgSettings/OrgSettings/README.md deleted file mode 100644 index 5957704391..0000000000 --- a/docs/docs/auto-docs/screens/OrgSettings/OrgSettings/README.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / screens/OrgSettings/OrgSettings - -# screens/OrgSettings/OrgSettings - -## Functions - -- [default](functions/default.md) diff --git a/docs/docs/auto-docs/screens/OrgSettings/OrgSettings/functions/default.md b/docs/docs/auto-docs/screens/OrgSettings/OrgSettings/functions/default.md deleted file mode 100644 index e9c2b9d0e2..0000000000 --- a/docs/docs/auto-docs/screens/OrgSettings/OrgSettings/functions/default.md +++ /dev/null @@ -1,23 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [screens/OrgSettings/OrgSettings](../README.md) / default - -# Function: default() - -> **default**(): `JSX.Element` - -Defined in: [src/screens/OrgSettings/OrgSettings.tsx:29](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/OrgSettings/OrgSettings.tsx#L29) - -The `orgSettings` component provides a user interface for managing various settings related to an organization. -It includes options for updating organization details, deleting the organization, changing language preferences, -and managing custom fields and action item categories. - -The component renders different settings sections based on the user's selection from the tabs or dropdown menu. - -## Returns - -`JSX.Element` - -The rendered component displaying the organization settings. diff --git a/docs/docs/auto-docs/screens/OrganizationActionItems/ItemDeleteModal/README.md b/docs/docs/auto-docs/screens/OrganizationActionItems/ItemDeleteModal/README.md deleted file mode 100644 index 0ff3318d38..0000000000 --- a/docs/docs/auto-docs/screens/OrganizationActionItems/ItemDeleteModal/README.md +++ /dev/null @@ -1,15 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / screens/OrganizationActionItems/ItemDeleteModal - -# screens/OrganizationActionItems/ItemDeleteModal - -## Interfaces - -- [InterfaceItemDeleteModalProps](interfaces/InterfaceItemDeleteModalProps.md) - -## Functions - -- [default](functions/default.md) diff --git a/docs/docs/auto-docs/screens/OrganizationActionItems/ItemDeleteModal/functions/default.md b/docs/docs/auto-docs/screens/OrganizationActionItems/ItemDeleteModal/functions/default.md deleted file mode 100644 index 4763319b99..0000000000 --- a/docs/docs/auto-docs/screens/OrganizationActionItems/ItemDeleteModal/functions/default.md +++ /dev/null @@ -1,37 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [screens/OrganizationActionItems/ItemDeleteModal](../README.md) / default - -# Function: default() - -> **default**(`props`, `deprecatedLegacyContext`?): `ReactNode` - -Defined in: [src/screens/OrganizationActionItems/ItemDeleteModal.tsx:26](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/OrganizationActionItems/ItemDeleteModal.tsx#L26) - -A modal component for confirming the deletion of an action item. - -## Parameters - -### props - -[`InterfaceItemDeleteModalProps`](../interfaces/InterfaceItemDeleteModalProps.md) - -The properties passed to the component. - -### deprecatedLegacyContext? - -`any` - -**Deprecated** - -**See** - -[React Docs](https://legacy.reactjs.org/docs/legacy-context.html#referencing-context-in-lifecycle-methods) - -## Returns - -`ReactNode` - -The `ItemDeleteModal` component. diff --git a/docs/docs/auto-docs/screens/OrganizationActionItems/ItemDeleteModal/interfaces/InterfaceItemDeleteModalProps.md b/docs/docs/auto-docs/screens/OrganizationActionItems/ItemDeleteModal/interfaces/InterfaceItemDeleteModalProps.md deleted file mode 100644 index 72eb8737cc..0000000000 --- a/docs/docs/auto-docs/screens/OrganizationActionItems/ItemDeleteModal/interfaces/InterfaceItemDeleteModalProps.md +++ /dev/null @@ -1,51 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [screens/OrganizationActionItems/ItemDeleteModal](../README.md) / InterfaceItemDeleteModalProps - -# Interface: InterfaceItemDeleteModalProps - -Defined in: [src/screens/OrganizationActionItems/ItemDeleteModal.tsx:13](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/OrganizationActionItems/ItemDeleteModal.tsx#L13) - -Props for the `ItemDeleteModal` component. - -## Properties - -### actionItem - -> **actionItem**: `null` \| [`InterfaceActionItemInfo`](../../../../utils/interfaces/interfaces/InterfaceActionItemInfo.md) - -Defined in: [src/screens/OrganizationActionItems/ItemDeleteModal.tsx:16](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/OrganizationActionItems/ItemDeleteModal.tsx#L16) - -*** - -### actionItemsRefetch() - -> **actionItemsRefetch**: () => `void` - -Defined in: [src/screens/OrganizationActionItems/ItemDeleteModal.tsx:17](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/OrganizationActionItems/ItemDeleteModal.tsx#L17) - -#### Returns - -`void` - -*** - -### hide() - -> **hide**: () => `void` - -Defined in: [src/screens/OrganizationActionItems/ItemDeleteModal.tsx:15](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/OrganizationActionItems/ItemDeleteModal.tsx#L15) - -#### Returns - -`void` - -*** - -### isOpen - -> **isOpen**: `boolean` - -Defined in: [src/screens/OrganizationActionItems/ItemDeleteModal.tsx:14](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/OrganizationActionItems/ItemDeleteModal.tsx#L14) diff --git a/docs/docs/auto-docs/screens/OrganizationActionItems/ItemModal/README.md b/docs/docs/auto-docs/screens/OrganizationActionItems/ItemModal/README.md deleted file mode 100644 index 0f04181068..0000000000 --- a/docs/docs/auto-docs/screens/OrganizationActionItems/ItemModal/README.md +++ /dev/null @@ -1,15 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / screens/OrganizationActionItems/ItemModal - -# screens/OrganizationActionItems/ItemModal - -## Interfaces - -- [InterfaceItemModalProps](interfaces/InterfaceItemModalProps.md) - -## Functions - -- [default](functions/default.md) diff --git a/docs/docs/auto-docs/screens/OrganizationActionItems/ItemModal/functions/default.md b/docs/docs/auto-docs/screens/OrganizationActionItems/ItemModal/functions/default.md deleted file mode 100644 index 8836a78fb5..0000000000 --- a/docs/docs/auto-docs/screens/OrganizationActionItems/ItemModal/functions/default.md +++ /dev/null @@ -1,37 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [screens/OrganizationActionItems/ItemModal](../README.md) / default - -# Function: default() - -> **default**(`props`, `deprecatedLegacyContext`?): `ReactNode` - -Defined in: [src/screens/OrganizationActionItems/ItemModal.tsx:92](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/OrganizationActionItems/ItemModal.tsx#L92) - -A modal component for creating action items. - -## Parameters - -### props - -[`InterfaceItemModalProps`](../interfaces/InterfaceItemModalProps.md) - -The properties passed to the component. - -### deprecatedLegacyContext? - -`any` - -**Deprecated** - -**See** - -[React Docs](https://legacy.reactjs.org/docs/legacy-context.html#referencing-context-in-lifecycle-methods) - -## Returns - -`ReactNode` - -The `ItemModal` component. diff --git a/docs/docs/auto-docs/screens/OrganizationActionItems/ItemModal/interfaces/InterfaceItemModalProps.md b/docs/docs/auto-docs/screens/OrganizationActionItems/ItemModal/interfaces/InterfaceItemModalProps.md deleted file mode 100644 index 1e88624614..0000000000 --- a/docs/docs/auto-docs/screens/OrganizationActionItems/ItemModal/interfaces/InterfaceItemModalProps.md +++ /dev/null @@ -1,75 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [screens/OrganizationActionItems/ItemModal](../README.md) / InterfaceItemModalProps - -# Interface: InterfaceItemModalProps - -Defined in: [src/screens/OrganizationActionItems/ItemModal.tsx:52](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/OrganizationActionItems/ItemModal.tsx#L52) - -Props for the `ItemModal` component. - -## Properties - -### actionItem - -> **actionItem**: `null` \| [`InterfaceActionItemInfo`](../../../../utils/interfaces/interfaces/InterfaceActionItemInfo.md) - -Defined in: [src/screens/OrganizationActionItems/ItemModal.tsx:58](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/OrganizationActionItems/ItemModal.tsx#L58) - -*** - -### actionItemsRefetch() - -> **actionItemsRefetch**: () => `void` - -Defined in: [src/screens/OrganizationActionItems/ItemModal.tsx:57](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/OrganizationActionItems/ItemModal.tsx#L57) - -#### Returns - -`void` - -*** - -### editMode - -> **editMode**: `boolean` - -Defined in: [src/screens/OrganizationActionItems/ItemModal.tsx:59](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/OrganizationActionItems/ItemModal.tsx#L59) - -*** - -### eventId - -> **eventId**: `undefined` \| `string` - -Defined in: [src/screens/OrganizationActionItems/ItemModal.tsx:56](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/OrganizationActionItems/ItemModal.tsx#L56) - -*** - -### hide() - -> **hide**: () => `void` - -Defined in: [src/screens/OrganizationActionItems/ItemModal.tsx:54](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/OrganizationActionItems/ItemModal.tsx#L54) - -#### Returns - -`void` - -*** - -### isOpen - -> **isOpen**: `boolean` - -Defined in: [src/screens/OrganizationActionItems/ItemModal.tsx:53](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/OrganizationActionItems/ItemModal.tsx#L53) - -*** - -### orgId - -> **orgId**: `string` - -Defined in: [src/screens/OrganizationActionItems/ItemModal.tsx:55](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/OrganizationActionItems/ItemModal.tsx#L55) diff --git a/docs/docs/auto-docs/screens/OrganizationActionItems/ItemUpdateStatusModal/README.md b/docs/docs/auto-docs/screens/OrganizationActionItems/ItemUpdateStatusModal/README.md deleted file mode 100644 index 411595c919..0000000000 --- a/docs/docs/auto-docs/screens/OrganizationActionItems/ItemUpdateStatusModal/README.md +++ /dev/null @@ -1,15 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / screens/OrganizationActionItems/ItemUpdateStatusModal - -# screens/OrganizationActionItems/ItemUpdateStatusModal - -## Interfaces - -- [InterfaceItemUpdateStatusModalProps](interfaces/InterfaceItemUpdateStatusModalProps.md) - -## Functions - -- [default](functions/default.md) diff --git a/docs/docs/auto-docs/screens/OrganizationActionItems/ItemUpdateStatusModal/functions/default.md b/docs/docs/auto-docs/screens/OrganizationActionItems/ItemUpdateStatusModal/functions/default.md deleted file mode 100644 index c95d47dfae..0000000000 --- a/docs/docs/auto-docs/screens/OrganizationActionItems/ItemUpdateStatusModal/functions/default.md +++ /dev/null @@ -1,31 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [screens/OrganizationActionItems/ItemUpdateStatusModal](../README.md) / default - -# Function: default() - -> **default**(`props`, `deprecatedLegacyContext`?): `ReactNode` - -Defined in: [src/screens/OrganizationActionItems/ItemUpdateStatusModal.tsx:18](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/OrganizationActionItems/ItemUpdateStatusModal.tsx#L18) - -## Parameters - -### props - -[`InterfaceItemUpdateStatusModalProps`](../interfaces/InterfaceItemUpdateStatusModalProps.md) - -### deprecatedLegacyContext? - -`any` - -**Deprecated** - -**See** - -[React Docs](https://legacy.reactjs.org/docs/legacy-context.html#referencing-context-in-lifecycle-methods) - -## Returns - -`ReactNode` diff --git a/docs/docs/auto-docs/screens/OrganizationActionItems/ItemUpdateStatusModal/interfaces/InterfaceItemUpdateStatusModalProps.md b/docs/docs/auto-docs/screens/OrganizationActionItems/ItemUpdateStatusModal/interfaces/InterfaceItemUpdateStatusModalProps.md deleted file mode 100644 index 6291e68de0..0000000000 --- a/docs/docs/auto-docs/screens/OrganizationActionItems/ItemUpdateStatusModal/interfaces/InterfaceItemUpdateStatusModalProps.md +++ /dev/null @@ -1,49 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [screens/OrganizationActionItems/ItemUpdateStatusModal](../README.md) / InterfaceItemUpdateStatusModalProps - -# Interface: InterfaceItemUpdateStatusModalProps - -Defined in: [src/screens/OrganizationActionItems/ItemUpdateStatusModal.tsx:11](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/OrganizationActionItems/ItemUpdateStatusModal.tsx#L11) - -## Properties - -### actionItem - -> **actionItem**: [`InterfaceActionItemInfo`](../../../../utils/interfaces/interfaces/InterfaceActionItemInfo.md) - -Defined in: [src/screens/OrganizationActionItems/ItemUpdateStatusModal.tsx:15](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/OrganizationActionItems/ItemUpdateStatusModal.tsx#L15) - -*** - -### actionItemsRefetch() - -> **actionItemsRefetch**: () => `void` - -Defined in: [src/screens/OrganizationActionItems/ItemUpdateStatusModal.tsx:14](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/OrganizationActionItems/ItemUpdateStatusModal.tsx#L14) - -#### Returns - -`void` - -*** - -### hide() - -> **hide**: () => `void` - -Defined in: [src/screens/OrganizationActionItems/ItemUpdateStatusModal.tsx:13](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/OrganizationActionItems/ItemUpdateStatusModal.tsx#L13) - -#### Returns - -`void` - -*** - -### isOpen - -> **isOpen**: `boolean` - -Defined in: [src/screens/OrganizationActionItems/ItemUpdateStatusModal.tsx:12](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/OrganizationActionItems/ItemUpdateStatusModal.tsx#L12) diff --git a/docs/docs/auto-docs/screens/OrganizationActionItems/ItemViewModal/README.md b/docs/docs/auto-docs/screens/OrganizationActionItems/ItemViewModal/README.md deleted file mode 100644 index cf8b41b016..0000000000 --- a/docs/docs/auto-docs/screens/OrganizationActionItems/ItemViewModal/README.md +++ /dev/null @@ -1,15 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / screens/OrganizationActionItems/ItemViewModal - -# screens/OrganizationActionItems/ItemViewModal - -## Interfaces - -- [InterfaceViewModalProps](interfaces/InterfaceViewModalProps.md) - -## Functions - -- [default](functions/default.md) diff --git a/docs/docs/auto-docs/screens/OrganizationActionItems/ItemViewModal/functions/default.md b/docs/docs/auto-docs/screens/OrganizationActionItems/ItemViewModal/functions/default.md deleted file mode 100644 index 1164901d05..0000000000 --- a/docs/docs/auto-docs/screens/OrganizationActionItems/ItemViewModal/functions/default.md +++ /dev/null @@ -1,38 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [screens/OrganizationActionItems/ItemViewModal](../README.md) / default - -# Function: default() - -> **default**(`props`, `deprecatedLegacyContext`?): `ReactNode` - -Defined in: [src/screens/OrganizationActionItems/ItemViewModal.tsx:32](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/OrganizationActionItems/ItemViewModal.tsx#L32) - -A modal dialog for viewing action item details. - -## Parameters - -### props - -[`InterfaceViewModalProps`](../interfaces/InterfaceViewModalProps.md) - -### deprecatedLegacyContext? - -`any` - -**Deprecated** - -**See** - -[React Docs](https://legacy.reactjs.org/docs/legacy-context.html#referencing-context-in-lifecycle-methods) - -## Returns - -`ReactNode` - -The rendered modal component. - -The `ItemViewModal` component displays all the fields of an action item in a modal dialog. -It includes fields for assignee, assigner, category, pre and post completion notes, assignment date, due date, completion date, and event. diff --git a/docs/docs/auto-docs/screens/OrganizationActionItems/ItemViewModal/interfaces/InterfaceViewModalProps.md b/docs/docs/auto-docs/screens/OrganizationActionItems/ItemViewModal/interfaces/InterfaceViewModalProps.md deleted file mode 100644 index 8f705150e6..0000000000 --- a/docs/docs/auto-docs/screens/OrganizationActionItems/ItemViewModal/interfaces/InterfaceViewModalProps.md +++ /dev/null @@ -1,37 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [screens/OrganizationActionItems/ItemViewModal](../README.md) / InterfaceViewModalProps - -# Interface: InterfaceViewModalProps - -Defined in: [src/screens/OrganizationActionItems/ItemViewModal.tsx:13](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/OrganizationActionItems/ItemViewModal.tsx#L13) - -## Properties - -### hide() - -> **hide**: () => `void` - -Defined in: [src/screens/OrganizationActionItems/ItemViewModal.tsx:15](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/OrganizationActionItems/ItemViewModal.tsx#L15) - -#### Returns - -`void` - -*** - -### isOpen - -> **isOpen**: `boolean` - -Defined in: [src/screens/OrganizationActionItems/ItemViewModal.tsx:14](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/OrganizationActionItems/ItemViewModal.tsx#L14) - -*** - -### item - -> **item**: [`InterfaceActionItemInfo`](../../../../utils/interfaces/interfaces/InterfaceActionItemInfo.md) - -Defined in: [src/screens/OrganizationActionItems/ItemViewModal.tsx:16](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/OrganizationActionItems/ItemViewModal.tsx#L16) diff --git a/docs/docs/auto-docs/screens/OrganizationActionItems/OrganizationActionItem.mocks/README.md b/docs/docs/auto-docs/screens/OrganizationActionItems/OrganizationActionItem.mocks/README.md deleted file mode 100644 index 876af623c0..0000000000 --- a/docs/docs/auto-docs/screens/OrganizationActionItems/OrganizationActionItem.mocks/README.md +++ /dev/null @@ -1,13 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / screens/OrganizationActionItems/OrganizationActionItem.mocks - -# screens/OrganizationActionItems/OrganizationActionItem.mocks - -## Variables - -- [MOCKS](variables/MOCKS.md) -- [MOCKS\_EMPTY](variables/MOCKS_EMPTY.md) -- [MOCKS\_ERROR](variables/MOCKS_ERROR.md) diff --git a/docs/docs/auto-docs/screens/OrganizationActionItems/OrganizationActionItem.mocks/variables/MOCKS.md b/docs/docs/auto-docs/screens/OrganizationActionItems/OrganizationActionItem.mocks/variables/MOCKS.md deleted file mode 100644 index 2bcb31cfee..0000000000 --- a/docs/docs/auto-docs/screens/OrganizationActionItems/OrganizationActionItem.mocks/variables/MOCKS.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [screens/OrganizationActionItems/OrganizationActionItem.mocks](../README.md) / MOCKS - -# Variable: MOCKS - -> `const` **MOCKS**: (\{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `id`: `string`; \}; \}; `result`: \{ `data`: \{ `organizations`: `object`[]; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `organizationId`: `string`; `where`: \{ `is_disabled`: `boolean`; \}; \}; \}; `result`: \{ `data`: \{ `actionItemCategoriesByOrganization`: (\{ `_id`: `string`; `createdAt`: `string`; `creator`: \{ `_id`: `string`; `firstName`: `string`; `lastName`: `string`; \}; `isDisabled`: `boolean`; `name`: `string`; \} \| \{ `_id`: `undefined`; `createdAt`: `string`; `creator`: \{ `_id`: `undefined`; `firstName`: `string`; `lastName`: `string`; \}; `isDisabled`: `boolean`; `name`: `string`; \})[]; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `where`: \{ `eventId`: `string`; `hasAccepted`: `boolean`; \}; \}; \}; `result`: \{ `data`: \{ `getEventVolunteers`: (\{ `_id`: `string`; `assignments`: `never`[]; `groups`: `object`[]; `hasAccepted`: `boolean`; `hoursVolunteered`: `number`; `user`: \{ `_id`: `string`; `firstName`: `string`; `image`: `null`; `lastName`: `string`; \}; \} \| \{ `_id`: `undefined`; `assignments`: `never`[]; `groups`: `never`[]; `hasAccepted`: `boolean`; `hoursVolunteered`: `number`; `user`: \{ `_id`: `undefined`; `firstName`: `string`; `image`: `null`; `lastName`: `string`; \}; \})[]; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `where`: \{ `eventId`: `undefined`; `hasAccepted`: `boolean`; \}; \}; \}; `result`: \{ `data`: \{ `getEventVolunteers`: `never`[]; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `where`: \{ `eventId`: `string`; \}; \}; \}; `result`: \{ `data`: \{ `getEventVolunteerGroups`: (\{ `_id`: `string`; `assignments`: `never`[]; `createdAt`: `string`; `creator`: \{ `_id`: `string`; `firstName`: `string`; `image`: `null`; `lastName`: `string`; \}; `description`: `string`; `event`: \{ `_id`: `string`; \}; `leader`: \{ `_id`: `string`; `firstName`: `string`; `image`: `null`; `lastName`: `string`; \}; `name`: `string`; `volunteers`: `object`[]; `volunteersRequired`: `number`; \} \| \{ `_id`: `undefined`; `assignments`: `never`[]; `createdAt`: `string`; `creator`: \{ `_id`: `string`; `firstName`: `string`; `image`: `null`; `lastName`: `string`; \}; `description`: `string`; `event`: \{ `_id`: `string`; \}; `leader`: \{ `_id`: `string`; `firstName`: `string`; `image`: `null`; `lastName`: `string`; \}; `name`: `string`; `volunteers`: `never`[]; `volunteersRequired`: `number`; \})[]; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `where`: \{ `eventId`: `undefined`; \}; \}; \}; `result`: \{ `data`: \{ `getEventVolunteerGroups`: `never`[]; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `actionItemCategoryId`: `undefined`; `actionItemId`: `undefined`; `allottedHours`: `undefined`; `assigneeId`: `undefined`; `assigneeType`: `undefined`; `dDate`: `undefined`; `dueDate`: `undefined`; `eventId`: `string`; `isCompleted`: `undefined`; `orderBy`: `null`; `organizationId`: `string`; `postCompletionNotes`: `undefined`; `preCompletionNotes`: `undefined`; `where`: \{ `assigneeName`: `string`; `categoryName`: `undefined`; `is_completed`: `undefined`; \}; \}; \}; `result`: \{ `data`: \{ `actionItemsByOrganization`: [`InterfaceActionItemInfo`](../../../../utils/interfaces/interfaces/InterfaceActionItemInfo.md)[]; `createActionItem`: `undefined`; `removeActionItem`: `undefined`; `updateActionItem`: `undefined`; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `actionItemCategoryId`: `undefined`; `actionItemId`: `undefined`; `allottedHours`: `undefined`; `assigneeId`: `undefined`; `assigneeType`: `undefined`; `dDate`: `undefined`; `dueDate`: `undefined`; `eventId`: `string`; `isCompleted`: `undefined`; `orderBy`: `null`; `organizationId`: `string`; `postCompletionNotes`: `undefined`; `preCompletionNotes`: `undefined`; `where`: \{ `assigneeName`: `undefined`; `categoryName`: `string`; `is_completed`: `undefined`; \}; \}; \}; `result`: \{ `data`: \{ `actionItemsByOrganization`: [`InterfaceActionItemInfo`](../../../../utils/interfaces/interfaces/InterfaceActionItemInfo.md)[]; `createActionItem`: `undefined`; `removeActionItem`: `undefined`; `updateActionItem`: `undefined`; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `actionItemCategoryId`: `undefined`; `actionItemId`: `undefined`; `allottedHours`: `undefined`; `assigneeId`: `undefined`; `assigneeType`: `undefined`; `dDate`: `undefined`; `dueDate`: `undefined`; `eventId`: `string`; `isCompleted`: `undefined`; `orderBy`: `string`; `organizationId`: `string`; `postCompletionNotes`: `undefined`; `preCompletionNotes`: `undefined`; `where`: \{ `assigneeName`: `string`; `categoryName`: `undefined`; `is_completed`: `undefined`; \}; \}; \}; `result`: \{ `data`: \{ `actionItemsByOrganization`: [`InterfaceActionItemInfo`](../../../../utils/interfaces/interfaces/InterfaceActionItemInfo.md)[]; `createActionItem`: `undefined`; `removeActionItem`: `undefined`; `updateActionItem`: `undefined`; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `actionItemCategoryId`: `undefined`; `actionItemId`: `undefined`; `allottedHours`: `undefined`; `assigneeId`: `undefined`; `assigneeType`: `undefined`; `dDate`: `undefined`; `dueDate`: `undefined`; `eventId`: `string`; `isCompleted`: `undefined`; `orderBy`: `null`; `organizationId`: `string`; `postCompletionNotes`: `undefined`; `preCompletionNotes`: `undefined`; `where`: \{ `assigneeName`: `string`; `categoryName`: `undefined`; `is_completed`: `boolean`; \}; \}; \}; `result`: \{ `data`: \{ `actionItemsByOrganization`: [`InterfaceActionItemInfo`](../../../../utils/interfaces/interfaces/InterfaceActionItemInfo.md)[]; `createActionItem`: `undefined`; `removeActionItem`: `undefined`; `updateActionItem`: `undefined`; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `actionItemCategoryId`: `undefined`; `actionItemId`: `string`; `allottedHours`: `undefined`; `assigneeId`: `undefined`; `assigneeType`: `undefined`; `dDate`: `undefined`; `dueDate`: `undefined`; `eventId`: `undefined`; `isCompleted`: `undefined`; `orderBy`: `undefined`; `organizationId`: `undefined`; `postCompletionNotes`: `undefined`; `preCompletionNotes`: `undefined`; `where`: `undefined`; \}; \}; `result`: \{ `data`: \{ `actionItemsByOrganization`: `undefined`; `createActionItem`: `undefined`; `removeActionItem`: \{ `_id`: `string`; \}; `updateActionItem`: `undefined`; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `actionItemCategoryId`: `undefined`; `actionItemId`: `string`; `allottedHours`: `undefined`; `assigneeId`: `string`; `assigneeType`: `string`; `dDate`: `undefined`; `dueDate`: `undefined`; `eventId`: `undefined`; `isCompleted`: `boolean`; `orderBy`: `undefined`; `organizationId`: `undefined`; `postCompletionNotes`: `string`; `preCompletionNotes`: `undefined`; `where`: `undefined`; \}; \}; `result`: \{ `data`: \{ `actionItemsByOrganization`: `undefined`; `createActionItem`: `undefined`; `removeActionItem`: `undefined`; `updateActionItem`: \{ `_id`: `string`; \}; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `actionItemCategoryId`: `string`; `actionItemId`: `string`; `allottedHours`: `number`; `assigneeId`: `string`; `assigneeType`: `string`; `dDate`: `undefined`; `dueDate`: `undefined`; `eventId`: `undefined`; `isCompleted`: `undefined`; `orderBy`: `undefined`; `organizationId`: `undefined`; `postCompletionNotes`: `string`; `preCompletionNotes`: `undefined`; `where`: `undefined`; \}; \}; `result`: \{ `data`: \{ `actionItemsByOrganization`: `undefined`; `createActionItem`: `undefined`; `removeActionItem`: `undefined`; `updateActionItem`: \{ `_id`: `string`; \}; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `actionItemCategoryId`: `string`; `actionItemId`: `string`; `allottedHours`: `number`; `assigneeId`: `string`; `assigneeType`: `string`; `dDate`: `undefined`; `dueDate`: `string`; `eventId`: `undefined`; `isCompleted`: `undefined`; `orderBy`: `undefined`; `organizationId`: `undefined`; `postCompletionNotes`: `undefined`; `preCompletionNotes`: `string`; `where`: `undefined`; \}; \}; `result`: \{ `data`: \{ `actionItemsByOrganization`: `undefined`; `createActionItem`: `undefined`; `removeActionItem`: `undefined`; `updateActionItem`: \{ `_id`: `string`; \}; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `actionItemCategoryId`: `undefined`; `actionItemId`: `string`; `allottedHours`: `undefined`; `assigneeId`: `string`; `assigneeType`: `undefined`; `dDate`: `undefined`; `dueDate`: `undefined`; `eventId`: `undefined`; `isCompleted`: `boolean`; `orderBy`: `undefined`; `organizationId`: `undefined`; `postCompletionNotes`: `string`; `preCompletionNotes`: `undefined`; `where`: `undefined`; \}; \}; `result`: \{ `data`: \{ `actionItemsByOrganization`: `undefined`; `createActionItem`: `undefined`; `removeActionItem`: `undefined`; `updateActionItem`: \{ `_id`: `string`; \}; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `actionItemCategoryId`: `string`; `actionItemId`: `string`; `allottedHours`: `number`; `assigneeId`: `string`; `assigneeType`: `string`; `dDate`: `undefined`; `dueDate`: `undefined`; `eventId`: `undefined`; `isCompleted`: `undefined`; `orderBy`: `undefined`; `organizationId`: `undefined`; `postCompletionNotes`: `undefined`; `preCompletionNotes`: `undefined`; `where`: `undefined`; \}; \}; `result`: \{ `data`: \{ `actionItemsByOrganization`: `undefined`; `createActionItem`: `undefined`; `removeActionItem`: `undefined`; `updateActionItem`: \{ `_id`: `string`; \}; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `actionItemCategoryId`: `string`; `actionItemId`: `undefined`; `allottedHours`: `number`; `assigneeId`: `string`; `assigneeType`: `string`; `dDate`: `string`; `dueDate`: `undefined`; `eventId`: `undefined`; `isCompleted`: `undefined`; `orderBy`: `undefined`; `organizationId`: `undefined`; `postCompletionNotes`: `undefined`; `preCompletionNotes`: `string`; `where`: `undefined`; \}; \}; `result`: \{ `data`: \{ `actionItemsByOrganization`: `undefined`; `createActionItem`: \{ `_id`: `string`; \}; `removeActionItem`: `undefined`; `updateActionItem`: `undefined`; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `actionItemCategoryId`: `string`; `actionItemId`: `undefined`; `allottedHours`: `number`; `assigneeId`: `string`; `assigneeType`: `string`; `dDate`: `string`; `dueDate`: `undefined`; `eventId`: `string`; `isCompleted`: `undefined`; `orderBy`: `undefined`; `organizationId`: `undefined`; `postCompletionNotes`: `undefined`; `preCompletionNotes`: `string`; `where`: `undefined`; \}; \}; `result`: \{ `data`: \{ `actionItemsByOrganization`: `undefined`; `createActionItem`: \{ `_id`: `string`; \}; `removeActionItem`: `undefined`; `updateActionItem`: `undefined`; \}; \}; \})[] - -Defined in: [src/screens/OrganizationActionItems/OrganizationActionItem.mocks.ts:21](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/OrganizationActionItems/OrganizationActionItem.mocks.ts#L21) diff --git a/docs/docs/auto-docs/screens/OrganizationActionItems/OrganizationActionItem.mocks/variables/MOCKS_EMPTY.md b/docs/docs/auto-docs/screens/OrganizationActionItems/OrganizationActionItem.mocks/variables/MOCKS_EMPTY.md deleted file mode 100644 index b352b5c44f..0000000000 --- a/docs/docs/auto-docs/screens/OrganizationActionItems/OrganizationActionItem.mocks/variables/MOCKS_EMPTY.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [screens/OrganizationActionItems/OrganizationActionItem.mocks](../README.md) / MOCKS\_EMPTY - -# Variable: MOCKS\_EMPTY - -> `const` **MOCKS\_EMPTY**: (\{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `id`: `string`; \}; \}; `result`: \{ `data`: \{ `organizations`: `object`[]; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `organizationId`: `string`; `where`: \{ `is_disabled`: `boolean`; \}; \}; \}; `result`: \{ `data`: \{ `actionItemCategoriesByOrganization`: (\{ `_id`: `string`; `createdAt`: `string`; `creator`: \{ `_id`: `string`; `firstName`: `string`; `lastName`: `string`; \}; `isDisabled`: `boolean`; `name`: `string`; \} \| \{ `_id`: `undefined`; `createdAt`: `string`; `creator`: \{ `_id`: `undefined`; `firstName`: `string`; `lastName`: `string`; \}; `isDisabled`: `boolean`; `name`: `string`; \})[]; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `where`: \{ `eventId`: `string`; `hasAccepted`: `boolean`; \}; \}; \}; `result`: \{ `data`: \{ `getEventVolunteers`: (\{ `_id`: `string`; `assignments`: `never`[]; `groups`: `object`[]; `hasAccepted`: `boolean`; `hoursVolunteered`: `number`; `user`: \{ `_id`: `string`; `firstName`: `string`; `image`: `null`; `lastName`: `string`; \}; \} \| \{ `_id`: `undefined`; `assignments`: `never`[]; `groups`: `never`[]; `hasAccepted`: `boolean`; `hoursVolunteered`: `number`; `user`: \{ `_id`: `undefined`; `firstName`: `string`; `image`: `null`; `lastName`: `string`; \}; \})[]; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `where`: \{ `eventId`: `undefined`; `hasAccepted`: `boolean`; \}; \}; \}; `result`: \{ `data`: \{ `getEventVolunteers`: `never`[]; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `where`: \{ `eventId`: `string`; \}; \}; \}; `result`: \{ `data`: \{ `getEventVolunteerGroups`: (\{ `_id`: `string`; `assignments`: `never`[]; `createdAt`: `string`; `creator`: \{ `_id`: `string`; `firstName`: `string`; `image`: `null`; `lastName`: `string`; \}; `description`: `string`; `event`: \{ `_id`: `string`; \}; `leader`: \{ `_id`: `string`; `firstName`: `string`; `image`: `null`; `lastName`: `string`; \}; `name`: `string`; `volunteers`: `object`[]; `volunteersRequired`: `number`; \} \| \{ `_id`: `undefined`; `assignments`: `never`[]; `createdAt`: `string`; `creator`: \{ `_id`: `string`; `firstName`: `string`; `image`: `null`; `lastName`: `string`; \}; `description`: `string`; `event`: \{ `_id`: `string`; \}; `leader`: \{ `_id`: `string`; `firstName`: `string`; `image`: `null`; `lastName`: `string`; \}; `name`: `string`; `volunteers`: `never`[]; `volunteersRequired`: `number`; \})[]; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `where`: \{ `eventId`: `undefined`; \}; \}; \}; `result`: \{ `data`: \{ `getEventVolunteerGroups`: `never`[]; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `eventId`: `string`; `orderBy`: `null`; `organizationId`: `string`; `where`: \{ `assigneeName`: `string`; \}; \}; \}; `result`: \{ `data`: \{ `actionItemsByOrganization`: `never`[]; \}; \}; \})[] - -Defined in: [src/screens/OrganizationActionItems/OrganizationActionItem.mocks.ts:480](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/OrganizationActionItems/OrganizationActionItem.mocks.ts#L480) diff --git a/docs/docs/auto-docs/screens/OrganizationActionItems/OrganizationActionItem.mocks/variables/MOCKS_ERROR.md b/docs/docs/auto-docs/screens/OrganizationActionItems/OrganizationActionItem.mocks/variables/MOCKS_ERROR.md deleted file mode 100644 index d4be7dd56d..0000000000 --- a/docs/docs/auto-docs/screens/OrganizationActionItems/OrganizationActionItem.mocks/variables/MOCKS_ERROR.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [screens/OrganizationActionItems/OrganizationActionItem.mocks](../README.md) / MOCKS\_ERROR - -# Variable: MOCKS\_ERROR - -> `const` **MOCKS\_ERROR**: (\{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `id`: `string`; \}; \}; `result`: \{ `data`: \{ `organizations`: `object`[]; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `organizationId`: `string`; `where`: \{ `is_disabled`: `boolean`; \}; \}; \}; `result`: \{ `data`: \{ `actionItemCategoriesByOrganization`: (\{ `_id`: `string`; `createdAt`: `string`; `creator`: \{ `_id`: `string`; `firstName`: `string`; `lastName`: `string`; \}; `isDisabled`: `boolean`; `name`: `string`; \} \| \{ `_id`: `undefined`; `createdAt`: `string`; `creator`: \{ `_id`: `undefined`; `firstName`: `string`; `lastName`: `string`; \}; `isDisabled`: `boolean`; `name`: `string`; \})[]; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `where`: \{ `eventId`: `string`; `hasAccepted`: `boolean`; \}; \}; \}; `result`: \{ `data`: \{ `getEventVolunteers`: (\{ `_id`: `string`; `assignments`: `never`[]; `groups`: `object`[]; `hasAccepted`: `boolean`; `hoursVolunteered`: `number`; `user`: \{ `_id`: `string`; `firstName`: `string`; `image`: `null`; `lastName`: `string`; \}; \} \| \{ `_id`: `undefined`; `assignments`: `never`[]; `groups`: `never`[]; `hasAccepted`: `boolean`; `hoursVolunteered`: `number`; `user`: \{ `_id`: `undefined`; `firstName`: `string`; `image`: `null`; `lastName`: `string`; \}; \})[]; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `where`: \{ `eventId`: `undefined`; `hasAccepted`: `boolean`; \}; \}; \}; `result`: \{ `data`: \{ `getEventVolunteers`: `never`[]; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `where`: \{ `eventId`: `string`; \}; \}; \}; `result`: \{ `data`: \{ `getEventVolunteerGroups`: (\{ `_id`: `string`; `assignments`: `never`[]; `createdAt`: `string`; `creator`: \{ `_id`: `string`; `firstName`: `string`; `image`: `null`; `lastName`: `string`; \}; `description`: `string`; `event`: \{ `_id`: `string`; \}; `leader`: \{ `_id`: `string`; `firstName`: `string`; `image`: `null`; `lastName`: `string`; \}; `name`: `string`; `volunteers`: `object`[]; `volunteersRequired`: `number`; \} \| \{ `_id`: `undefined`; `assignments`: `never`[]; `createdAt`: `string`; `creator`: \{ `_id`: `string`; `firstName`: `string`; `image`: `null`; `lastName`: `string`; \}; `description`: `string`; `event`: \{ `_id`: `string`; \}; `leader`: \{ `_id`: `string`; `firstName`: `string`; `image`: `null`; `lastName`: `string`; \}; `name`: `string`; `volunteers`: `never`[]; `volunteersRequired`: `number`; \})[]; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `where`: \{ `eventId`: `undefined`; \}; \}; \}; `result`: \{ `data`: \{ `getEventVolunteerGroups`: `never`[]; \}; \}; \} \| \{ `error`: `Error`; `request`: \{ `query`: `DocumentNode`; `variables`: \{ `actionItemId`: `undefined`; `allottedHours`: `undefined`; `assigneeId`: `undefined`; `assigneeType`: `undefined`; `dDate`: `undefined`; `eventId`: `string`; `isCompleted`: `undefined`; `orderBy`: `null`; `organizationId`: `string`; `postCompletionNotes`: `undefined`; `preCompletionNotes`: `undefined`; `where`: \{ `assigneeName`: `string`; \}; \}; \}; \} \| \{ `error`: `Error`; `request`: \{ `query`: `DocumentNode`; `variables`: \{ `actionItemId`: `string`; `allottedHours`: `undefined`; `assigneeId`: `undefined`; `assigneeType`: `undefined`; `dDate`: `undefined`; `eventId`: `undefined`; `isCompleted`: `undefined`; `orderBy`: `undefined`; `organizationId`: `undefined`; `postCompletionNotes`: `undefined`; `preCompletionNotes`: `undefined`; `where`: `undefined`; \}; \}; \} \| \{ `error`: `Error`; `request`: \{ `query`: `DocumentNode`; `variables`: \{ `actionItemId`: `string`; `allottedHours`: `undefined`; `assigneeId`: `string`; `assigneeType`: `string`; `dDate`: `undefined`; `eventId`: `undefined`; `isCompleted`: `boolean`; `orderBy`: `undefined`; `organizationId`: `undefined`; `postCompletionNotes`: `string`; `preCompletionNotes`: `undefined`; `where`: `undefined`; \}; \}; \} \| \{ `error`: `Error`; `request`: \{ `query`: `DocumentNode`; `variables`: \{ `actionItemId`: `undefined`; `allottedHours`: `null`; `assigneeId`: `string`; `assigneeType`: `string`; `dDate`: `string`; `eventId`: `undefined`; `isCompleted`: `undefined`; `orderBy`: `undefined`; `organizationId`: `undefined`; `postCompletionNotes`: `undefined`; `preCompletionNotes`: `string`; `where`: `undefined`; \}; \}; \} \| \{ `error`: `Error`; `request`: \{ `query`: `DocumentNode`; `variables`: \{ `actionItemId`: `string`; `allottedHours`: `undefined`; `assigneeId`: `string`; `assigneeType`: `string`; `dDate`: `undefined`; `eventId`: `undefined`; `isCompleted`: `undefined`; `orderBy`: `undefined`; `organizationId`: `undefined`; `postCompletionNotes`: `string`; `preCompletionNotes`: `undefined`; `where`: `undefined`; \}; \}; \})[] - -Defined in: [src/screens/OrganizationActionItems/OrganizationActionItem.mocks.ts:412](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/OrganizationActionItems/OrganizationActionItem.mocks.ts#L412) diff --git a/docs/docs/auto-docs/screens/OrganizationActionItems/OrganizationActionItems/README.md b/docs/docs/auto-docs/screens/OrganizationActionItems/OrganizationActionItems/README.md deleted file mode 100644 index 4fd3908409..0000000000 --- a/docs/docs/auto-docs/screens/OrganizationActionItems/OrganizationActionItems/README.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / screens/OrganizationActionItems/OrganizationActionItems - -# screens/OrganizationActionItems/OrganizationActionItems - -## Functions - -- [default](functions/default.md) diff --git a/docs/docs/auto-docs/screens/OrganizationActionItems/OrganizationActionItems/functions/default.md b/docs/docs/auto-docs/screens/OrganizationActionItems/OrganizationActionItems/functions/default.md deleted file mode 100644 index 381cf2fe27..0000000000 --- a/docs/docs/auto-docs/screens/OrganizationActionItems/OrganizationActionItems/functions/default.md +++ /dev/null @@ -1,21 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [screens/OrganizationActionItems/OrganizationActionItems](../README.md) / default - -# Function: default() - -> **default**(): `JSX.Element` - -Defined in: [src/screens/OrganizationActionItems/OrganizationActionItems.tsx:51](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/OrganizationActionItems/OrganizationActionItems.tsx#L51) - -Component for managing and displaying action items within an organization. - -This component allows users to view, filter, sort, and create action items. It also handles fetching and displaying related data such as action item categories and members. - -## Returns - -`JSX.Element` - -The rendered component. diff --git a/docs/docs/auto-docs/screens/OrganizationActionItems/testObject.mocks/README.md b/docs/docs/auto-docs/screens/OrganizationActionItems/testObject.mocks/README.md deleted file mode 100644 index 4bee2792a0..0000000000 --- a/docs/docs/auto-docs/screens/OrganizationActionItems/testObject.mocks/README.md +++ /dev/null @@ -1,22 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / screens/OrganizationActionItems/testObject.mocks - -# screens/OrganizationActionItems/testObject.mocks - -## Variables - -- [actionItemCategory1](variables/actionItemCategory1.md) -- [actionItemCategory2](variables/actionItemCategory2.md) -- [actionItemCategoryListQuery](variables/actionItemCategoryListQuery.md) -- [baseActionItem](variables/baseActionItem.md) -- [groupListQuery](variables/groupListQuery.md) -- [itemWithGroup](variables/itemWithGroup.md) -- [itemWithUser](variables/itemWithUser.md) -- [itemWithUserImage](variables/itemWithUserImage.md) -- [itemWithVolunteer](variables/itemWithVolunteer.md) -- [itemWithVolunteerImage](variables/itemWithVolunteerImage.md) -- [memberListQuery](variables/memberListQuery.md) -- [volunteerListQuery](variables/volunteerListQuery.md) diff --git a/docs/docs/auto-docs/screens/OrganizationActionItems/testObject.mocks/variables/actionItemCategory1.md b/docs/docs/auto-docs/screens/OrganizationActionItems/testObject.mocks/variables/actionItemCategory1.md deleted file mode 100644 index 3413571fdb..0000000000 --- a/docs/docs/auto-docs/screens/OrganizationActionItems/testObject.mocks/variables/actionItemCategory1.md +++ /dev/null @@ -1,21 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [screens/OrganizationActionItems/testObject.mocks](../README.md) / actionItemCategory1 - -# Variable: actionItemCategory1 - -> `const` **actionItemCategory1**: `object` - -Defined in: [src/screens/OrganizationActionItems/testObject.mocks.ts:11](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/OrganizationActionItems/testObject.mocks.ts#L11) - -## Type declaration - -### \_id - -> **\_id**: `string` = `'actionItemCategoryId1'` - -### name - -> **name**: `string` = `'Category 1'` diff --git a/docs/docs/auto-docs/screens/OrganizationActionItems/testObject.mocks/variables/actionItemCategory2.md b/docs/docs/auto-docs/screens/OrganizationActionItems/testObject.mocks/variables/actionItemCategory2.md deleted file mode 100644 index f3ad3eb63a..0000000000 --- a/docs/docs/auto-docs/screens/OrganizationActionItems/testObject.mocks/variables/actionItemCategory2.md +++ /dev/null @@ -1,21 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [screens/OrganizationActionItems/testObject.mocks](../README.md) / actionItemCategory2 - -# Variable: actionItemCategory2 - -> `const` **actionItemCategory2**: `object` - -Defined in: [src/screens/OrganizationActionItems/testObject.mocks.ts:16](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/OrganizationActionItems/testObject.mocks.ts#L16) - -## Type declaration - -### \_id - -> **\_id**: `string` = `'actionItemCategoryId2'` - -### name - -> **name**: `string` = `'Category 2'` diff --git a/docs/docs/auto-docs/screens/OrganizationActionItems/testObject.mocks/variables/actionItemCategoryListQuery.md b/docs/docs/auto-docs/screens/OrganizationActionItems/testObject.mocks/variables/actionItemCategoryListQuery.md deleted file mode 100644 index db22678784..0000000000 --- a/docs/docs/auto-docs/screens/OrganizationActionItems/testObject.mocks/variables/actionItemCategoryListQuery.md +++ /dev/null @@ -1,49 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [screens/OrganizationActionItems/testObject.mocks](../README.md) / actionItemCategoryListQuery - -# Variable: actionItemCategoryListQuery - -> `const` **actionItemCategoryListQuery**: `object` - -Defined in: [src/screens/OrganizationActionItems/testObject.mocks.ts:408](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/OrganizationActionItems/testObject.mocks.ts#L408) - -## Type declaration - -### request - -> **request**: `object` - -#### request.query - -> **query**: `DocumentNode` = `ACTION_ITEM_CATEGORY_LIST` - -#### request.variables - -> **variables**: `object` - -#### request.variables.organizationId - -> **organizationId**: `string` = `'orgId'` - -#### request.variables.where - -> **where**: `object` - -#### request.variables.where.is\_disabled - -> **is\_disabled**: `boolean` = `false` - -### result - -> **result**: `object` - -#### result.data - -> **data**: `object` - -#### result.data.actionItemCategoriesByOrganization - -> **actionItemCategoriesByOrganization**: (\{ `_id`: `string`; `createdAt`: `string`; `creator`: \{ `_id`: `string`; `firstName`: `string`; `lastName`: `string`; \}; `isDisabled`: `boolean`; `name`: `string`; \} \| \{ `_id`: `undefined`; `createdAt`: `string`; `creator`: \{ `_id`: `undefined`; `firstName`: `string`; `lastName`: `string`; \}; `isDisabled`: `boolean`; `name`: `string`; \})[] diff --git a/docs/docs/auto-docs/screens/OrganizationActionItems/testObject.mocks/variables/baseActionItem.md b/docs/docs/auto-docs/screens/OrganizationActionItems/testObject.mocks/variables/baseActionItem.md deleted file mode 100644 index 9cac93367a..0000000000 --- a/docs/docs/auto-docs/screens/OrganizationActionItems/testObject.mocks/variables/baseActionItem.md +++ /dev/null @@ -1,57 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [screens/OrganizationActionItems/testObject.mocks](../README.md) / baseActionItem - -# Variable: baseActionItem - -> `const` **baseActionItem**: `object` - -Defined in: [src/screens/OrganizationActionItems/testObject.mocks.ts:21](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/OrganizationActionItems/testObject.mocks.ts#L21) - -## Type declaration - -### assigner - -> **assigner**: `object` - -#### assigner.\_id - -> **\_id**: `string` = `'userId'` - -#### assigner.firstName - -> **firstName**: `string` = `'Wilt'` - -#### assigner.image - -> **image**: `null` = `null` - -#### assigner.lastName - -> **lastName**: `string` = `'Shepherd'` - -### creator - -> **creator**: `object` - -#### creator.\_\_typename - -> **\_\_typename**: `string` = `'User'` - -#### creator.\_id - -> **\_id**: `string` = `'userId'` - -#### creator.firstName - -> **firstName**: `string` = `'Wilt'` - -#### creator.image - -> **image**: `null` = `null` - -#### creator.lastName - -> **lastName**: `string` = `'Shepherd'` diff --git a/docs/docs/auto-docs/screens/OrganizationActionItems/testObject.mocks/variables/groupListQuery.md b/docs/docs/auto-docs/screens/OrganizationActionItems/testObject.mocks/variables/groupListQuery.md deleted file mode 100644 index 8cb19ad0fd..0000000000 --- a/docs/docs/auto-docs/screens/OrganizationActionItems/testObject.mocks/variables/groupListQuery.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [screens/OrganizationActionItems/testObject.mocks](../README.md) / groupListQuery - -# Variable: groupListQuery - -> `const` **groupListQuery**: (\{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `where`: \{ `eventId`: `string`; \}; \}; \}; `result`: \{ `data`: \{ `getEventVolunteerGroups`: (\{ `_id`: `string`; `assignments`: `never`[]; `createdAt`: `string`; `creator`: \{ `_id`: `string`; `firstName`: `string`; `image`: `null`; `lastName`: `string`; \}; `description`: `string`; `event`: \{ `_id`: `string`; \}; `leader`: \{ `_id`: `string`; `firstName`: `string`; `image`: `null`; `lastName`: `string`; \}; `name`: `string`; `volunteers`: `object`[]; `volunteersRequired`: `number`; \} \| \{ `_id`: `undefined`; `assignments`: `never`[]; `createdAt`: `string`; `creator`: \{ `_id`: `string`; `firstName`: `string`; `image`: `null`; `lastName`: `string`; \}; `description`: `string`; `event`: \{ `_id`: `string`; \}; `leader`: \{ `_id`: `string`; `firstName`: `string`; `image`: `null`; `lastName`: `string`; \}; `name`: `string`; `volunteers`: `never`[]; `volunteersRequired`: `number`; \})[]; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `where`: \{ `eventId`: `undefined`; \}; \}; \}; `result`: \{ `data`: \{ `getEventVolunteerGroups`: `never`[]; \}; \}; \})[] - -Defined in: [src/screens/OrganizationActionItems/testObject.mocks.ts:301](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/OrganizationActionItems/testObject.mocks.ts#L301) diff --git a/docs/docs/auto-docs/screens/OrganizationActionItems/testObject.mocks/variables/itemWithGroup.md b/docs/docs/auto-docs/screens/OrganizationActionItems/testObject.mocks/variables/itemWithGroup.md deleted file mode 100644 index 466e8af231..0000000000 --- a/docs/docs/auto-docs/screens/OrganizationActionItems/testObject.mocks/variables/itemWithGroup.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [screens/OrganizationActionItems/testObject.mocks](../README.md) / itemWithGroup - -# Variable: itemWithGroup - -> `const` **itemWithGroup**: [`InterfaceActionItemInfo`](../../../../utils/interfaces/interfaces/InterfaceActionItemInfo.md) - -Defined in: [src/screens/OrganizationActionItems/testObject.mocks.ts:143](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/OrganizationActionItems/testObject.mocks.ts#L143) diff --git a/docs/docs/auto-docs/screens/OrganizationActionItems/testObject.mocks/variables/itemWithUser.md b/docs/docs/auto-docs/screens/OrganizationActionItems/testObject.mocks/variables/itemWithUser.md deleted file mode 100644 index af4eb628ac..0000000000 --- a/docs/docs/auto-docs/screens/OrganizationActionItems/testObject.mocks/variables/itemWithUser.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [screens/OrganizationActionItems/testObject.mocks](../README.md) / itemWithUser - -# Variable: itemWithUser - -> `const` **itemWithUser**: [`InterfaceActionItemInfo`](../../../../utils/interfaces/interfaces/InterfaceActionItemInfo.md) - -Defined in: [src/screens/OrganizationActionItems/testObject.mocks.ts:97](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/OrganizationActionItems/testObject.mocks.ts#L97) diff --git a/docs/docs/auto-docs/screens/OrganizationActionItems/testObject.mocks/variables/itemWithUserImage.md b/docs/docs/auto-docs/screens/OrganizationActionItems/testObject.mocks/variables/itemWithUserImage.md deleted file mode 100644 index 2f11b7d1ea..0000000000 --- a/docs/docs/auto-docs/screens/OrganizationActionItems/testObject.mocks/variables/itemWithUserImage.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [screens/OrganizationActionItems/testObject.mocks](../README.md) / itemWithUserImage - -# Variable: itemWithUserImage - -> `const` **itemWithUserImage**: [`InterfaceActionItemInfo`](../../../../utils/interfaces/interfaces/InterfaceActionItemInfo.md) - -Defined in: [src/screens/OrganizationActionItems/testObject.mocks.ts:120](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/OrganizationActionItems/testObject.mocks.ts#L120) diff --git a/docs/docs/auto-docs/screens/OrganizationActionItems/testObject.mocks/variables/itemWithVolunteer.md b/docs/docs/auto-docs/screens/OrganizationActionItems/testObject.mocks/variables/itemWithVolunteer.md deleted file mode 100644 index c1139a9632..0000000000 --- a/docs/docs/auto-docs/screens/OrganizationActionItems/testObject.mocks/variables/itemWithVolunteer.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [screens/OrganizationActionItems/testObject.mocks](../README.md) / itemWithVolunteer - -# Variable: itemWithVolunteer - -> `const` **itemWithVolunteer**: [`InterfaceActionItemInfo`](../../../../utils/interfaces/interfaces/InterfaceActionItemInfo.md) - -Defined in: [src/screens/OrganizationActionItems/testObject.mocks.ts:37](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/OrganizationActionItems/testObject.mocks.ts#L37) diff --git a/docs/docs/auto-docs/screens/OrganizationActionItems/testObject.mocks/variables/itemWithVolunteerImage.md b/docs/docs/auto-docs/screens/OrganizationActionItems/testObject.mocks/variables/itemWithVolunteerImage.md deleted file mode 100644 index 7515cdc00e..0000000000 --- a/docs/docs/auto-docs/screens/OrganizationActionItems/testObject.mocks/variables/itemWithVolunteerImage.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [screens/OrganizationActionItems/testObject.mocks](../README.md) / itemWithVolunteerImage - -# Variable: itemWithVolunteerImage - -> `const` **itemWithVolunteerImage**: [`InterfaceActionItemInfo`](../../../../utils/interfaces/interfaces/InterfaceActionItemInfo.md) - -Defined in: [src/screens/OrganizationActionItems/testObject.mocks.ts:67](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/OrganizationActionItems/testObject.mocks.ts#L67) diff --git a/docs/docs/auto-docs/screens/OrganizationActionItems/testObject.mocks/variables/memberListQuery.md b/docs/docs/auto-docs/screens/OrganizationActionItems/testObject.mocks/variables/memberListQuery.md deleted file mode 100644 index 629daa0ce6..0000000000 --- a/docs/docs/auto-docs/screens/OrganizationActionItems/testObject.mocks/variables/memberListQuery.md +++ /dev/null @@ -1,41 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [screens/OrganizationActionItems/testObject.mocks](../README.md) / memberListQuery - -# Variable: memberListQuery - -> `const` **memberListQuery**: `object` - -Defined in: [src/screens/OrganizationActionItems/testObject.mocks.ts:184](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/OrganizationActionItems/testObject.mocks.ts#L184) - -## Type declaration - -### request - -> **request**: `object` - -#### request.query - -> **query**: `DocumentNode` = `MEMBERS_LIST` - -#### request.variables - -> **variables**: `object` - -#### request.variables.id - -> **id**: `string` = `'orgId'` - -### result - -> **result**: `object` - -#### result.data - -> **data**: `object` - -#### result.data.organizations - -> **organizations**: `object`[] diff --git a/docs/docs/auto-docs/screens/OrganizationActionItems/testObject.mocks/variables/volunteerListQuery.md b/docs/docs/auto-docs/screens/OrganizationActionItems/testObject.mocks/variables/volunteerListQuery.md deleted file mode 100644 index a2be7ac5c6..0000000000 --- a/docs/docs/auto-docs/screens/OrganizationActionItems/testObject.mocks/variables/volunteerListQuery.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [screens/OrganizationActionItems/testObject.mocks](../README.md) / volunteerListQuery - -# Variable: volunteerListQuery - -> `const` **volunteerListQuery**: (\{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `where`: \{ `eventId`: `string`; `hasAccepted`: `boolean`; \}; \}; \}; `result`: \{ `data`: \{ `getEventVolunteers`: (\{ `_id`: `string`; `assignments`: `never`[]; `groups`: `object`[]; `hasAccepted`: `boolean`; `hoursVolunteered`: `number`; `user`: \{ `_id`: `string`; `firstName`: `string`; `image`: `null`; `lastName`: `string`; \}; \} \| \{ `_id`: `undefined`; `assignments`: `never`[]; `groups`: `never`[]; `hasAccepted`: `boolean`; `hoursVolunteered`: `number`; `user`: \{ `_id`: `undefined`; `firstName`: `string`; `image`: `null`; `lastName`: `string`; \}; \})[]; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `where`: \{ `eventId`: `undefined`; `hasAccepted`: `boolean`; \}; \}; \}; `result`: \{ `data`: \{ `getEventVolunteers`: `never`[]; \}; \}; \})[] - -Defined in: [src/screens/OrganizationActionItems/testObject.mocks.ts:228](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/OrganizationActionItems/testObject.mocks.ts#L228) diff --git a/docs/docs/auto-docs/screens/OrganizationDashboard/OrganizationDashboard/README.md b/docs/docs/auto-docs/screens/OrganizationDashboard/OrganizationDashboard/README.md deleted file mode 100644 index c34bbb3e25..0000000000 --- a/docs/docs/auto-docs/screens/OrganizationDashboard/OrganizationDashboard/README.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / screens/OrganizationDashboard/OrganizationDashboard - -# screens/OrganizationDashboard/OrganizationDashboard - -## Functions - -- [default](functions/default.md) diff --git a/docs/docs/auto-docs/screens/OrganizationDashboard/OrganizationDashboard/functions/default.md b/docs/docs/auto-docs/screens/OrganizationDashboard/OrganizationDashboard/functions/default.md deleted file mode 100644 index a72bc03b11..0000000000 --- a/docs/docs/auto-docs/screens/OrganizationDashboard/OrganizationDashboard/functions/default.md +++ /dev/null @@ -1,21 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [screens/OrganizationDashboard/OrganizationDashboard](../README.md) / default - -# Function: default() - -> **default**(): `JSX.Element` - -Defined in: [src/screens/OrganizationDashboard/OrganizationDashboard.tsx:44](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/OrganizationDashboard/OrganizationDashboard.tsx#L44) - -Component for displaying the organization dashboard. - -This component provides an overview of various statistics and information related to an organization, including members, admins, posts, events, blocked users, and membership requests. It also displays upcoming events and latest posts. - -## Returns - -`JSX.Element` - -The rendered component. diff --git a/docs/docs/auto-docs/screens/OrganizationDashboard/OrganizationDashboardMocks/README.md b/docs/docs/auto-docs/screens/OrganizationDashboard/OrganizationDashboardMocks/README.md deleted file mode 100644 index a56f4a1a9d..0000000000 --- a/docs/docs/auto-docs/screens/OrganizationDashboard/OrganizationDashboardMocks/README.md +++ /dev/null @@ -1,13 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / screens/OrganizationDashboard/OrganizationDashboardMocks - -# screens/OrganizationDashboard/OrganizationDashboardMocks - -## Variables - -- [EMPTY\_MOCKS](variables/EMPTY_MOCKS.md) -- [ERROR\_MOCKS](variables/ERROR_MOCKS.md) -- [MOCKS](variables/MOCKS.md) diff --git a/docs/docs/auto-docs/screens/OrganizationDashboard/OrganizationDashboardMocks/variables/EMPTY_MOCKS.md b/docs/docs/auto-docs/screens/OrganizationDashboard/OrganizationDashboardMocks/variables/EMPTY_MOCKS.md deleted file mode 100644 index f864dc33ff..0000000000 --- a/docs/docs/auto-docs/screens/OrganizationDashboard/OrganizationDashboardMocks/variables/EMPTY_MOCKS.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [screens/OrganizationDashboard/OrganizationDashboardMocks](../README.md) / EMPTY\_MOCKS - -# Variable: EMPTY\_MOCKS - -> `const` **EMPTY\_MOCKS**: (\{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `first`: `undefined`; `id`: `string`; `organization_id`: `undefined`; `orgId`: `undefined`; `where`: `undefined`; \}; \}; `result`: \{ `data`: \{ `eventsByOrganizationConnection`: `undefined`; `getVolunteerRanks`: `undefined`; `organizations`: `object`[]; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `first`: `number`; `id`: `string`; `organization_id`: `undefined`; `orgId`: `undefined`; `where`: `undefined`; \}; \}; `result`: \{ `data`: \{ `eventsByOrganizationConnection`: `undefined`; `getVolunteerRanks`: `undefined`; `organizations`: `object`[]; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `first`: `undefined`; `id`: `undefined`; `organization_id`: `string`; `orgId`: `undefined`; `where`: `undefined`; \}; \}; `result`: \{ `data`: \{ `eventsByOrganizationConnection`: `never`[]; `getVolunteerRanks`: `undefined`; `organizations`: `undefined`; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `first`: `undefined`; `id`: `undefined`; `organization_id`: `undefined`; `orgId`: `string`; `where`: \{ `limit`: `number`; `orderBy`: `string`; `timeFrame`: `string`; \}; \}; \}; `result`: \{ `data`: \{ `eventsByOrganizationConnection`: `undefined`; `getVolunteerRanks`: `never`[]; `organizations`: `undefined`; \}; \}; \})[] - -Defined in: [src/screens/OrganizationDashboard/OrganizationDashboardMocks.ts:329](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/OrganizationDashboard/OrganizationDashboardMocks.ts#L329) diff --git a/docs/docs/auto-docs/screens/OrganizationDashboard/OrganizationDashboardMocks/variables/ERROR_MOCKS.md b/docs/docs/auto-docs/screens/OrganizationDashboard/OrganizationDashboardMocks/variables/ERROR_MOCKS.md deleted file mode 100644 index 166832e4f4..0000000000 --- a/docs/docs/auto-docs/screens/OrganizationDashboard/OrganizationDashboardMocks/variables/ERROR_MOCKS.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [screens/OrganizationDashboard/OrganizationDashboardMocks](../README.md) / ERROR\_MOCKS - -# Variable: ERROR\_MOCKS - -> `const` **ERROR\_MOCKS**: (\{ `error`: `Error`; `request`: \{ `query`: `DocumentNode`; `variables`: \{ `first`: `undefined`; `id`: `string`; `organization_id`: `undefined`; `orgId`: `undefined`; `where`: `undefined`; \}; \}; \} \| \{ `error`: `Error`; `request`: \{ `query`: `DocumentNode`; `variables`: \{ `first`: `number`; `id`: `string`; `organization_id`: `undefined`; `orgId`: `undefined`; `where`: `undefined`; \}; \}; \} \| \{ `error`: `Error`; `request`: \{ `query`: `DocumentNode`; `variables`: \{ `first`: `undefined`; `id`: `undefined`; `organization_id`: `string`; `orgId`: `undefined`; `where`: `undefined`; \}; \}; \} \| \{ `error`: `Error`; `request`: \{ `query`: `DocumentNode`; `variables`: \{ `first`: `undefined`; `id`: `undefined`; `organization_id`: `undefined`; `orgId`: `string`; `where`: \{ `limit`: `number`; `orderBy`: `string`; `timeFrame`: `string`; \}; \}; \}; \})[] - -Defined in: [src/screens/OrganizationDashboard/OrganizationDashboardMocks.ts:448](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/OrganizationDashboard/OrganizationDashboardMocks.ts#L448) diff --git a/docs/docs/auto-docs/screens/OrganizationDashboard/OrganizationDashboardMocks/variables/MOCKS.md b/docs/docs/auto-docs/screens/OrganizationDashboard/OrganizationDashboardMocks/variables/MOCKS.md deleted file mode 100644 index cf37174175..0000000000 --- a/docs/docs/auto-docs/screens/OrganizationDashboard/OrganizationDashboardMocks/variables/MOCKS.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [screens/OrganizationDashboard/OrganizationDashboardMocks](../README.md) / MOCKS - -# Variable: MOCKS - -> `const` **MOCKS**: (\{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `first`: `undefined`; `id`: `string`; `organization_id`: `undefined`; `orgId`: `undefined`; `where`: `undefined`; \}; \}; `result`: \{ `data`: \{ `eventsByOrganizationConnection`: `undefined`; `getVolunteerRanks`: `undefined`; `organizations`: `object`[]; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `first`: `number`; `id`: `string`; `organization_id`: `undefined`; `orgId`: `undefined`; `where`: `undefined`; \}; \}; `result`: \{ `data`: \{ `eventsByOrganizationConnection`: `undefined`; `getVolunteerRanks`: `undefined`; `organizations`: `object`[]; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `first`: `undefined`; `id`: `undefined`; `organization_id`: `string`; `orgId`: `undefined`; `where`: `undefined`; \}; \}; `result`: \{ `data`: \{ `eventsByOrganizationConnection`: `object`[]; `getVolunteerRanks`: `undefined`; `organizations`: `undefined`; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `first`: `undefined`; `id`: `undefined`; `organization_id`: `undefined`; `orgId`: `string`; `where`: \{ `limit`: `number`; `orderBy`: `string`; `timeFrame`: `string`; \}; \}; \}; `result`: \{ `data`: \{ `eventsByOrganizationConnection`: `undefined`; `getVolunteerRanks`: `object`[]; `organizations`: `undefined`; \}; \}; \})[] - -Defined in: [src/screens/OrganizationDashboard/OrganizationDashboardMocks.ts:8](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/OrganizationDashboard/OrganizationDashboardMocks.ts#L8) diff --git a/docs/docs/auto-docs/screens/OrganizationEvents/OrganizationEvents/README.md b/docs/docs/auto-docs/screens/OrganizationEvents/OrganizationEvents/README.md deleted file mode 100644 index 9430947def..0000000000 --- a/docs/docs/auto-docs/screens/OrganizationEvents/OrganizationEvents/README.md +++ /dev/null @@ -1,15 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / screens/OrganizationEvents/OrganizationEvents - -# screens/OrganizationEvents/OrganizationEvents - -## Enumerations - -- [ViewType](enumerations/ViewType.md) - -## Functions - -- [default](functions/default.md) diff --git a/docs/docs/auto-docs/screens/OrganizationEvents/OrganizationEvents/enumerations/ViewType.md b/docs/docs/auto-docs/screens/OrganizationEvents/OrganizationEvents/enumerations/ViewType.md deleted file mode 100644 index 2e76d232c2..0000000000 --- a/docs/docs/auto-docs/screens/OrganizationEvents/OrganizationEvents/enumerations/ViewType.md +++ /dev/null @@ -1,33 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [screens/OrganizationEvents/OrganizationEvents](../README.md) / ViewType - -# Enumeration: ViewType - -Defined in: [src/screens/OrganizationEvents/OrganizationEvents.tsx:37](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/OrganizationEvents/OrganizationEvents.tsx#L37) - -## Enumeration Members - -### DAY - -> **DAY**: `"Day"` - -Defined in: [src/screens/OrganizationEvents/OrganizationEvents.tsx:38](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/OrganizationEvents/OrganizationEvents.tsx#L38) - -*** - -### MONTH - -> **MONTH**: `"Month View"` - -Defined in: [src/screens/OrganizationEvents/OrganizationEvents.tsx:39](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/OrganizationEvents/OrganizationEvents.tsx#L39) - -*** - -### YEAR - -> **YEAR**: `"Year View"` - -Defined in: [src/screens/OrganizationEvents/OrganizationEvents.tsx:40](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/OrganizationEvents/OrganizationEvents.tsx#L40) diff --git a/docs/docs/auto-docs/screens/OrganizationEvents/OrganizationEvents/functions/default.md b/docs/docs/auto-docs/screens/OrganizationEvents/OrganizationEvents/functions/default.md deleted file mode 100644 index 75b883f91f..0000000000 --- a/docs/docs/auto-docs/screens/OrganizationEvents/OrganizationEvents/functions/default.md +++ /dev/null @@ -1,27 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [screens/OrganizationEvents/OrganizationEvents](../README.md) / default - -# Function: default() - -> **default**(): `JSX.Element` - -Defined in: [src/screens/OrganizationEvents/OrganizationEvents.tsx:56](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/OrganizationEvents/OrganizationEvents.tsx#L56) - -Organization Events Page Component to display the events of an organization -and create new events for the organization by the admin or superadmin user. -The component uses the EventCalendar component to display the events and EventHeader component - to display the view type and create event button. - The component uses the RecurrenceOptions component to display the recurrence options for the event. - The component uses the CREATE_EVENT_MUTATION mutation to create a new event for the organization. - The component uses the ORGANIZATION_EVENT_CONNECTION_LIST and ORGANIZATIONS_LIST queries to fetch the events - and organization details. - The component uses the useLocalStorage hook to get the user details from the local storage. - -## Returns - -`JSX.Element` - -JSX.Element to display the Organization Events Page diff --git a/docs/docs/auto-docs/screens/OrganizationEvents/OrganizationEventsMocks/README.md b/docs/docs/auto-docs/screens/OrganizationEvents/OrganizationEventsMocks/README.md deleted file mode 100644 index 706082f1d8..0000000000 --- a/docs/docs/auto-docs/screens/OrganizationEvents/OrganizationEventsMocks/README.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / screens/OrganizationEvents/OrganizationEventsMocks - -# screens/OrganizationEvents/OrganizationEventsMocks - -## Variables - -- [MOCKS](variables/MOCKS.md) diff --git a/docs/docs/auto-docs/screens/OrganizationEvents/OrganizationEventsMocks/variables/MOCKS.md b/docs/docs/auto-docs/screens/OrganizationEvents/OrganizationEventsMocks/variables/MOCKS.md deleted file mode 100644 index 2c9263ef09..0000000000 --- a/docs/docs/auto-docs/screens/OrganizationEvents/OrganizationEventsMocks/variables/MOCKS.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [screens/OrganizationEvents/OrganizationEventsMocks](../README.md) / MOCKS - -# Variable: MOCKS - -> `const` **MOCKS**: (\{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `allDay`: `undefined`; `count`: `undefined`; `description`: `undefined`; `description_contains`: `string`; `endDate`: `undefined`; `endTime`: `undefined`; `frequency`: `undefined`; `interval`: `undefined`; `isPublic`: `undefined`; `isRegisterable`: `undefined`; `location`: `undefined`; `location_contains`: `string`; `organization_id`: `undefined`; `organizationId`: `undefined`; `recurrenceEndDate`: `undefined`; `recurrenceStartDate`: `undefined`; `recurring`: `undefined`; `startDate`: `undefined`; `startTime`: `undefined`; `title`: `undefined`; `title_contains`: `string`; `weekDayOccurenceInMonth`: `undefined`; `weekDays`: `undefined`; \}; \}; `result`: \{ `data`: \{ `createEvent`: `undefined`; `eventsByOrganizationConnection`: `object`[]; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `allDay`: `undefined`; `count`: `undefined`; `description`: `undefined`; `description_contains`: `string`; `endDate`: `undefined`; `endTime`: `undefined`; `frequency`: `undefined`; `interval`: `undefined`; `isPublic`: `undefined`; `isRegisterable`: `undefined`; `location`: `undefined`; `location_contains`: `string`; `organization_id`: `undefined`; `organizationId`: `undefined`; `recurrenceEndDate`: `undefined`; `recurrenceStartDate`: `undefined`; `recurring`: `undefined`; `startDate`: `undefined`; `startTime`: `undefined`; `title`: `undefined`; `title_contains`: `string`; `weekDayOccurenceInMonth`: `undefined`; `weekDays`: `undefined`; \}; \}; `result`: \{ `data`: \{ `createEvent`: `undefined`; `eventsByOrganizationConnection`: `object`[]; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `allDay`: `boolean`; `count`: `undefined`; `description`: `string`; `description_contains`: `undefined`; `endDate`: `string`; `endTime`: `undefined`; `frequency`: `undefined`; `interval`: `undefined`; `isPublic`: `boolean`; `isRegisterable`: `boolean`; `location`: `string`; `location_contains`: `undefined`; `organization_id`: `undefined`; `organizationId`: `undefined`; `recurrenceEndDate`: `undefined`; `recurrenceStartDate`: `undefined`; `recurring`: `boolean`; `startDate`: `string`; `startTime`: `undefined`; `title`: `string`; `title_contains`: `undefined`; `weekDayOccurenceInMonth`: `undefined`; `weekDays`: `undefined`; \}; \}; `result`: \{ `data`: \{ `createEvent`: \{ `_id`: `string`; \}; `eventsByOrganizationConnection`: `undefined`; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `allDay`: `boolean`; `count`: `undefined`; `description`: `string`; `description_contains`: `undefined`; `endDate`: `string`; `endTime`: `string`; `frequency`: `undefined`; `interval`: `undefined`; `isPublic`: `boolean`; `isRegisterable`: `boolean`; `location`: `string`; `location_contains`: `undefined`; `organization_id`: `undefined`; `organizationId`: `undefined`; `recurrenceEndDate`: `undefined`; `recurrenceStartDate`: `undefined`; `recurring`: `boolean`; `startDate`: `string`; `startTime`: `string`; `title`: `string`; `title_contains`: `undefined`; `weekDayOccurenceInMonth`: `undefined`; `weekDays`: `undefined`; \}; \}; `result`: \{ `data`: \{ `createEvent`: \{ `_id`: `string`; \}; `eventsByOrganizationConnection`: `undefined`; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `allDay`: `boolean`; `count`: `undefined`; `description`: `string`; `description_contains`: `undefined`; `endDate`: `string`; `endTime`: `string`; `frequency`: `string`; `interval`: `number`; `isPublic`: `boolean`; `isRegisterable`: `boolean`; `location`: `string`; `location_contains`: `undefined`; `organization_id`: `undefined`; `organizationId`: `undefined`; `recurrenceEndDate`: `null`; `recurrenceStartDate`: `string`; `recurring`: `boolean`; `startDate`: `string`; `startTime`: `string`; `title`: `string`; `title_contains`: `undefined`; `weekDayOccurenceInMonth`: `undefined`; `weekDays`: `undefined`; \}; \}; `result`: \{ `data`: \{ `createEvent`: \{ `_id`: `string`; \}; `eventsByOrganizationConnection`: `undefined`; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `allDay`: `boolean`; `count`: `undefined`; `description`: `string`; `description_contains`: `undefined`; `endDate`: `string`; `endTime`: `string`; `frequency`: `string`; `interval`: `number`; `isPublic`: `boolean`; `isRegisterable`: `boolean`; `location`: `string`; `location_contains`: `undefined`; `organization_id`: `undefined`; `organizationId`: `undefined`; `recurrenceEndDate`: `null`; `recurrenceStartDate`: `string`; `recurring`: `boolean`; `startDate`: `string`; `startTime`: `string`; `title`: `string`; `title_contains`: `undefined`; `weekDayOccurenceInMonth`: `undefined`; `weekDays`: `string`[]; \}; \}; `result`: \{ `data`: \{ `createEvent`: \{ `_id`: `string`; \}; `eventsByOrganizationConnection`: `undefined`; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `allDay`: `boolean`; `count`: `undefined`; `description`: `string`; `description_contains`: `undefined`; `endDate`: `string`; `endTime`: `undefined`; `frequency`: `string`; `interval`: `number`; `isPublic`: `boolean`; `isRegisterable`: `boolean`; `location`: `string`; `location_contains`: `undefined`; `organization_id`: `undefined`; `organizationId`: `undefined`; `recurrenceEndDate`: `string`; `recurrenceStartDate`: `string`; `recurring`: `boolean`; `startDate`: `string`; `startTime`: `undefined`; `title`: `string`; `title_contains`: `undefined`; `weekDayOccurenceInMonth`: `number`; `weekDays`: `string`[]; \}; \}; `result`: \{ `data`: \{ `createEvent`: \{ `_id`: `string`; \}; `eventsByOrganizationConnection`: `undefined`; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `allDay`: `boolean`; `count`: `number`; `description`: `string`; `description_contains`: `undefined`; `endDate`: `string`; `endTime`: `undefined`; `frequency`: `string`; `interval`: `number`; `isPublic`: `boolean`; `isRegisterable`: `boolean`; `location`: `string`; `location_contains`: `undefined`; `organization_id`: `undefined`; `organizationId`: `undefined`; `recurrenceEndDate`: `null`; `recurrenceStartDate`: `string`; `recurring`: `boolean`; `startDate`: `string`; `startTime`: `undefined`; `title`: `string`; `title_contains`: `undefined`; `weekDayOccurenceInMonth`: `undefined`; `weekDays`: `undefined`; \}; \}; `result`: \{ `data`: \{ `createEvent`: \{ `_id`: `string`; \}; `eventsByOrganizationConnection`: `undefined`; \}; \}; \})[] - -Defined in: [src/screens/OrganizationEvents/OrganizationEventsMocks.ts:4](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/OrganizationEvents/OrganizationEventsMocks.ts#L4) diff --git a/docs/docs/auto-docs/screens/OrganizationFundCampaign/CampaignModal/README.md b/docs/docs/auto-docs/screens/OrganizationFundCampaign/CampaignModal/README.md deleted file mode 100644 index e36d0fe887..0000000000 --- a/docs/docs/auto-docs/screens/OrganizationFundCampaign/CampaignModal/README.md +++ /dev/null @@ -1,15 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / screens/OrganizationFundCampaign/CampaignModal - -# screens/OrganizationFundCampaign/CampaignModal - -## Interfaces - -- [InterfaceCampaignModal](interfaces/InterfaceCampaignModal.md) - -## Functions - -- [default](functions/default.md) diff --git a/docs/docs/auto-docs/screens/OrganizationFundCampaign/CampaignModal/functions/default.md b/docs/docs/auto-docs/screens/OrganizationFundCampaign/CampaignModal/functions/default.md deleted file mode 100644 index 8089bfa0a7..0000000000 --- a/docs/docs/auto-docs/screens/OrganizationFundCampaign/CampaignModal/functions/default.md +++ /dev/null @@ -1,37 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [screens/OrganizationFundCampaign/CampaignModal](../README.md) / default - -# Function: default() - -> **default**(`props`, `deprecatedLegacyContext`?): `ReactNode` - -Defined in: [src/screens/OrganizationFundCampaign/CampaignModal.tsx:44](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/OrganizationFundCampaign/CampaignModal.tsx#L44) - -Modal component for creating or editing a campaign. - -## Parameters - -### props - -[`InterfaceCampaignModal`](../interfaces/InterfaceCampaignModal.md) - -The props for the CampaignModal component. - -### deprecatedLegacyContext? - -`any` - -**Deprecated** - -**See** - -[React Docs](https://legacy.reactjs.org/docs/legacy-context.html#referencing-context-in-lifecycle-methods) - -## Returns - -`ReactNode` - -JSX.Element diff --git a/docs/docs/auto-docs/screens/OrganizationFundCampaign/CampaignModal/interfaces/InterfaceCampaignModal.md b/docs/docs/auto-docs/screens/OrganizationFundCampaign/CampaignModal/interfaces/InterfaceCampaignModal.md deleted file mode 100644 index 7e8e9a8fb7..0000000000 --- a/docs/docs/auto-docs/screens/OrganizationFundCampaign/CampaignModal/interfaces/InterfaceCampaignModal.md +++ /dev/null @@ -1,75 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [screens/OrganizationFundCampaign/CampaignModal](../README.md) / InterfaceCampaignModal - -# Interface: InterfaceCampaignModal - -Defined in: [src/screens/OrganizationFundCampaign/CampaignModal.tsx:28](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/OrganizationFundCampaign/CampaignModal.tsx#L28) - -Props for the CampaignModal component. - -## Properties - -### campaign - -> **campaign**: `null` \| [`InterfaceCampaignInfo`](../../../../utils/interfaces/interfaces/InterfaceCampaignInfo.md) - -Defined in: [src/screens/OrganizationFundCampaign/CampaignModal.tsx:33](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/OrganizationFundCampaign/CampaignModal.tsx#L33) - -*** - -### fundId - -> **fundId**: `string` - -Defined in: [src/screens/OrganizationFundCampaign/CampaignModal.tsx:31](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/OrganizationFundCampaign/CampaignModal.tsx#L31) - -*** - -### hide() - -> **hide**: () => `void` - -Defined in: [src/screens/OrganizationFundCampaign/CampaignModal.tsx:30](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/OrganizationFundCampaign/CampaignModal.tsx#L30) - -#### Returns - -`void` - -*** - -### isOpen - -> **isOpen**: `boolean` - -Defined in: [src/screens/OrganizationFundCampaign/CampaignModal.tsx:29](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/OrganizationFundCampaign/CampaignModal.tsx#L29) - -*** - -### mode - -> **mode**: `"create"` \| `"edit"` - -Defined in: [src/screens/OrganizationFundCampaign/CampaignModal.tsx:35](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/OrganizationFundCampaign/CampaignModal.tsx#L35) - -*** - -### orgId - -> **orgId**: `string` - -Defined in: [src/screens/OrganizationFundCampaign/CampaignModal.tsx:32](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/OrganizationFundCampaign/CampaignModal.tsx#L32) - -*** - -### refetchCampaign() - -> **refetchCampaign**: () => `void` - -Defined in: [src/screens/OrganizationFundCampaign/CampaignModal.tsx:34](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/OrganizationFundCampaign/CampaignModal.tsx#L34) - -#### Returns - -`void` diff --git a/docs/docs/auto-docs/screens/OrganizationFundCampaign/OrganizationFundCampagins/README.md b/docs/docs/auto-docs/screens/OrganizationFundCampaign/OrganizationFundCampagins/README.md deleted file mode 100644 index abc8fb7652..0000000000 --- a/docs/docs/auto-docs/screens/OrganizationFundCampaign/OrganizationFundCampagins/README.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / screens/OrganizationFundCampaign/OrganizationFundCampagins - -# screens/OrganizationFundCampaign/OrganizationFundCampagins - -## Functions - -- [default](functions/default.md) diff --git a/docs/docs/auto-docs/screens/OrganizationFundCampaign/OrganizationFundCampagins/functions/default.md b/docs/docs/auto-docs/screens/OrganizationFundCampaign/OrganizationFundCampagins/functions/default.md deleted file mode 100644 index 1e5f5bfcdd..0000000000 --- a/docs/docs/auto-docs/screens/OrganizationFundCampaign/OrganizationFundCampagins/functions/default.md +++ /dev/null @@ -1,45 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [screens/OrganizationFundCampaign/OrganizationFundCampagins](../README.md) / default - -# Function: default() - -> **default**(): `Element` - -Defined in: [src/screens/OrganizationFundCampaign/OrganizationFundCampagins.tsx:78](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/OrganizationFundCampaign/OrganizationFundCampagins.tsx#L78) - -`orgFundCampaign` component displays a list of fundraising campaigns for a specific fund within an organization. -It allows users to search, sort, view and edit campaigns. - -### Functionality -- Displays a data grid with campaigns information, including their names, start and end dates, funding goals, and actions. -- Provides search functionality to filter campaigns by name. -- Offers sorting options based on funding goal and end date. -- Opens modals for creating or editing campaigns. - -### State -- `campaign`: The current campaign being edited or deleted. -- `searchTerm`: The term used for searching campaigns by name. -- `sortBy`: The current sorting criteria for campaigns. -- `modalState`: An object indicating the visibility of different modals (`same` for create/edit). -- `campaignModalMode`: Determines if the modal is in 'edit' or 'create' mode. - -### Methods -- `handleOpenModal(campaign: InterfaceCampaignInfo | null, mode: 'edit' | 'create')`: Opens the modal for creating or editing a campaign. -- `handleClick(campaignId: string)`: Navigates to the pledge details page for a specific campaign. - -### GraphQL Queries -- Uses `FUND_CAMPAIGN` query to fetch the list of campaigns based on the provided fund ID, search term, and sorting criteria. - -### Rendering -- Renders a `DataGrid` component with campaigns information. -- Displays modals for creating and editing campaigns. -- Shows error and loading states using `Loader` and error message components. - -## Returns - -`Element` - -The rendered component including breadcrumbs, search and filter controls, data grid, and modals. diff --git a/docs/docs/auto-docs/screens/OrganizationFundCampaign/OrganizationFundCampaignMocks/README.md b/docs/docs/auto-docs/screens/OrganizationFundCampaign/OrganizationFundCampaignMocks/README.md deleted file mode 100644 index a5f1934cd0..0000000000 --- a/docs/docs/auto-docs/screens/OrganizationFundCampaign/OrganizationFundCampaignMocks/README.md +++ /dev/null @@ -1,13 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / screens/OrganizationFundCampaign/OrganizationFundCampaignMocks - -# screens/OrganizationFundCampaign/OrganizationFundCampaignMocks - -## Variables - -- [EMPTY\_MOCKS](variables/EMPTY_MOCKS.md) -- [MOCK\_ERROR](variables/MOCK_ERROR.md) -- [MOCKS](variables/MOCKS.md) diff --git a/docs/docs/auto-docs/screens/OrganizationFundCampaign/OrganizationFundCampaignMocks/variables/EMPTY_MOCKS.md b/docs/docs/auto-docs/screens/OrganizationFundCampaign/OrganizationFundCampaignMocks/variables/EMPTY_MOCKS.md deleted file mode 100644 index 8b19137e98..0000000000 --- a/docs/docs/auto-docs/screens/OrganizationFundCampaign/OrganizationFundCampaignMocks/variables/EMPTY_MOCKS.md +++ /dev/null @@ -1,65 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [screens/OrganizationFundCampaign/OrganizationFundCampaignMocks](../README.md) / EMPTY\_MOCKS - -# Variable: EMPTY\_MOCKS - -> `const` **EMPTY\_MOCKS**: `object`[] - -Defined in: [src/screens/OrganizationFundCampaign/OrganizationFundCampaignMocks.ts:300](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/OrganizationFundCampaign/OrganizationFundCampaignMocks.ts#L300) - -## Type declaration - -### request - -> **request**: `object` - -#### request.query - -> **query**: `DocumentNode` = `FUND_CAMPAIGN` - -#### request.variables - -> **variables**: `object` - -#### request.variables.id - -> **id**: `string` = `'fundId'` - -#### request.variables.orderBy - -> **orderBy**: `null` = `null` - -#### request.variables.where - -> **where**: `object` - -#### request.variables.where.name\_contains - -> **name\_contains**: `string` = `''` - -### result - -> **result**: `object` - -#### result.data - -> **data**: `object` - -#### result.data.getFundById - -> **getFundById**: `object` - -#### result.data.getFundById.campaigns - -> **campaigns**: `never`[] = `[]` - -#### result.data.getFundById.isArchived - -> **isArchived**: `boolean` = `false` - -#### result.data.getFundById.name - -> **name**: `string` = `'Fund 1'` diff --git a/docs/docs/auto-docs/screens/OrganizationFundCampaign/OrganizationFundCampaignMocks/variables/MOCKS.md b/docs/docs/auto-docs/screens/OrganizationFundCampaign/OrganizationFundCampaignMocks/variables/MOCKS.md deleted file mode 100644 index 88cf51758b..0000000000 --- a/docs/docs/auto-docs/screens/OrganizationFundCampaign/OrganizationFundCampaignMocks/variables/MOCKS.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [screens/OrganizationFundCampaign/OrganizationFundCampaignMocks](../README.md) / MOCKS - -# Variable: MOCKS - -> `const` **MOCKS**: (\{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `currency`: `undefined`; `endDate`: `undefined`; `fundId`: `undefined`; `fundingGoal`: `undefined`; `id`: `string`; `name`: `undefined`; `orderBy`: `null`; `organizationId`: `undefined`; `startDate`: `undefined`; `where`: \{ `name_contains`: `string`; \}; \}; \}; `result`: \{ `data`: \{ `createFundraisingCampaign`: `undefined`; `getFundById`: \{ `campaigns`: `object`[]; `isArchived`: `boolean`; `name`: `string`; \}; `updateFundraisingCampaign`: `undefined`; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `currency`: `undefined`; `endDate`: `undefined`; `fundId`: `undefined`; `fundingGoal`: `undefined`; `id`: `string`; `name`: `undefined`; `orderBy`: `string`; `organizationId`: `undefined`; `startDate`: `undefined`; `where`: \{ `name_contains`: `string`; \}; \}; \}; `result`: \{ `data`: \{ `createFundraisingCampaign`: `undefined`; `getFundById`: \{ `campaigns`: `object`[]; `isArchived`: `boolean`; `name`: `string`; \}; `updateFundraisingCampaign`: `undefined`; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `currency`: `string`; `endDate`: `string`; `fundId`: `string`; `fundingGoal`: `number`; `id`: `undefined`; `name`: `string`; `orderBy`: `undefined`; `organizationId`: `string`; `startDate`: `string`; `where`: `undefined`; \}; \}; `result`: \{ `data`: \{ `createFundraisingCampaign`: \{ `_id`: `string`; \}; `getFundById`: `undefined`; `updateFundraisingCampaign`: `undefined`; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `currency`: `undefined`; `endDate`: `string`; `fundId`: `undefined`; `fundingGoal`: `number`; `id`: `string`; `name`: `string`; `orderBy`: `undefined`; `organizationId`: `undefined`; `startDate`: `string`; `where`: `undefined`; \}; \}; `result`: \{ `data`: \{ `createFundraisingCampaign`: `undefined`; `getFundById`: `undefined`; `updateFundraisingCampaign`: \{ `_id`: `string`; \}; \}; \}; \})[] - -Defined in: [src/screens/OrganizationFundCampaign/OrganizationFundCampaignMocks.ts:7](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/OrganizationFundCampaign/OrganizationFundCampaignMocks.ts#L7) diff --git a/docs/docs/auto-docs/screens/OrganizationFundCampaign/OrganizationFundCampaignMocks/variables/MOCK_ERROR.md b/docs/docs/auto-docs/screens/OrganizationFundCampaign/OrganizationFundCampaignMocks/variables/MOCK_ERROR.md deleted file mode 100644 index 6c483d9610..0000000000 --- a/docs/docs/auto-docs/screens/OrganizationFundCampaign/OrganizationFundCampaignMocks/variables/MOCK_ERROR.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [screens/OrganizationFundCampaign/OrganizationFundCampaignMocks](../README.md) / MOCK\_ERROR - -# Variable: MOCK\_ERROR - -> `const` **MOCK\_ERROR**: (\{ `error`: `Error`; `request`: \{ `query`: `DocumentNode`; `variables`: \{ `currency`: `undefined`; `endDate`: `undefined`; `fundId`: `undefined`; `fundingGoal`: `undefined`; `id`: `string`; `name`: `undefined`; `orderBy`: `null`; `organizationId`: `undefined`; `startDate`: `undefined`; `where`: \{ `name_contains`: `string`; \}; \}; \}; \} \| \{ `error`: `Error`; `request`: \{ `query`: `DocumentNode`; `variables`: \{ `currency`: `string`; `endDate`: `string`; `fundId`: `string`; `fundingGoal`: `number`; `id`: `undefined`; `name`: `string`; `orderBy`: `undefined`; `organizationId`: `string`; `startDate`: `string`; `where`: `undefined`; \}; \}; \} \| \{ `error`: `Error`; `request`: \{ `query`: `DocumentNode`; `variables`: \{ `currency`: `undefined`; `endDate`: `string`; `fundId`: `undefined`; `fundingGoal`: `number`; `id`: `string`; `name`: `string`; `orderBy`: `undefined`; `organizationId`: `undefined`; `startDate`: `string`; `where`: `undefined`; \}; \}; \})[] - -Defined in: [src/screens/OrganizationFundCampaign/OrganizationFundCampaignMocks.ts:258](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/OrganizationFundCampaign/OrganizationFundCampaignMocks.ts#L258) diff --git a/docs/docs/auto-docs/screens/OrganizationFunds/FundModal/README.md b/docs/docs/auto-docs/screens/OrganizationFunds/FundModal/README.md deleted file mode 100644 index 02806e0e2b..0000000000 --- a/docs/docs/auto-docs/screens/OrganizationFunds/FundModal/README.md +++ /dev/null @@ -1,15 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / screens/OrganizationFunds/FundModal - -# screens/OrganizationFunds/FundModal - -## Interfaces - -- [InterfaceFundModal](interfaces/InterfaceFundModal.md) - -## Functions - -- [default](functions/default.md) diff --git a/docs/docs/auto-docs/screens/OrganizationFunds/FundModal/functions/default.md b/docs/docs/auto-docs/screens/OrganizationFunds/FundModal/functions/default.md deleted file mode 100644 index c25bfa8324..0000000000 --- a/docs/docs/auto-docs/screens/OrganizationFunds/FundModal/functions/default.md +++ /dev/null @@ -1,59 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [screens/OrganizationFunds/FundModal](../README.md) / default - -# Function: default() - -> **default**(`props`, `deprecatedLegacyContext`?): `ReactNode` - -Defined in: [src/screens/OrganizationFunds/FundModal.tsx:52](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/OrganizationFunds/FundModal.tsx#L52) - -`FundModal` component provides a modal dialog for creating or editing a fund. -It allows users to input fund details and submit them to the server. - -This component handles both the creation of new funds and the editing of existing funds, -based on the `mode` prop. It displays a form with fields for the fund's name, description, -and other relevant details. Upon submission, it interacts with the GraphQL API to save -or update the fund details and triggers a refetch of the fund data. - -### Props -- `isOpen`: A boolean indicating whether the modal is open or closed. -- `hide`: A function to close the modal. -- `refetchFunds`: A function to refetch the fund list after a successful operation. -- `fund`: The current fund object being edited or `null` if creating a new fund. -- `orgId`: The ID of the organization to which the fund belongs. -- `mode`: The mode of the modal, either 'edit' or 'create'. - -### State -- `name`: The name of the fund. -- `description`: The description of the fund. -- `amount`: The amount associated with the fund. -- `status`: The status of the fund (e.g., active, archived). - -### Methods -- `handleSubmit()`: Handles form submission, creates or updates the fund, and triggers a refetch of the fund list. -- `handleChange(event: React.ChangeEvent)`: Updates the state based on user input. - -## Parameters - -### props - -[`InterfaceFundModal`](../interfaces/InterfaceFundModal.md) - -### deprecatedLegacyContext? - -`any` - -**Deprecated** - -**See** - -[React Docs](https://legacy.reactjs.org/docs/legacy-context.html#referencing-context-in-lifecycle-methods) - -## Returns - -`ReactNode` - -The rendered modal dialog. diff --git a/docs/docs/auto-docs/screens/OrganizationFunds/FundModal/interfaces/InterfaceFundModal.md b/docs/docs/auto-docs/screens/OrganizationFunds/FundModal/interfaces/InterfaceFundModal.md deleted file mode 100644 index e8eee4cd0a..0000000000 --- a/docs/docs/auto-docs/screens/OrganizationFunds/FundModal/interfaces/InterfaceFundModal.md +++ /dev/null @@ -1,65 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [screens/OrganizationFunds/FundModal](../README.md) / InterfaceFundModal - -# Interface: InterfaceFundModal - -Defined in: [src/screens/OrganizationFunds/FundModal.tsx:15](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/OrganizationFunds/FundModal.tsx#L15) - -## Properties - -### fund - -> **fund**: `null` \| [`InterfaceFundInfo`](../../../../utils/interfaces/interfaces/InterfaceFundInfo.md) - -Defined in: [src/screens/OrganizationFunds/FundModal.tsx:19](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/OrganizationFunds/FundModal.tsx#L19) - -*** - -### hide() - -> **hide**: () => `void` - -Defined in: [src/screens/OrganizationFunds/FundModal.tsx:17](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/OrganizationFunds/FundModal.tsx#L17) - -#### Returns - -`void` - -*** - -### isOpen - -> **isOpen**: `boolean` - -Defined in: [src/screens/OrganizationFunds/FundModal.tsx:16](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/OrganizationFunds/FundModal.tsx#L16) - -*** - -### mode - -> **mode**: `"create"` \| `"edit"` - -Defined in: [src/screens/OrganizationFunds/FundModal.tsx:21](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/OrganizationFunds/FundModal.tsx#L21) - -*** - -### orgId - -> **orgId**: `string` - -Defined in: [src/screens/OrganizationFunds/FundModal.tsx:20](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/OrganizationFunds/FundModal.tsx#L20) - -*** - -### refetchFunds() - -> **refetchFunds**: () => `void` - -Defined in: [src/screens/OrganizationFunds/FundModal.tsx:18](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/OrganizationFunds/FundModal.tsx#L18) - -#### Returns - -`void` diff --git a/docs/docs/auto-docs/screens/OrganizationFunds/OrganizationFunds/README.md b/docs/docs/auto-docs/screens/OrganizationFunds/OrganizationFunds/README.md deleted file mode 100644 index a719090f79..0000000000 --- a/docs/docs/auto-docs/screens/OrganizationFunds/OrganizationFunds/README.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / screens/OrganizationFunds/OrganizationFunds - -# screens/OrganizationFunds/OrganizationFunds - -## Functions - -- [default](functions/default.md) diff --git a/docs/docs/auto-docs/screens/OrganizationFunds/OrganizationFunds/functions/default.md b/docs/docs/auto-docs/screens/OrganizationFunds/OrganizationFunds/functions/default.md deleted file mode 100644 index ad5251ddc6..0000000000 --- a/docs/docs/auto-docs/screens/OrganizationFunds/OrganizationFunds/functions/default.md +++ /dev/null @@ -1,48 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [screens/OrganizationFunds/OrganizationFunds](../README.md) / default - -# Function: default() - -> **default**(): `Element` - -Defined in: [src/screens/OrganizationFunds/OrganizationFunds.tsx:79](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/OrganizationFunds/OrganizationFunds.tsx#L79) - -`organizationFunds` component displays a list of funds for a specific organization, -allowing users to search, sort, view and edit funds. - -This component utilizes the `DataGrid` from Material-UI to present the list of funds in a tabular format, -and includes functionality for filtering and sorting. It also handles the opening and closing of modals -for creating and editing. - -It includes: -- A search input field to filter funds by name. -- A dropdown menu to sort funds by creation date. -- A button to create a new fund. -- A table to display the list of funds with columns for fund details and actions. -- Modals for creating and editing funds. - -### GraphQL Queries -- `FUND_LIST`: Fetches a list of funds for the given organization, filtered and sorted based on the provided parameters. - -### Props -- `orgId`: The ID of the organization whose funds are being managed. - -### State -- `fund`: The currently selected fund for editing or deletion. -- `searchTerm`: The current search term used for filtering funds. -- `sortBy`: The current sorting order for funds. -- `modalState`: The state of the modals (edit/create). -- `fundModalMode`: The mode of the fund modal (edit or create). - -### Methods -- `handleOpenModal(fund: InterfaceFundInfo | null, mode: 'edit' | 'create')`: Opens the fund modal with the given fund and mode. -- `handleClick(fundId: string)`: Navigates to the campaign page for the specified fund. - -## Returns - -`Element` - -The rendered component. diff --git a/docs/docs/auto-docs/screens/OrganizationFunds/OrganizationFundsMocks/README.md b/docs/docs/auto-docs/screens/OrganizationFunds/OrganizationFundsMocks/README.md deleted file mode 100644 index f62f2feafd..0000000000 --- a/docs/docs/auto-docs/screens/OrganizationFunds/OrganizationFundsMocks/README.md +++ /dev/null @@ -1,13 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / screens/OrganizationFunds/OrganizationFundsMocks - -# screens/OrganizationFunds/OrganizationFundsMocks - -## Variables - -- [MOCKS](variables/MOCKS.md) -- [MOCKS\_ERROR](variables/MOCKS_ERROR.md) -- [NO\_FUNDS](variables/NO_FUNDS.md) diff --git a/docs/docs/auto-docs/screens/OrganizationFunds/OrganizationFundsMocks/variables/MOCKS.md b/docs/docs/auto-docs/screens/OrganizationFunds/OrganizationFundsMocks/variables/MOCKS.md deleted file mode 100644 index 6b36e6f591..0000000000 --- a/docs/docs/auto-docs/screens/OrganizationFunds/OrganizationFundsMocks/variables/MOCKS.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [screens/OrganizationFunds/OrganizationFundsMocks](../README.md) / MOCKS - -# Variable: MOCKS - -> `const` **MOCKS**: (\{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `filter`: `string`; `id`: `undefined`; `isArchived`: `undefined`; `isDefault`: `undefined`; `name`: `undefined`; `orderBy`: `string`; `organizationId`: `string`; `refrenceNumber`: `undefined`; `taxDeductible`: `undefined`; \}; \}; `result`: \{ `data`: \{ `createFund`: `undefined`; `fundsByOrganization`: `object`[]; `updateFund`: `undefined`; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `filter`: `undefined`; `id`: `undefined`; `isArchived`: `boolean`; `isDefault`: `boolean`; `name`: `string`; `orderBy`: `undefined`; `organizationId`: `string`; `refrenceNumber`: `string`; `taxDeductible`: `boolean`; \}; \}; `result`: \{ `data`: \{ `createFund`: \{ `_id`: `string`; \}; `fundsByOrganization`: `undefined`; `updateFund`: `undefined`; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `filter`: `undefined`; `id`: `string`; `isArchived`: `boolean`; `isDefault`: `boolean`; `name`: `string`; `orderBy`: `undefined`; `organizationId`: `undefined`; `refrenceNumber`: `string`; `taxDeductible`: `boolean`; \}; \}; `result`: \{ `data`: \{ `createFund`: `undefined`; `fundsByOrganization`: `undefined`; `updateFund`: \{ `_id`: `string`; \}; \}; \}; \})[] - -Defined in: [src/screens/OrganizationFunds/OrganizationFundsMocks.ts:7](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/OrganizationFunds/OrganizationFundsMocks.ts#L7) diff --git a/docs/docs/auto-docs/screens/OrganizationFunds/OrganizationFundsMocks/variables/MOCKS_ERROR.md b/docs/docs/auto-docs/screens/OrganizationFunds/OrganizationFundsMocks/variables/MOCKS_ERROR.md deleted file mode 100644 index aa3ec4bfa0..0000000000 --- a/docs/docs/auto-docs/screens/OrganizationFunds/OrganizationFundsMocks/variables/MOCKS_ERROR.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [screens/OrganizationFunds/OrganizationFundsMocks](../README.md) / MOCKS\_ERROR - -# Variable: MOCKS\_ERROR - -> `const` **MOCKS\_ERROR**: (\{ `error`: `Error`; `request`: \{ `query`: `DocumentNode`; `variables`: \{ `filter`: `string`; `id`: `undefined`; `isArchived`: `undefined`; `isDefault`: `undefined`; `name`: `undefined`; `orderBy`: `string`; `organizationId`: `string`; `refrenceNumber`: `undefined`; `taxDeductible`: `undefined`; \}; \}; \} \| \{ `error`: `Error`; `request`: \{ `query`: `DocumentNode`; `variables`: \{ `filter`: `undefined`; `id`: `undefined`; `isArchived`: `boolean`; `isDefault`: `boolean`; `name`: `string`; `orderBy`: `undefined`; `organizationId`: `string`; `refrenceNumber`: `string`; `taxDeductible`: `boolean`; \}; \}; \} \| \{ `error`: `Error`; `request`: \{ `query`: `DocumentNode`; `variables`: \{ `filter`: `undefined`; `id`: `string`; `isArchived`: `boolean`; `isDefault`: `boolean`; `name`: `string`; `orderBy`: `undefined`; `organizationId`: `undefined`; `refrenceNumber`: `string`; `taxDeductible`: `boolean`; \}; \}; \})[] - -Defined in: [src/screens/OrganizationFunds/OrganizationFundsMocks.ts:191](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/OrganizationFunds/OrganizationFundsMocks.ts#L191) diff --git a/docs/docs/auto-docs/screens/OrganizationFunds/OrganizationFundsMocks/variables/NO_FUNDS.md b/docs/docs/auto-docs/screens/OrganizationFunds/OrganizationFundsMocks/variables/NO_FUNDS.md deleted file mode 100644 index 23c82fd9c9..0000000000 --- a/docs/docs/auto-docs/screens/OrganizationFunds/OrganizationFundsMocks/variables/NO_FUNDS.md +++ /dev/null @@ -1,49 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [screens/OrganizationFunds/OrganizationFundsMocks](../README.md) / NO\_FUNDS - -# Variable: NO\_FUNDS - -> `const` **NO\_FUNDS**: `object`[] - -Defined in: [src/screens/OrganizationFunds/OrganizationFundsMocks.ts:173](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/OrganizationFunds/OrganizationFundsMocks.ts#L173) - -## Type declaration - -### request - -> **request**: `object` - -#### request.query - -> **query**: `DocumentNode` = `FUND_LIST` - -#### request.variables - -> **variables**: `object` - -#### request.variables.filter - -> **filter**: `string` = `''` - -#### request.variables.orderBy - -> **orderBy**: `string` = `'createdAt_DESC'` - -#### request.variables.organizationId - -> **organizationId**: `string` = `'orgId'` - -### result - -> **result**: `object` - -#### result.data - -> **data**: `object` - -#### result.data.fundsByOrganization - -> **fundsByOrganization**: `never`[] = `[]` diff --git a/docs/docs/auto-docs/screens/OrganizationPeople/AddMember/README.md b/docs/docs/auto-docs/screens/OrganizationPeople/AddMember/README.md deleted file mode 100644 index df9c166c1f..0000000000 --- a/docs/docs/auto-docs/screens/OrganizationPeople/AddMember/README.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / screens/OrganizationPeople/AddMember - -# screens/OrganizationPeople/AddMember - -## Functions - -- [default](functions/default.md) diff --git a/docs/docs/auto-docs/screens/OrganizationPeople/AddMember/functions/default.md b/docs/docs/auto-docs/screens/OrganizationPeople/AddMember/functions/default.md deleted file mode 100644 index c44866a13c..0000000000 --- a/docs/docs/auto-docs/screens/OrganizationPeople/AddMember/functions/default.md +++ /dev/null @@ -1,23 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [screens/OrganizationPeople/AddMember](../README.md) / default - -# Function: default() - -> **default**(): `JSX.Element` - -Defined in: [src/screens/OrganizationPeople/AddMember.tsx:62](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/OrganizationPeople/AddMember.tsx#L62) - -AddMember component is used to add new members to the organization by selecting from -the existing users or creating a new user. -It uses the following queries and mutations: - ORGANIZATIONS_LIST, - ORGANIZATIONS_MEMBER_CONNECTION_LIST, - USERS_CONNECTION_LIST, - ADD_MEMBER_MUTATION,SIGNUP_MUTATION. - -## Returns - -`JSX.Element` diff --git a/docs/docs/auto-docs/screens/OrganizationPeople/MockDataTypes/README.md b/docs/docs/auto-docs/screens/OrganizationPeople/MockDataTypes/README.md deleted file mode 100644 index 361f573582..0000000000 --- a/docs/docs/auto-docs/screens/OrganizationPeople/MockDataTypes/README.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / screens/OrganizationPeople/MockDataTypes - -# screens/OrganizationPeople/MockDataTypes - -## Type Aliases - -- [TestMock](type-aliases/TestMock.md) diff --git a/docs/docs/auto-docs/screens/OrganizationPeople/MockDataTypes/type-aliases/TestMock.md b/docs/docs/auto-docs/screens/OrganizationPeople/MockDataTypes/type-aliases/TestMock.md deleted file mode 100644 index e7b9e002bb..0000000000 --- a/docs/docs/auto-docs/screens/OrganizationPeople/MockDataTypes/type-aliases/TestMock.md +++ /dev/null @@ -1,153 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [screens/OrganizationPeople/MockDataTypes](../README.md) / TestMock - -# Type Alias: TestMock - -> **TestMock**: `object` - -Defined in: [src/screens/OrganizationPeople/MockDataTypes.ts:34](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/OrganizationPeople/MockDataTypes.ts#L34) - -## Type declaration - -### newData()? - -> `optional` **newData**: () => [`TestMock`](TestMock.md)\[`"result"`\] - -#### Returns - -[`TestMock`](TestMock.md)\[`"result"`\] - -### request - -> **request**: `object` - -#### request.query - -> **query**: `DocumentNode` - -#### request.variables - -> **variables**: `object` - -#### request.variables.email? - -> `optional` **email**: `string` - -#### request.variables.firstName? - -> `optional` **firstName**: `string` - -#### request.variables.firstName\_contains? - -> `optional` **firstName\_contains**: `string` - -#### request.variables.firstNameContains? - -> `optional` **firstNameContains**: `string` - -#### request.variables.id? - -> `optional` **id**: `string` - -#### request.variables.id\_not\_in? - -> `optional` **id\_not\_in**: `string`[] - -#### request.variables.lastName? - -> `optional` **lastName**: `string` - -#### request.variables.lastName\_contains? - -> `optional` **lastName\_contains**: `string` - -#### request.variables.lastNameContains? - -> `optional` **lastNameContains**: `string` - -#### request.variables.orgid? - -> `optional` **orgid**: `string` - -#### request.variables.orgId? - -> `optional` **orgId**: `string` - -#### request.variables.password? - -> `optional` **password**: `string` - -#### request.variables.userid? - -> `optional` **userid**: `string` - -### result - -> **result**: `object` - -#### result.\_\_typename? - -> `optional` **\_\_typename**: `string` - -#### result.data - -> **data**: `object` - -#### result.data.\_\_typename? - -> `optional` **\_\_typename**: `string` - -#### result.data.createMember? - -> `optional` **createMember**: `object` - -#### result.data.createMember.\_\_typename - -> **\_\_typename**: `string` - -#### result.data.createMember.\_id - -> **\_id**: `string` - -#### result.data.organizations? - -> `optional` **organizations**: [`InterfaceQueryOrganizationsListObject`](../../../../utils/interfaces/interfaces/InterfaceQueryOrganizationsListObject.md)[] - -#### result.data.organizationsMemberConnection? - -> `optional` **organizationsMemberConnection**: `object` - -#### result.data.organizationsMemberConnection.edges? - -> `optional` **edges**: `Edge`[] - -#### result.data.organizationsMemberConnection.user? - -> `optional` **user**: `Edge`[] - -#### result.data.signUp? - -> `optional` **signUp**: `object` - -#### result.data.signUp.accessToken? - -> `optional` **accessToken**: `string` - -#### result.data.signUp.refreshToken? - -> `optional` **refreshToken**: `string` - -#### result.data.signUp.user? - -> `optional` **user**: `object` - -#### result.data.signUp.user.\_id - -> **\_id**: `string` - -#### result.data.users? - -> `optional` **users**: `object`[] diff --git a/docs/docs/auto-docs/screens/OrganizationPeople/OrganizationPeople/README.md b/docs/docs/auto-docs/screens/OrganizationPeople/OrganizationPeople/README.md deleted file mode 100644 index 77578fc43c..0000000000 --- a/docs/docs/auto-docs/screens/OrganizationPeople/OrganizationPeople/README.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / screens/OrganizationPeople/OrganizationPeople - -# screens/OrganizationPeople/OrganizationPeople - -## Functions - -- [default](functions/default.md) diff --git a/docs/docs/auto-docs/screens/OrganizationPeople/OrganizationPeople/functions/default.md b/docs/docs/auto-docs/screens/OrganizationPeople/OrganizationPeople/functions/default.md deleted file mode 100644 index 7355f289cb..0000000000 --- a/docs/docs/auto-docs/screens/OrganizationPeople/OrganizationPeople/functions/default.md +++ /dev/null @@ -1,21 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [screens/OrganizationPeople/OrganizationPeople](../README.md) / default - -# Function: default() - -> **default**(): `JSX.Element` - -Defined in: [src/screens/OrganizationPeople/OrganizationPeople.tsx:31](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/OrganizationPeople/OrganizationPeople.tsx#L31) - -OrganizationPeople component is used to display the list of members, admins and users of the organization. -It also provides the functionality to search the members, admins and users by their full name. -It also provides the functionality to remove the members and admins from the organization. - -## Returns - -`JSX.Element` - -JSX.Element which contains the list of members, admins and users of the organization. diff --git a/docs/docs/auto-docs/screens/OrganizationTags/OrganizationTags/README.md b/docs/docs/auto-docs/screens/OrganizationTags/OrganizationTags/README.md deleted file mode 100644 index baa960732c..0000000000 --- a/docs/docs/auto-docs/screens/OrganizationTags/OrganizationTags/README.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / screens/OrganizationTags/OrganizationTags - -# screens/OrganizationTags/OrganizationTags - -## Functions - -- [default](functions/default.md) diff --git a/docs/docs/auto-docs/screens/OrganizationTags/OrganizationTags/functions/default.md b/docs/docs/auto-docs/screens/OrganizationTags/OrganizationTags/functions/default.md deleted file mode 100644 index 9cb2b7f98f..0000000000 --- a/docs/docs/auto-docs/screens/OrganizationTags/OrganizationTags/functions/default.md +++ /dev/null @@ -1,20 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [screens/OrganizationTags/OrganizationTags](../README.md) / default - -# Function: default() - -> **default**(): `JSX.Element` - -Defined in: [src/screens/OrganizationTags/OrganizationTags.tsx:39](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/OrganizationTags/OrganizationTags.tsx#L39) - -Component that renders the Organization Tags screen when the app navigates to '/orgtags/:orgId'. - -This component does not accept any props and is responsible for displaying -the content associated with the corresponding route. - -## Returns - -`JSX.Element` diff --git a/docs/docs/auto-docs/screens/OrganizationTags/OrganizationTagsMocks/README.md b/docs/docs/auto-docs/screens/OrganizationTags/OrganizationTagsMocks/README.md deleted file mode 100644 index 493d797555..0000000000 --- a/docs/docs/auto-docs/screens/OrganizationTags/OrganizationTagsMocks/README.md +++ /dev/null @@ -1,12 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / screens/OrganizationTags/OrganizationTagsMocks - -# screens/OrganizationTags/OrganizationTagsMocks - -## Variables - -- [MOCKS](variables/MOCKS.md) -- [MOCKS\_ERROR](variables/MOCKS_ERROR.md) diff --git a/docs/docs/auto-docs/screens/OrganizationTags/OrganizationTagsMocks/variables/MOCKS.md b/docs/docs/auto-docs/screens/OrganizationTags/OrganizationTagsMocks/variables/MOCKS.md deleted file mode 100644 index d00e7afd19..0000000000 --- a/docs/docs/auto-docs/screens/OrganizationTags/OrganizationTagsMocks/variables/MOCKS.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [screens/OrganizationTags/OrganizationTagsMocks](../README.md) / MOCKS - -# Variable: MOCKS - -> `const` **MOCKS**: (\{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `after`: `undefined`; `first`: `number`; `id`: `string`; `name`: `undefined`; `organizationId`: `undefined`; `sortedBy`: \{ `id`: `string`; \}; `where`: \{ `name`: \{ `starts_with`: `string`; \}; \}; \}; \}; `result`: \{ `data`: \{ `createUserTag`: `undefined`; `organizations`: `object`[]; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `after`: `string`; `first`: `number`; `id`: `string`; `name`: `undefined`; `organizationId`: `undefined`; `sortedBy`: \{ `id`: `string`; \}; `where`: \{ `name`: \{ `starts_with`: `string`; \}; \}; \}; \}; `result`: \{ `data`: \{ `createUserTag`: `undefined`; `organizations`: `object`[]; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `after`: `undefined`; `first`: `number`; `id`: `string`; `name`: `undefined`; `organizationId`: `undefined`; `sortedBy`: \{ `id`: `string`; \}; `where`: \{ `name`: \{ `starts_with`: `string`; \}; \}; \}; \}; `result`: \{ `data`: \{ `createUserTag`: `undefined`; `organizations`: `object`[]; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `after`: `undefined`; `first`: `undefined`; `id`: `undefined`; `name`: `string`; `organizationId`: `string`; `sortedBy`: `undefined`; `where`: `undefined`; \}; \}; `result`: \{ `data`: \{ `createUserTag`: \{ `_id`: `string`; \}; `organizations`: `undefined`; \}; \}; \})[] - -Defined in: [src/screens/OrganizationTags/OrganizationTagsMocks.ts:5](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/OrganizationTags/OrganizationTagsMocks.ts#L5) diff --git a/docs/docs/auto-docs/screens/OrganizationTags/OrganizationTagsMocks/variables/MOCKS_ERROR.md b/docs/docs/auto-docs/screens/OrganizationTags/OrganizationTagsMocks/variables/MOCKS_ERROR.md deleted file mode 100644 index 6041ebe1f9..0000000000 --- a/docs/docs/auto-docs/screens/OrganizationTags/OrganizationTagsMocks/variables/MOCKS_ERROR.md +++ /dev/null @@ -1,57 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [screens/OrganizationTags/OrganizationTagsMocks](../README.md) / MOCKS\_ERROR - -# Variable: MOCKS\_ERROR - -> `const` **MOCKS\_ERROR**: `object`[] - -Defined in: [src/screens/OrganizationTags/OrganizationTagsMocks.ts:413](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/OrganizationTags/OrganizationTagsMocks.ts#L413) - -## Type declaration - -### error - -> **error**: `Error` - -### request - -> **request**: `object` - -#### request.query - -> **query**: `DocumentNode` = `ORGANIZATION_USER_TAGS_LIST` - -#### request.variables - -> **variables**: `object` - -#### request.variables.first - -> **first**: `number` = `TAGS_QUERY_DATA_CHUNK_SIZE` - -#### request.variables.id - -> **id**: `string` = `'orgId'` - -#### request.variables.sortedBy - -> **sortedBy**: `object` - -#### request.variables.sortedBy.id - -> **id**: `string` = `'DESCENDING'` - -#### request.variables.where - -> **where**: `object` - -#### request.variables.where.name - -> **name**: `object` - -#### request.variables.where.name.starts\_with - -> **starts\_with**: `string` = `''` diff --git a/docs/docs/auto-docs/screens/OrganizationVenues/OrganizationVenues/README.md b/docs/docs/auto-docs/screens/OrganizationVenues/OrganizationVenues/README.md deleted file mode 100644 index dfc4287d24..0000000000 --- a/docs/docs/auto-docs/screens/OrganizationVenues/OrganizationVenues/README.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / screens/OrganizationVenues/OrganizationVenues - -# screens/OrganizationVenues/OrganizationVenues - -## Functions - -- [default](functions/default.md) diff --git a/docs/docs/auto-docs/screens/OrganizationVenues/OrganizationVenues/functions/default.md b/docs/docs/auto-docs/screens/OrganizationVenues/OrganizationVenues/functions/default.md deleted file mode 100644 index 358217ac54..0000000000 --- a/docs/docs/auto-docs/screens/OrganizationVenues/OrganizationVenues/functions/default.md +++ /dev/null @@ -1,18 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [screens/OrganizationVenues/OrganizationVenues](../README.md) / default - -# Function: default() - -> **default**(): `JSX.Element` - -Defined in: [src/screens/OrganizationVenues/OrganizationVenues.tsx:23](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/OrganizationVenues/OrganizationVenues.tsx#L23) - -Component to manage and display the list of organization venues. -Handles searching, sorting, and CRUD operations for venues. - -## Returns - -`JSX.Element` diff --git a/docs/docs/auto-docs/screens/PageNotFound/PageNotFound/README.md b/docs/docs/auto-docs/screens/PageNotFound/PageNotFound/README.md deleted file mode 100644 index 429e758991..0000000000 --- a/docs/docs/auto-docs/screens/PageNotFound/PageNotFound/README.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / screens/PageNotFound/PageNotFound - -# screens/PageNotFound/PageNotFound - -## Functions - -- [default](functions/default.md) diff --git a/docs/docs/auto-docs/screens/PageNotFound/PageNotFound/functions/default.md b/docs/docs/auto-docs/screens/PageNotFound/PageNotFound/functions/default.md deleted file mode 100644 index 8d931fce3d..0000000000 --- a/docs/docs/auto-docs/screens/PageNotFound/PageNotFound/functions/default.md +++ /dev/null @@ -1,19 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [screens/PageNotFound/PageNotFound](../README.md) / default - -# Function: default() - -> **default**(): `Element` - -Defined in: [src/screens/PageNotFound/PageNotFound.tsx:15](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/PageNotFound/PageNotFound.tsx#L15) - -The `PageNotFound` component displays a 404 error page when a user navigates to a non-existent route. -It shows a message indicating that the page was not found and provides a link to redirect users back -to the appropriate home page based on their admin status. - -## Returns - -`Element` diff --git a/docs/docs/auto-docs/screens/Requests/Requests/README.md b/docs/docs/auto-docs/screens/Requests/Requests/README.md deleted file mode 100644 index b20e72c1ef..0000000000 --- a/docs/docs/auto-docs/screens/Requests/Requests/README.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / screens/Requests/Requests - -# screens/Requests/Requests - -## Functions - -- [default](functions/default.md) diff --git a/docs/docs/auto-docs/screens/Requests/Requests/functions/default.md b/docs/docs/auto-docs/screens/Requests/Requests/functions/default.md deleted file mode 100644 index 6cce4ecd74..0000000000 --- a/docs/docs/auto-docs/screens/Requests/Requests/functions/default.md +++ /dev/null @@ -1,18 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [screens/Requests/Requests](../README.md) / default - -# Function: default() - -> **default**(): `Element` - -Defined in: [src/screens/Requests/Requests.tsx:34](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/Requests/Requests.tsx#L34) - -The `Requests` component fetches and displays a paginated list of membership requests -for an organization, with functionality for searching, filtering, and infinite scrolling. - -## Returns - -`Element` diff --git a/docs/docs/auto-docs/screens/Requests/RequestsMocks/README.md b/docs/docs/auto-docs/screens/Requests/RequestsMocks/README.md deleted file mode 100644 index c463ae9308..0000000000 --- a/docs/docs/auto-docs/screens/Requests/RequestsMocks/README.md +++ /dev/null @@ -1,17 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / screens/Requests/RequestsMocks - -# screens/Requests/RequestsMocks - -## Variables - -- [EMPTY\_MOCKS](variables/EMPTY_MOCKS.md) -- [EMPTY\_REQUEST\_MOCKS](variables/EMPTY_REQUEST_MOCKS.md) -- [MOCKS](variables/MOCKS.md) -- [MOCKS\_WITH\_ERROR](variables/MOCKS_WITH_ERROR.md) -- [MOCKS2](variables/MOCKS2.md) -- [MOCKS3](variables/MOCKS3.md) -- [MOCKS4](variables/MOCKS4.md) diff --git a/docs/docs/auto-docs/screens/Requests/RequestsMocks/variables/EMPTY_MOCKS.md b/docs/docs/auto-docs/screens/Requests/RequestsMocks/variables/EMPTY_MOCKS.md deleted file mode 100644 index 25d7d5fbd4..0000000000 --- a/docs/docs/auto-docs/screens/Requests/RequestsMocks/variables/EMPTY_MOCKS.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [screens/Requests/RequestsMocks](../README.md) / EMPTY\_MOCKS - -# Variable: EMPTY\_MOCKS - -> `const` **EMPTY\_MOCKS**: (\{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `first`: `number`; `firstName_contains`: `string`; `id`: `string`; `skip`: `number`; \}; \}; `result`: \{ `data`: \{ `organizations`: `object`[]; `organizationsConnection`: `undefined`; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: `undefined`; \}; `result`: \{ `data`: \{ `organizations`: `undefined`; `organizationsConnection`: `never`[]; \}; \}; \})[] - -Defined in: [src/screens/Requests/RequestsMocks.ts:522](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/Requests/RequestsMocks.ts#L522) diff --git a/docs/docs/auto-docs/screens/Requests/RequestsMocks/variables/EMPTY_REQUEST_MOCKS.md b/docs/docs/auto-docs/screens/Requests/RequestsMocks/variables/EMPTY_REQUEST_MOCKS.md deleted file mode 100644 index 5798a6591d..0000000000 --- a/docs/docs/auto-docs/screens/Requests/RequestsMocks/variables/EMPTY_REQUEST_MOCKS.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [screens/Requests/RequestsMocks](../README.md) / EMPTY\_REQUEST\_MOCKS - -# Variable: EMPTY\_REQUEST\_MOCKS - -> `const` **EMPTY\_REQUEST\_MOCKS**: (\{ `request`: \{ `query`: `DocumentNode`; `variables`: `undefined`; \}; `result`: \{ `data`: \{ `organizations`: `undefined`; `organizationsConnection`: `object`[]; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `first`: `number`; `firstName_contains`: `string`; `id`: `string`; `skip`: `number`; \}; \}; `result`: \{ `data`: \{ `organizations`: `object`[]; `organizationsConnection`: `undefined`; \}; \}; \})[] - -Defined in: [src/screens/Requests/RequestsMocks.ts:6](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/Requests/RequestsMocks.ts#L6) diff --git a/docs/docs/auto-docs/screens/Requests/RequestsMocks/variables/MOCKS.md b/docs/docs/auto-docs/screens/Requests/RequestsMocks/variables/MOCKS.md deleted file mode 100644 index c475c45dc0..0000000000 --- a/docs/docs/auto-docs/screens/Requests/RequestsMocks/variables/MOCKS.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [screens/Requests/RequestsMocks](../README.md) / MOCKS - -# Variable: MOCKS - -> `const` **MOCKS**: (\{ `request`: \{ `query`: `DocumentNode`; `variables`: `undefined`; \}; `result`: \{ `data`: \{ `organizations`: `undefined`; `organizationsConnection`: `object`[]; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `first`: `number`; `firstName_contains`: `string`; `id`: `string`; `skip`: `number`; \}; \}; `result`: \{ `data`: \{ `organizations`: `object`[]; `organizationsConnection`: `undefined`; \}; \}; \})[] - -Defined in: [src/screens/Requests/RequestsMocks.ts:71](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/Requests/RequestsMocks.ts#L71) diff --git a/docs/docs/auto-docs/screens/Requests/RequestsMocks/variables/MOCKS2.md b/docs/docs/auto-docs/screens/Requests/RequestsMocks/variables/MOCKS2.md deleted file mode 100644 index ce6c449b39..0000000000 --- a/docs/docs/auto-docs/screens/Requests/RequestsMocks/variables/MOCKS2.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [screens/Requests/RequestsMocks](../README.md) / MOCKS2 - -# Variable: MOCKS2 - -> `const` **MOCKS2**: (\{ `request`: \{ `query`: `DocumentNode`; `variables`: `undefined`; \}; `result`: \{ `data`: \{ `organizations`: `undefined`; `organizationsConnection`: `object`[]; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `first`: `number`; `firstName_contains`: `string`; `id`: `string`; `skip`: `number`; \}; \}; `result`: \{ `data`: \{ `organizations`: `object`[]; `organizationsConnection`: `undefined`; \}; \}; \})[] - -Defined in: [src/screens/Requests/RequestsMocks.ts:387](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/Requests/RequestsMocks.ts#L387) diff --git a/docs/docs/auto-docs/screens/Requests/RequestsMocks/variables/MOCKS3.md b/docs/docs/auto-docs/screens/Requests/RequestsMocks/variables/MOCKS3.md deleted file mode 100644 index 8a4955e6c0..0000000000 --- a/docs/docs/auto-docs/screens/Requests/RequestsMocks/variables/MOCKS3.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [screens/Requests/RequestsMocks](../README.md) / MOCKS3 - -# Variable: MOCKS3 - -> `const` **MOCKS3**: (\{ `request`: \{ `query`: `DocumentNode`; `variables`: `undefined`; \}; `result`: \{ `data`: \{ `organizations`: `undefined`; `organizationsConnection`: `object`[]; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `first`: `number`; `firstName_contains`: `string`; `id`: `string`; `skip`: `number`; \}; \}; `result`: \{ `data`: \{ `organizations`: `never`[]; `organizationsConnection`: `undefined`; \}; \}; \})[] - -Defined in: [src/screens/Requests/RequestsMocks.ts:462](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/Requests/RequestsMocks.ts#L462) diff --git a/docs/docs/auto-docs/screens/Requests/RequestsMocks/variables/MOCKS4.md b/docs/docs/auto-docs/screens/Requests/RequestsMocks/variables/MOCKS4.md deleted file mode 100644 index e75e07825c..0000000000 --- a/docs/docs/auto-docs/screens/Requests/RequestsMocks/variables/MOCKS4.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [screens/Requests/RequestsMocks](../README.md) / MOCKS4 - -# Variable: MOCKS4 - -> `const` **MOCKS4**: (\{ `request`: \{ `query`: `DocumentNode`; `variables`: `undefined`; \}; `result`: \{ `data`: \{ `organizations`: `undefined`; `organizationsConnection`: `object`[]; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `first`: `number`; `firstName_contains`: `string`; `id`: `string`; `skip`: `number`; \}; \}; `result`: \{ `data`: \{ `organizations`: `object`[]; `organizationsConnection`: `undefined`; \}; \}; \})[] - -Defined in: [src/screens/Requests/RequestsMocks.ts:155](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/Requests/RequestsMocks.ts#L155) diff --git a/docs/docs/auto-docs/screens/Requests/RequestsMocks/variables/MOCKS_WITH_ERROR.md b/docs/docs/auto-docs/screens/Requests/RequestsMocks/variables/MOCKS_WITH_ERROR.md deleted file mode 100644 index cf882dfd60..0000000000 --- a/docs/docs/auto-docs/screens/Requests/RequestsMocks/variables/MOCKS_WITH_ERROR.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [screens/Requests/RequestsMocks](../README.md) / MOCKS\_WITH\_ERROR - -# Variable: MOCKS\_WITH\_ERROR - -> `const` **MOCKS\_WITH\_ERROR**: (\{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `first`: `number`; `firstName_contains`: `string`; `id`: `string`; `skip`: `number`; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: `undefined`; \}; \})[] - -Defined in: [src/screens/Requests/RequestsMocks.ts:556](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/Requests/RequestsMocks.ts#L556) diff --git a/docs/docs/auto-docs/screens/SubTags/SubTags/README.md b/docs/docs/auto-docs/screens/SubTags/SubTags/README.md deleted file mode 100644 index 37ac77a0df..0000000000 --- a/docs/docs/auto-docs/screens/SubTags/SubTags/README.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / screens/SubTags/SubTags - -# screens/SubTags/SubTags - -## Functions - -- [default](functions/default.md) diff --git a/docs/docs/auto-docs/screens/SubTags/SubTags/functions/default.md b/docs/docs/auto-docs/screens/SubTags/SubTags/functions/default.md deleted file mode 100644 index 5712b40a3e..0000000000 --- a/docs/docs/auto-docs/screens/SubTags/SubTags/functions/default.md +++ /dev/null @@ -1,20 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [screens/SubTags/SubTags](../README.md) / default - -# Function: default() - -> **default**(): `JSX.Element` - -Defined in: [src/screens/SubTags/SubTags.tsx:40](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/SubTags/SubTags.tsx#L40) - -Component that renders the SubTags screen when the app navigates to '/orgtags/:orgId/subtags/:tagId'. - -This component does not accept any props and is responsible for displaying -the content associated with the corresponding route. - -## Returns - -`JSX.Element` diff --git a/docs/docs/auto-docs/screens/SubTags/SubTagsMocks/README.md b/docs/docs/auto-docs/screens/SubTags/SubTagsMocks/README.md deleted file mode 100644 index 1d55807317..0000000000 --- a/docs/docs/auto-docs/screens/SubTags/SubTagsMocks/README.md +++ /dev/null @@ -1,12 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / screens/SubTags/SubTagsMocks - -# screens/SubTags/SubTagsMocks - -## Variables - -- [MOCKS](variables/MOCKS.md) -- [MOCKS\_ERROR\_SUB\_TAGS](variables/MOCKS_ERROR_SUB_TAGS.md) diff --git a/docs/docs/auto-docs/screens/SubTags/SubTagsMocks/variables/MOCKS.md b/docs/docs/auto-docs/screens/SubTags/SubTagsMocks/variables/MOCKS.md deleted file mode 100644 index 57aa792a08..0000000000 --- a/docs/docs/auto-docs/screens/SubTags/SubTagsMocks/variables/MOCKS.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [screens/SubTags/SubTagsMocks](../README.md) / MOCKS - -# Variable: MOCKS - -> `const` **MOCKS**: (\{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `after`: `string`; `first`: `number`; `id`: `string`; `name`: `undefined`; `organizationId`: `undefined`; `parentTagId`: `undefined`; `sortedBy`: \{ `id`: `string`; \}; `where`: \{ `name`: \{ `starts_with`: `string`; \}; \}; \}; \}; `result`: \{ `data`: \{ `createUserTag`: `undefined`; `getChildTags`: \{ `ancestorTags`: `never`[]; `childTags`: \{ `edges`: `object`[]; `pageInfo`: \{ `endCursor`: `string`; `hasNextPage`: `boolean`; `hasPreviousPage`: `boolean`; `startCursor`: `string`; \}; `totalCount`: `number`; \}; `name`: `string`; \}; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `after`: `undefined`; `first`: `number`; `id`: `string`; `name`: `undefined`; `organizationId`: `undefined`; `parentTagId`: `undefined`; `sortedBy`: \{ `id`: `string`; \}; `where`: \{ `name`: \{ `starts_with`: `string`; \}; \}; \}; \}; `result`: \{ `data`: \{ `createUserTag`: `undefined`; `getChildTags`: \{ `ancestorTags`: `object`[]; `childTags`: \{ `edges`: `object`[]; `pageInfo`: \{ `endCursor`: `string`; `hasNextPage`: `boolean`; `hasPreviousPage`: `boolean`; `startCursor`: `string`; \}; `totalCount`: `number`; \}; `name`: `string`; \}; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `after`: `undefined`; `first`: `undefined`; `id`: `undefined`; `name`: `string`; `organizationId`: `string`; `parentTagId`: `string`; `sortedBy`: `undefined`; `where`: `undefined`; \}; \}; `result`: \{ `data`: \{ `createUserTag`: \{ `_id`: `string`; \}; `getChildTags`: `undefined`; \}; \}; \})[] - -Defined in: [src/screens/SubTags/SubTagsMocks.ts:5](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/SubTags/SubTagsMocks.ts#L5) diff --git a/docs/docs/auto-docs/screens/SubTags/SubTagsMocks/variables/MOCKS_ERROR_SUB_TAGS.md b/docs/docs/auto-docs/screens/SubTags/SubTagsMocks/variables/MOCKS_ERROR_SUB_TAGS.md deleted file mode 100644 index a00295e077..0000000000 --- a/docs/docs/auto-docs/screens/SubTags/SubTagsMocks/variables/MOCKS_ERROR_SUB_TAGS.md +++ /dev/null @@ -1,57 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [screens/SubTags/SubTagsMocks](../README.md) / MOCKS\_ERROR\_SUB\_TAGS - -# Variable: MOCKS\_ERROR\_SUB\_TAGS - -> `const` **MOCKS\_ERROR\_SUB\_TAGS**: `object`[] - -Defined in: [src/screens/SubTags/SubTagsMocks.ts:489](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/SubTags/SubTagsMocks.ts#L489) - -## Type declaration - -### error - -> **error**: `Error` - -### request - -> **request**: `object` - -#### request.query - -> **query**: `DocumentNode` = `USER_TAG_SUB_TAGS` - -#### request.variables - -> **variables**: `object` - -#### request.variables.first - -> **first**: `number` = `TAGS_QUERY_DATA_CHUNK_SIZE` - -#### request.variables.id - -> **id**: `string` = `'1'` - -#### request.variables.sortedBy - -> **sortedBy**: `object` - -#### request.variables.sortedBy.id - -> **id**: `string` = `'DESCENDING'` - -#### request.variables.where - -> **where**: `object` - -#### request.variables.where.name - -> **name**: `object` - -#### request.variables.where.name.starts\_with - -> **starts\_with**: `string` = `''` diff --git a/docs/docs/auto-docs/screens/UserPortal/Campaigns/Campaigns/README.md b/docs/docs/auto-docs/screens/UserPortal/Campaigns/Campaigns/README.md deleted file mode 100644 index 5807835f4b..0000000000 --- a/docs/docs/auto-docs/screens/UserPortal/Campaigns/Campaigns/README.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / screens/UserPortal/Campaigns/Campaigns - -# screens/UserPortal/Campaigns/Campaigns - -## Functions - -- [default](functions/default.md) diff --git a/docs/docs/auto-docs/screens/UserPortal/Campaigns/Campaigns/functions/default.md b/docs/docs/auto-docs/screens/UserPortal/Campaigns/Campaigns/functions/default.md deleted file mode 100644 index 04fbe32ba7..0000000000 --- a/docs/docs/auto-docs/screens/UserPortal/Campaigns/Campaigns/functions/default.md +++ /dev/null @@ -1,20 +0,0 @@ -[**talawa-admin**](../../../../../README.md) - -*** - -[talawa-admin](../../../../../modules.md) / [screens/UserPortal/Campaigns/Campaigns](../README.md) / default - -# Function: default() - -> **default**(): `Element` - -Defined in: [src/screens/UserPortal/Campaigns/Campaigns.tsx:30](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/UserPortal/Campaigns/Campaigns.tsx#L30) - -The `Campaigns` component displays a list of fundraising campaigns for a specific organization. -It allows users to search, sort, and view details about each campaign. Users can also add pledges to active campaigns. - -## Returns - -`Element` - -The rendered component displaying the campaigns. diff --git a/docs/docs/auto-docs/screens/UserPortal/Campaigns/CampaignsMocks/README.md b/docs/docs/auto-docs/screens/UserPortal/Campaigns/CampaignsMocks/README.md deleted file mode 100644 index ca2d8df243..0000000000 --- a/docs/docs/auto-docs/screens/UserPortal/Campaigns/CampaignsMocks/README.md +++ /dev/null @@ -1,13 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / screens/UserPortal/Campaigns/CampaignsMocks - -# screens/UserPortal/Campaigns/CampaignsMocks - -## Variables - -- [EMPTY\_MOCKS](variables/EMPTY_MOCKS.md) -- [MOCKS](variables/MOCKS.md) -- [USER\_FUND\_CAMPAIGNS\_ERROR](variables/USER_FUND_CAMPAIGNS_ERROR.md) diff --git a/docs/docs/auto-docs/screens/UserPortal/Campaigns/CampaignsMocks/variables/EMPTY_MOCKS.md b/docs/docs/auto-docs/screens/UserPortal/Campaigns/CampaignsMocks/variables/EMPTY_MOCKS.md deleted file mode 100644 index 1767e688e3..0000000000 --- a/docs/docs/auto-docs/screens/UserPortal/Campaigns/CampaignsMocks/variables/EMPTY_MOCKS.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../../README.md) - -*** - -[talawa-admin](../../../../../modules.md) / [screens/UserPortal/Campaigns/CampaignsMocks](../README.md) / EMPTY\_MOCKS - -# Variable: EMPTY\_MOCKS - -> `const` **EMPTY\_MOCKS**: (\{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `id`: `string`; \}; \}; `result`: \{ `data`: \{ `user`: \{ `__typename`: `string`; `appUserProfile`: \{ `__typename`: `string`; `_id`: `string`; `adminFor`: `never`[]; `appLanguageCode`: `string`; `createdEvents`: `never`[]; `createdOrganizations`: `never`[]; `eventAdmin`: `never`[]; `isSuperAdmin`: `boolean`; `pluginCreationAllowed`: `boolean`; \}; `user`: \{ `__typename`: `string`; `_id`: `string`; `address`: \{ `__typename`: `string`; `city`: `string`; `countryCode`: `string`; `line1`: `string`; `state`: `string`; \}; `birthDate`: `null`; `createdAt`: `string`; `educationGrade`: `null`; `email`: `string`; `employmentStatus`: `null`; `firstName`: `string`; `gender`: `null`; `image`: `null`; `joinedOrganizations`: `object`[]; `lastName`: `string`; `maritalStatus`: `null`; `membershipRequests`: `never`[]; `phone`: `null`; `registeredEvents`: `never`[]; \}; \}; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `campaignOrderBy`: `string`; `where`: \{ `name_contains`: `string`; `organizationId`: `string`; \}; \}; \}; `result`: \{ `data`: \{ `getFundraisingCampaigns`: `never`[]; \}; \}; \})[] - -Defined in: [src/screens/UserPortal/Campaigns/CampaignsMocks.ts:236](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/UserPortal/Campaigns/CampaignsMocks.ts#L236) diff --git a/docs/docs/auto-docs/screens/UserPortal/Campaigns/CampaignsMocks/variables/MOCKS.md b/docs/docs/auto-docs/screens/UserPortal/Campaigns/CampaignsMocks/variables/MOCKS.md deleted file mode 100644 index 75aeb5dca8..0000000000 --- a/docs/docs/auto-docs/screens/UserPortal/Campaigns/CampaignsMocks/variables/MOCKS.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../../README.md) - -*** - -[talawa-admin](../../../../../modules.md) / [screens/UserPortal/Campaigns/CampaignsMocks](../README.md) / MOCKS - -# Variable: MOCKS - -> `const` **MOCKS**: (\{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `id`: `string`; \}; \}; `result`: \{ `data`: \{ `user`: \{ `__typename`: `string`; `appUserProfile`: \{ `__typename`: `string`; `_id`: `string`; `adminFor`: `never`[]; `appLanguageCode`: `string`; `createdEvents`: `never`[]; `createdOrganizations`: `never`[]; `eventAdmin`: `never`[]; `isSuperAdmin`: `boolean`; `pluginCreationAllowed`: `boolean`; \}; `user`: \{ `__typename`: `string`; `_id`: `string`; `address`: \{ `__typename`: `string`; `city`: `string`; `countryCode`: `string`; `line1`: `string`; `state`: `string`; \}; `birthDate`: `null`; `createdAt`: `string`; `educationGrade`: `null`; `email`: `string`; `employmentStatus`: `null`; `firstName`: `string`; `gender`: `null`; `image`: `null`; `joinedOrganizations`: `object`[]; `lastName`: `string`; `maritalStatus`: `null`; `membershipRequests`: `never`[]; `phone`: `null`; `registeredEvents`: `never`[]; \}; \}; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `campaignOrderBy`: `string`; `where`: \{ `name_contains`: `string`; `organizationId`: `string`; \}; \}; \}; `result`: \{ `data`: \{ `getFundraisingCampaigns`: `object`[]; \}; \}; \})[] - -Defined in: [src/screens/UserPortal/Campaigns/CampaignsMocks.ts:61](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/UserPortal/Campaigns/CampaignsMocks.ts#L61) diff --git a/docs/docs/auto-docs/screens/UserPortal/Campaigns/CampaignsMocks/variables/USER_FUND_CAMPAIGNS_ERROR.md b/docs/docs/auto-docs/screens/UserPortal/Campaigns/CampaignsMocks/variables/USER_FUND_CAMPAIGNS_ERROR.md deleted file mode 100644 index 6804622d54..0000000000 --- a/docs/docs/auto-docs/screens/UserPortal/Campaigns/CampaignsMocks/variables/USER_FUND_CAMPAIGNS_ERROR.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../../README.md) - -*** - -[talawa-admin](../../../../../modules.md) / [screens/UserPortal/Campaigns/CampaignsMocks](../README.md) / USER\_FUND\_CAMPAIGNS\_ERROR - -# Variable: USER\_FUND\_CAMPAIGNS\_ERROR - -> `const` **USER\_FUND\_CAMPAIGNS\_ERROR**: (\{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `id`: `string`; \}; \}; `result`: \{ `data`: \{ `user`: \{ `__typename`: `string`; `appUserProfile`: \{ `__typename`: `string`; `_id`: `string`; `adminFor`: `never`[]; `appLanguageCode`: `string`; `createdEvents`: `never`[]; `createdOrganizations`: `never`[]; `eventAdmin`: `never`[]; `isSuperAdmin`: `boolean`; `pluginCreationAllowed`: `boolean`; \}; `user`: \{ `__typename`: `string`; `_id`: `string`; `address`: \{ `__typename`: `string`; `city`: `string`; `countryCode`: `string`; `line1`: `string`; `state`: `string`; \}; `birthDate`: `null`; `createdAt`: `string`; `educationGrade`: `null`; `email`: `string`; `employmentStatus`: `null`; `firstName`: `string`; `gender`: `null`; `image`: `null`; `joinedOrganizations`: `object`[]; `lastName`: `string`; `maritalStatus`: `null`; `membershipRequests`: `never`[]; `phone`: `null`; `registeredEvents`: `never`[]; \}; \}; \}; \}; \} \| \{ `error`: `Error`; `request`: \{ `query`: `DocumentNode`; `variables`: \{ `campaignOrderBy`: `string`; `where`: \{ `name_contains`: `string`; `organizationId`: `string`; \}; \}; \}; \})[] - -Defined in: [src/screens/UserPortal/Campaigns/CampaignsMocks.ts:257](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/UserPortal/Campaigns/CampaignsMocks.ts#L257) diff --git a/docs/docs/auto-docs/screens/UserPortal/Campaigns/PledgeModal/README.md b/docs/docs/auto-docs/screens/UserPortal/Campaigns/PledgeModal/README.md deleted file mode 100644 index ab50791109..0000000000 --- a/docs/docs/auto-docs/screens/UserPortal/Campaigns/PledgeModal/README.md +++ /dev/null @@ -1,15 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / screens/UserPortal/Campaigns/PledgeModal - -# screens/UserPortal/Campaigns/PledgeModal - -## Interfaces - -- [InterfacePledgeModal](interfaces/InterfacePledgeModal.md) - -## Functions - -- [default](functions/default.md) diff --git a/docs/docs/auto-docs/screens/UserPortal/Campaigns/PledgeModal/functions/default.md b/docs/docs/auto-docs/screens/UserPortal/Campaigns/PledgeModal/functions/default.md deleted file mode 100644 index 8375e3c766..0000000000 --- a/docs/docs/auto-docs/screens/UserPortal/Campaigns/PledgeModal/functions/default.md +++ /dev/null @@ -1,34 +0,0 @@ -[**talawa-admin**](../../../../../README.md) - -*** - -[talawa-admin](../../../../../modules.md) / [screens/UserPortal/Campaigns/PledgeModal](../README.md) / default - -# Function: default() - -> **default**(`props`, `deprecatedLegacyContext`?): `ReactNode` - -Defined in: [src/screens/UserPortal/Campaigns/PledgeModal.tsx:54](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/UserPortal/Campaigns/PledgeModal.tsx#L54) - -`PledgeModal` is a React component that allows users to create or edit a pledge for a specific campaign. -It displays a form with inputs for pledge details such as amount, currency, dates, and users involved in the pledge. - -## Parameters - -### props - -[`InterfacePledgeModal`](../interfaces/InterfacePledgeModal.md) - -### deprecatedLegacyContext? - -`any` - -**Deprecated** - -**See** - -[React Docs](https://legacy.reactjs.org/docs/legacy-context.html#referencing-context-in-lifecycle-methods) - -## Returns - -`ReactNode` diff --git a/docs/docs/auto-docs/screens/UserPortal/Campaigns/PledgeModal/interfaces/InterfacePledgeModal.md b/docs/docs/auto-docs/screens/UserPortal/Campaigns/PledgeModal/interfaces/InterfacePledgeModal.md deleted file mode 100644 index 214d15c7cc..0000000000 --- a/docs/docs/auto-docs/screens/UserPortal/Campaigns/PledgeModal/interfaces/InterfacePledgeModal.md +++ /dev/null @@ -1,83 +0,0 @@ -[**talawa-admin**](../../../../../README.md) - -*** - -[talawa-admin](../../../../../modules.md) / [screens/UserPortal/Campaigns/PledgeModal](../README.md) / InterfacePledgeModal - -# Interface: InterfacePledgeModal - -Defined in: [src/screens/UserPortal/Campaigns/PledgeModal.tsx:30](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/UserPortal/Campaigns/PledgeModal.tsx#L30) - -Interface representing the properties for the `PledgeModal` component. - -## Properties - -### campaignId - -> **campaignId**: `string` - -Defined in: [src/screens/UserPortal/Campaigns/PledgeModal.tsx:33](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/UserPortal/Campaigns/PledgeModal.tsx#L33) - -*** - -### endDate - -> **endDate**: `Date` - -Defined in: [src/screens/UserPortal/Campaigns/PledgeModal.tsx:37](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/UserPortal/Campaigns/PledgeModal.tsx#L37) - -*** - -### hide() - -> **hide**: () => `void` - -Defined in: [src/screens/UserPortal/Campaigns/PledgeModal.tsx:32](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/UserPortal/Campaigns/PledgeModal.tsx#L32) - -#### Returns - -`void` - -*** - -### isOpen - -> **isOpen**: `boolean` - -Defined in: [src/screens/UserPortal/Campaigns/PledgeModal.tsx:31](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/UserPortal/Campaigns/PledgeModal.tsx#L31) - -*** - -### mode - -> **mode**: `"create"` \| `"edit"` - -Defined in: [src/screens/UserPortal/Campaigns/PledgeModal.tsx:38](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/UserPortal/Campaigns/PledgeModal.tsx#L38) - -*** - -### pledge - -> **pledge**: `null` \| [`InterfacePledgeInfo`](../../../../../utils/interfaces/interfaces/InterfacePledgeInfo.md) - -Defined in: [src/screens/UserPortal/Campaigns/PledgeModal.tsx:35](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/UserPortal/Campaigns/PledgeModal.tsx#L35) - -*** - -### refetchPledge() - -> **refetchPledge**: () => `void` - -Defined in: [src/screens/UserPortal/Campaigns/PledgeModal.tsx:36](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/UserPortal/Campaigns/PledgeModal.tsx#L36) - -#### Returns - -`void` - -*** - -### userId - -> **userId**: `string` - -Defined in: [src/screens/UserPortal/Campaigns/PledgeModal.tsx:34](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/UserPortal/Campaigns/PledgeModal.tsx#L34) diff --git a/docs/docs/auto-docs/screens/UserPortal/Chat/Chat/README.md b/docs/docs/auto-docs/screens/UserPortal/Chat/Chat/README.md deleted file mode 100644 index 00e857bbad..0000000000 --- a/docs/docs/auto-docs/screens/UserPortal/Chat/Chat/README.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / screens/UserPortal/Chat/Chat - -# screens/UserPortal/Chat/Chat - -## Functions - -- [default](functions/default.md) diff --git a/docs/docs/auto-docs/screens/UserPortal/Chat/Chat/functions/default.md b/docs/docs/auto-docs/screens/UserPortal/Chat/Chat/functions/default.md deleted file mode 100644 index 9290ed1e18..0000000000 --- a/docs/docs/auto-docs/screens/UserPortal/Chat/Chat/functions/default.md +++ /dev/null @@ -1,15 +0,0 @@ -[**talawa-admin**](../../../../../README.md) - -*** - -[talawa-admin](../../../../../modules.md) / [screens/UserPortal/Chat/Chat](../README.md) / default - -# Function: default() - -> **default**(): `JSX.Element` - -Defined in: [src/screens/UserPortal/Chat/Chat.tsx:102](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/UserPortal/Chat/Chat.tsx#L102) - -## Returns - -`JSX.Element` diff --git a/docs/docs/auto-docs/screens/UserPortal/Donate/Donate/README.md b/docs/docs/auto-docs/screens/UserPortal/Donate/Donate/README.md deleted file mode 100644 index fa9bf0a12b..0000000000 --- a/docs/docs/auto-docs/screens/UserPortal/Donate/Donate/README.md +++ /dev/null @@ -1,15 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / screens/UserPortal/Donate/Donate - -# screens/UserPortal/Donate/Donate - -## Interfaces - -- [InterfaceDonationCardProps](interfaces/InterfaceDonationCardProps.md) - -## Functions - -- [default](functions/default.md) diff --git a/docs/docs/auto-docs/screens/UserPortal/Donate/Donate/functions/default.md b/docs/docs/auto-docs/screens/UserPortal/Donate/Donate/functions/default.md deleted file mode 100644 index 730981275a..0000000000 --- a/docs/docs/auto-docs/screens/UserPortal/Donate/Donate/functions/default.md +++ /dev/null @@ -1,38 +0,0 @@ -[**talawa-admin**](../../../../../README.md) - -*** - -[talawa-admin](../../../../../modules.md) / [screens/UserPortal/Donate/Donate](../README.md) / default - -# Function: default() - -> **default**(): `JSX.Element` - -Defined in: [src/screens/UserPortal/Donate/Donate.tsx:65](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/UserPortal/Donate/Donate.tsx#L65) - -`donate` component allows users to make donations to an organization and view their previous donations. - -This component fetches donation-related data using GraphQL queries and allows users to make donations -using a mutation. It supports currency selection, donation amount input, and displays a paginated list -of previous donations. - -It includes: -- An input field for searching donations. -- A dropdown to select currency. -- An input field for entering donation amount. -- A button to submit the donation. -- A list of previous donations displayed in a paginated format. -- An organization sidebar for navigation. - -### GraphQL Queries -- `ORGANIZATION_DONATION_CONNECTION_LIST`: Fetches the list of donations for the organization. -- `USER_ORGANIZATION_CONNECTION`: Fetches organization details. - -### GraphQL Mutations -- `DONATE_TO_ORGANIZATION`: Performs the donation action. - -## Returns - -`JSX.Element` - -The rendered component. diff --git a/docs/docs/auto-docs/screens/UserPortal/Donate/Donate/interfaces/InterfaceDonationCardProps.md b/docs/docs/auto-docs/screens/UserPortal/Donate/Donate/interfaces/InterfaceDonationCardProps.md deleted file mode 100644 index 586bd6336e..0000000000 --- a/docs/docs/auto-docs/screens/UserPortal/Donate/Donate/interfaces/InterfaceDonationCardProps.md +++ /dev/null @@ -1,57 +0,0 @@ -[**talawa-admin**](../../../../../README.md) - -*** - -[talawa-admin](../../../../../modules.md) / [screens/UserPortal/Donate/Donate](../README.md) / InterfaceDonationCardProps - -# Interface: InterfaceDonationCardProps - -Defined in: [src/screens/UserPortal/Donate/Donate.tsx:23](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/UserPortal/Donate/Donate.tsx#L23) - -## Properties - -### amount - -> **amount**: `string` - -Defined in: [src/screens/UserPortal/Donate/Donate.tsx:26](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/UserPortal/Donate/Donate.tsx#L26) - -*** - -### id - -> **id**: `string` - -Defined in: [src/screens/UserPortal/Donate/Donate.tsx:24](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/UserPortal/Donate/Donate.tsx#L24) - -*** - -### name - -> **name**: `string` - -Defined in: [src/screens/UserPortal/Donate/Donate.tsx:25](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/UserPortal/Donate/Donate.tsx#L25) - -*** - -### payPalId - -> **payPalId**: `string` - -Defined in: [src/screens/UserPortal/Donate/Donate.tsx:28](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/UserPortal/Donate/Donate.tsx#L28) - -*** - -### updatedAt - -> **updatedAt**: `string` - -Defined in: [src/screens/UserPortal/Donate/Donate.tsx:29](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/UserPortal/Donate/Donate.tsx#L29) - -*** - -### userId - -> **userId**: `string` - -Defined in: [src/screens/UserPortal/Donate/Donate.tsx:27](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/UserPortal/Donate/Donate.tsx#L27) diff --git a/docs/docs/auto-docs/screens/UserPortal/Events/Events/README.md b/docs/docs/auto-docs/screens/UserPortal/Events/Events/README.md deleted file mode 100644 index b2d99da6f3..0000000000 --- a/docs/docs/auto-docs/screens/UserPortal/Events/Events/README.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / screens/UserPortal/Events/Events - -# screens/UserPortal/Events/Events - -## Functions - -- [default](functions/default.md) diff --git a/docs/docs/auto-docs/screens/UserPortal/Events/Events/functions/default.md b/docs/docs/auto-docs/screens/UserPortal/Events/Events/functions/default.md deleted file mode 100644 index 49734af062..0000000000 --- a/docs/docs/auto-docs/screens/UserPortal/Events/Events/functions/default.md +++ /dev/null @@ -1,22 +0,0 @@ -[**talawa-admin**](../../../../../README.md) - -*** - -[talawa-admin](../../../../../modules.md) / [screens/UserPortal/Events/Events](../README.md) / default - -# Function: default() - -> **default**(): `JSX.Element` - -Defined in: [src/screens/UserPortal/Events/Events.tsx:43](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/UserPortal/Events/Events.tsx#L43) - -Component to manage and display events for an organization. - -This component allows users to view, create, and manage events within an organization. -It includes a calendar view, a form to create new events, and various filters and settings. - -## Returns - -`JSX.Element` - -The JSX element for the events management interface. diff --git a/docs/docs/auto-docs/screens/UserPortal/LeaveOrganization/LeaveOrganization/README.md b/docs/docs/auto-docs/screens/UserPortal/LeaveOrganization/LeaveOrganization/README.md deleted file mode 100644 index 62ef0a8db2..0000000000 --- a/docs/docs/auto-docs/screens/UserPortal/LeaveOrganization/LeaveOrganization/README.md +++ /dev/null @@ -1,16 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / screens/UserPortal/LeaveOrganization/LeaveOrganization - -# screens/UserPortal/LeaveOrganization/LeaveOrganization - -## Variables - -- [userEmail](variables/userEmail.md) -- [userId](variables/userId.md) - -## Functions - -- [default](functions/default.md) diff --git a/docs/docs/auto-docs/screens/UserPortal/LeaveOrganization/LeaveOrganization/functions/default.md b/docs/docs/auto-docs/screens/UserPortal/LeaveOrganization/LeaveOrganization/functions/default.md deleted file mode 100644 index 96fad7ccfb..0000000000 --- a/docs/docs/auto-docs/screens/UserPortal/LeaveOrganization/LeaveOrganization/functions/default.md +++ /dev/null @@ -1,15 +0,0 @@ -[**talawa-admin**](../../../../../README.md) - -*** - -[talawa-admin](../../../../../modules.md) / [screens/UserPortal/LeaveOrganization/LeaveOrganization](../README.md) / default - -# Function: default() - -> **default**(): `Element` - -Defined in: [src/screens/UserPortal/LeaveOrganization/LeaveOrganization.tsx:32](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/UserPortal/LeaveOrganization/LeaveOrganization.tsx#L32) - -## Returns - -`Element` diff --git a/docs/docs/auto-docs/screens/UserPortal/LeaveOrganization/LeaveOrganization/variables/userEmail.md b/docs/docs/auto-docs/screens/UserPortal/LeaveOrganization/LeaveOrganization/variables/userEmail.md deleted file mode 100644 index d325703f2b..0000000000 --- a/docs/docs/auto-docs/screens/UserPortal/LeaveOrganization/LeaveOrganization/variables/userEmail.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../../README.md) - -*** - -[talawa-admin](../../../../../modules.md) / [screens/UserPortal/LeaveOrganization/LeaveOrganization](../README.md) / userEmail - -# Variable: userEmail - -> `const` **userEmail**: `any` - -Defined in: [src/screens/UserPortal/LeaveOrganization/LeaveOrganization.tsx:13](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/UserPortal/LeaveOrganization/LeaveOrganization.tsx#L13) diff --git a/docs/docs/auto-docs/screens/UserPortal/LeaveOrganization/LeaveOrganization/variables/userId.md b/docs/docs/auto-docs/screens/UserPortal/LeaveOrganization/LeaveOrganization/variables/userId.md deleted file mode 100644 index 72a9fecd8f..0000000000 --- a/docs/docs/auto-docs/screens/UserPortal/LeaveOrganization/LeaveOrganization/variables/userId.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../../README.md) - -*** - -[talawa-admin](../../../../../modules.md) / [screens/UserPortal/LeaveOrganization/LeaveOrganization](../README.md) / userId - -# Variable: userId - -> `const` **userId**: `any` - -Defined in: [src/screens/UserPortal/LeaveOrganization/LeaveOrganization.tsx:21](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/UserPortal/LeaveOrganization/LeaveOrganization.tsx#L21) diff --git a/docs/docs/auto-docs/screens/UserPortal/Organizations/Organizations/README.md b/docs/docs/auto-docs/screens/UserPortal/Organizations/Organizations/README.md deleted file mode 100644 index 01e01664f8..0000000000 --- a/docs/docs/auto-docs/screens/UserPortal/Organizations/Organizations/README.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / screens/UserPortal/Organizations/Organizations - -# screens/UserPortal/Organizations/Organizations - -## Functions - -- [default](functions/default.md) diff --git a/docs/docs/auto-docs/screens/UserPortal/Organizations/Organizations/functions/default.md b/docs/docs/auto-docs/screens/UserPortal/Organizations/Organizations/functions/default.md deleted file mode 100644 index 034add883e..0000000000 --- a/docs/docs/auto-docs/screens/UserPortal/Organizations/Organizations/functions/default.md +++ /dev/null @@ -1,17 +0,0 @@ -[**talawa-admin**](../../../../../README.md) - -*** - -[talawa-admin](../../../../../modules.md) / [screens/UserPortal/Organizations/Organizations](../README.md) / default - -# Function: default() - -> **default**(): `JSX.Element` - -Defined in: [src/screens/UserPortal/Organizations/Organizations.tsx:76](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/UserPortal/Organizations/Organizations.tsx#L76) - -Component for displaying and managing user organizations. - -## Returns - -`JSX.Element` diff --git a/docs/docs/auto-docs/screens/UserPortal/People/People/README.md b/docs/docs/auto-docs/screens/UserPortal/People/People/README.md deleted file mode 100644 index f2a032d34f..0000000000 --- a/docs/docs/auto-docs/screens/UserPortal/People/People/README.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / screens/UserPortal/People/People - -# screens/UserPortal/People/People - -## Functions - -- [default](functions/default.md) diff --git a/docs/docs/auto-docs/screens/UserPortal/People/People/functions/default.md b/docs/docs/auto-docs/screens/UserPortal/People/People/functions/default.md deleted file mode 100644 index d65b856a96..0000000000 --- a/docs/docs/auto-docs/screens/UserPortal/People/People/functions/default.md +++ /dev/null @@ -1,19 +0,0 @@ -[**talawa-admin**](../../../../../README.md) - -*** - -[talawa-admin](../../../../../modules.md) / [screens/UserPortal/People/People](../README.md) / default - -# Function: default() - -> **default**(): `JSX.Element` - -Defined in: [src/screens/UserPortal/People/People.tsx:39](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/UserPortal/People/People.tsx#L39) - -`People` component displays a list of people associated with an organization. -It allows users to filter between all members and admins, search for members by their first name, -and paginate through the list. - -## Returns - -`JSX.Element` diff --git a/docs/docs/auto-docs/screens/UserPortal/Pledges/Pledges/README.md b/docs/docs/auto-docs/screens/UserPortal/Pledges/Pledges/README.md deleted file mode 100644 index a7ea6f45d9..0000000000 --- a/docs/docs/auto-docs/screens/UserPortal/Pledges/Pledges/README.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / screens/UserPortal/Pledges/Pledges - -# screens/UserPortal/Pledges/Pledges - -## Functions - -- [default](functions/default.md) diff --git a/docs/docs/auto-docs/screens/UserPortal/Pledges/Pledges/functions/default.md b/docs/docs/auto-docs/screens/UserPortal/Pledges/Pledges/functions/default.md deleted file mode 100644 index 967379a2f4..0000000000 --- a/docs/docs/auto-docs/screens/UserPortal/Pledges/Pledges/functions/default.md +++ /dev/null @@ -1,32 +0,0 @@ -[**talawa-admin**](../../../../../README.md) - -*** - -[talawa-admin](../../../../../modules.md) / [screens/UserPortal/Pledges/Pledges](../README.md) / default - -# Function: default() - -> **default**(): `Element` - -Defined in: [src/screens/UserPortal/Pledges/Pledges.tsx:70](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/UserPortal/Pledges/Pledges.tsx#L70) - -The `Pledges` component is responsible for rendering a user's pledges within a campaign. -It fetches pledges data using Apollo Client's `useQuery` hook and displays the data -in a DataGrid with various features such as search, sorting, and modal dialogs for updating -or deleting a pledge. The component also handles various UI interactions including opening -modals for editing or deleting a pledge, showing additional pledgers in a popup, and -applying filters for searching pledges by campaign or pledger name. - -Key functionalities include: -- Fetching pledges data from the backend using GraphQL query `USER_PLEDGES`. -- Displaying pledges in a table with columns for pledgers, associated campaigns, - end dates, pledged amounts, and actions. -- Handling search and sorting of pledges. -- Opening and closing modals for updating and deleting pledges. -- Displaying additional pledgers in a popup when the list of pledgers exceeds a certain limit. - -## Returns - -`Element` - -The rendered Pledges component. diff --git a/docs/docs/auto-docs/screens/UserPortal/Pledges/PledgesMocks/README.md b/docs/docs/auto-docs/screens/UserPortal/Pledges/PledgesMocks/README.md deleted file mode 100644 index bdab99fef9..0000000000 --- a/docs/docs/auto-docs/screens/UserPortal/Pledges/PledgesMocks/README.md +++ /dev/null @@ -1,13 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / screens/UserPortal/Pledges/PledgesMocks - -# screens/UserPortal/Pledges/PledgesMocks - -## Variables - -- [EMPTY\_MOCKS](variables/EMPTY_MOCKS.md) -- [MOCKS](variables/MOCKS.md) -- [USER\_PLEDGES\_ERROR](variables/USER_PLEDGES_ERROR.md) diff --git a/docs/docs/auto-docs/screens/UserPortal/Pledges/PledgesMocks/variables/EMPTY_MOCKS.md b/docs/docs/auto-docs/screens/UserPortal/Pledges/PledgesMocks/variables/EMPTY_MOCKS.md deleted file mode 100644 index ae7a0a0ea4..0000000000 --- a/docs/docs/auto-docs/screens/UserPortal/Pledges/PledgesMocks/variables/EMPTY_MOCKS.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../../README.md) - -*** - -[talawa-admin](../../../../../modules.md) / [screens/UserPortal/Pledges/PledgesMocks](../README.md) / EMPTY\_MOCKS - -# Variable: EMPTY\_MOCKS - -> `const` **EMPTY\_MOCKS**: (\{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `id`: `string`; \}; \}; `result`: \{ `data`: \{ `user`: \{ `__typename`: `string`; `appUserProfile`: \{ `__typename`: `string`; `_id`: `string`; `adminFor`: `never`[]; `appLanguageCode`: `string`; `createdEvents`: `never`[]; `createdOrganizations`: `never`[]; `eventAdmin`: `never`[]; `isSuperAdmin`: `boolean`; `pluginCreationAllowed`: `boolean`; \}; `user`: \{ `__typename`: `string`; `_id`: `string`; `address`: \{ `__typename`: `string`; `city`: `string`; `countryCode`: `string`; `line1`: `string`; `state`: `string`; \}; `birthDate`: `null`; `createdAt`: `string`; `educationGrade`: `null`; `email`: `string`; `employmentStatus`: `null`; `firstName`: `string`; `gender`: `null`; `image`: `null`; `joinedOrganizations`: `object`[]; `lastName`: `string`; `maritalStatus`: `null`; `membershipRequests`: `never`[]; `phone`: `null`; `registeredEvents`: `never`[]; \}; \}; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `orderBy`: `string`; `userId`: `string`; `where`: \{ `firstName_contains`: `string`; \}; \}; \}; `result`: \{ `data`: \{ `getPledgesByUserId`: `never`[]; \}; \}; \})[] - -Defined in: [src/screens/UserPortal/Pledges/PledgesMocks.ts:560](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/UserPortal/Pledges/PledgesMocks.ts#L560) diff --git a/docs/docs/auto-docs/screens/UserPortal/Pledges/PledgesMocks/variables/MOCKS.md b/docs/docs/auto-docs/screens/UserPortal/Pledges/PledgesMocks/variables/MOCKS.md deleted file mode 100644 index af99a1f540..0000000000 --- a/docs/docs/auto-docs/screens/UserPortal/Pledges/PledgesMocks/variables/MOCKS.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../../README.md) - -*** - -[talawa-admin](../../../../../modules.md) / [screens/UserPortal/Pledges/PledgesMocks](../README.md) / MOCKS - -# Variable: MOCKS - -> `const` **MOCKS**: (\{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `id`: `string`; \}; \}; `result`: \{ `data`: \{ `user`: \{ `__typename`: `string`; `appUserProfile`: \{ `__typename`: `string`; `_id`: `string`; `adminFor`: `never`[]; `appLanguageCode`: `string`; `createdEvents`: `never`[]; `createdOrganizations`: `never`[]; `eventAdmin`: `never`[]; `isSuperAdmin`: `boolean`; `pluginCreationAllowed`: `boolean`; \}; `user`: \{ `__typename`: `string`; `_id`: `string`; `address`: \{ `__typename`: `string`; `city`: `string`; `countryCode`: `string`; `line1`: `string`; `state`: `string`; \}; `birthDate`: `null`; `createdAt`: `string`; `educationGrade`: `null`; `email`: `string`; `employmentStatus`: `null`; `firstName`: `string`; `gender`: `null`; `image`: `null`; `joinedOrganizations`: `object`[]; `lastName`: `string`; `maritalStatus`: `null`; `membershipRequests`: `never`[]; `phone`: `null`; `registeredEvents`: `never`[]; \}; \}; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `id`: `undefined`; `orderBy`: `string`; `userId`: `string`; `where`: \{ `firstName_contains`: `undefined`; `name_contains`: `string`; \}; \}; \}; `result`: \{ `data`: \{ `getPledgesByUserId`: `object`[]; `removeFundraisingCampaignPledge`: `undefined`; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `id`: `undefined`; `orderBy`: `string`; `userId`: `string`; `where`: \{ `firstName_contains`: `string`; `name_contains`: `undefined`; \}; \}; \}; `result`: \{ `data`: \{ `getPledgesByUserId`: `object`[]; `removeFundraisingCampaignPledge`: `undefined`; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `id`: `string`; `orderBy`: `undefined`; `userId`: `undefined`; `where`: `undefined`; \}; \}; `result`: \{ `data`: \{ `getPledgesByUserId`: `undefined`; `removeFundraisingCampaignPledge`: \{ `_id`: `string`; \}; \}; \}; \})[] - -Defined in: [src/screens/UserPortal/Pledges/PledgesMocks.ts:62](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/UserPortal/Pledges/PledgesMocks.ts#L62) diff --git a/docs/docs/auto-docs/screens/UserPortal/Pledges/PledgesMocks/variables/USER_PLEDGES_ERROR.md b/docs/docs/auto-docs/screens/UserPortal/Pledges/PledgesMocks/variables/USER_PLEDGES_ERROR.md deleted file mode 100644 index 561e0030c5..0000000000 --- a/docs/docs/auto-docs/screens/UserPortal/Pledges/PledgesMocks/variables/USER_PLEDGES_ERROR.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../../README.md) - -*** - -[talawa-admin](../../../../../modules.md) / [screens/UserPortal/Pledges/PledgesMocks](../README.md) / USER\_PLEDGES\_ERROR - -# Variable: USER\_PLEDGES\_ERROR - -> `const` **USER\_PLEDGES\_ERROR**: (\{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `id`: `string`; \}; \}; `result`: \{ `data`: \{ `user`: \{ `__typename`: `string`; `appUserProfile`: \{ `__typename`: `string`; `_id`: `string`; `adminFor`: `never`[]; `appLanguageCode`: `string`; `createdEvents`: `never`[]; `createdOrganizations`: `never`[]; `eventAdmin`: `never`[]; `isSuperAdmin`: `boolean`; `pluginCreationAllowed`: `boolean`; \}; `user`: \{ `__typename`: `string`; `_id`: `string`; `address`: \{ `__typename`: `string`; `city`: `string`; `countryCode`: `string`; `line1`: `string`; `state`: `string`; \}; `birthDate`: `null`; `createdAt`: `string`; `educationGrade`: `null`; `email`: `string`; `employmentStatus`: `null`; `firstName`: `string`; `gender`: `null`; `image`: `null`; `joinedOrganizations`: `object`[]; `lastName`: `string`; `maritalStatus`: `null`; `membershipRequests`: `never`[]; `phone`: `null`; `registeredEvents`: `never`[]; \}; \}; \}; \}; \} \| \{ `error`: `Error`; `request`: \{ `query`: `DocumentNode`; `variables`: \{ `orderBy`: `string`; `userId`: `string`; `where`: \{ `firstName_contains`: `string`; \}; \}; \}; \})[] - -Defined in: [src/screens/UserPortal/Pledges/PledgesMocks.ts:581](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/UserPortal/Pledges/PledgesMocks.ts#L581) diff --git a/docs/docs/auto-docs/screens/UserPortal/Posts/Posts/README.md b/docs/docs/auto-docs/screens/UserPortal/Posts/Posts/README.md deleted file mode 100644 index d2590ccd5b..0000000000 --- a/docs/docs/auto-docs/screens/UserPortal/Posts/Posts/README.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / screens/UserPortal/Posts/Posts - -# screens/UserPortal/Posts/Posts - -## Functions - -- [default](functions/default.md) diff --git a/docs/docs/auto-docs/screens/UserPortal/Posts/Posts/functions/default.md b/docs/docs/auto-docs/screens/UserPortal/Posts/Posts/functions/default.md deleted file mode 100644 index 76562dee3e..0000000000 --- a/docs/docs/auto-docs/screens/UserPortal/Posts/Posts/functions/default.md +++ /dev/null @@ -1,21 +0,0 @@ -[**talawa-admin**](../../../../../README.md) - -*** - -[talawa-admin](../../../../../modules.md) / [screens/UserPortal/Posts/Posts](../README.md) / default - -# Function: default() - -> **default**(): `JSX.Element` - -Defined in: [src/screens/UserPortal/Posts/Posts.tsx:112](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/UserPortal/Posts/Posts.tsx#L112) - -`home` component displays the main feed for a user, including posts, promoted content, and options to create a new post. - -It utilizes Apollo Client for fetching and managing data through GraphQL queries. The component fetches and displays posts from an organization, promoted advertisements, and handles user interactions for creating new posts. It also manages state for displaying modal dialogs and handling file uploads for new posts. - -## Returns - -`JSX.Element` - -JSX.Element - The rendered `home` component. diff --git a/docs/docs/auto-docs/screens/UserPortal/Settings/Settings/README.md b/docs/docs/auto-docs/screens/UserPortal/Settings/Settings/README.md deleted file mode 100644 index 4d0e925679..0000000000 --- a/docs/docs/auto-docs/screens/UserPortal/Settings/Settings/README.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / screens/UserPortal/Settings/Settings - -# screens/UserPortal/Settings/Settings - -## Functions - -- [default](functions/default.md) diff --git a/docs/docs/auto-docs/screens/UserPortal/Settings/Settings/functions/default.md b/docs/docs/auto-docs/screens/UserPortal/Settings/Settings/functions/default.md deleted file mode 100644 index eb0c9eef38..0000000000 --- a/docs/docs/auto-docs/screens/UserPortal/Settings/Settings/functions/default.md +++ /dev/null @@ -1,20 +0,0 @@ -[**talawa-admin**](../../../../../README.md) - -*** - -[talawa-admin](../../../../../modules.md) / [screens/UserPortal/Settings/Settings](../README.md) / default - -# Function: default() - -> **default**(): `JSX.Element` - -Defined in: [src/screens/UserPortal/Settings/Settings.tsx:33](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/UserPortal/Settings/Settings.tsx#L33) - -The Settings component allows users to view and update their profile settings. -It includes functionality to handle image uploads, reset changes, and save updated user details. - -## Returns - -`JSX.Element` - -The Settings component. diff --git a/docs/docs/auto-docs/screens/UserPortal/UserScreen/UserScreen/README.md b/docs/docs/auto-docs/screens/UserPortal/UserScreen/UserScreen/README.md deleted file mode 100644 index 8ea3daaf80..0000000000 --- a/docs/docs/auto-docs/screens/UserPortal/UserScreen/UserScreen/README.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / screens/UserPortal/UserScreen/UserScreen - -# screens/UserPortal/UserScreen/UserScreen - -## Functions - -- [default](functions/default.md) diff --git a/docs/docs/auto-docs/screens/UserPortal/UserScreen/UserScreen/functions/default.md b/docs/docs/auto-docs/screens/UserPortal/UserScreen/UserScreen/functions/default.md deleted file mode 100644 index 73faec6080..0000000000 --- a/docs/docs/auto-docs/screens/UserPortal/UserScreen/UserScreen/functions/default.md +++ /dev/null @@ -1,21 +0,0 @@ -[**talawa-admin**](../../../../../README.md) - -*** - -[talawa-admin](../../../../../modules.md) / [screens/UserPortal/UserScreen/UserScreen](../README.md) / default - -# Function: default() - -> **default**(): `Element` - -Defined in: [src/screens/UserPortal/UserScreen/UserScreen.tsx:34](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/UserPortal/UserScreen/UserScreen.tsx#L34) - -The UserScreen component serves as a container for user-specific pages -within an organization context. It provides layout and sidebar navigation -functionality based on the current organization ID and user roles. - -## Returns - -`Element` - -The UserScreen component. diff --git a/docs/docs/auto-docs/screens/UserPortal/Volunteer/Actions/Actions.mocks/README.md b/docs/docs/auto-docs/screens/UserPortal/Volunteer/Actions/Actions.mocks/README.md deleted file mode 100644 index e7efc11aeb..0000000000 --- a/docs/docs/auto-docs/screens/UserPortal/Volunteer/Actions/Actions.mocks/README.md +++ /dev/null @@ -1,13 +0,0 @@ -[**talawa-admin**](../../../../../README.md) - -*** - -[talawa-admin](../../../../../modules.md) / screens/UserPortal/Volunteer/Actions/Actions.mocks - -# screens/UserPortal/Volunteer/Actions/Actions.mocks - -## Variables - -- [EMPTY\_MOCKS](variables/EMPTY_MOCKS.md) -- [ERROR\_MOCKS](variables/ERROR_MOCKS.md) -- [MOCKS](variables/MOCKS.md) diff --git a/docs/docs/auto-docs/screens/UserPortal/Volunteer/Actions/Actions.mocks/variables/EMPTY_MOCKS.md b/docs/docs/auto-docs/screens/UserPortal/Volunteer/Actions/Actions.mocks/variables/EMPTY_MOCKS.md deleted file mode 100644 index 5d3e9f8f24..0000000000 --- a/docs/docs/auto-docs/screens/UserPortal/Volunteer/Actions/Actions.mocks/variables/EMPTY_MOCKS.md +++ /dev/null @@ -1,57 +0,0 @@ -[**talawa-admin**](../../../../../../README.md) - -*** - -[talawa-admin](../../../../../../modules.md) / [screens/UserPortal/Volunteer/Actions/Actions.mocks](../README.md) / EMPTY\_MOCKS - -# Variable: EMPTY\_MOCKS - -> `const` **EMPTY\_MOCKS**: `object`[] - -Defined in: [src/screens/UserPortal/Volunteer/Actions/Actions.mocks.ts:232](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/UserPortal/Volunteer/Actions/Actions.mocks.ts#L232) - -## Type declaration - -### request - -> **request**: `object` - -#### request.query - -> **query**: `DocumentNode` = `ACTION_ITEMS_BY_USER` - -#### request.variables - -> **variables**: `object` - -#### request.variables.orderBy - -> **orderBy**: `null` = `null` - -#### request.variables.userId - -> **userId**: `string` = `'userId'` - -#### request.variables.where - -> **where**: `object` - -#### request.variables.where.assigneeName - -> **assigneeName**: `string` = `''` - -#### request.variables.where.orgId - -> **orgId**: `string` = `'orgId'` - -### result - -> **result**: `object` - -#### result.data - -> **data**: `object` - -#### result.data.actionItemsByUser - -> **actionItemsByUser**: `never`[] = `[]` diff --git a/docs/docs/auto-docs/screens/UserPortal/Volunteer/Actions/Actions.mocks/variables/ERROR_MOCKS.md b/docs/docs/auto-docs/screens/UserPortal/Volunteer/Actions/Actions.mocks/variables/ERROR_MOCKS.md deleted file mode 100644 index f307866745..0000000000 --- a/docs/docs/auto-docs/screens/UserPortal/Volunteer/Actions/Actions.mocks/variables/ERROR_MOCKS.md +++ /dev/null @@ -1,49 +0,0 @@ -[**talawa-admin**](../../../../../../README.md) - -*** - -[talawa-admin](../../../../../../modules.md) / [screens/UserPortal/Volunteer/Actions/Actions.mocks](../README.md) / ERROR\_MOCKS - -# Variable: ERROR\_MOCKS - -> `const` **ERROR\_MOCKS**: `object`[] - -Defined in: [src/screens/UserPortal/Volunteer/Actions/Actions.mocks.ts:253](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/UserPortal/Volunteer/Actions/Actions.mocks.ts#L253) - -## Type declaration - -### error - -> **error**: `Error` - -### request - -> **request**: `object` - -#### request.query - -> **query**: `DocumentNode` = `ACTION_ITEMS_BY_USER` - -#### request.variables - -> **variables**: `object` - -#### request.variables.orderBy - -> **orderBy**: `null` = `null` - -#### request.variables.userId - -> **userId**: `string` = `'userId'` - -#### request.variables.where - -> **where**: `object` - -#### request.variables.where.assigneeName - -> **assigneeName**: `string` = `''` - -#### request.variables.where.orgId - -> **orgId**: `string` = `'orgId'` diff --git a/docs/docs/auto-docs/screens/UserPortal/Volunteer/Actions/Actions.mocks/variables/MOCKS.md b/docs/docs/auto-docs/screens/UserPortal/Volunteer/Actions/Actions.mocks/variables/MOCKS.md deleted file mode 100644 index c1b3bf882f..0000000000 --- a/docs/docs/auto-docs/screens/UserPortal/Volunteer/Actions/Actions.mocks/variables/MOCKS.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../../../README.md) - -*** - -[talawa-admin](../../../../../../modules.md) / [screens/UserPortal/Volunteer/Actions/Actions.mocks](../README.md) / MOCKS - -# Variable: MOCKS - -> `const` **MOCKS**: (\{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `orderBy`: `null`; `userId`: `string`; `where`: \{ `assigneeName`: `string`; `categoryName`: `undefined`; `orgId`: `string`; \}; \}; \}; `result`: \{ `data`: \{ `actionItemsByUser`: (\{ `_id`: `string`; `actionItemCategory`: \{ `_id`: `string`; `name`: `string`; \}; `allottedHours`: `number`; `assignee`: \{ `_id`: `string`; `user`: \{ `_id`: `string`; `firstName`: `string`; `image`: `null`; `lastName`: `string`; \}; \}; `assigneeGroup`: `null`; `assigneeType`: `string`; `assigner`: \{ `_id`: `string`; `firstName`: `string`; `image`: `null`; `lastName`: `string`; \}; `assignmentDate`: `string`; `completionDate`: `string`; `creator`: \{ `_id`: `string`; `firstName`: `string`; `lastName`: `string`; \}; `dueDate`: `string`; `event`: \{ `_id`: `string`; `title`: `string`; \}; `isCompleted`: `boolean`; `postCompletionNotes`: `string`; `preCompletionNotes`: `string`; \} \| \{ `_id`: `string`; `actionItemCategory`: \{ `_id`: `string`; `name`: `string`; \}; `allottedHours`: `number`; `assignee`: `null`; `assigneeGroup`: \{ `_id`: `string`; `name`: `string`; \}; `assigneeType`: `string`; `assigner`: \{ `_id`: `string`; `firstName`: `string`; `image`: `null`; `lastName`: `string`; \}; `assignmentDate`: `string`; `completionDate`: `string`; `creator`: \{ `_id`: `string`; `firstName`: `string`; `lastName`: `string`; \}; `dueDate`: `string`; `event`: \{ `_id`: `string`; `title`: `string`; \}; `isCompleted`: `boolean`; `postCompletionNotes`: `string`; `preCompletionNotes`: `string`; \} \| \{ `_id`: `string`; `actionItemCategory`: \{ `_id`: `string`; `name`: `string`; \}; `allottedHours`: `null`; `assignee`: \{ `_id`: `string`; `user`: \{ `_id`: `string`; `firstName`: `string`; `image`: `string`; `lastName`: `string`; \}; \}; `assigneeGroup`: `null`; `assigneeType`: `string`; `assigner`: \{ `_id`: `string`; `firstName`: `string`; `image`: `null`; `lastName`: `string`; \}; `assignmentDate`: `string`; `completionDate`: `string`; `creator`: \{ `_id`: `string`; `firstName`: `string`; `lastName`: `string`; \}; `dueDate`: `string`; `event`: \{ `_id`: `string`; `title`: `string`; \}; `isCompleted`: `boolean`; `postCompletionNotes`: `string`; `preCompletionNotes`: `string`; \})[]; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `orderBy`: `string`; `userId`: `string`; `where`: \{ `assigneeName`: `string`; `categoryName`: `undefined`; `orgId`: `string`; \}; \}; \}; `result`: \{ `data`: \{ `actionItemsByUser`: (\{ `_id`: `string`; `actionItemCategory`: \{ `_id`: `string`; `name`: `string`; \}; `allottedHours`: `number`; `assignee`: \{ `_id`: `string`; `user`: \{ `_id`: `string`; `firstName`: `string`; `image`: `null`; `lastName`: `string`; \}; \}; `assigneeGroup`: `null`; `assigneeType`: `string`; `assigner`: \{ `_id`: `string`; `firstName`: `string`; `image`: `null`; `lastName`: `string`; \}; `assignmentDate`: `string`; `completionDate`: `string`; `creator`: \{ `_id`: `string`; `firstName`: `string`; `lastName`: `string`; \}; `dueDate`: `string`; `event`: \{ `_id`: `string`; `title`: `string`; \}; `isCompleted`: `boolean`; `postCompletionNotes`: `string`; `preCompletionNotes`: `string`; \} \| \{ `_id`: `string`; `actionItemCategory`: \{ `_id`: `string`; `name`: `string`; \}; `allottedHours`: `number`; `assignee`: `null`; `assigneeGroup`: \{ `_id`: `string`; `name`: `string`; \}; `assigneeType`: `string`; `assigner`: \{ `_id`: `string`; `firstName`: `string`; `image`: `null`; `lastName`: `string`; \}; `assignmentDate`: `string`; `completionDate`: `string`; `creator`: \{ `_id`: `string`; `firstName`: `string`; `lastName`: `string`; \}; `dueDate`: `string`; `event`: \{ `_id`: `string`; `title`: `string`; \}; `isCompleted`: `boolean`; `postCompletionNotes`: `string`; `preCompletionNotes`: `string`; \})[]; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `orderBy`: `null`; `userId`: `string`; `where`: \{ `assigneeName`: `undefined`; `categoryName`: `string`; `orgId`: `string`; \}; \}; \}; `result`: \{ `data`: \{ `actionItemsByUser`: (\{ `_id`: `string`; `actionItemCategory`: \{ `_id`: `string`; `name`: `string`; \}; `allottedHours`: `number`; `assignee`: \{ `_id`: `string`; `user`: \{ `_id`: `string`; `firstName`: `string`; `image`: `null`; `lastName`: `string`; \}; \}; `assigneeGroup`: `null`; `assigneeType`: `string`; `assigner`: \{ `_id`: `string`; `firstName`: `string`; `image`: `null`; `lastName`: `string`; \}; `assignmentDate`: `string`; `completionDate`: `string`; `creator`: \{ `_id`: `string`; `firstName`: `string`; `lastName`: `string`; \}; `dueDate`: `string`; `event`: \{ `_id`: `string`; `title`: `string`; \}; `isCompleted`: `boolean`; `postCompletionNotes`: `string`; `preCompletionNotes`: `string`; \} \| \{ `_id`: `string`; `actionItemCategory`: \{ `_id`: `string`; `name`: `string`; \}; `allottedHours`: `number`; `assignee`: `null`; `assigneeGroup`: \{ `_id`: `string`; `name`: `string`; \}; `assigneeType`: `string`; `assigner`: \{ `_id`: `string`; `firstName`: `string`; `image`: `null`; `lastName`: `string`; \}; `assignmentDate`: `string`; `completionDate`: `string`; `creator`: \{ `_id`: `string`; `firstName`: `string`; `lastName`: `string`; \}; `dueDate`: `string`; `event`: \{ `_id`: `string`; `title`: `string`; \}; `isCompleted`: `boolean`; `postCompletionNotes`: `string`; `preCompletionNotes`: `string`; \})[]; \}; \}; \})[] - -Defined in: [src/screens/UserPortal/Volunteer/Actions/Actions.mocks.ts:121](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/UserPortal/Volunteer/Actions/Actions.mocks.ts#L121) diff --git a/docs/docs/auto-docs/screens/UserPortal/Volunteer/Actions/Actions/README.md b/docs/docs/auto-docs/screens/UserPortal/Volunteer/Actions/Actions/README.md deleted file mode 100644 index a1142db514..0000000000 --- a/docs/docs/auto-docs/screens/UserPortal/Volunteer/Actions/Actions/README.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../../README.md) - -*** - -[talawa-admin](../../../../../modules.md) / screens/UserPortal/Volunteer/Actions/Actions - -# screens/UserPortal/Volunteer/Actions/Actions - -## Functions - -- [default](functions/default.md) diff --git a/docs/docs/auto-docs/screens/UserPortal/Volunteer/Actions/Actions/functions/default.md b/docs/docs/auto-docs/screens/UserPortal/Volunteer/Actions/Actions/functions/default.md deleted file mode 100644 index 1c7a543f21..0000000000 --- a/docs/docs/auto-docs/screens/UserPortal/Volunteer/Actions/Actions/functions/default.md +++ /dev/null @@ -1,21 +0,0 @@ -[**talawa-admin**](../../../../../../README.md) - -*** - -[talawa-admin](../../../../../../modules.md) / [screens/UserPortal/Volunteer/Actions/Actions](../README.md) / default - -# Function: default() - -> **default**(): `JSX.Element` - -Defined in: [src/screens/UserPortal/Volunteer/Actions/Actions.tsx:60](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/UserPortal/Volunteer/Actions/Actions.tsx#L60) - -Component for managing and displaying action items within an organization. - -This component allows users to view, filter, sort, and create action items. It also handles fetching and displaying related data such as action item categories and members. - -## Returns - -`JSX.Element` - -The rendered component. diff --git a/docs/docs/auto-docs/screens/UserPortal/Volunteer/Groups/GroupModal/README.md b/docs/docs/auto-docs/screens/UserPortal/Volunteer/Groups/GroupModal/README.md deleted file mode 100644 index cda227a90a..0000000000 --- a/docs/docs/auto-docs/screens/UserPortal/Volunteer/Groups/GroupModal/README.md +++ /dev/null @@ -1,15 +0,0 @@ -[**talawa-admin**](../../../../../README.md) - -*** - -[talawa-admin](../../../../../modules.md) / screens/UserPortal/Volunteer/Groups/GroupModal - -# screens/UserPortal/Volunteer/Groups/GroupModal - -## Interfaces - -- [InterfaceGroupModal](interfaces/InterfaceGroupModal.md) - -## Functions - -- [default](functions/default.md) diff --git a/docs/docs/auto-docs/screens/UserPortal/Volunteer/Groups/GroupModal/functions/default.md b/docs/docs/auto-docs/screens/UserPortal/Volunteer/Groups/GroupModal/functions/default.md deleted file mode 100644 index 49c4418719..0000000000 --- a/docs/docs/auto-docs/screens/UserPortal/Volunteer/Groups/GroupModal/functions/default.md +++ /dev/null @@ -1,51 +0,0 @@ -[**talawa-admin**](../../../../../../README.md) - -*** - -[talawa-admin](../../../../../../modules.md) / [screens/UserPortal/Volunteer/Groups/GroupModal](../README.md) / default - -# Function: default() - -> **default**(`props`, `deprecatedLegacyContext`?): `ReactNode` - -Defined in: [src/screens/UserPortal/Volunteer/Groups/GroupModal.tsx:71](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/UserPortal/Volunteer/Groups/GroupModal.tsx#L71) - -A modal dialog for creating or editing a volunteer group. - -## Parameters - -### props - -[`InterfaceGroupModal`](../interfaces/InterfaceGroupModal.md) - -### deprecatedLegacyContext? - -`any` - -**Deprecated** - -**See** - -[React Docs](https://legacy.reactjs.org/docs/legacy-context.html#referencing-context-in-lifecycle-methods) - -## Returns - -`ReactNode` - -The rendered modal component. - -The `VolunteerGroupModal` component displays a form within a modal dialog for creating or editing a Volunteer Group. -It includes fields for entering the group name, description, volunteersRequired, and selecting volunteers/leaders. - -The modal includes: -- A header with a title indicating the current mode (create or edit) and a close button. -- A form with: - - An input field for entering the group name. - - A textarea for entering the group description. - - An input field for entering the number of volunteers required. -- A submit button to create or update the pledge. - -On form submission, the component either: -- Calls `updateVoluneerGroup` mutation to update an existing group, or - -Success or error messages are displayed using toast notifications based on the result of the mutation. diff --git a/docs/docs/auto-docs/screens/UserPortal/Volunteer/Groups/GroupModal/interfaces/InterfaceGroupModal.md b/docs/docs/auto-docs/screens/UserPortal/Volunteer/Groups/GroupModal/interfaces/InterfaceGroupModal.md deleted file mode 100644 index d09c775c03..0000000000 --- a/docs/docs/auto-docs/screens/UserPortal/Volunteer/Groups/GroupModal/interfaces/InterfaceGroupModal.md +++ /dev/null @@ -1,57 +0,0 @@ -[**talawa-admin**](../../../../../../README.md) - -*** - -[talawa-admin](../../../../../../modules.md) / [screens/UserPortal/Volunteer/Groups/GroupModal](../README.md) / InterfaceGroupModal - -# Interface: InterfaceGroupModal - -Defined in: [src/screens/UserPortal/Volunteer/Groups/GroupModal.tsx:35](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/UserPortal/Volunteer/Groups/GroupModal.tsx#L35) - -## Properties - -### eventId - -> **eventId**: `string` - -Defined in: [src/screens/UserPortal/Volunteer/Groups/GroupModal.tsx:38](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/UserPortal/Volunteer/Groups/GroupModal.tsx#L38) - -*** - -### group - -> **group**: [`InterfaceVolunteerGroupInfo`](../../../../../../utils/interfaces/interfaces/InterfaceVolunteerGroupInfo.md) - -Defined in: [src/screens/UserPortal/Volunteer/Groups/GroupModal.tsx:39](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/UserPortal/Volunteer/Groups/GroupModal.tsx#L39) - -*** - -### hide() - -> **hide**: () => `void` - -Defined in: [src/screens/UserPortal/Volunteer/Groups/GroupModal.tsx:37](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/UserPortal/Volunteer/Groups/GroupModal.tsx#L37) - -#### Returns - -`void` - -*** - -### isOpen - -> **isOpen**: `boolean` - -Defined in: [src/screens/UserPortal/Volunteer/Groups/GroupModal.tsx:36](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/UserPortal/Volunteer/Groups/GroupModal.tsx#L36) - -*** - -### refetchGroups() - -> **refetchGroups**: () => `void` - -Defined in: [src/screens/UserPortal/Volunteer/Groups/GroupModal.tsx:40](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/UserPortal/Volunteer/Groups/GroupModal.tsx#L40) - -#### Returns - -`void` diff --git a/docs/docs/auto-docs/screens/UserPortal/Volunteer/Groups/Groups.mocks/README.md b/docs/docs/auto-docs/screens/UserPortal/Volunteer/Groups/Groups.mocks/README.md deleted file mode 100644 index fec7ae3f06..0000000000 --- a/docs/docs/auto-docs/screens/UserPortal/Volunteer/Groups/Groups.mocks/README.md +++ /dev/null @@ -1,14 +0,0 @@ -[**talawa-admin**](../../../../../README.md) - -*** - -[talawa-admin](../../../../../modules.md) / screens/UserPortal/Volunteer/Groups/Groups.mocks - -# screens/UserPortal/Volunteer/Groups/Groups.mocks - -## Variables - -- [EMPTY\_MOCKS](variables/EMPTY_MOCKS.md) -- [ERROR\_MOCKS](variables/ERROR_MOCKS.md) -- [MOCKS](variables/MOCKS.md) -- [UPDATE\_ERROR\_MOCKS](variables/UPDATE_ERROR_MOCKS.md) diff --git a/docs/docs/auto-docs/screens/UserPortal/Volunteer/Groups/Groups.mocks/variables/EMPTY_MOCKS.md b/docs/docs/auto-docs/screens/UserPortal/Volunteer/Groups/Groups.mocks/variables/EMPTY_MOCKS.md deleted file mode 100644 index d0b72ceeb9..0000000000 --- a/docs/docs/auto-docs/screens/UserPortal/Volunteer/Groups/Groups.mocks/variables/EMPTY_MOCKS.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../../../README.md) - -*** - -[talawa-admin](../../../../../../modules.md) / [screens/UserPortal/Volunteer/Groups/Groups.mocks](../README.md) / EMPTY\_MOCKS - -# Variable: EMPTY\_MOCKS - -> `const` **EMPTY\_MOCKS**: (\{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `orderBy`: `null`; `where`: \{ `eventId`: `undefined`; `group`: `undefined`; `leaderName`: `null`; `name_contains`: `string`; `orgId`: `string`; `status`: `undefined`; `userId`: `string`; \}; \}; \}; `result`: \{ `data`: \{ `getEventVolunteerGroups`: `never`[]; `getVolunteerMembership`: `undefined`; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `orderBy`: `undefined`; `where`: \{ `eventId`: `string`; `group`: `string`; `leaderName`: `undefined`; `name_contains`: `undefined`; `orgId`: `undefined`; `status`: `string`; `userId`: `undefined`; \}; \}; \}; `result`: \{ `data`: \{ `getEventVolunteerGroups`: `undefined`; `getVolunteerMembership`: `never`[]; \}; \}; \})[] - -Defined in: [src/screens/UserPortal/Volunteer/Groups/Groups.mocks.ts:368](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/UserPortal/Volunteer/Groups/Groups.mocks.ts#L368) diff --git a/docs/docs/auto-docs/screens/UserPortal/Volunteer/Groups/Groups.mocks/variables/ERROR_MOCKS.md b/docs/docs/auto-docs/screens/UserPortal/Volunteer/Groups/Groups.mocks/variables/ERROR_MOCKS.md deleted file mode 100644 index a320536013..0000000000 --- a/docs/docs/auto-docs/screens/UserPortal/Volunteer/Groups/Groups.mocks/variables/ERROR_MOCKS.md +++ /dev/null @@ -1,53 +0,0 @@ -[**talawa-admin**](../../../../../../README.md) - -*** - -[talawa-admin](../../../../../../modules.md) / [screens/UserPortal/Volunteer/Groups/Groups.mocks](../README.md) / ERROR\_MOCKS - -# Variable: ERROR\_MOCKS - -> `const` **ERROR\_MOCKS**: `object`[] - -Defined in: [src/screens/UserPortal/Volunteer/Groups/Groups.mocks.ts:407](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/UserPortal/Volunteer/Groups/Groups.mocks.ts#L407) - -## Type declaration - -### error - -> **error**: `Error` - -### request - -> **request**: `object` - -#### request.query - -> **query**: `DocumentNode` = `EVENT_VOLUNTEER_GROUP_LIST` - -#### request.variables - -> **variables**: `object` - -#### request.variables.orderBy - -> **orderBy**: `null` = `null` - -#### request.variables.where - -> **where**: `object` - -#### request.variables.where.leaderName - -> **leaderName**: `null` = `null` - -#### request.variables.where.name\_contains - -> **name\_contains**: `string` = `''` - -#### request.variables.where.orgId - -> **orgId**: `string` = `'orgId'` - -#### request.variables.where.userId - -> **userId**: `string` = `'userId'` diff --git a/docs/docs/auto-docs/screens/UserPortal/Volunteer/Groups/Groups.mocks/variables/MOCKS.md b/docs/docs/auto-docs/screens/UserPortal/Volunteer/Groups/Groups.mocks/variables/MOCKS.md deleted file mode 100644 index f50ba3b7a2..0000000000 --- a/docs/docs/auto-docs/screens/UserPortal/Volunteer/Groups/Groups.mocks/variables/MOCKS.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../../../README.md) - -*** - -[talawa-admin](../../../../../../modules.md) / [screens/UserPortal/Volunteer/Groups/Groups.mocks](../README.md) / MOCKS - -# Variable: MOCKS - -> `const` **MOCKS**: (\{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `data`: `undefined`; `id`: `undefined`; `orderBy`: `null`; `status`: `undefined`; `where`: \{ `eventId`: `undefined`; `groupId`: `undefined`; `leaderName`: `null`; `name_contains`: `string`; `orgId`: `string`; `status`: `undefined`; `userId`: `string`; \}; \}; \}; `result`: \{ `data`: \{ `getEventVolunteerGroups`: (\{ `_id`: `string`; `assignments`: `never`[]; `createdAt`: `string`; `creator`: \{ `_id`: `string`; `firstName`: `string`; `image`: `null`; `lastName`: `string`; \}; `description`: `string`; `event`: \{ `_id`: `string`; \}; `leader`: \{ `_id`: `string`; `firstName`: `string`; `image`: `string`; `lastName`: `string`; \}; `name`: `string`; `volunteers`: `object`[]; `volunteersRequired`: `null`; \} \| \{ `_id`: `string`; `assignments`: `never`[]; `createdAt`: `string`; `creator`: \{ `_id`: `string`; `firstName`: `string`; `image`: `null`; `lastName`: `string`; \}; `description`: `string`; `event`: \{ `_id`: `string`; \}; `leader`: \{ `_id`: `string`; `firstName`: `string`; `image`: `null`; `lastName`: `string`; \}; `name`: `string`; `volunteers`: `object`[]; `volunteersRequired`: `null`; \})[]; `getVolunteerMembership`: `undefined`; `updateEventVolunteerGroup`: `undefined`; `updateVolunteerMembership`: `undefined`; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `data`: `undefined`; `id`: `undefined`; `orderBy`: `string`; `status`: `undefined`; `where`: \{ `eventId`: `undefined`; `groupId`: `undefined`; `leaderName`: `null`; `name_contains`: `string`; `orgId`: `string`; `status`: `undefined`; `userId`: `string`; \}; \}; \}; `result`: \{ `data`: \{ `getEventVolunteerGroups`: (\{ `_id`: `string`; `assignments`: `never`[]; `createdAt`: `string`; `creator`: \{ `_id`: `string`; `firstName`: `string`; `image`: `null`; `lastName`: `string`; \}; `description`: `string`; `event`: \{ `_id`: `string`; \}; `leader`: \{ `_id`: `string`; `firstName`: `string`; `image`: `string`; `lastName`: `string`; \}; `name`: `string`; `volunteers`: `object`[]; `volunteersRequired`: `null`; \} \| \{ `_id`: `string`; `assignments`: `never`[]; `createdAt`: `string`; `creator`: \{ `_id`: `string`; `firstName`: `string`; `image`: `null`; `lastName`: `string`; \}; `description`: `string`; `event`: \{ `_id`: `string`; \}; `leader`: \{ `_id`: `string`; `firstName`: `string`; `image`: `null`; `lastName`: `string`; \}; `name`: `string`; `volunteers`: `object`[]; `volunteersRequired`: `null`; \})[]; `getVolunteerMembership`: `undefined`; `updateEventVolunteerGroup`: `undefined`; `updateVolunteerMembership`: `undefined`; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `data`: `undefined`; `id`: `undefined`; `orderBy`: `null`; `status`: `undefined`; `where`: \{ `eventId`: `undefined`; `groupId`: `undefined`; `leaderName`: `string`; `name_contains`: `null`; `orgId`: `string`; `status`: `undefined`; `userId`: `string`; \}; \}; \}; `result`: \{ `data`: \{ `getEventVolunteerGroups`: (\{ `_id`: `string`; `assignments`: `never`[]; `createdAt`: `string`; `creator`: \{ `_id`: `string`; `firstName`: `string`; `image`: `null`; `lastName`: `string`; \}; `description`: `string`; `event`: \{ `_id`: `string`; \}; `leader`: \{ `_id`: `string`; `firstName`: `string`; `image`: `string`; `lastName`: `string`; \}; `name`: `string`; `volunteers`: `object`[]; `volunteersRequired`: `null`; \} \| \{ `_id`: `string`; `assignments`: `never`[]; `createdAt`: `string`; `creator`: \{ `_id`: `string`; `firstName`: `string`; `image`: `null`; `lastName`: `string`; \}; `description`: `string`; `event`: \{ `_id`: `string`; \}; `leader`: \{ `_id`: `string`; `firstName`: `string`; `image`: `null`; `lastName`: `string`; \}; `name`: `string`; `volunteers`: `object`[]; `volunteersRequired`: `null`; \})[]; `getVolunteerMembership`: `undefined`; `updateEventVolunteerGroup`: `undefined`; `updateVolunteerMembership`: `undefined`; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `data`: `undefined`; `id`: `undefined`; `orderBy`: `undefined`; `status`: `undefined`; `where`: \{ `eventId`: `string`; `groupId`: `string`; `leaderName`: `undefined`; `name_contains`: `undefined`; `orgId`: `undefined`; `status`: `string`; `userId`: `undefined`; \}; \}; \}; `result`: \{ `data`: \{ `getEventVolunteerGroups`: `undefined`; `getVolunteerMembership`: (\{ `_id`: `string`; `createdAt`: `string`; `event`: \{ `_id`: `string`; `startDate`: `string`; `title`: `string`; \}; `group`: \{ `_id`: `string`; `name`: `string`; \}; `status`: `string`; `volunteer`: \{ `_id`: `string`; `user`: \{ `_id`: `string`; `firstName`: `string`; `image`: `string`; `lastName`: `string`; \}; \}; \} \| \{ `_id`: `string`; `createdAt`: `string`; `event`: \{ `_id`: `string`; `startDate`: `string`; `title`: `string`; \}; `group`: \{ `_id`: `string`; `name`: `string`; \}; `status`: `string`; `volunteer`: \{ `_id`: `string`; `user`: \{ `_id`: `string`; `firstName`: `string`; `image`: `null`; `lastName`: `string`; \}; \}; \})[]; `updateEventVolunteerGroup`: `undefined`; `updateVolunteerMembership`: `undefined`; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `data`: `undefined`; `id`: `string`; `orderBy`: `undefined`; `status`: `string`; `where`: `undefined`; \}; \}; `result`: \{ `data`: \{ `getEventVolunteerGroups`: `undefined`; `getVolunteerMembership`: `undefined`; `updateEventVolunteerGroup`: `undefined`; `updateVolunteerMembership`: \{ `_id`: `string`; \}; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `data`: \{ `description`: `string`; `eventId`: `string`; `name`: `string`; `volunteersRequired`: `number`; \}; `id`: `string`; `orderBy`: `undefined`; `status`: `undefined`; `where`: `undefined`; \}; \}; `result`: \{ `data`: \{ `getEventVolunteerGroups`: `undefined`; `getVolunteerMembership`: `undefined`; `updateEventVolunteerGroup`: \{ `_id`: `string`; \}; `updateVolunteerMembership`: `undefined`; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `data`: \{ `description`: `undefined`; `eventId`: `string`; `name`: `undefined`; `volunteersRequired`: `undefined`; \}; `id`: `string`; `orderBy`: `undefined`; `status`: `undefined`; `where`: `undefined`; \}; \}; `result`: \{ `data`: \{ `getEventVolunteerGroups`: `undefined`; `getVolunteerMembership`: `undefined`; `updateEventVolunteerGroup`: \{ `_id`: `string`; \}; `updateVolunteerMembership`: `undefined`; \}; \}; \})[] - -Defined in: [src/screens/UserPortal/Volunteer/Groups/Groups.mocks.ts:163](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/UserPortal/Volunteer/Groups/Groups.mocks.ts#L163) diff --git a/docs/docs/auto-docs/screens/UserPortal/Volunteer/Groups/Groups.mocks/variables/UPDATE_ERROR_MOCKS.md b/docs/docs/auto-docs/screens/UserPortal/Volunteer/Groups/Groups.mocks/variables/UPDATE_ERROR_MOCKS.md deleted file mode 100644 index a91f9f5066..0000000000 --- a/docs/docs/auto-docs/screens/UserPortal/Volunteer/Groups/Groups.mocks/variables/UPDATE_ERROR_MOCKS.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../../../README.md) - -*** - -[talawa-admin](../../../../../../modules.md) / [screens/UserPortal/Volunteer/Groups/Groups.mocks](../README.md) / UPDATE\_ERROR\_MOCKS - -# Variable: UPDATE\_ERROR\_MOCKS - -> `const` **UPDATE\_ERROR\_MOCKS**: (\{ `error`: `undefined`; `request`: \{ `query`: `DocumentNode`; `variables`: \{ `data`: `undefined`; `id`: `undefined`; `status`: `undefined`; `where`: \{ `eventId`: `string`; `groupId`: `string`; `status`: `string`; \}; \}; \}; `result`: \{ `data`: \{ `getVolunteerMembership`: (\{ `_id`: `string`; `createdAt`: `string`; `event`: \{ `_id`: `string`; `startDate`: `string`; `title`: `string`; \}; `group`: \{ `_id`: `string`; `name`: `string`; \}; `status`: `string`; `volunteer`: \{ `_id`: `string`; `user`: \{ `_id`: `string`; `firstName`: `string`; `image`: `string`; `lastName`: `string`; \}; \}; \} \| \{ `_id`: `string`; `createdAt`: `string`; `event`: \{ `_id`: `string`; `startDate`: `string`; `title`: `string`; \}; `group`: \{ `_id`: `string`; `name`: `string`; \}; `status`: `string`; `volunteer`: \{ `_id`: `string`; `user`: \{ `_id`: `string`; `firstName`: `string`; `image`: `null`; `lastName`: `string`; \}; \}; \})[]; \}; \}; \} \| \{ `error`: `Error`; `request`: \{ `query`: `DocumentNode`; `variables`: \{ `data`: `undefined`; `id`: `string`; `status`: `string`; `where`: `undefined`; \}; \}; `result`: `undefined`; \} \| \{ `error`: `Error`; `request`: \{ `query`: `DocumentNode`; `variables`: \{ `data`: \{ `description`: `string`; `eventId`: `string`; `name`: `string`; `volunteersRequired`: `number`; \}; `id`: `string`; `status`: `undefined`; `where`: `undefined`; \}; \}; `result`: `undefined`; \})[] - -Defined in: [src/screens/UserPortal/Volunteer/Groups/Groups.mocks.ts:425](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/UserPortal/Volunteer/Groups/Groups.mocks.ts#L425) diff --git a/docs/docs/auto-docs/screens/UserPortal/Volunteer/Groups/Groups/README.md b/docs/docs/auto-docs/screens/UserPortal/Volunteer/Groups/Groups/README.md deleted file mode 100644 index b7f737ab07..0000000000 --- a/docs/docs/auto-docs/screens/UserPortal/Volunteer/Groups/Groups/README.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../../README.md) - -*** - -[talawa-admin](../../../../../modules.md) / screens/UserPortal/Volunteer/Groups/Groups - -# screens/UserPortal/Volunteer/Groups/Groups - -## Functions - -- [default](functions/default.md) diff --git a/docs/docs/auto-docs/screens/UserPortal/Volunteer/Groups/Groups/functions/default.md b/docs/docs/auto-docs/screens/UserPortal/Volunteer/Groups/Groups/functions/default.md deleted file mode 100644 index 9e6de78544..0000000000 --- a/docs/docs/auto-docs/screens/UserPortal/Volunteer/Groups/Groups/functions/default.md +++ /dev/null @@ -1,20 +0,0 @@ -[**talawa-admin**](../../../../../../README.md) - -*** - -[talawa-admin](../../../../../../modules.md) / [screens/UserPortal/Volunteer/Groups/Groups](../README.md) / default - -# Function: default() - -> **default**(): `JSX.Element` - -Defined in: [src/screens/UserPortal/Volunteer/Groups/Groups.tsx:55](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/UserPortal/Volunteer/Groups/Groups.tsx#L55) - -Component for managing volunteer groups for an event. -This component allows users to view, filter, sort, and create action items. It also provides a modal for creating and editing action items. - -## Returns - -`JSX.Element` - -The rendered component. diff --git a/docs/docs/auto-docs/screens/UserPortal/Volunteer/Invitations/Invitations.mocks/README.md b/docs/docs/auto-docs/screens/UserPortal/Volunteer/Invitations/Invitations.mocks/README.md deleted file mode 100644 index 205f594b35..0000000000 --- a/docs/docs/auto-docs/screens/UserPortal/Volunteer/Invitations/Invitations.mocks/README.md +++ /dev/null @@ -1,14 +0,0 @@ -[**talawa-admin**](../../../../../README.md) - -*** - -[talawa-admin](../../../../../modules.md) / screens/UserPortal/Volunteer/Invitations/Invitations.mocks - -# screens/UserPortal/Volunteer/Invitations/Invitations.mocks - -## Variables - -- [EMPTY\_MOCKS](variables/EMPTY_MOCKS.md) -- [ERROR\_MOCKS](variables/ERROR_MOCKS.md) -- [MOCKS](variables/MOCKS.md) -- [UPDATE\_ERROR\_MOCKS](variables/UPDATE_ERROR_MOCKS.md) diff --git a/docs/docs/auto-docs/screens/UserPortal/Volunteer/Invitations/Invitations.mocks/variables/EMPTY_MOCKS.md b/docs/docs/auto-docs/screens/UserPortal/Volunteer/Invitations/Invitations.mocks/variables/EMPTY_MOCKS.md deleted file mode 100644 index 4cd6ad1a54..0000000000 --- a/docs/docs/auto-docs/screens/UserPortal/Volunteer/Invitations/Invitations.mocks/variables/EMPTY_MOCKS.md +++ /dev/null @@ -1,53 +0,0 @@ -[**talawa-admin**](../../../../../../README.md) - -*** - -[talawa-admin](../../../../../../modules.md) / [screens/UserPortal/Volunteer/Invitations/Invitations.mocks](../README.md) / EMPTY\_MOCKS - -# Variable: EMPTY\_MOCKS - -> `const` **EMPTY\_MOCKS**: `object`[] - -Defined in: [src/screens/UserPortal/Volunteer/Invitations/Invitations.mocks.ts:189](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/UserPortal/Volunteer/Invitations/Invitations.mocks.ts#L189) - -## Type declaration - -### request - -> **request**: `object` - -#### request.query - -> **query**: `DocumentNode` = `USER_VOLUNTEER_MEMBERSHIP` - -#### request.variables - -> **variables**: `object` - -#### request.variables.where - -> **where**: `object` - -#### request.variables.where.filter - -> **filter**: `null` = `null` - -#### request.variables.where.status - -> **status**: `string` = `'invited'` - -#### request.variables.where.userId - -> **userId**: `string` = `'userId'` - -### result - -> **result**: `object` - -#### result.data - -> **data**: `object` - -#### result.data.getVolunteerMembership - -> **getVolunteerMembership**: `never`[] = `[]` diff --git a/docs/docs/auto-docs/screens/UserPortal/Volunteer/Invitations/Invitations.mocks/variables/ERROR_MOCKS.md b/docs/docs/auto-docs/screens/UserPortal/Volunteer/Invitations/Invitations.mocks/variables/ERROR_MOCKS.md deleted file mode 100644 index 7ace381637..0000000000 --- a/docs/docs/auto-docs/screens/UserPortal/Volunteer/Invitations/Invitations.mocks/variables/ERROR_MOCKS.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../../../README.md) - -*** - -[talawa-admin](../../../../../../modules.md) / [screens/UserPortal/Volunteer/Invitations/Invitations.mocks](../README.md) / ERROR\_MOCKS - -# Variable: ERROR\_MOCKS - -> `const` **ERROR\_MOCKS**: (\{ `error`: `Error`; `request`: \{ `query`: `DocumentNode`; `variables`: \{ `id`: `undefined`; `status`: `undefined`; `where`: \{ `filter`: `null`; `status`: `string`; `userId`: `string`; \}; \}; \}; \} \| \{ `error`: `Error`; `request`: \{ `query`: `DocumentNode`; `variables`: \{ `id`: `string`; `status`: `string`; `where`: `undefined`; \}; \}; \})[] - -Defined in: [src/screens/UserPortal/Volunteer/Invitations/Invitations.mocks.ts:209](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/UserPortal/Volunteer/Invitations/Invitations.mocks.ts#L209) diff --git a/docs/docs/auto-docs/screens/UserPortal/Volunteer/Invitations/Invitations.mocks/variables/MOCKS.md b/docs/docs/auto-docs/screens/UserPortal/Volunteer/Invitations/Invitations.mocks/variables/MOCKS.md deleted file mode 100644 index 6f471aa2ff..0000000000 --- a/docs/docs/auto-docs/screens/UserPortal/Volunteer/Invitations/Invitations.mocks/variables/MOCKS.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../../../README.md) - -*** - -[talawa-admin](../../../../../../modules.md) / [screens/UserPortal/Volunteer/Invitations/Invitations.mocks](../README.md) / MOCKS - -# Variable: MOCKS - -> `const` **MOCKS**: (\{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `id`: `undefined`; `orderBy`: `undefined`; `status`: `undefined`; `where`: \{ `eventTitle`: `undefined`; `filter`: `null`; `status`: `string`; `userId`: `string`; \}; \}; \}; `result`: \{ `data`: \{ `getVolunteerMembership`: (\{ `_id`: `string`; `createdAt`: `string`; `event`: \{ `_id`: `string`; `startDate`: `string`; `title`: `string`; \}; `group`: `null`; `status`: `string`; `volunteer`: \{ `_id`: `string`; `user`: \{ `_id`: `string`; `firstName`: `string`; `image`: `string`; `lastName`: `string`; \}; \}; \} \| \{ `_id`: `string`; `createdAt`: `string`; `event`: \{ `_id`: `string`; `startDate`: `string`; `title`: `string`; \}; `group`: \{ `_id`: `string`; `name`: `string`; \}; `status`: `string`; `volunteer`: \{ `_id`: `string`; `user`: \{ `_id`: `string`; `firstName`: `string`; `image`: `null`; `lastName`: `string`; \}; \}; \})[]; `updateVolunteerMembership`: `undefined`; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `id`: `undefined`; `orderBy`: `string`; `status`: `undefined`; `where`: \{ `eventTitle`: `undefined`; `filter`: `null`; `status`: `string`; `userId`: `string`; \}; \}; \}; `result`: \{ `data`: \{ `getVolunteerMembership`: (\{ `_id`: `string`; `createdAt`: `string`; `event`: \{ `_id`: `string`; `startDate`: `string`; `title`: `string`; \}; `group`: `null`; `status`: `string`; `volunteer`: \{ `_id`: `string`; `user`: \{ `_id`: `string`; `firstName`: `string`; `image`: `string`; `lastName`: `string`; \}; \}; \} \| \{ `_id`: `string`; `createdAt`: `string`; `event`: \{ `_id`: `string`; `startDate`: `string`; `title`: `string`; \}; `group`: \{ `_id`: `string`; `name`: `string`; \}; `status`: `string`; `volunteer`: \{ `_id`: `string`; `user`: \{ `_id`: `string`; `firstName`: `string`; `image`: `null`; `lastName`: `string`; \}; \}; \})[]; `updateVolunteerMembership`: `undefined`; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `id`: `undefined`; `orderBy`: `undefined`; `status`: `undefined`; `where`: \{ `eventTitle`: `undefined`; `filter`: `string`; `status`: `string`; `userId`: `string`; \}; \}; \}; `result`: \{ `data`: \{ `getVolunteerMembership`: `object`[]; `updateVolunteerMembership`: `undefined`; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `id`: `undefined`; `orderBy`: `undefined`; `status`: `undefined`; `where`: \{ `eventTitle`: `undefined`; `filter`: `string`; `status`: `string`; `userId`: `string`; \}; \}; \}; `result`: \{ `data`: \{ `getVolunteerMembership`: `object`[]; `updateVolunteerMembership`: `undefined`; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `id`: `undefined`; `orderBy`: `undefined`; `status`: `undefined`; `where`: \{ `eventTitle`: `string`; `filter`: `null`; `status`: `string`; `userId`: `string`; \}; \}; \}; `result`: \{ `data`: \{ `getVolunteerMembership`: `object`[]; `updateVolunteerMembership`: `undefined`; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `id`: `string`; `orderBy`: `undefined`; `status`: `string`; `where`: `undefined`; \}; \}; `result`: \{ `data`: \{ `getVolunteerMembership`: `undefined`; `updateVolunteerMembership`: \{ `_id`: `string`; \}; \}; \}; \})[] - -Defined in: [src/screens/UserPortal/Volunteer/Invitations/Invitations.mocks.ts:49](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/UserPortal/Volunteer/Invitations/Invitations.mocks.ts#L49) diff --git a/docs/docs/auto-docs/screens/UserPortal/Volunteer/Invitations/Invitations.mocks/variables/UPDATE_ERROR_MOCKS.md b/docs/docs/auto-docs/screens/UserPortal/Volunteer/Invitations/Invitations.mocks/variables/UPDATE_ERROR_MOCKS.md deleted file mode 100644 index bf117f8636..0000000000 --- a/docs/docs/auto-docs/screens/UserPortal/Volunteer/Invitations/Invitations.mocks/variables/UPDATE_ERROR_MOCKS.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../../../README.md) - -*** - -[talawa-admin](../../../../../../modules.md) / [screens/UserPortal/Volunteer/Invitations/Invitations.mocks](../README.md) / UPDATE\_ERROR\_MOCKS - -# Variable: UPDATE\_ERROR\_MOCKS - -> `const` **UPDATE\_ERROR\_MOCKS**: (\{ `error`: `undefined`; `request`: \{ `query`: `DocumentNode`; `variables`: \{ `id`: `undefined`; `status`: `undefined`; `where`: \{ `filter`: `null`; `status`: `string`; `userId`: `string`; \}; \}; \}; `result`: \{ `data`: \{ `getVolunteerMembership`: (\{ `_id`: `string`; `createdAt`: `string`; `event`: \{ `_id`: `string`; `startDate`: `string`; `title`: `string`; \}; `group`: `null`; `status`: `string`; `volunteer`: \{ `_id`: `string`; `user`: \{ `_id`: `string`; `firstName`: `string`; `image`: `string`; `lastName`: `string`; \}; \}; \} \| \{ `_id`: `string`; `createdAt`: `string`; `event`: \{ `_id`: `string`; `startDate`: `string`; `title`: `string`; \}; `group`: \{ `_id`: `string`; `name`: `string`; \}; `status`: `string`; `volunteer`: \{ `_id`: `string`; `user`: \{ `_id`: `string`; `firstName`: `string`; `image`: `null`; `lastName`: `string`; \}; \}; \})[]; \}; \}; \} \| \{ `error`: `Error`; `request`: \{ `query`: `DocumentNode`; `variables`: \{ `id`: `string`; `status`: `string`; `where`: `undefined`; \}; \}; `result`: `undefined`; \})[] - -Defined in: [src/screens/UserPortal/Volunteer/Invitations/Invitations.mocks.ts:235](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/UserPortal/Volunteer/Invitations/Invitations.mocks.ts#L235) diff --git a/docs/docs/auto-docs/screens/UserPortal/Volunteer/Invitations/Invitations/README.md b/docs/docs/auto-docs/screens/UserPortal/Volunteer/Invitations/Invitations/README.md deleted file mode 100644 index 42bc4fdae1..0000000000 --- a/docs/docs/auto-docs/screens/UserPortal/Volunteer/Invitations/Invitations/README.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../../README.md) - -*** - -[talawa-admin](../../../../../modules.md) / screens/UserPortal/Volunteer/Invitations/Invitations - -# screens/UserPortal/Volunteer/Invitations/Invitations - -## Functions - -- [default](functions/default.md) diff --git a/docs/docs/auto-docs/screens/UserPortal/Volunteer/Invitations/Invitations/functions/default.md b/docs/docs/auto-docs/screens/UserPortal/Volunteer/Invitations/Invitations/functions/default.md deleted file mode 100644 index 6aa909ab48..0000000000 --- a/docs/docs/auto-docs/screens/UserPortal/Volunteer/Invitations/Invitations/functions/default.md +++ /dev/null @@ -1,20 +0,0 @@ -[**talawa-admin**](../../../../../../README.md) - -*** - -[talawa-admin](../../../../../../modules.md) / [screens/UserPortal/Volunteer/Invitations/Invitations](../README.md) / default - -# Function: default() - -> **default**(): `Element` - -Defined in: [src/screens/UserPortal/Volunteer/Invitations/Invitations.tsx:32](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/UserPortal/Volunteer/Invitations/Invitations.tsx#L32) - -The `Invitations` component displays list of invites for the user to volunteer. -It allows the user to search, sort, and accept/reject invites. - -## Returns - -`Element` - -The rendered component displaying the upcoming events. diff --git a/docs/docs/auto-docs/screens/UserPortal/Volunteer/UpcomingEvents/UpcomingEvents.mocks/README.md b/docs/docs/auto-docs/screens/UserPortal/Volunteer/UpcomingEvents/UpcomingEvents.mocks/README.md deleted file mode 100644 index f5e969cd87..0000000000 --- a/docs/docs/auto-docs/screens/UserPortal/Volunteer/UpcomingEvents/UpcomingEvents.mocks/README.md +++ /dev/null @@ -1,14 +0,0 @@ -[**talawa-admin**](../../../../../README.md) - -*** - -[talawa-admin](../../../../../modules.md) / screens/UserPortal/Volunteer/UpcomingEvents/UpcomingEvents.mocks - -# screens/UserPortal/Volunteer/UpcomingEvents/UpcomingEvents.mocks - -## Variables - -- [CREATE\_ERROR\_MOCKS](variables/CREATE_ERROR_MOCKS.md) -- [EMPTY\_MOCKS](variables/EMPTY_MOCKS.md) -- [ERROR\_MOCKS](variables/ERROR_MOCKS.md) -- [MOCKS](variables/MOCKS.md) diff --git a/docs/docs/auto-docs/screens/UserPortal/Volunteer/UpcomingEvents/UpcomingEvents.mocks/variables/CREATE_ERROR_MOCKS.md b/docs/docs/auto-docs/screens/UserPortal/Volunteer/UpcomingEvents/UpcomingEvents.mocks/variables/CREATE_ERROR_MOCKS.md deleted file mode 100644 index 248c756c55..0000000000 --- a/docs/docs/auto-docs/screens/UserPortal/Volunteer/UpcomingEvents/UpcomingEvents.mocks/variables/CREATE_ERROR_MOCKS.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../../../README.md) - -*** - -[talawa-admin](../../../../../../modules.md) / [screens/UserPortal/Volunteer/UpcomingEvents/UpcomingEvents.mocks](../README.md) / CREATE\_ERROR\_MOCKS - -# Variable: CREATE\_ERROR\_MOCKS - -> `const` **CREATE\_ERROR\_MOCKS**: (\{ `error`: `undefined`; `request`: \{ `query`: `DocumentNode`; `variables`: \{ `data`: `undefined`; `first`: `null`; `location_contains`: `string`; `organization_id`: `string`; `skip`: `null`; `title_contains`: `string`; `upcomingOnly`: `boolean`; \}; \}; `result`: \{ `data`: \{ `eventsByOrganizationConnection`: `object`[]; \}; \}; \} \| \{ `error`: `Error`; `request`: \{ `query`: `DocumentNode`; `variables`: \{ `data`: \{ `event`: `string`; `group`: `null`; `status`: `string`; `userId`: `string`; \}; `first`: `undefined`; `location_contains`: `undefined`; `organization_id`: `undefined`; `skip`: `undefined`; `title_contains`: `undefined`; `upcomingOnly`: `undefined`; \}; \}; `result`: `undefined`; \})[] - -Defined in: [src/screens/UserPortal/Volunteer/UpcomingEvents/UpcomingEvents.mocks.ts:248](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/UserPortal/Volunteer/UpcomingEvents/UpcomingEvents.mocks.ts#L248) diff --git a/docs/docs/auto-docs/screens/UserPortal/Volunteer/UpcomingEvents/UpcomingEvents.mocks/variables/EMPTY_MOCKS.md b/docs/docs/auto-docs/screens/UserPortal/Volunteer/UpcomingEvents/UpcomingEvents.mocks/variables/EMPTY_MOCKS.md deleted file mode 100644 index 2c1a46dffb..0000000000 --- a/docs/docs/auto-docs/screens/UserPortal/Volunteer/UpcomingEvents/UpcomingEvents.mocks/variables/EMPTY_MOCKS.md +++ /dev/null @@ -1,61 +0,0 @@ -[**talawa-admin**](../../../../../../README.md) - -*** - -[talawa-admin](../../../../../../modules.md) / [screens/UserPortal/Volunteer/UpcomingEvents/UpcomingEvents.mocks](../README.md) / EMPTY\_MOCKS - -# Variable: EMPTY\_MOCKS - -> `const` **EMPTY\_MOCKS**: `object`[] - -Defined in: [src/screens/UserPortal/Volunteer/UpcomingEvents/UpcomingEvents.mocks.ts:210](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/UserPortal/Volunteer/UpcomingEvents/UpcomingEvents.mocks.ts#L210) - -## Type declaration - -### request - -> **request**: `object` - -#### request.query - -> **query**: `DocumentNode` = `USER_EVENTS_VOLUNTEER` - -#### request.variables - -> **variables**: `object` - -#### request.variables.first - -> **first**: `null` = `null` - -#### request.variables.location\_contains - -> **location\_contains**: `string` = `''` - -#### request.variables.organization\_id - -> **organization\_id**: `string` = `'orgId'` - -#### request.variables.skip - -> **skip**: `null` = `null` - -#### request.variables.title\_contains - -> **title\_contains**: `string` = `''` - -#### request.variables.upcomingOnly - -> **upcomingOnly**: `boolean` = `true` - -### result - -> **result**: `object` - -#### result.data - -> **data**: `object` - -#### result.data.eventsByOrganizationConnection - -> **eventsByOrganizationConnection**: `never`[] = `[]` diff --git a/docs/docs/auto-docs/screens/UserPortal/Volunteer/UpcomingEvents/UpcomingEvents.mocks/variables/ERROR_MOCKS.md b/docs/docs/auto-docs/screens/UserPortal/Volunteer/UpcomingEvents/UpcomingEvents.mocks/variables/ERROR_MOCKS.md deleted file mode 100644 index 351e4b519c..0000000000 --- a/docs/docs/auto-docs/screens/UserPortal/Volunteer/UpcomingEvents/UpcomingEvents.mocks/variables/ERROR_MOCKS.md +++ /dev/null @@ -1,53 +0,0 @@ -[**talawa-admin**](../../../../../../README.md) - -*** - -[talawa-admin](../../../../../../modules.md) / [screens/UserPortal/Volunteer/UpcomingEvents/UpcomingEvents.mocks](../README.md) / ERROR\_MOCKS - -# Variable: ERROR\_MOCKS - -> `const` **ERROR\_MOCKS**: `object`[] - -Defined in: [src/screens/UserPortal/Volunteer/UpcomingEvents/UpcomingEvents.mocks.ts:231](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/UserPortal/Volunteer/UpcomingEvents/UpcomingEvents.mocks.ts#L231) - -## Type declaration - -### error - -> **error**: `Error` - -### request - -> **request**: `object` - -#### request.query - -> **query**: `DocumentNode` = `USER_EVENTS_VOLUNTEER` - -#### request.variables - -> **variables**: `object` - -#### request.variables.first - -> **first**: `null` = `null` - -#### request.variables.location\_contains - -> **location\_contains**: `string` = `''` - -#### request.variables.organization\_id - -> **organization\_id**: `string` = `'orgId'` - -#### request.variables.skip - -> **skip**: `null` = `null` - -#### request.variables.title\_contains - -> **title\_contains**: `string` = `''` - -#### request.variables.upcomingOnly - -> **upcomingOnly**: `boolean` = `true` diff --git a/docs/docs/auto-docs/screens/UserPortal/Volunteer/UpcomingEvents/UpcomingEvents.mocks/variables/MOCKS.md b/docs/docs/auto-docs/screens/UserPortal/Volunteer/UpcomingEvents/UpcomingEvents.mocks/variables/MOCKS.md deleted file mode 100644 index cf4d8b39f0..0000000000 --- a/docs/docs/auto-docs/screens/UserPortal/Volunteer/UpcomingEvents/UpcomingEvents.mocks/variables/MOCKS.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../../../README.md) - -*** - -[talawa-admin](../../../../../../modules.md) / [screens/UserPortal/Volunteer/UpcomingEvents/UpcomingEvents.mocks](../README.md) / MOCKS - -# Variable: MOCKS - -> `const` **MOCKS**: (\{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `data`: `undefined`; `first`: `null`; `location_contains`: `string`; `organization_id`: `string`; `skip`: `null`; `title_contains`: `string`; `upcomingOnly`: `boolean`; \}; \}; `result`: \{ `data`: \{ `createVolunteerMembership`: `undefined`; `eventsByOrganizationConnection`: `object`[]; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `data`: \{ `event`: `string`; `group`: `null`; `status`: `string`; `userId`: `string`; \}; `first`: `undefined`; `location_contains`: `undefined`; `organization_id`: `undefined`; `skip`: `undefined`; `title_contains`: `undefined`; `upcomingOnly`: `undefined`; \}; \}; `result`: \{ `data`: \{ `createVolunteerMembership`: \{ `_id`: `string`; \}; `eventsByOrganizationConnection`: `undefined`; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `data`: \{ `event`: `string`; `group`: `string`; `status`: `string`; `userId`: `string`; \}; `first`: `undefined`; `location_contains`: `undefined`; `organization_id`: `undefined`; `skip`: `undefined`; `title_contains`: `undefined`; `upcomingOnly`: `undefined`; \}; \}; `result`: \{ `data`: \{ `createVolunteerMembership`: \{ `_id`: `string`; \}; `eventsByOrganizationConnection`: `undefined`; \}; \}; \})[] - -Defined in: [src/screens/UserPortal/Volunteer/UpcomingEvents/UpcomingEvents.mocks.ts:113](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/UserPortal/Volunteer/UpcomingEvents/UpcomingEvents.mocks.ts#L113) diff --git a/docs/docs/auto-docs/screens/UserPortal/Volunteer/UpcomingEvents/UpcomingEvents/README.md b/docs/docs/auto-docs/screens/UserPortal/Volunteer/UpcomingEvents/UpcomingEvents/README.md deleted file mode 100644 index b1e26a9030..0000000000 --- a/docs/docs/auto-docs/screens/UserPortal/Volunteer/UpcomingEvents/UpcomingEvents/README.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../../README.md) - -*** - -[talawa-admin](../../../../../modules.md) / screens/UserPortal/Volunteer/UpcomingEvents/UpcomingEvents - -# screens/UserPortal/Volunteer/UpcomingEvents/UpcomingEvents - -## Functions - -- [default](functions/default.md) diff --git a/docs/docs/auto-docs/screens/UserPortal/Volunteer/UpcomingEvents/UpcomingEvents/functions/default.md b/docs/docs/auto-docs/screens/UserPortal/Volunteer/UpcomingEvents/UpcomingEvents/functions/default.md deleted file mode 100644 index d96184bdbe..0000000000 --- a/docs/docs/auto-docs/screens/UserPortal/Volunteer/UpcomingEvents/UpcomingEvents/functions/default.md +++ /dev/null @@ -1,20 +0,0 @@ -[**talawa-admin**](../../../../../../README.md) - -*** - -[talawa-admin](../../../../../../modules.md) / [screens/UserPortal/Volunteer/UpcomingEvents/UpcomingEvents](../README.md) / default - -# Function: default() - -> **default**(): `Element` - -Defined in: [src/screens/UserPortal/Volunteer/UpcomingEvents/UpcomingEvents.tsx:42](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/UserPortal/Volunteer/UpcomingEvents/UpcomingEvents.tsx#L42) - -The `UpcomingEvents` component displays list of upcoming events for the user to volunteer. -It allows the user to search, sort, and volunteer for events/volunteer groups. - -## Returns - -`Element` - -The rendered component displaying the upcoming events. diff --git a/docs/docs/auto-docs/screens/UserPortal/Volunteer/VolunteerManagement/README.md b/docs/docs/auto-docs/screens/UserPortal/Volunteer/VolunteerManagement/README.md deleted file mode 100644 index 0953d11021..0000000000 --- a/docs/docs/auto-docs/screens/UserPortal/Volunteer/VolunteerManagement/README.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / screens/UserPortal/Volunteer/VolunteerManagement - -# screens/UserPortal/Volunteer/VolunteerManagement - -## Functions - -- [default](functions/default.md) diff --git a/docs/docs/auto-docs/screens/UserPortal/Volunteer/VolunteerManagement/functions/default.md b/docs/docs/auto-docs/screens/UserPortal/Volunteer/VolunteerManagement/functions/default.md deleted file mode 100644 index 02894531ea..0000000000 --- a/docs/docs/auto-docs/screens/UserPortal/Volunteer/VolunteerManagement/functions/default.md +++ /dev/null @@ -1,25 +0,0 @@ -[**talawa-admin**](../../../../../README.md) - -*** - -[talawa-admin](../../../../../modules.md) / [screens/UserPortal/Volunteer/VolunteerManagement](../README.md) / default - -# Function: default() - -> **default**(): `Element` - -Defined in: [src/screens/UserPortal/Volunteer/VolunteerManagement.tsx:58](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/UserPortal/Volunteer/VolunteerManagement.tsx#L58) - -`VolunteerManagement` component handles the display and navigation of different event management sections. - -It provides a tabbed interface for: -- Viewing upcoming events to volunteer -- Managing volunteer requests -- Managing volunteer invitations -- Managing volunteer groups - -## Returns - -`Element` - -JSX.Element - The `VolunteerManagement` component. diff --git a/docs/docs/auto-docs/screens/Users/Users/README.md b/docs/docs/auto-docs/screens/Users/Users/README.md deleted file mode 100644 index c5507d7ad8..0000000000 --- a/docs/docs/auto-docs/screens/Users/Users/README.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / screens/Users/Users - -# screens/Users/Users - -## Functions - -- [default](functions/default.md) diff --git a/docs/docs/auto-docs/screens/Users/Users/functions/default.md b/docs/docs/auto-docs/screens/Users/Users/functions/default.md deleted file mode 100644 index bf66bead1f..0000000000 --- a/docs/docs/auto-docs/screens/Users/Users/functions/default.md +++ /dev/null @@ -1,55 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [screens/Users/Users](../README.md) / default - -# Function: default() - -> **default**(): `Element` - -Defined in: [src/screens/Users/Users.tsx:64](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/Users/Users.tsx#L64) - -The `Users` component is responsible for displaying a list of users in a paginated and sortable format. -It supports search functionality, filtering, and sorting of users. The component integrates with GraphQL -for fetching and managing user data and displays results with infinite scrolling. - -## Features: -- **Search:** Allows users to search for users by their first name. -- **Sorting:** Provides options to sort users by creation date (newest or oldest). -- **Filtering:** Enables filtering users based on their roles (admin, superadmin, user, etc.). -- **Pagination:** Utilizes infinite scrolling to load more users as the user scrolls down. - -## GraphQL Queries: -- `USER_LIST`: Fetches a list of users with specified search, sorting, and pagination parameters. -- `ORGANIZATION_CONNECTION_LIST`: Fetches a list of organizations to verify organization existence. - -## Component State: -- `isLoading`: Indicates whether the component is currently loading data. -- `hasMore`: Indicates if there are more users to load. -- `isLoadingMore`: Indicates if more users are currently being loaded. -- `searchByName`: The current search query for user names. -- `sortingOption`: The current sorting option (newest or oldest). -- `filteringOption`: The current filtering option (admin, superadmin, user, cancel). -- `displayedUsers`: The list of users currently displayed, filtered and sorted. - -## Event Handlers: -- `handleSearch`: Handles searching users by name and refetches the user list. -- `handleSearchByEnter`: Handles search input when the Enter key is pressed. -- `handleSearchByBtnClick`: Handles search input when the search button is clicked. -- `resetAndRefetch`: Resets search and refetches the user list with default parameters. -- `loadMoreUsers`: Loads more users when scrolling reaches the end of the list. -- `handleSorting`: Updates sorting option and refetches the user list. -- `handleFiltering`: Updates filtering option and refetches the user list. - -## Rendering: -- Displays a search input and button for searching users. -- Provides dropdowns for sorting and filtering users. -- Renders a table of users with infinite scrolling support. -- Shows appropriate messages when no users are found or when search yields no results. - -## Returns - -`Element` - -The rendered `Users` component. diff --git a/docs/docs/auto-docs/screens/Users/UsersMocks/README.md b/docs/docs/auto-docs/screens/Users/UsersMocks/README.md deleted file mode 100644 index b81d997236..0000000000 --- a/docs/docs/auto-docs/screens/Users/UsersMocks/README.md +++ /dev/null @@ -1,13 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / screens/Users/UsersMocks - -# screens/Users/UsersMocks - -## Variables - -- [EMPTY\_MOCKS](variables/EMPTY_MOCKS.md) -- [MOCKS](variables/MOCKS.md) -- [MOCKS2](variables/MOCKS2.md) diff --git a/docs/docs/auto-docs/screens/Users/UsersMocks/variables/EMPTY_MOCKS.md b/docs/docs/auto-docs/screens/Users/UsersMocks/variables/EMPTY_MOCKS.md deleted file mode 100644 index d0e9371f44..0000000000 --- a/docs/docs/auto-docs/screens/Users/UsersMocks/variables/EMPTY_MOCKS.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [screens/Users/UsersMocks](../README.md) / EMPTY\_MOCKS - -# Variable: EMPTY\_MOCKS - -> `const` **EMPTY\_MOCKS**: (\{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `first`: `number`; `firstName_contains`: `string`; `lastName_contains`: `string`; `skip`: `number`; \}; \}; `result`: \{ `data`: \{ `organizationsConnection`: `undefined`; `users`: `never`[]; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: `undefined`; \}; `result`: \{ `data`: \{ `organizationsConnection`: `never`[]; `users`: `undefined`; \}; \}; \})[] - -Defined in: [src/screens/Users/UsersMocks.ts:477](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/Users/UsersMocks.ts#L477) diff --git a/docs/docs/auto-docs/screens/Users/UsersMocks/variables/MOCKS.md b/docs/docs/auto-docs/screens/Users/UsersMocks/variables/MOCKS.md deleted file mode 100644 index 749f540de9..0000000000 --- a/docs/docs/auto-docs/screens/Users/UsersMocks/variables/MOCKS.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [screens/Users/UsersMocks](../README.md) / MOCKS - -# Variable: MOCKS - -> `const` **MOCKS**: (\{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `first`: `undefined`; `firstName_contains`: `undefined`; `id`: `string`; `lastName_contains`: `undefined`; `skip`: `undefined`; \}; \}; `result`: \{ `data`: \{ `organizationsConnection`: `undefined`; `user`: \{ `email`: `string`; `firstName`: `string`; `image`: `string`; `lastName`: `string`; \}; `users`: `undefined`; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `first`: `number`; `firstName_contains`: `string`; `id`: `undefined`; `lastName_contains`: `string`; `skip`: `number`; \}; \}; `result`: \{ `data`: \{ `organizationsConnection`: `undefined`; `user`: `undefined`; `users`: `object`[]; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: `undefined`; \}; `result`: \{ `data`: \{ `organizationsConnection`: `object`[]; `user`: `undefined`; `users`: `undefined`; \}; \}; \})[] - -Defined in: [src/screens/Users/UsersMocks.ts:7](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/Users/UsersMocks.ts#L7) diff --git a/docs/docs/auto-docs/screens/Users/UsersMocks/variables/MOCKS2.md b/docs/docs/auto-docs/screens/Users/UsersMocks/variables/MOCKS2.md deleted file mode 100644 index b3381bf25f..0000000000 --- a/docs/docs/auto-docs/screens/Users/UsersMocks/variables/MOCKS2.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [screens/Users/UsersMocks](../README.md) / MOCKS2 - -# Variable: MOCKS2 - -> `const` **MOCKS2**: (\{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `first`: `undefined`; `firstName_contains`: `undefined`; `id`: `string`; `lastName_contains`: `undefined`; `skip`: `undefined`; \}; \}; `result`: \{ `data`: \{ `organizationsConnection`: `undefined`; `user`: \{ `email`: `string`; `firstName`: `string`; `image`: `string`; `lastName`: `string`; \}; `users`: `undefined`; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `first`: `number`; `firstName_contains`: `string`; `id`: `undefined`; `lastName_contains`: `string`; `skip`: `number`; \}; \}; `result`: \{ `data`: \{ `organizationsConnection`: `undefined`; `user`: `undefined`; `users`: `object`[]; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: `undefined`; \}; `result`: \{ `data`: \{ `organizationsConnection`: `object`[]; `user`: `undefined`; `users`: `undefined`; \}; \}; \})[] - -Defined in: [src/screens/Users/UsersMocks.ts:242](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/screens/Users/UsersMocks.ts#L242) diff --git a/docs/docs/auto-docs/setup/askAndSetDockerOption/askAndSetDockerOption/README.md b/docs/docs/auto-docs/setup/askAndSetDockerOption/askAndSetDockerOption/README.md deleted file mode 100644 index 5bc0942e50..0000000000 --- a/docs/docs/auto-docs/setup/askAndSetDockerOption/askAndSetDockerOption/README.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / setup/askAndSetDockerOption/askAndSetDockerOption - -# setup/askAndSetDockerOption/askAndSetDockerOption - -## Functions - -- [default](functions/default.md) diff --git a/docs/docs/auto-docs/setup/askAndSetDockerOption/askAndSetDockerOption/functions/default.md b/docs/docs/auto-docs/setup/askAndSetDockerOption/askAndSetDockerOption/functions/default.md deleted file mode 100644 index a7dfaf5c3d..0000000000 --- a/docs/docs/auto-docs/setup/askAndSetDockerOption/askAndSetDockerOption/functions/default.md +++ /dev/null @@ -1,15 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [setup/askAndSetDockerOption/askAndSetDockerOption](../README.md) / default - -# Function: default() - -> **default**(): `Promise`\<`void`\> - -Defined in: [src/setup/askAndSetDockerOption/askAndSetDockerOption.ts:6](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/setup/askAndSetDockerOption/askAndSetDockerOption.ts#L6) - -## Returns - -`Promise`\<`void`\> diff --git a/docs/docs/auto-docs/setup/askAndUpdatePort/askAndUpdatePort/README.md b/docs/docs/auto-docs/setup/askAndUpdatePort/askAndUpdatePort/README.md deleted file mode 100644 index 4e2b85a2e9..0000000000 --- a/docs/docs/auto-docs/setup/askAndUpdatePort/askAndUpdatePort/README.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / setup/askAndUpdatePort/askAndUpdatePort - -# setup/askAndUpdatePort/askAndUpdatePort - -## Functions - -- [default](functions/default.md) diff --git a/docs/docs/auto-docs/setup/askAndUpdatePort/askAndUpdatePort/functions/default.md b/docs/docs/auto-docs/setup/askAndUpdatePort/askAndUpdatePort/functions/default.md deleted file mode 100644 index cdd8c3a864..0000000000 --- a/docs/docs/auto-docs/setup/askAndUpdatePort/askAndUpdatePort/functions/default.md +++ /dev/null @@ -1,15 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [setup/askAndUpdatePort/askAndUpdatePort](../README.md) / default - -# Function: default() - -> **default**(): `Promise`\<`void`\> - -Defined in: [src/setup/askAndUpdatePort/askAndUpdatePort.ts:6](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/setup/askAndUpdatePort/askAndUpdatePort.ts#L6) - -## Returns - -`Promise`\<`void`\> diff --git a/docs/docs/auto-docs/setup/askForCustomPort/askForCustomPort/README.md b/docs/docs/auto-docs/setup/askForCustomPort/askForCustomPort/README.md deleted file mode 100644 index c8b95ca472..0000000000 --- a/docs/docs/auto-docs/setup/askForCustomPort/askForCustomPort/README.md +++ /dev/null @@ -1,13 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / setup/askForCustomPort/askForCustomPort - -# setup/askForCustomPort/askForCustomPort - -## Functions - -- [askForCustomPort](functions/askForCustomPort.md) -- [reservedPortWarning](functions/reservedPortWarning.md) -- [validatePort](functions/validatePort.md) diff --git a/docs/docs/auto-docs/setup/askForCustomPort/askForCustomPort/functions/askForCustomPort.md b/docs/docs/auto-docs/setup/askForCustomPort/askForCustomPort/functions/askForCustomPort.md deleted file mode 100644 index 6312fdba2e..0000000000 --- a/docs/docs/auto-docs/setup/askForCustomPort/askForCustomPort/functions/askForCustomPort.md +++ /dev/null @@ -1,15 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [setup/askForCustomPort/askForCustomPort](../README.md) / askForCustomPort - -# Function: askForCustomPort() - -> **askForCustomPort**(): `Promise`\<`number`\> - -Defined in: [src/setup/askForCustomPort/askForCustomPort.ts:32](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/setup/askForCustomPort/askForCustomPort.ts#L32) - -## Returns - -`Promise`\<`number`\> diff --git a/docs/docs/auto-docs/setup/askForCustomPort/askForCustomPort/functions/reservedPortWarning.md b/docs/docs/auto-docs/setup/askForCustomPort/askForCustomPort/functions/reservedPortWarning.md deleted file mode 100644 index f74879de2c..0000000000 --- a/docs/docs/auto-docs/setup/askForCustomPort/askForCustomPort/functions/reservedPortWarning.md +++ /dev/null @@ -1,21 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [setup/askForCustomPort/askForCustomPort](../README.md) / reservedPortWarning - -# Function: reservedPortWarning() - -> **reservedPortWarning**(`port`): `Promise`\<`boolean`\> - -Defined in: [src/setup/askForCustomPort/askForCustomPort.ts:19](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/setup/askForCustomPort/askForCustomPort.ts#L19) - -## Parameters - -### port - -`number` - -## Returns - -`Promise`\<`boolean`\> diff --git a/docs/docs/auto-docs/setup/askForCustomPort/askForCustomPort/functions/validatePort.md b/docs/docs/auto-docs/setup/askForCustomPort/askForCustomPort/functions/validatePort.md deleted file mode 100644 index fd68c7b962..0000000000 --- a/docs/docs/auto-docs/setup/askForCustomPort/askForCustomPort/functions/validatePort.md +++ /dev/null @@ -1,21 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [setup/askForCustomPort/askForCustomPort](../README.md) / validatePort - -# Function: validatePort() - -> **validatePort**(`input`): `string` \| `boolean` - -Defined in: [src/setup/askForCustomPort/askForCustomPort.ts:6](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/setup/askForCustomPort/askForCustomPort.ts#L6) - -## Parameters - -### input - -`string` - -## Returns - -`string` \| `boolean` diff --git a/docs/docs/auto-docs/setup/askForDocker/askForDocker/README.md b/docs/docs/auto-docs/setup/askForDocker/askForDocker/README.md deleted file mode 100644 index b583b3e007..0000000000 --- a/docs/docs/auto-docs/setup/askForDocker/askForDocker/README.md +++ /dev/null @@ -1,12 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / setup/askForDocker/askForDocker - -# setup/askForDocker/askForDocker - -## Functions - -- [askAndUpdateTalawaApiUrl](functions/askAndUpdateTalawaApiUrl.md) -- [askForDocker](functions/askForDocker.md) diff --git a/docs/docs/auto-docs/setup/askForDocker/askForDocker/functions/askAndUpdateTalawaApiUrl.md b/docs/docs/auto-docs/setup/askForDocker/askForDocker/functions/askAndUpdateTalawaApiUrl.md deleted file mode 100644 index d28d2e7bf0..0000000000 --- a/docs/docs/auto-docs/setup/askForDocker/askForDocker/functions/askAndUpdateTalawaApiUrl.md +++ /dev/null @@ -1,15 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [setup/askForDocker/askForDocker](../README.md) / askAndUpdateTalawaApiUrl - -# Function: askAndUpdateTalawaApiUrl() - -> **askAndUpdateTalawaApiUrl**(): `Promise`\<`void`\> - -Defined in: [src/setup/askForDocker/askForDocker.ts:33](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/setup/askForDocker/askForDocker.ts#L33) - -## Returns - -`Promise`\<`void`\> diff --git a/docs/docs/auto-docs/setup/askForDocker/askForDocker/functions/askForDocker.md b/docs/docs/auto-docs/setup/askForDocker/askForDocker/functions/askForDocker.md deleted file mode 100644 index beaa5d6339..0000000000 --- a/docs/docs/auto-docs/setup/askForDocker/askForDocker/functions/askForDocker.md +++ /dev/null @@ -1,15 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [setup/askForDocker/askForDocker](../README.md) / askForDocker - -# Function: askForDocker() - -> **askForDocker**(): `Promise`\<`string`\> - -Defined in: [src/setup/askForDocker/askForDocker.ts:12](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/setup/askForDocker/askForDocker.ts#L12) - -## Returns - -`Promise`\<`string`\> diff --git a/docs/docs/auto-docs/setup/askForTalawaApiUrl/askForTalawaApiUrl/README.md b/docs/docs/auto-docs/setup/askForTalawaApiUrl/askForTalawaApiUrl/README.md deleted file mode 100644 index 6dc585fbca..0000000000 --- a/docs/docs/auto-docs/setup/askForTalawaApiUrl/askForTalawaApiUrl/README.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / setup/askForTalawaApiUrl/askForTalawaApiUrl - -# setup/askForTalawaApiUrl/askForTalawaApiUrl - -## Functions - -- [askForTalawaApiUrl](functions/askForTalawaApiUrl.md) diff --git a/docs/docs/auto-docs/setup/askForTalawaApiUrl/askForTalawaApiUrl/functions/askForTalawaApiUrl.md b/docs/docs/auto-docs/setup/askForTalawaApiUrl/askForTalawaApiUrl/functions/askForTalawaApiUrl.md deleted file mode 100644 index 96ee82e90d..0000000000 --- a/docs/docs/auto-docs/setup/askForTalawaApiUrl/askForTalawaApiUrl/functions/askForTalawaApiUrl.md +++ /dev/null @@ -1,15 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [setup/askForTalawaApiUrl/askForTalawaApiUrl](../README.md) / askForTalawaApiUrl - -# Function: askForTalawaApiUrl() - -> **askForTalawaApiUrl**(): `Promise`\<`string`\> - -Defined in: [src/setup/askForTalawaApiUrl/askForTalawaApiUrl.ts:3](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/setup/askForTalawaApiUrl/askForTalawaApiUrl.ts#L3) - -## Returns - -`Promise`\<`string`\> diff --git a/docs/docs/auto-docs/setup/checkConnection/checkConnection/README.md b/docs/docs/auto-docs/setup/checkConnection/checkConnection/README.md deleted file mode 100644 index fc95bee4c5..0000000000 --- a/docs/docs/auto-docs/setup/checkConnection/checkConnection/README.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / setup/checkConnection/checkConnection - -# setup/checkConnection/checkConnection - -## Functions - -- [checkConnection](functions/checkConnection.md) diff --git a/docs/docs/auto-docs/setup/checkConnection/checkConnection/functions/checkConnection.md b/docs/docs/auto-docs/setup/checkConnection/checkConnection/functions/checkConnection.md deleted file mode 100644 index fb4325546d..0000000000 --- a/docs/docs/auto-docs/setup/checkConnection/checkConnection/functions/checkConnection.md +++ /dev/null @@ -1,21 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [setup/checkConnection/checkConnection](../README.md) / checkConnection - -# Function: checkConnection() - -> **checkConnection**(`url`): `Promise`\<`any`\> - -Defined in: [src/setup/checkConnection/checkConnection.ts:1](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/setup/checkConnection/checkConnection.ts#L1) - -## Parameters - -### url - -`string` - -## Returns - -`Promise`\<`any`\> diff --git a/docs/docs/auto-docs/setup/checkEnvFile/checkEnvFile/README.md b/docs/docs/auto-docs/setup/checkEnvFile/checkEnvFile/README.md deleted file mode 100644 index d31ac84642..0000000000 --- a/docs/docs/auto-docs/setup/checkEnvFile/checkEnvFile/README.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / setup/checkEnvFile/checkEnvFile - -# setup/checkEnvFile/checkEnvFile - -## Functions - -- [checkEnvFile](functions/checkEnvFile.md) diff --git a/docs/docs/auto-docs/setup/checkEnvFile/checkEnvFile/functions/checkEnvFile.md b/docs/docs/auto-docs/setup/checkEnvFile/checkEnvFile/functions/checkEnvFile.md deleted file mode 100644 index 9215b53b2c..0000000000 --- a/docs/docs/auto-docs/setup/checkEnvFile/checkEnvFile/functions/checkEnvFile.md +++ /dev/null @@ -1,15 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [setup/checkEnvFile/checkEnvFile](../README.md) / checkEnvFile - -# Function: checkEnvFile() - -> **checkEnvFile**(): `void` - -Defined in: [src/setup/checkEnvFile/checkEnvFile.ts:6](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/setup/checkEnvFile/checkEnvFile.ts#L6) - -## Returns - -`void` diff --git a/docs/docs/auto-docs/setup/updateEnvFile/updateEnvFile/README.md b/docs/docs/auto-docs/setup/updateEnvFile/updateEnvFile/README.md deleted file mode 100644 index 2737884456..0000000000 --- a/docs/docs/auto-docs/setup/updateEnvFile/updateEnvFile/README.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / setup/updateEnvFile/updateEnvFile - -# setup/updateEnvFile/updateEnvFile - -## Functions - -- [default](functions/default.md) diff --git a/docs/docs/auto-docs/setup/updateEnvFile/updateEnvFile/functions/default.md b/docs/docs/auto-docs/setup/updateEnvFile/updateEnvFile/functions/default.md deleted file mode 100644 index 8e62abf2d6..0000000000 --- a/docs/docs/auto-docs/setup/updateEnvFile/updateEnvFile/functions/default.md +++ /dev/null @@ -1,25 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [setup/updateEnvFile/updateEnvFile](../README.md) / default - -# Function: default() - -> **default**(`key`, `value`): `void` - -Defined in: [src/setup/updateEnvFile/updateEnvFile.ts:3](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/setup/updateEnvFile/updateEnvFile.ts#L3) - -## Parameters - -### key - -`string` - -### value - -`string` - -## Returns - -`void` diff --git a/docs/docs/auto-docs/setup/validateRecaptcha/validateRecaptcha/README.md b/docs/docs/auto-docs/setup/validateRecaptcha/validateRecaptcha/README.md deleted file mode 100644 index 0cd2f31bb8..0000000000 --- a/docs/docs/auto-docs/setup/validateRecaptcha/validateRecaptcha/README.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / setup/validateRecaptcha/validateRecaptcha - -# setup/validateRecaptcha/validateRecaptcha - -## Functions - -- [validateRecaptcha](functions/validateRecaptcha.md) diff --git a/docs/docs/auto-docs/setup/validateRecaptcha/validateRecaptcha/functions/validateRecaptcha.md b/docs/docs/auto-docs/setup/validateRecaptcha/validateRecaptcha/functions/validateRecaptcha.md deleted file mode 100644 index f02de66640..0000000000 --- a/docs/docs/auto-docs/setup/validateRecaptcha/validateRecaptcha/functions/validateRecaptcha.md +++ /dev/null @@ -1,21 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [setup/validateRecaptcha/validateRecaptcha](../README.md) / validateRecaptcha - -# Function: validateRecaptcha() - -> **validateRecaptcha**(`string`): `boolean` - -Defined in: [src/setup/validateRecaptcha/validateRecaptcha.ts:1](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/setup/validateRecaptcha/validateRecaptcha.ts#L1) - -## Parameters - -### string - -`string` - -## Returns - -`boolean` diff --git a/docs/docs/auto-docs/setupTests/README.md b/docs/docs/auto-docs/setupTests/README.md deleted file mode 100644 index 60ca3ade7d..0000000000 --- a/docs/docs/auto-docs/setupTests/README.md +++ /dev/null @@ -1,7 +0,0 @@ -[**talawa-admin**](../README.md) - -*** - -[talawa-admin](../modules.md) / setupTests - -# setupTests diff --git a/docs/docs/auto-docs/state/README.md b/docs/docs/auto-docs/state/README.md deleted file mode 100644 index cefc734da4..0000000000 --- a/docs/docs/auto-docs/state/README.md +++ /dev/null @@ -1,13 +0,0 @@ -[**talawa-admin**](../README.md) - -*** - -[talawa-admin](../modules.md) / state - -# state - -## References - -### actionCreators - -Renames and re-exports [state/action-creators](action-creators/README.md) diff --git a/docs/docs/auto-docs/state/action-creators/README.md b/docs/docs/auto-docs/state/action-creators/README.md deleted file mode 100644 index f511ab1645..0000000000 --- a/docs/docs/auto-docs/state/action-creators/README.md +++ /dev/null @@ -1,15 +0,0 @@ -[**talawa-admin**](../../README.md) - -*** - -[talawa-admin](../../modules.md) / state/action-creators - -# state/action-creators - -## Functions - -- [installPlugin](functions/installPlugin.md) -- [removePlugin](functions/removePlugin.md) -- [updateInstalled](functions/updateInstalled.md) -- [updatePluginLinks](functions/updatePluginLinks.md) -- [updateTargets](functions/updateTargets.md) diff --git a/docs/docs/auto-docs/state/action-creators/functions/installPlugin.md b/docs/docs/auto-docs/state/action-creators/functions/installPlugin.md deleted file mode 100644 index 82cc74bf53..0000000000 --- a/docs/docs/auto-docs/state/action-creators/functions/installPlugin.md +++ /dev/null @@ -1,31 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / [state/action-creators](../README.md) / installPlugin - -# Function: installPlugin() - -> **installPlugin**(`plugin`): (`dispatch`) => `void` - -Defined in: [src/state/action-creators/index.ts:10](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/state/action-creators/index.ts#L10) - -## Parameters - -### plugin - -`any` - -## Returns - -`Function` - -### Parameters - -#### dispatch - -`any` - -### Returns - -`void` diff --git a/docs/docs/auto-docs/state/action-creators/functions/removePlugin.md b/docs/docs/auto-docs/state/action-creators/functions/removePlugin.md deleted file mode 100644 index 48a7669ba1..0000000000 --- a/docs/docs/auto-docs/state/action-creators/functions/removePlugin.md +++ /dev/null @@ -1,31 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / [state/action-creators](../README.md) / removePlugin - -# Function: removePlugin() - -> **removePlugin**(`plugin`): (`dispatch`) => `void` - -Defined in: [src/state/action-creators/index.ts:19](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/state/action-creators/index.ts#L19) - -## Parameters - -### plugin - -`any` - -## Returns - -`Function` - -### Parameters - -#### dispatch - -`any` - -### Returns - -`void` diff --git a/docs/docs/auto-docs/state/action-creators/functions/updateInstalled.md b/docs/docs/auto-docs/state/action-creators/functions/updateInstalled.md deleted file mode 100644 index be1ead2b1a..0000000000 --- a/docs/docs/auto-docs/state/action-creators/functions/updateInstalled.md +++ /dev/null @@ -1,31 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / [state/action-creators](../README.md) / updateInstalled - -# Function: updateInstalled() - -> **updateInstalled**(`plugin`): (`dispatch`) => `void` - -Defined in: [src/state/action-creators/index.ts:1](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/state/action-creators/index.ts#L1) - -## Parameters - -### plugin - -`any` - -## Returns - -`Function` - -### Parameters - -#### dispatch - -`any` - -### Returns - -`void` diff --git a/docs/docs/auto-docs/state/action-creators/functions/updatePluginLinks.md b/docs/docs/auto-docs/state/action-creators/functions/updatePluginLinks.md deleted file mode 100644 index 3bcd5e07b9..0000000000 --- a/docs/docs/auto-docs/state/action-creators/functions/updatePluginLinks.md +++ /dev/null @@ -1,31 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / [state/action-creators](../README.md) / updatePluginLinks - -# Function: updatePluginLinks() - -> **updatePluginLinks**(`plugins`): (`dispatch`) => `void` - -Defined in: [src/state/action-creators/index.ts:28](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/state/action-creators/index.ts#L28) - -## Parameters - -### plugins - -`any` - -## Returns - -`Function` - -### Parameters - -#### dispatch - -`any` - -### Returns - -`void` diff --git a/docs/docs/auto-docs/state/action-creators/functions/updateTargets.md b/docs/docs/auto-docs/state/action-creators/functions/updateTargets.md deleted file mode 100644 index e759762939..0000000000 --- a/docs/docs/auto-docs/state/action-creators/functions/updateTargets.md +++ /dev/null @@ -1,31 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / [state/action-creators](../README.md) / updateTargets - -# Function: updateTargets() - -> **updateTargets**(`orgId`): (`dispatch`) => `void` - -Defined in: [src/state/action-creators/index.ts:37](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/state/action-creators/index.ts#L37) - -## Parameters - -### orgId - -`undefined` | `string` - -## Returns - -`Function` - -### Parameters - -#### dispatch - -`any` - -### Returns - -`void` diff --git a/docs/docs/auto-docs/state/helpers/Action/README.md b/docs/docs/auto-docs/state/helpers/Action/README.md deleted file mode 100644 index 6fa88902cb..0000000000 --- a/docs/docs/auto-docs/state/helpers/Action/README.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / state/helpers/Action - -# state/helpers/Action - -## Interfaces - -- [InterfaceAction](interfaces/InterfaceAction.md) diff --git a/docs/docs/auto-docs/state/helpers/Action/interfaces/InterfaceAction.md b/docs/docs/auto-docs/state/helpers/Action/interfaces/InterfaceAction.md deleted file mode 100644 index 76196cb477..0000000000 --- a/docs/docs/auto-docs/state/helpers/Action/interfaces/InterfaceAction.md +++ /dev/null @@ -1,25 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [state/helpers/Action](../README.md) / InterfaceAction - -# Interface: InterfaceAction - -Defined in: [src/state/helpers/Action.ts:1](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/state/helpers/Action.ts#L1) - -## Properties - -### payload - -> **payload**: `any` - -Defined in: [src/state/helpers/Action.ts:3](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/state/helpers/Action.ts#L3) - -*** - -### type - -> **type**: `string` - -Defined in: [src/state/helpers/Action.ts:2](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/state/helpers/Action.ts#L2) diff --git a/docs/docs/auto-docs/state/hooks/README.md b/docs/docs/auto-docs/state/hooks/README.md deleted file mode 100644 index 2f225831f2..0000000000 --- a/docs/docs/auto-docs/state/hooks/README.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../README.md) - -*** - -[talawa-admin](../../modules.md) / state/hooks - -# state/hooks - -## Functions - -- [useAppDispatch](functions/useAppDispatch.md) diff --git a/docs/docs/auto-docs/state/hooks/functions/useAppDispatch.md b/docs/docs/auto-docs/state/hooks/functions/useAppDispatch.md deleted file mode 100644 index a7455d1066..0000000000 --- a/docs/docs/auto-docs/state/hooks/functions/useAppDispatch.md +++ /dev/null @@ -1,25 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / [state/hooks](../README.md) / useAppDispatch - -# Function: useAppDispatch() - -> **useAppDispatch**\<`AppDispatch`\>(): `AppDispatch` - -Defined in: [src/state/hooks.ts:5](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/state/hooks.ts#L5) - -Returns the dispatch function from the Redux store. - -## Type Parameters - -• **AppDispatch** *extends* `ThunkDispatch`\<\{ `appRoutes`: \{ `components`: [`ComponentType`](../../reducers/routesReducer/type-aliases/ComponentType.md)[]; `targets`: [`TargetsType`](../../reducers/routesReducer/type-aliases/TargetsType.md)[]; \}; `plugins`: `any`; `userRoutes`: \{ `components`: [`ComponentType`](../../reducers/userRoutesReducer/type-aliases/ComponentType.md)[]; `targets`: [`TargetsType`](../../reducers/userRoutesReducer/type-aliases/TargetsType.md)[]; \}; \}, `undefined`, `UnknownAction`\> & `Dispatch`\<[`InterfaceAction`](../../helpers/Action/interfaces/InterfaceAction.md)\> = `ThunkDispatch`\<\{ `appRoutes`: \{ `components`: [`ComponentType`](../../reducers/routesReducer/type-aliases/ComponentType.md)[]; `targets`: [`TargetsType`](../../reducers/routesReducer/type-aliases/TargetsType.md)[]; \}; `plugins`: `any`; `userRoutes`: \{ `components`: [`ComponentType`](../../reducers/userRoutesReducer/type-aliases/ComponentType.md)[]; `targets`: [`TargetsType`](../../reducers/userRoutesReducer/type-aliases/TargetsType.md)[]; \}; \}, `undefined`, `UnknownAction`\> & `Dispatch`\<[`InterfaceAction`](../../helpers/Action/interfaces/InterfaceAction.md)\> - -The specific type of the dispatch function. - -## Returns - -`AppDispatch` - -The dispatch function from the Redux store. diff --git a/docs/docs/auto-docs/state/reducers/README.md b/docs/docs/auto-docs/state/reducers/README.md deleted file mode 100644 index 72d86d2b9d..0000000000 --- a/docs/docs/auto-docs/state/reducers/README.md +++ /dev/null @@ -1,15 +0,0 @@ -[**talawa-admin**](../../README.md) - -*** - -[talawa-admin](../../modules.md) / state/reducers - -# state/reducers - -## Type Aliases - -- [RootState](type-aliases/RootState.md) - -## Functions - -- [reducers](functions/reducers.md) diff --git a/docs/docs/auto-docs/state/reducers/functions/reducers.md b/docs/docs/auto-docs/state/reducers/functions/reducers.md deleted file mode 100644 index 00c015ce02..0000000000 --- a/docs/docs/auto-docs/state/reducers/functions/reducers.md +++ /dev/null @@ -1,53 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / [state/reducers](../README.md) / reducers - -# Function: reducers() - -> **reducers**(`state`, `action`): `object` - -Defined in: [src/state/reducers/index.ts:6](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/state/reducers/index.ts#L6) - -## Parameters - -### state - -`undefined` | \{ `appRoutes`: \{ `components`: [`ComponentType`](../routesReducer/type-aliases/ComponentType.md)[]; `targets`: [`TargetsType`](../routesReducer/type-aliases/TargetsType.md)[]; \}; `plugins`: `any`; `userRoutes`: \{ `components`: [`ComponentType`](../userRoutesReducer/type-aliases/ComponentType.md)[]; `targets`: [`TargetsType`](../userRoutesReducer/type-aliases/TargetsType.md)[]; \}; \} | `Partial`\<\{ `appRoutes`: `never`; `plugins`: `never`; `userRoutes`: `never`; \}\> - -### action - -[`InterfaceAction`](../../helpers/Action/interfaces/InterfaceAction.md) - -## Returns - -`object` - -### appRoutes - -> **appRoutes**: `object` = `routesReducer` - -#### appRoutes.components - -> **components**: [`ComponentType`](../routesReducer/type-aliases/ComponentType.md)[] - -#### appRoutes.targets - -> **targets**: [`TargetsType`](../routesReducer/type-aliases/TargetsType.md)[] - -### plugins - -> **plugins**: `any` = `pluginReducer` - -### userRoutes - -> **userRoutes**: `object` = `userRoutesReducer` - -#### userRoutes.components - -> **components**: [`ComponentType`](../userRoutesReducer/type-aliases/ComponentType.md)[] - -#### userRoutes.targets - -> **targets**: [`TargetsType`](../userRoutesReducer/type-aliases/TargetsType.md)[] diff --git a/docs/docs/auto-docs/state/reducers/pluginReducer/README.md b/docs/docs/auto-docs/state/reducers/pluginReducer/README.md deleted file mode 100644 index 34b5b9734c..0000000000 --- a/docs/docs/auto-docs/state/reducers/pluginReducer/README.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / state/reducers/pluginReducer - -# state/reducers/pluginReducer - -## Functions - -- [default](functions/default.md) diff --git a/docs/docs/auto-docs/state/reducers/pluginReducer/functions/default.md b/docs/docs/auto-docs/state/reducers/pluginReducer/functions/default.md deleted file mode 100644 index b870cb590a..0000000000 --- a/docs/docs/auto-docs/state/reducers/pluginReducer/functions/default.md +++ /dev/null @@ -1,25 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [state/reducers/pluginReducer](../README.md) / default - -# Function: default() - -> **default**(`state`, `action`): `any` - -Defined in: [src/state/reducers/pluginReducer.ts:3](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/state/reducers/pluginReducer.ts#L3) - -## Parameters - -### state - -`any` = `INITIAL_STATE` - -### action - -[`InterfaceAction`](../../../helpers/Action/interfaces/InterfaceAction.md) - -## Returns - -`any` diff --git a/docs/docs/auto-docs/state/reducers/routesReducer/README.md b/docs/docs/auto-docs/state/reducers/routesReducer/README.md deleted file mode 100644 index 2448c6d427..0000000000 --- a/docs/docs/auto-docs/state/reducers/routesReducer/README.md +++ /dev/null @@ -1,17 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / state/reducers/routesReducer - -# state/reducers/routesReducer - -## Type Aliases - -- [ComponentType](type-aliases/ComponentType.md) -- [SubTargetType](type-aliases/SubTargetType.md) -- [TargetsType](type-aliases/TargetsType.md) - -## Functions - -- [default](functions/default.md) diff --git a/docs/docs/auto-docs/state/reducers/routesReducer/functions/default.md b/docs/docs/auto-docs/state/reducers/routesReducer/functions/default.md deleted file mode 100644 index 09c7acca89..0000000000 --- a/docs/docs/auto-docs/state/reducers/routesReducer/functions/default.md +++ /dev/null @@ -1,39 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [state/reducers/routesReducer](../README.md) / default - -# Function: default() - -> **default**(`state`, `action`): `object` - -Defined in: [src/state/reducers/routesReducer.ts:16](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/state/reducers/routesReducer.ts#L16) - -## Parameters - -### state - -#### components - -[`ComponentType`](../type-aliases/ComponentType.md)[] - -#### targets - -[`TargetsType`](../type-aliases/TargetsType.md)[] = `...` - -### action - -[`InterfaceAction`](../../../helpers/Action/interfaces/InterfaceAction.md) - -## Returns - -`object` - -### components - -> **components**: [`ComponentType`](../type-aliases/ComponentType.md)[] - -### targets - -> **targets**: [`TargetsType`](../type-aliases/TargetsType.md)[] diff --git a/docs/docs/auto-docs/state/reducers/routesReducer/type-aliases/ComponentType.md b/docs/docs/auto-docs/state/reducers/routesReducer/type-aliases/ComponentType.md deleted file mode 100644 index 21c068ffd3..0000000000 --- a/docs/docs/auto-docs/state/reducers/routesReducer/type-aliases/ComponentType.md +++ /dev/null @@ -1,29 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [state/reducers/routesReducer](../README.md) / ComponentType - -# Type Alias: ComponentType - -> **ComponentType**: `object` - -Defined in: [src/state/reducers/routesReducer.ts:55](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/state/reducers/routesReducer.ts#L55) - -## Type declaration - -### comp\_id - -> **comp\_id**: `string` \| `null` - -### component - -> **component**: `string` \| `null` - -### name - -> **name**: `string` - -### subTargets? - -> `optional` **subTargets**: `object`[] diff --git a/docs/docs/auto-docs/state/reducers/routesReducer/type-aliases/SubTargetType.md b/docs/docs/auto-docs/state/reducers/routesReducer/type-aliases/SubTargetType.md deleted file mode 100644 index 4271f22696..0000000000 --- a/docs/docs/auto-docs/state/reducers/routesReducer/type-aliases/SubTargetType.md +++ /dev/null @@ -1,29 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [state/reducers/routesReducer](../README.md) / SubTargetType - -# Type Alias: SubTargetType - -> **SubTargetType**: `object` - -Defined in: [src/state/reducers/routesReducer.ts:9](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/state/reducers/routesReducer.ts#L9) - -## Type declaration - -### comp\_id? - -> `optional` **comp\_id**: `string` - -### icon? - -> `optional` **icon**: `string` - -### name? - -> `optional` **name**: `string` - -### url - -> **url**: `string` diff --git a/docs/docs/auto-docs/state/reducers/routesReducer/type-aliases/TargetsType.md b/docs/docs/auto-docs/state/reducers/routesReducer/type-aliases/TargetsType.md deleted file mode 100644 index 74e5ffb454..0000000000 --- a/docs/docs/auto-docs/state/reducers/routesReducer/type-aliases/TargetsType.md +++ /dev/null @@ -1,25 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [state/reducers/routesReducer](../README.md) / TargetsType - -# Type Alias: TargetsType - -> **TargetsType**: `object` - -Defined in: [src/state/reducers/routesReducer.ts:3](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/state/reducers/routesReducer.ts#L3) - -## Type declaration - -### name - -> **name**: `string` - -### subTargets? - -> `optional` **subTargets**: [`SubTargetType`](SubTargetType.md)[] - -### url? - -> `optional` **url**: `string` diff --git a/docs/docs/auto-docs/state/reducers/type-aliases/RootState.md b/docs/docs/auto-docs/state/reducers/type-aliases/RootState.md deleted file mode 100644 index a8b3ca1bb0..0000000000 --- a/docs/docs/auto-docs/state/reducers/type-aliases/RootState.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / [state/reducers](../README.md) / RootState - -# Type Alias: RootState - -> **RootState**: `ReturnType`\<*typeof* [`reducers`](../functions/reducers.md)\> - -Defined in: [src/state/reducers/index.ts:12](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/state/reducers/index.ts#L12) diff --git a/docs/docs/auto-docs/state/reducers/userRoutesReducer/README.md b/docs/docs/auto-docs/state/reducers/userRoutesReducer/README.md deleted file mode 100644 index 517d683035..0000000000 --- a/docs/docs/auto-docs/state/reducers/userRoutesReducer/README.md +++ /dev/null @@ -1,17 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / state/reducers/userRoutesReducer - -# state/reducers/userRoutesReducer - -## Type Aliases - -- [ComponentType](type-aliases/ComponentType.md) -- [SubTargetType](type-aliases/SubTargetType.md) -- [TargetsType](type-aliases/TargetsType.md) - -## Functions - -- [default](functions/default.md) diff --git a/docs/docs/auto-docs/state/reducers/userRoutesReducer/functions/default.md b/docs/docs/auto-docs/state/reducers/userRoutesReducer/functions/default.md deleted file mode 100644 index 60ca039e8c..0000000000 --- a/docs/docs/auto-docs/state/reducers/userRoutesReducer/functions/default.md +++ /dev/null @@ -1,39 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [state/reducers/userRoutesReducer](../README.md) / default - -# Function: default() - -> **default**(`state`, `action`): `object` - -Defined in: [src/state/reducers/userRoutesReducer.ts:16](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/state/reducers/userRoutesReducer.ts#L16) - -## Parameters - -### state - -#### components - -[`ComponentType`](../type-aliases/ComponentType.md)[] - -#### targets - -[`TargetsType`](../type-aliases/TargetsType.md)[] = `...` - -### action - -[`InterfaceAction`](../../../helpers/Action/interfaces/InterfaceAction.md) - -## Returns - -`object` - -### components - -> **components**: [`ComponentType`](../type-aliases/ComponentType.md)[] - -### targets - -> **targets**: [`TargetsType`](../type-aliases/TargetsType.md)[] diff --git a/docs/docs/auto-docs/state/reducers/userRoutesReducer/type-aliases/ComponentType.md b/docs/docs/auto-docs/state/reducers/userRoutesReducer/type-aliases/ComponentType.md deleted file mode 100644 index 7634e91a61..0000000000 --- a/docs/docs/auto-docs/state/reducers/userRoutesReducer/type-aliases/ComponentType.md +++ /dev/null @@ -1,29 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [state/reducers/userRoutesReducer](../README.md) / ComponentType - -# Type Alias: ComponentType - -> **ComponentType**: `object` - -Defined in: [src/state/reducers/userRoutesReducer.ts:32](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/state/reducers/userRoutesReducer.ts#L32) - -## Type declaration - -### comp\_id - -> **comp\_id**: `string` \| `null` - -### component - -> **component**: `string` \| `null` - -### name - -> **name**: `string` - -### subTargets? - -> `optional` **subTargets**: `object`[] diff --git a/docs/docs/auto-docs/state/reducers/userRoutesReducer/type-aliases/SubTargetType.md b/docs/docs/auto-docs/state/reducers/userRoutesReducer/type-aliases/SubTargetType.md deleted file mode 100644 index 45b4fd4114..0000000000 --- a/docs/docs/auto-docs/state/reducers/userRoutesReducer/type-aliases/SubTargetType.md +++ /dev/null @@ -1,29 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [state/reducers/userRoutesReducer](../README.md) / SubTargetType - -# Type Alias: SubTargetType - -> **SubTargetType**: `object` - -Defined in: [src/state/reducers/userRoutesReducer.ts:9](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/state/reducers/userRoutesReducer.ts#L9) - -## Type declaration - -### comp\_id? - -> `optional` **comp\_id**: `string` - -### icon? - -> `optional` **icon**: `string` - -### name? - -> `optional` **name**: `string` - -### url - -> **url**: `string` diff --git a/docs/docs/auto-docs/state/reducers/userRoutesReducer/type-aliases/TargetsType.md b/docs/docs/auto-docs/state/reducers/userRoutesReducer/type-aliases/TargetsType.md deleted file mode 100644 index 973f21149d..0000000000 --- a/docs/docs/auto-docs/state/reducers/userRoutesReducer/type-aliases/TargetsType.md +++ /dev/null @@ -1,25 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [state/reducers/userRoutesReducer](../README.md) / TargetsType - -# Type Alias: TargetsType - -> **TargetsType**: `object` - -Defined in: [src/state/reducers/userRoutesReducer.ts:3](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/state/reducers/userRoutesReducer.ts#L3) - -## Type declaration - -### name - -> **name**: `string` - -### subTargets? - -> `optional` **subTargets**: [`SubTargetType`](SubTargetType.md)[] - -### url? - -> `optional` **url**: `string` diff --git a/docs/docs/auto-docs/state/store/README.md b/docs/docs/auto-docs/state/store/README.md deleted file mode 100644 index ff82f6a3f1..0000000000 --- a/docs/docs/auto-docs/state/store/README.md +++ /dev/null @@ -1,15 +0,0 @@ -[**talawa-admin**](../../README.md) - -*** - -[talawa-admin](../../modules.md) / state/store - -# state/store - -## Type Aliases - -- [AppDispatch](type-aliases/AppDispatch.md) - -## Variables - -- [store](variables/store.md) diff --git a/docs/docs/auto-docs/state/store/type-aliases/AppDispatch.md b/docs/docs/auto-docs/state/store/type-aliases/AppDispatch.md deleted file mode 100644 index 4dd601af62..0000000000 --- a/docs/docs/auto-docs/state/store/type-aliases/AppDispatch.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / [state/store](../README.md) / AppDispatch - -# Type Alias: AppDispatch - -> **AppDispatch**: *typeof* `store.dispatch` - -Defined in: [src/state/store.ts:8](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/state/store.ts#L8) diff --git a/docs/docs/auto-docs/state/store/variables/store.md b/docs/docs/auto-docs/state/store/variables/store.md deleted file mode 100644 index 9f0dba0fa6..0000000000 --- a/docs/docs/auto-docs/state/store/variables/store.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / [state/store](../README.md) / store - -# Variable: store - -> `const` **store**: `EnhancedStore`\<\{ `appRoutes`: \{ `components`: [`ComponentType`](../../reducers/routesReducer/type-aliases/ComponentType.md)[]; `targets`: [`TargetsType`](../../reducers/routesReducer/type-aliases/TargetsType.md)[]; \}; `plugins`: `any`; `userRoutes`: \{ `components`: [`ComponentType`](../../reducers/userRoutesReducer/type-aliases/ComponentType.md)[]; `targets`: [`TargetsType`](../../reducers/userRoutesReducer/type-aliases/TargetsType.md)[]; \}; \}, [`InterfaceAction`](../../helpers/Action/interfaces/InterfaceAction.md), `Tuple`\<\[`StoreEnhancer`\<\{\}\>, `StoreEnhancer`\]\>\> - -Defined in: [src/state/store.ts:4](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/state/store.ts#L4) diff --git a/docs/docs/auto-docs/subComponents/SortingButton/README.md b/docs/docs/auto-docs/subComponents/SortingButton/README.md deleted file mode 100644 index 7911c94d94..0000000000 --- a/docs/docs/auto-docs/subComponents/SortingButton/README.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../README.md) - -*** - -[talawa-admin](../../modules.md) / subComponents/SortingButton - -# subComponents/SortingButton - -## Functions - -- [default](functions/default.md) diff --git a/docs/docs/auto-docs/subComponents/SortingButton/functions/default.md b/docs/docs/auto-docs/subComponents/SortingButton/functions/default.md deleted file mode 100644 index eae1c0e212..0000000000 --- a/docs/docs/auto-docs/subComponents/SortingButton/functions/default.md +++ /dev/null @@ -1,38 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / [subComponents/SortingButton](../README.md) / default - -# Function: default() - -> **default**(`props`, `deprecatedLegacyContext`?): `ReactNode` - -Defined in: [src/subComponents/SortingButton.tsx:43](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/subComponents/SortingButton.tsx#L43) - -SortingButton component renders a Dropdown with sorting options. -It allows users to select a sorting option and triggers a callback on selection. - -## Parameters - -### props - -`InterfaceSortingButtonProps` - -The properties for the SortingButton component. - -### deprecatedLegacyContext? - -`any` - -**Deprecated** - -**See** - -[React Docs](https://legacy.reactjs.org/docs/legacy-context.html#referencing-context-in-lifecycle-methods) - -## Returns - -`ReactNode` - -The rendered SortingButton component. diff --git a/docs/docs/auto-docs/utils/StaticMockLink/README.md b/docs/docs/auto-docs/utils/StaticMockLink/README.md deleted file mode 100644 index b5e8d26b04..0000000000 --- a/docs/docs/auto-docs/utils/StaticMockLink/README.md +++ /dev/null @@ -1,19 +0,0 @@ -[**talawa-admin**](../../README.md) - -*** - -[talawa-admin](../../modules.md) / utils/StaticMockLink - -# utils/StaticMockLink - -## Classes - -- [StaticMockLink](classes/StaticMockLink.md) - -## Interfaces - -- [InterfaceMockApolloLink](interfaces/InterfaceMockApolloLink.md) - -## Functions - -- [mockSingleLink](functions/mockSingleLink.md) diff --git a/docs/docs/auto-docs/utils/StaticMockLink/classes/StaticMockLink.md b/docs/docs/auto-docs/utils/StaticMockLink/classes/StaticMockLink.md deleted file mode 100644 index bb97c7ec2b..0000000000 --- a/docs/docs/auto-docs/utils/StaticMockLink/classes/StaticMockLink.md +++ /dev/null @@ -1,94 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / [utils/StaticMockLink](../README.md) / StaticMockLink - -# Class: StaticMockLink - -Defined in: [src/utils/StaticMockLink.ts:30](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/StaticMockLink.ts#L30) - -Similar to the standard Apollo MockLink, but doesn't consume a mock -when it is used allowing it to be used in places like Storybook. - -## Extends - -- `unknown` - -## Constructors - -### new StaticMockLink() - -> **new StaticMockLink**(`mockedResponses`, `addTypename`): [`StaticMockLink`](StaticMockLink.md) - -Defined in: [src/utils/StaticMockLink.ts:35](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/StaticMockLink.ts#L35) - -#### Parameters - -##### mockedResponses - -readonly `MockedResponse`[] - -##### addTypename - -`boolean` = `true` - -#### Returns - -[`StaticMockLink`](StaticMockLink.md) - -#### Overrides - -`ApolloLink.constructor` - -## Properties - -### addTypename - -> **addTypename**: `boolean` = `true` - -Defined in: [src/utils/StaticMockLink.ts:32](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/StaticMockLink.ts#L32) - -*** - -### operation? - -> `optional` **operation**: `any` - -Defined in: [src/utils/StaticMockLink.ts:31](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/StaticMockLink.ts#L31) - -## Methods - -### addMockedResponse() - -> **addMockedResponse**(`mockedResponse`): `void` - -Defined in: [src/utils/StaticMockLink.ts:45](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/StaticMockLink.ts#L45) - -#### Parameters - -##### mockedResponse - -`MockedResponse` - -#### Returns - -`void` - -*** - -### request() - -> **request**(`operation`): `any` - -Defined in: [src/utils/StaticMockLink.ts:60](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/StaticMockLink.ts#L60) - -#### Parameters - -##### operation - -`any` - -#### Returns - -`any` diff --git a/docs/docs/auto-docs/utils/StaticMockLink/functions/mockSingleLink.md b/docs/docs/auto-docs/utils/StaticMockLink/functions/mockSingleLink.md deleted file mode 100644 index f181ffe5d5..0000000000 --- a/docs/docs/auto-docs/utils/StaticMockLink/functions/mockSingleLink.md +++ /dev/null @@ -1,21 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / [utils/StaticMockLink](../README.md) / mockSingleLink - -# Function: mockSingleLink() - -> **mockSingleLink**(...`mockedResponses`): [`InterfaceMockApolloLink`](../interfaces/InterfaceMockApolloLink.md) - -Defined in: [src/utils/StaticMockLink.ts:164](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/StaticMockLink.ts#L164) - -## Parameters - -### mockedResponses - -...`any`[] - -## Returns - -[`InterfaceMockApolloLink`](../interfaces/InterfaceMockApolloLink.md) diff --git a/docs/docs/auto-docs/utils/StaticMockLink/interfaces/InterfaceMockApolloLink.md b/docs/docs/auto-docs/utils/StaticMockLink/interfaces/InterfaceMockApolloLink.md deleted file mode 100644 index 6b936e547c..0000000000 --- a/docs/docs/auto-docs/utils/StaticMockLink/interfaces/InterfaceMockApolloLink.md +++ /dev/null @@ -1,21 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / [utils/StaticMockLink](../README.md) / InterfaceMockApolloLink - -# Interface: InterfaceMockApolloLink - -Defined in: [src/utils/StaticMockLink.ts:157](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/StaticMockLink.ts#L157) - -## Extends - -- `unknown` - -## Properties - -### operation? - -> `optional` **operation**: `any` - -Defined in: [src/utils/StaticMockLink.ts:158](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/StaticMockLink.ts#L158) diff --git a/docs/docs/auto-docs/utils/chartToPdf/README.md b/docs/docs/auto-docs/utils/chartToPdf/README.md deleted file mode 100644 index c2c888be7c..0000000000 --- a/docs/docs/auto-docs/utils/chartToPdf/README.md +++ /dev/null @@ -1,13 +0,0 @@ -[**talawa-admin**](../../README.md) - -*** - -[talawa-admin](../../modules.md) / utils/chartToPdf - -# utils/chartToPdf - -## Functions - -- [exportDemographicsToCSV](functions/exportDemographicsToCSV.md) -- [exportToCSV](functions/exportToCSV.md) -- [exportTrendsToCSV](functions/exportTrendsToCSV.md) diff --git a/docs/docs/auto-docs/utils/chartToPdf/functions/exportDemographicsToCSV.md b/docs/docs/auto-docs/utils/chartToPdf/functions/exportDemographicsToCSV.md deleted file mode 100644 index cf5f3c53c3..0000000000 --- a/docs/docs/auto-docs/utils/chartToPdf/functions/exportDemographicsToCSV.md +++ /dev/null @@ -1,29 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / [utils/chartToPdf](../README.md) / exportDemographicsToCSV - -# Function: exportDemographicsToCSV() - -> **exportDemographicsToCSV**(`selectedCategory`, `categoryLabels`, `categoryData`): `void` - -Defined in: [src/utils/chartToPdf.ts:80](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/chartToPdf.ts#L80) - -## Parameters - -### selectedCategory - -`string` - -### categoryLabels - -`string`[] - -### categoryData - -`number`[] - -## Returns - -`void` diff --git a/docs/docs/auto-docs/utils/chartToPdf/functions/exportToCSV.md b/docs/docs/auto-docs/utils/chartToPdf/functions/exportToCSV.md deleted file mode 100644 index 3d8517f460..0000000000 --- a/docs/docs/auto-docs/utils/chartToPdf/functions/exportToCSV.md +++ /dev/null @@ -1,25 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / [utils/chartToPdf](../README.md) / exportToCSV - -# Function: exportToCSV() - -> **exportToCSV**(`data`, `filename`): `void` - -Defined in: [src/utils/chartToPdf.ts:3](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/chartToPdf.ts#L3) - -## Parameters - -### data - -`CSVData` - -### filename - -`string` - -## Returns - -`void` diff --git a/docs/docs/auto-docs/utils/chartToPdf/functions/exportTrendsToCSV.md b/docs/docs/auto-docs/utils/chartToPdf/functions/exportTrendsToCSV.md deleted file mode 100644 index 97214d4ed7..0000000000 --- a/docs/docs/auto-docs/utils/chartToPdf/functions/exportTrendsToCSV.md +++ /dev/null @@ -1,37 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / [utils/chartToPdf](../README.md) / exportTrendsToCSV - -# Function: exportTrendsToCSV() - -> **exportTrendsToCSV**(`eventLabels`, `attendeeCounts`, `maleCounts`, `femaleCounts`, `otherCounts`): `void` - -Defined in: [src/utils/chartToPdf.ts:50](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/chartToPdf.ts#L50) - -## Parameters - -### eventLabels - -`string`[] - -### attendeeCounts - -`number`[] - -### maleCounts - -`number`[] - -### femaleCounts - -`number`[] - -### otherCounts - -`number`[] - -## Returns - -`void` diff --git a/docs/docs/auto-docs/utils/convertToBase64/README.md b/docs/docs/auto-docs/utils/convertToBase64/README.md deleted file mode 100644 index c1f44af7de..0000000000 --- a/docs/docs/auto-docs/utils/convertToBase64/README.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../README.md) - -*** - -[talawa-admin](../../modules.md) / utils/convertToBase64 - -# utils/convertToBase64 - -## Functions - -- [default](functions/default.md) diff --git a/docs/docs/auto-docs/utils/convertToBase64/functions/default.md b/docs/docs/auto-docs/utils/convertToBase64/functions/default.md deleted file mode 100644 index ea6fb2b07d..0000000000 --- a/docs/docs/auto-docs/utils/convertToBase64/functions/default.md +++ /dev/null @@ -1,21 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / [utils/convertToBase64](../README.md) / default - -# Function: default() - -> **default**(`file`): `Promise`\<`string`\> - -Defined in: [src/utils/convertToBase64.ts:1](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/convertToBase64.ts#L1) - -## Parameters - -### file - -`File` - -## Returns - -`Promise`\<`string`\> diff --git a/docs/docs/auto-docs/utils/currency/README.md b/docs/docs/auto-docs/utils/currency/README.md deleted file mode 100644 index 9ff14d9251..0000000000 --- a/docs/docs/auto-docs/utils/currency/README.md +++ /dev/null @@ -1,12 +0,0 @@ -[**talawa-admin**](../../README.md) - -*** - -[talawa-admin](../../modules.md) / utils/currency - -# utils/currency - -## Variables - -- [currencyOptions](variables/currencyOptions.md) -- [currencySymbols](variables/currencySymbols.md) diff --git a/docs/docs/auto-docs/utils/currency/variables/currencyOptions.md b/docs/docs/auto-docs/utils/currency/variables/currencyOptions.md deleted file mode 100644 index 0bec912825..0000000000 --- a/docs/docs/auto-docs/utils/currency/variables/currencyOptions.md +++ /dev/null @@ -1,21 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / [utils/currency](../README.md) / currencyOptions - -# Variable: currencyOptions - -> `const` **currencyOptions**: `object`[] - -Defined in: [src/utils/currency.ts:1](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/currency.ts#L1) - -## Type declaration - -### label - -> **label**: `string` = `'AED'` - -### value - -> **value**: `string` = `'AED'` diff --git a/docs/docs/auto-docs/utils/currency/variables/currencySymbols.md b/docs/docs/auto-docs/utils/currency/variables/currencySymbols.md deleted file mode 100644 index 3e5548dd48..0000000000 --- a/docs/docs/auto-docs/utils/currency/variables/currencySymbols.md +++ /dev/null @@ -1,15 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / [utils/currency](../README.md) / currencySymbols - -# Variable: currencySymbols - -> `const` **currencySymbols**: `object` - -Defined in: [src/utils/currency.ts:166](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/currency.ts#L166) - -## Index Signature - -\[`key`: `string`\]: `string` diff --git a/docs/docs/auto-docs/utils/dateFormatter/README.md b/docs/docs/auto-docs/utils/dateFormatter/README.md deleted file mode 100644 index 43d7c90a59..0000000000 --- a/docs/docs/auto-docs/utils/dateFormatter/README.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../README.md) - -*** - -[talawa-admin](../../modules.md) / utils/dateFormatter - -# utils/dateFormatter - -## Functions - -- [formatDate](functions/formatDate.md) diff --git a/docs/docs/auto-docs/utils/dateFormatter/functions/formatDate.md b/docs/docs/auto-docs/utils/dateFormatter/functions/formatDate.md deleted file mode 100644 index f0e1b8bf1a..0000000000 --- a/docs/docs/auto-docs/utils/dateFormatter/functions/formatDate.md +++ /dev/null @@ -1,21 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / [utils/dateFormatter](../README.md) / formatDate - -# Function: formatDate() - -> **formatDate**(`dateString`): `string` - -Defined in: [src/utils/dateFormatter.ts:1](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/dateFormatter.ts#L1) - -## Parameters - -### dateString - -`string` - -## Returns - -`string` diff --git a/docs/docs/auto-docs/utils/errorHandler/README.md b/docs/docs/auto-docs/utils/errorHandler/README.md deleted file mode 100644 index f3524157ba..0000000000 --- a/docs/docs/auto-docs/utils/errorHandler/README.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../README.md) - -*** - -[talawa-admin](../../modules.md) / utils/errorHandler - -# utils/errorHandler - -## Functions - -- [errorHandler](functions/errorHandler.md) diff --git a/docs/docs/auto-docs/utils/errorHandler/functions/errorHandler.md b/docs/docs/auto-docs/utils/errorHandler/functions/errorHandler.md deleted file mode 100644 index ff5f4100bf..0000000000 --- a/docs/docs/auto-docs/utils/errorHandler/functions/errorHandler.md +++ /dev/null @@ -1,29 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / [utils/errorHandler](../README.md) / errorHandler - -# Function: errorHandler() - -> **errorHandler**(`a`, `error`): `void` - -Defined in: [src/utils/errorHandler.tsx:10](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/errorHandler.tsx#L10) - -This function is used to handle api errors in the application. -It takes in the error object and displays the error message to the user. -If the error is due to the Talawa API being unavailable, it displays a custom message. And for other error cases, it is using regular expression (case-insensitive) to match and show valid messages - -## Parameters - -### a - -`unknown` - -### error - -`unknown` - -## Returns - -`void` diff --git a/docs/docs/auto-docs/utils/fieldTypes/README.md b/docs/docs/auto-docs/utils/fieldTypes/README.md deleted file mode 100644 index e61e877617..0000000000 --- a/docs/docs/auto-docs/utils/fieldTypes/README.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../README.md) - -*** - -[talawa-admin](../../modules.md) / utils/fieldTypes - -# utils/fieldTypes - -## Variables - -- [default](variables/default.md) diff --git a/docs/docs/auto-docs/utils/fieldTypes/variables/default.md b/docs/docs/auto-docs/utils/fieldTypes/variables/default.md deleted file mode 100644 index 8259a8a703..0000000000 --- a/docs/docs/auto-docs/utils/fieldTypes/variables/default.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / [utils/fieldTypes](../README.md) / default - -# Variable: default - -> `const` **default**: `string`[] - -Defined in: [src/utils/fieldTypes.ts:1](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/fieldTypes.ts#L1) diff --git a/docs/docs/auto-docs/utils/formEnumFields/README.md b/docs/docs/auto-docs/utils/formEnumFields/README.md deleted file mode 100644 index bf7f8e43f9..0000000000 --- a/docs/docs/auto-docs/utils/formEnumFields/README.md +++ /dev/null @@ -1,16 +0,0 @@ -[**talawa-admin**](../../README.md) - -*** - -[talawa-admin](../../modules.md) / utils/formEnumFields - -# utils/formEnumFields - -## Variables - -- [countryOptions](variables/countryOptions.md) -- [educationGradeEnum](variables/educationGradeEnum.md) -- [employmentStatusEnum](variables/employmentStatusEnum.md) -- [genderEnum](variables/genderEnum.md) -- [maritalStatusEnum](variables/maritalStatusEnum.md) -- [userRoleEnum](variables/userRoleEnum.md) diff --git a/docs/docs/auto-docs/utils/formEnumFields/variables/countryOptions.md b/docs/docs/auto-docs/utils/formEnumFields/variables/countryOptions.md deleted file mode 100644 index 7994715c31..0000000000 --- a/docs/docs/auto-docs/utils/formEnumFields/variables/countryOptions.md +++ /dev/null @@ -1,21 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / [utils/formEnumFields](../README.md) / countryOptions - -# Variable: countryOptions - -> `const` **countryOptions**: `object`[] - -Defined in: [src/utils/formEnumFields.ts:1](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/formEnumFields.ts#L1) - -## Type declaration - -### label - -> **label**: `string` = `'Afghanistan'` - -### value - -> **value**: `string` = `'af'` diff --git a/docs/docs/auto-docs/utils/formEnumFields/variables/educationGradeEnum.md b/docs/docs/auto-docs/utils/formEnumFields/variables/educationGradeEnum.md deleted file mode 100644 index c5bdc52c17..0000000000 --- a/docs/docs/auto-docs/utils/formEnumFields/variables/educationGradeEnum.md +++ /dev/null @@ -1,21 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / [utils/formEnumFields](../README.md) / educationGradeEnum - -# Variable: educationGradeEnum - -> `const` **educationGradeEnum**: `object`[] - -Defined in: [src/utils/formEnumFields.ts:202](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/formEnumFields.ts#L202) - -## Type declaration - -### label - -> **label**: `string` = `'No-Grade'` - -### value - -> **value**: `string` = `'NO_GRADE'` diff --git a/docs/docs/auto-docs/utils/formEnumFields/variables/employmentStatusEnum.md b/docs/docs/auto-docs/utils/formEnumFields/variables/employmentStatusEnum.md deleted file mode 100644 index 9d560e12f6..0000000000 --- a/docs/docs/auto-docs/utils/formEnumFields/variables/employmentStatusEnum.md +++ /dev/null @@ -1,21 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / [utils/formEnumFields](../README.md) / employmentStatusEnum - -# Variable: employmentStatusEnum - -> `const` **employmentStatusEnum**: `object`[] - -Defined in: [src/utils/formEnumFields.ts:311](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/formEnumFields.ts#L311) - -## Type declaration - -### label - -> **label**: `string` = `'Full-Time'` - -### value - -> **value**: `string` = `'FULL_TIME'` diff --git a/docs/docs/auto-docs/utils/formEnumFields/variables/genderEnum.md b/docs/docs/auto-docs/utils/formEnumFields/variables/genderEnum.md deleted file mode 100644 index 41e3a87705..0000000000 --- a/docs/docs/auto-docs/utils/formEnumFields/variables/genderEnum.md +++ /dev/null @@ -1,21 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / [utils/formEnumFields](../README.md) / genderEnum - -# Variable: genderEnum - -> `const` **genderEnum**: `object`[] - -Defined in: [src/utils/formEnumFields.ts:296](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/formEnumFields.ts#L296) - -## Type declaration - -### label - -> **label**: `string` = `'Male'` - -### value - -> **value**: `string` = `'MALE'` diff --git a/docs/docs/auto-docs/utils/formEnumFields/variables/maritalStatusEnum.md b/docs/docs/auto-docs/utils/formEnumFields/variables/maritalStatusEnum.md deleted file mode 100644 index 5b8d02f7eb..0000000000 --- a/docs/docs/auto-docs/utils/formEnumFields/variables/maritalStatusEnum.md +++ /dev/null @@ -1,21 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / [utils/formEnumFields](../README.md) / maritalStatusEnum - -# Variable: maritalStatusEnum - -> `const` **maritalStatusEnum**: `object`[] - -Defined in: [src/utils/formEnumFields.ts:269](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/formEnumFields.ts#L269) - -## Type declaration - -### label - -> **label**: `string` = `'Single'` - -### value - -> **value**: `string` = `'SINGLE'` diff --git a/docs/docs/auto-docs/utils/formEnumFields/variables/userRoleEnum.md b/docs/docs/auto-docs/utils/formEnumFields/variables/userRoleEnum.md deleted file mode 100644 index c835d00dba..0000000000 --- a/docs/docs/auto-docs/utils/formEnumFields/variables/userRoleEnum.md +++ /dev/null @@ -1,21 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / [utils/formEnumFields](../README.md) / userRoleEnum - -# Variable: userRoleEnum - -> `const` **userRoleEnum**: `object`[] - -Defined in: [src/utils/formEnumFields.ts:326](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/formEnumFields.ts#L326) - -## Type declaration - -### label - -> **label**: `string` = `'User'` - -### value - -> **value**: `string` = `'USER'` diff --git a/docs/docs/auto-docs/utils/getOrganizationId/README.md b/docs/docs/auto-docs/utils/getOrganizationId/README.md deleted file mode 100644 index 6b1d1d6da4..0000000000 --- a/docs/docs/auto-docs/utils/getOrganizationId/README.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../README.md) - -*** - -[talawa-admin](../../modules.md) / utils/getOrganizationId - -# utils/getOrganizationId - -## Functions - -- [default](functions/default.md) diff --git a/docs/docs/auto-docs/utils/getOrganizationId/functions/default.md b/docs/docs/auto-docs/utils/getOrganizationId/functions/default.md deleted file mode 100644 index a6730d0a26..0000000000 --- a/docs/docs/auto-docs/utils/getOrganizationId/functions/default.md +++ /dev/null @@ -1,21 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / [utils/getOrganizationId](../README.md) / default - -# Function: default() - -> **default**(`url`): `string` - -Defined in: [src/utils/getOrganizationId.ts:2](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/getOrganizationId.ts#L2) - -## Parameters - -### url - -`string` - -## Returns - -`string` diff --git a/docs/docs/auto-docs/utils/getRefreshToken/README.md b/docs/docs/auto-docs/utils/getRefreshToken/README.md deleted file mode 100644 index 8c60657a42..0000000000 --- a/docs/docs/auto-docs/utils/getRefreshToken/README.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../README.md) - -*** - -[talawa-admin](../../modules.md) / utils/getRefreshToken - -# utils/getRefreshToken - -## Functions - -- [refreshToken](functions/refreshToken.md) diff --git a/docs/docs/auto-docs/utils/getRefreshToken/functions/refreshToken.md b/docs/docs/auto-docs/utils/getRefreshToken/functions/refreshToken.md deleted file mode 100644 index b9bb024efa..0000000000 --- a/docs/docs/auto-docs/utils/getRefreshToken/functions/refreshToken.md +++ /dev/null @@ -1,15 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / [utils/getRefreshToken](../README.md) / refreshToken - -# Function: refreshToken() - -> **refreshToken**(): `Promise`\<`boolean`\> - -Defined in: [src/utils/getRefreshToken.ts:6](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/getRefreshToken.ts#L6) - -## Returns - -`Promise`\<`boolean`\> diff --git a/docs/docs/auto-docs/utils/i18n/README.md b/docs/docs/auto-docs/utils/i18n/README.md deleted file mode 100644 index 155261730a..0000000000 --- a/docs/docs/auto-docs/utils/i18n/README.md +++ /dev/null @@ -1,7 +0,0 @@ -[**talawa-admin**](../../README.md) - -*** - -[talawa-admin](../../modules.md) / utils/i18n - -# utils/i18n diff --git a/docs/docs/auto-docs/utils/i18nForTest/README.md b/docs/docs/auto-docs/utils/i18nForTest/README.md deleted file mode 100644 index 2c5825d093..0000000000 --- a/docs/docs/auto-docs/utils/i18nForTest/README.md +++ /dev/null @@ -1,7 +0,0 @@ -[**talawa-admin**](../../README.md) - -*** - -[talawa-admin](../../modules.md) / utils/i18nForTest - -# utils/i18nForTest diff --git a/docs/docs/auto-docs/utils/interfaces/README.md b/docs/docs/auto-docs/utils/interfaces/README.md deleted file mode 100644 index 0e3a96e48c..0000000000 --- a/docs/docs/auto-docs/utils/interfaces/README.md +++ /dev/null @@ -1,60 +0,0 @@ -[**talawa-admin**](../../README.md) - -*** - -[talawa-admin](../../modules.md) / utils/interfaces - -# utils/interfaces - -## Interfaces - -- [InterfaceActionItemCategoryInfo](interfaces/InterfaceActionItemCategoryInfo.md) -- [InterfaceActionItemCategoryList](interfaces/InterfaceActionItemCategoryList.md) -- [InterfaceActionItemInfo](interfaces/InterfaceActionItemInfo.md) -- [InterfaceActionItemList](interfaces/InterfaceActionItemList.md) -- [InterfaceAddOnSpotAttendeeProps](interfaces/InterfaceAddOnSpotAttendeeProps.md) -- [InterfaceAddress](interfaces/InterfaceAddress.md) -- [InterfaceAgendaItemCategoryInfo](interfaces/InterfaceAgendaItemCategoryInfo.md) -- [InterfaceAgendaItemCategoryList](interfaces/InterfaceAgendaItemCategoryList.md) -- [InterfaceAgendaItemInfo](interfaces/InterfaceAgendaItemInfo.md) -- [InterfaceAgendaItemList](interfaces/InterfaceAgendaItemList.md) -- [InterfaceBaseEvent](interfaces/InterfaceBaseEvent.md) -- [InterfaceCampaignInfo](interfaces/InterfaceCampaignInfo.md) -- [InterfaceCreateFund](interfaces/InterfaceCreateFund.md) -- [InterfaceCreatePledge](interfaces/InterfaceCreatePledge.md) -- [InterfaceCreateVolunteerGroup](interfaces/InterfaceCreateVolunteerGroup.md) -- [InterfaceCustomFieldData](interfaces/InterfaceCustomFieldData.md) -- [InterfaceEventVolunteerInfo](interfaces/InterfaceEventVolunteerInfo.md) -- [InterfaceFormData](interfaces/InterfaceFormData.md) -- [InterfaceFundInfo](interfaces/InterfaceFundInfo.md) -- [InterfaceMapType](interfaces/InterfaceMapType.md) -- [InterfaceMemberInfo](interfaces/InterfaceMemberInfo.md) -- [InterfaceMembersList](interfaces/InterfaceMembersList.md) -- [InterfaceOrgConnectionInfoType](interfaces/InterfaceOrgConnectionInfoType.md) -- [InterfaceOrgConnectionType](interfaces/InterfaceOrgConnectionType.md) -- [InterfacePledgeInfo](interfaces/InterfacePledgeInfo.md) -- [InterfacePostCard](interfaces/InterfacePostCard.md) -- [InterfacePostForm](interfaces/InterfacePostForm.md) -- [InterfaceQueryBlockPageMemberListItem](interfaces/InterfaceQueryBlockPageMemberListItem.md) -- [InterfaceQueryFundCampaignsPledges](interfaces/InterfaceQueryFundCampaignsPledges.md) -- [InterfaceQueryMembershipRequestsListItem](interfaces/InterfaceQueryMembershipRequestsListItem.md) -- [InterfaceQueryOrganizationAdvertisementListItem](interfaces/InterfaceQueryOrganizationAdvertisementListItem.md) -- [InterfaceQueryOrganizationEventListItem](interfaces/InterfaceQueryOrganizationEventListItem.md) -- [InterfaceQueryOrganizationFundCampaigns](interfaces/InterfaceQueryOrganizationFundCampaigns.md) -- [InterfaceQueryOrganizationListObject](interfaces/InterfaceQueryOrganizationListObject.md) -- [InterfaceQueryOrganizationPostListItem](interfaces/InterfaceQueryOrganizationPostListItem.md) -- [InterfaceQueryOrganizationsListObject](interfaces/InterfaceQueryOrganizationsListObject.md) -- [InterfaceQueryOrganizationUserTags](interfaces/InterfaceQueryOrganizationUserTags.md) -- [InterfaceQueryUserListItem](interfaces/InterfaceQueryUserListItem.md) -- [InterfaceQueryUserTagChildTags](interfaces/InterfaceQueryUserTagChildTags.md) -- [InterfaceQueryUserTagsAssignedMembers](interfaces/InterfaceQueryUserTagsAssignedMembers.md) -- [InterfaceQueryUserTagsMembersToAssignTo](interfaces/InterfaceQueryUserTagsMembersToAssignTo.md) -- [InterfaceQueryVenueListItem](interfaces/InterfaceQueryVenueListItem.md) -- [InterfaceTagData](interfaces/InterfaceTagData.md) -- [InterfaceUserCampaign](interfaces/InterfaceUserCampaign.md) -- [InterfaceUserEvents](interfaces/InterfaceUserEvents.md) -- [InterfaceUserInfo](interfaces/InterfaceUserInfo.md) -- [InterfaceUserType](interfaces/InterfaceUserType.md) -- [InterfaceVolunteerGroupInfo](interfaces/InterfaceVolunteerGroupInfo.md) -- [InterfaceVolunteerMembership](interfaces/InterfaceVolunteerMembership.md) -- [InterfaceVolunteerRank](interfaces/InterfaceVolunteerRank.md) diff --git a/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceActionItemCategoryInfo.md b/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceActionItemCategoryInfo.md deleted file mode 100644 index 0b97c4f8cf..0000000000 --- a/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceActionItemCategoryInfo.md +++ /dev/null @@ -1,61 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / [utils/interfaces](../README.md) / InterfaceActionItemCategoryInfo - -# Interface: InterfaceActionItemCategoryInfo - -Defined in: [src/utils/interfaces.ts:31](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L31) - -## Properties - -### \_id - -> **\_id**: `string` - -Defined in: [src/utils/interfaces.ts:32](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L32) - -*** - -### createdAt - -> **createdAt**: `string` - -Defined in: [src/utils/interfaces.ts:35](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L35) - -*** - -### creator - -> **creator**: `object` - -Defined in: [src/utils/interfaces.ts:36](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L36) - -#### \_id - -> **\_id**: `string` - -#### firstName - -> **firstName**: `string` - -#### lastName - -> **lastName**: `string` - -*** - -### isDisabled - -> **isDisabled**: `boolean` - -Defined in: [src/utils/interfaces.ts:34](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L34) - -*** - -### name - -> **name**: `string` - -Defined in: [src/utils/interfaces.ts:33](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L33) diff --git a/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceActionItemCategoryList.md b/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceActionItemCategoryList.md deleted file mode 100644 index 0abc5b197b..0000000000 --- a/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceActionItemCategoryList.md +++ /dev/null @@ -1,17 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / [utils/interfaces](../README.md) / InterfaceActionItemCategoryList - -# Interface: InterfaceActionItemCategoryList - -Defined in: [src/utils/interfaces.ts:39](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L39) - -## Properties - -### actionItemCategoriesByOrganization - -> **actionItemCategoriesByOrganization**: [`InterfaceActionItemCategoryInfo`](InterfaceActionItemCategoryInfo.md)[] - -Defined in: [src/utils/interfaces.ts:40](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L40) diff --git a/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceActionItemInfo.md b/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceActionItemInfo.md deleted file mode 100644 index 24e64f4f17..0000000000 --- a/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceActionItemInfo.md +++ /dev/null @@ -1,145 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / [utils/interfaces](../README.md) / InterfaceActionItemInfo - -# Interface: InterfaceActionItemInfo - -Defined in: [src/utils/interfaces.ts:43](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L43) - -## Properties - -### \_id - -> **\_id**: `string` - -Defined in: [src/utils/interfaces.ts:44](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L44) - -*** - -### actionItemCategory - -> **actionItemCategory**: `object` - -Defined in: [src/utils/interfaces.ts:50](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L50) - -#### \_id - -> **\_id**: `string` - -#### name - -> **name**: `string` - -*** - -### allottedHours - -> **allottedHours**: `null` \| `number` - -Defined in: [src/utils/interfaces.ts:65](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L65) - -*** - -### assignee - -> **assignee**: `null` \| [`InterfaceEventVolunteerInfo`](InterfaceEventVolunteerInfo.md) - -Defined in: [src/utils/interfaces.ts:46](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L46) - -*** - -### assigneeGroup - -> **assigneeGroup**: `null` \| [`InterfaceVolunteerGroupInfo`](InterfaceVolunteerGroupInfo.md) - -Defined in: [src/utils/interfaces.ts:47](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L47) - -*** - -### assigneeType - -> **assigneeType**: `"User"` \| `"EventVolunteerGroup"` \| `"EventVolunteer"` - -Defined in: [src/utils/interfaces.ts:45](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L45) - -*** - -### assigneeUser - -> **assigneeUser**: `null` \| [`InterfaceUserInfo`](InterfaceUserInfo.md) - -Defined in: [src/utils/interfaces.ts:48](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L48) - -*** - -### assigner - -> **assigner**: [`InterfaceUserInfo`](InterfaceUserInfo.md) - -Defined in: [src/utils/interfaces.ts:49](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L49) - -*** - -### assignmentDate - -> **assignmentDate**: `Date` - -Defined in: [src/utils/interfaces.ts:56](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L56) - -*** - -### completionDate - -> **completionDate**: `null` \| `Date` - -Defined in: [src/utils/interfaces.ts:58](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L58) - -*** - -### creator - -> **creator**: [`InterfaceUserInfo`](InterfaceUserInfo.md) - -Defined in: [src/utils/interfaces.ts:64](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L64) - -*** - -### dueDate - -> **dueDate**: `Date` - -Defined in: [src/utils/interfaces.ts:57](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L57) - -*** - -### event - -> **event**: `null` \| \{ `_id`: `string`; `title`: `string`; \} - -Defined in: [src/utils/interfaces.ts:60](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L60) - -*** - -### isCompleted - -> **isCompleted**: `boolean` - -Defined in: [src/utils/interfaces.ts:59](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L59) - -*** - -### postCompletionNotes - -> **postCompletionNotes**: `null` \| `string` - -Defined in: [src/utils/interfaces.ts:55](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L55) - -*** - -### preCompletionNotes - -> **preCompletionNotes**: `string` - -Defined in: [src/utils/interfaces.ts:54](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L54) diff --git a/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceActionItemList.md b/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceActionItemList.md deleted file mode 100644 index bc3224d3be..0000000000 --- a/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceActionItemList.md +++ /dev/null @@ -1,17 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / [utils/interfaces](../README.md) / InterfaceActionItemList - -# Interface: InterfaceActionItemList - -Defined in: [src/utils/interfaces.ts:68](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L68) - -## Properties - -### actionItemsByOrganization - -> **actionItemsByOrganization**: [`InterfaceActionItemInfo`](InterfaceActionItemInfo.md)[] - -Defined in: [src/utils/interfaces.ts:69](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L69) diff --git a/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceAddOnSpotAttendeeProps.md b/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceAddOnSpotAttendeeProps.md deleted file mode 100644 index 94501a9638..0000000000 --- a/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceAddOnSpotAttendeeProps.md +++ /dev/null @@ -1,41 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / [utils/interfaces](../README.md) / InterfaceAddOnSpotAttendeeProps - -# Interface: InterfaceAddOnSpotAttendeeProps - -Defined in: [src/utils/interfaces.ts:546](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L546) - -## Properties - -### handleClose() - -> **handleClose**: () => `void` - -Defined in: [src/utils/interfaces.ts:548](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L548) - -#### Returns - -`void` - -*** - -### reloadMembers() - -> **reloadMembers**: () => `void` - -Defined in: [src/utils/interfaces.ts:549](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L549) - -#### Returns - -`void` - -*** - -### show - -> **show**: `boolean` - -Defined in: [src/utils/interfaces.ts:547](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L547) diff --git a/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceAddress.md b/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceAddress.md deleted file mode 100644 index 974e9f0a73..0000000000 --- a/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceAddress.md +++ /dev/null @@ -1,73 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / [utils/interfaces](../README.md) / InterfaceAddress - -# Interface: InterfaceAddress - -Defined in: [src/utils/interfaces.ts:453](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L453) - -## Properties - -### city - -> **city**: `string` - -Defined in: [src/utils/interfaces.ts:454](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L454) - -*** - -### countryCode - -> **countryCode**: `string` - -Defined in: [src/utils/interfaces.ts:455](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L455) - -*** - -### dependentLocality - -> **dependentLocality**: `string` - -Defined in: [src/utils/interfaces.ts:456](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L456) - -*** - -### line1 - -> **line1**: `string` - -Defined in: [src/utils/interfaces.ts:457](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L457) - -*** - -### line2 - -> **line2**: `string` - -Defined in: [src/utils/interfaces.ts:458](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L458) - -*** - -### postalCode - -> **postalCode**: `string` - -Defined in: [src/utils/interfaces.ts:459](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L459) - -*** - -### sortingCode - -> **sortingCode**: `string` - -Defined in: [src/utils/interfaces.ts:460](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L460) - -*** - -### state - -> **state**: `string` - -Defined in: [src/utils/interfaces.ts:461](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L461) diff --git a/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceAgendaItemCategoryInfo.md b/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceAgendaItemCategoryInfo.md deleted file mode 100644 index 9f88322650..0000000000 --- a/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceAgendaItemCategoryInfo.md +++ /dev/null @@ -1,53 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / [utils/interfaces](../README.md) / InterfaceAgendaItemCategoryInfo - -# Interface: InterfaceAgendaItemCategoryInfo - -Defined in: [src/utils/interfaces.ts:531](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L531) - -## Properties - -### \_id - -> **\_id**: `string` - -Defined in: [src/utils/interfaces.ts:532](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L532) - -*** - -### createdBy - -> **createdBy**: `object` - -Defined in: [src/utils/interfaces.ts:535](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L535) - -#### \_id - -> **\_id**: `string` - -#### firstName - -> **firstName**: `string` - -#### lastName - -> **lastName**: `string` - -*** - -### description - -> **description**: `string` - -Defined in: [src/utils/interfaces.ts:534](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L534) - -*** - -### name - -> **name**: `string` - -Defined in: [src/utils/interfaces.ts:533](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L533) diff --git a/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceAgendaItemCategoryList.md b/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceAgendaItemCategoryList.md deleted file mode 100644 index 8656e1faa5..0000000000 --- a/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceAgendaItemCategoryList.md +++ /dev/null @@ -1,17 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / [utils/interfaces](../README.md) / InterfaceAgendaItemCategoryList - -# Interface: InterfaceAgendaItemCategoryList - -Defined in: [src/utils/interfaces.ts:542](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L542) - -## Properties - -### agendaItemCategoriesByOrganization - -> **agendaItemCategoriesByOrganization**: [`InterfaceAgendaItemCategoryInfo`](InterfaceAgendaItemCategoryInfo.md)[] - -Defined in: [src/utils/interfaces.ts:543](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L543) diff --git a/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceAgendaItemInfo.md b/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceAgendaItemInfo.md deleted file mode 100644 index d38b13ca2d..0000000000 --- a/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceAgendaItemInfo.md +++ /dev/null @@ -1,153 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / [utils/interfaces](../README.md) / InterfaceAgendaItemInfo - -# Interface: InterfaceAgendaItemInfo - -Defined in: [src/utils/interfaces.ts:560](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L560) - -## Properties - -### \_id - -> **\_id**: `string` - -Defined in: [src/utils/interfaces.ts:561](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L561) - -*** - -### attachments - -> **attachments**: `string`[] - -Defined in: [src/utils/interfaces.ts:565](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L565) - -*** - -### categories - -> **categories**: `object`[] - -Defined in: [src/utils/interfaces.ts:578](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L578) - -#### \_id - -> **\_id**: `string` - -#### name - -> **name**: `string` - -*** - -### createdBy - -> **createdBy**: `object` - -Defined in: [src/utils/interfaces.ts:566](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L566) - -#### \_id - -> **\_id**: `string` - -#### firstName - -> **firstName**: `string` - -#### lastName - -> **lastName**: `string` - -*** - -### description - -> **description**: `string` - -Defined in: [src/utils/interfaces.ts:563](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L563) - -*** - -### duration - -> **duration**: `string` - -Defined in: [src/utils/interfaces.ts:564](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L564) - -*** - -### organization - -> **organization**: `object` - -Defined in: [src/utils/interfaces.ts:582](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L582) - -#### \_id - -> **\_id**: `string` - -#### name - -> **name**: `string` - -*** - -### relatedEvent - -> **relatedEvent**: `object` - -Defined in: [src/utils/interfaces.ts:586](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L586) - -#### \_id - -> **\_id**: `string` - -#### title - -> **title**: `string` - -*** - -### sequence - -> **sequence**: `number` - -Defined in: [src/utils/interfaces.ts:577](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L577) - -*** - -### title - -> **title**: `string` - -Defined in: [src/utils/interfaces.ts:562](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L562) - -*** - -### urls - -> **urls**: `string`[] - -Defined in: [src/utils/interfaces.ts:571](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L571) - -*** - -### users - -> **users**: `object`[] - -Defined in: [src/utils/interfaces.ts:572](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L572) - -#### \_id - -> **\_id**: `string` - -#### firstName - -> **firstName**: `string` - -#### lastName - -> **lastName**: `string` diff --git a/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceAgendaItemList.md b/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceAgendaItemList.md deleted file mode 100644 index b3575ca628..0000000000 --- a/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceAgendaItemList.md +++ /dev/null @@ -1,17 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / [utils/interfaces](../README.md) / InterfaceAgendaItemList - -# Interface: InterfaceAgendaItemList - -Defined in: [src/utils/interfaces.ts:592](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L592) - -## Properties - -### agendaItemByEvent - -> **agendaItemByEvent**: [`InterfaceAgendaItemInfo`](InterfaceAgendaItemInfo.md)[] - -Defined in: [src/utils/interfaces.ts:593](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L593) diff --git a/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceBaseEvent.md b/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceBaseEvent.md deleted file mode 100644 index 6012f661b7..0000000000 --- a/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceBaseEvent.md +++ /dev/null @@ -1,94 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / [utils/interfaces](../README.md) / InterfaceBaseEvent - -# Interface: InterfaceBaseEvent - -Defined in: [src/utils/interfaces.ts:18](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L18) - -## Extended by - -- [`InterfaceQueryOrganizationEventListItem`](InterfaceQueryOrganizationEventListItem.md) -- [`InterfaceUserEvents`](InterfaceUserEvents.md) - -## Properties - -### \_id - -> **\_id**: `string` - -Defined in: [src/utils/interfaces.ts:19](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L19) - -*** - -### allDay - -> **allDay**: `boolean` - -Defined in: [src/utils/interfaces.ts:27](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L27) - -*** - -### description - -> **description**: `string` - -Defined in: [src/utils/interfaces.ts:21](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L21) - -*** - -### endDate - -> **endDate**: `string` - -Defined in: [src/utils/interfaces.ts:23](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L23) - -*** - -### endTime - -> **endTime**: `string` - -Defined in: [src/utils/interfaces.ts:26](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L26) - -*** - -### location - -> **location**: `string` - -Defined in: [src/utils/interfaces.ts:24](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L24) - -*** - -### recurring - -> **recurring**: `boolean` - -Defined in: [src/utils/interfaces.ts:28](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L28) - -*** - -### startDate - -> **startDate**: `string` - -Defined in: [src/utils/interfaces.ts:22](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L22) - -*** - -### startTime - -> **startTime**: `string` - -Defined in: [src/utils/interfaces.ts:25](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L25) - -*** - -### title - -> **title**: `string` - -Defined in: [src/utils/interfaces.ts:20](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L20) diff --git a/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceCampaignInfo.md b/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceCampaignInfo.md deleted file mode 100644 index 8db5d5f123..0000000000 --- a/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceCampaignInfo.md +++ /dev/null @@ -1,65 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / [utils/interfaces](../README.md) / InterfaceCampaignInfo - -# Interface: InterfaceCampaignInfo - -Defined in: [src/utils/interfaces.ts:362](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L362) - -## Properties - -### \_id - -> **\_id**: `string` - -Defined in: [src/utils/interfaces.ts:363](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L363) - -*** - -### createdAt - -> **createdAt**: `string` - -Defined in: [src/utils/interfaces.ts:368](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L368) - -*** - -### currency - -> **currency**: `string` - -Defined in: [src/utils/interfaces.ts:369](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L369) - -*** - -### endDate - -> **endDate**: `Date` - -Defined in: [src/utils/interfaces.ts:367](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L367) - -*** - -### fundingGoal - -> **fundingGoal**: `number` - -Defined in: [src/utils/interfaces.ts:365](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L365) - -*** - -### name - -> **name**: `string` - -Defined in: [src/utils/interfaces.ts:364](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L364) - -*** - -### startDate - -> **startDate**: `Date` - -Defined in: [src/utils/interfaces.ts:366](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L366) diff --git a/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceCreateFund.md b/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceCreateFund.md deleted file mode 100644 index 9e3b198876..0000000000 --- a/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceCreateFund.md +++ /dev/null @@ -1,49 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / [utils/interfaces](../README.md) / InterfaceCreateFund - -# Interface: InterfaceCreateFund - -Defined in: [src/utils/interfaces.ts:463](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L463) - -## Properties - -### fundName - -> **fundName**: `string` - -Defined in: [src/utils/interfaces.ts:464](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L464) - -*** - -### fundRef - -> **fundRef**: `string` - -Defined in: [src/utils/interfaces.ts:465](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L465) - -*** - -### isArchived - -> **isArchived**: `boolean` - -Defined in: [src/utils/interfaces.ts:467](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L467) - -*** - -### isDefault - -> **isDefault**: `boolean` - -Defined in: [src/utils/interfaces.ts:466](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L466) - -*** - -### taxDeductible - -> **taxDeductible**: `boolean` - -Defined in: [src/utils/interfaces.ts:468](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L468) diff --git a/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceCreatePledge.md b/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceCreatePledge.md deleted file mode 100644 index ec4786d7d4..0000000000 --- a/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceCreatePledge.md +++ /dev/null @@ -1,49 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / [utils/interfaces](../README.md) / InterfaceCreatePledge - -# Interface: InterfaceCreatePledge - -Defined in: [src/utils/interfaces.ts:508](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L508) - -## Properties - -### pledgeAmount - -> **pledgeAmount**: `number` - -Defined in: [src/utils/interfaces.ts:510](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L510) - -*** - -### pledgeCurrency - -> **pledgeCurrency**: `string` - -Defined in: [src/utils/interfaces.ts:511](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L511) - -*** - -### pledgeEndDate - -> **pledgeEndDate**: `Date` - -Defined in: [src/utils/interfaces.ts:513](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L513) - -*** - -### pledgeStartDate - -> **pledgeStartDate**: `Date` - -Defined in: [src/utils/interfaces.ts:512](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L512) - -*** - -### pledgeUsers - -> **pledgeUsers**: [`InterfaceUserInfo`](InterfaceUserInfo.md)[] - -Defined in: [src/utils/interfaces.ts:509](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L509) diff --git a/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceCreateVolunteerGroup.md b/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceCreateVolunteerGroup.md deleted file mode 100644 index ac83f54532..0000000000 --- a/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceCreateVolunteerGroup.md +++ /dev/null @@ -1,49 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / [utils/interfaces](../README.md) / InterfaceCreateVolunteerGroup - -# Interface: InterfaceCreateVolunteerGroup - -Defined in: [src/utils/interfaces.ts:648](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L648) - -## Properties - -### description - -> **description**: `null` \| `string` - -Defined in: [src/utils/interfaces.ts:650](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L650) - -*** - -### leader - -> **leader**: `null` \| [`InterfaceUserInfo`](InterfaceUserInfo.md) - -Defined in: [src/utils/interfaces.ts:651](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L651) - -*** - -### name - -> **name**: `string` - -Defined in: [src/utils/interfaces.ts:649](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L649) - -*** - -### volunteersRequired - -> **volunteersRequired**: `null` \| `number` - -Defined in: [src/utils/interfaces.ts:652](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L652) - -*** - -### volunteerUsers - -> **volunteerUsers**: [`InterfaceUserInfo`](InterfaceUserInfo.md)[] - -Defined in: [src/utils/interfaces.ts:653](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L653) diff --git a/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceCustomFieldData.md b/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceCustomFieldData.md deleted file mode 100644 index c05ccdd150..0000000000 --- a/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceCustomFieldData.md +++ /dev/null @@ -1,25 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / [utils/interfaces](../README.md) / InterfaceCustomFieldData - -# Interface: InterfaceCustomFieldData - -Defined in: [src/utils/interfaces.ts:600](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L600) - -## Properties - -### name - -> **name**: `string` - -Defined in: [src/utils/interfaces.ts:602](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L602) - -*** - -### type - -> **type**: `string` - -Defined in: [src/utils/interfaces.ts:601](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L601) diff --git a/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceEventVolunteerInfo.md b/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceEventVolunteerInfo.md deleted file mode 100644 index 6e3be32fff..0000000000 --- a/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceEventVolunteerInfo.md +++ /dev/null @@ -1,73 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / [utils/interfaces](../README.md) / InterfaceEventVolunteerInfo - -# Interface: InterfaceEventVolunteerInfo - -Defined in: [src/utils/interfaces.ts:605](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L605) - -## Properties - -### \_id - -> **\_id**: `string` - -Defined in: [src/utils/interfaces.ts:606](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L606) - -*** - -### assignments - -> **assignments**: `object`[] - -Defined in: [src/utils/interfaces.ts:610](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L610) - -#### \_id - -> **\_id**: `string` - -*** - -### groups - -> **groups**: `object`[] - -Defined in: [src/utils/interfaces.ts:613](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L613) - -#### \_id - -> **\_id**: `string` - -#### name - -> **name**: `string` - -#### volunteers - -> **volunteers**: `object`[] - -*** - -### hasAccepted - -> **hasAccepted**: `boolean` - -Defined in: [src/utils/interfaces.ts:607](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L607) - -*** - -### hoursVolunteered - -> **hoursVolunteered**: `null` \| `number` - -Defined in: [src/utils/interfaces.ts:608](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L608) - -*** - -### user - -> **user**: [`InterfaceUserInfo`](InterfaceUserInfo.md) - -Defined in: [src/utils/interfaces.ts:609](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L609) diff --git a/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceFormData.md b/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceFormData.md deleted file mode 100644 index 752fc6c076..0000000000 --- a/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceFormData.md +++ /dev/null @@ -1,49 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / [utils/interfaces](../README.md) / InterfaceFormData - -# Interface: InterfaceFormData - -Defined in: [src/utils/interfaces.ts:552](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L552) - -## Properties - -### email - -> **email**: `string` - -Defined in: [src/utils/interfaces.ts:555](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L555) - -*** - -### firstName - -> **firstName**: `string` - -Defined in: [src/utils/interfaces.ts:553](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L553) - -*** - -### gender - -> **gender**: `string` - -Defined in: [src/utils/interfaces.ts:557](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L557) - -*** - -### lastName - -> **lastName**: `string` - -Defined in: [src/utils/interfaces.ts:554](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L554) - -*** - -### phoneNo - -> **phoneNo**: `string` - -Defined in: [src/utils/interfaces.ts:556](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L556) diff --git a/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceFundInfo.md b/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceFundInfo.md deleted file mode 100644 index 06ca15efa7..0000000000 --- a/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceFundInfo.md +++ /dev/null @@ -1,93 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / [utils/interfaces](../README.md) / InterfaceFundInfo - -# Interface: InterfaceFundInfo - -Defined in: [src/utils/interfaces.ts:351](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L351) - -## Properties - -### \_id - -> **\_id**: `string` - -Defined in: [src/utils/interfaces.ts:352](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L352) - -*** - -### createdAt - -> **createdAt**: `string` - -Defined in: [src/utils/interfaces.ts:358](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L358) - -*** - -### creator - -> **creator**: `object` - -Defined in: [src/utils/interfaces.ts:360](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L360) - -#### \_id - -> **\_id**: `string` - -#### firstName - -> **firstName**: `string` - -#### lastName - -> **lastName**: `string` - -*** - -### isArchived - -> **isArchived**: `boolean` - -Defined in: [src/utils/interfaces.ts:356](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L356) - -*** - -### isDefault - -> **isDefault**: `boolean` - -Defined in: [src/utils/interfaces.ts:357](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L357) - -*** - -### name - -> **name**: `string` - -Defined in: [src/utils/interfaces.ts:353](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L353) - -*** - -### organizationId - -> **organizationId**: `string` - -Defined in: [src/utils/interfaces.ts:359](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L359) - -*** - -### refrenceNumber - -> **refrenceNumber**: `string` - -Defined in: [src/utils/interfaces.ts:354](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L354) - -*** - -### taxDeductible - -> **taxDeductible**: `boolean` - -Defined in: [src/utils/interfaces.ts:355](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L355) diff --git a/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceMapType.md b/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceMapType.md deleted file mode 100644 index 0f116830e8..0000000000 --- a/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceMapType.md +++ /dev/null @@ -1,13 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / [utils/interfaces](../README.md) / InterfaceMapType - -# Interface: InterfaceMapType - -Defined in: [src/utils/interfaces.ts:596](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L596) - -## Indexable - -\[`key`: `string`\]: `string` diff --git a/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceMemberInfo.md b/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceMemberInfo.md deleted file mode 100644 index 0b97231554..0000000000 --- a/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceMemberInfo.md +++ /dev/null @@ -1,69 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / [utils/interfaces](../README.md) / InterfaceMemberInfo - -# Interface: InterfaceMemberInfo - -Defined in: [src/utils/interfaces.ts:79](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L79) - -## Properties - -### \_id - -> **\_id**: `string` - -Defined in: [src/utils/interfaces.ts:80](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L80) - -*** - -### createdAt - -> **createdAt**: `string` - -Defined in: [src/utils/interfaces.ts:85](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L85) - -*** - -### email - -> **email**: `string` - -Defined in: [src/utils/interfaces.ts:83](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L83) - -*** - -### firstName - -> **firstName**: `string` - -Defined in: [src/utils/interfaces.ts:81](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L81) - -*** - -### image - -> **image**: `string` - -Defined in: [src/utils/interfaces.ts:84](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L84) - -*** - -### lastName - -> **lastName**: `string` - -Defined in: [src/utils/interfaces.ts:82](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L82) - -*** - -### organizationsBlockedBy - -> **organizationsBlockedBy**: `object`[] - -Defined in: [src/utils/interfaces.ts:86](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L86) - -#### \_id - -> **\_id**: `string` diff --git a/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceMembersList.md b/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceMembersList.md deleted file mode 100644 index 0425bed412..0000000000 --- a/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceMembersList.md +++ /dev/null @@ -1,25 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / [utils/interfaces](../README.md) / InterfaceMembersList - -# Interface: InterfaceMembersList - -Defined in: [src/utils/interfaces.ts:72](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L72) - -## Properties - -### organizations - -> **organizations**: `object`[] - -Defined in: [src/utils/interfaces.ts:73](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L73) - -#### \_id - -> **\_id**: `string` - -#### members - -> **members**: [`InterfaceMemberInfo`](InterfaceMemberInfo.md)[] diff --git a/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceOrgConnectionInfoType.md b/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceOrgConnectionInfoType.md deleted file mode 100644 index a18973f322..0000000000 --- a/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceOrgConnectionInfoType.md +++ /dev/null @@ -1,93 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / [utils/interfaces](../README.md) / InterfaceOrgConnectionInfoType - -# Interface: InterfaceOrgConnectionInfoType - -Defined in: [src/utils/interfaces.ts:91](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L91) - -## Properties - -### \_id - -> **\_id**: `string` - -Defined in: [src/utils/interfaces.ts:92](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L92) - -*** - -### address - -> **address**: [`InterfaceAddress`](InterfaceAddress.md) - -Defined in: [src/utils/interfaces.ts:107](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L107) - -*** - -### admins - -> **admins**: `object`[] - -Defined in: [src/utils/interfaces.ts:103](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L103) - -#### \_id - -> **\_id**: `string` - -*** - -### createdAt - -> **createdAt**: `string` - -Defined in: [src/utils/interfaces.ts:106](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L106) - -*** - -### creator - -> **creator**: `object` - -Defined in: [src/utils/interfaces.ts:94](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L94) - -#### \_id - -> **\_id**: `string` - -#### firstName - -> **firstName**: `string` - -#### lastName - -> **lastName**: `string` - -*** - -### image - -> **image**: `null` \| `string` - -Defined in: [src/utils/interfaces.ts:93](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L93) - -*** - -### members - -> **members**: `object`[] - -Defined in: [src/utils/interfaces.ts:100](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L100) - -#### \_id - -> **\_id**: `string` - -*** - -### name - -> **name**: `string` - -Defined in: [src/utils/interfaces.ts:99](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L99) diff --git a/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceOrgConnectionType.md b/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceOrgConnectionType.md deleted file mode 100644 index 16cc231ea0..0000000000 --- a/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceOrgConnectionType.md +++ /dev/null @@ -1,17 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / [utils/interfaces](../README.md) / InterfaceOrgConnectionType - -# Interface: InterfaceOrgConnectionType - -Defined in: [src/utils/interfaces.ts:109](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L109) - -## Properties - -### organizationsConnection - -> **organizationsConnection**: [`InterfaceOrgConnectionInfoType`](InterfaceOrgConnectionInfoType.md)[] - -Defined in: [src/utils/interfaces.ts:110](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L110) diff --git a/docs/docs/auto-docs/utils/interfaces/interfaces/InterfacePledgeInfo.md b/docs/docs/auto-docs/utils/interfaces/interfaces/InterfacePledgeInfo.md deleted file mode 100644 index 4b34faad78..0000000000 --- a/docs/docs/auto-docs/utils/interfaces/interfaces/InterfacePledgeInfo.md +++ /dev/null @@ -1,77 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / [utils/interfaces](../README.md) / InterfacePledgeInfo - -# Interface: InterfacePledgeInfo - -Defined in: [src/utils/interfaces.ts:371](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L371) - -## Properties - -### \_id - -> **\_id**: `string` - -Defined in: [src/utils/interfaces.ts:372](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L372) - -*** - -### amount - -> **amount**: `number` - -Defined in: [src/utils/interfaces.ts:374](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L374) - -*** - -### campaign? - -> `optional` **campaign**: `object` - -Defined in: [src/utils/interfaces.ts:373](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L373) - -#### \_id - -> **\_id**: `string` - -#### endDate - -> **endDate**: `Date` - -#### name - -> **name**: `string` - -*** - -### currency - -> **currency**: `string` - -Defined in: [src/utils/interfaces.ts:375](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L375) - -*** - -### endDate - -> **endDate**: `string` - -Defined in: [src/utils/interfaces.ts:376](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L376) - -*** - -### startDate - -> **startDate**: `string` - -Defined in: [src/utils/interfaces.ts:377](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L377) - -*** - -### users - -> **users**: [`InterfaceUserInfo`](InterfaceUserInfo.md)[] - -Defined in: [src/utils/interfaces.ts:378](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L378) diff --git a/docs/docs/auto-docs/utils/interfaces/interfaces/InterfacePostCard.md b/docs/docs/auto-docs/utils/interfaces/interfaces/InterfacePostCard.md deleted file mode 100644 index 4b5868c1e4..0000000000 --- a/docs/docs/auto-docs/utils/interfaces/interfaces/InterfacePostCard.md +++ /dev/null @@ -1,173 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / [utils/interfaces](../README.md) / InterfacePostCard - -# Interface: InterfacePostCard - -Defined in: [src/utils/interfaces.ts:471](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L471) - -## Properties - -### commentCount - -> **commentCount**: `number` - -Defined in: [src/utils/interfaces.ts:485](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L485) - -*** - -### comments - -> **comments**: `object`[] - -Defined in: [src/utils/interfaces.ts:486](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L486) - -#### creator - -> **creator**: `object` - -##### creator.email - -> **email**: `string` - -##### creator.firstName - -> **firstName**: `string` - -##### creator.id - -> **id**: `string` - -##### creator.lastName - -> **lastName**: `string` - -#### id - -> **id**: `string` - -#### likeCount - -> **likeCount**: `number` - -#### likedBy - -> **likedBy**: `object`[] - -#### text - -> **text**: `string` - -*** - -### creator - -> **creator**: `object` - -Defined in: [src/utils/interfaces.ts:473](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L473) - -#### email - -> **email**: `string` - -#### firstName - -> **firstName**: `string` - -#### id - -> **id**: `string` - -#### lastName - -> **lastName**: `string` - -*** - -### fetchPosts() - -> **fetchPosts**: () => `void` - -Defined in: [src/utils/interfaces.ts:505](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L505) - -#### Returns - -`void` - -*** - -### id - -> **id**: `string` - -Defined in: [src/utils/interfaces.ts:472](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L472) - -*** - -### image - -> **image**: `null` \| `string` - -Defined in: [src/utils/interfaces.ts:480](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L480) - -*** - -### likeCount - -> **likeCount**: `number` - -Defined in: [src/utils/interfaces.ts:484](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L484) - -*** - -### likedBy - -> **likedBy**: `object`[] - -Defined in: [src/utils/interfaces.ts:500](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L500) - -#### firstName - -> **firstName**: `string` - -#### id - -> **id**: `string` - -#### lastName - -> **lastName**: `string` - -*** - -### postedAt - -> **postedAt**: `string` - -Defined in: [src/utils/interfaces.ts:479](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L479) - -*** - -### text - -> **text**: `string` - -Defined in: [src/utils/interfaces.ts:482](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L482) - -*** - -### title - -> **title**: `string` - -Defined in: [src/utils/interfaces.ts:483](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L483) - -*** - -### video - -> **video**: `null` \| `string` - -Defined in: [src/utils/interfaces.ts:481](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L481) diff --git a/docs/docs/auto-docs/utils/interfaces/interfaces/InterfacePostForm.md b/docs/docs/auto-docs/utils/interfaces/interfaces/InterfacePostForm.md deleted file mode 100644 index 80305fe936..0000000000 --- a/docs/docs/auto-docs/utils/interfaces/interfaces/InterfacePostForm.md +++ /dev/null @@ -1,49 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / [utils/interfaces](../README.md) / InterfacePostForm - -# Interface: InterfacePostForm - -Defined in: [src/utils/interfaces.ts:173](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L173) - -## Properties - -### pinned - -> **pinned**: `boolean` - -Defined in: [src/utils/interfaces.ts:178](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L178) - -*** - -### postinfo - -> **postinfo**: `string` - -Defined in: [src/utils/interfaces.ts:175](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L175) - -*** - -### postphoto - -> **postphoto**: `null` \| `string` - -Defined in: [src/utils/interfaces.ts:176](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L176) - -*** - -### posttitle - -> **posttitle**: `string` - -Defined in: [src/utils/interfaces.ts:174](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L174) - -*** - -### postvideo - -> **postvideo**: `null` \| `string` - -Defined in: [src/utils/interfaces.ts:177](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L177) diff --git a/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceQueryBlockPageMemberListItem.md b/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceQueryBlockPageMemberListItem.md deleted file mode 100644 index 4471aa97f3..0000000000 --- a/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceQueryBlockPageMemberListItem.md +++ /dev/null @@ -1,53 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / [utils/interfaces](../README.md) / InterfaceQueryBlockPageMemberListItem - -# Interface: InterfaceQueryBlockPageMemberListItem - -Defined in: [src/utils/interfaces.ts:386](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L386) - -## Properties - -### \_id - -> **\_id**: `string` - -Defined in: [src/utils/interfaces.ts:387](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L387) - -*** - -### email - -> **email**: `string` - -Defined in: [src/utils/interfaces.ts:390](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L390) - -*** - -### firstName - -> **firstName**: `string` - -Defined in: [src/utils/interfaces.ts:388](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L388) - -*** - -### lastName - -> **lastName**: `string` - -Defined in: [src/utils/interfaces.ts:389](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L389) - -*** - -### organizationsBlockedBy - -> **organizationsBlockedBy**: `object`[] - -Defined in: [src/utils/interfaces.ts:391](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L391) - -#### \_id - -> **\_id**: `string` diff --git a/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceQueryFundCampaignsPledges.md b/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceQueryFundCampaignsPledges.md deleted file mode 100644 index e32fe7266d..0000000000 --- a/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceQueryFundCampaignsPledges.md +++ /dev/null @@ -1,69 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / [utils/interfaces](../README.md) / InterfaceQueryFundCampaignsPledges - -# Interface: InterfaceQueryFundCampaignsPledges - -Defined in: [src/utils/interfaces.ts:340](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L340) - -## Properties - -### currency - -> **currency**: `string` - -Defined in: [src/utils/interfaces.ts:346](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L346) - -*** - -### endDate - -> **endDate**: `Date` - -Defined in: [src/utils/interfaces.ts:348](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L348) - -*** - -### fundId - -> **fundId**: `object` - -Defined in: [src/utils/interfaces.ts:341](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L341) - -#### name - -> **name**: `string` - -*** - -### fundingGoal - -> **fundingGoal**: `number` - -Defined in: [src/utils/interfaces.ts:345](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L345) - -*** - -### name - -> **name**: `string` - -Defined in: [src/utils/interfaces.ts:344](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L344) - -*** - -### pledges - -> **pledges**: [`InterfacePledgeInfo`](InterfacePledgeInfo.md)[] - -Defined in: [src/utils/interfaces.ts:349](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L349) - -*** - -### startDate - -> **startDate**: `Date` - -Defined in: [src/utils/interfaces.ts:347](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L347) diff --git a/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceQueryMembershipRequestsListItem.md b/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceQueryMembershipRequestsListItem.md deleted file mode 100644 index 602edf276c..0000000000 --- a/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceQueryMembershipRequestsListItem.md +++ /dev/null @@ -1,25 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / [utils/interfaces](../README.md) / InterfaceQueryMembershipRequestsListItem - -# Interface: InterfaceQueryMembershipRequestsListItem - -Defined in: [src/utils/interfaces.ts:516](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L516) - -## Properties - -### organizations - -> **organizations**: `object`[] - -Defined in: [src/utils/interfaces.ts:517](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L517) - -#### \_id - -> **\_id**: `string` - -#### membershipRequests - -> **membershipRequests**: `object`[] diff --git a/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceQueryOrganizationAdvertisementListItem.md b/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceQueryOrganizationAdvertisementListItem.md deleted file mode 100644 index 816a74ae83..0000000000 --- a/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceQueryOrganizationAdvertisementListItem.md +++ /dev/null @@ -1,45 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / [utils/interfaces](../README.md) / InterfaceQueryOrganizationAdvertisementListItem - -# Interface: InterfaceQueryOrganizationAdvertisementListItem - -Defined in: [src/utils/interfaces.ts:296](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L296) - -## Properties - -### advertisements - -> **advertisements**: `object` - -Defined in: [src/utils/interfaces.ts:297](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L297) - -#### edges - -> **edges**: `object`[] - -#### pageInfo - -> **pageInfo**: `object` - -##### pageInfo.endCursor - -> **endCursor**: `string` - -##### pageInfo.hasNextPage - -> **hasNextPage**: `boolean` - -##### pageInfo.hasPreviousPage - -> **hasPreviousPage**: `boolean` - -##### pageInfo.startCursor - -> **startCursor**: `string` - -#### totalCount - -> **totalCount**: `number` diff --git a/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceQueryOrganizationEventListItem.md b/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceQueryOrganizationEventListItem.md deleted file mode 100644 index 2fdda6d173..0000000000 --- a/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceQueryOrganizationEventListItem.md +++ /dev/null @@ -1,149 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / [utils/interfaces](../README.md) / InterfaceQueryOrganizationEventListItem - -# Interface: InterfaceQueryOrganizationEventListItem - -Defined in: [src/utils/interfaces.ts:380](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L380) - -## Extends - -- [`InterfaceBaseEvent`](InterfaceBaseEvent.md) - -## Properties - -### \_id - -> **\_id**: `string` - -Defined in: [src/utils/interfaces.ts:19](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L19) - -#### Inherited from - -[`InterfaceBaseEvent`](InterfaceBaseEvent.md).[`_id`](InterfaceBaseEvent.md#_id) - -*** - -### allDay - -> **allDay**: `boolean` - -Defined in: [src/utils/interfaces.ts:27](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L27) - -#### Inherited from - -[`InterfaceBaseEvent`](InterfaceBaseEvent.md).[`allDay`](InterfaceBaseEvent.md#allday) - -*** - -### description - -> **description**: `string` - -Defined in: [src/utils/interfaces.ts:21](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L21) - -#### Inherited from - -[`InterfaceBaseEvent`](InterfaceBaseEvent.md).[`description`](InterfaceBaseEvent.md#description) - -*** - -### endDate - -> **endDate**: `string` - -Defined in: [src/utils/interfaces.ts:23](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L23) - -#### Inherited from - -[`InterfaceBaseEvent`](InterfaceBaseEvent.md).[`endDate`](InterfaceBaseEvent.md#enddate) - -*** - -### endTime - -> **endTime**: `string` - -Defined in: [src/utils/interfaces.ts:26](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L26) - -#### Inherited from - -[`InterfaceBaseEvent`](InterfaceBaseEvent.md).[`endTime`](InterfaceBaseEvent.md#endtime) - -*** - -### isPublic - -> **isPublic**: `boolean` - -Defined in: [src/utils/interfaces.ts:382](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L382) - -*** - -### isRegisterable - -> **isRegisterable**: `boolean` - -Defined in: [src/utils/interfaces.ts:383](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L383) - -*** - -### location - -> **location**: `string` - -Defined in: [src/utils/interfaces.ts:24](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L24) - -#### Inherited from - -[`InterfaceBaseEvent`](InterfaceBaseEvent.md).[`location`](InterfaceBaseEvent.md#location) - -*** - -### recurring - -> **recurring**: `boolean` - -Defined in: [src/utils/interfaces.ts:28](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L28) - -#### Inherited from - -[`InterfaceBaseEvent`](InterfaceBaseEvent.md).[`recurring`](InterfaceBaseEvent.md#recurring) - -*** - -### startDate - -> **startDate**: `string` - -Defined in: [src/utils/interfaces.ts:22](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L22) - -#### Inherited from - -[`InterfaceBaseEvent`](InterfaceBaseEvent.md).[`startDate`](InterfaceBaseEvent.md#startdate) - -*** - -### startTime - -> **startTime**: `string` - -Defined in: [src/utils/interfaces.ts:25](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L25) - -#### Inherited from - -[`InterfaceBaseEvent`](InterfaceBaseEvent.md).[`startTime`](InterfaceBaseEvent.md#starttime) - -*** - -### title - -> **title**: `string` - -Defined in: [src/utils/interfaces.ts:20](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L20) - -#### Inherited from - -[`InterfaceBaseEvent`](InterfaceBaseEvent.md).[`title`](InterfaceBaseEvent.md#title) diff --git a/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceQueryOrganizationFundCampaigns.md b/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceQueryOrganizationFundCampaigns.md deleted file mode 100644 index 584b579e71..0000000000 --- a/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceQueryOrganizationFundCampaigns.md +++ /dev/null @@ -1,61 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / [utils/interfaces](../README.md) / InterfaceQueryOrganizationFundCampaigns - -# Interface: InterfaceQueryOrganizationFundCampaigns - -Defined in: [src/utils/interfaces.ts:319](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L319) - -## Properties - -### campaigns - -> **campaigns**: `object`[] - -Defined in: [src/utils/interfaces.ts:322](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L322) - -#### \_id - -> **\_id**: `string` - -#### createdAt - -> **createdAt**: `string` - -#### currency - -> **currency**: `string` - -#### endDate - -> **endDate**: `Date` - -#### fundingGoal - -> **fundingGoal**: `number` - -#### name - -> **name**: `string` - -#### startDate - -> **startDate**: `Date` - -*** - -### isArchived - -> **isArchived**: `boolean` - -Defined in: [src/utils/interfaces.ts:321](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L321) - -*** - -### name - -> **name**: `string` - -Defined in: [src/utils/interfaces.ts:320](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L320) diff --git a/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceQueryOrganizationListObject.md b/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceQueryOrganizationListObject.md deleted file mode 100644 index b5ef32e567..0000000000 --- a/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceQueryOrganizationListObject.md +++ /dev/null @@ -1,89 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / [utils/interfaces](../README.md) / InterfaceQueryOrganizationListObject - -# Interface: InterfaceQueryOrganizationListObject - -Defined in: [src/utils/interfaces.ts:155](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L155) - -## Properties - -### \_id - -> **\_id**: `string` - -Defined in: [src/utils/interfaces.ts:156](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L156) - -*** - -### address - -> **address**: [`InterfaceAddress`](InterfaceAddress.md) - -Defined in: [src/utils/interfaces.ts:170](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L170) - -*** - -### admins - -> **admins**: `object`[] - -Defined in: [src/utils/interfaces.ts:166](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L166) - -#### \_id - -> **\_id**: `string` - -*** - -### createdAt - -> **createdAt**: `string` - -Defined in: [src/utils/interfaces.ts:169](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L169) - -*** - -### creator - -> **creator**: `object` - -Defined in: [src/utils/interfaces.ts:158](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L158) - -#### firstName - -> **firstName**: `string` - -#### lastName - -> **lastName**: `string` - -*** - -### image - -> **image**: `null` \| `string` - -Defined in: [src/utils/interfaces.ts:157](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L157) - -*** - -### members - -> **members**: `object`[] - -Defined in: [src/utils/interfaces.ts:163](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L163) - -#### \_id - -> **\_id**: `string` - -*** - -### name - -> **name**: `string` - -Defined in: [src/utils/interfaces.ts:162](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L162) diff --git a/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceQueryOrganizationPostListItem.md b/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceQueryOrganizationPostListItem.md deleted file mode 100644 index ff4cee8122..0000000000 --- a/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceQueryOrganizationPostListItem.md +++ /dev/null @@ -1,45 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / [utils/interfaces](../README.md) / InterfaceQueryOrganizationPostListItem - -# Interface: InterfaceQueryOrganizationPostListItem - -Defined in: [src/utils/interfaces.ts:180](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L180) - -## Properties - -### posts - -> **posts**: `object` - -Defined in: [src/utils/interfaces.ts:181](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L181) - -#### edges - -> **edges**: `object`[] - -#### pageInfo - -> **pageInfo**: `object` - -##### pageInfo.endCursor - -> **endCursor**: `string` - -##### pageInfo.hasNextPage - -> **hasNextPage**: `boolean` - -##### pageInfo.hasPreviousPage - -> **hasPreviousPage**: `boolean` - -##### pageInfo.startCursor - -> **startCursor**: `string` - -#### totalCount - -> **totalCount**: `number` diff --git a/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceQueryOrganizationUserTags.md b/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceQueryOrganizationUserTags.md deleted file mode 100644 index d3a48e8eab..0000000000 --- a/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceQueryOrganizationUserTags.md +++ /dev/null @@ -1,17 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / [utils/interfaces](../README.md) / InterfaceQueryOrganizationUserTags - -# Interface: InterfaceQueryOrganizationUserTags - -Defined in: [src/utils/interfaces.ts:269](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L269) - -## Properties - -### userTags - -> **userTags**: `InterfaceTagNodeData` - -Defined in: [src/utils/interfaces.ts:270](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L270) diff --git a/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceQueryOrganizationsListObject.md b/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceQueryOrganizationsListObject.md deleted file mode 100644 index 5f1eaccb84..0000000000 --- a/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceQueryOrganizationsListObject.md +++ /dev/null @@ -1,189 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / [utils/interfaces](../README.md) / InterfaceQueryOrganizationsListObject - -# Interface: InterfaceQueryOrganizationsListObject - -Defined in: [src/utils/interfaces.ts:113](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L113) - -## Properties - -### \_id - -> **\_id**: `string` - -Defined in: [src/utils/interfaces.ts:114](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L114) - -*** - -### address - -> **address**: [`InterfaceAddress`](InterfaceAddress.md) - -Defined in: [src/utils/interfaces.ts:123](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L123) - -*** - -### admins - -> **admins**: `object`[] - -Defined in: [src/utils/interfaces.ts:132](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L132) - -#### \_id - -> **\_id**: `string` - -#### createdAt - -> **createdAt**: `string` - -#### email - -> **email**: `string` - -#### firstName - -> **firstName**: `string` - -#### lastName - -> **lastName**: `string` - -*** - -### blockedUsers - -> **blockedUsers**: `object`[] - -Defined in: [src/utils/interfaces.ts:147](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L147) - -#### \_id - -> **\_id**: `string` - -#### email - -> **email**: `string` - -#### firstName - -> **firstName**: `string` - -#### lastName - -> **lastName**: `string` - -*** - -### creator - -> **creator**: `object` - -Defined in: [src/utils/interfaces.ts:116](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L116) - -#### email - -> **email**: `string` - -#### firstName - -> **firstName**: `string` - -#### lastName - -> **lastName**: `string` - -*** - -### description - -> **description**: `string` - -Defined in: [src/utils/interfaces.ts:122](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L122) - -*** - -### image - -> **image**: `null` \| `string` - -Defined in: [src/utils/interfaces.ts:115](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L115) - -*** - -### members - -> **members**: `object`[] - -Defined in: [src/utils/interfaces.ts:126](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L126) - -#### \_id - -> **\_id**: `string` - -#### email - -> **email**: `string` - -#### firstName - -> **firstName**: `string` - -#### lastName - -> **lastName**: `string` - -*** - -### membershipRequests - -> **membershipRequests**: `object`[] - -Defined in: [src/utils/interfaces.ts:139](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L139) - -#### \_id - -> **\_id**: `string` - -#### user - -> **user**: `object` - -##### user.email - -> **email**: `string` - -##### user.firstName - -> **firstName**: `string` - -##### user.lastName - -> **lastName**: `string` - -*** - -### name - -> **name**: `string` - -Defined in: [src/utils/interfaces.ts:121](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L121) - -*** - -### userRegistrationRequired - -> **userRegistrationRequired**: `boolean` - -Defined in: [src/utils/interfaces.ts:124](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L124) - -*** - -### visibleInSearch - -> **visibleInSearch**: `boolean` - -Defined in: [src/utils/interfaces.ts:125](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L125) diff --git a/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceQueryUserListItem.md b/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceQueryUserListItem.md deleted file mode 100644 index 70ab5318fb..0000000000 --- a/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceQueryUserListItem.md +++ /dev/null @@ -1,89 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / [utils/interfaces](../README.md) / InterfaceQueryUserListItem - -# Interface: InterfaceQueryUserListItem - -Defined in: [src/utils/interfaces.ts:396](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L396) - -## Properties - -### appUserProfile - -> **appUserProfile**: `object` - -Defined in: [src/utils/interfaces.ts:435](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L435) - -#### \_id - -> **\_id**: `string` - -#### adminFor - -> **adminFor**: `object`[] - -#### createdEvents - -> **createdEvents**: `object`[] - -#### createdOrganizations - -> **createdOrganizations**: `object`[] - -#### eventAdmin - -> **eventAdmin**: `object`[] - -#### isSuperAdmin - -> **isSuperAdmin**: `boolean` - -*** - -### user - -> **user**: `object` - -Defined in: [src/utils/interfaces.ts:397](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L397) - -#### \_id - -> **\_id**: `string` - -#### createdAt - -> **createdAt**: `string` - -#### email - -> **email**: `string` - -#### firstName - -> **firstName**: `string` - -#### image - -> **image**: `null` \| `string` - -#### joinedOrganizations - -> **joinedOrganizations**: `object`[] - -#### lastName - -> **lastName**: `string` - -#### membershipRequests - -> **membershipRequests**: `object`[] - -#### organizationsBlockedBy - -> **organizationsBlockedBy**: `object`[] - -#### registeredEvents - -> **registeredEvents**: `object`[] diff --git a/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceQueryUserTagChildTags.md b/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceQueryUserTagChildTags.md deleted file mode 100644 index 9aee8b0d9a..0000000000 --- a/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceQueryUserTagChildTags.md +++ /dev/null @@ -1,41 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / [utils/interfaces](../README.md) / InterfaceQueryUserTagChildTags - -# Interface: InterfaceQueryUserTagChildTags - -Defined in: [src/utils/interfaces.ts:273](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L273) - -## Properties - -### ancestorTags - -> **ancestorTags**: `object`[] - -Defined in: [src/utils/interfaces.ts:276](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L276) - -#### \_id - -> **\_id**: `string` - -#### name - -> **name**: `string` - -*** - -### childTags - -> **childTags**: `InterfaceTagNodeData` - -Defined in: [src/utils/interfaces.ts:275](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L275) - -*** - -### name - -> **name**: `string` - -Defined in: [src/utils/interfaces.ts:274](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L274) diff --git a/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceQueryUserTagsAssignedMembers.md b/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceQueryUserTagsAssignedMembers.md deleted file mode 100644 index a785481556..0000000000 --- a/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceQueryUserTagsAssignedMembers.md +++ /dev/null @@ -1,41 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / [utils/interfaces](../README.md) / InterfaceQueryUserTagsAssignedMembers - -# Interface: InterfaceQueryUserTagsAssignedMembers - -Defined in: [src/utils/interfaces.ts:282](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L282) - -## Properties - -### ancestorTags - -> **ancestorTags**: `object`[] - -Defined in: [src/utils/interfaces.ts:285](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L285) - -#### \_id - -> **\_id**: `string` - -#### name - -> **name**: `string` - -*** - -### name - -> **name**: `string` - -Defined in: [src/utils/interfaces.ts:283](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L283) - -*** - -### usersAssignedTo - -> **usersAssignedTo**: `InterfaceTagMembersData` - -Defined in: [src/utils/interfaces.ts:284](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L284) diff --git a/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceQueryUserTagsMembersToAssignTo.md b/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceQueryUserTagsMembersToAssignTo.md deleted file mode 100644 index 5d8a3af483..0000000000 --- a/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceQueryUserTagsMembersToAssignTo.md +++ /dev/null @@ -1,25 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / [utils/interfaces](../README.md) / InterfaceQueryUserTagsMembersToAssignTo - -# Interface: InterfaceQueryUserTagsMembersToAssignTo - -Defined in: [src/utils/interfaces.ts:291](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L291) - -## Properties - -### name - -> **name**: `string` - -Defined in: [src/utils/interfaces.ts:292](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L292) - -*** - -### usersToAssignTo - -> **usersToAssignTo**: `InterfaceTagMembersData` - -Defined in: [src/utils/interfaces.ts:293](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L293) diff --git a/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceQueryVenueListItem.md b/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceQueryVenueListItem.md deleted file mode 100644 index f29c8fb637..0000000000 --- a/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceQueryVenueListItem.md +++ /dev/null @@ -1,49 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / [utils/interfaces](../README.md) / InterfaceQueryVenueListItem - -# Interface: InterfaceQueryVenueListItem - -Defined in: [src/utils/interfaces.ts:445](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L445) - -## Properties - -### \_id - -> **\_id**: `string` - -Defined in: [src/utils/interfaces.ts:446](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L446) - -*** - -### capacity - -> **capacity**: `string` - -Defined in: [src/utils/interfaces.ts:450](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L450) - -*** - -### description - -> **description**: `null` \| `string` - -Defined in: [src/utils/interfaces.ts:448](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L448) - -*** - -### image - -> **image**: `null` \| `string` - -Defined in: [src/utils/interfaces.ts:449](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L449) - -*** - -### name - -> **name**: `string` - -Defined in: [src/utils/interfaces.ts:447](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L447) diff --git a/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceTagData.md b/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceTagData.md deleted file mode 100644 index 44bff502a7..0000000000 --- a/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceTagData.md +++ /dev/null @@ -1,77 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / [utils/interfaces](../README.md) / InterfaceTagData - -# Interface: InterfaceTagData - -Defined in: [src/utils/interfaces.ts:222](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L222) - -## Properties - -### \_id - -> **\_id**: `string` - -Defined in: [src/utils/interfaces.ts:223](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L223) - -*** - -### ancestorTags - -> **ancestorTags**: `object`[] - -Defined in: [src/utils/interfaces.ts:232](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L232) - -#### \_id - -> **\_id**: `string` - -#### name - -> **name**: `string` - -*** - -### childTags - -> **childTags**: `object` - -Defined in: [src/utils/interfaces.ts:229](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L229) - -#### totalCount - -> **totalCount**: `number` - -*** - -### name - -> **name**: `string` - -Defined in: [src/utils/interfaces.ts:224](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L224) - -*** - -### parentTag - -> **parentTag**: `object` - -Defined in: [src/utils/interfaces.ts:225](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L225) - -#### \_id - -> **\_id**: `string` - -*** - -### usersAssignedTo - -> **usersAssignedTo**: `object` - -Defined in: [src/utils/interfaces.ts:226](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L226) - -#### totalCount - -> **totalCount**: `number` diff --git a/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceUserCampaign.md b/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceUserCampaign.md deleted file mode 100644 index 926debc730..0000000000 --- a/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceUserCampaign.md +++ /dev/null @@ -1,57 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / [utils/interfaces](../README.md) / InterfaceUserCampaign - -# Interface: InterfaceUserCampaign - -Defined in: [src/utils/interfaces.ts:332](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L332) - -## Properties - -### \_id - -> **\_id**: `string` - -Defined in: [src/utils/interfaces.ts:333](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L333) - -*** - -### currency - -> **currency**: `string` - -Defined in: [src/utils/interfaces.ts:338](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L338) - -*** - -### endDate - -> **endDate**: `Date` - -Defined in: [src/utils/interfaces.ts:337](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L337) - -*** - -### fundingGoal - -> **fundingGoal**: `number` - -Defined in: [src/utils/interfaces.ts:335](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L335) - -*** - -### name - -> **name**: `string` - -Defined in: [src/utils/interfaces.ts:334](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L334) - -*** - -### startDate - -> **startDate**: `Date` - -Defined in: [src/utils/interfaces.ts:336](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L336) diff --git a/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceUserEvents.md b/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceUserEvents.md deleted file mode 100644 index 313cf3e385..0000000000 --- a/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceUserEvents.md +++ /dev/null @@ -1,181 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / [utils/interfaces](../README.md) / InterfaceUserEvents - -# Interface: InterfaceUserEvents - -Defined in: [src/utils/interfaces.ts:656](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L656) - -## Extends - -- [`InterfaceBaseEvent`](InterfaceBaseEvent.md) - -## Properties - -### \_id - -> **\_id**: `string` - -Defined in: [src/utils/interfaces.ts:19](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L19) - -#### Inherited from - -[`InterfaceBaseEvent`](InterfaceBaseEvent.md).[`_id`](InterfaceBaseEvent.md#_id) - -*** - -### allDay - -> **allDay**: `boolean` - -Defined in: [src/utils/interfaces.ts:27](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L27) - -#### Inherited from - -[`InterfaceBaseEvent`](InterfaceBaseEvent.md).[`allDay`](InterfaceBaseEvent.md#allday) - -*** - -### description - -> **description**: `string` - -Defined in: [src/utils/interfaces.ts:21](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L21) - -#### Inherited from - -[`InterfaceBaseEvent`](InterfaceBaseEvent.md).[`description`](InterfaceBaseEvent.md#description) - -*** - -### endDate - -> **endDate**: `string` - -Defined in: [src/utils/interfaces.ts:23](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L23) - -#### Inherited from - -[`InterfaceBaseEvent`](InterfaceBaseEvent.md).[`endDate`](InterfaceBaseEvent.md#enddate) - -*** - -### endTime - -> **endTime**: `string` - -Defined in: [src/utils/interfaces.ts:26](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L26) - -#### Inherited from - -[`InterfaceBaseEvent`](InterfaceBaseEvent.md).[`endTime`](InterfaceBaseEvent.md#endtime) - -*** - -### location - -> **location**: `string` - -Defined in: [src/utils/interfaces.ts:24](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L24) - -#### Inherited from - -[`InterfaceBaseEvent`](InterfaceBaseEvent.md).[`location`](InterfaceBaseEvent.md#location) - -*** - -### recurring - -> **recurring**: `boolean` - -Defined in: [src/utils/interfaces.ts:28](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L28) - -#### Inherited from - -[`InterfaceBaseEvent`](InterfaceBaseEvent.md).[`recurring`](InterfaceBaseEvent.md#recurring) - -*** - -### startDate - -> **startDate**: `string` - -Defined in: [src/utils/interfaces.ts:22](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L22) - -#### Inherited from - -[`InterfaceBaseEvent`](InterfaceBaseEvent.md).[`startDate`](InterfaceBaseEvent.md#startdate) - -*** - -### startTime - -> **startTime**: `string` - -Defined in: [src/utils/interfaces.ts:25](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L25) - -#### Inherited from - -[`InterfaceBaseEvent`](InterfaceBaseEvent.md).[`startTime`](InterfaceBaseEvent.md#starttime) - -*** - -### title - -> **title**: `string` - -Defined in: [src/utils/interfaces.ts:20](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L20) - -#### Inherited from - -[`InterfaceBaseEvent`](InterfaceBaseEvent.md).[`title`](InterfaceBaseEvent.md#title) - -*** - -### volunteerGroups - -> **volunteerGroups**: `object`[] - -Defined in: [src/utils/interfaces.ts:657](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L657) - -#### \_id - -> **\_id**: `string` - -#### description - -> **description**: `string` - -#### name - -> **name**: `string` - -#### volunteers - -> **volunteers**: `object`[] - -#### volunteersRequired - -> **volunteersRequired**: `number` - -*** - -### volunteers - -> **volunteers**: `object`[] - -Defined in: [src/utils/interfaces.ts:664](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L664) - -#### \_id - -> **\_id**: `string` - -#### user - -> **user**: `object` - -##### user.\_id - -> **\_id**: `string` diff --git a/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceUserInfo.md b/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceUserInfo.md deleted file mode 100644 index 0b2dc7d619..0000000000 --- a/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceUserInfo.md +++ /dev/null @@ -1,41 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / [utils/interfaces](../README.md) / InterfaceUserInfo - -# Interface: InterfaceUserInfo - -Defined in: [src/utils/interfaces.ts:10](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L10) - -## Properties - -### \_id - -> **\_id**: `string` - -Defined in: [src/utils/interfaces.ts:11](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L11) - -*** - -### firstName - -> **firstName**: `string` - -Defined in: [src/utils/interfaces.ts:12](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L12) - -*** - -### image? - -> `optional` **image**: `null` \| `string` - -Defined in: [src/utils/interfaces.ts:14](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L14) - -*** - -### lastName - -> **lastName**: `string` - -Defined in: [src/utils/interfaces.ts:13](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L13) diff --git a/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceUserType.md b/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceUserType.md deleted file mode 100644 index a8e1ef5824..0000000000 --- a/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceUserType.md +++ /dev/null @@ -1,33 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / [utils/interfaces](../README.md) / InterfaceUserType - -# Interface: InterfaceUserType - -Defined in: [src/utils/interfaces.ts:1](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L1) - -## Properties - -### user - -> **user**: `object` - -Defined in: [src/utils/interfaces.ts:2](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L2) - -#### email - -> **email**: `string` - -#### firstName - -> **firstName**: `string` - -#### image - -> **image**: `null` \| `string` - -#### lastName - -> **lastName**: `string` diff --git a/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceVolunteerGroupInfo.md b/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceVolunteerGroupInfo.md deleted file mode 100644 index 0fc837d97d..0000000000 --- a/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceVolunteerGroupInfo.md +++ /dev/null @@ -1,125 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / [utils/interfaces](../README.md) / InterfaceVolunteerGroupInfo - -# Interface: InterfaceVolunteerGroupInfo - -Defined in: [src/utils/interfaces.ts:622](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L622) - -## Properties - -### \_id - -> **\_id**: `string` - -Defined in: [src/utils/interfaces.ts:623](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L623) - -*** - -### assignments - -> **assignments**: `object`[] - -Defined in: [src/utils/interfaces.ts:637](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L637) - -#### \_id - -> **\_id**: `string` - -#### actionItemCategory - -> **actionItemCategory**: `object` - -##### actionItemCategory.\_id - -> **\_id**: `string` - -##### actionItemCategory.name - -> **name**: `string` - -#### allottedHours - -> **allottedHours**: `number` - -#### isCompleted - -> **isCompleted**: `boolean` - -*** - -### createdAt - -> **createdAt**: `string` - -Defined in: [src/utils/interfaces.ts:630](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L630) - -*** - -### creator - -> **creator**: [`InterfaceUserInfo`](InterfaceUserInfo.md) - -Defined in: [src/utils/interfaces.ts:631](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L631) - -*** - -### description - -> **description**: `null` \| `string` - -Defined in: [src/utils/interfaces.ts:625](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L625) - -*** - -### event - -> **event**: `object` - -Defined in: [src/utils/interfaces.ts:626](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L626) - -#### \_id - -> **\_id**: `string` - -*** - -### leader - -> **leader**: [`InterfaceUserInfo`](InterfaceUserInfo.md) - -Defined in: [src/utils/interfaces.ts:632](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L632) - -*** - -### name - -> **name**: `string` - -Defined in: [src/utils/interfaces.ts:624](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L624) - -*** - -### volunteers - -> **volunteers**: `object`[] - -Defined in: [src/utils/interfaces.ts:633](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L633) - -#### \_id - -> **\_id**: `string` - -#### user - -> **user**: [`InterfaceUserInfo`](InterfaceUserInfo.md) - -*** - -### volunteersRequired - -> **volunteersRequired**: `null` \| `number` - -Defined in: [src/utils/interfaces.ts:629](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L629) diff --git a/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceVolunteerMembership.md b/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceVolunteerMembership.md deleted file mode 100644 index ec6b6ededf..0000000000 --- a/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceVolunteerMembership.md +++ /dev/null @@ -1,85 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / [utils/interfaces](../README.md) / InterfaceVolunteerMembership - -# Interface: InterfaceVolunteerMembership - -Defined in: [src/utils/interfaces.ts:672](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L672) - -## Properties - -### \_id - -> **\_id**: `string` - -Defined in: [src/utils/interfaces.ts:673](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L673) - -*** - -### createdAt - -> **createdAt**: `string` - -Defined in: [src/utils/interfaces.ts:675](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L675) - -*** - -### event - -> **event**: `object` - -Defined in: [src/utils/interfaces.ts:676](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L676) - -#### \_id - -> **\_id**: `string` - -#### startDate - -> **startDate**: `string` - -#### title - -> **title**: `string` - -*** - -### group - -> **group**: `object` - -Defined in: [src/utils/interfaces.ts:685](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L685) - -#### \_id - -> **\_id**: `string` - -#### name - -> **name**: `string` - -*** - -### status - -> **status**: `string` - -Defined in: [src/utils/interfaces.ts:674](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L674) - -*** - -### volunteer - -> **volunteer**: `object` - -Defined in: [src/utils/interfaces.ts:681](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L681) - -#### \_id - -> **\_id**: `string` - -#### user - -> **user**: [`InterfaceUserInfo`](InterfaceUserInfo.md) diff --git a/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceVolunteerRank.md b/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceVolunteerRank.md deleted file mode 100644 index 0bd130f099..0000000000 --- a/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceVolunteerRank.md +++ /dev/null @@ -1,53 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / [utils/interfaces](../README.md) / InterfaceVolunteerRank - -# Interface: InterfaceVolunteerRank - -Defined in: [src/utils/interfaces.ts:691](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L691) - -## Properties - -### hoursVolunteered - -> **hoursVolunteered**: `number` - -Defined in: [src/utils/interfaces.ts:693](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L693) - -*** - -### rank - -> **rank**: `number` - -Defined in: [src/utils/interfaces.ts:692](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L692) - -*** - -### user - -> **user**: `object` - -Defined in: [src/utils/interfaces.ts:694](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/interfaces.ts#L694) - -#### \_id - -> **\_id**: `string` - -#### email - -> **email**: `string` - -#### firstName - -> **firstName**: `string` - -#### image - -> **image**: `null` \| `string` - -#### lastName - -> **lastName**: `string` diff --git a/docs/docs/auto-docs/utils/languages/README.md b/docs/docs/auto-docs/utils/languages/README.md deleted file mode 100644 index 0cd8ec1f27..0000000000 --- a/docs/docs/auto-docs/utils/languages/README.md +++ /dev/null @@ -1,12 +0,0 @@ -[**talawa-admin**](../../README.md) - -*** - -[talawa-admin](../../modules.md) / utils/languages - -# utils/languages - -## Variables - -- [languageArray](variables/languageArray.md) -- [languages](variables/languages.md) diff --git a/docs/docs/auto-docs/utils/languages/variables/languageArray.md b/docs/docs/auto-docs/utils/languages/variables/languageArray.md deleted file mode 100644 index 4f875eabe0..0000000000 --- a/docs/docs/auto-docs/utils/languages/variables/languageArray.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / [utils/languages](../README.md) / languageArray - -# Variable: languageArray - -> `const` **languageArray**: `string`[] - -Defined in: [src/utils/languages.ts:1](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/languages.ts#L1) diff --git a/docs/docs/auto-docs/utils/languages/variables/languages.md b/docs/docs/auto-docs/utils/languages/variables/languages.md deleted file mode 100644 index 0083c2fed7..0000000000 --- a/docs/docs/auto-docs/utils/languages/variables/languages.md +++ /dev/null @@ -1,25 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / [utils/languages](../README.md) / languages - -# Variable: languages - -> `const` **languages**: `object`[] - -Defined in: [src/utils/languages.ts:3](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/languages.ts#L3) - -## Type declaration - -### code - -> **code**: `string` = `'en'` - -### country\_code - -> **country\_code**: `string` = `'gb'` - -### name - -> **name**: `string` = `'English'` diff --git a/docs/docs/auto-docs/utils/linkValidator/README.md b/docs/docs/auto-docs/utils/linkValidator/README.md deleted file mode 100644 index 873411eb0c..0000000000 --- a/docs/docs/auto-docs/utils/linkValidator/README.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../README.md) - -*** - -[talawa-admin](../../modules.md) / utils/linkValidator - -# utils/linkValidator - -## Functions - -- [isValidLink](functions/isValidLink.md) diff --git a/docs/docs/auto-docs/utils/linkValidator/functions/isValidLink.md b/docs/docs/auto-docs/utils/linkValidator/functions/isValidLink.md deleted file mode 100644 index e22a1e5efe..0000000000 --- a/docs/docs/auto-docs/utils/linkValidator/functions/isValidLink.md +++ /dev/null @@ -1,21 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / [utils/linkValidator](../README.md) / isValidLink - -# Function: isValidLink() - -> **isValidLink**(`link`): `boolean` - -Defined in: [src/utils/linkValidator.ts:1](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/linkValidator.ts#L1) - -## Parameters - -### link - -`string` - -## Returns - -`boolean` diff --git a/docs/docs/auto-docs/utils/organizationTagsUtils/README.md b/docs/docs/auto-docs/utils/organizationTagsUtils/README.md deleted file mode 100644 index 5608ca2592..0000000000 --- a/docs/docs/auto-docs/utils/organizationTagsUtils/README.md +++ /dev/null @@ -1,24 +0,0 @@ -[**talawa-admin**](../../README.md) - -*** - -[talawa-admin](../../modules.md) / utils/organizationTagsUtils - -# utils/organizationTagsUtils - -## Interfaces - -- [InterfaceOrganizationSubTagsQuery](interfaces/InterfaceOrganizationSubTagsQuery.md) -- [InterfaceOrganizationTagsQuery](interfaces/InterfaceOrganizationTagsQuery.md) -- [InterfaceTagAssignedMembersQuery](interfaces/InterfaceTagAssignedMembersQuery.md) -- [InterfaceTagUsersToAssignToQuery](interfaces/InterfaceTagUsersToAssignToQuery.md) - -## Type Aliases - -- [SortedByType](type-aliases/SortedByType.md) -- [TagActionType](type-aliases/TagActionType.md) - -## Variables - -- [dataGridStyle](variables/dataGridStyle.md) -- [TAGS\_QUERY\_DATA\_CHUNK\_SIZE](variables/TAGS_QUERY_DATA_CHUNK_SIZE.md) diff --git a/docs/docs/auto-docs/utils/organizationTagsUtils/interfaces/InterfaceOrganizationSubTagsQuery.md b/docs/docs/auto-docs/utils/organizationTagsUtils/interfaces/InterfaceOrganizationSubTagsQuery.md deleted file mode 100644 index f9c9c42b4f..0000000000 --- a/docs/docs/auto-docs/utils/organizationTagsUtils/interfaces/InterfaceOrganizationSubTagsQuery.md +++ /dev/null @@ -1,83 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / [utils/organizationTagsUtils](../README.md) / InterfaceOrganizationSubTagsQuery - -# Interface: InterfaceOrganizationSubTagsQuery - -Defined in: [src/utils/organizationTagsUtils.ts:83](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/organizationTagsUtils.ts#L83) - -## Extends - -- `InterfaceBaseQueryResult` - -## Properties - -### data? - -> `optional` **data**: `object` - -Defined in: [src/utils/organizationTagsUtils.ts:85](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/organizationTagsUtils.ts#L85) - -#### getChildTags - -> **getChildTags**: [`InterfaceQueryUserTagChildTags`](../../interfaces/interfaces/InterfaceQueryUserTagChildTags.md) - -*** - -### error? - -> `optional` **error**: `any` - -Defined in: [src/utils/organizationTagsUtils.ts:54](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/organizationTagsUtils.ts#L54) - -#### Inherited from - -`InterfaceBaseQueryResult.error` - -*** - -### fetchMore() - -> **fetchMore**: (`options`) => `void` - -Defined in: [src/utils/organizationTagsUtils.ts:88](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/organizationTagsUtils.ts#L88) - -#### Parameters - -##### options - -`InterfaceBaseFetchMoreOptions`\<\{ `getChildTags`: [`InterfaceQueryUserTagChildTags`](../../interfaces/interfaces/InterfaceQueryUserTagChildTags.md); \}\> - -#### Returns - -`void` - -*** - -### loading - -> **loading**: `boolean` - -Defined in: [src/utils/organizationTagsUtils.ts:53](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/organizationTagsUtils.ts#L53) - -#### Inherited from - -`InterfaceBaseQueryResult.loading` - -*** - -### refetch()? - -> `optional` **refetch**: () => `void` - -Defined in: [src/utils/organizationTagsUtils.ts:55](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/organizationTagsUtils.ts#L55) - -#### Returns - -`void` - -#### Inherited from - -`InterfaceBaseQueryResult.refetch` diff --git a/docs/docs/auto-docs/utils/organizationTagsUtils/interfaces/InterfaceOrganizationTagsQuery.md b/docs/docs/auto-docs/utils/organizationTagsUtils/interfaces/InterfaceOrganizationTagsQuery.md deleted file mode 100644 index 055ff66353..0000000000 --- a/docs/docs/auto-docs/utils/organizationTagsUtils/interfaces/InterfaceOrganizationTagsQuery.md +++ /dev/null @@ -1,83 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / [utils/organizationTagsUtils](../README.md) / InterfaceOrganizationTagsQuery - -# Interface: InterfaceOrganizationTagsQuery - -Defined in: [src/utils/organizationTagsUtils.ts:71](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/organizationTagsUtils.ts#L71) - -## Extends - -- `InterfaceBaseQueryResult` - -## Properties - -### data? - -> `optional` **data**: `object` - -Defined in: [src/utils/organizationTagsUtils.ts:73](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/organizationTagsUtils.ts#L73) - -#### organizations - -> **organizations**: [`InterfaceQueryOrganizationUserTags`](../../interfaces/interfaces/InterfaceQueryOrganizationUserTags.md)[] - -*** - -### error? - -> `optional` **error**: `any` - -Defined in: [src/utils/organizationTagsUtils.ts:54](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/organizationTagsUtils.ts#L54) - -#### Inherited from - -`InterfaceBaseQueryResult.error` - -*** - -### fetchMore() - -> **fetchMore**: (`options`) => `void` - -Defined in: [src/utils/organizationTagsUtils.ts:76](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/organizationTagsUtils.ts#L76) - -#### Parameters - -##### options - -`InterfaceBaseFetchMoreOptions`\<\{ `organizations`: [`InterfaceQueryOrganizationUserTags`](../../interfaces/interfaces/InterfaceQueryOrganizationUserTags.md)[]; \}\> - -#### Returns - -`void` - -*** - -### loading - -> **loading**: `boolean` - -Defined in: [src/utils/organizationTagsUtils.ts:53](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/organizationTagsUtils.ts#L53) - -#### Inherited from - -`InterfaceBaseQueryResult.loading` - -*** - -### refetch()? - -> `optional` **refetch**: () => `void` - -Defined in: [src/utils/organizationTagsUtils.ts:55](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/organizationTagsUtils.ts#L55) - -#### Returns - -`void` - -#### Inherited from - -`InterfaceBaseQueryResult.refetch` diff --git a/docs/docs/auto-docs/utils/organizationTagsUtils/interfaces/InterfaceTagAssignedMembersQuery.md b/docs/docs/auto-docs/utils/organizationTagsUtils/interfaces/InterfaceTagAssignedMembersQuery.md deleted file mode 100644 index 50d630f21b..0000000000 --- a/docs/docs/auto-docs/utils/organizationTagsUtils/interfaces/InterfaceTagAssignedMembersQuery.md +++ /dev/null @@ -1,83 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / [utils/organizationTagsUtils](../README.md) / InterfaceTagAssignedMembersQuery - -# Interface: InterfaceTagAssignedMembersQuery - -Defined in: [src/utils/organizationTagsUtils.ts:95](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/organizationTagsUtils.ts#L95) - -## Extends - -- `InterfaceBaseQueryResult` - -## Properties - -### data? - -> `optional` **data**: `object` - -Defined in: [src/utils/organizationTagsUtils.ts:97](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/organizationTagsUtils.ts#L97) - -#### getAssignedUsers - -> **getAssignedUsers**: [`InterfaceQueryUserTagsAssignedMembers`](../../interfaces/interfaces/InterfaceQueryUserTagsAssignedMembers.md) - -*** - -### error? - -> `optional` **error**: `any` - -Defined in: [src/utils/organizationTagsUtils.ts:54](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/organizationTagsUtils.ts#L54) - -#### Inherited from - -`InterfaceBaseQueryResult.error` - -*** - -### fetchMore() - -> **fetchMore**: (`options`) => `void` - -Defined in: [src/utils/organizationTagsUtils.ts:100](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/organizationTagsUtils.ts#L100) - -#### Parameters - -##### options - -`InterfaceBaseFetchMoreOptions`\<\{ `getAssignedUsers`: [`InterfaceQueryUserTagsAssignedMembers`](../../interfaces/interfaces/InterfaceQueryUserTagsAssignedMembers.md); \}\> - -#### Returns - -`void` - -*** - -### loading - -> **loading**: `boolean` - -Defined in: [src/utils/organizationTagsUtils.ts:53](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/organizationTagsUtils.ts#L53) - -#### Inherited from - -`InterfaceBaseQueryResult.loading` - -*** - -### refetch()? - -> `optional` **refetch**: () => `void` - -Defined in: [src/utils/organizationTagsUtils.ts:55](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/organizationTagsUtils.ts#L55) - -#### Returns - -`void` - -#### Inherited from - -`InterfaceBaseQueryResult.refetch` diff --git a/docs/docs/auto-docs/utils/organizationTagsUtils/interfaces/InterfaceTagUsersToAssignToQuery.md b/docs/docs/auto-docs/utils/organizationTagsUtils/interfaces/InterfaceTagUsersToAssignToQuery.md deleted file mode 100644 index 91bb449777..0000000000 --- a/docs/docs/auto-docs/utils/organizationTagsUtils/interfaces/InterfaceTagUsersToAssignToQuery.md +++ /dev/null @@ -1,83 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / [utils/organizationTagsUtils](../README.md) / InterfaceTagUsersToAssignToQuery - -# Interface: InterfaceTagUsersToAssignToQuery - -Defined in: [src/utils/organizationTagsUtils.ts:107](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/organizationTagsUtils.ts#L107) - -## Extends - -- `InterfaceBaseQueryResult` - -## Properties - -### data? - -> `optional` **data**: `object` - -Defined in: [src/utils/organizationTagsUtils.ts:109](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/organizationTagsUtils.ts#L109) - -#### getUsersToAssignTo - -> **getUsersToAssignTo**: [`InterfaceQueryUserTagsMembersToAssignTo`](../../interfaces/interfaces/InterfaceQueryUserTagsMembersToAssignTo.md) - -*** - -### error? - -> `optional` **error**: `any` - -Defined in: [src/utils/organizationTagsUtils.ts:54](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/organizationTagsUtils.ts#L54) - -#### Inherited from - -`InterfaceBaseQueryResult.error` - -*** - -### fetchMore() - -> **fetchMore**: (`options`) => `void` - -Defined in: [src/utils/organizationTagsUtils.ts:112](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/organizationTagsUtils.ts#L112) - -#### Parameters - -##### options - -`InterfaceBaseFetchMoreOptions`\<\{ `getUsersToAssignTo`: [`InterfaceQueryUserTagsMembersToAssignTo`](../../interfaces/interfaces/InterfaceQueryUserTagsMembersToAssignTo.md); \}\> - -#### Returns - -`void` - -*** - -### loading - -> **loading**: `boolean` - -Defined in: [src/utils/organizationTagsUtils.ts:53](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/organizationTagsUtils.ts#L53) - -#### Inherited from - -`InterfaceBaseQueryResult.loading` - -*** - -### refetch()? - -> `optional` **refetch**: () => `void` - -Defined in: [src/utils/organizationTagsUtils.ts:55](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/organizationTagsUtils.ts#L55) - -#### Returns - -`void` - -#### Inherited from - -`InterfaceBaseQueryResult.refetch` diff --git a/docs/docs/auto-docs/utils/organizationTagsUtils/type-aliases/SortedByType.md b/docs/docs/auto-docs/utils/organizationTagsUtils/type-aliases/SortedByType.md deleted file mode 100644 index ffcc161872..0000000000 --- a/docs/docs/auto-docs/utils/organizationTagsUtils/type-aliases/SortedByType.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / [utils/organizationTagsUtils](../README.md) / SortedByType - -# Type Alias: SortedByType - -> **SortedByType**: `"ASCENDING"` \| `"DESCENDING"` - -Defined in: [src/utils/organizationTagsUtils.ts:48](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/organizationTagsUtils.ts#L48) diff --git a/docs/docs/auto-docs/utils/organizationTagsUtils/type-aliases/TagActionType.md b/docs/docs/auto-docs/utils/organizationTagsUtils/type-aliases/TagActionType.md deleted file mode 100644 index 8109be1a04..0000000000 --- a/docs/docs/auto-docs/utils/organizationTagsUtils/type-aliases/TagActionType.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / [utils/organizationTagsUtils](../README.md) / TagActionType - -# Type Alias: TagActionType - -> **TagActionType**: `"assignToTags"` \| `"removeFromTags"` - -Defined in: [src/utils/organizationTagsUtils.ts:45](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/organizationTagsUtils.ts#L45) diff --git a/docs/docs/auto-docs/utils/organizationTagsUtils/variables/TAGS_QUERY_DATA_CHUNK_SIZE.md b/docs/docs/auto-docs/utils/organizationTagsUtils/variables/TAGS_QUERY_DATA_CHUNK_SIZE.md deleted file mode 100644 index 6e1f963c05..0000000000 --- a/docs/docs/auto-docs/utils/organizationTagsUtils/variables/TAGS_QUERY_DATA_CHUNK_SIZE.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / [utils/organizationTagsUtils](../README.md) / TAGS\_QUERY\_DATA\_CHUNK\_SIZE - -# Variable: TAGS\_QUERY\_DATA\_CHUNK\_SIZE - -> `const` **TAGS\_QUERY\_DATA\_CHUNK\_SIZE**: `10` = `10` - -Defined in: [src/utils/organizationTagsUtils.ts:42](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/organizationTagsUtils.ts#L42) diff --git a/docs/docs/auto-docs/utils/organizationTagsUtils/variables/dataGridStyle.md b/docs/docs/auto-docs/utils/organizationTagsUtils/variables/dataGridStyle.md deleted file mode 100644 index 0a8d183291..0000000000 --- a/docs/docs/auto-docs/utils/organizationTagsUtils/variables/dataGridStyle.md +++ /dev/null @@ -1,85 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / [utils/organizationTagsUtils](../README.md) / dataGridStyle - -# Variable: dataGridStyle - -> `const` **dataGridStyle**: `object` - -Defined in: [src/utils/organizationTagsUtils.ts:12](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/organizationTagsUtils.ts#L12) - -## Type declaration - -#### & .MuiDataGrid-main - -> **MuiDataGrid-main**: `object` - -#### & .MuiDataGrid-main.borderRadius - -> **borderRadius**: `string` = `'0.1rem'` - -#### & .MuiDataGrid-root - -> **MuiDataGrid-root**: `object` - -#### & .MuiDataGrid-root.borderRadius - -> **borderRadius**: `string` = `'0.1rem'` - -#### & .MuiDataGrid-row:hover - -> **MuiDataGrid-row:hover**: `object` - -#### & .MuiDataGrid-row:hover.backgroundColor - -> **backgroundColor**: `string` = `'transparent'` - -#### & .MuiDataGrid-row.Mui-hovered - -> **Mui-hovered**: `object` - -#### & .MuiDataGrid-row.Mui-hovered.backgroundColor - -> **backgroundColor**: `string` = `'transparent'` - -#### & .MuiDataGrid-topContainer - -> **MuiDataGrid-topContainer**: `object` - -#### & .MuiDataGrid-topContainer.position - -> **position**: `string` = `'fixed'` - -#### & .MuiDataGrid-topContainer.top - -> **top**: `number` = `290` - -#### & .MuiDataGrid-topContainer.zIndex - -> **zIndex**: `number` = `1` - -#### & .MuiDataGrid-virtualScrollerContent - -> **MuiDataGrid-virtualScrollerContent**: `object` - -#### & .MuiDataGrid-virtualScrollerContent.marginTop - -> **marginTop**: `number` = `6.5` - -#### &.MuiDataGrid-root .MuiDataGrid-cell:focus-within - -> **MuiDataGrid-cell:focus-within**: `object` - -#### &.MuiDataGrid-root .MuiDataGrid-cell:focus-within.outline - -> **outline**: `string` = `'none !important'` - -#### &.MuiDataGrid-root .MuiDataGrid-columnHeader:focus-within - -> **MuiDataGrid-columnHeader:focus-within**: `object` - -#### &.MuiDataGrid-root .MuiDataGrid-columnHeader:focus-within.outline - -> **outline**: `string` = `'none'` diff --git a/docs/docs/auto-docs/utils/recurrenceUtils/README.md b/docs/docs/auto-docs/utils/recurrenceUtils/README.md deleted file mode 100644 index 6b49ed3c40..0000000000 --- a/docs/docs/auto-docs/utils/recurrenceUtils/README.md +++ /dev/null @@ -1,163 +0,0 @@ -[**talawa-admin**](../../README.md) - -*** - -[talawa-admin](../../modules.md) / utils/recurrenceUtils - -# utils/recurrenceUtils - -## References - -### allInstances - -Re-exports [allInstances](recurrenceConstants/variables/allInstances.md) - -*** - -### dayNames - -Re-exports [dayNames](recurrenceConstants/variables/dayNames.md) - -*** - -### Days - -Re-exports [Days](recurrenceConstants/variables/Days.md) - -*** - -### daysOptions - -Re-exports [daysOptions](recurrenceConstants/variables/daysOptions.md) - -*** - -### endsAfter - -Re-exports [endsAfter](recurrenceConstants/variables/endsAfter.md) - -*** - -### endsNever - -Re-exports [endsNever](recurrenceConstants/variables/endsNever.md) - -*** - -### endsOn - -Re-exports [endsOn](recurrenceConstants/variables/endsOn.md) - -*** - -### frequencies - -Re-exports [frequencies](recurrenceConstants/variables/frequencies.md) - -*** - -### Frequency - -Re-exports [Frequency](recurrenceTypes/enumerations/Frequency.md) - -*** - -### getRecurrenceRuleText - -Re-exports [getRecurrenceRuleText](recurrenceUtilityFunctions/functions/getRecurrenceRuleText.md) - -*** - -### getWeekDayOccurenceInMonth - -Re-exports [getWeekDayOccurenceInMonth](recurrenceUtilityFunctions/functions/getWeekDayOccurenceInMonth.md) - -*** - -### hasRecurrenceRuleChanged - -Re-exports [hasRecurrenceRuleChanged](recurrenceUtilityFunctions/functions/hasRecurrenceRuleChanged.md) - -*** - -### haveInstanceDatesChanged - -Re-exports [haveInstanceDatesChanged](recurrenceUtilityFunctions/functions/haveInstanceDatesChanged.md) - -*** - -### InterfaceRecurrenceRule - -Re-exports [InterfaceRecurrenceRule](recurrenceTypes/interfaces/InterfaceRecurrenceRule.md) - -*** - -### InterfaceRecurrenceRuleState - -Re-exports [InterfaceRecurrenceRuleState](recurrenceTypes/interfaces/InterfaceRecurrenceRuleState.md) - -*** - -### isLastOccurenceOfWeekDay - -Re-exports [isLastOccurenceOfWeekDay](recurrenceUtilityFunctions/functions/isLastOccurenceOfWeekDay.md) - -*** - -### mondayToFriday - -Re-exports [mondayToFriday](recurrenceConstants/variables/mondayToFriday.md) - -*** - -### monthNames - -Re-exports [monthNames](recurrenceConstants/variables/monthNames.md) - -*** - -### RecurrenceEndOption - -Re-exports [RecurrenceEndOption](recurrenceTypes/enumerations/RecurrenceEndOption.md) - -*** - -### recurrenceEndOptions - -Re-exports [recurrenceEndOptions](recurrenceConstants/variables/recurrenceEndOptions.md) - -*** - -### recurringEventMutationOptions - -Re-exports [recurringEventMutationOptions](recurrenceConstants/variables/recurringEventMutationOptions.md) - -*** - -### RecurringEventMutationType - -Re-exports [RecurringEventMutationType](recurrenceTypes/enumerations/RecurringEventMutationType.md) - -*** - -### thisAndFollowingInstances - -Re-exports [thisAndFollowingInstances](recurrenceConstants/variables/thisAndFollowingInstances.md) - -*** - -### thisInstance - -Re-exports [thisInstance](recurrenceConstants/variables/thisInstance.md) - -*** - -### weekDayOccurences - -Re-exports [weekDayOccurences](recurrenceConstants/variables/weekDayOccurences.md) - -*** - -### WeekDays - -Re-exports [WeekDays](recurrenceTypes/enumerations/WeekDays.md) diff --git a/docs/docs/auto-docs/utils/recurrenceUtils/recurrenceConstants/README.md b/docs/docs/auto-docs/utils/recurrenceUtils/recurrenceConstants/README.md deleted file mode 100644 index 5f014f1c9c..0000000000 --- a/docs/docs/auto-docs/utils/recurrenceUtils/recurrenceConstants/README.md +++ /dev/null @@ -1,25 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / utils/recurrenceUtils/recurrenceConstants - -# utils/recurrenceUtils/recurrenceConstants - -## Variables - -- [allInstances](variables/allInstances.md) -- [dayNames](variables/dayNames.md) -- [Days](variables/Days.md) -- [daysOptions](variables/daysOptions.md) -- [endsAfter](variables/endsAfter.md) -- [endsNever](variables/endsNever.md) -- [endsOn](variables/endsOn.md) -- [frequencies](variables/frequencies.md) -- [mondayToFriday](variables/mondayToFriday.md) -- [monthNames](variables/monthNames.md) -- [recurrenceEndOptions](variables/recurrenceEndOptions.md) -- [recurringEventMutationOptions](variables/recurringEventMutationOptions.md) -- [thisAndFollowingInstances](variables/thisAndFollowingInstances.md) -- [thisInstance](variables/thisInstance.md) -- [weekDayOccurences](variables/weekDayOccurences.md) diff --git a/docs/docs/auto-docs/utils/recurrenceUtils/recurrenceConstants/variables/Days.md b/docs/docs/auto-docs/utils/recurrenceUtils/recurrenceConstants/variables/Days.md deleted file mode 100644 index ce21fda63f..0000000000 --- a/docs/docs/auto-docs/utils/recurrenceUtils/recurrenceConstants/variables/Days.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [utils/recurrenceUtils/recurrenceConstants](../README.md) / Days - -# Variable: Days - -> `const` **Days**: [`WeekDays`](../../recurrenceTypes/enumerations/WeekDays.md)[] - -Defined in: [src/utils/recurrenceUtils/recurrenceConstants.ts:24](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/recurrenceUtils/recurrenceConstants.ts#L24) diff --git a/docs/docs/auto-docs/utils/recurrenceUtils/recurrenceConstants/variables/allInstances.md b/docs/docs/auto-docs/utils/recurrenceUtils/recurrenceConstants/variables/allInstances.md deleted file mode 100644 index 2588f0c61f..0000000000 --- a/docs/docs/auto-docs/utils/recurrenceUtils/recurrenceConstants/variables/allInstances.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [utils/recurrenceUtils/recurrenceConstants](../README.md) / allInstances - -# Variable: allInstances - -> `const` **allInstances**: [`allInstances`](../../recurrenceTypes/enumerations/RecurringEventMutationType.md#allinstances) = `RecurringEventMutationType.allInstances` - -Defined in: [src/utils/recurrenceUtils/recurrenceConstants.ts:46](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/recurrenceUtils/recurrenceConstants.ts#L46) diff --git a/docs/docs/auto-docs/utils/recurrenceUtils/recurrenceConstants/variables/dayNames.md b/docs/docs/auto-docs/utils/recurrenceUtils/recurrenceConstants/variables/dayNames.md deleted file mode 100644 index 0d1a1f0f3e..0000000000 --- a/docs/docs/auto-docs/utils/recurrenceUtils/recurrenceConstants/variables/dayNames.md +++ /dev/null @@ -1,41 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [utils/recurrenceUtils/recurrenceConstants](../README.md) / dayNames - -# Variable: dayNames - -> `const` **dayNames**: `object` - -Defined in: [src/utils/recurrenceUtils/recurrenceConstants.ts:60](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/recurrenceUtils/recurrenceConstants.ts#L60) - -## Type declaration - -### FRIDAY - -> **FRIDAY**: `string` = `'Friday'` - -### MONDAY - -> **MONDAY**: `string` = `'Monday'` - -### SATURDAY - -> **SATURDAY**: `string` = `'Saturday'` - -### SUNDAY - -> **SUNDAY**: `string` = `'Sunday'` - -### THURSDAY - -> **THURSDAY**: `string` = `'Thursday'` - -### TUESDAY - -> **TUESDAY**: `string` = `'Tuesday'` - -### WEDNESDAY - -> **WEDNESDAY**: `string` = `'Wednesday'` diff --git a/docs/docs/auto-docs/utils/recurrenceUtils/recurrenceConstants/variables/daysOptions.md b/docs/docs/auto-docs/utils/recurrenceUtils/recurrenceConstants/variables/daysOptions.md deleted file mode 100644 index 0a057aab1d..0000000000 --- a/docs/docs/auto-docs/utils/recurrenceUtils/recurrenceConstants/variables/daysOptions.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [utils/recurrenceUtils/recurrenceConstants](../README.md) / daysOptions - -# Variable: daysOptions - -> `const` **daysOptions**: `string`[] - -Defined in: [src/utils/recurrenceUtils/recurrenceConstants.ts:21](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/recurrenceUtils/recurrenceConstants.ts#L21) diff --git a/docs/docs/auto-docs/utils/recurrenceUtils/recurrenceConstants/variables/endsAfter.md b/docs/docs/auto-docs/utils/recurrenceUtils/recurrenceConstants/variables/endsAfter.md deleted file mode 100644 index f36d690b42..0000000000 --- a/docs/docs/auto-docs/utils/recurrenceUtils/recurrenceConstants/variables/endsAfter.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [utils/recurrenceUtils/recurrenceConstants](../README.md) / endsAfter - -# Variable: endsAfter - -> `const` **endsAfter**: [`after`](../../recurrenceTypes/enumerations/RecurrenceEndOption.md#after) = `RecurrenceEndOption.after` - -Defined in: [src/utils/recurrenceUtils/recurrenceConstants.ts:37](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/recurrenceUtils/recurrenceConstants.ts#L37) diff --git a/docs/docs/auto-docs/utils/recurrenceUtils/recurrenceConstants/variables/endsNever.md b/docs/docs/auto-docs/utils/recurrenceUtils/recurrenceConstants/variables/endsNever.md deleted file mode 100644 index f1005f3166..0000000000 --- a/docs/docs/auto-docs/utils/recurrenceUtils/recurrenceConstants/variables/endsNever.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [utils/recurrenceUtils/recurrenceConstants](../README.md) / endsNever - -# Variable: endsNever - -> `const` **endsNever**: [`never`](../../recurrenceTypes/enumerations/RecurrenceEndOption.md#never) = `RecurrenceEndOption.never` - -Defined in: [src/utils/recurrenceUtils/recurrenceConstants.ts:35](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/recurrenceUtils/recurrenceConstants.ts#L35) diff --git a/docs/docs/auto-docs/utils/recurrenceUtils/recurrenceConstants/variables/endsOn.md b/docs/docs/auto-docs/utils/recurrenceUtils/recurrenceConstants/variables/endsOn.md deleted file mode 100644 index a048e02a68..0000000000 --- a/docs/docs/auto-docs/utils/recurrenceUtils/recurrenceConstants/variables/endsOn.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [utils/recurrenceUtils/recurrenceConstants](../README.md) / endsOn - -# Variable: endsOn - -> `const` **endsOn**: [`on`](../../recurrenceTypes/enumerations/RecurrenceEndOption.md#on) = `RecurrenceEndOption.on` - -Defined in: [src/utils/recurrenceUtils/recurrenceConstants.ts:36](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/recurrenceUtils/recurrenceConstants.ts#L36) diff --git a/docs/docs/auto-docs/utils/recurrenceUtils/recurrenceConstants/variables/frequencies.md b/docs/docs/auto-docs/utils/recurrenceUtils/recurrenceConstants/variables/frequencies.md deleted file mode 100644 index d1028d6234..0000000000 --- a/docs/docs/auto-docs/utils/recurrenceUtils/recurrenceConstants/variables/frequencies.md +++ /dev/null @@ -1,29 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [utils/recurrenceUtils/recurrenceConstants](../README.md) / frequencies - -# Variable: frequencies - -> `const` **frequencies**: `object` - -Defined in: [src/utils/recurrenceUtils/recurrenceConstants.ts:13](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/recurrenceUtils/recurrenceConstants.ts#L13) - -## Type declaration - -### DAILY - -> **DAILY**: `string` = `'Day'` - -### MONTHLY - -> **MONTHLY**: `string` = `'Month'` - -### WEEKLY - -> **WEEKLY**: `string` = `'Week'` - -### YEARLY - -> **YEARLY**: `string` = `'Year'` diff --git a/docs/docs/auto-docs/utils/recurrenceUtils/recurrenceConstants/variables/mondayToFriday.md b/docs/docs/auto-docs/utils/recurrenceUtils/recurrenceConstants/variables/mondayToFriday.md deleted file mode 100644 index e8cd42b136..0000000000 --- a/docs/docs/auto-docs/utils/recurrenceUtils/recurrenceConstants/variables/mondayToFriday.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [utils/recurrenceUtils/recurrenceConstants](../README.md) / mondayToFriday - -# Variable: mondayToFriday - -> `const` **mondayToFriday**: ([`MONDAY`](../../recurrenceTypes/enumerations/WeekDays.md#monday) \| [`TUESDAY`](../../recurrenceTypes/enumerations/WeekDays.md#tuesday) \| [`WEDNESDAY`](../../recurrenceTypes/enumerations/WeekDays.md#wednesday) \| [`THURSDAY`](../../recurrenceTypes/enumerations/WeekDays.md#thursday) \| [`FRIDAY`](../../recurrenceTypes/enumerations/WeekDays.md#friday))[] - -Defined in: [src/utils/recurrenceUtils/recurrenceConstants.ts:55](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/recurrenceUtils/recurrenceConstants.ts#L55) diff --git a/docs/docs/auto-docs/utils/recurrenceUtils/recurrenceConstants/variables/monthNames.md b/docs/docs/auto-docs/utils/recurrenceUtils/recurrenceConstants/variables/monthNames.md deleted file mode 100644 index 377c2fbb3d..0000000000 --- a/docs/docs/auto-docs/utils/recurrenceUtils/recurrenceConstants/variables/monthNames.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [utils/recurrenceUtils/recurrenceConstants](../README.md) / monthNames - -# Variable: monthNames - -> `const` **monthNames**: `string`[] - -Defined in: [src/utils/recurrenceUtils/recurrenceConstants.ts:71](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/recurrenceUtils/recurrenceConstants.ts#L71) diff --git a/docs/docs/auto-docs/utils/recurrenceUtils/recurrenceConstants/variables/recurrenceEndOptions.md b/docs/docs/auto-docs/utils/recurrenceUtils/recurrenceConstants/variables/recurrenceEndOptions.md deleted file mode 100644 index 521ac272e7..0000000000 --- a/docs/docs/auto-docs/utils/recurrenceUtils/recurrenceConstants/variables/recurrenceEndOptions.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [utils/recurrenceUtils/recurrenceConstants](../README.md) / recurrenceEndOptions - -# Variable: recurrenceEndOptions - -> `const` **recurrenceEndOptions**: [`RecurrenceEndOption`](../../recurrenceTypes/enumerations/RecurrenceEndOption.md)[] - -Defined in: [src/utils/recurrenceUtils/recurrenceConstants.ts:40](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/recurrenceUtils/recurrenceConstants.ts#L40) diff --git a/docs/docs/auto-docs/utils/recurrenceUtils/recurrenceConstants/variables/recurringEventMutationOptions.md b/docs/docs/auto-docs/utils/recurrenceUtils/recurrenceConstants/variables/recurringEventMutationOptions.md deleted file mode 100644 index 32e7f9caa9..0000000000 --- a/docs/docs/auto-docs/utils/recurrenceUtils/recurrenceConstants/variables/recurringEventMutationOptions.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [utils/recurrenceUtils/recurrenceConstants](../README.md) / recurringEventMutationOptions - -# Variable: recurringEventMutationOptions - -> `const` **recurringEventMutationOptions**: [`RecurringEventMutationType`](../../recurrenceTypes/enumerations/RecurringEventMutationType.md)[] - -Defined in: [src/utils/recurrenceUtils/recurrenceConstants.ts:48](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/recurrenceUtils/recurrenceConstants.ts#L48) diff --git a/docs/docs/auto-docs/utils/recurrenceUtils/recurrenceConstants/variables/thisAndFollowingInstances.md b/docs/docs/auto-docs/utils/recurrenceUtils/recurrenceConstants/variables/thisAndFollowingInstances.md deleted file mode 100644 index ddfc814499..0000000000 --- a/docs/docs/auto-docs/utils/recurrenceUtils/recurrenceConstants/variables/thisAndFollowingInstances.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [utils/recurrenceUtils/recurrenceConstants](../README.md) / thisAndFollowingInstances - -# Variable: thisAndFollowingInstances - -> `const` **thisAndFollowingInstances**: [`thisAndFollowingInstances`](../../recurrenceTypes/enumerations/RecurringEventMutationType.md#thisandfollowinginstances) = `RecurringEventMutationType.thisAndFollowingInstances` - -Defined in: [src/utils/recurrenceUtils/recurrenceConstants.ts:44](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/recurrenceUtils/recurrenceConstants.ts#L44) diff --git a/docs/docs/auto-docs/utils/recurrenceUtils/recurrenceConstants/variables/thisInstance.md b/docs/docs/auto-docs/utils/recurrenceUtils/recurrenceConstants/variables/thisInstance.md deleted file mode 100644 index f9bcfe221f..0000000000 --- a/docs/docs/auto-docs/utils/recurrenceUtils/recurrenceConstants/variables/thisInstance.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [utils/recurrenceUtils/recurrenceConstants](../README.md) / thisInstance - -# Variable: thisInstance - -> `const` **thisInstance**: [`thisInstance`](../../recurrenceTypes/enumerations/RecurringEventMutationType.md#thisinstance) = `RecurringEventMutationType.thisInstance` - -Defined in: [src/utils/recurrenceUtils/recurrenceConstants.ts:43](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/recurrenceUtils/recurrenceConstants.ts#L43) diff --git a/docs/docs/auto-docs/utils/recurrenceUtils/recurrenceConstants/variables/weekDayOccurences.md b/docs/docs/auto-docs/utils/recurrenceUtils/recurrenceConstants/variables/weekDayOccurences.md deleted file mode 100644 index f308c16c55..0000000000 --- a/docs/docs/auto-docs/utils/recurrenceUtils/recurrenceConstants/variables/weekDayOccurences.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [utils/recurrenceUtils/recurrenceConstants](../README.md) / weekDayOccurences - -# Variable: weekDayOccurences - -> `const` **weekDayOccurences**: `string`[] - -Defined in: [src/utils/recurrenceUtils/recurrenceConstants.ts:87](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/recurrenceUtils/recurrenceConstants.ts#L87) diff --git a/docs/docs/auto-docs/utils/recurrenceUtils/recurrenceTypes/README.md b/docs/docs/auto-docs/utils/recurrenceUtils/recurrenceTypes/README.md deleted file mode 100644 index 9e054c6133..0000000000 --- a/docs/docs/auto-docs/utils/recurrenceUtils/recurrenceTypes/README.md +++ /dev/null @@ -1,19 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / utils/recurrenceUtils/recurrenceTypes - -# utils/recurrenceUtils/recurrenceTypes - -## Enumerations - -- [Frequency](enumerations/Frequency.md) -- [RecurrenceEndOption](enumerations/RecurrenceEndOption.md) -- [RecurringEventMutationType](enumerations/RecurringEventMutationType.md) -- [WeekDays](enumerations/WeekDays.md) - -## Interfaces - -- [InterfaceRecurrenceRule](interfaces/InterfaceRecurrenceRule.md) -- [InterfaceRecurrenceRuleState](interfaces/InterfaceRecurrenceRuleState.md) diff --git a/docs/docs/auto-docs/utils/recurrenceUtils/recurrenceTypes/enumerations/Frequency.md b/docs/docs/auto-docs/utils/recurrenceUtils/recurrenceTypes/enumerations/Frequency.md deleted file mode 100644 index 1a03b6f4ad..0000000000 --- a/docs/docs/auto-docs/utils/recurrenceUtils/recurrenceTypes/enumerations/Frequency.md +++ /dev/null @@ -1,41 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [utils/recurrenceUtils/recurrenceTypes](../README.md) / Frequency - -# Enumeration: Frequency - -Defined in: [src/utils/recurrenceUtils/recurrenceTypes.ts:28](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/recurrenceUtils/recurrenceTypes.ts#L28) - -## Enumeration Members - -### DAILY - -> **DAILY**: `"DAILY"` - -Defined in: [src/utils/recurrenceUtils/recurrenceTypes.ts:29](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/recurrenceUtils/recurrenceTypes.ts#L29) - -*** - -### MONTHLY - -> **MONTHLY**: `"MONTHLY"` - -Defined in: [src/utils/recurrenceUtils/recurrenceTypes.ts:31](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/recurrenceUtils/recurrenceTypes.ts#L31) - -*** - -### WEEKLY - -> **WEEKLY**: `"WEEKLY"` - -Defined in: [src/utils/recurrenceUtils/recurrenceTypes.ts:30](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/recurrenceUtils/recurrenceTypes.ts#L30) - -*** - -### YEARLY - -> **YEARLY**: `"YEARLY"` - -Defined in: [src/utils/recurrenceUtils/recurrenceTypes.ts:32](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/recurrenceUtils/recurrenceTypes.ts#L32) diff --git a/docs/docs/auto-docs/utils/recurrenceUtils/recurrenceTypes/enumerations/RecurrenceEndOption.md b/docs/docs/auto-docs/utils/recurrenceUtils/recurrenceTypes/enumerations/RecurrenceEndOption.md deleted file mode 100644 index fd811c6794..0000000000 --- a/docs/docs/auto-docs/utils/recurrenceUtils/recurrenceTypes/enumerations/RecurrenceEndOption.md +++ /dev/null @@ -1,33 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [utils/recurrenceUtils/recurrenceTypes](../README.md) / RecurrenceEndOption - -# Enumeration: RecurrenceEndOption - -Defined in: [src/utils/recurrenceUtils/recurrenceTypes.ts:48](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/recurrenceUtils/recurrenceTypes.ts#L48) - -## Enumeration Members - -### after - -> **after**: `"after"` - -Defined in: [src/utils/recurrenceUtils/recurrenceTypes.ts:51](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/recurrenceUtils/recurrenceTypes.ts#L51) - -*** - -### never - -> **never**: `"never"` - -Defined in: [src/utils/recurrenceUtils/recurrenceTypes.ts:49](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/recurrenceUtils/recurrenceTypes.ts#L49) - -*** - -### on - -> **on**: `"on"` - -Defined in: [src/utils/recurrenceUtils/recurrenceTypes.ts:50](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/recurrenceUtils/recurrenceTypes.ts#L50) diff --git a/docs/docs/auto-docs/utils/recurrenceUtils/recurrenceTypes/enumerations/RecurringEventMutationType.md b/docs/docs/auto-docs/utils/recurrenceUtils/recurrenceTypes/enumerations/RecurringEventMutationType.md deleted file mode 100644 index 34dea3df09..0000000000 --- a/docs/docs/auto-docs/utils/recurrenceUtils/recurrenceTypes/enumerations/RecurringEventMutationType.md +++ /dev/null @@ -1,33 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [utils/recurrenceUtils/recurrenceTypes](../README.md) / RecurringEventMutationType - -# Enumeration: RecurringEventMutationType - -Defined in: [src/utils/recurrenceUtils/recurrenceTypes.ts:55](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/recurrenceUtils/recurrenceTypes.ts#L55) - -## Enumeration Members - -### allInstances - -> **allInstances**: `"allInstances"` - -Defined in: [src/utils/recurrenceUtils/recurrenceTypes.ts:58](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/recurrenceUtils/recurrenceTypes.ts#L58) - -*** - -### thisAndFollowingInstances - -> **thisAndFollowingInstances**: `"thisAndFollowingInstances"` - -Defined in: [src/utils/recurrenceUtils/recurrenceTypes.ts:57](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/recurrenceUtils/recurrenceTypes.ts#L57) - -*** - -### thisInstance - -> **thisInstance**: `"thisInstance"` - -Defined in: [src/utils/recurrenceUtils/recurrenceTypes.ts:56](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/recurrenceUtils/recurrenceTypes.ts#L56) diff --git a/docs/docs/auto-docs/utils/recurrenceUtils/recurrenceTypes/enumerations/WeekDays.md b/docs/docs/auto-docs/utils/recurrenceUtils/recurrenceTypes/enumerations/WeekDays.md deleted file mode 100644 index df54af9684..0000000000 --- a/docs/docs/auto-docs/utils/recurrenceUtils/recurrenceTypes/enumerations/WeekDays.md +++ /dev/null @@ -1,65 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [utils/recurrenceUtils/recurrenceTypes](../README.md) / WeekDays - -# Enumeration: WeekDays - -Defined in: [src/utils/recurrenceUtils/recurrenceTypes.ts:36](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/recurrenceUtils/recurrenceTypes.ts#L36) - -## Enumeration Members - -### FRIDAY - -> **FRIDAY**: `"FRIDAY"` - -Defined in: [src/utils/recurrenceUtils/recurrenceTypes.ts:42](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/recurrenceUtils/recurrenceTypes.ts#L42) - -*** - -### MONDAY - -> **MONDAY**: `"MONDAY"` - -Defined in: [src/utils/recurrenceUtils/recurrenceTypes.ts:38](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/recurrenceUtils/recurrenceTypes.ts#L38) - -*** - -### SATURDAY - -> **SATURDAY**: `"SATURDAY"` - -Defined in: [src/utils/recurrenceUtils/recurrenceTypes.ts:43](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/recurrenceUtils/recurrenceTypes.ts#L43) - -*** - -### SUNDAY - -> **SUNDAY**: `"SUNDAY"` - -Defined in: [src/utils/recurrenceUtils/recurrenceTypes.ts:37](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/recurrenceUtils/recurrenceTypes.ts#L37) - -*** - -### THURSDAY - -> **THURSDAY**: `"THURSDAY"` - -Defined in: [src/utils/recurrenceUtils/recurrenceTypes.ts:41](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/recurrenceUtils/recurrenceTypes.ts#L41) - -*** - -### TUESDAY - -> **TUESDAY**: `"TUESDAY"` - -Defined in: [src/utils/recurrenceUtils/recurrenceTypes.ts:39](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/recurrenceUtils/recurrenceTypes.ts#L39) - -*** - -### WEDNESDAY - -> **WEDNESDAY**: `"WEDNESDAY"` - -Defined in: [src/utils/recurrenceUtils/recurrenceTypes.ts:40](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/recurrenceUtils/recurrenceTypes.ts#L40) diff --git a/docs/docs/auto-docs/utils/recurrenceUtils/recurrenceTypes/interfaces/InterfaceRecurrenceRule.md b/docs/docs/auto-docs/utils/recurrenceUtils/recurrenceTypes/interfaces/InterfaceRecurrenceRule.md deleted file mode 100644 index 9e6218fd9a..0000000000 --- a/docs/docs/auto-docs/utils/recurrenceUtils/recurrenceTypes/interfaces/InterfaceRecurrenceRule.md +++ /dev/null @@ -1,65 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [utils/recurrenceUtils/recurrenceTypes](../README.md) / InterfaceRecurrenceRule - -# Interface: InterfaceRecurrenceRule - -Defined in: [src/utils/recurrenceUtils/recurrenceTypes.ts:17](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/recurrenceUtils/recurrenceTypes.ts#L17) - -## Properties - -### count - -> **count**: `null` \| `number` - -Defined in: [src/utils/recurrenceUtils/recurrenceTypes.ts:23](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/recurrenceUtils/recurrenceTypes.ts#L23) - -*** - -### frequency - -> **frequency**: [`Frequency`](../enumerations/Frequency.md) - -Defined in: [src/utils/recurrenceUtils/recurrenceTypes.ts:20](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/recurrenceUtils/recurrenceTypes.ts#L20) - -*** - -### interval - -> **interval**: `number` - -Defined in: [src/utils/recurrenceUtils/recurrenceTypes.ts:22](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/recurrenceUtils/recurrenceTypes.ts#L22) - -*** - -### recurrenceEndDate - -> **recurrenceEndDate**: `null` \| `string` - -Defined in: [src/utils/recurrenceUtils/recurrenceTypes.ts:19](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/recurrenceUtils/recurrenceTypes.ts#L19) - -*** - -### recurrenceStartDate - -> **recurrenceStartDate**: `string` - -Defined in: [src/utils/recurrenceUtils/recurrenceTypes.ts:18](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/recurrenceUtils/recurrenceTypes.ts#L18) - -*** - -### weekDayOccurenceInMonth - -> **weekDayOccurenceInMonth**: `null` \| `number` - -Defined in: [src/utils/recurrenceUtils/recurrenceTypes.ts:24](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/recurrenceUtils/recurrenceTypes.ts#L24) - -*** - -### weekDays - -> **weekDays**: [`WeekDays`](../enumerations/WeekDays.md)[] - -Defined in: [src/utils/recurrenceUtils/recurrenceTypes.ts:21](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/recurrenceUtils/recurrenceTypes.ts#L21) diff --git a/docs/docs/auto-docs/utils/recurrenceUtils/recurrenceTypes/interfaces/InterfaceRecurrenceRuleState.md b/docs/docs/auto-docs/utils/recurrenceUtils/recurrenceTypes/interfaces/InterfaceRecurrenceRuleState.md deleted file mode 100644 index 727e348742..0000000000 --- a/docs/docs/auto-docs/utils/recurrenceUtils/recurrenceTypes/interfaces/InterfaceRecurrenceRuleState.md +++ /dev/null @@ -1,65 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [utils/recurrenceUtils/recurrenceTypes](../README.md) / InterfaceRecurrenceRuleState - -# Interface: InterfaceRecurrenceRuleState - -Defined in: [src/utils/recurrenceUtils/recurrenceTypes.ts:6](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/recurrenceUtils/recurrenceTypes.ts#L6) - -## Properties - -### count - -> **count**: `undefined` \| `number` - -Defined in: [src/utils/recurrenceUtils/recurrenceTypes.ts:12](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/recurrenceUtils/recurrenceTypes.ts#L12) - -*** - -### frequency - -> **frequency**: [`Frequency`](../enumerations/Frequency.md) - -Defined in: [src/utils/recurrenceUtils/recurrenceTypes.ts:9](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/recurrenceUtils/recurrenceTypes.ts#L9) - -*** - -### interval - -> **interval**: `number` - -Defined in: [src/utils/recurrenceUtils/recurrenceTypes.ts:11](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/recurrenceUtils/recurrenceTypes.ts#L11) - -*** - -### recurrenceEndDate - -> **recurrenceEndDate**: `null` \| `Date` - -Defined in: [src/utils/recurrenceUtils/recurrenceTypes.ts:8](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/recurrenceUtils/recurrenceTypes.ts#L8) - -*** - -### recurrenceStartDate - -> **recurrenceStartDate**: `Date` - -Defined in: [src/utils/recurrenceUtils/recurrenceTypes.ts:7](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/recurrenceUtils/recurrenceTypes.ts#L7) - -*** - -### weekDayOccurenceInMonth - -> **weekDayOccurenceInMonth**: `undefined` \| `number` - -Defined in: [src/utils/recurrenceUtils/recurrenceTypes.ts:13](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/recurrenceUtils/recurrenceTypes.ts#L13) - -*** - -### weekDays - -> **weekDays**: [`WeekDays`](../enumerations/WeekDays.md)[] - -Defined in: [src/utils/recurrenceUtils/recurrenceTypes.ts:10](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/recurrenceUtils/recurrenceTypes.ts#L10) diff --git a/docs/docs/auto-docs/utils/recurrenceUtils/recurrenceUtilityFunctions/README.md b/docs/docs/auto-docs/utils/recurrenceUtils/recurrenceUtilityFunctions/README.md deleted file mode 100644 index f4775336c8..0000000000 --- a/docs/docs/auto-docs/utils/recurrenceUtils/recurrenceUtilityFunctions/README.md +++ /dev/null @@ -1,15 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / utils/recurrenceUtils/recurrenceUtilityFunctions - -# utils/recurrenceUtils/recurrenceUtilityFunctions - -## Functions - -- [getRecurrenceRuleText](functions/getRecurrenceRuleText.md) -- [getWeekDayOccurenceInMonth](functions/getWeekDayOccurenceInMonth.md) -- [hasRecurrenceRuleChanged](functions/hasRecurrenceRuleChanged.md) -- [haveInstanceDatesChanged](functions/haveInstanceDatesChanged.md) -- [isLastOccurenceOfWeekDay](functions/isLastOccurenceOfWeekDay.md) diff --git a/docs/docs/auto-docs/utils/recurrenceUtils/recurrenceUtilityFunctions/functions/getRecurrenceRuleText.md b/docs/docs/auto-docs/utils/recurrenceUtils/recurrenceUtilityFunctions/functions/getRecurrenceRuleText.md deleted file mode 100644 index 947ed014c9..0000000000 --- a/docs/docs/auto-docs/utils/recurrenceUtils/recurrenceUtilityFunctions/functions/getRecurrenceRuleText.md +++ /dev/null @@ -1,21 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [utils/recurrenceUtils/recurrenceUtilityFunctions](../README.md) / getRecurrenceRuleText - -# Function: getRecurrenceRuleText() - -> **getRecurrenceRuleText**(`recurrenceRuleState`): `string` - -Defined in: [src/utils/recurrenceUtils/recurrenceUtilityFunctions.ts:22](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/recurrenceUtils/recurrenceUtilityFunctions.ts#L22) - -## Parameters - -### recurrenceRuleState - -[`InterfaceRecurrenceRuleState`](../../recurrenceTypes/interfaces/InterfaceRecurrenceRuleState.md) - -## Returns - -`string` diff --git a/docs/docs/auto-docs/utils/recurrenceUtils/recurrenceUtilityFunctions/functions/getWeekDayOccurenceInMonth.md b/docs/docs/auto-docs/utils/recurrenceUtils/recurrenceUtilityFunctions/functions/getWeekDayOccurenceInMonth.md deleted file mode 100644 index 4e32aa1d9c..0000000000 --- a/docs/docs/auto-docs/utils/recurrenceUtils/recurrenceUtilityFunctions/functions/getWeekDayOccurenceInMonth.md +++ /dev/null @@ -1,21 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [utils/recurrenceUtils/recurrenceUtilityFunctions](../README.md) / getWeekDayOccurenceInMonth - -# Function: getWeekDayOccurenceInMonth() - -> **getWeekDayOccurenceInMonth**(`date`): `number` - -Defined in: [src/utils/recurrenceUtils/recurrenceUtilityFunctions.ts:126](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/recurrenceUtils/recurrenceUtilityFunctions.ts#L126) - -## Parameters - -### date - -`Date` - -## Returns - -`number` diff --git a/docs/docs/auto-docs/utils/recurrenceUtils/recurrenceUtilityFunctions/functions/hasRecurrenceRuleChanged.md b/docs/docs/auto-docs/utils/recurrenceUtils/recurrenceUtilityFunctions/functions/hasRecurrenceRuleChanged.md deleted file mode 100644 index 3995eb6be3..0000000000 --- a/docs/docs/auto-docs/utils/recurrenceUtils/recurrenceUtilityFunctions/functions/hasRecurrenceRuleChanged.md +++ /dev/null @@ -1,25 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [utils/recurrenceUtils/recurrenceUtilityFunctions](../README.md) / hasRecurrenceRuleChanged - -# Function: hasRecurrenceRuleChanged() - -> **hasRecurrenceRuleChanged**(`originalRecurrencerule`, `recurrenceRuleState`): `boolean` - -Defined in: [src/utils/recurrenceUtils/recurrenceUtilityFunctions.ts:167](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/recurrenceUtils/recurrenceUtilityFunctions.ts#L167) - -## Parameters - -### originalRecurrencerule - -`null` | [`InterfaceRecurrenceRule`](../../recurrenceTypes/interfaces/InterfaceRecurrenceRule.md) - -### recurrenceRuleState - -[`InterfaceRecurrenceRuleState`](../../recurrenceTypes/interfaces/InterfaceRecurrenceRuleState.md) - -## Returns - -`boolean` diff --git a/docs/docs/auto-docs/utils/recurrenceUtils/recurrenceUtilityFunctions/functions/haveInstanceDatesChanged.md b/docs/docs/auto-docs/utils/recurrenceUtils/recurrenceUtilityFunctions/functions/haveInstanceDatesChanged.md deleted file mode 100644 index 6d794738b5..0000000000 --- a/docs/docs/auto-docs/utils/recurrenceUtils/recurrenceUtilityFunctions/functions/haveInstanceDatesChanged.md +++ /dev/null @@ -1,33 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [utils/recurrenceUtils/recurrenceUtilityFunctions](../README.md) / haveInstanceDatesChanged - -# Function: haveInstanceDatesChanged() - -> **haveInstanceDatesChanged**(`instanceOriginalStartDate`, `instanceOriginalEndDate`, `instanceNewStartDate`, `instanceNewEndDate`): `boolean` - -Defined in: [src/utils/recurrenceUtils/recurrenceUtilityFunctions.ts:154](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/recurrenceUtils/recurrenceUtilityFunctions.ts#L154) - -## Parameters - -### instanceOriginalStartDate - -`string` - -### instanceOriginalEndDate - -`string` - -### instanceNewStartDate - -`string` - -### instanceNewEndDate - -`string` - -## Returns - -`boolean` diff --git a/docs/docs/auto-docs/utils/recurrenceUtils/recurrenceUtilityFunctions/functions/isLastOccurenceOfWeekDay.md b/docs/docs/auto-docs/utils/recurrenceUtils/recurrenceUtilityFunctions/functions/isLastOccurenceOfWeekDay.md deleted file mode 100644 index 5855e7ceb4..0000000000 --- a/docs/docs/auto-docs/utils/recurrenceUtils/recurrenceUtilityFunctions/functions/isLastOccurenceOfWeekDay.md +++ /dev/null @@ -1,21 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [utils/recurrenceUtils/recurrenceUtilityFunctions](../README.md) / isLastOccurenceOfWeekDay - -# Function: isLastOccurenceOfWeekDay() - -> **isLastOccurenceOfWeekDay**(`date`): `boolean` - -Defined in: [src/utils/recurrenceUtils/recurrenceUtilityFunctions.ts:136](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/recurrenceUtils/recurrenceUtilityFunctions.ts#L136) - -## Parameters - -### date - -`Date` - -## Returns - -`boolean` diff --git a/docs/docs/auto-docs/utils/timezoneUtils/README.md b/docs/docs/auto-docs/utils/timezoneUtils/README.md deleted file mode 100644 index 0ad5953d55..0000000000 --- a/docs/docs/auto-docs/utils/timezoneUtils/README.md +++ /dev/null @@ -1,25 +0,0 @@ -[**talawa-admin**](../../README.md) - -*** - -[talawa-admin](../../modules.md) / utils/timezoneUtils - -# utils/timezoneUtils - -## References - -### dateTimeFields - -Re-exports [dateTimeFields](dateTimeConfig/variables/dateTimeFields.md) - -*** - -### requestMiddleware - -Re-exports [requestMiddleware](dateTimeMiddleware/variables/requestMiddleware.md) - -*** - -### responseMiddleware - -Re-exports [responseMiddleware](dateTimeMiddleware/variables/responseMiddleware.md) diff --git a/docs/docs/auto-docs/utils/timezoneUtils/dateTimeConfig/README.md b/docs/docs/auto-docs/utils/timezoneUtils/dateTimeConfig/README.md deleted file mode 100644 index 52595efe84..0000000000 --- a/docs/docs/auto-docs/utils/timezoneUtils/dateTimeConfig/README.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / utils/timezoneUtils/dateTimeConfig - -# utils/timezoneUtils/dateTimeConfig - -## Variables - -- [dateTimeFields](variables/dateTimeFields.md) diff --git a/docs/docs/auto-docs/utils/timezoneUtils/dateTimeConfig/variables/dateTimeFields.md b/docs/docs/auto-docs/utils/timezoneUtils/dateTimeConfig/variables/dateTimeFields.md deleted file mode 100644 index d9b8739b2a..0000000000 --- a/docs/docs/auto-docs/utils/timezoneUtils/dateTimeConfig/variables/dateTimeFields.md +++ /dev/null @@ -1,21 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [utils/timezoneUtils/dateTimeConfig](../README.md) / dateTimeFields - -# Variable: dateTimeFields - -> `const` **dateTimeFields**: `object` - -Defined in: [src/utils/timezoneUtils/dateTimeConfig.ts:3](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/timezoneUtils/dateTimeConfig.ts#L3) - -## Type declaration - -### directFields - -> **directFields**: `string`[] - -### pairedFields - -> **pairedFields**: `object`[] diff --git a/docs/docs/auto-docs/utils/timezoneUtils/dateTimeMiddleware/README.md b/docs/docs/auto-docs/utils/timezoneUtils/dateTimeMiddleware/README.md deleted file mode 100644 index 666abbffd4..0000000000 --- a/docs/docs/auto-docs/utils/timezoneUtils/dateTimeMiddleware/README.md +++ /dev/null @@ -1,12 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / utils/timezoneUtils/dateTimeMiddleware - -# utils/timezoneUtils/dateTimeMiddleware - -## Variables - -- [requestMiddleware](variables/requestMiddleware.md) -- [responseMiddleware](variables/responseMiddleware.md) diff --git a/docs/docs/auto-docs/utils/timezoneUtils/dateTimeMiddleware/variables/requestMiddleware.md b/docs/docs/auto-docs/utils/timezoneUtils/dateTimeMiddleware/variables/requestMiddleware.md deleted file mode 100644 index bddcc31a22..0000000000 --- a/docs/docs/auto-docs/utils/timezoneUtils/dateTimeMiddleware/variables/requestMiddleware.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [utils/timezoneUtils/dateTimeMiddleware](../README.md) / requestMiddleware - -# Variable: requestMiddleware - -> `const` **requestMiddleware**: `any` - -Defined in: [src/utils/timezoneUtils/dateTimeMiddleware.ts:84](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/timezoneUtils/dateTimeMiddleware.ts#L84) diff --git a/docs/docs/auto-docs/utils/timezoneUtils/dateTimeMiddleware/variables/responseMiddleware.md b/docs/docs/auto-docs/utils/timezoneUtils/dateTimeMiddleware/variables/responseMiddleware.md deleted file mode 100644 index a48ecac5e6..0000000000 --- a/docs/docs/auto-docs/utils/timezoneUtils/dateTimeMiddleware/variables/responseMiddleware.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../../../README.md) - -*** - -[talawa-admin](../../../../modules.md) / [utils/timezoneUtils/dateTimeMiddleware](../README.md) / responseMiddleware - -# Variable: responseMiddleware - -> `const` **responseMiddleware**: `any` - -Defined in: [src/utils/timezoneUtils/dateTimeMiddleware.ts:94](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/timezoneUtils/dateTimeMiddleware.ts#L94) diff --git a/docs/docs/auto-docs/utils/useLocalstorage/README.md b/docs/docs/auto-docs/utils/useLocalstorage/README.md deleted file mode 100644 index 9766800b4b..0000000000 --- a/docs/docs/auto-docs/utils/useLocalstorage/README.md +++ /dev/null @@ -1,21 +0,0 @@ -[**talawa-admin**](../../README.md) - -*** - -[talawa-admin](../../modules.md) / utils/useLocalstorage - -# utils/useLocalstorage - -## Functions - -- [getItem](functions/getItem.md) -- [getStorageKey](functions/getStorageKey.md) -- [removeItem](functions/removeItem.md) -- [setItem](functions/setItem.md) -- [useLocalStorage](functions/useLocalStorage.md) - -## References - -### default - -Renames and re-exports [useLocalStorage](functions/useLocalStorage.md) diff --git a/docs/docs/auto-docs/utils/useLocalstorage/functions/getItem.md b/docs/docs/auto-docs/utils/useLocalstorage/functions/getItem.md deleted file mode 100644 index c1a408f36c..0000000000 --- a/docs/docs/auto-docs/utils/useLocalstorage/functions/getItem.md +++ /dev/null @@ -1,33 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / [utils/useLocalstorage](../README.md) / getItem - -# Function: getItem() - -> **getItem**(`prefix`, `key`): `any` - -Defined in: [src/utils/useLocalstorage.ts:29](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/useLocalstorage.ts#L29) - -Retrieves the stored value for the given key from local storage. - -## Parameters - -### prefix - -`string` - -Prefix to be added to the key, common for all keys. - -### key - -`string` - -The unique name identifying the value. - -## Returns - -`any` - -- The stored value for the given key from local storage. diff --git a/docs/docs/auto-docs/utils/useLocalstorage/functions/getStorageKey.md b/docs/docs/auto-docs/utils/useLocalstorage/functions/getStorageKey.md deleted file mode 100644 index 942ba06eba..0000000000 --- a/docs/docs/auto-docs/utils/useLocalstorage/functions/getStorageKey.md +++ /dev/null @@ -1,33 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / [utils/useLocalstorage](../README.md) / getStorageKey - -# Function: getStorageKey() - -> **getStorageKey**(`prefix`, `key`): `string` - -Defined in: [src/utils/useLocalstorage.ts:19](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/useLocalstorage.ts#L19) - -Generates the prefixed key for storage. - -## Parameters - -### prefix - -`string` - -Prefix to be added to the key, common for all keys. - -### key - -`string` - -The unique name identifying the value. - -## Returns - -`string` - -- Prefixed key. diff --git a/docs/docs/auto-docs/utils/useLocalstorage/functions/removeItem.md b/docs/docs/auto-docs/utils/useLocalstorage/functions/removeItem.md deleted file mode 100644 index 77932ff2e3..0000000000 --- a/docs/docs/auto-docs/utils/useLocalstorage/functions/removeItem.md +++ /dev/null @@ -1,31 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / [utils/useLocalstorage](../README.md) / removeItem - -# Function: removeItem() - -> **removeItem**(`prefix`, `key`): `void` - -Defined in: [src/utils/useLocalstorage.ts:51](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/useLocalstorage.ts#L51) - -Removes the value associated with the given key from local storage. - -## Parameters - -### prefix - -`string` - -Prefix to be added to the key, common for all keys. - -### key - -`string` - -The unique name identifying the value. - -## Returns - -`void` diff --git a/docs/docs/auto-docs/utils/useLocalstorage/functions/setItem.md b/docs/docs/auto-docs/utils/useLocalstorage/functions/setItem.md deleted file mode 100644 index c6cde9676b..0000000000 --- a/docs/docs/auto-docs/utils/useLocalstorage/functions/setItem.md +++ /dev/null @@ -1,37 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / [utils/useLocalstorage](../README.md) / setItem - -# Function: setItem() - -> **setItem**(`prefix`, `key`, `value`): `void` - -Defined in: [src/utils/useLocalstorage.ts:41](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/useLocalstorage.ts#L41) - -Sets the value for the given key in local storage. - -## Parameters - -### prefix - -`string` - -Prefix to be added to the key, common for all keys. - -### key - -`string` - -The unique name identifying the value. - -### value - -`any` - -The value for the key. - -## Returns - -`void` diff --git a/docs/docs/auto-docs/utils/useLocalstorage/functions/useLocalStorage.md b/docs/docs/auto-docs/utils/useLocalstorage/functions/useLocalStorage.md deleted file mode 100644 index 014b800d46..0000000000 --- a/docs/docs/auto-docs/utils/useLocalstorage/functions/useLocalStorage.md +++ /dev/null @@ -1,27 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / [utils/useLocalstorage](../README.md) / useLocalStorage - -# Function: useLocalStorage() - -> **useLocalStorage**(`prefix`): `InterfaceStorageHelper` - -Defined in: [src/utils/useLocalstorage.ts:61](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/useLocalstorage.ts#L61) - -Custom hook for simplified localStorage operations. - -## Parameters - -### prefix - -`string` = `PREFIX` - -Prefix to be added to the key, common for all keys. Default is 'Talawa-admin'. - -## Returns - -`InterfaceStorageHelper` - -- Functions to getItem, setItem, removeItem, and getStorageKey. diff --git a/docs/docs/auto-docs/utils/useSession/README.md b/docs/docs/auto-docs/utils/useSession/README.md deleted file mode 100644 index ead72ee336..0000000000 --- a/docs/docs/auto-docs/utils/useSession/README.md +++ /dev/null @@ -1,11 +0,0 @@ -[**talawa-admin**](../../README.md) - -*** - -[talawa-admin](../../modules.md) / utils/useSession - -# utils/useSession - -## Functions - -- [default](functions/default.md) diff --git a/docs/docs/auto-docs/utils/useSession/functions/default.md b/docs/docs/auto-docs/utils/useSession/functions/default.md deleted file mode 100644 index 01d7d316ce..0000000000 --- a/docs/docs/auto-docs/utils/useSession/functions/default.md +++ /dev/null @@ -1,26 +0,0 @@ -[**talawa-admin**](../../../README.md) - -*** - -[talawa-admin](../../../modules.md) / [utils/useSession](../README.md) / default - -# Function: default() - -> **default**(): `UseSessionReturnType` - -Defined in: [src/utils/useSession.tsx:30](https://github.com/bint-Eve/talawa-admin/blob/16ddeb98e6868a55bca282e700a8f4212d222c01/src/utils/useSession.tsx#L30) - -Custom hook for managing user session timeouts in a React application. - -This hook handles: -- Starting and ending the user session. -- Displaying a warning toast at half of the session timeout duration. -- Logging the user out and displaying a session expiration toast when the session times out. -- Automatically resetting the timers when user activity is detected. -- Pausing session timers when the tab is inactive and resuming them when it becomes active again. - -## Returns - -`UseSessionReturnType` - -UseSessionReturnType - An object with methods to start and end the session, and to handle logout. diff --git a/package.json b/package.json index cf4fe9829a..261a155da5 100644 --- a/package.json +++ b/package.json @@ -90,8 +90,7 @@ "update:toc": "node scripts/githooks/update-toc.js", "lint-staged": "lint-staged --concurrent false", "setup": "tsx setup.ts", - "check-localstorage": "node scripts/githooks/check-localstorage-usage.js", - "generate-docs": "typedoc --out ./docs/docs/auto-docs --plugin typedoc-plugin-markdown --excludePrivate --excludeProtected --excludeExternals --categorizeByGroup true --entryPointStrategy expand --entryPoints \"src\" --exclude \"src/vite-env.d.ts\" --exclude \"**/*.spec.{ts,tsx}\" --exclude \"**/*.test.{ts,tsx}\" --exclude \"**/__tests__/**\" --exclude \"**/__mocks__/**\" --skipErrorChecking --logLevel Warn" + "check-localstorage": "node scripts/githooks/check-localstorage-usage.js" }, "eslintConfig": { "extends": [ From cc4f011cb908272c5903329c5cea013440d2f8c8 Mon Sep 17 00:00:00 2001 From: GK Bishnoi Date: Thu, 16 Jan 2025 01:09:08 +0530 Subject: [PATCH 12/42] Bugfix: Add Visit Button in Joined Organizations Filter (#3278) * implement a Visit button in the Joined Organizations filter * Resolved: Potential Issue Identified by CodeRabbit AI * Resolved: Potential Issue Identified by CodeRabbit AI * Resolved: Potential Issue Identified by CodeRabbit AI * Resolved: Potential Issue Identified by CodeRabbit AI * Update src/components/OrganizationCard/OrganizationCard.tsx Co-authored-by: coderabbitai[bot] <136622811+coderabbitai[bot]@users.noreply.github.com> * Added test cases * Added test cases * added tsdoc * resolve: all issue --------- Co-authored-by: coderabbitai[bot] <136622811+coderabbitai[bot]@users.noreply.github.com> --- .../OrganizationCard.spec.tsx | 389 ++++++++++++++++-- .../OrganizationCard/OrganizationCard.tsx | 275 +++++++++++-- src/components/test-utils/TestWrapper.tsx | 51 +++ .../Organizations/Organizations.tsx | 38 +- 4 files changed, 671 insertions(+), 82 deletions(-) create mode 100644 src/components/test-utils/TestWrapper.tsx diff --git a/src/components/OrganizationCard/OrganizationCard.spec.tsx b/src/components/OrganizationCard/OrganizationCard.spec.tsx index c557253d59..d2089bc231 100644 --- a/src/components/OrganizationCard/OrganizationCard.spec.tsx +++ b/src/components/OrganizationCard/OrganizationCard.spec.tsx @@ -1,49 +1,370 @@ +import '@testing-library/jest-dom'; +import { vi } from 'vitest'; import React from 'react'; -import { render, screen } from '@testing-library/react'; +import { render, screen, fireEvent, waitFor } from '@testing-library/react'; +import type { MockedResponse } from '@apollo/client/testing'; +import { toast } from 'react-toastify'; +import i18n from 'i18next'; import OrganizationCard from './OrganizationCard'; +import { TestWrapper } from '../../components/test-utils/TestWrapper'; +import { + SEND_MEMBERSHIP_REQUEST, + JOIN_PUBLIC_ORGANIZATION, + CANCEL_MEMBERSHIP_REQUEST, +} from 'GraphQl/Mutations/OrganizationMutations'; +import { USER_JOINED_ORGANIZATIONS } from 'GraphQl/Queries/OrganizationQueries'; -/** - * This file contains unit tests for the `OrganizationCard` component. - * - * The tests cover: - * - Rendering the component with all provided props and verifying the correct display of text elements. - * - Ensuring the component handles cases where certain props (like image) are not provided. - * - * These tests utilize the React Testing Library for rendering and querying DOM elements. - */ - -describe('Testing the Organization Card', () => { - it('should render props and text elements test for the page component', () => { +// Mock hooks +const mockGetItem = vi.fn(); +vi.mock('utils/useLocalstorage', () => ({ + __esModule: true, + default: () => ({ + getItem: () => mockGetItem(), + setItem: vi.fn(), + }), +})); + +vi.mock('react-toastify', () => ({ + toast: { + success: vi.fn(), + error: vi.fn(), + }, +})); + +const mockNavigate = vi.fn(); +vi.mock('react-router-dom', () => { + const actual = vi.importActual('react-router-dom'); + return { + ...actual, + useNavigate: () => mockNavigate, + BrowserRouter: ({ + children, + }: { + children: React.ReactNode; + }): JSX.Element =>
{children}
, + }; +}); + +// Initialize i18n for testing +i18n.init({ + lng: 'en', + resources: { + en: { + translation: { + users: { + MembershipRequestSent: 'Request sent', + orgJoined: 'Joined', + AlreadyJoined: 'Already joined', + errorOccured: 'error occurred', + MembershipRequestNotFound: 'Request not found', + MembershipRequestWithdrawn: 'Request withdrawn', + visit: 'Visit', + withdraw: 'Withdraw', + joinNow: 'Join Now', + }, + }, + common: { + admins: 'Admins', + members: 'Members', + }, + }, + }, +}); + +// Success mocks +const successMocks: MockedResponse[] = [ + { + request: { + query: SEND_MEMBERSHIP_REQUEST, + variables: { organizationId: '123' }, + }, + result: { + data: { sendMembershipRequest: { success: true } }, + }, + }, + { + request: { + query: JOIN_PUBLIC_ORGANIZATION, + variables: { organizationId: '123' }, + }, + result: { + data: { joinPublicOrganization: { success: true } }, + }, + }, + { + request: { + query: CANCEL_MEMBERSHIP_REQUEST, + variables: { membershipRequestId: 'requestId' }, + }, + result: { + data: { cancelMembershipRequest: { success: true } }, + }, + }, + { + request: { + query: USER_JOINED_ORGANIZATIONS, + variables: { userId: 'mockUserId' }, + }, + result: { + data: { + organizations: [ + { + _id: '123', + name: 'Test Org', + }, + ], + }, + }, + }, +]; + +// Error mocks +const errorMocks: MockedResponse[] = [ + { + request: { + query: SEND_MEMBERSHIP_REQUEST, + variables: { organizationId: '123' }, + }, + error: new Error('Failed to send request'), + }, + { + request: { + query: JOIN_PUBLIC_ORGANIZATION, + variables: { organizationId: '123' }, + }, + error: new Error('Failed to join organization'), + }, + { + request: { + query: CANCEL_MEMBERSHIP_REQUEST, + variables: { membershipRequestId: 'requestId' }, + }, + error: new Error('Failed to cancel request'), + }, +]; + +describe('OrganizationCard Component', () => { + const defaultProps = { + id: '123', + image: 'https://via.placeholder.com/80', + firstName: 'John', + lastName: 'Doe', + name: 'Sample', + description: '', + admins: [], + members: [], + address: { + city: '', + countryCode: '', + line1: '', + postalCode: '', + state: '', + }, + membershipRequestStatus: '', + userRegistrationRequired: false, + membershipRequests: [], + }; + + beforeEach(() => { + vi.clearAllMocks(); + mockGetItem.mockReturnValue('mockUserId'); + }); + + // Basic Rendering Tests + describe('Rendering', () => { + it('should render props and text elements', () => { + render( + + + , + ); + + expect(screen.getByText(defaultProps.name)).toBeInTheDocument(); + expect(screen.getByText(/Admins/i)).toBeInTheDocument(); + expect(screen.getByText(/Members/i)).toBeInTheDocument(); + }); + + it('should render without image', () => { + const props = { ...defaultProps, image: '' }; + render( + + + , + ); + + expect(screen.getByText(props.name)).toBeInTheDocument(); + }); + + it('should render full address when provided', () => { + const props = { + ...defaultProps, + address: { + city: 'Test City', + countryCode: 'TC', + line1: 'Test Line 1', + postalCode: '12345', + state: 'TS', + }, + }; + + render( + + + , + ); + + expect(screen.getByText(/Test Line 1/)).toBeInTheDocument(); + expect(screen.getByText(/Test City/)).toBeInTheDocument(); + expect(screen.getByText(/TC/)).toBeInTheDocument(); + }); + }); + + // Hook Tests + describe('Hooks Behavior', () => { + it('should handle localStorage error gracefully', () => { + mockGetItem.mockImplementation(() => { + throw new Error('localStorage error'); + }); + + render( + + + , + ); + + const joinButton = screen.getByTestId('joinBtn'); + expect(joinButton).toBeInTheDocument(); + expect(joinButton).toHaveTextContent('joinNow'); + }); + + it('should navigate to organization page on visit', () => { + render( + + + , + ); + + const visitButton = screen.getByTestId('manageBtn'); + fireEvent.click(visitButton); + expect(mockNavigate).toHaveBeenCalledWith( + `/user/organization/${defaultProps.id}`, + ); + }); + + it('should correctly translate all text elements', () => { + render( + + + , + ); + + const adminText = screen.getByText(/Admins:/); + const memberText = screen.getByText(/Members:/); + + expect(adminText).toBeInTheDocument(); + expect(memberText).toBeInTheDocument(); + }); + }); + + // Mutation Tests + describe('Mutations', () => { + it('should handle joining a private organization successfully', async () => { + render( + + + , + ); + + const joinButton = screen.getByText('joinNow'); + await fireEvent.click(joinButton); + + await waitFor(() => { + expect(toast.success).toHaveBeenCalledWith('MembershipRequestSent'); + }); + }); + + it('should handle joining a public organization successfully', async () => { + render( + + + , + ); + + const joinButton = screen.getByText('joinNow'); + await fireEvent.click(joinButton); + + await waitFor(() => { + expect(toast.success).toHaveBeenCalledWith('orgJoined'); + }); + }); + + it('should handle private organization join error', async () => { + render( + + + , + ); + + const joinButton = screen.getByTestId('joinBtn'); + await fireEvent.click(joinButton); + + await waitFor(() => { + expect(toast.error).toHaveBeenCalledWith('errorOccured'); + }); + }); + }); + + it('should handle membership withdrawal successfully', async () => { const props = { - id: '123', - image: 'https://via.placeholder.com/80', - firstName: 'John', - lastName: 'Doe', - name: 'Sample', + ...defaultProps, + membershipRequestStatus: 'pending', + membershipRequests: [{ _id: 'requestId', user: { _id: 'mockUserId' } }], }; - render(); + render( + + + , + ); - expect(screen.getByText(props.name)).toBeInTheDocument(); - expect(screen.getByText(/Owner:/i)).toBeInTheDocument(); - expect(screen.getByText(props.firstName)).toBeInTheDocument(); - expect(screen.getByText(props.lastName)).toBeInTheDocument(); + const withdrawButton = screen.getByTestId('withdrawBtn'); + await fireEvent.click(withdrawButton); + + await waitFor(() => { + expect(toast.success).toHaveBeenCalledWith('MembershipRequestWithdrawn'); + }); }); - it('Should render text elements when props value is not passed', () => { + it('should handle membership withdrawal error when request not found', async () => { const props = { - id: '123', - image: '', - firstName: 'John', - lastName: 'Doe', - name: 'Sample', + ...defaultProps, + membershipRequestStatus: 'pending', + membershipRequests: [], // Empty requests to trigger error }; - render(); + render( + + + , + ); + + const withdrawButton = screen.getByTestId('withdrawBtn'); + await fireEvent.click(withdrawButton); - expect(screen.getByText(props.name)).toBeInTheDocument(); - expect(screen.getByText(/Owner:/i)).toBeInTheDocument(); - expect(screen.getByText(props.firstName)).toBeInTheDocument(); - expect(screen.getByText(props.lastName)).toBeInTheDocument(); + await waitFor(() => { + expect(toast.error).toHaveBeenCalledWith('MembershipRequestNotFound'); + }); }); }); diff --git a/src/components/OrganizationCard/OrganizationCard.tsx b/src/components/OrganizationCard/OrganizationCard.tsx index ae513eff5d..d283fa6fe9 100644 --- a/src/components/OrganizationCard/OrganizationCard.tsx +++ b/src/components/OrganizationCard/OrganizationCard.tsx @@ -1,55 +1,262 @@ -import React from 'react'; +import React, { useEffect, useState } from 'react'; import styles from './OrganizationCard.module.css'; - +import { Button } from 'react-bootstrap'; +import { Tooltip } from '@mui/material'; +import { useTranslation } from 'react-i18next'; +import { toast } from 'react-toastify'; +import { + CANCEL_MEMBERSHIP_REQUEST, + JOIN_PUBLIC_ORGANIZATION, + SEND_MEMBERSHIP_REQUEST, +} from 'GraphQl/Mutations/OrganizationMutations'; +import { useMutation, useQuery } from '@apollo/client'; +import { + USER_JOINED_ORGANIZATIONS, + USER_ORGANIZATION_CONNECTION, +} from 'GraphQl/Queries/OrganizationQueries'; +import Avatar from 'components/Avatar/Avatar'; +import { useNavigate } from 'react-router-dom'; +import type { ApolloError } from '@apollo/client'; +import useLocalStorage from 'utils/useLocalstorage'; interface InterfaceOrganizationCardProps { - image: string; id: string; name: string; - lastName: string; - firstName: string; + image: string; + description: string; + admins: { + id: string; + }[]; + members: { + id: string; + }[]; + address: { + city: string; + countryCode: string; + line1: string; + postalCode: string; + state: string; + }; + membershipRequestStatus: string; + userRegistrationRequired: boolean; + membershipRequests: { + _id: string; + user: { + _id: string; + }; + }[]; + isJoined: boolean; } - /** * Component to display an organization's card with its image and owner details. + * Displays an organization card with options to join or manage membership. + * + * Shows the organization's name, image, description, address, number of admins and members, + * and provides buttons for joining, withdrawing membership requests, or visiting the organization page. + * + * @param props - The properties for the organization card. + * @param id - The unique identifier of the organization. + * @param name - The name of the organization. + * @param image - The URL of the organization's image. + * @param description - A description of the organization. + * @param admins - The list of admins with their IDs. + * @param members - The list of members with their IDs. + * @param address - The address of the organization including city, country code, line1, postal code, and state. + * @param membershipRequestStatus - The status of the membership request (accepted, pending, or empty). + * @param userRegistrationRequired - Indicates if user registration is required to join the organization. + * @param membershipRequests - The list of membership requests with user IDs. * * @param props - Properties for the organization card. * @returns JSX element representing the organization card. + * @returns The organization card component. */ -function OrganizationCard(props: InterfaceOrganizationCardProps): JSX.Element { - const uri = '/superorghome/i=' + props.id; + +function OrganizationCard({ + id, + name, + image, + description, + admins, + members, + address, + membershipRequestStatus, + userRegistrationRequired, + membershipRequests, + isJoined, +}: InterfaceOrganizationCardProps): JSX.Element { + const [userId, setUserId] = useState(null); + + const { t: tCommon } = useTranslation('common'); + const { t } = useTranslation(); + + const navigate = useNavigate(); + + // Custom hook for localStorage + const { getItem } = useLocalStorage(); + + // Mutations for handling organization memberships + const [sendMembershipRequest] = useMutation(SEND_MEMBERSHIP_REQUEST, { + refetchQueries: [ + { query: USER_ORGANIZATION_CONNECTION, variables: { id } }, + ], + }); + const [joinPublicOrganization] = useMutation(JOIN_PUBLIC_ORGANIZATION, { + refetchQueries: [ + { query: USER_ORGANIZATION_CONNECTION, variables: { id } }, + ], + }); + const [cancelMembershipRequest] = useMutation(CANCEL_MEMBERSHIP_REQUEST, { + refetchQueries: [ + { query: USER_ORGANIZATION_CONNECTION, variables: { id } }, + ], + }); + const { refetch } = useQuery(USER_JOINED_ORGANIZATIONS, { + variables: { id: userId }, + }); + + useEffect(() => { + try { + // Use the custom hook to retrieve the userId + const id = getItem('userId'); // Adjust this line based on your actual localStorage key + setUserId(id); + } catch (error) { + console.error('Failed to access localStorage:', error); + setUserId(null); // Handle gracefully if localStorage is not available + toast.error('Failed to access user data'); + } + }, [getItem]); + + async function joinOrganization(): Promise { + try { + if (userRegistrationRequired) { + await sendMembershipRequest({ + variables: { + organizationId: id, + }, + }); + toast.success(t('MembershipRequestSent') as string); + } else { + await joinPublicOrganization({ + variables: { + organizationId: id, + }, + }); + toast.success(t('orgJoined') as string); + } + refetch(); + } catch (error: unknown) { + if (error instanceof Error) { + const apolloError = error as ApolloError; + const errorCode = apolloError.graphQLErrors?.[0]?.extensions?.code; + if (errorCode === 'ALREADY_MEMBER') { + toast.error(t('AlreadyJoined') as string); + } else { + toast.error(t('errorOccured') as string); + } + } + } + } + + async function withdrawMembershipRequest(): Promise { + if (!userId) { + toast.error(t('UserIdNotFound') as string); + return; + } + const membershipRequest = membershipRequests.find( + (request) => request.user._id === userId, + ); + + try { + if (!membershipRequest) { + toast.error(t('MembershipRequestNotFound') as string); + return; + } + + await cancelMembershipRequest({ + variables: { + membershipRequestId: membershipRequest._id, + }, + }); + + toast.success(t('MembershipRequestWithdrawn') as string); // Ensure this gets called + } catch (error: unknown) { + if (process.env.NODE_ENV === 'development') { + console.error('Failed to withdraw membership request:', error); + } + toast.error(t('errorOccured') as string); + } + } return ( - -
-
- {props.image ? ( - Organization +
+
+
+ {image ? ( + {`${name} ) : ( - Placeholder )} -
-

{props.name}

-
- Owner: - {props.firstName} - -   - {props.lastName} - -
-
-
+
+ +

{name}

+
+
+ {description} +
+ {address && address.city && ( +
+
+ {address.line1}, + {address.city}, + {address.countryCode} +
+
+ )} +
+ {tCommon('admins')}: {admins?.length}     +   {tCommon('members')}: {members?.length} +
+
-
+ {isJoined && ( + + )} + + {membershipRequestStatus === 'pending' && ( + + )} + + {membershipRequestStatus === '' && ( + + )} +
); } diff --git a/src/components/test-utils/TestWrapper.tsx b/src/components/test-utils/TestWrapper.tsx new file mode 100644 index 0000000000..151f592b7a --- /dev/null +++ b/src/components/test-utils/TestWrapper.tsx @@ -0,0 +1,51 @@ +import React from 'react'; +import type { MockedResponse } from '@apollo/client/testing'; +import { MockedProvider } from '@apollo/client/testing'; +import type { ReactNode } from 'react'; +import { I18nextProvider } from 'react-i18next'; +import { BrowserRouter } from 'react-router-dom'; +import i18n from 'utils/i18n'; + +/** + * Props for the TestWrapper component. + */ +interface InterfaceTestWrapperProps { + /** The React components to be wrapped */ + children: ReactNode; + /** Optional Apollo GraphQL mocks for testing queries and mutations */ + mocks?: MockedResponse[]; +} + +/** + * A wrapper component for testing React components that require Apollo Client, i18n, and Router contexts. + * Provides the necessary provider context for testing components that use GraphQL, translations, and routing. + * + * @example + * ```tsx + * const mocks = [{ + * request: { query: TEST_QUERY }, + * result: { data: { test: 'data' } } + * }]; + * + * render( + * + * + * + * ); + * ``` + * + * @param props - The component props + * @param children - The React components to be wrapped + * @param mocks - Optional Apollo GraphQL mocks for testing queries and mutations + * @returns A JSX element with all required providers wrapped around the children + */ +export const TestWrapper = ({ + children, + mocks = [], +}: InterfaceTestWrapperProps): JSX.Element => ( + + + {children} + + +); diff --git a/src/screens/UserPortal/Organizations/Organizations.tsx b/src/screens/UserPortal/Organizations/Organizations.tsx index 59f5500d02..4e1033cbc4 100644 --- a/src/screens/UserPortal/Organizations/Organizations.tsx +++ b/src/screens/UserPortal/Organizations/Organizations.tsx @@ -40,12 +40,14 @@ interface InterfaceOrganizationCardProps { _id: string; }; }[]; + isJoined: boolean; } /** * Interface defining the structure of organization properties. */ interface InterfaceOrganization { + isJoined: boolean; _id: string; name: string; image: string; @@ -139,7 +141,6 @@ export default function organizations(): JSX.Element { * @param _event - The event triggering the page change. * @param newPage - The new page number. */ - /* istanbul ignore next */ const handleChangePage = ( _event: React.MouseEvent | null, newPage: number, @@ -152,7 +153,6 @@ export default function organizations(): JSX.Element { * * @param event - The event triggering the change. */ - /* istanbul ignore next */ const handleChangeRowsPerPage = ( event: React.ChangeEvent, ): void => { @@ -202,7 +202,6 @@ export default function organizations(): JSX.Element { /** * Updates the list of organizations based on query results and selected mode. */ - /* istanbul ignore next */ useEffect(() => { if (data) { const organizations = data.organizationsConnection.map( @@ -231,7 +230,6 @@ export default function organizations(): JSX.Element { /** * Updates the list of organizations based on the selected mode and query results. */ - /* istanbul ignore next */ useEffect(() => { if (mode === 0) { if (data) { @@ -251,7 +249,11 @@ export default function organizations(): JSX.Element { ) ) membershipRequestStatus = 'pending'; - return { ...organization, membershipRequestStatus }; + return { + ...organization, + membershipRequestStatus, + isJoined: false, + }; }, ); setOrganizations(organizations); @@ -259,7 +261,13 @@ export default function organizations(): JSX.Element { } else if (mode === 1) { if (joinedOrganizationsData && joinedOrganizationsData.users.length > 0) { const organizations = - joinedOrganizationsData.users[0]?.user?.joinedOrganizations || []; + joinedOrganizationsData.users[0]?.user?.joinedOrganizations.map( + (org: InterfaceOrganization) => ({ + ...org, + membershipRequestStatus: 'accepted', + isJoined: true, + }), + ) || []; setOrganizations(organizations); } } else if (mode === 2) { @@ -268,8 +276,13 @@ export default function organizations(): JSX.Element { createdOrganizationsData.users.length > 0 ) { const organizations = - createdOrganizationsData.users[0]?.appUserProfile - ?.createdOrganizations || []; + createdOrganizationsData.users[0]?.appUserProfile?.createdOrganizations.map( + (org: InterfaceOrganization) => ({ + ...org, + membershipRequestStatus: 'accepted', + isJoined: true, + }), + ) || []; setOrganizations(organizations); } } @@ -379,8 +392,7 @@ export default function organizations(): JSX.Element { page * rowsPerPage, page * rowsPerPage + rowsPerPage, ) - : /* istanbul ignore next */ - organizations + : organizations ).map((organization: InterfaceOrganization, index) => { const cardProps: InterfaceOrganizationCardProps = { name: organization.name, @@ -395,6 +407,7 @@ export default function organizations(): JSX.Element { userRegistrationRequired: organization.userRegistrationRequired, membershipRequests: organization.membershipRequests, + isJoined: organization.isJoined, }; return ; }) @@ -408,10 +421,7 @@ export default function organizations(): JSX.Element { Date: Thu, 16 Jan 2025 01:23:55 +0530 Subject: [PATCH 13/42] Updated the CONTRIBUTING.md Testing section to cover jest and vitest (#3277) * Update Contributing.md * Fixed formatting * Fix linting error * updated eslintignore to exclude markdown files * Implemented requested changes * Removed numbering --- .eslintignore | 5 ++- CONTRIBUTING.md | 86 ++++++++++++++++++++++++++++++++++++------------- 2 files changed, 67 insertions(+), 24 deletions(-) diff --git a/.eslintignore b/.eslintignore index ee98c5bdb0..b34742bb74 100644 --- a/.eslintignore +++ b/.eslintignore @@ -5,4 +5,7 @@ package-lock.json tsconfig.json # Ignore the Docusaurus website subdirectory -docs/** \ No newline at end of file +docs/** + +#Ignore markdown files from linting +*.md diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index dbe448c807..1f68ebef12 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -17,6 +17,12 @@ If you are new to contributing to open source, please read the Open Source Guide - [Branching Strategy](#branching-strategy) - [Conflict Resolution](#conflict-resolution) - [Contributing Code](#contributing-code) + - [General:](#general) + - [Testing:](#testing) + - [Jest Testing](#jest-testing) + - [Vitest Testing](#vitest-testing) + - [Combined testing and coverage](#combined-testing-and-coverage) + - [Test Code Coverage:](#test-code-coverage) - [Internships](#internships) - [Community](#community) @@ -92,60 +98,94 @@ The process of proposing a change to Talawa Admin can be summarized as: 1. Run the app and test your changes. 1. If you've added code, then test suites must be added. - 1. **_General_:** + ### General: - 1. We need to get to 100% test coverage for the app. We periodically increase the desired test coverage for our pull requests to meet this goal. - 1. Pull requests that don't meet the minimum test coverage levels will not be accepted. This may mean that you will have to create tests for code you did not write. You can decide which part of the code base needs additional tests if this happens to you. + - We need to get to 100% test coverage for the app. We periodically increase the desired test coverage for our pull requests to meet this goal. + - Pull requests that don't meet the minimum test coverage levels will not be accepted. This may mean that you will have to create tests for code you did not write. You can decide which part of the code base needs additional tests if this happens to you. - 2. **_Testing_:** - - 1. Test using this set of commands: + ### Testing: + This section outlines the different testing strategies and tools used in this project. It includes instructions on running tests, viewing code coverage, and debugging using Jest and Vitest. Following these guidelines ensures code reliability and maintains the project's high standards for quality. + #### Jest Testing + - Running a single test: + ``` + npm run test path/to/test/file + ``` + - Running all tests: + ``` + npm run test --watchAll=false + ``` + - Viewing the code coverage of a single test file: + ``` + npm run test --watchAll=false --coverage /path/to/test/file + ``` + - Viewing the code coverage of all test files: ``` - npm install npm run test --watchAll=false --coverage ``` - - 2. Debug tests in browser - + - Debug tests in browser You can see the output of failing tests in broswer by running `jest-preview` package before running your tests - ``` - npm install npm run jest-preview npm run test --watchAll=false --coverage ``` - You don't need to re-run the `npm run jest-preview` command each time, simply run the `npm run test` command if the Jest Preview server is already running in the background, it'll automatically detect any failing tests and show the preview at `http://localhost:3336` as shown in this screenshot - ![Debugging Test Demo](./public/images/jest-preview.webp) + #### Vitest Testing + - Running a single test: + ``` + npm run test:vitest /path/to/test/file + ``` + - Running all tests: + ``` + npm run test:vitest + ``` + - Viewing the code coverage of a single test file: + ``` + npm run test:vitest:coverage /path/to/test/file + ``` + - Viewing the code coverage of all test files: + ``` + npm run test:vitest:coverage + ``` + + #### Combined testing and coverage + - Running all tests: + ``` + npm run test && npm run test:vitest + ``` + - Viewing combined code coverage: + ``` + npm run test --watchAll=false --coverage && npm run test:vitest:coverage + ``` - 3. **_Test Code Coverage_:** + #### Test Code Coverage: 1. _General Information_ - 1. The current code coverage of the repo is: [![codecov](https://codecov.io/gh/PalisadoesFoundation/talawa-admin/branch/develop/graph/badge.svg?token=II0R0RREES)](https://codecov.io/gh/PalisadoesFoundation/talawa-admin) - 2. You can determine the percentage test coverage of your code by running these two commands in sequence: + - The current code coverage of the repo is: [![codecov](https://codecov.io/gh/PalisadoesFoundation/talawa-admin/branch/develop/graph/badge.svg?token=II0R0RREES)](https://codecov.io/gh/PalisadoesFoundation/talawa-admin) + - You can determine the percentage test coverage of your code by running these two commands in sequence: ``` npm install npm run test --watchAll=false --coverage genhtml coverage/lcov.info -o coverage ``` - 3. The output of the `npm run test` command will give you a tablular coverage report per file - 4. The overall coverage rate will be visible on the penultimate line of the `genhtml` command's output. - 5. The `genhtml` command is part of the Linux `lcov` package. Similar packages can be found for Windows and MacOS. - 6. The currently acceptable coverage rate can be found in the [GitHub Pull Request file](.github/workflows/pull-requests.yml). Search for the value below the line containing `min_coverage`. + - The output of the `npm run test` command will give you a tablular coverage report per file + - The overall coverage rate will be visible on the penultimate line of the `genhtml` command's output. + - The `genhtml` command is part of the Linux `lcov` package. Similar packages can be found for Windows and MacOS. + - The currently acceptable coverage rate can be found in the [GitHub Pull Request file](.github/workflows/pull-requests.yml). Search for the value below the line containing `min_coverage`. 2. _Testing Individual Files_ - 1. You can test an individual file by running this command: + - You can test an individual file by running this command: ``` npm run test --watchAll=false /path/to/test/file ``` - 2. You can get the test coverage report for that file by running this command. The report will list all tests in the suite. Those tests that are not run will have zero values. You will need to look for the output line relevant to your test file. + - You can get the test coverage report for that file by running this command. The report will list all tests in the suite. Those tests that are not run will have zero values. You will need to look for the output line relevant to your test file. ``` npm run test --watchAll=false --coverage /path/to/test/file ``` 3. _Creating your code coverage account_ - 1. You can also see your code coverage online for your fork of the repo. This is provided by `codecov.io` + - You can also see your code coverage online for your fork of the repo. This is provided by `codecov.io` 1. Go to this link: `https://app.codecov.io/gh/XXXX/YYYY` where XXXX is your GitHub account username and YYYY is the name of the repository 2. Login to `codecov.io` using your GitHub account, and add your **repo** and **branches** to the `codecov.io` dashboard. From e922a02d96f989dbc13048097f7df97ef6a86249 Mon Sep 17 00:00:00 2001 From: Peter Harrison <16875803+palisadoes@users.noreply.github.com> Date: Wed, 15 Jan 2025 21:14:56 -0800 Subject: [PATCH 14/42] Update pull-request.yml --- .github/workflows/pull-request.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pull-request.yml b/.github/workflows/pull-request.yml index 4dfefe6e77..dbccb35556 100644 --- a/.github/workflows/pull-request.yml +++ b/.github/workflows/pull-request.yml @@ -38,7 +38,7 @@ jobs: - name: Count number of lines run: | chmod +x ./.github/workflows/scripts/countline.py - ./.github/workflows/scripts/countline.py --lines 600 --exclude_files src/screens/LoginPage/LoginPage.tsx src/GraphQl/Queries/Queries.ts src/screens/OrgList/OrgList.tsx src/GraphQl/Mutations/mutations.ts src/components/EventListCard/EventListCardModals.tsx src/components/TagActions/TagActionsMocks.ts src/utils/interfaces.ts src/screens/MemberDetail/MemberDetail.tsx + ./.github/workflows/scripts/countline.py --lines 600 --exclude_files src/screens/LoginPage/LoginPage.tsx src/GraphQl/Queries/Queries.ts src/screens/OrgList/OrgList.tsx src/GraphQl/Mutations/mutations.ts src/components/EventListCard/EventListCardModals.tsx src/components/TagActions/TagActionsMocks.ts src/utils/interfaces.ts src/screens/MemberDetail/MemberDetail.tsx src/components/OrgPostCard/OrgPostCard.tsx - name: Get changed TypeScript files id: changed-files From 82214d97ed5125a87c7fcede24642861b41de345 Mon Sep 17 00:00:00 2001 From: Rahul Chougule <87270395+rahulch07@users.noreply.github.com> Date: Thu, 16 Jan 2025 21:24:28 +0530 Subject: [PATCH 15/42] Updating to NEW COLOR SCHEME 2 (#3293) * changed green to blue * updated funds section * people section css updated * updated Tags section * venues, action items, advertisments, plugins sections updated * fixed code coverage test * fixed code coverage test * CSS methodology added * fixed linting --------- Co-authored-by: Rahul Chougule --- src/assets/css/app.css | 2 +- .../AddOn/core/AddOnEntry/AddOnEntry.tsx | 17 +++++++ .../AddPeopleToTag/AddPeopleToTag.tsx | 25 ++++++++++- .../AdvertisementEntry/AdvertisementEntry.tsx | 18 ++++++++ .../AdvertisementRegister.tsx | 19 ++++++++ .../EventCalendar/EventCalendar.tsx | 20 +++++++++ src/components/EventCalendar/EventHeader.tsx | 17 +++++++ .../EventListCard/EventListCardModals.tsx | 21 +++++++++ .../OrgPeopleListCard/OrgPeopleListCard.tsx | 17 +++++++ .../OrgPostCard/DeletePostModal.tsx | 17 +++++++ src/components/OrgPostCard/OrgPostCard.tsx | 24 ++++++++++ src/components/TagActions/TagActions.tsx | 20 +++++++++ src/components/TagActions/TagNode.tsx | 16 +++++++ src/components/Venues/VenueCard.tsx | 18 ++++++++ src/components/Venues/VenueModal.tsx | 17 +++++++ src/screens/BlockUser/BlockUser.tsx | 22 ++++++++++ .../FundCampaignPledge/FundCampaignPledge.tsx | 23 ++++++++++ .../FundCampaignPledge/PledgeModal.tsx | 17 +++++++ src/screens/ManageTag/EditUserTagModal.tsx | 20 +++++++++ src/screens/ManageTag/ManageTag.tsx | 18 ++++++++ src/screens/ManageTag/RemoveUserTagModal.tsx | 19 ++++++++ .../ManageTag/UnassignUserTagModal.tsx | 19 ++++++++ src/screens/OrgList/OrgList.tsx | 20 +++++++++ src/screens/OrgPost/OrgPost.tsx | 19 ++++++++ .../ItemUpdateStatusModal.tsx | 20 +++++++++ .../OrganizationEvents/OrganizationEvents.tsx | 19 ++++++++ .../CampaignModal.tsx | 17 +++++++ .../OrganizationFundCampagins.tsx | 24 ++++++++++ src/screens/OrganizationFunds/FundModal.tsx | 17 +++++++ .../OrganizationFunds/OrganizationFunds.tsx | 23 ++++++++++ src/screens/OrganizationPeople/AddMember.tsx | 18 ++++++++ .../OrganizationTags/OrganizationTags.tsx | 19 ++++++++ src/screens/SubTags/SubTags.tsx | 20 +++++++++ src/style/app.module.css | 44 ++++++++++++++++++- 34 files changed, 662 insertions(+), 4 deletions(-) diff --git a/src/assets/css/app.css b/src/assets/css/app.css index f2bc9f3aaf..16af7c92fb 100644 --- a/src/assets/css/app.css +++ b/src/assets/css/app.css @@ -14081,7 +14081,7 @@ fieldset:disabled .btn { .btn-info:hover, .btn-info:active { color: #fff !important; - box-shadow: inset 50px 50px 40px rgba(0, 0, 0, 0.5); + /* box-shadow: inset 50px 50px 40px rgba(0, 0, 0, 0.5); */ background-blend-mode: multiply; /* background-color: #6c757d ; */ /* filter: brightness(0.85); */ diff --git a/src/components/AddOn/core/AddOnEntry/AddOnEntry.tsx b/src/components/AddOn/core/AddOnEntry/AddOnEntry.tsx index 9c9a822e22..be4f59c74e 100644 --- a/src/components/AddOn/core/AddOnEntry/AddOnEntry.tsx +++ b/src/components/AddOn/core/AddOnEntry/AddOnEntry.tsx @@ -42,6 +42,23 @@ interface InterfaceAddOnEntryProps { * getInstalledPlugins={() => {}} * /> * ``` + * ## CSS Strategy Explanation: + * + * To ensure consistency across the application and reduce duplication, common styles + * (such as button styles) have been moved to the global CSS file. Instead of using + * component-specific classes (e.g., `.greenregbtnOrganizationFundCampaign`, `.greenregbtnPledge`), a single reusable + * class (e.g., .addButton) is now applied. + * + * ### Benefits: + * - **Reduces redundant CSS code. + * - **Improves maintainability by centralizing common styles. + * - **Ensures consistent styling across components. + * + * ### Global CSS Classes used: + * - `.addButton` + * - `.removeButton` + * + * For more details on the reusable classes, refer to the global CSS file. */ function addOnEntry({ id, diff --git a/src/components/AddPeopleToTag/AddPeopleToTag.tsx b/src/components/AddPeopleToTag/AddPeopleToTag.tsx index 29eeb4a56c..f277d22e50 100644 --- a/src/components/AddPeopleToTag/AddPeopleToTag.tsx +++ b/src/components/AddPeopleToTag/AddPeopleToTag.tsx @@ -22,9 +22,30 @@ import { useTranslation } from 'react-i18next'; import InfiniteScrollLoader from 'components/InfiniteScrollLoader/InfiniteScrollLoader'; import type { TFunction } from 'i18next'; -/** - * Props for the `AddPeopleToTag` component. +/** * Props for the `AddPeopleToTag` component. + * + * ## CSS Strategy Explanation: + * + * To ensure consistency across the application and reduce duplication, common styles + * (such as button styles) have been moved to the global CSS file. Instead of using + * component-specific classes (e.g., `.greenregbtnOrganizationFundCampaign`, `.greenregbtnPledge`), a single reusable + * class (e.g., .addButton) is now applied. + * + * ### Benefits: + * - **Reduces redundant CSS code. + * - **Improves maintainability by centralizing common styles. + * - **Ensures consistent styling across components. + * + * ### Global CSS Classes used: + * - `.editButton` + * - `.modalHeader` + * - `.inputField` + * - `.addButton` + * - `.removeButton` + * + * For more details on the reusable classes, refer to the global CSS file. */ + export interface InterfaceAddPeopleToTagProps { addPeopleToTagModalIsOpen: boolean; hideAddPeopleToTagModal: () => void; diff --git a/src/components/Advertisements/core/AdvertisementEntry/AdvertisementEntry.tsx b/src/components/Advertisements/core/AdvertisementEntry/AdvertisementEntry.tsx index dca9adb45a..076733e633 100644 --- a/src/components/Advertisements/core/AdvertisementEntry/AdvertisementEntry.tsx +++ b/src/components/Advertisements/core/AdvertisementEntry/AdvertisementEntry.tsx @@ -27,6 +27,24 @@ interface InterfaceAddOnEntryProps { * * @param props - Component properties * @returns The rendered component + * + * ## CSS Strategy Explanation: + * + * To ensure consistency across the application and reduce duplication, common styles + * (such as button styles) have been moved to the global CSS file. Instead of using + * component-specific classes (e.g., `.greenregbtnOrganizationFundCampaign`, `.greenregbtnPledge`), a single reusable + * class (e.g., .addButton) is now applied. + * + * ### Benefits: + * - **Reduces redundant CSS code. + * - **Improves maintainability by centralizing common styles. + * - **Ensures consistent styling across components. + * + * ### Global CSS Classes used: + * - `.addButton` + * - `.removeButton` + * + * For more details on the reusable classes, refer to the global CSS file. */ function AdvertisementEntry({ id, diff --git a/src/components/Advertisements/core/AdvertisementRegister/AdvertisementRegister.tsx b/src/components/Advertisements/core/AdvertisementRegister/AdvertisementRegister.tsx index 24290d7b13..6f1e191266 100644 --- a/src/components/Advertisements/core/AdvertisementRegister/AdvertisementRegister.tsx +++ b/src/components/Advertisements/core/AdvertisementRegister/AdvertisementRegister.tsx @@ -16,6 +16,25 @@ import { useParams } from 'react-router-dom'; /** * Props for the `advertisementRegister` component. + * + * ## CSS Strategy Explanation: + * + * To ensure consistency across the application and reduce duplication, common styles + * (such as button styles) have been moved to the global CSS file. Instead of using + * component-specific classes (e.g., `.greenregbtnOrganizationFundCampaign`, `.greenregbtnPledge`), a single reusable + * class (e.g., .addButton) is now applied. + * + * ### Benefits: + * - **Reduces redundant CSS code. + * - **Improves maintainability by centralizing common styles. + * - **Ensures consistent styling across components. + * + * ### Global CSS Classes used: + * - `.dropdown` + * - `.inputField` + * - `.removeButton` + * + * For more details on the reusable classes, refer to the global CSS file. */ interface InterfaceAddOnRegisterProps { id?: string; // Optional organization ID diff --git a/src/components/EventCalendar/EventCalendar.tsx b/src/components/EventCalendar/EventCalendar.tsx index 01426ca047..c84a6d23d5 100644 --- a/src/components/EventCalendar/EventCalendar.tsx +++ b/src/components/EventCalendar/EventCalendar.tsx @@ -9,6 +9,26 @@ import HolidayCard from '../HolidayCards/HolidayCard'; import { holidays, months, weekdays } from './constants'; import type { InterfaceRecurrenceRule } from 'utils/recurrenceUtils'; import YearlyEventCalender from './YearlyEventCalender'; + +/** + * ## CSS Strategy Explanation: + * + * To ensure consistency across the application and reduce duplication, common styles + * (such as button styles) have been moved to the global CSS file. Instead of using + * component-specific classes (e.g., `.greenregbtnOrganizationFundCampaign`, `.greenregbtnPledge`), a single reusable + * class (e.g., .addButton) is now applied. + * + * ### Benefits: + * - **Reduces redundant CSS code. + * - **Improves maintainability by centralizing common styles. + * - **Ensures consistent styling across components. + * + * ### Global CSS Classes used: + * - `.editButton` + * + * For more details on the reusable classes, refer to the global CSS file. + */ + interface InterfaceEventListCardProps { userRole?: string; key?: string; diff --git a/src/components/EventCalendar/EventHeader.tsx b/src/components/EventCalendar/EventHeader.tsx index 19492be0ae..93e1612a4c 100644 --- a/src/components/EventCalendar/EventHeader.tsx +++ b/src/components/EventCalendar/EventHeader.tsx @@ -24,6 +24,23 @@ interface InterfaceEventHeaderProps { * @param handleChangeView - Function to handle changing the view type. * @param showInviteModal - Function to show the invite modal for creating an event. * @returns JSX.Element - The rendered EventHeader component. + * + * ## CSS Strategy Explanation: + * + * To ensure consistency across the application and reduce duplication, common styles + * (such as button styles) have been moved to the global CSS file. Instead of using + * component-specific classes (e.g., `.greenregbtnOrganizationFundCampaign`, `.greenregbtnPledge`), a single reusable + * class (e.g., .addButton) is now applied. + * + * ### Benefits: + * - **Reduces redundant CSS code. + * - **Improves maintainability by centralizing common styles. + * - **Ensures consistent styling across components. + * + * ### Global CSS Classes used: + * - `.dropdown` + * + * For more details on the reusable classes, refer to the global CSS file. */ function eventHeader({ viewType, diff --git a/src/components/EventListCard/EventListCardModals.tsx b/src/components/EventListCard/EventListCardModals.tsx index 3bcdf38df8..29354fd282 100644 --- a/src/components/EventListCard/EventListCardModals.tsx +++ b/src/components/EventListCard/EventListCardModals.tsx @@ -41,6 +41,27 @@ enum Role { * Converts a time string to a Dayjs object representing the current date with the specified time. * @param time - A string representing the time in 'HH:mm:ss' format. * @returns A Dayjs object with the current date and specified time. + * + * ## CSS Strategy Explanation: + * + * To ensure consistency across the application and reduce duplication, common styles + * (such as button styles) have been moved to the global CSS file. Instead of using + * component-specific classes (e.g., `.greenregbtnOrganizationFundCampaign`, `.greenregbtnPledge`), a single reusable + * class (e.g., .addButton) is now applied. + * + * ### Benefits: + * - **Reduces redundant CSS code. + * - **Improves maintainability by centralizing common styles. + * - **Ensures consistent styling across components. + * + * ### Global CSS Classes used: + * - `.inputField` + * - `.switch` + * - `.addButton` + * - `.removeButton` + * - `.modalHeader` + * + * For more details on the reusable classes, refer to the global CSS file. */ const timeToDayJs = (time: string): Dayjs => { const dateTimeString = dayjs().format('YYYY-MM-DD') + ' ' + time; diff --git a/src/components/OrgPeopleListCard/OrgPeopleListCard.tsx b/src/components/OrgPeopleListCard/OrgPeopleListCard.tsx index 55c8757623..e738c379a0 100644 --- a/src/components/OrgPeopleListCard/OrgPeopleListCard.tsx +++ b/src/components/OrgPeopleListCard/OrgPeopleListCard.tsx @@ -12,6 +12,23 @@ import { Close } from '@mui/icons-material'; /** * Props for the OrgPeopleListCard component + * + * ## CSS Strategy Explanation: + * + * To ensure consistency across the application and reduce duplication, common styles + * (such as button styles) have been moved to the global CSS file. Instead of using + * component-specific classes (e.g., `.greenregbtnOrganizationFundCampaign`, `.greenregbtnPledge`), a single reusable + * class (e.g., .addButton) is now applied. + * + * ### Benefits: + * - **Reduces redundant CSS code. + * - **Improves maintainability by centralizing common styles. + * - **Ensures consistent styling across components. + * + * ### Global CSS Classes used: + * - `.regularBtn` + * + * For more details on the reusable classes, refer to the global CSS file. */ interface InterfaceOrgPeopleListCardProps { id: string | undefined; diff --git a/src/components/OrgPostCard/DeletePostModal.tsx b/src/components/OrgPostCard/DeletePostModal.tsx index 7ed025de50..78584cfea3 100644 --- a/src/components/OrgPostCard/DeletePostModal.tsx +++ b/src/components/OrgPostCard/DeletePostModal.tsx @@ -10,6 +10,23 @@ import styles from '../../style/app.module.css'; * @param onHide - Callback invoked when the modal is dismissed. * @param onDelete - Callback invoked to actually delete the post. * @returns A rendered React Bootstrap Modal for post deletion. + * + * ## CSS Strategy Explanation: + * + * To ensure consistency across the application and reduce duplication, common styles + * (such as button styles) have been moved to the global CSS file. Instead of using + * component-specific classes (e.g., `.greenregbtnOrganizationFundCampaign`, `.greenregbtnPledge`), a single reusable + * class (e.g., .addButton) is now applied. + * + * ### Benefits: + * - **Reduces redundant CSS code. + * - **Improves maintainability by centralizing common styles. + * - **Ensures consistent styling across components. + * + * ### Global CSS Classes used: + * - `.addButton` + * + * For more details on the reusable classes, refer to the global CSS file. */ interface InterfaceDeletePostModalProps { diff --git a/src/components/OrgPostCard/OrgPostCard.tsx b/src/components/OrgPostCard/OrgPostCard.tsx index d0d8dc85ac..d79d29791e 100644 --- a/src/components/OrgPostCard/OrgPostCard.tsx +++ b/src/components/OrgPostCard/OrgPostCard.tsx @@ -16,6 +16,30 @@ import { errorHandler } from 'utils/errorHandler'; import type { InterfacePostForm } from 'utils/interfaces'; import styles from '../../style/app.module.css'; import DeletePostModal from './DeletePostModal'; + +/** + * + * ## CSS Strategy Explanation: + * + * To ensure consistency across the application and reduce duplication, common styles + * (such as button styles) have been moved to the global CSS file. Instead of using + * component-specific classes (e.g., `.greenregbtnOrganizationFundCampaign`, `.greenregbtnPledge`), a single reusable + * class (e.g., .addButton) is now applied. + * + * ### Benefits: + * - **Reduces redundant CSS code. + * - **Improves maintainability by centralizing common styles. + * - **Ensures consistent styling across components. + * + * ### Global CSS Classes used: + * - `.modalHeader` + * - `.inputField` + * - `.removeButton` + * - `.addButton` + * + * For more details on the reusable classes, refer to the global CSS file. + */ + interface InterfaceOrgPostCardProps { postID: string; id: string; diff --git a/src/components/TagActions/TagActions.tsx b/src/components/TagActions/TagActions.tsx index f237c70212..fb6ce6ca0d 100644 --- a/src/components/TagActions/TagActions.tsx +++ b/src/components/TagActions/TagActions.tsx @@ -32,6 +32,26 @@ interface InterfaceUserTagsAncestorData { /** * Props for the `AssignToTags` component. + * + * ## CSS Strategy Explanation: + * + * To ensure consistency across the application and reduce duplication, common styles + * (such as button styles) have been moved to the global CSS file. Instead of using + * component-specific classes (e.g., `.greenregbtnOrganizationFundCampaign`, `.greenregbtnPledge`), a single reusable + * class (e.g., .addButton) is now applied. + * + * ### Benefits: + * - **Reduces redundant CSS code. + * - **Improves maintainability by centralizing common styles. + * - **Ensures consistent styling across components. + * + * ### Global CSS Classes used: + * - `.modalHeader` + * - `.inputField` + * - `.removeButton` + * - `.addButton` + * + * For more details on the reusable classes, refer to the global CSS file. */ export interface InterfaceTagActionsProps { tagActionsModalIsOpen: boolean; diff --git a/src/components/TagActions/TagNode.tsx b/src/components/TagActions/TagNode.tsx index 22173e7834..fb484f004a 100644 --- a/src/components/TagActions/TagNode.tsx +++ b/src/components/TagActions/TagNode.tsx @@ -15,6 +15,22 @@ import type { TFunction } from 'i18next'; /** * Props for the `TagNode` component. + * + * ## CSS Strategy Explanation: + * + * To ensure consistency across the application and reduce duplication, common styles + * (such as button styles) have been moved to the global CSS file. Instead of using + * component-specific classes (e.g., `.greenregbtnOrganizationFundCampaign`, `.greenregbtnPledge`), a single reusable + * class (e.g., .addButton) is now applied. + * + * ### Benefits: + * - **Reduces redundant CSS code. + * - **Improves maintainability by centralizing common styles. + * - **Ensures consistent styling across components. + * + * ### Global CSS Classes used: + * + * For more details on the reusable classes, refer to the global CSS file. */ interface InterfaceTagNodeProps { tag: InterfaceTagData; diff --git a/src/components/Venues/VenueCard.tsx b/src/components/Venues/VenueCard.tsx index 557a5c77e4..7ed0e07eb9 100644 --- a/src/components/Venues/VenueCard.tsx +++ b/src/components/Venues/VenueCard.tsx @@ -35,6 +35,24 @@ interface InterfaceVenueCardProps { * handleDelete={handleDeleteVenue} * /> * ``` + * + * ## CSS Strategy Explanation: + * + * To ensure consistency across the application and reduce duplication, common styles + * (such as button styles) have been moved to the global CSS file. Instead of using + * component-specific classes (e.g., `.greenregbtnOrganizationFundCampaign`, `.greenregbtnPledge`), a single reusable + * class (e.g., .addButton) is now applied. + * + * ### Benefits: + * - **Reduces redundant CSS code. + * - **Improves maintainability by centralizing common styles. + * - **Ensures consistent styling across components. + * + * ### Global CSS Classes used: + * - `.addButton` + * - `.removeButton` + * + * For more details on the reusable classes, refer to the global CSS file. */ const VenueCard = ({ venueItem, diff --git a/src/components/Venues/VenueModal.tsx b/src/components/Venues/VenueModal.tsx index 97ae66c78e..7b347defed 100644 --- a/src/components/Venues/VenueModal.tsx +++ b/src/components/Venues/VenueModal.tsx @@ -35,6 +35,23 @@ export interface InterfaceVenueModalProps { * @param edit - A flag indicating if the modal is in edit mode. If true, the component will update an existing venue; if false, it will create a new one. * * @returns The rendered modal component. + * + * ## CSS Strategy Explanation: + * + * To ensure consistency across the application and reduce duplication, common styles + * (such as button styles) have been moved to the global CSS file. Instead of using + * component-specific classes (e.g., `.greenregbtnOrganizationFundCampaign`, `.greenregbtnPledge`), a single reusable + * class (e.g., .addButton) is now applied. + * + * ### Benefits: + * - **Reduces redundant CSS code. + * - **Improves maintainability by centralizing common styles. + * - **Ensures consistent styling across components. + * + * ### Global CSS Classes used: + * - `.inputField` + * + * For more details on the reusable classes, refer to the global CSS file. */ const VenueModal = ({ show, diff --git a/src/screens/BlockUser/BlockUser.tsx b/src/screens/BlockUser/BlockUser.tsx index 3da2bf8b8e..81c182f43f 100644 --- a/src/screens/BlockUser/BlockUser.tsx +++ b/src/screens/BlockUser/BlockUser.tsx @@ -41,6 +41,28 @@ interface InterfaceMember { * ```tsx * * ``` + * + * ## CSS Strategy Explanation: + * + * To ensure consistency across the application and reduce duplication, common styles + * (such as button styles) have been moved to the global CSS file. Instead of using + * component-specific classes (e.g., `.greenregbtnOrganizationFundCampaign`, `.greenregbtnPledge`), a single reusable + * class (e.g., .addButton) is now applied. + * + * ### Benefits: + * - **Reduces redundant CSS code. + * - **Improves maintainability by centralizing common styles. + * - **Ensures consistent styling across components. + * + * ### Global CSS Classes used: + * - `.head` + * - `.btnsContainer` + * - `.input` + * - `.inputField` + * - `.searchButton` + * - `.btnsBlock` + * + * For more details on the reusable classes, refer to the global CSS file. */ const Requests = (): JSX.Element => { // Translation hooks for internationalization diff --git a/src/screens/FundCampaignPledge/FundCampaignPledge.tsx b/src/screens/FundCampaignPledge/FundCampaignPledge.tsx index 68ecfeaced..48711273ba 100644 --- a/src/screens/FundCampaignPledge/FundCampaignPledge.tsx +++ b/src/screens/FundCampaignPledge/FundCampaignPledge.tsx @@ -25,6 +25,29 @@ import ProgressBar from 'react-bootstrap/ProgressBar'; import SortingButton from 'subComponents/SortingButton'; +/** + * ## CSS Strategy Explanation: + * + * To ensure consistency across the application and reduce duplication, common styles + * (such as button styles) have been moved to the global CSS file. Instead of using + * component-specific classes (e.g., `.greenregbtnOrganizationFundCampaign`, `.greenregbtnPledge`), a single reusable + * class (e.g., .addButton) is now applied. + * + * ### Benefits: + * - **Reduces redundant CSS code. + * - **Improves maintainability by centralizing common styles. + * - **Ensures consistent styling across components. + * + * ### Global CSS Classes used: + * - `.editButton` + * - `.input` + * - `.inputField` + * - `.searchButton` + * - `.dropdown` + * + * For more details on the reusable classes, refer to the global CSS file. + */ + interface InterfaceCampaignInfo { name: string; goal: number; diff --git a/src/screens/FundCampaignPledge/PledgeModal.tsx b/src/screens/FundCampaignPledge/PledgeModal.tsx index a93d2c8f1d..1d9246b610 100644 --- a/src/screens/FundCampaignPledge/PledgeModal.tsx +++ b/src/screens/FundCampaignPledge/PledgeModal.tsx @@ -67,6 +67,23 @@ export interface InterfacePledgeModal { * - Calls `createPledge` mutation to create a new pledge. * * Success or error messages are displayed using toast notifications based on the result of the mutation. + * + * ## CSS Strategy Explanation: + * + * To ensure consistency across the application and reduce duplication, common styles + * (such as button styles) have been moved to the global CSS file. Instead of using + * component-specific classes (e.g., `.greenregbtnOrganizationFundCampaign`, `.greenregbtnPledge`), a single reusable + * class (e.g., .addButton) is now applied. + * + * ### Benefits: + * - **Reduces redundant CSS code. + * - **Improves maintainability by centralizing common styles. + * - **Ensures consistent styling across components. + * + * ### Global CSS Classes used: + * - `.addButton` + * + * For more details on the reusable classes, refer to the global CSS file. */ const PledgeModal: React.FC = ({ diff --git a/src/screens/ManageTag/EditUserTagModal.tsx b/src/screens/ManageTag/EditUserTagModal.tsx index f75c19cbb8..93a6feb45c 100644 --- a/src/screens/ManageTag/EditUserTagModal.tsx +++ b/src/screens/ManageTag/EditUserTagModal.tsx @@ -6,6 +6,26 @@ import styles from '../../style/app.module.css'; /** * Edit UserTag Modal component for the Manage Tag screen. + * + * ## CSS Strategy Explanation: + * + * To ensure consistency across the application and reduce duplication, common styles + * (such as button styles) have been moved to the global CSS file. Instead of using + * component-specific classes (e.g., `.greenregbtnOrganizationFundCampaign`, `.greenregbtnPledge`), a single reusable + * class (e.g., .addButton) is now applied. + * + * ### Benefits: + * - **Reduces redundant CSS code. + * - **Improves maintainability by centralizing common styles. + * - **Ensures consistent styling across components. + * + * ### Global CSS Classes used: + * - `.modalHeader` + * - `.inputField` + * - `.removeButton` + * - `.addButton` + * + * For more details on the reusable classes, refer to the global CSS file. */ export interface InterfaceEditUserTagModalProps { diff --git a/src/screens/ManageTag/ManageTag.tsx b/src/screens/ManageTag/ManageTag.tsx index b0748a9bf3..649f9ade48 100644 --- a/src/screens/ManageTag/ManageTag.tsx +++ b/src/screens/ManageTag/ManageTag.tsx @@ -41,6 +41,24 @@ import SortingButton from 'subComponents/SortingButton'; /** * Component that renders the Manage Tag screen when the app navigates to '/orgtags/:orgId/manageTag/:tagId'. + * + * ## CSS Strategy Explanation: + * + * To ensure consistency across the application and reduce duplication, common styles + * (such as button styles) have been moved to the global CSS file. Instead of using + * component-specific classes (e.g., `.greenregbtnOrganizationFundCampaign`, `.greenregbtnPledge`), a single reusable + * class (e.g., .addButton) is now applied. + * + * ### Benefits: + * - **Reduces redundant CSS code. + * - **Improves maintainability by centralizing common styles. + * - **Ensures consistent styling across components. + * + * ### Global CSS Classes used: + * - `.tableHeader` + * - `.editButton` + * + * For more details on the reusable classes, refer to the global CSS file. */ function ManageTag(): JSX.Element { diff --git a/src/screens/ManageTag/RemoveUserTagModal.tsx b/src/screens/ManageTag/RemoveUserTagModal.tsx index 91ba0b38aa..bc2681b097 100644 --- a/src/screens/ManageTag/RemoveUserTagModal.tsx +++ b/src/screens/ManageTag/RemoveUserTagModal.tsx @@ -5,6 +5,25 @@ import styles from '../../style/app.module.css'; /** * Remove UserTag Modal component for the Manage Tag screen. + * + * ## CSS Strategy Explanation: + * + * To ensure consistency across the application and reduce duplication, common styles + * (such as button styles) have been moved to the global CSS file. Instead of using + * component-specific classes (e.g., `.greenregbtnOrganizationFundCampaign`, `.greenregbtnPledge`), a single reusable + * class (e.g., .addButton) is now applied. + * + * ### Benefits: + * - **Reduces redundant CSS code. + * - **Improves maintainability by centralizing common styles. + * - **Ensures consistent styling across components. + * + * ### Global CSS Classes used: + * - `.modalHeader` + * - `.removeButton` + * - `.addButton` + * + * For more details on the reusable classes, refer to the global CSS file. */ export interface InterfaceRemoveUserTagModalProps { diff --git a/src/screens/ManageTag/UnassignUserTagModal.tsx b/src/screens/ManageTag/UnassignUserTagModal.tsx index d5448667d1..83c6ee18b9 100644 --- a/src/screens/ManageTag/UnassignUserTagModal.tsx +++ b/src/screens/ManageTag/UnassignUserTagModal.tsx @@ -4,6 +4,25 @@ import { Button, Modal } from 'react-bootstrap'; import styles from '../../style/app.module.css'; /** * Unassign UserTag Modal component for the Manage Tag screen. + * + * ## CSS Strategy Explanation: + * + * To ensure consistency across the application and reduce duplication, common styles + * (such as button styles) have been moved to the global CSS file. Instead of using + * component-specific classes (e.g., `.greenregbtnOrganizationFundCampaign`, `.greenregbtnPledge`), a single reusable + * class (e.g., .addButton) is now applied. + * + * ### Benefits: + * - **Reduces redundant CSS code. + * - **Improves maintainability by centralizing common styles. + * - **Ensures consistent styling across components. + * + * ### Global CSS Classes used: + * - `.modalHeader` + * - `.removeButton` + * - `.addButton` + * + * For more details on the reusable classes, refer to the global CSS file. */ export interface InterfaceUnassignUserTagModalProps { diff --git a/src/screens/OrgList/OrgList.tsx b/src/screens/OrgList/OrgList.tsx index 555eb0beff..4aaa9bfa32 100644 --- a/src/screens/OrgList/OrgList.tsx +++ b/src/screens/OrgList/OrgList.tsx @@ -30,6 +30,26 @@ import styles from '../../style/app.module.css'; import OrganizationModal from './OrganizationModal'; import SortingButton from 'subComponents/SortingButton'; +/** + * ## CSS Strategy Explanation: + * + * To ensure consistency across the application and reduce duplication, common styles + * (such as button styles) have been moved to the global CSS file. Instead of using + * component-specific classes (e.g., `.greenregbtnOrganizationFundCampaign`, `.greenregbtnPledge`), a single reusable + * class (e.g., .addButton) is now applied. + * + * ### Benefits: + * - **Reduces redundant CSS code. + * - **Improves maintainability by centralizing common styles. + * - **Ensures consistent styling across components. + * + * ### Global CSS Classes used: + * - `.inputField` + * - `.searchButton` + * + * For more details on the reusable classes, refer to the global CSS file. + */ + function orgList(): JSX.Element { const { t } = useTranslation('translation', { keyPrefix: 'orgList' }); const { t: tCommon } = useTranslation('common'); diff --git a/src/screens/OrgPost/OrgPost.tsx b/src/screens/OrgPost/OrgPost.tsx index 62a58f0e1a..74bc79d873 100644 --- a/src/screens/OrgPost/OrgPost.tsx +++ b/src/screens/OrgPost/OrgPost.tsx @@ -47,6 +47,25 @@ interface InterfaceOrgPost { * It also provides the functionality to create a new post. The user can also sort the posts based on the date of creation. * The user can also search for a post based on the title of the post. * @returns JSX.Element which contains the posts of the organization. + * + * ## CSS Strategy Explanation: + * + * To ensure consistency across the application and reduce duplication, common styles + * (such as button styles) have been moved to the global CSS file. Instead of using + * component-specific classes (e.g., `.greenregbtnOrganizationFundCampaign`, `.greenregbtnPledge`), a single reusable + * class (e.g., .addButton) is now applied. + * + * ### Benefits: + * - **Reduces redundant CSS code. + * - **Improves maintainability by centralizing common styles. + * - **Ensures consistent styling across components. + * + * ### Global CSS Classes used: + * - `.inputField` + * - `.removeButton` + * - `.addButton` + * + * For more details on the reusable classes, refer to the global CSS file. */ function orgPost(): JSX.Element { const { t } = useTranslation('translation', { diff --git a/src/screens/OrganizationActionItems/ItemUpdateStatusModal.tsx b/src/screens/OrganizationActionItems/ItemUpdateStatusModal.tsx index 099a897435..878ce10d60 100644 --- a/src/screens/OrganizationActionItems/ItemUpdateStatusModal.tsx +++ b/src/screens/OrganizationActionItems/ItemUpdateStatusModal.tsx @@ -8,6 +8,26 @@ import { UPDATE_ACTION_ITEM_MUTATION } from 'GraphQl/Mutations/ActionItemMutatio import { toast } from 'react-toastify'; import type { InterfaceActionItemInfo } from 'utils/interfaces'; +/** + * ## CSS Strategy Explanation: + * + * To ensure consistency across the application and reduce duplication, common styles + * (such as button styles) have been moved to the global CSS file. Instead of using + * component-specific classes (e.g., `.greenregbtnOrganizationFundCampaign`, `.greenregbtnPledge`), a single reusable + * class (e.g., .addButton) is now applied. + * + * ### Benefits: + * - **Reduces redundant CSS code. + * - **Improves maintainability by centralizing common styles. + * - **Ensures consistent styling across components. + * + * ### Global CSS Classes used: + * - `.addButton` + * - `.removeButton` + * + * For more details on the reusable classes, refer to the global CSS file. + */ + export interface InterfaceItemUpdateStatusModalProps { isOpen: boolean; hide: () => void; diff --git a/src/screens/OrganizationEvents/OrganizationEvents.tsx b/src/screens/OrganizationEvents/OrganizationEvents.tsx index d07631b64e..e2e53ed8ab 100644 --- a/src/screens/OrganizationEvents/OrganizationEvents.tsx +++ b/src/screens/OrganizationEvents/OrganizationEvents.tsx @@ -52,6 +52,25 @@ export enum ViewType { * The component uses the useLocalStorage hook to get the user details from the local storage. * * @returns JSX.Element to display the Organization Events Page + * + * ## CSS Strategy Explanation: + * + * To ensure consistency across the application and reduce duplication, common styles + * (such as button styles) have been moved to the global CSS file. Instead of using + * component-specific classes (e.g., `.greenregbtnOrganizationFundCampaign`, `.greenregbtnPledge`), a single reusable + * class (e.g., .addButton) is now applied. + * + * ### Benefits: + * - **Reduces redundant CSS code. + * - **Improves maintainability by centralizing common styles. + * - **Ensures consistent styling across components. + * + * ### Global CSS Classes used: + * - `.inputField` + * - `.switch` + * - `.addButton` + * + * For more details on the reusable classes, refer to the global CSS file. */ function organizationEvents(): JSX.Element { const { t } = useTranslation('translation', { diff --git a/src/screens/OrganizationFundCampaign/CampaignModal.tsx b/src/screens/OrganizationFundCampaign/CampaignModal.tsx index a57c6e707a..a55d74825c 100644 --- a/src/screens/OrganizationFundCampaign/CampaignModal.tsx +++ b/src/screens/OrganizationFundCampaign/CampaignModal.tsx @@ -24,6 +24,23 @@ import type { InterfaceCampaignInfo } from 'utils/interfaces'; /** * Props for the CampaignModal component. + * + * ## CSS Strategy Explanation: + * + * To ensure consistency across the application and reduce duplication, common styles + * (such as button styles) have been moved to the global CSS file. Instead of using + * component-specific classes (e.g., `.greenregbtnOrganizationFundCampaign`, `.greenregbtnPledge`), a single reusable + * class (e.g., .addButton) is now applied. + * + * ### Benefits: + * - **Reduces redundant CSS code. + * - **Improves maintainability by centralizing common styles. + * - **Ensures consistent styling across components. + * + * ### Global CSS Classes used: + * - `.addButton` + * + * For more details on the reusable classes, refer to the global CSS file. */ export interface InterfaceCampaignModal { isOpen: boolean; diff --git a/src/screens/OrganizationFundCampaign/OrganizationFundCampagins.tsx b/src/screens/OrganizationFundCampaign/OrganizationFundCampagins.tsx index c4d85a0eef..b826c7b645 100644 --- a/src/screens/OrganizationFundCampaign/OrganizationFundCampagins.tsx +++ b/src/screens/OrganizationFundCampaign/OrganizationFundCampagins.tsx @@ -74,6 +74,30 @@ const dataGridStyle = { * - Shows error and loading states using `Loader` and error message components. * * @returns The rendered component including breadcrumbs, search and filter controls, data grid, and modals. + * + * ## CSS Strategy Explanation: + * + * To ensure consistency across the application and reduce duplication, common styles + * (such as button styles) have been moved to the global CSS file. Instead of using + * component-specific classes (e.g., `.greenregbtnOrganizationFundCampaign`, `.greenregbtnPledge`), a single reusable + * class (e.g., .addButton) is now applied. + * + * ### Benefits: + * - **Reduces redundant CSS code. + * - **Improves maintainability by centralizing common styles. + * - **Ensures consistent styling across components. + * + * ### Global CSS Classes used: + * - `.editButton` + * - `.head` + * - `.btnsContainer` + * - `.input` + * - `.inputField` + * - `.searchButon` + * - `.btnsBlock` + * - `.dropdown` + * + * For more details on the reusable classes, refer to the global CSS file. */ const orgFundCampaign = (): JSX.Element => { const { t } = useTranslation('translation', { diff --git a/src/screens/OrganizationFunds/FundModal.tsx b/src/screens/OrganizationFunds/FundModal.tsx index ab02902c2f..e5c44cd2e0 100644 --- a/src/screens/OrganizationFunds/FundModal.tsx +++ b/src/screens/OrganizationFunds/FundModal.tsx @@ -48,6 +48,23 @@ export interface InterfaceFundModal { * - `handleChange(event: React.ChangeEvent)`: Updates the state based on user input. * * @returns The rendered modal dialog. + * + * ## CSS Strategy Explanation: + * + * To ensure consistency across the application and reduce duplication, common styles + * (such as button styles) have been moved to the global CSS file. Instead of using + * component-specific classes (e.g., `.greenregbtnOrganizationFundCampaign`, `.greenregbtnPledge`), a single reusable + * class (e.g., .addButton) is now applied. + * + * ### Benefits: + * - **Reduces redundant CSS code. + * - **Improves maintainability by centralizing common styles. + * - **Ensures consistent styling across components. + * + * ### Global CSS Classes used: + * - `.switch` + * + * For more details on the reusable classes, refer to the global CSS file. */ const FundModal: React.FC = ({ isOpen, diff --git a/src/screens/OrganizationFunds/OrganizationFunds.tsx b/src/screens/OrganizationFunds/OrganizationFunds.tsx index 3794da0338..d06e1bd355 100644 --- a/src/screens/OrganizationFunds/OrganizationFunds.tsx +++ b/src/screens/OrganizationFunds/OrganizationFunds.tsx @@ -75,6 +75,29 @@ const dataGridStyle = { * - `handleClick(fundId: string)`: Navigates to the campaign page for the specified fund. * * @returns The rendered component. + * + * ## CSS Strategy Explanation: + * + * To ensure consistency across the application and reduce duplication, common styles + * (such as button styles) have been moved to the global CSS file. Instead of using + * component-specific classes (e.g., `.greenregbtnOrganizationFundCampaign`, `.greenregbtnPledge`), a single reusable + * class (e.g., .addButton) is now applied. + * + * ### Benefits: + * - **Reduces redundant CSS code. + * - **Improves maintainability by centralizing common styles. + * - **Ensures consistent styling across components. + * + * ### Global CSS Classes used: + * - `.tableHeader` + * - `.subtleBlueGrey` + * - `.head` + * - `.btnsContainer` + * - `.input` + * - `.inputField` + * - `.searchButton` + * + * For more details on the reusable classes, refer to the global CSS file. */ const organizationFunds = (): JSX.Element => { const { t } = useTranslation('translation', { diff --git a/src/screens/OrganizationPeople/AddMember.tsx b/src/screens/OrganizationPeople/AddMember.tsx index a6f8fbe4b0..5cf76f9171 100644 --- a/src/screens/OrganizationPeople/AddMember.tsx +++ b/src/screens/OrganizationPeople/AddMember.tsx @@ -58,6 +58,24 @@ const StyledTableRow = styled(TableRow)(() => ({ * ORGANIZATIONS_MEMBER_CONNECTION_LIST, * USERS_CONNECTION_LIST, * ADD_MEMBER_MUTATION,SIGNUP_MUTATION. + * + * ## CSS Strategy Explanation: + * + * To ensure consistency across the application and reduce duplication, common styles + * (such as button styles) have been moved to the global CSS file. Instead of using + * component-specific classes (e.g., `.greenregbtnOrganizationFundCampaign`, `.greenregbtnPledge`), a single reusable + * class (e.g., .addButton) is now applied. + * + * ### Benefits: + * - **Reduces redundant CSS code. + * - **Improves maintainability by centralizing common styles. + * - **Ensures consistent styling across components. + * + * ### Global CSS Classes used: + * - `.removeButton` + * - `.addButton` + * + * For more details on the reusable classes, refer to the global CSS file. */ function AddMember(): JSX.Element { const { t: translateOrgPeople } = useTranslation('translation', { diff --git a/src/screens/OrganizationTags/OrganizationTags.tsx b/src/screens/OrganizationTags/OrganizationTags.tsx index 39a2a26032..0539466364 100644 --- a/src/screens/OrganizationTags/OrganizationTags.tsx +++ b/src/screens/OrganizationTags/OrganizationTags.tsx @@ -34,6 +34,25 @@ import SortingButton from 'subComponents/SortingButton'; * * This component does not accept any props and is responsible for displaying * the content associated with the corresponding route. + * + * ## CSS Strategy Explanation: + * + * To ensure consistency across the application and reduce duplication, common styles + * (such as button styles) have been moved to the global CSS file. Instead of using + * component-specific classes (e.g., `.greenregbtnOrganizationFundCampaign`, `.greenregbtnPledge`), a single reusable + * class (e.g., .addButton) is now applied. + * + * ### Benefits: + * - **Reduces redundant CSS code. + * - **Improves maintainability by centralizing common styles. + * - **Ensures consistent styling across components. + * + * ### Global CSS Classes used: + * - `.editButton` + * - `.inputField` + * - `.removeButton` + * + * For more details on the reusable classes, refer to the global CSS file. */ function OrganizationTags(): JSX.Element { diff --git a/src/screens/SubTags/SubTags.tsx b/src/screens/SubTags/SubTags.tsx index cb2f7ba053..c9ccc4d28c 100644 --- a/src/screens/SubTags/SubTags.tsx +++ b/src/screens/SubTags/SubTags.tsx @@ -35,6 +35,26 @@ import SortingButton from 'subComponents/SortingButton'; * * This component does not accept any props and is responsible for displaying * the content associated with the corresponding route. + * + * ## CSS Strategy Explanation: + * + * To ensure consistency across the application and reduce duplication, common styles + * (such as button styles) have been moved to the global CSS file. Instead of using + * component-specific classes (e.g., `.greenregbtnOrganizationFundCampaign`, `.greenregbtnPledge`), a single reusable + * class (e.g., .addButton) is now applied. + * + * ### Benefits: + * - **Reduces redundant CSS code. + * - **Improves maintainability by centralizing common styles. + * - **Ensures consistent styling across components. + * + * ### Global CSS Classes used: + * - `.editButton` + * - `.modalHeader` + * - `.inputField` + * - `.removeButton` + * + * For more details on the reusable classes, refer to the global CSS file. */ function SubTags(): JSX.Element { diff --git a/src/style/app.module.css b/src/style/app.module.css index fea01199a5..4b0b1f90b6 100644 --- a/src/style/app.module.css +++ b/src/style/app.module.css @@ -1,3 +1,42 @@ +/** + * CSS Methodology for Common Styles: + * + * This project aims to reduce CSS duplication by merging similar styles across components + * into reusable global classes. This ensures consistency and simplifies maintenance. + * + * Steps for contributors: + * 1. Identify duplicate or similar styles in different components (e.g., buttons, modals). + * 2. Create a global class with a clear, descriptive name (e.g., .addButton, .removeButton). + * 3. Use the new global class in all components requiring that style. + * + * Naming Convention: + * - Use lowercase, descriptive names for global classes (e.g., .addButton, .removeButton). + * - Keep names generic enough for reuse but clear in their purpose. + * + * Example: + * Instead of component-specific classes like: + * `.greenregbtnOrganizationFundCampaign`, `.greenregbtnPledge` (used in two different components for same functionality) + * Use: + * `.addButton` (a single reusable class in the global CSS file that is used for functionalities that add/create tasks) + * + * Global Classes: + * `.inputField` (for form input fields) + * `.searchButton` (for form input field search button) + * `.addButton` (for buttons that add/create task) + * `.removeButton` (for buttons that remove/delete task) + * `.modalHeader` (for header section of any modal) + * `.editButton` (for buttons inside table) + * `.switch` (for form toggles) + * `.regularBtn` (for a simple blue button) + * `.tableHeader` (for header section of any table component) + * `.subtleBlueGrey` (for blue Text) + * + * + * GLobal Varibles: + * --light-blue (for light blue contrast) + * --dark-blue (for dark blue contrast) + */ + :root { /* Neutral Colors */ --grey-light: #eaebef; @@ -106,6 +145,7 @@ --primary-border-solid: 1px solid var(--dropdown-border-color); --light-blue: #a8c7fa; --dark-blue: #1778f2; + --remove-button-color: #c8102e; --card-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* breakpoints */ @@ -498,6 +538,7 @@ .addButton { margin-bottom: 10px; + color: var(--brown-color); background-color: var(--light-blue); border-color: var(--grey-bg-color); } @@ -510,8 +551,9 @@ .removeButton { margin-bottom: 10px; background-color: var(--delete-button-bg); - color: var(--delete-button-color); + color: var(--remove-button-color); margin-right: 10px; + --bs-btn-border-color: #dc3545; } .removeButton:is(:hover, :active, :focus) { From 5efc63263afe8efaba4db599297942155d8320b0 Mon Sep 17 00:00:00 2001 From: Peter Harrison <16875803+palisadoes@users.noreply.github.com> Date: Thu, 16 Jan 2025 16:20:15 -0800 Subject: [PATCH 16/42] Update pull-request.yml --- .github/workflows/pull-request.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/pull-request.yml b/.github/workflows/pull-request.yml index dbccb35556..e56bc1fc2a 100644 --- a/.github/workflows/pull-request.yml +++ b/.github/workflows/pull-request.yml @@ -460,8 +460,8 @@ jobs: uses: actions/checkout@v4 - name: Validate CodeRabbit.ai Approval run: | - chmod +x $GITHUB_WORKSPACE/.github/workflows/scripts/validate-coderabbit.sh - $GITHUB_WORKSPACE/.github/workflows/scripts/validate-coderabbit.sh + chmod +x .github/workflows/scripts/validate-coderabbit.sh + .github/workflows/scripts/validate-coderabbit.sh env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} PR_NUMBER: ${{ github.event.pull_request.number }} From 81e0755cf96c7c2c4ba000ac0d070566e0ecce21 Mon Sep 17 00:00:00 2001 From: Peter Harrison <16875803+palisadoes@users.noreply.github.com> Date: Thu, 16 Jan 2025 16:25:16 -0800 Subject: [PATCH 17/42] Update pull-request.yml --- .github/workflows/pull-request.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pull-request.yml b/.github/workflows/pull-request.yml index e56bc1fc2a..d2acbecf04 100644 --- a/.github/workflows/pull-request.yml +++ b/.github/workflows/pull-request.yml @@ -303,7 +303,7 @@ jobs: uses: VeryGoodOpenSource/very_good_coverage@v3 with: path: "./coverage/lcov.info" - min_coverage: 0.0 + min_coverage: 89.0 # Graphql-Inspector: # if: ${{ github.actor != 'dependabot[bot]' }} From e1583bb0621a7acd4b36997f1519c26c75f7ec5e Mon Sep 17 00:00:00 2001 From: Peter Harrison <16875803+palisadoes@users.noreply.github.com> Date: Sat, 18 Jan 2025 05:14:56 -0800 Subject: [PATCH 18/42] Update pull-request.yml --- .github/workflows/pull-request.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pull-request.yml b/.github/workflows/pull-request.yml index d2acbecf04..5f133c3014 100644 --- a/.github/workflows/pull-request.yml +++ b/.github/workflows/pull-request.yml @@ -303,7 +303,7 @@ jobs: uses: VeryGoodOpenSource/very_good_coverage@v3 with: path: "./coverage/lcov.info" - min_coverage: 89.0 + min_coverage: 0 # Graphql-Inspector: # if: ${{ github.actor != 'dependabot[bot]' }} From 39d202f97745364e2127811d20785ede12f0775b Mon Sep 17 00:00:00 2001 From: Nivedita <141390434+Nivedita-Chhokar@users.noreply.github.com> Date: Sat, 18 Jan 2025 19:55:17 +0530 Subject: [PATCH 19/42] Fixed error message in PostCard.tsx (#3152) * Fixed error message on PostCard.tsx * Added translation of text and added a test case for my code * handle empty comment validation * updated error handling * improved error handling * Improve error handling and add test coverage for edge cases * Added missing providers --- public/locales/en/translation.json | 4 +- public/locales/fr/translation.json | 4 +- public/locales/hi/translation.json | 4 +- public/locales/sp/translation.json | 4 +- public/locales/zh/translation.json | 4 +- .../UserPortal/PostCard/PostCard.spec.tsx | 121 +++++++++++++++++- .../UserPortal/PostCard/PostCard.tsx | 22 +++- 7 files changed, 156 insertions(+), 7 deletions(-) diff --git a/public/locales/en/translation.json b/public/locales/en/translation.json index fc445a708e..5b0e868cfc 100644 --- a/public/locales/en/translation.json +++ b/public/locales/en/translation.json @@ -1092,7 +1092,9 @@ "comments": "Comments", "viewPost": "View Post", "editPost": "Edit Post", - "postedOn": "Posted on {{date}}" + "postedOn": "Posted on {{date}}", + "emptyCommentError": "Please enter a comment before submitting.", + "unexpectedError": "An unexpected error occurred. Please try again." }, "home": { "posts": "Posts", diff --git a/public/locales/fr/translation.json b/public/locales/fr/translation.json index 0ac5728872..cf9abead9a 100644 --- a/public/locales/fr/translation.json +++ b/public/locales/fr/translation.json @@ -1052,7 +1052,9 @@ "comments": "commentaires", "viewPost": "Voir le message", "editPost": "Modifier le message", - "postedOn": "Publié le {{date}}" + "postedOn": "Publié le {{date}}", + "emptyCommentError": "Veuillez saisir un commentaire avant de soumettre.", + "unexpectedError": "Une erreur inattendue s'est produite. Veuillez réessayer." }, "home": { "posts": "Des postes", diff --git a/public/locales/hi/translation.json b/public/locales/hi/translation.json index d791c0d9e8..9a18d82ead 100644 --- a/public/locales/hi/translation.json +++ b/public/locales/hi/translation.json @@ -1052,7 +1052,9 @@ "comments": "टिप्पणियाँ", "viewPost": "पोस्ट देखें", "editPost": "पोस्ट संपादित करें", - "postedOn": "{{date}} को पोस्ट किया गया" + "postedOn": "{{date}} को पोस्ट किया गया", + "emptyCommentError": "कृपया टिप्पणी करने से पहले एक टिप्पणी दर्ज करें।", + "unexpectedError": "एक अप्रत्याशित त्रुटि हुई। कृपया फिर से प्रयास करें।" }, "home": { "title": "पदों", diff --git a/public/locales/sp/translation.json b/public/locales/sp/translation.json index 814da7334b..503c20bb43 100644 --- a/public/locales/sp/translation.json +++ b/public/locales/sp/translation.json @@ -1053,7 +1053,9 @@ "comments": "Comentarios", "viewPost": "Ver publicación", "editPost": "Editar publicación", - "postedOn": "Publicado el {{date}}" + "postedOn": "Publicado el {{date}}", + "emptyCommentError": "Por favor ingrese un comentario antes de enviarlo.", + "unexpectedError": "Ocurrió un error inesperado. Por favor, inténtelo de nuevo." }, "home": { "posts": "Publicaciones", diff --git a/public/locales/zh/translation.json b/public/locales/zh/translation.json index 2a8a2753a8..bfe215b933 100644 --- a/public/locales/zh/translation.json +++ b/public/locales/zh/translation.json @@ -1052,7 +1052,9 @@ "comments": "评论", "viewPost": "查看帖子", "editPost": "编辑帖子", - "postedOn": "发布于 {{date}}" + "postedOn": "发布于 {{date}}", + "emptyCommentError": "请在提交前输入评论。", + "unexpectedError": "发生了意外错误。请重试。" }, "home": { "title": "帖子", diff --git a/src/components/UserPortal/PostCard/PostCard.spec.tsx b/src/components/UserPortal/PostCard/PostCard.spec.tsx index fe3fcf3dc1..824c033d37 100644 --- a/src/components/UserPortal/PostCard/PostCard.spec.tsx +++ b/src/components/UserPortal/PostCard/PostCard.spec.tsx @@ -1,6 +1,6 @@ import React, { act } from 'react'; import { MockedProvider } from '@apollo/react-testing'; -import { render, screen } from '@testing-library/react'; +import { render, screen, waitFor } from '@testing-library/react'; import { I18nextProvider } from 'react-i18next'; import { Provider } from 'react-redux'; import { BrowserRouter } from 'react-router-dom'; @@ -661,6 +661,125 @@ describe('Testing PostCard Component [User Portal]', () => { await wait(); }); + test('Comment validation displays an error toast when an empty comment is submitted', async () => { + console.log('Starting empty comment validation test'); + + const cardProps = { + id: '1', + userImage: 'image.png', + creator: { + firstName: 'test', + lastName: 'user', + email: 'test@user.com', + id: '1', + }, + postedAt: '', + image: 'testImage', + video: '', + text: 'This is post test text', + title: 'This is post test title', + likeCount: 1, + commentCount: 0, + comments: [], + likedBy: [ + { + firstName: 'test', + lastName: 'user', + id: '1', + }, + ], + fetchPosts: vi.fn(), + }; + + expect(toast.error).toBeDefined(); + + render( + + + + + + + + + , + ); + + userEvent.click(screen.getByTestId('viewPostBtn')); // Open the post view + userEvent.type(screen.getByTestId('commentInput'), ''); // Type an empty comment + userEvent.click(screen.getByTestId('createCommentBtn')); + + await waitFor(() => { + expect(toast.error).toHaveBeenCalledWith( + i18nForTest.t('postCard.emptyCommentError'), + ); + }); + }); + + test('Comment submission displays error toast when network error occurs', async () => { + const cardProps = { + id: '1', + userImage: 'image.png', + creator: { + firstName: 'test', + lastName: 'user', + email: 'test@user.com', + id: '1', + }, + postedAt: '', + image: 'testImage', + video: '', + text: 'This is post test text', + title: 'This is post test title', + likeCount: 1, + commentCount: 0, + comments: [], + likedBy: [ + { + firstName: 'test', + lastName: 'user', + id: '1', + }, + ], + fetchPosts: vi.fn(), + }; + + const errorLink = new StaticMockLink([ + { + request: { + query: CREATE_COMMENT_POST, + variables: { + postId: '1', + comment: 'test comment', + }, + }, + error: new Error('Network error'), + }, + ]); + + render( + + + + + + + + + , + ); + + userEvent.click(screen.getByTestId('viewPostBtn')); + userEvent.type(screen.getByTestId('commentInput'), 'test comment'); + userEvent.click(screen.getByTestId('createCommentBtn')); + + await waitFor(() => { + expect(toast.error).toHaveBeenCalledWith( + i18nForTest.t('postCard.unexpectedError'), + ); + }); + }); + test(`Comment should be liked when like button is clicked`, async () => { const cardProps = { id: '1', diff --git a/src/components/UserPortal/PostCard/PostCard.tsx b/src/components/UserPortal/PostCard/PostCard.tsx index 1ac693b85a..8242cef4b7 100644 --- a/src/components/UserPortal/PostCard/PostCard.tsx +++ b/src/components/UserPortal/PostCard/PostCard.tsx @@ -196,6 +196,12 @@ export default function postCard(props: InterfacePostCard): JSX.Element { // Create a new comment const createComment = async (): Promise => { try { + // Ensure the input is not empty + if (!commentInput.trim()) { + toast.error(t('emptyCommentError')); + return; + } + const { data: createEventData } = await create({ variables: { postId: props.id, @@ -225,7 +231,21 @@ export default function postCard(props: InterfacePostCard): JSX.Element { setComments([...comments, newComment]); } } catch (error: unknown) { - errorHandler(t, error); + // Handle errors + // Log error with context for debugging + console.error('Error creating comment:', error); + + // Show user-friendly translated message based on error type + if (error instanceof Error) { + const isValidationError = error.message.includes( + 'Comment validation failed', + ); + toast.error( + isValidationError ? t('emptyCommentError') : t('unexpectedError'), + ); + } else { + toast.error(t('unexpectedError')); + } } }; From b4ab36f5ce3ce6a3aa2272eb4207f91f6b01b041 Mon Sep 17 00:00:00 2001 From: Rukh-Khan Date: Sat, 18 Jan 2025 20:14:56 +0530 Subject: [PATCH 20/42] docs updatio2n --- .github/workflows/pull-request.yml | 31 +++++++++++++++++++++++++++- .github/workflows/push.yml | 33 ------------------------------ 2 files changed, 30 insertions(+), 34 deletions(-) diff --git a/.github/workflows/pull-request.yml b/.github/workflows/pull-request.yml index c0d4be7e59..9bf7e0f3e1 100644 --- a/.github/workflows/pull-request.yml +++ b/.github/workflows/pull-request.yml @@ -448,4 +448,33 @@ jobs: env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} PR_NUMBER: ${{ github.event.pull_request.number }} - GITHUB_REPOSITORY: ${{ github.repository }} \ No newline at end of file + GITHUB_REPOSITORY: ${{ github.repository }} + + Generate-Docs: + name: Generate Documentation + runs-on: ubuntu-latest + permissions: + contents: read + steps: + - name: Checkout repository + uses: actions/checkout@v4 + with: + ref: ${{ github.head_ref }} + + - name: Install dependencies + run: npm install + + - name: Generate documentation + run: typedoc --out docs/docs/auto-docs --plugin typedoc-plugin-markdown --theme markdown --tsconfig tsconfig.docs.json --excludePrivate --excludeProtected --excludeExternals --hideGenerator --categorizeByGroup true --entryPointStrategy expand --entryPoints \"src\" --exclude \"src/vite-env.d.ts\" --exclude \"**/*.spec.{ts,tsx}\" --exclude \"**/*.test.{ts,tsx}\" --exclude \"**/__tests__/**\" --exclude \"**/__mocks__/**\" --skipErrorChecking --logLevel Warn" + + - name: Clean up documentation + run: | + find docs/docs/auto-docs -name 'README.md' -delete + + - name: Commit and push changes + run: | + git config user.name "github-actions[bot]" + git config user.email "41898282+github-actions[bot]@users.noreply.github.com" + git add . + git commit -m "Auto-generate documentation" + git push origin ${{ github.head_ref }} \ No newline at end of file diff --git a/.github/workflows/push.yml b/.github/workflows/push.yml index 029cca7c07..500078c1a8 100644 --- a/.github/workflows/push.yml +++ b/.github/workflows/push.yml @@ -60,36 +60,3 @@ jobs: gcov_ignore: 'docs/' fail_ci_if_error: false name: '${{env.CODECOV_UNIQUE_NAME}}' - - Generate-Docs: - name: Generate Documentation - runs-on: ubuntu-latest - permissions: - contents: write - steps: - - name: Checkout repository - uses: actions/checkout@v4 - with: - ref: ${{ github.head_ref || github.ref_name }} - - - name: Install dependencies - run: npm install - - - name: Generate documentation - run: typedoc --out docs/docs/auto-docs --plugin typedoc-plugin-markdown --theme markdown --tsconfig tsconfig.docs.json --excludePrivate --excludeProtected --excludeExternals --hideGenerator --categorizeByGroup true --entryPointStrategy expand --entryPoints \"src\" --exclude \"src/vite-env.d.ts\" --exclude \"**/*.spec.{ts,tsx}\" --exclude \"**/*.test.{ts,tsx}\" --exclude \"**/__tests__/**\" --exclude \"**/__mocks__/**\" --skipErrorChecking --logLevel Warn" - - - name: Clean up documentation - run: | - find docs/docs/auto-docs -name 'README.md' -delete - find docs/docs/auto-docs -name '_media' -exec rm -r {} + - find docs/docs/auto-docs -type d -empty -delete - - - name: Commit and push changes - run: | - git config user.name "github-actions[bot]" - git config user.email "41898282+github-actions[bot]@users.noreply.github.com" - git add . - git commit -m "Auto-generate documentation" - git push - env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} From 4f364d8eaeb8bcc942b9cab5f9f04686cdf9d37b Mon Sep 17 00:00:00 2001 From: Rukh-Khan Date: Sat, 18 Jan 2025 20:29:03 +0530 Subject: [PATCH 21/42] docs updatio2n --- .github/workflows/pull-request.yml | 60 +++++++++++++++--------------- 1 file changed, 30 insertions(+), 30 deletions(-) diff --git a/.github/workflows/pull-request.yml b/.github/workflows/pull-request.yml index e58ee4234d..cfba844aca 100644 --- a/.github/workflows/pull-request.yml +++ b/.github/workflows/pull-request.yml @@ -449,6 +449,35 @@ jobs: echo "Error: Pull request target branch must be 'develop-postgres'. Please refer PR_GUIDELINES.md" echo "Error: Close this PR and try again." exit 1 + + Generate-Docs: + name: Generate Documentation + runs-on: ubuntu-latest + permissions: + contents: read + steps: + - name: Checkout repository + uses: actions/checkout@v4 + with: + ref: ${{ github.head_ref }} + + - name: Install dependencies + run: npm install + + - name: Generate documentation + run: typedoc --out docs/docs/auto-docs --plugin typedoc-plugin-markdown --theme markdown --tsconfig tsconfig.docs.json --excludePrivate --excludeProtected --excludeExternals --hideGenerator --categorizeByGroup true --entryPointStrategy expand --entryPoints \"src\" --exclude \"src/vite-env.d.ts\" --exclude \"**/*.spec.{ts,tsx}\" --exclude \"**/*.test.{ts,tsx}\" --exclude \"**/__tests__/**\" --exclude \"**/__mocks__/**\" --skipErrorChecking --logLevel Warn" + + - name: Clean up documentation + run: | + find docs/docs/auto-docs -name 'README.md' -delete + + - name: Commit and push changes + run: | + git config user.name "github-actions[bot]" + git config user.email "41898282+github-actions[bot]@users.noreply.github.com" + git add . + git commit -m "Auto-generate documentation" + git push origin ${{ github.head_ref }} Validate-Coderabbit: name: Validate CodeRabbit Approval @@ -515,33 +544,4 @@ jobs: - name: Run docstring compliance check run: | source venv/bin/activate - python .github/workflows/scripts/check_docstrings.py --directories .github - - Generate-Docs: - name: Generate Documentation - runs-on: ubuntu-latest - permissions: - contents: read - steps: - - name: Checkout repository - uses: actions/checkout@v4 - with: - ref: ${{ github.head_ref }} - - - name: Install dependencies - run: npm install - - - name: Generate documentation - run: typedoc --out docs/docs/auto-docs --plugin typedoc-plugin-markdown --theme markdown --tsconfig tsconfig.docs.json --excludePrivate --excludeProtected --excludeExternals --hideGenerator --categorizeByGroup true --entryPointStrategy expand --entryPoints \"src\" --exclude \"src/vite-env.d.ts\" --exclude \"**/*.spec.{ts,tsx}\" --exclude \"**/*.test.{ts,tsx}\" --exclude \"**/__tests__/**\" --exclude \"**/__mocks__/**\" --skipErrorChecking --logLevel Warn" - - - name: Clean up documentation - run: | - find docs/docs/auto-docs -name 'README.md' -delete - - - name: Commit and push changes - run: | - git config user.name "github-actions[bot]" - git config user.email "41898282+github-actions[bot]@users.noreply.github.com" - git add . - git commit -m "Auto-generate documentation" - git push origin ${{ github.head_ref }} + python .github/workflows/scripts/check_docstrings.py --directories .github \ No newline at end of file From 6ab4bda89c2b0916d06bb1814ec91bbb67b90980 Mon Sep 17 00:00:00 2001 From: Rukh-Khan Date: Sat, 18 Jan 2025 20:34:27 +0530 Subject: [PATCH 22/42] docs updatio2n --- .github/workflows/pull-request.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.github/workflows/pull-request.yml b/.github/workflows/pull-request.yml index cfba844aca..7dc670b811 100644 --- a/.github/workflows/pull-request.yml +++ b/.github/workflows/pull-request.yml @@ -204,7 +204,6 @@ jobs: run: | python .github/workflows/scripts/eslint_disable_check.py --files ${{ steps.changed-files.outputs.all_changed_files }} - Check-Code-Coverage-Disable: name: Check for code coverage disable runs-on: ubuntu-latest @@ -494,7 +493,7 @@ jobs: env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} PR_NUMBER: ${{ github.event.pull_request.number }} - GITHUB_REPOSITORY: ${{ github.repository } + GITHUB_REPOSITORY: ${{ github.repository }} Python-Compliance: name: Check Python Code Style From 477ea1182c9c345320e9ed89618790a5a376402a Mon Sep 17 00:00:00 2001 From: Srijan Tripathi Date: Sat, 18 Jan 2025 20:45:19 +0530 Subject: [PATCH 23/42] Improved Code Coverage of UserListCard.tsx (#3230) * Improved Code Coverage of UserListCard.tsx * Updated Code Rabbit suggestions and fixed the failing test case * Fixed Few CodeRabbit Suggestions --- .../UserListCard/UserListCard.spec.tsx | 148 +++++++++++++++--- src/components/UserListCard/UserListCard.tsx | 2 - 2 files changed, 130 insertions(+), 20 deletions(-) diff --git a/src/components/UserListCard/UserListCard.spec.tsx b/src/components/UserListCard/UserListCard.spec.tsx index 6a3b2d42d8..e278a4bcc3 100644 --- a/src/components/UserListCard/UserListCard.spec.tsx +++ b/src/components/UserListCard/UserListCard.spec.tsx @@ -1,21 +1,46 @@ import React from 'react'; -import { render, screen, act } from '@testing-library/react'; +import { render, screen, waitFor } from '@testing-library/react'; import { MockedProvider } from '@apollo/react-testing'; import userEvent from '@testing-library/user-event'; import { I18nextProvider } from 'react-i18next'; +import { toast } from 'react-toastify'; import UserListCard from './UserListCard'; import { ADD_ADMIN_MUTATION } from 'GraphQl/Mutations/mutations'; import i18nForTest from 'utils/i18nForTest'; import { BrowserRouter } from 'react-router-dom'; -import { StaticMockLink } from 'utils/StaticMockLink'; -import { vi, describe, it, beforeEach } from 'vitest'; +import { vi, describe, beforeEach, afterEach } from 'vitest'; + +// Test constants +const TEST_USER_ID = '456'; +const TEST_ORG_ID = '554'; +const TEST_SUCCESS_MESSAGE = 'User is added as admin.'; +const TEST_ERROR_MESSAGE = 'An error occurred'; +const DEFAULT_TIMEOUT = 2000; + +// Mock modules +vi.mock('react-toastify', () => ({ + toast: { + success: vi.fn(), + error: vi.fn(), + }, +})); + +vi.mock('react-router-dom', async () => { + const actual = await vi.importActual('react-router-dom'); + return { + ...actual, + useParams: () => ({ + orgId: TEST_ORG_ID, + }), + }; +}); const MOCKS = [ { request: { query: ADD_ADMIN_MUTATION, - variables: { userid: '784', orgid: '554' }, + variables: { userid: TEST_USER_ID, orgid: TEST_ORG_ID }, }, result: { data: { @@ -28,24 +53,41 @@ const MOCKS = [ }, }, ]; -const link = new StaticMockLink(MOCKS, true); -async function wait(ms = 100): Promise { - await act(() => new Promise((resolve) => setTimeout(resolve, ms))); -} +const ERROR_MOCKS = [ + { + request: { + query: ADD_ADMIN_MUTATION, + variables: { userid: TEST_USER_ID, orgid: TEST_ORG_ID }, + }, + error: new Error(TEST_ERROR_MESSAGE), + }, +]; describe('Testing User List Card', () => { + const mockReload = vi.fn(); + beforeEach(() => { vi.spyOn(global, 'alert').mockImplementation(() => {}); + Object.defineProperty(window, 'location', { + value: { + reload: mockReload, + }, + writable: true, + }); + }); + + afterEach(() => { + vi.clearAllMocks(); }); - it('Should render props and text elements test for the page component', async () => { + test('Should show success toast and reload page after successful mutation', async () => { const props = { - id: '456', + id: TEST_USER_ID, }; render( - + @@ -54,17 +96,31 @@ describe('Testing User List Card', () => { , ); - await wait(); - userEvent.click(screen.getByText(/Add Admin/i)); + const button = screen.getByText(/Add Admin/i); + await userEvent.click(button); + + await waitFor( + () => { + expect(toast.success).toHaveBeenCalledWith(TEST_SUCCESS_MESSAGE); + }, + { timeout: DEFAULT_TIMEOUT }, + ); + + await waitFor( + () => { + expect(mockReload).toHaveBeenCalled(); + }, + { timeout: DEFAULT_TIMEOUT }, + ); }); - it('Should render text elements when props value is not passed', async () => { + test('Should show error toast when mutation fails', async () => { const props = { - id: '456', + id: TEST_USER_ID, }; render( - + @@ -73,7 +129,63 @@ describe('Testing User List Card', () => { , ); - await wait(); - userEvent.click(screen.getByText(/Add Admin/i)); + const button = screen.getByText(/Add Admin/i); + await userEvent.click(button); + + await waitFor( + () => { + expect(toast.error).toHaveBeenCalled(); + }, + { timeout: DEFAULT_TIMEOUT }, + ); + }); + + test('Should render button with correct styling', () => { + const props = { + id: TEST_USER_ID, + key: 1, + }; + + render( + + + + + + + , + ); + + const button = screen.getByRole('button', { name: /Add Admin/i }); + expect(button).toBeInTheDocument(); + expect(button.className).toContain('memberfontcreatedbtn'); + }); + + test('Should handle translations and URL parameters correctly', async () => { + const props = { + id: TEST_USER_ID, + }; + + render( + + + + + + + , + ); + + const button = screen.getByText(/Add Admin/i); + expect(button).toBeInTheDocument(); + + await userEvent.click(button); + + await waitFor( + () => { + expect(toast.success).toHaveBeenCalled(); + }, + { timeout: DEFAULT_TIMEOUT }, + ); }); }); diff --git a/src/components/UserListCard/UserListCard.tsx b/src/components/UserListCard/UserListCard.tsx index 157c18f404..fee79644c2 100644 --- a/src/components/UserListCard/UserListCard.tsx +++ b/src/components/UserListCard/UserListCard.tsx @@ -45,7 +45,6 @@ function userListCard(props: InterfaceUserListCardProps): JSX.Element { }, }); - /* istanbul ignore next */ if (data) { toast.success(t('addedAsAdmin') as string); setTimeout(() => { @@ -53,7 +52,6 @@ function userListCard(props: InterfaceUserListCardProps): JSX.Element { }, 2000); } } catch (error: unknown) { - /* istanbul ignore next */ errorHandler(t, error); } }; From df11029303be2f15db3e4b1aeaa4f6f6aa5d5d34 Mon Sep 17 00:00:00 2001 From: Abhishek Raj <113784630+abbi4code@users.noreply.github.com> Date: Sat, 18 Jan 2025 21:05:14 +0530 Subject: [PATCH 24/42] chore: Fixed Node Warning and Deprecation Messages (#3262) * chore: fixed node warning and deprecation msgs * trigger ci: rerun pipeline --- package-lock.json | 55 ++++++++++++++++++----------------------------- package.json | 10 +++++++-- 2 files changed, 29 insertions(+), 36 deletions(-) diff --git a/package-lock.json b/package-lock.json index 3b7c816f00..2738624102 100644 --- a/package-lock.json +++ b/package-lock.json @@ -92,8 +92,6 @@ "@types/react": "^18.3.12", "@types/react-beautiful-dnd": "^13.1.8", "@types/react-bootstrap": "^0.32.37", - "@types/react-chartjs-2": "^2.5.7", - "@types/react-datepicker": "^7.0.0", "@types/react-dom": "^18.3.1", "@types/react-google-recaptcha": "^2.1.9", "@types/react-router-dom": "^5.1.8", @@ -6305,27 +6303,6 @@ "@types/react": "*" } }, - "node_modules/@types/react-chartjs-2": { - "version": "2.5.7", - "resolved": "https://registry.npmjs.org/@types/react-chartjs-2/-/react-chartjs-2-2.5.7.tgz", - "integrity": "sha512-waqYqiNULIVUqaKO7MGUpFmWrVtH7gVPOzqwV4y4zgUyu/JiDwC005PpveO442HKnby9kLgp3t1SB2sld+ACLw==", - "deprecated": "This is a stub types definition for react-chartjs-2 (https://github.com/gor181/react-chartjs-2). react-chartjs-2 provides its own type definitions, so you don't need @types/react-chartjs-2 installed!", - "dev": true, - "license": "MIT", - "dependencies": { - "react-chartjs-2": "*" - } - }, - "node_modules/@types/react-datepicker": { - "version": "7.0.0", - "resolved": "https://registry.npmjs.org/@types/react-datepicker/-/react-datepicker-7.0.0.tgz", - "integrity": "sha512-4tWwOUq589tozyQPBVEqGNng5DaZkomx5IVNuur868yYdgjH6RaL373/HKiVt1IDoNNXYiTGspm1F7kjrarM8Q==", - "deprecated": "This is a stub types definition. react-datepicker provides its own type definitions, so you do not need this installed.", - "dev": true, - "dependencies": { - "react-datepicker": "*" - } - }, "node_modules/@types/react-dom": { "version": "18.3.1", "resolved": "https://registry.npmjs.org/@types/react-dom/-/react-dom-18.3.1.tgz", @@ -9031,13 +9008,16 @@ } }, "node_modules/core-js": { - "version": "2.6.12", - "resolved": "https://registry.npmjs.org/core-js/-/core-js-2.6.12.tgz", - "integrity": "sha512-Kb2wC0fvsWfQrgk8HU5lW6U/Lcs8+9aaYcy4ZFc6DDlo4nZ7n70dEgE5rtR0oG6ufKDUnrwfWL1mXR5ljDatrQ==", - "deprecated": "core-js@<3.23.3 is no longer maintained and not recommended for usage due to the number of issues. Because of the V8 engine whims, feature detection in old core-js versions could cause a slowdown up to 100x even if nothing is polyfilled. Some versions have web compatibility issues. Please, upgrade your dependencies to the actual version of core-js.", + "version": "3.40.0", + "resolved": "https://registry.npmjs.org/core-js/-/core-js-3.40.0.tgz", + "integrity": "sha512-7vsMc/Lty6AGnn7uFpYT56QesI5D2Y/UkgKounk87OP9Z2H9Z8kj6jzcSGAxFmUtDOS0ntK6lbQz+Nsa0Jj6mQ==", "hasInstallScript": true, "license": "MIT", - "peer": true + "peer": true, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/core-js" + } }, "node_modules/core-js-compat": { "version": "3.38.1", @@ -11785,13 +11765,14 @@ } }, "node_modules/gulp-header": { - "version": "1.8.12", - "resolved": "https://registry.npmjs.org/gulp-header/-/gulp-header-1.8.12.tgz", - "integrity": "sha512-lh9HLdb53sC7XIZOYzTXM4lFuXElv3EVkSDhsd7DoJBj7hm+Ni7D3qYbb+Rr8DuM8nRanBvkVO9d7askreXGnQ==", - "deprecated": "Removed event-stream from gulp-header", + "version": "2.0.9", + "resolved": "https://registry.npmjs.org/gulp-header/-/gulp-header-2.0.9.tgz", + "integrity": "sha512-LMGiBx+qH8giwrOuuZXSGvswcIUh0OiioNkUpLhNyvaC6/Ga8X6cfAeme2L5PqsbXMhL8o8b/OmVqIQdxprhcQ==", + "license": "MIT", "dependencies": { - "concat-with-sourcemaps": "*", - "lodash.template": "^4.4.0", + "concat-with-sourcemaps": "^1.1.0", + "lodash.template": "^4.5.0", + "map-stream": "0.0.7", "through2": "^2.0.0" } }, @@ -15491,6 +15472,12 @@ "tmpl": "1.0.5" } }, + "node_modules/map-stream": { + "version": "0.0.7", + "resolved": "https://registry.npmjs.org/map-stream/-/map-stream-0.0.7.tgz", + "integrity": "sha512-C0X0KQmGm3N2ftbTGBhSyuydQ+vV1LC3f3zPvT3RXHXNZrvfPZcoXp/N5DOa8vedX/rTMm2CjTtivFg2STJMRQ==", + "license": "MIT" + }, "node_modules/markdown-it": { "version": "14.1.0", "resolved": "https://registry.npmjs.org/markdown-it/-/markdown-it-14.1.0.tgz", diff --git a/package.json b/package.json index 7fd2f550eb..6d8e9bce21 100644 --- a/package.json +++ b/package.json @@ -129,8 +129,6 @@ "@types/react": "^18.3.12", "@types/react-beautiful-dnd": "^13.1.8", "@types/react-bootstrap": "^0.32.37", - "@types/react-chartjs-2": "^2.5.7", - "@types/react-datepicker": "^7.0.0", "@types/react-dom": "^18.3.1", "@types/react-google-recaptcha": "^2.1.9", "@types/react-router-dom": "^5.1.8", @@ -170,6 +168,14 @@ "engines": { "node": ">=20.x" }, + "overrides": { + "core-js": "^3.40.0", + "rc-color-picker": { + "react": "^18.3.1", + "react-dom": "^18.3.1" + }, + "gulp-header": "^2.0.9" + }, "lint-staged": { "**/*.{ts, tsx, json, scss, css}": [ "prettier --write" From 25a07a4a75ef39c2c78fc33d9b63d970b228fd2e Mon Sep 17 00:00:00 2001 From: Syed Ali Ul Hasan Date: Sun, 19 Jan 2025 02:14:37 +0530 Subject: [PATCH 25/42] Improved Code Coverage in src/screens/Users/Users.tsx (#3298) * added test cases in src/screens/Users/Users.spec.tsx * fixed linting issues * fixed linting issues * fixed linting issues * added test case to improve coverage in the Organization.mocks.ts file * improved coverage in Users.tsx --- src/screens/Users/Organization.mocks.ts | 370 +++++++ .../Users/{UsersMocks.ts => User.mocks.ts} | 35 +- src/screens/Users/Users.spec.tsx | 978 +++--------------- src/screens/Users/Users.tsx | 9 +- src/screens/Users/UsersMocks.mocks.ts | 244 +++++ 5 files changed, 767 insertions(+), 869 deletions(-) create mode 100644 src/screens/Users/Organization.mocks.ts rename src/screens/Users/{UsersMocks.ts => User.mocks.ts} (96%) create mode 100644 src/screens/Users/UsersMocks.mocks.ts diff --git a/src/screens/Users/Organization.mocks.ts b/src/screens/Users/Organization.mocks.ts new file mode 100644 index 0000000000..d32dc9fd7b --- /dev/null +++ b/src/screens/Users/Organization.mocks.ts @@ -0,0 +1,370 @@ +interface InterfaceAddress { + city: string; + countryCode: string; + dependentLocality: string; + line1: string; + line2: string; + postalCode: string; + sortingCode: string; + state: string; +} + +interface InterfaceCreator { + _id: string; + firstName: string; + lastName: string; + image: string | null; + email: string; + createdAt: string; +} + +interface InterfaceOrganization { + _id: string; + name: string; + image: string | null; + address: InterfaceAddress; + createdAt: string; + creator: InterfaceCreator; +} + +interface InterfaceUser { + _id: string; + firstName: string; + lastName: string; + image: string | null; + email: string; + createdAt: string; + registeredEvents: []; + membershipRequests: []; + organizationsBlockedBy: InterfaceOrganization[]; + joinedOrganizations: InterfaceOrganization[]; +} + +interface InterfaceAppUserProfile { + _id: string; + adminFor: { _id: string }[]; + isSuperAdmin: boolean; + createdOrganizations: []; + createdEvents: []; + eventAdmin: []; +} + +interface InterfaceMockUser { + user: InterfaceUser; + appUserProfile: InterfaceAppUserProfile; +} + +export const createAddress = { + city: 'Kingston', + countryCode: 'JM', + dependentLocality: 'Sample Dependent Locality', + line1: '123 Jamaica Street', + line2: 'Apartment 456', + postalCode: 'JM12345', + sortingCode: 'ABC-123', + state: 'Kingston Parish', +}; + +export const createCreator = { + _id: '123', + firstName: 'Jack', + lastName: 'Smith', + image: null, + email: 'jack@example.com', + createdAt: '19/06/2022', +}; + +export const MOCK_USERS = [ + { + user: { + _id: 'user1', + firstName: 'John', + lastName: 'Doe', + image: null, + email: 'john@example.com', + createdAt: '2023-04-13T04:53:17.742+00:00', + registeredEvents: [], + membershipRequests: [], + organizationsBlockedBy: [ + { + _id: 'xyz', + name: 'ABC', + image: null, + address: createAddress, + createdAt: '20/06/2022', + creator: { + _id: '123', + firstName: 'John', + lastName: 'Doe', + image: null, + email: 'john@example.com', + createdAt: '20/06/2022', + }, + }, + ], + joinedOrganizations: [ + { + _id: 'abc', + name: 'Joined Organization 1', + image: null, + address: createAddress, + createdAt: '20/06/2022', + creator: { + _id: '123', + firstName: 'John', + lastName: 'Doe', + image: null, + email: 'john@example.com', + createdAt: '20/06/2022', + }, + }, + ], + }, + appUserProfile: { + _id: 'user1', + adminFor: [ + { + _id: '123', + }, + ], + isSuperAdmin: true, + createdOrganizations: [], + createdEvents: [], + eventAdmin: [], + }, + }, + { + user: { + _id: 'user2', + firstName: 'Jane', + lastName: 'Doe', + image: null, + email: 'jane@example.com', + createdAt: '2023-04-17T04:53:17.742+00:00', + registeredEvents: [], + membershipRequests: [], + organizationsBlockedBy: [ + { + _id: '456', + name: 'ABC', + image: null, + address: createAddress, + createdAt: '21/06/2022', + creator: { + _id: '123', + firstName: 'John', + lastName: 'Doe', + image: null, + email: 'john@example.com', + createdAt: '21/06/2022', + }, + }, + ], + joinedOrganizations: [ + { + _id: '123', + name: 'Palisadoes', + image: null, + address: createAddress, + createdAt: '21/06/2022', + creator: { + _id: '123', + firstName: 'John', + lastName: 'Doe', + image: null, + email: 'john@example.com', + createdAt: '21/06/2022', + }, + }, + ], + }, + appUserProfile: { + _id: 'user2', + adminFor: [ + { + _id: '123', + }, + ], + isSuperAdmin: false, + createdOrganizations: [], + createdEvents: [], + eventAdmin: [], + }, + }, + { + user: { + _id: 'user3', + firstName: 'Jack', + lastName: 'Smith', + image: null, + email: 'jack@example.com', + createdAt: '2023-04-09T04:53:17.742+00:00', + registeredEvents: [], + membershipRequests: [], + organizationsBlockedBy: [ + { + _id: 'xyz', + name: 'ABC', + image: null, + address: createAddress, + createdAt: '19/06/2022', + creator: createCreator, + }, + ], + joinedOrganizations: [ + { + _id: 'abc', + name: 'Joined Organization 1', + image: null, + address: createAddress, + createdAt: '19/06/2022', + creator: createCreator, + }, + ], + }, + appUserProfile: { + _id: 'user3', + adminFor: [], + isSuperAdmin: false, + createdOrganizations: [], + createdEvents: [], + eventAdmin: [], + }, + }, +]; + +export const generateMockUser = ( + id: string, + firstName: string, + lastName: string, + email: string, + createdAt: string, + isSuperAdmin = false, +): InterfaceMockUser => ({ + user: { + _id: id, + firstName, + lastName, + image: null, + email, + createdAt, + registeredEvents: [], + membershipRequests: [], + organizationsBlockedBy: [ + { + _id: 'xyz', + name: 'ABC', + image: null, + address: createAddress, + createdAt: '19/06/2022', + creator: createCreator, + }, + ], + joinedOrganizations: [ + { + _id: 'abc', + name: 'Joined Organization 1', + image: null, + address: createAddress, + createdAt: '19/06/2022', + creator: createCreator, + }, + ], + }, + appUserProfile: { + _id: id, + adminFor: isSuperAdmin ? [{ _id: '123' }] : [], + isSuperAdmin, + createdOrganizations: [], + createdEvents: [], + eventAdmin: [], + }, +}); + +export const MOCK_USERS2 = [ + ...MOCK_USERS, + generateMockUser( + 'user4', + 'Emma', + 'Johnson', + 'emma@example.com', + '2023-04-22T04:53:17.742+00:00', + ), + generateMockUser( + 'user5', + 'Liam', + 'Smith', + 'liam@example.com', + '2023-04-23T04:53:17.742+00:00', + ), + generateMockUser( + 'user6', + 'Olivia', + 'Brown', + 'olivia@example.com', + '2023-04-24T04:53:17.742+00:00', + ), + generateMockUser( + 'user7', + 'Noah', + 'Williams', + 'noah@example.com', + '2023-04-25T04:53:17.742+00:00', + ), + generateMockUser( + 'user8', + 'Ava', + 'Jones', + 'ava@example.com', + '2023-04-26T04:53:17.742+00:00', + ), + generateMockUser( + 'user9', + 'Ethan', + 'Garcia', + 'ethan@example.com', + '2023-04-27T04:53:17.742+00:00', + ), + generateMockUser( + 'user10', + 'Sophia', + 'Martinez', + 'sophia@example.com', + '2023-04-28T04:53:17.742+00:00', + ), + generateMockUser( + 'user11', + 'Mason', + 'Davis', + 'mason@example.com', + '2023-04-29T04:53:17.742+00:00', + ), + generateMockUser( + 'user12', + 'Isabella', + 'Rodriguez', + 'isabella@example.com', + '2023-04-30T04:53:17.742+00:00', + ), + generateMockUser( + 'user13', + 'Logan', + 'Wilson', + 'logan@example.com', + '2023-04-08T04:53:17.742+00:00', + ), + generateMockUser( + 'user14', + 'Mia', + 'Anderson', + 'mia@example.com', + '2023-04-07T04:53:17.742+00:00', + ), + generateMockUser( + 'user15', + 'Lucas', + 'Thomas', + 'lucas@example.com', + '2023-04-05T04:53:17.742+00:00', + ), +]; diff --git a/src/screens/Users/UsersMocks.ts b/src/screens/Users/User.mocks.ts similarity index 96% rename from src/screens/Users/UsersMocks.ts rename to src/screens/Users/User.mocks.ts index f7908cf675..c1a9035550 100644 --- a/src/screens/Users/UsersMocks.ts +++ b/src/screens/Users/User.mocks.ts @@ -41,7 +41,7 @@ export const MOCKS = [ lastName: 'Doe', image: null, email: 'john@example.com', - createdAt: '20/06/2022', + createdAt: '2022-06-20T00:00:00.000Z', registeredEvents: [], membershipRequests: [], organizationsBlockedBy: [ @@ -116,7 +116,7 @@ export const MOCKS = [ firstName: 'Jane', lastName: 'Doe', image: null, - email: 'john@example.com', + email: 'jane@example.com', createdAt: '20/06/2022', registeredEvents: [], membershipRequests: [], @@ -351,7 +351,7 @@ export const MOCKS2 = [ firstName: 'Jane', lastName: 'Doe', image: null, - email: 'john@example.com', + email: 'jane@example.com', createdAt: '20/06/2022', registeredEvents: [], membershipRequests: [], @@ -473,32 +473,3 @@ export const MOCKS2 = [ }, }, ]; - -export const EMPTY_MOCKS = [ - { - request: { - query: USER_LIST, - variables: { - first: 12, - skip: 0, - firstName_contains: '', - lastName_contains: '', - }, - }, - result: { - data: { - users: [], - }, - }, - }, - { - request: { - query: ORGANIZATION_CONNECTION_LIST, - }, - result: { - data: { - organizationsConnection: [], - }, - }, - }, -]; diff --git a/src/screens/Users/Users.spec.tsx b/src/screens/Users/Users.spec.tsx index 1457bec5b8..6d2349de97 100644 --- a/src/screens/Users/Users.spec.tsx +++ b/src/screens/Users/Users.spec.tsx @@ -10,842 +10,22 @@ import { store } from 'state/store'; import { StaticMockLink } from 'utils/StaticMockLink'; import i18nForTest from 'utils/i18nForTest'; import Users from './Users'; -import { EMPTY_MOCKS, MOCKS, MOCKS2 } from './UsersMocks'; +import { + EMPTY_MOCKS, + MOCKS_NEW, + MOCKS_NEW2, + MOCKS_NEW3, + MOCKS_NEW_2, +} from './UsersMocks.mocks'; +import { generateMockUser } from './Organization.mocks'; +import { MOCKS, MOCKS2 } from './User.mocks'; import useLocalStorage from 'utils/useLocalstorage'; import { describe, expect, it, beforeEach, afterEach, vi } from 'vitest'; -import { - USER_LIST, - ORGANIZATION_CONNECTION_LIST, -} from 'GraphQl/Queries/Queries'; +import { USER_LIST } from 'GraphQl/Queries/Queries'; const { setItem, removeItem } = useLocalStorage(); -const createAddress = { - city: 'Kingston', - countryCode: 'JM', - dependentLocality: 'Sample Dependent Locality', - line1: '123 Jamaica Street', - line2: 'Apartment 456', - postalCode: 'JM12345', - sortingCode: 'ABC-123', - state: 'Kingston Parish', -}; - -const createCreator = { - _id: '123', - firstName: 'Jack', - lastName: 'Smith', - image: null, - email: 'jack@example.com', - createdAt: '19/06/2022', -}; - -const MOCK_USERS = [ - { - user: { - _id: 'user1', - firstName: 'John', - lastName: 'Doe', - image: null, - email: 'john@example.com', - createdAt: '2023-04-13T04:53:17.742+00:00', - registeredEvents: [], - membershipRequests: [], - organizationsBlockedBy: [ - { - _id: 'xyz', - name: 'ABC', - image: null, - address: createAddress, - createdAt: '20/06/2022', - creator: { - _id: '123', - firstName: 'John', - lastName: 'Doe', - image: null, - email: 'john@example.com', - createdAt: '20/06/2022', - }, - }, - ], - joinedOrganizations: [ - { - _id: 'abc', - name: 'Joined Organization 1', - image: null, - address: createAddress, - createdAt: '20/06/2022', - creator: { - _id: '123', - firstName: 'John', - lastName: 'Doe', - image: null, - email: 'john@example.com', - createdAt: '20/06/2022', - }, - }, - ], - }, - appUserProfile: { - _id: 'user1', - adminFor: [ - { - _id: '123', - }, - ], - isSuperAdmin: true, - createdOrganizations: [], - createdEvents: [], - eventAdmin: [], - }, - }, - { - user: { - _id: 'user2', - firstName: 'Jane', - lastName: 'Doe', - image: null, - email: 'john@example.com', - createdAt: '2023-04-17T04:53:17.742+00:00', - registeredEvents: [], - membershipRequests: [], - organizationsBlockedBy: [ - { - _id: '456', - name: 'ABC', - image: null, - address: createAddress, - createdAt: '21/06/2022', - creator: { - _id: '123', - firstName: 'John', - lastName: 'Doe', - image: null, - email: 'john@example.com', - createdAt: '21/06/2022', - }, - }, - ], - joinedOrganizations: [ - { - _id: '123', - name: 'Palisadoes', - image: null, - address: createAddress, - createdAt: '21/06/2022', - creator: { - _id: '123', - firstName: 'John', - lastName: 'Doe', - image: null, - email: 'john@example.com', - createdAt: '21/06/2022', - }, - }, - ], - }, - appUserProfile: { - _id: 'user2', - adminFor: [ - { - _id: '123', - }, - ], - isSuperAdmin: false, - createdOrganizations: [], - createdEvents: [], - eventAdmin: [], - }, - }, - { - user: { - _id: 'user3', - firstName: 'Jack', - lastName: 'Smith', - image: null, - email: 'jack@example.com', - createdAt: '2023-04-09T04:53:17.742+00:00', - registeredEvents: [], - membershipRequests: [], - organizationsBlockedBy: [ - { - _id: 'xyz', - name: 'ABC', - image: null, - address: createAddress, - createdAt: '19/06/2022', - creator: createCreator, - }, - ], - joinedOrganizations: [ - { - _id: 'abc', - name: 'Joined Organization 1', - image: null, - address: createAddress, - createdAt: '19/06/2022', - creator: createCreator, - }, - ], - }, - appUserProfile: { - _id: 'user3', - adminFor: [], - isSuperAdmin: false, - createdOrganizations: [], - createdEvents: [], - eventAdmin: [], - }, - }, -]; - -const MOCK_USERS2 = [ - ...MOCK_USERS, - { - user: { - _id: 'user4', - firstName: 'Emma', - lastName: 'Johnson', - image: null, - email: 'emma@example.com', - createdAt: '2023-04-22T04:53:17.742+00:00', - registeredEvents: [], - membershipRequests: [], - organizationsBlockedBy: [ - { - _id: 'xyz', - name: 'ABC', - image: null, - address: createAddress, - createdAt: '19/06/2022', - creator: createCreator, - }, - ], - joinedOrganizations: [ - { - _id: 'abc', - name: 'Joined Organization 1', - image: null, - address: createAddress, - createdAt: '19/06/2022', - creator: createCreator, - }, - ], - }, - appUserProfile: { - _id: 'user4', - adminFor: [], - isSuperAdmin: false, - createdOrganizations: [], - createdEvents: [], - eventAdmin: [], - }, - }, - { - user: { - _id: 'user5', - firstName: 'Liam', - lastName: 'Smith', - image: null, - email: 'liam@example.com', - createdAt: '2023-04-23T04:53:17.742+00:00', - registeredEvents: [], - membershipRequests: [], - organizationsBlockedBy: [ - { - _id: 'xyz', - name: 'ABC', - image: null, - address: createAddress, - createdAt: '19/06/2022', - creator: createCreator, - }, - ], - joinedOrganizations: [ - { - _id: 'abc', - name: 'Joined Organization 1', - image: null, - address: createAddress, - createdAt: '19/06/2022', - creator: createCreator, - }, - ], - }, - appUserProfile: { - _id: 'user5', - adminFor: [], - isSuperAdmin: false, - createdOrganizations: [], - createdEvents: [], - eventAdmin: [], - }, - }, - { - user: { - _id: 'user6', - firstName: 'Olivia', - lastName: 'Brown', - image: null, - email: 'olivia@example.com', - createdAt: '2023-04-24T04:53:17.742+00:00', - registeredEvents: [], - membershipRequests: [], - organizationsBlockedBy: [ - { - _id: 'xyz', - name: 'ABC', - image: null, - address: createAddress, - createdAt: '19/06/2022', - creator: createCreator, - }, - ], - joinedOrganizations: [ - { - _id: 'abc', - name: 'Joined Organization 1', - image: null, - address: createAddress, - createdAt: '19/06/2022', - creator: createCreator, - }, - ], - }, - appUserProfile: { - _id: 'user6', - adminFor: [], - isSuperAdmin: false, - createdOrganizations: [], - createdEvents: [], - eventAdmin: [], - }, - }, - { - user: { - _id: 'user7', - firstName: 'Noah', - lastName: 'Williams', - image: null, - email: 'noah@example.com', - createdAt: '2023-04-25T04:53:17.742+00:00', - registeredEvents: [], - membershipRequests: [], - organizationsBlockedBy: [ - { - _id: 'xyz', - name: 'ABC', - image: null, - address: createAddress, - createdAt: '19/06/2022', - creator: createCreator, - }, - ], - joinedOrganizations: [ - { - _id: 'abc', - name: 'Joined Organization 1', - image: null, - address: createAddress, - createdAt: '19/06/2022', - creator: createCreator, - }, - ], - }, - appUserProfile: { - _id: 'user7', - adminFor: [], - isSuperAdmin: false, - createdOrganizations: [], - createdEvents: [], - eventAdmin: [], - }, - }, - { - user: { - _id: 'user8', - firstName: 'Ava', - lastName: 'Jones', - image: null, - email: 'ava@example.com', - createdAt: '2023-04-26T04:53:17.742+00:00', - registeredEvents: [], - membershipRequests: [], - organizationsBlockedBy: [ - { - _id: 'xyz', - name: 'ABC', - image: null, - address: createAddress, - createdAt: '19/06/2022', - creator: createCreator, - }, - ], - joinedOrganizations: [ - { - _id: 'abc', - name: 'Joined Organization 1', - image: null, - address: createAddress, - createdAt: '19/06/2022', - creator: createCreator, - }, - ], - }, - appUserProfile: { - _id: 'user8', - adminFor: [], - isSuperAdmin: false, - createdOrganizations: [], - createdEvents: [], - eventAdmin: [], - }, - }, - { - user: { - _id: 'user9', - firstName: 'Ethan', - lastName: 'Garcia', - image: null, - email: 'ethan@example.com', - createdAt: '2023-04-27T04:53:17.742+00:00', - registeredEvents: [], - membershipRequests: [], - organizationsBlockedBy: [ - { - _id: 'xyz', - name: 'ABC', - image: null, - address: createAddress, - createdAt: '19/06/2022', - creator: createCreator, - }, - ], - joinedOrganizations: [ - { - _id: 'abc', - name: 'Joined Organization 1', - image: null, - address: createAddress, - createdAt: '19/06/2022', - creator: createCreator, - }, - ], - }, - appUserProfile: { - _id: 'user9', - adminFor: [], - isSuperAdmin: false, - createdOrganizations: [], - createdEvents: [], - eventAdmin: [], - }, - }, - { - user: { - _id: 'user10', - firstName: 'Sophia', - lastName: 'Martinez', - image: null, - email: 'sophia@example.com', - createdAt: '2023-04-28T04:53:17.742+00:00', - registeredEvents: [], - membershipRequests: [], - organizationsBlockedBy: [ - { - _id: 'xyz', - name: 'ABC', - image: null, - address: createAddress, - createdAt: '19/06/2022', - creator: createCreator, - }, - ], - joinedOrganizations: [ - { - _id: 'abc', - name: 'Joined Organization 1', - image: null, - address: createAddress, - createdAt: '19/06/2022', - creator: createCreator, - }, - ], - }, - appUserProfile: { - _id: 'user10', - adminFor: [], - isSuperAdmin: false, - createdOrganizations: [], - createdEvents: [], - eventAdmin: [], - }, - }, - { - user: { - _id: 'user11', - firstName: 'Mason', - lastName: 'Davis', - image: null, - email: 'mason@example.com', - createdAt: '2023-04-29T04:53:17.742+00:00', - registeredEvents: [], - membershipRequests: [], - organizationsBlockedBy: [ - { - _id: 'xyz', - name: 'ABC', - image: null, - address: createAddress, - createdAt: '19/06/2022', - creator: createCreator, - }, - ], - joinedOrganizations: [ - { - _id: 'abc', - name: 'Joined Organization 1', - image: null, - address: createAddress, - createdAt: '19/06/2022', - creator: createCreator, - }, - ], - }, - appUserProfile: { - _id: 'user11', - adminFor: [], - isSuperAdmin: false, - createdOrganizations: [], - createdEvents: [], - eventAdmin: [], - }, - }, - { - user: { - _id: 'user12', - firstName: 'Isabella', - lastName: 'Rodriguez', - image: null, - email: 'isabella@example.com', - createdAt: '2023-04-30T04:53:17.742+00:00', - registeredEvents: [], - membershipRequests: [], - organizationsBlockedBy: [ - { - _id: 'xyz', - name: 'ABC', - image: null, - address: createAddress, - createdAt: '19/06/2022', - creator: createCreator, - }, - ], - joinedOrganizations: [ - { - _id: 'abc', - name: 'Joined Organization 1', - image: null, - address: createAddress, - createdAt: '19/06/2022', - creator: createCreator, - }, - ], - }, - appUserProfile: { - _id: 'user12', - adminFor: [], - isSuperAdmin: false, - createdOrganizations: [], - createdEvents: [], - eventAdmin: [], - }, - }, - { - user: { - _id: 'user13', - firstName: 'Logan', - lastName: 'Wilson', - image: null, - email: 'logan@example.com', - createdAt: '2023-04-08T04:53:17.742+00:00', - registeredEvents: [], - membershipRequests: [], - organizationsBlockedBy: [ - { - _id: 'xyz', - name: 'ABC', - image: null, - address: createAddress, - createdAt: '19/06/2022', - creator: createCreator, - }, - ], - joinedOrganizations: [ - { - _id: 'abc', - name: 'Joined Organization 1', - image: null, - address: createAddress, - createdAt: '19/06/2022', - creator: createCreator, - }, - ], - }, - appUserProfile: { - _id: 'user13', - adminFor: [], - isSuperAdmin: false, - createdOrganizations: [], - createdEvents: [], - eventAdmin: [], - }, - }, - { - user: { - _id: 'user14', - firstName: 'Mia', - lastName: 'Anderson', - image: null, - email: 'mia@example.com', - createdAt: '2023-04-07T04:53:17.742+00:00', - registeredEvents: [], - membershipRequests: [], - organizationsBlockedBy: [ - { - _id: 'xyz', - name: 'ABC', - image: null, - address: createAddress, - createdAt: '19/06/2022', - creator: createCreator, - }, - ], - joinedOrganizations: [ - { - _id: 'abc', - name: 'Joined Organization 1', - image: null, - address: createAddress, - createdAt: '19/06/2022', - creator: createCreator, - }, - ], - }, - appUserProfile: { - _id: 'user14', - adminFor: [], - isSuperAdmin: false, - createdOrganizations: [], - createdEvents: [], - eventAdmin: [], - }, - }, - { - user: { - _id: 'user15', - firstName: 'Lucas', - lastName: 'Thomas', - image: null, - email: 'lucas@example.com', - createdAt: '2023-04-05T04:53:17.742+00:00', - registeredEvents: [], - membershipRequests: [], - organizationsBlockedBy: [ - { - _id: 'xyz', - name: 'ABC', - image: null, - address: createAddress, - createdAt: '19/06/2022', - creator: createCreator, - }, - ], - joinedOrganizations: [ - { - _id: 'abc', - name: 'Joined Organization 1', - image: null, - address: createAddress, - createdAt: '19/06/2022', - creator: createCreator, - }, - ], - }, - appUserProfile: { - _id: 'user15', - adminFor: [], - isSuperAdmin: false, - createdOrganizations: [], - createdEvents: [], - eventAdmin: [], - }, - }, -]; - -const MOCKS_NEW = [ - { - request: { - query: USER_LIST, - variables: { - first: 12, - skip: 0, - firstName_contains: '', - lastName_contains: '', - order: 'createdAt_DESC', - }, - }, - result: { - data: { - users: MOCK_USERS, - }, - }, - }, - { - request: { - query: ORGANIZATION_CONNECTION_LIST, - }, - result: { - data: { - organizationsConnection: [], - }, - }, - }, -]; - -const MOCKS_NEW2 = [ - { - request: { - query: USER_LIST, - variables: { - first: 12, - skip: 0, - firstName_contains: '', - lastName_contains: '', - order: 'createdAt_DESC', - }, - }, - result: { - data: { - users: MOCK_USERS2.slice(0, 12), - }, - }, - }, - { - request: { - query: ORGANIZATION_CONNECTION_LIST, - }, - result: { - data: { - organizationsConnection: [], - }, - }, - }, - { - request: { - query: USER_LIST, - variables: { - first: 24, - skip: 0, - firstName_contains: '', - lastName_contains: '', - order: 'createdAt_DESC', - filter: '', - }, - }, - result: { - data: { - users: MOCK_USERS2.slice(12, 15), - }, - }, - }, -]; - -const MOCKS_NEW3 = [ - { - request: { - query: USER_LIST, - variables: { - first: 12, - skip: 0, - firstName_contains: '', - lastName_contains: '', - order: 'createdAt_DESC', - }, - }, - result: { - data: { - users: MOCK_USERS2.slice(0, 12), - }, - }, - }, - { - request: { - query: ORGANIZATION_CONNECTION_LIST, - }, - result: { - data: { - organizationsConnection: [], - }, - }, - }, - { - request: { - query: USER_LIST, - variables: { - first: 24, - skip: 0, - firstName_contains: '', - lastName_contains: '', - order: 'createdAt_DESC', - filter: '', - }, - }, - result: { - data: { - users: MOCK_USERS2.slice(11, 15), - }, - }, - }, - { - request: { - query: USER_LIST, - variables: { - first: 24, - skip: 0, - firstName_contains: '', - lastName_contains: '', - order: 'createdAt_DESC', - filter: '', - }, - }, - result: { - data: { - users: MOCK_USERS2.slice(11, 15), - }, - }, - }, - { - request: { - query: USER_LIST, - variables: { - first: 13, - skip: 3, - firstName_contains: '', - lastName_contains: '', - order: 'createdAt_DESC', - filter: '', - }, - }, - result: { - data: { - users: [], - }, - }, - }, -]; - const link = new StaticMockLink(MOCKS, true); const link2 = new StaticMockLink(EMPTY_MOCKS, true); const link3 = new StaticMockLink(MOCKS2, true); @@ -1550,4 +730,142 @@ describe('Testing Users screen', () => { .querySelectorAll('tr'); expect(users2.length).toBe(15); }); + + it('should render "No results found" message with search query when search returns no users and isLoading is false', async () => { + render( + + + + + + + + + , + ); + + await wait(); + + const searchBtn = screen.getByTestId('searchButton'); + const searchInput = screen.getByTestId(/searchByName/i); + + await act(async () => { + userEvent.clear(searchInput); + userEvent.type(searchInput, 'NonexistentName'); + userEvent.click(searchBtn); + }); + + const noResultsMessage = screen.getByText(/No results found for/i); + expect(noResultsMessage).toBeInTheDocument(); + expect(noResultsMessage).toHaveTextContent('NonexistentName'); + }); + + describe('Testing sorting and loadMoreUsers functionality', () => { + it('should set the correct order variable and update hasMore', async () => { + render( + + + + + + + , + ); + + const sortDropdown = await screen.findByTestId('sortUsers'); + fireEvent.click(sortDropdown); + + const newestOption = screen.getByTestId('newest'); + fireEvent.click(newestOption); + + expect(screen.getByTestId('sortUsers')).toHaveTextContent('newest'); + + const rowsNewest = await screen.findAllByRole('row'); + expect(rowsNewest.length).toBeGreaterThan(0); + + fireEvent.click(sortDropdown); + const oldestOption = screen.getByTestId('oldest'); + fireEvent.click(oldestOption); + + expect(screen.getByTestId('sortUsers')).toHaveTextContent('oldest'); + + const rowsOldest = await screen.findAllByRole('row'); + expect(rowsOldest.length).toBeGreaterThan(0); + }); + + it('should load more users and merge them correctly', async () => { + render( + + + + + + + , + ); + + await wait(); + let rows = screen.getAllByRole('row'); + expect(rows.length).toBe(4); + + await act(async () => { + fireEvent.scroll(window, { target: { scrollY: 1000 } }); + }); + + await wait(); + rows = screen.getAllByRole('row'); + expect(rows.length).toBe(4); + }); + }); + + describe('generateMockUser', () => { + it('should set adminFor with an entry when isSuperAdmin is true', () => { + const mockUser = generateMockUser( + 'user1', + 'John', + 'Doe', + 'john@example.com', + '2023-04-13T04:53:17.742+00:00', + true, // isSuperAdmin + ); + + expect(mockUser.appUserProfile.adminFor).toEqual([{ _id: '123' }]); + expect(mockUser.appUserProfile.isSuperAdmin).toBe(true); + }); + + it('should set adminFor as an empty array when isSuperAdmin is false', () => { + const mockUser = generateMockUser( + 'user2', + 'Jane', + 'Doe', + 'jane@example.com', + '2023-04-17T04:53:17.742+00:00', + false, // isSuperAdmin + ); + + expect(mockUser.appUserProfile.adminFor).toEqual([]); + expect(mockUser.appUserProfile.isSuperAdmin).toBe(false); + }); + }); }); diff --git a/src/screens/Users/Users.tsx b/src/screens/Users/Users.tsx index ef9f001f4d..95c2116c4c 100644 --- a/src/screens/Users/Users.tsx +++ b/src/screens/Users/Users.tsx @@ -211,7 +211,6 @@ const Users = (): JSX.Element => { const inputValue = inputElement?.value || ''; handleSearch(inputValue); }; - /* istanbul ignore next */ const resetAndRefetch = (): void => { refetchUsers({ first: perPageResult, @@ -222,7 +221,6 @@ const Users = (): JSX.Element => { }); setHasMore(true); }; - /* istanbul ignore next */ const loadMoreUsers = (skipValue: number, limitVal: number): void => { setIsLoadingMore(true); fetchMore({ @@ -430,10 +428,7 @@ const Users = (): JSX.Element => { /> )} { loadMoreUsers(displayedUsers.length, perPageResult); }} @@ -474,7 +469,7 @@ const Users = (): JSX.Element => { index={index} resetAndRefetch={resetAndRefetch} user={user} - loggedInUserId={loggedInUserId ? loggedInUserId : ''} + loggedInUserId={loggedInUserId} /> ); }, diff --git a/src/screens/Users/UsersMocks.mocks.ts b/src/screens/Users/UsersMocks.mocks.ts new file mode 100644 index 0000000000..54fae95442 --- /dev/null +++ b/src/screens/Users/UsersMocks.mocks.ts @@ -0,0 +1,244 @@ +import { + ORGANIZATION_CONNECTION_LIST, + USER_LIST, +} from 'GraphQl/Queries/Queries'; + +import { MOCK_USERS, MOCK_USERS2 } from './Organization.mocks'; + +export const EMPTY_MOCKS = [ + { + request: { + query: USER_LIST, + variables: { + first: 12, + skip: 0, + firstName_contains: '', + lastName_contains: '', + }, + }, + result: { + data: { + users: [], + }, + }, + }, + { + request: { + query: ORGANIZATION_CONNECTION_LIST, + }, + result: { + data: { + organizationsConnection: [], + }, + }, + }, +]; + +export const MOCKS_NEW_2 = [ + { + request: { + query: USER_LIST, + variables: { + first: 12, + skip: 0, + firstName_contains: '', + lastName_contains: '', + order: 'createdAt_DESC', + }, + }, + result: { + data: { + users: MOCK_USERS.slice(0, 12), + }, + }, + }, + { + request: { + query: USER_LIST, + variables: { + first: 24, + skip: 0, + firstName_contains: '', + lastName_contains: '', + order: 'createdAt_DESC', + }, + }, + result: { + data: { + users: MOCK_USERS.slice(12, 24), + }, + }, + }, + { + request: { + query: ORGANIZATION_CONNECTION_LIST, + }, + result: { + data: { + organizationsConnection: [], + }, + }, + }, +]; + +export const MOCKS_NEW = [ + { + request: { + query: USER_LIST, + variables: { + first: 12, + skip: 0, + firstName_contains: '', + lastName_contains: '', + order: 'createdAt_DESC', + }, + }, + result: { + data: { + users: MOCK_USERS, + }, + }, + }, + { + request: { + query: ORGANIZATION_CONNECTION_LIST, + }, + result: { + data: { + organizationsConnection: [], + }, + }, + }, +]; + +export const MOCKS_NEW2 = [ + { + request: { + query: USER_LIST, + variables: { + first: 12, + skip: 0, + firstName_contains: '', + lastName_contains: '', + order: 'createdAt_DESC', + }, + }, + result: { + data: { + users: MOCK_USERS2.slice(0, 12), + }, + }, + }, + { + request: { + query: ORGANIZATION_CONNECTION_LIST, + }, + result: { + data: { + organizationsConnection: [], + }, + }, + }, + { + request: { + query: USER_LIST, + variables: { + first: 24, + skip: 0, + firstName_contains: '', + lastName_contains: '', + order: 'createdAt_DESC', + filter: '', + }, + }, + result: { + data: { + users: MOCK_USERS2.slice(12, 15), + }, + }, + }, +]; + +export const MOCKS_NEW3 = [ + { + request: { + query: USER_LIST, + variables: { + first: 12, + skip: 0, + firstName_contains: '', + lastName_contains: '', + order: 'createdAt_DESC', + }, + }, + result: { + data: { + users: MOCK_USERS2.slice(0, 12), + }, + }, + }, + { + request: { + query: ORGANIZATION_CONNECTION_LIST, + }, + result: { + data: { + organizationsConnection: [], + }, + }, + }, + { + request: { + query: USER_LIST, + variables: { + first: 24, + skip: 0, + firstName_contains: '', + lastName_contains: '', + order: 'createdAt_DESC', + filter: '', + }, + }, + result: { + data: { + users: MOCK_USERS2.slice(11, 15), + }, + }, + }, + { + request: { + query: USER_LIST, + variables: { + first: 24, + skip: 0, + firstName_contains: '', + lastName_contains: '', + order: 'createdAt_DESC', + filter: '', + }, + }, + result: { + data: { + users: MOCK_USERS2.slice(11, 15), + }, + }, + }, + { + request: { + query: USER_LIST, + variables: { + first: 13, + skip: 3, + firstName_contains: '', + lastName_contains: '', + order: 'createdAt_DESC', + filter: '', + }, + }, + result: { + data: { + users: [], + }, + }, + }, +]; From 82e2180d12835b7ac11da7c507e7bc99ab01f4fe Mon Sep 17 00:00:00 2001 From: Dhiren-Mhatre <130587526+Dhiren-Mhatre@users.noreply.github.com> Date: Sun, 19 Jan 2025 02:18:50 +0530 Subject: [PATCH 26/42] improve code coverage of people.tsx (#3308) * improve code coverage of people.tsx * fixed formating * added coderabit suggetions * removed a comment * removed redundant comment * added code rabbit's suggetions * added code rabbit's suggetions --- src/screens/UserPortal/People/People.spec.tsx | 855 +++++++++++++++++- src/screens/UserPortal/People/People.tsx | 59 +- 2 files changed, 870 insertions(+), 44 deletions(-) diff --git a/src/screens/UserPortal/People/People.spec.tsx b/src/screens/UserPortal/People/People.spec.tsx index 8837bee265..801a07ba40 100644 --- a/src/screens/UserPortal/People/People.spec.tsx +++ b/src/screens/UserPortal/People/People.spec.tsx @@ -1,21 +1,28 @@ -import React, { act } from 'react'; -import { render, screen } from '@testing-library/react'; +import React from 'react'; +import type { RenderResult } from '@testing-library/react'; +import { + render, + screen, + fireEvent, + waitFor, + waitForElementToBeRemoved, + act, +} from '@testing-library/react'; import { MockedProvider } from '@apollo/react-testing'; import { I18nextProvider } from 'react-i18next'; import { ORGANIZATIONS_MEMBER_CONNECTION_LIST, ORGANIZATION_ADMINS_LIST, } from 'GraphQl/Queries/Queries'; +import type { DocumentNode } from '@apollo/client'; import { BrowserRouter } from 'react-router-dom'; import { Provider } from 'react-redux'; import { store } from 'state/store'; import i18nForTest from 'utils/i18nForTest'; import { StaticMockLink } from 'utils/StaticMockLink'; -// import type { InterfaceMember } from './People'; import People from './People'; import userEvent from '@testing-library/user-event'; import { vi } from 'vitest'; - /** * This file contains unit tests for the People component. * @@ -27,6 +34,39 @@ import { vi } from 'vitest'; * * These tests use Vitest for test execution, MockedProvider for mocking GraphQL queries, and react-testing-library for rendering and interactions. */ +type MockData = { + request: { + query: DocumentNode; + variables: Record; + }; + result?: { + data: { + organizationsMemberConnection?: { + edges: { + _id: string; + firstName: string; + lastName: string; + image: string | null; + email: string; + createdAt: string; + }[]; + }; + organizations?: { + __typename?: string; + _id: string; + admins: { + _id: string; + firstName: string; + lastName: string; + image: string | null; + email: string; + createdAt: string; + }[]; + }[]; + }; + }; + error?: Error; +}; const MOCKS = [ { @@ -90,6 +130,35 @@ const MOCKS = [ }, }, }, + { + request: { + query: ORGANIZATIONS_MEMBER_CONNECTION_LIST, + variables: { orgId: '', firstName_contains: '' }, + }, + result: { + data: { + organizationsMemberConnection: { + edges: [], + }, + }, + }, + }, + { + request: { + query: ORGANIZATION_ADMINS_LIST, + variables: { id: '' }, + }, + result: { + data: { + organizations: [ + { + _id: 'org-1', + admins: [], + }, + ], + }, + }, + }, { request: { query: ORGANIZATIONS_MEMBER_CONNECTION_LIST, @@ -239,4 +308,782 @@ describe('Testing People Screen [User Portal]', () => { expect(screen.queryByText('Noble Admin')).toBeInTheDocument(); expect(screen.queryByText('Noble Mittal')).not.toBeInTheDocument(); }); + it('Shows loading state while fetching data', async () => { + render( + + + + + + + + + , + ); + + expect(screen.getByText('Loading...')).toBeInTheDocument(); + await wait(); + }); +}); + +describe('Testing People Screen Pagination [User Portal]', () => { + // Mock data with more than 5 members to test pagination + const PAGINATION_MOCKS = [ + { + request: { + query: ORGANIZATIONS_MEMBER_CONNECTION_LIST, + variables: { + orgId: '', + firstName_contains: '', + }, + }, + result: { + data: { + organizationsMemberConnection: { + edges: Array(7) + .fill(null) + .map((_, index) => ({ + _id: `member${index}`, + firstName: `User${index}`, + lastName: 'Test', + image: null, + email: `user${index}@test.com`, + createdAt: '2023-03-02T03:22:08.101Z', + })), + }, + }, + }, + }, + { + request: { + query: ORGANIZATION_ADMINS_LIST, + variables: { + id: '', + }, + }, + result: { + data: { + organizations: [ + { + __typename: 'Organization', + _id: 'org1', + admins: [ + { + _id: 'member0', + firstName: 'User0', + lastName: 'Test', + image: null, + email: 'user0@test.com', + createdAt: '2023-03-02T03:22:08.101Z', + }, + ], + }, + ], + }, + }, + }, + ]; + + const link = new StaticMockLink(PAGINATION_MOCKS, true); + + const renderComponent = (): RenderResult => { + return render( + + + + + + + + + , + ); + }; + + // Helper function to wait for async operations + const wait = async (ms = 100): Promise => { + await act(() => { + return new Promise((resolve) => { + setTimeout(resolve, ms); + }); + }); + }; + + beforeAll(() => { + // Mock window.matchMedia + Object.defineProperty(window, 'matchMedia', { + writable: true, + value: vi.fn().mockImplementation((query) => ({ + matches: false, + media: query, + onchange: null, + addListener: vi.fn(), + removeListener: vi.fn(), + addEventListener: vi.fn(), + removeEventListener: vi.fn(), + dispatchEvent: vi.fn(), + })), + }); + + // Mock useParams + vi.mock('react-router-dom', async () => { + const actual = await vi.importActual('react-router-dom'); + return { + ...actual, + useParams: () => ({ orgId: '' }), + }; + }); + }); + + it('handles rows per page change correctly', async () => { + renderComponent(); + await wait(); + + // Default should show 5 items + expect(screen.getByText('User0 Test')).toBeInTheDocument(); + expect(screen.queryByText('User5 Test')).not.toBeInTheDocument(); + + // Change rows per page to 10 + const select = screen.getByRole('combobox'); + userEvent.selectOptions(select, '10'); + await wait(); + + // Should now show all items on one page + expect(screen.getByText('User0 Test')).toBeInTheDocument(); + expect(screen.getByText('User5 Test')).toBeInTheDocument(); + }); + + it('should slice members when rowsPerPage > 0 to cover paging logic', async () => { + // PAGINATION_MOCKS has 7 members. We confirm first page shows fewer than 7 + render( + + + + + + + + + , + ); + + await wait(); + + // Should initially show 5 members if rowsPerPage = 5 + expect(screen.queryAllByText(/User\d Test/).length).toBe(5); + }); +}); +describe('People Component Mode Switch Coverage', () => { + // Setup function to help with repeated test setup + const setupTest = (): RenderResult => { + // Mock data that ensures both member and admin data is available + const mocks = [ + { + request: { + query: ORGANIZATIONS_MEMBER_CONNECTION_LIST, + variables: { orgId: '', firstName_contains: '' }, + }, + result: { + data: { + organizationsMemberConnection: { + edges: [ + { + _id: '123', + firstName: 'Test', + lastName: 'User', + image: null, + email: 'test@example.com', + createdAt: '2023-03-02T03:22:08.101Z', + }, + ], + }, + }, + }, + }, + { + request: { + query: ORGANIZATION_ADMINS_LIST, + variables: { id: '' }, + }, + result: { + data: { + organizations: [ + { + admins: [ + { + _id: '456', + firstName: 'Admin', + lastName: 'User', + image: null, + email: 'admin@example.com', + createdAt: '2023-03-02T03:22:08.101Z', + }, + ], + }, + ], + }, + }, + }, + ]; + + return render( + + + + + + + + + , + ); + }; + + it('handles mode transitions correctly including edge cases', async () => { + setupTest(); + + // Wait for initial render + await waitFor(() => { + expect(screen.getByText('Test User')).toBeInTheDocument(); + }); + + // Open dropdown and switch to admin mode + userEvent.click(screen.getByTestId('modeChangeBtn')); + await waitFor(() => { + userEvent.click(screen.getByTestId('modeBtn1')); + }); + + // Verify admin view + await waitFor(() => { + expect(screen.getByText('Admin User')).toBeInTheDocument(); + expect(screen.queryByText('Test User')).not.toBeInTheDocument(); + }); + + // Test mode transition with missing data + const modeSetter = vi.fn(); + vi.spyOn(React, 'useState').mockImplementationOnce(() => [1, modeSetter]); // Mock mode state + + // Force a re-render to trigger the useEffect with mocked state + setupTest(); + + // Verify the component handles the transition gracefully + await waitFor(() => { + expect(screen.queryByText('Loading...')).not.toBeInTheDocument(); + }); + }); + + // Set up i18next mock for all tests in this describe block + beforeAll(() => { + vi.mock('react-i18next', async () => { + const actual = await vi.importActual('react-i18next'); + return { + ...actual, + useTranslation: () => ({ + t: (key: string) => + key === 'nothingToShow' ? 'Nothing to show' : key, + i18n: { + changeLanguage: () => new Promise(() => {}), + }, + }), + }; + }); + }); + + it('handles transitioning between empty and non-empty states', async () => { + const mixedMocks = [ + { + request: { + query: ORGANIZATIONS_MEMBER_CONNECTION_LIST, + variables: { orgId: '', firstName_contains: '' }, + }, + result: { + data: { + organizationsMemberConnection: { + edges: [], + }, + }, + }, + }, + { + request: { + query: ORGANIZATION_ADMINS_LIST, + variables: { id: '' }, + }, + result: { + data: { + organizations: [ + { + admins: [ + { + _id: 'admin1', + firstName: 'Admin', + lastName: 'User', + image: null, + email: 'admin@test.com', + createdAt: new Date().toISOString(), + }, + ], + }, + ], + }, + }, + }, + ]; + + // Mock i18next translation specifically for this test + vi.mock('react-i18next', async () => { + const actual = await vi.importActual('react-i18next'); + return { + ...actual, + useTranslation: () => ({ + t: (key: string) => + key === 'nothingToShow' ? 'Nothing to show' : key, + i18n: { + changeLanguage: () => new Promise(() => {}), + }, + }), + }; + }); + + render( + + + + + + + + + , + ); + + await waitForElementToBeRemoved(() => screen.queryByText('Loading...')); + + // Verify empty state in members view using translated text + expect(screen.getByText('Nothing to show')).toBeInTheDocument(); + + // Switch to admin mode + userEvent.click(screen.getByTestId('modeChangeBtn')); + await waitFor(() => { + userEvent.click(screen.getByTestId('modeBtn1')); + }); + + // Verify admin is shown in admin view + await waitFor(() => { + expect(screen.getByText('Admin User')).toBeInTheDocument(); + expect(screen.queryByText('Nothing to show')).not.toBeInTheDocument(); + }); + }); +}); + +describe('People Additional Flow Tests', () => { + const renderComponent = (mocks: MockData[]): RenderResult => { + return render( + + + + + + + + + , + ); + }; + + const setupWithMocks = (mocks: MockData[]): RenderResult => + renderComponent(mocks); + + it('searches partial user name correctly and displays matching results', async (): Promise => { + const aliMembersMock: MockData = { + request: { + query: ORGANIZATIONS_MEMBER_CONNECTION_LIST, + variables: { orgId: '', firstName_contains: 'Ali' }, + }, + result: { + data: { + organizationsMemberConnection: { + edges: [ + { + _id: 'user-1', + firstName: 'Alice', + lastName: 'Test', + image: null, + email: 'alice@test.com', + createdAt: '2023-03-02T03:22:08.101Z', + }, + ], + }, + }, + }, + }; + + renderComponent([aliMembersMock]); + + userEvent.type(screen.getByTestId('searchInput'), 'Ali'); + userEvent.click(screen.getByTestId('searchBtn')); + + await waitFor(() => { + expect(screen.getByText('Alice Test')).toBeInTheDocument(); + expect(screen.queryByText('Bob Test')).not.toBeInTheDocument(); + }); + }); + + it('switches mode multiple times in a row without errors', async (): Promise => { + const multiSwitchMocks: MockData[] = [ + { + request: { + query: ORGANIZATIONS_MEMBER_CONNECTION_LIST, + variables: { orgId: '', firstName_contains: '' }, + }, + result: { + data: { + organizationsMemberConnection: { + edges: [ + { + _id: '3', + firstName: 'Charlie', + lastName: 'Test', + image: null, + email: 'charlie@test.com', + createdAt: '2023-03-02T03:22:08.101Z', + }, + ], + }, + }, + }, + }, + { + request: { + query: ORGANIZATION_ADMINS_LIST, + variables: { id: '' }, + }, + result: { + data: { + organizations: [{ _id: 'org-1', admins: [] }], + }, + }, + }, + ]; + + setupWithMocks(multiSwitchMocks); + + await waitFor(() => { + expect(screen.queryByText('Loading...')).not.toBeInTheDocument(); + expect(screen.getByText('Charlie Test')).toBeInTheDocument(); + }); + + const modeSwitchBtn = screen.getByTestId('modeChangeBtn'); + + // Switch to admin mode + userEvent.click(modeSwitchBtn); + await waitFor(() => userEvent.click(screen.getByTestId('modeBtn1'))); + + // Switch back to all members + userEvent.click(modeSwitchBtn); + await waitFor(() => userEvent.click(screen.getByTestId('modeBtn0'))); + + expect(screen.getByText('Charlie Test')).toBeInTheDocument(); + }); + + // Add test for error handling +}); +describe('Testing People Screen Edge Cases [User Portal]', () => { + const renderComponent = (mocks = MOCKS): RenderResult => { + return render( + + + + + + + + + , + ); + }; + + // Mock i18next translation + vi.mock('react-i18next', async () => { + const actual = await vi.importActual('react-i18next'); + return { + ...actual, + useTranslation: () => ({ + t: (key: string) => { + const translations: { [key: string]: string } = { + nothingToShow: 'Nothing to show', + all: 'All', + }; + return translations[key] || key; + }, + }), + }; + }); + + beforeAll(() => { + Object.defineProperty(window, 'matchMedia', { + writable: true, + value: vi.fn().mockImplementation((query) => ({ + matches: false, + media: query, + onchange: null, + addListener: vi.fn(), + removeListener: vi.fn(), + addEventListener: vi.fn(), + removeEventListener: vi.fn(), + dispatchEvent: vi.fn(), + })), + }); + }); + + it('handles rowsPerPage = 0 case', async () => { + const membersMock = { + request: { + query: ORGANIZATIONS_MEMBER_CONNECTION_LIST, + variables: { orgId: '', firstName_contains: '' }, + }, + result: { + data: { + organizationsMemberConnection: { + edges: [ + { + _id: '1', + firstName: 'Test', + lastName: 'User', + email: 'test@example.com', + image: null, + createdAt: new Date().toISOString(), + }, + ], + }, + }, + }, + }; + + renderComponent([membersMock]); + await wait(); + + // Find the rows per page select + const select = screen.getByLabelText('rows per page'); + expect(select).toBeInTheDocument(); + + // Select the "All" option (which should be the last option) + const options = Array.from(select.getElementsByTagName('option')); + const allOption = options.find((option) => option.textContent === 'All'); + if (allOption) { + userEvent.selectOptions(select, allOption.value); + } + await wait(); + + // Verify member is shown + expect(screen.getByText('Test User')).toBeInTheDocument(); + }); +}); + +describe('People Component Additional Coverage Tests', () => { + // Mock for testing error states + + // Test case to cover line 142: handleSearchByEnter with non-Enter key + it('should not trigger search for non-Enter key press', async () => { + render( + + + + + + + + + , + ); + + const searchInput = screen.getByTestId('searchInput'); + fireEvent.keyUp(searchInput, { key: 'A', code: 'KeyA' }); + + // Wait a bit to ensure no search is triggered + await new Promise((resolve) => setTimeout(resolve, 100)); + // The loading state should not appear + expect(screen.queryByText('Loading...')).not.toBeInTheDocument(); + }); + + // Test case to cover line 151: handleSearchByBtnClick with empty input + it('should handle search with empty input value', async () => { + render( + + + + + + + + + , + ); + + const searchBtn = screen.getByTestId('searchBtn'); + // Remove the search input from DOM to simulate edge case + const searchInput = screen.getByTestId('searchInput'); + searchInput.remove(); + + userEvent.click(searchBtn); + await new Promise((resolve) => setTimeout(resolve, 100)); + }); + + it('Sets userType to Admin if user is found in admins list', async (): Promise => { + const adminMock = { + request: { + query: ORGANIZATION_ADMINS_LIST, + variables: { id: '' }, + }, + result: { + data: { + organizations: [ + { + _id: 'testOrg', + admins: [ + { + _id: 'admin123', + firstName: 'Test', + lastName: 'Admin', + email: 'admin@test.com', + }, + ], + }, + ], + }, + }, + }; + const membersMock = { + request: { + query: ORGANIZATIONS_MEMBER_CONNECTION_LIST, + variables: { orgId: '', firstName_contains: '' }, + }, + result: { + data: { + organizationsMemberConnection: { + edges: [ + { + _id: 'admin123', + firstName: 'Test', + lastName: 'Admin', + email: 'admin@test.com', + }, + ], + }, + }, + }, + }; + const link = new StaticMockLink([adminMock, membersMock], true); + render( + + + , + ); + await wait(); + expect(screen.getByText('Admin')).toBeInTheDocument(); + }); +}); + +describe('People Component Pagination Tests', () => { + const mockData = { + request: { + query: ORGANIZATIONS_MEMBER_CONNECTION_LIST, + variables: { orgId: '', firstName_contains: '' }, + }, + result: { + data: { + organizationsMemberConnection: { + edges: Array(15) + .fill(null) + .map((_, index) => ({ + _id: `user-${index}`, + firstName: `User${index}`, + lastName: 'Test', + image: null, + email: `user${index}@test.com`, + createdAt: '2023-03-02T03:22:08.101Z', + })), + }, + }, + }, + }; + + const adminMock = { + request: { + query: ORGANIZATION_ADMINS_LIST, + variables: { id: '' }, + }, + result: { + data: { + organizations: [ + { + __typename: 'Organization', + _id: 'org-1', + admins: [], + }, + ], + }, + }, + }; + + const renderComponent = (): RenderResult => { + return render( + + + + + + + + + , + ); + }; + + beforeAll(() => { + // Mock window.matchMedia + Object.defineProperty(window, 'matchMedia', { + writable: true, + value: vi.fn().mockImplementation((query) => ({ + matches: false, + media: query, + onchange: null, + addListener: vi.fn(), + removeListener: vi.fn(), + addEventListener: vi.fn(), + removeEventListener: vi.fn(), + dispatchEvent: vi.fn(), + })), + }); + }); + it('handles edge cases in pagination', async () => { + renderComponent(); + + await act(async () => { + await new Promise((resolve) => setTimeout(resolve, 0)); + }); + + // Test last page navigation + const lastPageButton = screen.getByRole('button', { name: /last page/i }); + await act(async () => { + userEvent.click(lastPageButton); + }); + + // Verify last page content + expect(screen.getByText('User14 Test')).toBeInTheDocument(); + + // Test first page navigation + const firstPageButton = screen.getByRole('button', { name: /first page/i }); + await act(async () => { + userEvent.click(firstPageButton); + }); + + // Verify return to first page + expect(screen.getByText('User0 Test')).toBeInTheDocument(); + expect(screen.queryByText('User14 Test')).not.toBeInTheDocument(); + }); }); diff --git a/src/screens/UserPortal/People/People.tsx b/src/screens/UserPortal/People/People.tsx index 827a5b49c6..a16123c544 100644 --- a/src/screens/UserPortal/People/People.tsx +++ b/src/screens/UserPortal/People/People.tsx @@ -112,53 +112,36 @@ export default function people(): JSX.Element { }; useEffect(() => { - if (data2) { - const admin = data2.organizations[0].admins[0]; - const updatedAdmin: InterfaceMember = { - ...admin, - userType: 'Admin', - }; - setAdmins([updatedAdmin]); + if (data2?.organizations?.[0]?.admins) { + const adminsList = data2.organizations[0].admins.map( + (admin: InterfaceMember) => ({ + ...admin, + userType: 'Admin', + }), + ); + setAdmins(adminsList); } }, [data2]); + // Updated members effect useEffect(() => { - if (data) { - const updatedAdmins = data.organizationsMemberConnection.edges.map( + if (data?.organizationsMemberConnection?.edges) { + const membersList = data.organizationsMemberConnection.edges.map( (memberData: InterfaceMember) => ({ - ...memberData, // Spread the existing properties + ...memberData, userType: admins?.some((admin) => admin._id === memberData._id) ? 'Admin' : 'Member', }), ); - - setAllMembers(updatedAdmins); - setMembers(updatedAdmins); + setAllMembers(membersList); + setMembers(mode === 0 ? membersList : admins); } - }, [data, admins]); + }, [data, admins, mode]); - if (admins && admins.length > 0) { - const adminIds = admins.map((adm) => adm._id); - for (let i = 0; i < allMembers.length; i++) { - if (adminIds.includes(allMembers[i]._id)) { - allMembers[i].userType = 'Admin'; - } else { - allMembers[i].userType = 'Member'; - } - } - } useEffect(() => { - if (mode == 0) { - if (data) { - setMembers(allMembers); - } - } else if (mode == 1) { - if (data2) { - setMembers(admins); - } - } - }, [mode]); + setMembers(mode === 0 ? allMembers : admins); + }, [mode, allMembers, admins]); return ( <> @@ -237,8 +220,7 @@ export default function people(): JSX.Element { page * rowsPerPage, page * rowsPerPage + rowsPerPage, ) - : /* istanbul ignore next */ - members + : members ).map((member: InterfaceMember, index) => { const name = `${member.firstName} ${member.lastName}`; @@ -262,10 +244,7 @@ export default function people(): JSX.Element { Date: Sun, 19 Jan 2025 04:51:43 +0530 Subject: [PATCH 27/42] Auto docs using husky pre-commit (#3290) * auto-docs * yarn to npm * broken links fixed and code refactored * github action created * pull-request.yml updated * pull-request.yml updated * pull-request.yml updated * pull-request.yml updated * pull-request.yml updated * pull-request.yml updated * pull-request.yml updated * pull-request.yml updated * pull-request.yml updated * pull-request.yml updated * pull-request.yml updated * pull-request.yml updated * pull-request.yml updated * pull-request.yml updated * pull-request.yml updated * pull-request.yml updated * pull-request.yml updated * docs removed * pull-request.yml updated * pull-request.yml updated * pull-request.yml updated * pull-request.yml updated * pull-request.yml updated * pull-request.yml updated * pull-request.yml updated * pull-request.yml updated * pull-request.yml updated * pull-request.yml updated * pull-request.yml updated * github action removed & husky used * auto docs in gitignore * pull-request.yml updated * pull-request.yml updated * pull-request.yml updated * pull-request.yml updated * pull-request.yml updated * pull-request.yml updated --- .eslintignore | 2 +- .github/workflows/pull-request.yml | 23 +- .gitignore | 3 + .husky/pre-commit | 1 + docs/docs/auto-docs/App/functions/default.md | 28 ++ .../Constant/constant/variables/AUTH_TOKEN.md | 9 + .../constant/variables/BACKEND_URL.md | 9 + .../REACT_APP_BACKEND_WEBSOCKET_URL.md | 9 + .../variables/REACT_APP_CUSTOM_PORT.md | 9 + .../variables/REACT_APP_USE_RECAPTCHA.md | 9 + .../constant/variables/RECAPTCHA_SITE_KEY.md | 9 + .../CREATE_ACTION_ITEM_CATEGORY_MUTATION.md | 23 ++ .../UPDATE_ACTION_ITEM_CATEGORY_MUTATION.md | 23 ++ .../variables/CREATE_ACTION_ITEM_MUTATION.md | 35 ++ .../variables/DELETE_ACTION_ITEM_MUTATION.md | 15 + .../variables/UPDATE_ACTION_ITEM_MUTATION.md | 39 +++ .../CREATE_AGENDA_ITEM_CATEGORY_MUTATION.md | 15 + .../DELETE_AGENDA_ITEM_CATEGORY_MUTATION.md | 15 + .../UPDATE_AGENDA_ITEM_CATEGORY_MUTATION.md | 19 + .../variables/CREATE_AGENDA_ITEM_MUTATION.md | 9 + .../variables/DELETE_AGENDA_ITEM_MUTATION.md | 9 + .../variables/UPDATE_AGENDA_ITEM_MUTATION.md | 9 + .../variables/CREATE_CAMPAIGN_MUTATION.md | 39 +++ .../variables/UPDATE_CAMPAIGN_MUTATION.md | 39 +++ .../variables/CREATE_COMMENT_POST.md | 23 ++ .../variables/LIKE_COMMENT.md | 19 + .../variables/UNLIKE_COMMENT.md | 19 + .../variables/ADD_EVENT_ATTENDEE.md | 23 ++ .../variables/MARK_CHECKIN.md | 23 ++ .../variables/REMOVE_EVENT_ATTENDEE.md | 23 ++ .../variables/ADD_VOLUNTEER.md | 19 + .../variables/CREATE_VOLUNTEER_GROUP.md | 26 ++ .../variables/CREATE_VOLUNTEER_MEMBERSHIP.md | 9 + .../variables/DELETE_VOLUNTEER.md | 19 + .../variables/DELETE_VOLUNTEER_GROUP.md | 19 + .../variables/UPDATE_VOLUNTEER_GROUP.md | 23 ++ .../variables/UPDATE_VOLUNTEER_MEMBERSHIP.md | 23 ++ .../variables/CREATE_FUND_MUTATION.md | 39 +++ .../variables/UPDATE_FUND_MUTATION.md | 39 +++ .../variables/ADD_CUSTOM_FIELD.md | 27 ++ .../variables/ADD_USER_TO_GROUP_CHAT.md | 9 + .../variables/CANCEL_MEMBERSHIP_REQUEST.md | 9 + .../variables/CREATE_CHAT.md | 23 ++ .../CREATE_SAMPLE_ORGANIZATION_MUTATION.md | 15 + .../variables/EDIT_CHAT_MESSAGE.md | 9 + .../variables/JOIN_PUBLIC_ORGANIZATION.md | 9 + .../variables/MARK_CHAT_MESSAGES_AS_READ.md | 9 + .../variables/MESSAGE_SENT_TO_CHAT.md | 9 + .../variables/PLUGIN_SUBSCRIPTION.md | 15 + .../variables/REMOVE_CUSTOM_FIELD.md | 23 ++ .../REMOVE_SAMPLE_ORGANIZATION_MUTATION.md | 15 + .../variables/SEND_MEMBERSHIP_REQUEST.md | 9 + .../variables/SEND_MESSAGE_TO_CHAT.md | 9 + .../variables/TOGGLE_PINNED_POST.md | 19 + .../variables/UPDATE_CHAT.md | 9 + .../UPDATE_USER_ROLE_IN_ORG_MUTATION.md | 27 ++ .../PledgeMutation/variables/CREATE_PlEDGE.md | 39 +++ .../PledgeMutation/variables/DELETE_PLEDGE.md | 19 + .../PledgeMutation/variables/UPDATE_PLEDGE.md | 35 ++ .../variables/ADD_PEOPLE_TO_TAG.md | 19 + .../TagMutations/variables/ASSIGN_TO_TAGS.md | 19 + .../TagMutations/variables/CREATE_USER_TAG.md | 27 ++ .../variables/REMOVE_FROM_TAGS.md | 19 + .../TagMutations/variables/REMOVE_USER_TAG.md | 15 + .../variables/UNASSIGN_USER_TAG.md | 19 + .../TagMutations/variables/UPDATE_USER_TAG.md | 19 + .../variables/CREATE_VENUE_MUTATION.md | 31 ++ .../variables/DELETE_VENUE_MUTATION.md | 15 + .../variables/UPDATE_VENUE_MUTATION.md | 31 ++ .../ACCEPT_ORGANIZATION_REQUEST_MUTATION.md | 9 + .../variables/ADDRESS_DETAILS_FRAGMENT.md | 9 + .../mutations/variables/ADD_ADMIN_MUTATION.md | 9 + .../variables/ADD_ADVERTISEMENT_MUTATION.md | 9 + .../variables/ADD_MEMBER_MUTATION.md | 9 + .../variables/ADD_PLUGIN_MUTATION.md | 13 + .../variables/BLOCK_USER_MUTATION.md | 9 + .../variables/CREATE_EVENT_MUTATION.md | 9 + .../variables/CREATE_ORGANIZATION_MUTATION.md | 9 + .../variables/CREATE_POST_MUTATION.md | 9 + .../variables/DELETE_ADVERTISEMENT_BY_ID.md | 9 + .../variables/DELETE_EVENT_MUTATION.md | 9 + .../variables/DELETE_ORGANIZATION_MUTATION.md | 9 + .../variables/DELETE_POST_MUTATION.md | 9 + .../variables/DONATE_TO_ORGANIZATION.md | 9 + .../variables/FORGOT_PASSWORD_MUTATION.md | 9 + .../variables/GENERATE_OTP_MUTATION.md | 9 + .../mutations/variables/LIKE_POST.md | 9 + .../mutations/variables/LOGIN_MUTATION.md | 9 + .../mutations/variables/RECAPTCHA_MUTATION.md | 9 + .../variables/REFRESH_TOKEN_MUTATION.md | 9 + .../mutations/variables/REGISTER_EVENT.md | 9 + .../REJECT_ORGANIZATION_REQUEST_MUTATION.md | 9 + .../variables/REMOVE_ADMIN_MUTATION.md | 9 + .../variables/REMOVE_MEMBER_MUTATION.md | 9 + .../mutations/variables/RESET_COMMUNITY.md | 9 + .../variables/REVOKE_REFRESH_TOKEN.md | 9 + .../mutations/variables/SIGNUP_MUTATION.md | 9 + .../variables/UNBLOCK_USER_MUTATION.md | 9 + .../mutations/variables/UNLIKE_POST.md | 9 + .../UPDATE_ADVERTISEMENT_MUTATION.md | 9 + .../mutations/variables/UPDATE_COMMUNITY.md | 9 + .../variables/UPDATE_EVENT_MUTATION.md | 9 + .../UPDATE_INSTALL_STATUS_PLUGIN_MUTATION.md | 13 + .../variables/UPDATE_ORGANIZATION_MUTATION.md | 9 + .../UPDATE_ORG_STATUS_PLUGIN_MUTATION.md | 13 + .../variables/UPDATE_POST_MUTATION.md | 9 + .../variables/UPDATE_SESSION_TIMEOUT.md | 9 + .../variables/UPDATE_USER_MUTATION.md | 9 + .../UPDATE_USER_PASSWORD_MUTATION.md | 9 + .../variables/ACTION_ITEM_CATEGORY_LIST.md | 19 + .../variables/ACTION_ITEMS_BY_USER.md | 9 + .../variables/ACTION_ITEM_LIST.md | 35 ++ .../variables/AGENDA_ITEM_CATEGORY_LIST.md | 19 + .../variables/AgendaItemByEvent.md | 9 + .../variables/AgendaItemByOrganization.md | 9 + .../variables/EVENT_VOLUNTEER_GROUP_LIST.md | 9 + .../variables/EVENT_VOLUNTEER_LIST.md | 23 ++ .../variables/USER_VOLUNTEER_MEMBERSHIP.md | 9 + .../variables/VOLUNTEER_RANKING.md | 9 + .../variables/ORGANIZATION_ADMINS_LIST.md | 19 + .../ORGANIZATION_ADVERTISEMENT_LIST.md | 9 + .../variables/ORGANIZATION_FUNDS.md | 19 + .../variables/ORGANIZATION_POST_LIST.md | 31 ++ .../variables/ORGANIZATION_USER_TAGS_LIST.md | 35 ++ .../variables/USER_CREATED_ORGANIZATIONS.md | 19 + .../variables/USER_JOINED_ORGANIZATIONS.md | 19 + .../variables/USER_ORGANIZATION_CONNECTION.md | 31 ++ .../variables/VENUE_LIST.md | 19 + .../variables/ADVERTISEMENTS_GET.md | 15 + .../PlugInQueries/variables/CHATS_LIST.md | 9 + .../PlugInQueries/variables/CHAT_BY_ID.md | 19 + .../variables/GROUP_CHAT_LIST.md | 9 + .../variables/IS_SAMPLE_ORGANIZATION_QUERY.md | 19 + .../variables/ORGANIZATION_CUSTOM_FIELDS.md | 19 + .../ORGANIZATION_EVENTS_CONNECTION.md | 39 +++ .../PlugInQueries/variables/PLUGIN_GET.md | 15 + .../variables/UNREAD_CHAT_LIST.md | 9 + .../variables/USER_EVENTS_VOLUNTEER.md | 9 + .../Queries/Queries/variables/ADMIN_LIST.md | 9 + .../variables/BLOCK_PAGE_MEMBER_LIST.md | 9 + .../Queries/Queries/variables/CHECK_AUTH.md | 9 + .../Queries/variables/EVENT_ATTENDEES.md | 9 + .../Queries/variables/EVENT_CHECKINS.md | 9 + .../Queries/variables/EVENT_DETAILS.md | 9 + .../Queries/variables/EVENT_FEEDBACKS.md | 9 + .../Queries/variables/EVENT_REGISTRANTS.md | 9 + .../Queries/variables/GET_COMMUNITY_DATA.md | 9 + .../GET_COMMUNITY_SESSION_TIMEOUT_DATA.md | 9 + .../Queries/variables/MEMBERSHIP_REQUEST.md | 9 + .../Queries/Queries/variables/MEMBERS_LIST.md | 9 + .../Queries/variables/ORGANIZATIONS_LIST.md | 9 + .../ORGANIZATIONS_MEMBER_CONNECTION_LIST.md | 9 + .../variables/ORGANIZATION_CONNECTION_LIST.md | 9 + .../ORGANIZATION_DONATION_CONNECTION_LIST.md | 9 + .../ORGANIZATION_EVENT_CONNECTION_LIST.md | 9 + .../variables/ORGANIZATION_EVENT_LIST.md | 9 + .../Queries/variables/ORGANIZATION_LIST.md | 9 + .../Queries/variables/RECURRING_EVENTS.md | 9 + .../variables/USERS_CONNECTION_LIST.md | 9 + .../Queries/Queries/variables/USER_DETAILS.md | 9 + .../Queries/Queries/variables/USER_LIST.md | 9 + .../Queries/variables/USER_LIST_FOR_TABLE.md | 9 + .../Queries/variables/USER_LIST_REQUEST.md | 9 + .../variables/USER_ORGANIZATION_LIST.md | 9 + .../fundQueries/variables/FUND_CAMPAIGN.md | 9 + .../variables/FUND_CAMPAIGN_PLEDGE.md | 9 + .../fundQueries/variables/FUND_LIST.md | 23 ++ .../variables/USER_FUND_CAMPAIGNS.md | 9 + .../fundQueries/variables/USER_PLEDGES.md | 9 + .../variables/USER_TAGS_ASSIGNED_MEMBERS.md | 19 + .../USER_TAGS_MEMBERS_TO_ASSIGN_TO.md | 19 + .../variables/USER_TAG_SUB_TAGS.md | 19 + .../AddOn/AddOn/functions/default.md | 25 ++ .../AddOnEntry/functions/default.md | 41 +++ .../variables/ADD_ON_ENTRY_MOCK.md | 63 ++++ .../AddOnRegister/functions/default.md | 30 ++ .../AddOnStore/functions/default.md | 23 ++ .../Action/Action/functions/default.md | 33 ++ .../MainContent/functions/default.md | 33 ++ .../SidePanel/SidePanel/functions/default.md | 33 ++ .../services/Plugin.helper/classes/default.md | 75 ++++ .../services/Render.helper/classes/default.md | 17 + .../AddPeopleToTag/functions/default.md | 29 ++ .../InterfaceAddPeopleToTagProps.md | 57 +++ .../AddPeopleToTagsMocks/variables/MOCKS.md | 9 + .../variables/MOCKS_ERROR.md | 55 +++ .../Advertisements/functions/default.md | 13 + .../AdvertisementEntry/functions/default.md | 26 ++ .../functions/default.md | 34 ++ .../functions/default.md | 45 +++ .../variables/MOCKS.md | 9 + .../variables/MOCKS_ERROR_MUTATIONS.md | 9 + .../variables/props.md | 23 ++ .../variables/props2.md | 23 ++ .../AgendaItemsContainer/functions/default.md | 41 +++ .../variables/MOCKS.md | 9 + .../variables/MOCKS_ERROR.md | 9 + .../variables/props.md | 27 ++ .../variables/props2.md | 27 ++ .../functions/default.md | 32 ++ .../functions/default.md | 32 ++ .../functions/default.md | 33 ++ .../functions/default.md | 33 ++ .../Avatar/Avatar/functions/default.md | 24 ++ .../functions/default.md | 26 ++ .../CheckInModal/functions/CheckInModal.md | 24 ++ .../functions/CheckInWrapper.md | 25 ++ .../CheckIn/TableRow/functions/TableRow.md | 30 ++ .../mocks/variables/checkInMutationSuccess.md | 47 +++ .../variables/checkInMutationUnsuccess.md | 35 ++ .../mocks/variables/checkInQueryMock.md | 35 ++ .../tagTemplate/variables/tagTemplate.md | 9 + .../interfaces/InterfaceAttendeeCheckIn.md | 39 +++ .../InterfaceAttendeeQueryResponse.md | 23 ++ .../types/interfaces/InterfaceModalProp.md | 35 ++ .../types/interfaces/InterfaceTableCheckIn.md | 55 +++ .../types/interfaces/InterfaceTableData.md | 31 ++ .../CheckIn/types/interfaces/InterfaceUser.md | 31 ++ .../CollapsibleDropdown/functions/default.md | 23 ++ .../InterfaceCollapsibleDropdown.md | 31 ++ .../ContriStats/functions/default.md | 23 ++ .../CurrentHourIndicator/functions/default.md | 17 + .../DynamicDropDown/functions/default.md | 30 ++ .../functions/default.md | 27 ++ .../EventCalendar/functions/default.md | 29 ++ .../EventHeader/functions/default.md | 24 ++ .../YearlyEventCalender/functions/default.md | 36 ++ .../constants/variables/holidays.md | 23 ++ .../constants/variables/hours.md | 9 + .../constants/variables/months.md | 9 + .../constants/variables/weekdays.md | 9 + .../EventDashboardScreen/functions/default.md | 18 + .../EventListCard/functions/default.md | 25 ++ .../interfaces/InterfaceEventListCardProps.md | 181 ++++++++++ .../variables/ERROR_MOCKS.md | 31 ++ .../EventListCardMocks/variables/MOCKS.md | 9 + .../EventListCardModals/functions/default.md | 26 ++ .../EventListCardProps/variables/props.md | 9 + .../variables/MOCKS_WITHOUT_TIME.md | 99 ++++++ .../variables/MOCKS_WITH_TIME.md | 99 ++++++ .../EventDashboard/functions/default.md | 27 ++ .../EventAgendaItems/functions/default.md | 27 ++ .../EventAgendaItemsMocks/variables/MOCKS.md | 9 + .../variables/MOCKS_ERROR_MUTATION.md | 9 + .../variables/MOCKS_ERROR_QUERY.md | 9 + .../Attendance.mocks/variables/MOCKS.md | 39 +++ .../Attendance.mocks/variables/MOCKS_ERROR.md | 27 ++ .../AttendedEventList/functions/default.md | 33 ++ .../EventAttendance/functions/default.md | 18 + .../functions/AttendanceStatisticsModal.md | 34 ++ ...InterfaceAttendanceStatisticsModalProps.md | 73 ++++ .../interfaces/InterfaceEvent.md | 187 ++++++++++ .../interfaces/InterfaceMember.md | 95 +++++ .../interfaces/InterfaceRecurringEvent.md | 87 +++++ .../EventRegistrants/functions/default.md | 18 + .../variables/REGISTRANTS_MOCKS.md | 9 + .../variables/REGISTRANTS_MOCKS_ERROR.md | 31 ++ .../AddOnSpotAttendee/functions/default.md | 33 ++ .../functions/EventRegistrantsModal.md | 24 ++ .../functions/EventRegistrantsWrapper.md | 23 ++ .../EventStats/functions/EventStats.md | 24 ++ .../functions/EventStatsWrapper.md | 25 ++ .../AverageRating/functions/AverageRating.md | 26 ++ .../Feedback/functions/FeedbackStats.md | 26 ++ .../Review/functions/ReviewStats.md | 26 ++ .../GroupChatDetails/functions/default.md | 23 ++ .../HolidayCard/functions/default.md | 25 ++ .../IconComponent/functions/default.md | 25 ++ .../interfaces/InterfaceIconComponent.md | 39 +++ .../InfiniteScrollLoader/functions/default.md | 15 + .../LeftDrawer/functions/default.md | 23 ++ .../interfaces/InterfaceLeftDrawerProps.md | 23 ++ .../LeftDrawerOrg/functions/default.md | 23 ++ .../interfaces/InterfaceLeftDrawerProps.md | 39 +++ .../Loader/Loader/functions/default.md | 23 ++ .../LoginPortalToggle/functions/default.md | 25 ++ .../functions/default.md | 19 + .../functions/default.md | 19 + .../interfaces/InterfaceCardItem.md | 86 +++++ .../functions/default.md | 29 ++ .../functions/CustomTableCell.md | 35 ++ .../MemberRequestCard/functions/default.md | 25 ++ .../NotFound/NotFound/functions/default.md | 23 ++ .../OrgAdminListCard/functions/default.md | 23 ++ .../OrgContriCards/functions/default.md | 28 ++ .../OrgDelete/OrgDelete/functions/default.md | 19 + .../OrgListCard/functions/default.md | 29 ++ .../interfaces/InterfaceOrgListCardProps.md | 17 + .../TruncatedText/functions/default.md | 45 +++ .../useDebounce/functions/default.md | 59 ++++ .../OrgPeopleListCard/functions/default.md | 28 ++ .../DeletePostModal/functions/default.md | 29 ++ .../OrgPostCard/functions/default.md | 19 + .../CategoryModal/functions/default.md | 35 ++ .../InterfaceActionItemCategoryModal.md | 72 ++++ .../functions/default.md | 32 ++ .../variables/MOCKS.md | 9 + .../variables/MOCKS_EMPTY.md | 51 +++ .../variables/MOCKS_ERROR.md | 9 + .../functions/default.md | 33 ++ .../functions/default.md | 33 ++ .../functions/default.md | 33 ++ .../functions/default.md | 33 ++ .../functions/default.md | 35 ++ ...S_ERROR_AGENDA_ITEM_CATEGORY_LIST_QUERY.md | 39 +++ .../variables/MOCKS_ERROR_MUTATION.md | 9 + .../variables/MOCKS.md | 9 + .../DeleteOrg/DeleteOrg/functions/default.md | 22 ++ .../GeneralSettings/functions/default.md | 35 ++ .../functions/default.md | 20 ++ .../OrgUpdate/OrgUpdate/functions/default.md | 29 ++ .../OrgUpdateMocks/variables/MOCKS.md | 9 + .../variables/MOCKS_ERROR_ORGLIST.md | 31 ++ .../variables/MOCKS_ERROR_UPDATE_ORGLIST.md | 9 + .../OrganizationCard/functions/default.md | 25 ++ .../functions/default.md | 23 ++ .../CardItem/functions/default.md | 25 ++ .../CardItem/interfaces/InterfaceCardItem.md | 81 +++++ .../CardItemLoading/functions/default.md | 17 + .../DashboardCard/functions/default.md | 33 ++ .../DashboardCardLoading/functions/default.md | 17 + .../OrganizationScreen/functions/default.md | 22 ++ .../Pagination/functions/default.md | 29 ++ .../PaginationList/functions/default.md | 22 ++ .../ProfileDropdown/functions/default.md | 24 ++ .../functions/default.md | 39 +++ .../RecurrenceOptions/functions/default.md | 47 +++ .../RequestsTableItem/functions/default.md | 29 ++ .../interfaces/InterfaceRequestsListItem.md | 37 ++ .../RequestsTableItemMocks/variables/MOCKS.md | 9 + .../SecuredRoute/functions/default.md | 20 ++ .../SuperAdminScreen/functions/default.md | 18 + .../TableLoader/functions/default.md | 27 ++ .../interfaces/InterfaceTableLoader.md | 31 ++ .../TagActions/functions/default.md | 29 ++ .../interfaces/InterfaceTagActionsProps.md | 53 +++ .../TagActionsMocks/variables/MOCKS.md | 9 + .../MOCKS_ERROR_ORGANIZATION_TAGS_QUERY.md | 47 +++ .../variables/MOCKS_ERROR_SUBTAGS_QUERY.md | 9 + .../TagActions/TagNode/functions/default.md | 31 ++ .../TagNodeMocks/variables/MOCKS1.md | 9 + .../variables/MOCKS_ERROR_SUBTAGS_QUERY1.md | 35 ++ .../UpdateSession/functions/default.md | 29 ++ .../UserListCard/functions/default.md | 26 ++ .../UserPasswordUpdate/functions/default.md | 36 ++ .../variables/MOCKS.md | 9 + .../ChatRoom/ChatRoom/functions/default.md | 19 + .../CommentCard/functions/default.md | 28 ++ .../ContactCard/functions/default.md | 29 ++ .../CreateDirectChat/functions/default.md | 19 + .../CreateGroupChat/functions/default.md | 19 + .../DonationCard/functions/default.md | 28 ++ .../EventCard/EventCard/functions/default.md | 29 ++ .../OrganizationCard/functions/default.md | 19 + .../OrganizationNavbar/functions/default.md | 31 ++ .../OrganizationSidebar/functions/default.md | 27 ++ .../PeopleCard/functions/default.md | 32 ++ .../PostCard/PostCard/functions/default.md | 32 ++ .../PromotedPost/functions/default.md | 30 ++ .../Register/Register/functions/default.md | 19 + .../SecuredRouteForUser/functions/default.md | 20 ++ .../StartPostModal/functions/default.md | 28 ++ .../UserNavbar/functions/default.md | 22 ++ .../functions/EventsAttendedByUser.md | 29 ++ .../functions/UserAddressFields.md | 36 ++ .../UserSidebar/functions/default.md | 28 ++ .../interfaces/InterfaceUserSidebarProps.md | 23 ++ .../UserSidebarOrg/functions/default.md | 28 ++ .../InterfaceUserSidebarOrgProps.md | 39 +++ .../DeleteUser/functions/default.md | 32 ++ .../OtherSettings/functions/default.md | 32 ++ .../UserProfile/functions/default.md | 36 ++ .../UserTableItemMocks/variables/MOCKS.md | 9 + .../UserTableItemMocks/variables/MOCKS2.md | 35 ++ .../variables/MOCKS_UPDATE.md | 9 + .../UsersTableItem/functions/default.md | 19 + .../Venues/VenueCard/functions/default.md | 37 ++ .../Venues/VenueModal/functions/default.md | 26 ++ .../interfaces/InterfaceVenueModalProps.md | 63 ++++ .../DummyPlugin/functions/default.md | 20 ++ .../DummyPlugin2/functions/default.md | 19 + .../constants/variables/socialMediaLinks.md | 23 ++ .../reportWebVitals/functions/default.md | 19 + .../BlockUser/BlockUser/functions/default.md | 26 ++ .../CommunityProfile/functions/default.md | 28 ++ .../EventManagement/functions/default.md | 32 ++ .../Requests.mocks/variables/EMPTY_MOCKS.md | 47 +++ .../Requests.mocks/variables/ERROR_MOCKS.md | 9 + .../Requests.mocks/variables/MOCKS.md | 9 + .../variables/UPDATE_ERROR_MOCKS.md | 9 + .../Requests/Requests/functions/default.md | 19 + .../VolunteerContainer/functions/default.md | 19 + .../functions/default.md | 46 +++ .../InterfaceDeleteVolunteerGroupModal.md | 47 +++ .../VolunteerGroupModal/functions/default.md | 52 +++ .../InterfaceVolunteerGroupModal.md | 71 ++++ .../functions/default.md | 39 +++ .../InterfaceVolunteerGroupViewModal.md | 35 ++ .../VolunteerGroups.mocks/variables/MOCKS.md | 9 + .../variables/MOCKS_EMPTY.md | 55 +++ .../variables/MOCKS_ERROR.md | 9 + .../VolunteerGroups/functions/default.md | 18 + .../VolunteerCreateModal/functions/default.md | 47 +++ .../InterfaceVolunteerCreateModal.md | 55 +++ .../VolunteerDeleteModal/functions/default.md | 46 +++ .../InterfaceDeleteVolunteerModal.md | 47 +++ .../VolunteerViewModal/functions/default.md | 39 +++ .../interfaces/InterfaceVolunteerViewModal.md | 35 ++ .../Volunteers.mocks/variables/MOCKS.md | 9 + .../Volunteers.mocks/variables/MOCKS_EMPTY.md | 51 +++ .../Volunteers.mocks/variables/MOCKS_ERROR.md | 9 + .../Volunteers/functions/default.md | 19 + .../ForgotPassword/functions/default.md | 27 ++ .../FundCampaignPledge/functions/default.md | 13 + .../PledgeDeleteModal/functions/default.md | 46 +++ .../interfaces/InterfaceDeletePledgeModal.md | 47 +++ .../PledgeModal/functions/default.md | 51 +++ .../interfaces/InterfacePledgeModal.md | 79 +++++ .../PledgesMocks/variables/EMPTY_MOCKS.md | 9 + .../PledgesMocks/variables/MOCKS.md | 9 + .../variables/MOCKS_DELETE_PLEDGE_ERROR.md | 9 + .../MOCKS_FUND_CAMPAIGN_PLEDGE_ERROR.md | 9 + .../variables/PLEDGE_MODAL_MOCKS.md | 9 + .../variables/EMPTY_MOCKS.md | 55 +++ .../variables/ERROR_MOCKS.md | 47 +++ .../Leaderboard.mocks/variables/MOCKS.md | 55 +++ .../Leaderboard/functions/default.md | 21 ++ .../LoginPage/LoginPage/functions/default.md | 17 + .../EditUserTagModal/functions/default.md | 29 ++ .../InterfaceEditUserTagModalProps.md | 89 +++++ .../ManageTag/ManageTag/functions/default.md | 15 + .../MockAddPeopleToTag/functions/default.md | 29 ++ .../MockTagActions/functions/default.md | 31 ++ .../ManageTagMocks/variables/MOCKS.md | 9 + .../variables/MOCKS_ERROR_ASSIGNED_MEMBERS.md | 63 ++++ .../RemoveUserTagModal/functions/default.md | 29 ++ .../InterfaceRemoveUserTagModalProps.md | 57 +++ .../UnassignUserTagModal/functions/default.md | 29 ++ .../InterfaceUnassignUserTagModalProps.md | 57 +++ .../MemberDetail/functions/default.md | 36 ++ .../MemberDetail/functions/getLanguageName.md | 19 + .../MemberDetail/functions/prettyDate.md | 19 + .../MemberDetailMocks/variables/MOCKS1.md | 9 + .../MemberDetailMocks/variables/MOCKS2.md | 219 ++++++++++++ .../MemberDetailMocks/variables/MOCKS3.md | 219 ++++++++++++ .../OrgContribution/functions/default.md | 17 + .../OrgList/OrgList/functions/default.md | 13 + .../OrgList/OrgListMocks/variables/MOCKS.md | 9 + .../OrgListMocks/variables/MOCKS_ADMIN.md | 9 + .../OrgListMocks/variables/MOCKS_EMPTY.md | 9 + .../variables/MOCKS_WITH_ERROR.md | 9 + .../OrganizationModal/functions/default.md | 31 ++ .../OrgPost/OrgPost/functions/default.md | 19 + .../OrgSettings.mocks/variables/MOCKS.md | 9 + .../OrgSettings/functions/default.md | 21 ++ .../ItemDeleteModal/functions/default.md | 35 ++ .../InterfaceItemDeleteModalProps.md | 49 +++ .../ItemModal/functions/default.md | 35 ++ .../interfaces/InterfaceItemModalProps.md | 73 ++++ .../functions/default.md | 29 ++ .../InterfaceItemUpdateStatusModalProps.md | 47 +++ .../ItemViewModal/functions/default.md | 36 ++ .../interfaces/InterfaceViewModalProps.md | 35 ++ .../variables/MOCKS.md | 9 + .../variables/MOCKS_EMPTY.md | 9 + .../variables/MOCKS_ERROR.md | 9 + .../functions/default.md | 19 + .../variables/actionItemCategory1.md | 19 + .../variables/actionItemCategory2.md | 19 + .../variables/actionItemCategoryListQuery.md | 47 +++ .../variables/baseActionItem.md | 55 +++ .../variables/groupListQuery.md | 43 +++ .../variables/itemWithGroup.md | 9 + .../variables/itemWithUser.md | 9 + .../variables/itemWithUserImage.md | 9 + .../variables/itemWithVolunteer.md | 9 + .../variables/itemWithVolunteerImage.md | 9 + .../variables/memberListQuery.md | 39 +++ .../variables/volunteerListQuery.md | 9 + .../functions/default.md | 19 + .../variables/EMPTY_MOCKS.md | 9 + .../variables/ERROR_MOCKS.md | 9 + .../variables/MOCKS.md | 9 + .../enumerations/ViewType.md | 31 ++ .../OrganizationEvents/functions/default.md | 25 ++ .../variables/MOCKS.md | 9 + .../CampaignModal/functions/default.md | 35 ++ .../interfaces/InterfaceCampaignModal.md | 73 ++++ .../functions/default.md | 43 +++ .../variables/EMPTY_MOCKS.md | 63 ++++ .../variables/MOCKS.md | 9 + .../variables/MOCK_ERROR.md | 9 + .../FundModal/functions/default.md | 57 +++ .../interfaces/InterfaceFundModal.md | 63 ++++ .../OrganizationFunds/functions/default.md | 46 +++ .../OrganizationFundsMocks/variables/MOCKS.md | 9 + .../variables/MOCKS_ERROR.md | 9 + .../variables/NO_FUNDS.md | 47 +++ .../AddMember/functions/default.md | 21 ++ .../MockDataTypes/type-aliases/TestMock.md | 151 ++++++++ .../OrganizationPeople/functions/default.md | 19 + .../OrganizationTags/functions/default.md | 18 + .../OrganizationTagsMocks/variables/MOCKS.md | 9 + .../variables/MOCKS_ERROR.md | 55 +++ .../OrganizationVenues/functions/default.md | 16 + .../PageNotFound/functions/default.md | 17 + .../Requests/Requests/functions/default.md | 16 + .../RequestsMocks/variables/EMPTY_MOCKS.md | 9 + .../variables/EMPTY_REQUEST_MOCKS.md | 9 + .../Requests/RequestsMocks/variables/MOCKS.md | 9 + .../RequestsMocks/variables/MOCKS2.md | 9 + .../RequestsMocks/variables/MOCKS3.md | 9 + .../RequestsMocks/variables/MOCKS4.md | 9 + .../variables/MOCKS_WITH_ERROR.md | 9 + .../SubTags/SubTags/functions/default.md | 18 + .../SubTags/SubTagsMocks/variables/MOCKS.md | 9 + .../variables/MOCKS_ERROR_SUB_TAGS.md | 55 +++ .../Campaigns/Campaigns/functions/default.md | 18 + .../CampaignsMocks/variables/EMPTY_MOCKS.md | 9 + .../CampaignsMocks/variables/MOCKS.md | 9 + .../variables/USER_FUND_CAMPAIGNS_ERROR.md | 9 + .../PledgeModal/functions/default.md | 32 ++ .../interfaces/InterfacePledgeModal.md | 81 +++++ .../UserPortal/Chat/Chat/functions/default.md | 13 + .../Donate/Donate/functions/default.md | 36 ++ .../interfaces/InterfaceDonationCardProps.md | 55 +++ .../Events/Events/functions/default.md | 20 ++ .../LeaveOrganization/functions/default.md | 13 + .../LeaveOrganization/variables/userEmail.md | 9 + .../LeaveOrganization/variables/userId.md | 9 + .../Organizations/functions/default.md | 15 + .../People/People/functions/default.md | 17 + .../Pledges/Pledges/functions/default.md | 30 ++ .../PledgesMocks/variables/EMPTY_MOCKS.md | 9 + .../Pledges/PledgesMocks/variables/MOCKS.md | 9 + .../variables/USER_PLEDGES_ERROR.md | 9 + .../Posts/Posts/functions/default.md | 19 + .../Settings/Settings/functions/default.md | 18 + .../UserScreen/functions/default.md | 19 + .../Actions.mocks/variables/EMPTY_MOCKS.md | 55 +++ .../Actions.mocks/variables/ERROR_MOCKS.md | 47 +++ .../Actions/Actions.mocks/variables/MOCKS.md | 9 + .../Actions/Actions/functions/default.md | 19 + .../Groups/GroupModal/functions/default.md | 49 +++ .../interfaces/InterfaceGroupModal.md | 55 +++ .../Groups.mocks/variables/EMPTY_MOCKS.md | 9 + .../Groups.mocks/variables/ERROR_MOCKS.md | 51 +++ .../Groups/Groups.mocks/variables/MOCKS.md | 9 + .../variables/UPDATE_ERROR_MOCKS.md | 9 + .../Groups/Groups/functions/default.md | 18 + .../variables/EMPTY_MOCKS.md | 51 +++ .../variables/ERROR_MOCKS.md | 9 + .../Invitations.mocks/variables/MOCKS.md | 9 + .../variables/UPDATE_ERROR_MOCKS.md | 9 + .../Invitations/functions/default.md | 18 + .../variables/CREATE_ERROR_MOCKS.md | 9 + .../variables/EMPTY_MOCKS.md | 59 ++++ .../variables/ERROR_MOCKS.md | 51 +++ .../UpcomingEvents.mocks/variables/MOCKS.md | 9 + .../UpcomingEvents/functions/default.md | 18 + .../VolunteerManagement/functions/default.md | 23 ++ .../screens/Users/Users/functions/default.md | 53 +++ .../Users/UsersMocks/variables/EMPTY_MOCKS.md | 9 + .../Users/UsersMocks/variables/MOCKS.md | 9 + .../Users/UsersMocks/variables/MOCKS2.md | 9 + .../functions/default.md | 13 + .../askAndUpdatePort/functions/default.md | 13 + .../functions/askForCustomPort.md | 13 + .../functions/reservedPortWarning.md | 19 + .../functions/validatePort.md | 19 + .../functions/askAndUpdateTalawaApiUrl.md | 13 + .../askForDocker/functions/askForDocker.md | 13 + .../functions/askForTalawaApiUrl.md | 13 + .../functions/checkConnection.md | 19 + .../checkEnvFile/functions/checkEnvFile.md | 13 + .../updateEnvFile/functions/default.md | 23 ++ .../functions/validateRecaptcha.md | 19 + .../functions/installPlugin.md | 29 ++ .../action-creators/functions/removePlugin.md | 29 ++ .../functions/updateInstalled.md | 29 ++ .../functions/updatePluginLinks.md | 29 ++ .../functions/updateTargets.md | 29 ++ .../Action/interfaces/InterfaceAction.md | 23 ++ .../state/hooks/functions/useAppDispatch.md | 23 ++ .../state/reducers/functions/reducers.md | 51 +++ .../pluginReducer/functions/default.md | 23 ++ .../routesReducer/functions/default.md | 37 ++ .../type-aliases/ComponentType.md | 27 ++ .../type-aliases/SubTargetType.md | 27 ++ .../routesReducer/type-aliases/TargetsType.md | 23 ++ .../state/reducers/type-aliases/RootState.md | 9 + .../userRoutesReducer/functions/default.md | 37 ++ .../type-aliases/ComponentType.md | 27 ++ .../type-aliases/SubTargetType.md | 27 ++ .../type-aliases/TargetsType.md | 23 ++ .../state/store/type-aliases/AppDispatch.md | 9 + .../auto-docs/state/store/variables/store.md | 9 + .../SortingButton/functions/default.md | 36 ++ .../StaticMockLink/classes/StaticMockLink.md | 96 +++++ .../functions/mockSingleLink.md | 19 + .../interfaces/InterfaceMockApolloLink.md | 19 + .../functions/exportDemographicsToCSV.md | 27 ++ .../utils/chartToPdf/functions/exportToCSV.md | 23 ++ .../chartToPdf/functions/exportTrendsToCSV.md | 35 ++ .../convertToBase64/functions/default.md | 19 + .../currency/variables/currencyOptions.md | 19 + .../currency/variables/currencySymbols.md | 13 + .../dateFormatter/functions/formatDate.md | 19 + .../errorHandler/functions/errorHandler.md | 27 ++ .../utils/fieldTypes/variables/default.md | 9 + .../variables/countryOptions.md | 19 + .../variables/educationGradeEnum.md | 19 + .../variables/employmentStatusEnum.md | 19 + .../formEnumFields/variables/genderEnum.md | 19 + .../variables/maritalStatusEnum.md | 19 + .../formEnumFields/variables/userRoleEnum.md | 19 + .../getOrganizationId/functions/default.md | 19 + .../getRefreshToken/functions/refreshToken.md | 13 + .../InterfaceActionItemCategoryInfo.md | 59 ++++ .../InterfaceActionItemCategoryList.md | 15 + .../interfaces/InterfaceActionItemInfo.md | 151 ++++++++ .../interfaces/InterfaceActionItemList.md | 15 + .../InterfaceAddOnSpotAttendeeProps.md | 39 +++ .../interfaces/interfaces/InterfaceAddress.md | 71 ++++ .../InterfaceAgendaItemCategoryInfo.md | 51 +++ .../InterfaceAgendaItemCategoryList.md | 15 + .../interfaces/InterfaceAgendaItemInfo.md | 151 ++++++++ .../interfaces/InterfaceAgendaItemList.md | 15 + .../interfaces/InterfaceBaseEvent.md | 92 +++++ .../interfaces/InterfaceCampaignInfo.md | 63 ++++ .../interfaces/InterfaceCreateFund.md | 47 +++ .../interfaces/InterfaceCreatePledge.md | 47 +++ .../InterfaceCreateVolunteerGroup.md | 47 +++ .../interfaces/InterfaceCustomFieldData.md | 23 ++ .../interfaces/InterfaceEventVolunteerInfo.md | 71 ++++ .../interfaces/InterfaceFormData.md | 47 +++ .../interfaces/InterfaceFundInfo.md | 91 +++++ .../interfaces/interfaces/InterfaceMapType.md | 11 + .../interfaces/InterfaceMemberInfo.md | 67 ++++ .../interfaces/InterfaceMembersList.md | 23 ++ .../InterfaceOrgConnectionInfoType.md | 91 +++++ .../interfaces/InterfaceOrgConnectionType.md | 15 + .../interfaces/InterfacePledgeInfo.md | 75 ++++ .../interfaces/InterfacePostCard.md | 171 +++++++++ .../interfaces/InterfacePostForm.md | 47 +++ .../InterfaceQueryBlockPageMemberListItem.md | 51 +++ .../InterfaceQueryFundCampaignsPledges.md | 67 ++++ ...nterfaceQueryMembershipRequestsListItem.md | 23 ++ ...eQueryOrganizationAdvertisementListItem.md | 43 +++ ...InterfaceQueryOrganizationEventListItem.md | 147 ++++++++ ...InterfaceQueryOrganizationFundCampaigns.md | 59 ++++ .../InterfaceQueryOrganizationListObject.md | 87 +++++ .../InterfaceQueryOrganizationPostListItem.md | 43 +++ .../InterfaceQueryOrganizationUserTags.md | 15 + .../InterfaceQueryOrganizationsListObject.md | 187 ++++++++++ .../interfaces/InterfaceQueryUserListItem.md | 87 +++++ .../InterfaceQueryUserTagChildTags.md | 39 +++ .../InterfaceQueryUserTagsAssignedMembers.md | 39 +++ ...InterfaceQueryUserTagsMembersToAssignTo.md | 23 ++ .../interfaces/InterfaceQueryVenueListItem.md | 47 +++ .../interfaces/interfaces/InterfaceTagData.md | 75 ++++ .../interfaces/InterfaceUserCampaign.md | 55 +++ .../interfaces/InterfaceUserEvents.md | 179 ++++++++++ .../interfaces/InterfaceUserInfo.md | 39 +++ .../interfaces/InterfaceUserType.md | 31 ++ .../interfaces/InterfaceVolunteerGroupInfo.md | 123 +++++++ .../InterfaceVolunteerMembership.md | 83 +++++ .../interfaces/InterfaceVolunteerRank.md | 51 +++ .../languages/variables/languageArray.md | 9 + .../utils/languages/variables/languages.md | 23 ++ .../linkValidator/functions/isValidLink.md | 19 + .../InterfaceOrganizationSubTagsQuery.md | 81 +++++ .../InterfaceOrganizationTagsQuery.md | 81 +++++ .../InterfaceTagAssignedMembersQuery.md | 81 +++++ .../InterfaceTagUsersToAssignToQuery.md | 81 +++++ .../type-aliases/SortedByType.md | 9 + .../type-aliases/TagActionType.md | 9 + .../variables/TAGS_QUERY_DATA_CHUNK_SIZE.md | 9 + .../variables/dataGridStyle.md | 103 ++++++ .../recurrenceConstants/variables/Days.md | 9 + .../variables/allInstances.md | 9 + .../recurrenceConstants/variables/dayNames.md | 39 +++ .../variables/daysOptions.md | 9 + .../variables/endsAfter.md | 9 + .../variables/endsNever.md | 9 + .../recurrenceConstants/variables/endsOn.md | 9 + .../variables/frequencies.md | 27 ++ .../variables/mondayToFriday.md | 9 + .../variables/monthNames.md | 9 + .../variables/recurrenceEndOptions.md | 9 + .../recurringEventMutationOptions.md | 9 + .../variables/thisAndFollowingInstances.md | 9 + .../variables/thisInstance.md | 9 + .../variables/weekDayOccurences.md | 9 + .../recurrenceTypes/enumerations/Frequency.md | 39 +++ .../enumerations/RecurrenceEndOption.md | 31 ++ .../RecurringEventMutationType.md | 31 ++ .../recurrenceTypes/enumerations/WeekDays.md | 63 ++++ .../interfaces/InterfaceRecurrenceRule.md | 63 ++++ .../InterfaceRecurrenceRuleState.md | 63 ++++ .../functions/getRecurrenceRuleText.md | 19 + .../functions/getWeekDayOccurenceInMonth.md | 19 + .../functions/hasRecurrenceRuleChanged.md | 23 ++ .../functions/haveInstanceDatesChanged.md | 31 ++ .../functions/isLastOccurenceOfWeekDay.md | 19 + .../variables/dateTimeFields.md | 19 + .../variables/requestMiddleware.md | 9 + .../variables/responseMiddleware.md | 9 + .../useLocalstorage/functions/getItem.md | 31 ++ .../functions/getStorageKey.md | 31 ++ .../useLocalstorage/functions/removeItem.md | 29 ++ .../useLocalstorage/functions/setItem.md | 35 ++ .../functions/useLocalStorage.md | 25 ++ .../utils/useSession/functions/default.md | 24 ++ fix-readme-links.js | 25 ++ package-lock.json | 330 +++++++++++++----- package.json | 9 +- talawa-admin-docs/.nojekyll | 1 - talawa-admin-docs/Dockerfile | 0 talawa-admin-docs/README.md | 52 --- ..._support_services_Plugin_helper.default.md | 75 ---- ..._support_services_Render_helper.default.md | 21 -- ...ts_EventCalendar_EventCalendar.ViewType.md | 32 -- ..._CheckIn_types.InterfaceAttendeeCheckIn.md | 43 --- ...In_types.InterfaceAttendeeQueryResponse.md | 28 -- ...onents_CheckIn_types.InterfaceModalProp.md | 51 --- ...nts_CheckIn_types.InterfaceTableCheckIn.md | 65 ---- ...onents_CheckIn_types.InterfaceTableData.md | 43 --- .../components_CheckIn_types.InterfaceUser.md | 43 --- ...leDropdown.InterfaceCollapsibleDropdown.md | 32 -- ...nt_IconComponent.InterfaceIconComponent.md | 54 --- ...eftDrawerEvent.InterfaceLeftDrawerProps.md | 53 --- ...eftDrawerEventWrapper.InterfacePropType.md | 42 --- ..._LeftDrawerOrg.InterfaceLeftDrawerProps.md | 65 ---- ...wer_LeftDrawer.InterfaceLeftDrawerProps.md | 43 --- ...d_OrgListCard.InterfaceOrgListCardProps.md | 21 -- ...eFieldSettings.InterfaceCustomFieldData.md | 32 -- ...ionDashCards_CardItem.InterfaceCardItem.md | 87 ----- ...Screen.InterfaceOrganizationScreenProps.md | 43 --- ...inScreen.InterfaceSuperAdminScreenProps.md | 43 --- ...Loader_TableLoader.InterfaceTableLoader.md | 43 --- talawa-admin-docs/modules.md | 219 ------------ .../modules/components_AddOn_AddOn.md | 29 -- .../modules/components_AddOn_AddOn_test.md | 3 - ...onents_AddOn_core_AddOnEntry_AddOnEntry.md | 29 -- ...s_AddOn_core_AddOnEntry_AddOnEntryMocks.md | 19 - ...s_AddOn_core_AddOnEntry_AddOnEntry_test.md | 3 - ..._AddOn_core_AddOnRegister_AddOnRegister.md | 29 -- ...n_core_AddOnRegister_AddOnRegister_test.md | 3 - ...onents_AddOn_core_AddOnStore_AddOnStore.md | 23 -- ...s_AddOn_core_AddOnStore_AddOnStore_test.md | 3 - ..._AddOn_support_components_Action_Action.md | 29 -- ...n_support_components_Action_Action_test.md | 3 - ...port_components_MainContent_MainContent.md | 29 -- ...components_MainContent_MainContent_test.md | 3 - ..._support_components_SidePanel_SidePanel.md | 29 -- ...ort_components_SidePanel_SidePanel_test.md | 3 - ...ts_AddOn_support_services_Plugin_helper.md | 9 - ...ts_AddOn_support_services_Render_helper.md | 9 - ...omponents_Advertisements_Advertisements.md | 23 -- ...ents_Advertisements_Advertisements_test.md | 3 - ...e_AdvertisementEntry_AdvertisementEntry.md | 29 -- ...ertisementEntry_AdvertisementEntry_test.md | 3 - ...rtisementRegister_AdvertisementRegister.md | 29 -- ...mentRegister_AdvertisementRegister_test.md | 3 - ...LanguageDropdown_ChangeLanguageDropDown.md | 50 --- ...ageDropdown_ChangeLanguageDropdown_test.md | 3 - .../components_CheckIn_CheckInModal.md | 29 -- .../components_CheckIn_CheckInModal_test.md | 3 - .../components_CheckIn_CheckInWrapper.md | 29 -- .../components_CheckIn_CheckInWrapper_test.md | 3 - .../modules/components_CheckIn_TableRow.md | 31 -- .../components_CheckIn_TableRow_test.md | 3 - .../modules/components_CheckIn_mocks.md | 41 --- .../modules/components_CheckIn_tagTemplate.md | 19 - .../modules/components_CheckIn_types.md | 14 - ...CollapsibleDropdown_CollapsibleDropdown.md | 33 -- ...psibleDropdown_CollapsibleDropdown_test.md | 3 - .../components_ContriStats_ContriStats.md | 29 -- ...components_ContriStats_ContriStats_test.md | 3 - ...rrentHourIndicator_CurrentHourIndicator.md | 23 -- ...HourIndicator_CurrentHourIndicator_test.md | 3 - .../modules/components_DeleteOrg_DeleteOrg.md | 23 -- .../components_DeleteOrg_DeleteOrg_test.md | 3 - ...omFieldDropDown_EditCustomFieldDropDown.md | 29 -- ...ldDropDown_EditCustomFieldDropDown_test.md | 3 - .../components_EventCalendar_EventCalendar.md | 34 -- ...onents_EventCalendar_EventCalendar_test.md | 3 - .../components_EventListCard_EventListCard.md | 29 -- ...onents_EventListCard_EventListCard_test.md | 3 - ...tRegistrantsModal_EventRegistrantsModal.md | 29 -- ...strantsModal_EventRegistrantsModal_test.md | 3 - ...egistrantsModal_EventRegistrantsWrapper.md | 29 -- ...rantsModal_EventRegistrantsWrapper_test.md | 3 - .../components_EventStats_EventStats.md | 29 -- ...components_EventStats_EventStatsWrapper.md | 29 -- ...nents_EventStats_EventStatsWrapper_test.md | 3 - .../components_EventStats_EventStats_test.md | 3 - ...nts_EventStats_Statistics_AverageRating.md | 29 -- ...ventStats_Statistics_AverageRating_test.md | 3 - ...mponents_EventStats_Statistics_Feedback.md | 29 -- ...nts_EventStats_Statistics_Feedback_test.md | 3 - ...components_EventStats_Statistics_Review.md | 29 -- ...nents_EventStats_Statistics_Review_test.md | 3 - .../components_IconComponent_IconComponent.md | 33 -- ...onents_IconComponent_IconComponent_test.md | 3 - ...ponents_LeftDrawerEvent_LeftDrawerEvent.md | 33 -- ..._LeftDrawerEvent_LeftDrawerEventWrapper.md | 33 -- ...DrawerEvent_LeftDrawerEventWrapper_test.md | 3 - ...ts_LeftDrawerEvent_LeftDrawerEvent_test.md | 3 - .../components_LeftDrawerOrg_LeftDrawerOrg.md | 33 -- ...onents_LeftDrawerOrg_LeftDrawerOrg_test.md | 3 - .../components_LeftDrawer_LeftDrawer.md | 33 -- .../components_LeftDrawer_LeftDrawer_test.md | 3 - .../modules/components_Loader_Loader.md | 29 -- .../modules/components_Loader_Loader_test.md | 3 - ...nts_LoginPortalToggle_LoginPortalToggle.md | 23 -- ...oginPortalToggle_LoginPortalToggle_test.md | 3 - ...nts_MemberRequestCard_MemberRequestCard.md | 29 -- ...emberRequestCard_MemberRequestCard_test.md | 3 - .../modules/components_NotFound_NotFound.md | 29 -- .../components_NotFound_NotFound_test.md | 3 - ...nents_OrgAdminListCard_OrgAdminListCard.md | 29 -- ..._OrgAdminListCard_OrgAdminListCard_test.md | 3 - ...omponents_OrgContriCards_OrgContriCards.md | 29 -- ...ents_OrgContriCards_OrgContriCards_test.md | 3 - .../modules/components_OrgDelete_OrgDelete.md | 23 -- .../components_OrgDelete_OrgDelete_test.md | 3 - .../components_OrgListCard_OrgListCard.md | 33 -- ...components_OrgListCard_OrgListCard_test.md | 3 - ...nts_OrgPeopleListCard_OrgPeopleListCard.md | 29 -- ...rgPeopleListCard_OrgPeopleListCard_test.md | 3 - .../components_OrgPostCard_OrgPostCard.md | 29 -- ...components_OrgPostCard_OrgPostCard_test.md | 3 - ...leFieldSettings_OrgProfileFieldSettings.md | 27 -- ...ldSettings_OrgProfileFieldSettings_test.md | 3 - .../modules/components_OrgUpdate_OrgUpdate.md | 29 -- .../components_OrgUpdate_OrgUpdateMocks.md | 41 --- .../components_OrgUpdate_OrgUpdate_test.md | 3 - ...nizationCardStart_OrganizationCardStart.md | 29 -- ...ionCardStart_OrganizationCardStart_test.md | 3 - ...nents_OrganizationCard_OrganizationCard.md | 29 -- ..._OrganizationCard_OrganizationCard_test.md | 3 - ...mponents_OrganizationDashCards_CardItem.md | 33 -- ...s_OrganizationDashCards_CardItemLoading.md | 23 -- ...nts_OrganizationDashCards_CardItem_test.md | 3 - ...nts_OrganizationDashCards_DashboardCard.md | 32 -- ...anizationDashCards_DashboardCardLoading.md | 23 -- ...rganizationDashCards_DashboardCard_test.md | 3 - ...s_OrganizationScreen_OrganizationScreen.md | 33 -- ...anizationScreen_OrganizationScreen_test.md | 3 - ...omponents_PaginationList_PaginationList.md | 29 -- .../components_Pagination_Pagination.md | 29 -- .../components_Pagination_Pagination_test.md | 3 - .../components_SecuredRoute_SecuredRoute.md | 29 -- ...nents_SuperAdminScreen_SuperAdminScreen.md | 33 -- ..._SuperAdminScreen_SuperAdminScreen_test.md | 3 - .../components_TableLoader_TableLoader.md | 33 -- ...components_TableLoader_TableLoader_test.md | 3 - .../components_UserListCard_UserListCard.md | 29 -- ...mponents_UserListCard_UserListCard_test.md | 3 - ...s_UserPasswordUpdate_UserPasswordUpdate.md | 30 -- ...rPasswordUpdate_UserPasswordUpdate_test.md | 3 - ...components_UserPortal_ChatRoom_ChatRoom.md | 29 -- ...nents_UserPortal_ChatRoom_ChatRoom_test.md | 3 - ...ents_UserPortal_CommentCard_CommentCard.md | 29 -- ...UserPortal_CommentCard_CommentCard_test.md | 3 - ...ents_UserPortal_ContactCard_ContactCard.md | 29 -- ...UserPortal_ContactCard_ContactCard_test.md | 3 - ...ts_UserPortal_DonationCard_DonationCard.md | 29 -- ...mponents_UserPortal_EventCard_EventCard.md | 29 -- ...nts_UserPortal_EventCard_EventCard_test.md | 3 - .../components_UserPortal_Login_Login.md | 29 -- .../components_UserPortal_Login_Login_test.md | 3 - ...ortal_OrganizationCard_OrganizationCard.md | 29 -- ..._OrganizationCard_OrganizationCard_test.md | 3 - ...l_OrganizationNavbar_OrganizationNavbar.md | 29 -- ...anizationNavbar_OrganizationNavbar_test.md | 3 - ...OrganizationSidebar_OrganizationSidebar.md | 23 -- ...izationSidebar_OrganizationSidebar_test.md | 3 - ...onents_UserPortal_PeopleCard_PeopleCard.md | 29 -- ...s_UserPortal_PeopleCard_PeopleCard_test.md | 3 - ...components_UserPortal_PostCard_PostCard.md | 29 -- ...nents_UserPortal_PostCard_PostCard_test.md | 3 - ...ts_UserPortal_PromotedPost_PromotedPost.md | 29 -- ...erPortal_PromotedPost_PromotedPost_test.md | 3 - ...components_UserPortal_Register_Register.md | 29 -- ...nents_UserPortal_Register_Register_test.md | 3 - ...SecuredRouteForUser_SecuredRouteForUser.md | 29 -- ...edRouteForUser_SecuredRouteForUser_test.md | 3 - ...onents_UserPortal_UserNavbar_UserNavbar.md | 23 -- ...s_UserPortal_UserNavbar_UserNavbar_test.md | 3 - ...ents_UserPortal_UserSidebar_UserSidebar.md | 23 -- ...UserPortal_UserSidebar_UserSidebar_test.md | 3 - .../components_UserUpdate_UserUpdate.md | 30 -- .../components_UserUpdate_UserUpdate_test.md | 3 - ...nents_UsersTableItem_UserTableItemMocks.md | 19 - ...nents_UsersTableItem_UserTableItem_test.md | 3 - ...omponents_UsersTableItem_UsersTableItem.md | 29 -- .../modules/components_plugins.md | 22 -- ...nents_plugins_DummyPlugin2_DummyPlugin2.md | 23 -- ..._plugins_DummyPlugin2_DummyPlugin2_test.md | 3 - ...ponents_plugins_DummyPlugin_DummyPlugin.md | 23 -- ...ts_plugins_DummyPlugin_DummyPlugin_test.md | 3 - .../modules/screens_BlockUser_BlockUser.md | 23 -- .../screens_BlockUser_BlockUser_test.md | 3 - .../screens_EventDashboard_EventDashboard.md | 23 -- ...ens_EventDashboard_EventDashboard_mocks.md | 30 -- ...eens_EventDashboard_EventDashboard_test.md | 3 - .../screens_ForgotPassword_ForgotPassword.md | 23 -- ...eens_ForgotPassword_ForgotPassword_test.md | 3 - .../modules/screens_LoginPage_LoginPage.md | 23 -- .../screens_LoginPage_LoginPage_test.md | 3 - .../screens_MemberDetail_MemberDetail.md | 72 ---- .../screens_MemberDetail_MemberDetail_test.md | 3 - ...screens_OrgContribution_OrgContribution.md | 23 -- ...ns_OrgContribution_OrgContribution_test.md | 3 - .../modules/screens_OrgList_OrgList.md | 23 -- .../modules/screens_OrgList_OrgListMocks.md | 52 --- .../modules/screens_OrgList_OrgList_test.md | 3 - .../screens_OrgList_OrganizationModal.md | 32 -- .../modules/screens_OrgPost_OrgPost.md | 23 -- .../modules/screens_OrgPost_OrgPost_test.md | 3 - .../screens_OrgSettings_OrgSettings.md | 23 -- .../screens_OrgSettings_OrgSettings_test.md | 3 - ...nizationDashboard_OrganizationDashboard.md | 23 -- ...ionDashboard_OrganizationDashboardMocks.md | 41 --- ...ionDashboard_OrganizationDashboard_test.md | 3 - ...s_OrganizationEvents_OrganizationEvents.md | 23 -- ...anizationEvents_OrganizationEvents_test.md | 3 - ...s_OrganizationPeople_OrganizationPeople.md | 23 -- ...anizationPeople_OrganizationPeople_test.md | 3 - .../screens_PageNotFound_PageNotFound.md | 23 -- .../screens_PageNotFound_PageNotFound_test.md | 3 - .../modules/screens_UserPortal_Chat_Chat.md | 23 -- .../screens_UserPortal_Chat_Chat_test.md | 3 - .../screens_UserPortal_Donate_Donate.md | 23 -- .../screens_UserPortal_Donate_Donate_test.md | 3 - .../screens_UserPortal_Events_Events.md | 23 -- .../screens_UserPortal_Events_Events_test.md | 3 - .../modules/screens_UserPortal_Home_Home.md | 23 -- .../screens_UserPortal_Home_Home_test.md | 3 - ..._UserPortal_Organizations_Organizations.md | 23 -- ...Portal_Organizations_Organizations_test.md | 3 - .../screens_UserPortal_People_People.md | 23 -- .../screens_UserPortal_People_People_test.md | 3 - .../screens_UserPortal_Settings_Settings.md | 23 -- ...reens_UserPortal_Settings_Settings_test.md | 3 - ..._UserPortal_UserLoginPage_UserLoginPage.md | 23 -- ...Portal_UserLoginPage_UserLoginPage_test.md | 3 - .../modules/screens_Users_Users.md | 23 -- .../modules/screens_Users_UsersMocks.md | 41 --- .../modules/screens_Users_Users_test.md | 3 - tsconfig.docs.json | 25 ++ typedoc.json | 27 ++ 955 files changed, 20381 insertions(+), 4853 deletions(-) create mode 100644 docs/docs/auto-docs/App/functions/default.md create mode 100644 docs/docs/auto-docs/Constant/constant/variables/AUTH_TOKEN.md create mode 100644 docs/docs/auto-docs/Constant/constant/variables/BACKEND_URL.md create mode 100644 docs/docs/auto-docs/Constant/constant/variables/REACT_APP_BACKEND_WEBSOCKET_URL.md create mode 100644 docs/docs/auto-docs/Constant/constant/variables/REACT_APP_CUSTOM_PORT.md create mode 100644 docs/docs/auto-docs/Constant/constant/variables/REACT_APP_USE_RECAPTCHA.md create mode 100644 docs/docs/auto-docs/Constant/constant/variables/RECAPTCHA_SITE_KEY.md create mode 100644 docs/docs/auto-docs/GraphQl/Mutations/ActionItemCategoryMutations/variables/CREATE_ACTION_ITEM_CATEGORY_MUTATION.md create mode 100644 docs/docs/auto-docs/GraphQl/Mutations/ActionItemCategoryMutations/variables/UPDATE_ACTION_ITEM_CATEGORY_MUTATION.md create mode 100644 docs/docs/auto-docs/GraphQl/Mutations/ActionItemMutations/variables/CREATE_ACTION_ITEM_MUTATION.md create mode 100644 docs/docs/auto-docs/GraphQl/Mutations/ActionItemMutations/variables/DELETE_ACTION_ITEM_MUTATION.md create mode 100644 docs/docs/auto-docs/GraphQl/Mutations/ActionItemMutations/variables/UPDATE_ACTION_ITEM_MUTATION.md create mode 100644 docs/docs/auto-docs/GraphQl/Mutations/AgendaCategoryMutations/variables/CREATE_AGENDA_ITEM_CATEGORY_MUTATION.md create mode 100644 docs/docs/auto-docs/GraphQl/Mutations/AgendaCategoryMutations/variables/DELETE_AGENDA_ITEM_CATEGORY_MUTATION.md create mode 100644 docs/docs/auto-docs/GraphQl/Mutations/AgendaCategoryMutations/variables/UPDATE_AGENDA_ITEM_CATEGORY_MUTATION.md create mode 100644 docs/docs/auto-docs/GraphQl/Mutations/AgendaItemMutations/variables/CREATE_AGENDA_ITEM_MUTATION.md create mode 100644 docs/docs/auto-docs/GraphQl/Mutations/AgendaItemMutations/variables/DELETE_AGENDA_ITEM_MUTATION.md create mode 100644 docs/docs/auto-docs/GraphQl/Mutations/AgendaItemMutations/variables/UPDATE_AGENDA_ITEM_MUTATION.md create mode 100644 docs/docs/auto-docs/GraphQl/Mutations/CampaignMutation/variables/CREATE_CAMPAIGN_MUTATION.md create mode 100644 docs/docs/auto-docs/GraphQl/Mutations/CampaignMutation/variables/UPDATE_CAMPAIGN_MUTATION.md create mode 100644 docs/docs/auto-docs/GraphQl/Mutations/CommentMutations/variables/CREATE_COMMENT_POST.md create mode 100644 docs/docs/auto-docs/GraphQl/Mutations/CommentMutations/variables/LIKE_COMMENT.md create mode 100644 docs/docs/auto-docs/GraphQl/Mutations/CommentMutations/variables/UNLIKE_COMMENT.md create mode 100644 docs/docs/auto-docs/GraphQl/Mutations/EventAttendeeMutations/variables/ADD_EVENT_ATTENDEE.md create mode 100644 docs/docs/auto-docs/GraphQl/Mutations/EventAttendeeMutations/variables/MARK_CHECKIN.md create mode 100644 docs/docs/auto-docs/GraphQl/Mutations/EventAttendeeMutations/variables/REMOVE_EVENT_ATTENDEE.md create mode 100644 docs/docs/auto-docs/GraphQl/Mutations/EventVolunteerMutation/variables/ADD_VOLUNTEER.md create mode 100644 docs/docs/auto-docs/GraphQl/Mutations/EventVolunteerMutation/variables/CREATE_VOLUNTEER_GROUP.md create mode 100644 docs/docs/auto-docs/GraphQl/Mutations/EventVolunteerMutation/variables/CREATE_VOLUNTEER_MEMBERSHIP.md create mode 100644 docs/docs/auto-docs/GraphQl/Mutations/EventVolunteerMutation/variables/DELETE_VOLUNTEER.md create mode 100644 docs/docs/auto-docs/GraphQl/Mutations/EventVolunteerMutation/variables/DELETE_VOLUNTEER_GROUP.md create mode 100644 docs/docs/auto-docs/GraphQl/Mutations/EventVolunteerMutation/variables/UPDATE_VOLUNTEER_GROUP.md create mode 100644 docs/docs/auto-docs/GraphQl/Mutations/EventVolunteerMutation/variables/UPDATE_VOLUNTEER_MEMBERSHIP.md create mode 100644 docs/docs/auto-docs/GraphQl/Mutations/FundMutation/variables/CREATE_FUND_MUTATION.md create mode 100644 docs/docs/auto-docs/GraphQl/Mutations/FundMutation/variables/UPDATE_FUND_MUTATION.md create mode 100644 docs/docs/auto-docs/GraphQl/Mutations/OrganizationMutations/variables/ADD_CUSTOM_FIELD.md create mode 100644 docs/docs/auto-docs/GraphQl/Mutations/OrganizationMutations/variables/ADD_USER_TO_GROUP_CHAT.md create mode 100644 docs/docs/auto-docs/GraphQl/Mutations/OrganizationMutations/variables/CANCEL_MEMBERSHIP_REQUEST.md create mode 100644 docs/docs/auto-docs/GraphQl/Mutations/OrganizationMutations/variables/CREATE_CHAT.md create mode 100644 docs/docs/auto-docs/GraphQl/Mutations/OrganizationMutations/variables/CREATE_SAMPLE_ORGANIZATION_MUTATION.md create mode 100644 docs/docs/auto-docs/GraphQl/Mutations/OrganizationMutations/variables/EDIT_CHAT_MESSAGE.md create mode 100644 docs/docs/auto-docs/GraphQl/Mutations/OrganizationMutations/variables/JOIN_PUBLIC_ORGANIZATION.md create mode 100644 docs/docs/auto-docs/GraphQl/Mutations/OrganizationMutations/variables/MARK_CHAT_MESSAGES_AS_READ.md create mode 100644 docs/docs/auto-docs/GraphQl/Mutations/OrganizationMutations/variables/MESSAGE_SENT_TO_CHAT.md create mode 100644 docs/docs/auto-docs/GraphQl/Mutations/OrganizationMutations/variables/PLUGIN_SUBSCRIPTION.md create mode 100644 docs/docs/auto-docs/GraphQl/Mutations/OrganizationMutations/variables/REMOVE_CUSTOM_FIELD.md create mode 100644 docs/docs/auto-docs/GraphQl/Mutations/OrganizationMutations/variables/REMOVE_SAMPLE_ORGANIZATION_MUTATION.md create mode 100644 docs/docs/auto-docs/GraphQl/Mutations/OrganizationMutations/variables/SEND_MEMBERSHIP_REQUEST.md create mode 100644 docs/docs/auto-docs/GraphQl/Mutations/OrganizationMutations/variables/SEND_MESSAGE_TO_CHAT.md create mode 100644 docs/docs/auto-docs/GraphQl/Mutations/OrganizationMutations/variables/TOGGLE_PINNED_POST.md create mode 100644 docs/docs/auto-docs/GraphQl/Mutations/OrganizationMutations/variables/UPDATE_CHAT.md create mode 100644 docs/docs/auto-docs/GraphQl/Mutations/OrganizationMutations/variables/UPDATE_USER_ROLE_IN_ORG_MUTATION.md create mode 100644 docs/docs/auto-docs/GraphQl/Mutations/PledgeMutation/variables/CREATE_PlEDGE.md create mode 100644 docs/docs/auto-docs/GraphQl/Mutations/PledgeMutation/variables/DELETE_PLEDGE.md create mode 100644 docs/docs/auto-docs/GraphQl/Mutations/PledgeMutation/variables/UPDATE_PLEDGE.md create mode 100644 docs/docs/auto-docs/GraphQl/Mutations/TagMutations/variables/ADD_PEOPLE_TO_TAG.md create mode 100644 docs/docs/auto-docs/GraphQl/Mutations/TagMutations/variables/ASSIGN_TO_TAGS.md create mode 100644 docs/docs/auto-docs/GraphQl/Mutations/TagMutations/variables/CREATE_USER_TAG.md create mode 100644 docs/docs/auto-docs/GraphQl/Mutations/TagMutations/variables/REMOVE_FROM_TAGS.md create mode 100644 docs/docs/auto-docs/GraphQl/Mutations/TagMutations/variables/REMOVE_USER_TAG.md create mode 100644 docs/docs/auto-docs/GraphQl/Mutations/TagMutations/variables/UNASSIGN_USER_TAG.md create mode 100644 docs/docs/auto-docs/GraphQl/Mutations/TagMutations/variables/UPDATE_USER_TAG.md create mode 100644 docs/docs/auto-docs/GraphQl/Mutations/VenueMutations/variables/CREATE_VENUE_MUTATION.md create mode 100644 docs/docs/auto-docs/GraphQl/Mutations/VenueMutations/variables/DELETE_VENUE_MUTATION.md create mode 100644 docs/docs/auto-docs/GraphQl/Mutations/VenueMutations/variables/UPDATE_VENUE_MUTATION.md create mode 100644 docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/ACCEPT_ORGANIZATION_REQUEST_MUTATION.md create mode 100644 docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/ADDRESS_DETAILS_FRAGMENT.md create mode 100644 docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/ADD_ADMIN_MUTATION.md create mode 100644 docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/ADD_ADVERTISEMENT_MUTATION.md create mode 100644 docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/ADD_MEMBER_MUTATION.md create mode 100644 docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/ADD_PLUGIN_MUTATION.md create mode 100644 docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/BLOCK_USER_MUTATION.md create mode 100644 docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/CREATE_EVENT_MUTATION.md create mode 100644 docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/CREATE_ORGANIZATION_MUTATION.md create mode 100644 docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/CREATE_POST_MUTATION.md create mode 100644 docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/DELETE_ADVERTISEMENT_BY_ID.md create mode 100644 docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/DELETE_EVENT_MUTATION.md create mode 100644 docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/DELETE_ORGANIZATION_MUTATION.md create mode 100644 docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/DELETE_POST_MUTATION.md create mode 100644 docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/DONATE_TO_ORGANIZATION.md create mode 100644 docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/FORGOT_PASSWORD_MUTATION.md create mode 100644 docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/GENERATE_OTP_MUTATION.md create mode 100644 docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/LIKE_POST.md create mode 100644 docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/LOGIN_MUTATION.md create mode 100644 docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/RECAPTCHA_MUTATION.md create mode 100644 docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/REFRESH_TOKEN_MUTATION.md create mode 100644 docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/REGISTER_EVENT.md create mode 100644 docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/REJECT_ORGANIZATION_REQUEST_MUTATION.md create mode 100644 docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/REMOVE_ADMIN_MUTATION.md create mode 100644 docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/REMOVE_MEMBER_MUTATION.md create mode 100644 docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/RESET_COMMUNITY.md create mode 100644 docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/REVOKE_REFRESH_TOKEN.md create mode 100644 docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/SIGNUP_MUTATION.md create mode 100644 docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/UNBLOCK_USER_MUTATION.md create mode 100644 docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/UNLIKE_POST.md create mode 100644 docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/UPDATE_ADVERTISEMENT_MUTATION.md create mode 100644 docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/UPDATE_COMMUNITY.md create mode 100644 docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/UPDATE_EVENT_MUTATION.md create mode 100644 docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/UPDATE_INSTALL_STATUS_PLUGIN_MUTATION.md create mode 100644 docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/UPDATE_ORGANIZATION_MUTATION.md create mode 100644 docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/UPDATE_ORG_STATUS_PLUGIN_MUTATION.md create mode 100644 docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/UPDATE_POST_MUTATION.md create mode 100644 docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/UPDATE_SESSION_TIMEOUT.md create mode 100644 docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/UPDATE_USER_MUTATION.md create mode 100644 docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/UPDATE_USER_PASSWORD_MUTATION.md create mode 100644 docs/docs/auto-docs/GraphQl/Queries/ActionItemCategoryQueries/variables/ACTION_ITEM_CATEGORY_LIST.md create mode 100644 docs/docs/auto-docs/GraphQl/Queries/ActionItemQueries/variables/ACTION_ITEMS_BY_USER.md create mode 100644 docs/docs/auto-docs/GraphQl/Queries/ActionItemQueries/variables/ACTION_ITEM_LIST.md create mode 100644 docs/docs/auto-docs/GraphQl/Queries/AgendaCategoryQueries/variables/AGENDA_ITEM_CATEGORY_LIST.md create mode 100644 docs/docs/auto-docs/GraphQl/Queries/AgendaItemQueries/variables/AgendaItemByEvent.md create mode 100644 docs/docs/auto-docs/GraphQl/Queries/AgendaItemQueries/variables/AgendaItemByOrganization.md create mode 100644 docs/docs/auto-docs/GraphQl/Queries/EventVolunteerQueries/variables/EVENT_VOLUNTEER_GROUP_LIST.md create mode 100644 docs/docs/auto-docs/GraphQl/Queries/EventVolunteerQueries/variables/EVENT_VOLUNTEER_LIST.md create mode 100644 docs/docs/auto-docs/GraphQl/Queries/EventVolunteerQueries/variables/USER_VOLUNTEER_MEMBERSHIP.md create mode 100644 docs/docs/auto-docs/GraphQl/Queries/EventVolunteerQueries/variables/VOLUNTEER_RANKING.md create mode 100644 docs/docs/auto-docs/GraphQl/Queries/OrganizationQueries/variables/ORGANIZATION_ADMINS_LIST.md create mode 100644 docs/docs/auto-docs/GraphQl/Queries/OrganizationQueries/variables/ORGANIZATION_ADVERTISEMENT_LIST.md create mode 100644 docs/docs/auto-docs/GraphQl/Queries/OrganizationQueries/variables/ORGANIZATION_FUNDS.md create mode 100644 docs/docs/auto-docs/GraphQl/Queries/OrganizationQueries/variables/ORGANIZATION_POST_LIST.md create mode 100644 docs/docs/auto-docs/GraphQl/Queries/OrganizationQueries/variables/ORGANIZATION_USER_TAGS_LIST.md create mode 100644 docs/docs/auto-docs/GraphQl/Queries/OrganizationQueries/variables/USER_CREATED_ORGANIZATIONS.md create mode 100644 docs/docs/auto-docs/GraphQl/Queries/OrganizationQueries/variables/USER_JOINED_ORGANIZATIONS.md create mode 100644 docs/docs/auto-docs/GraphQl/Queries/OrganizationQueries/variables/USER_ORGANIZATION_CONNECTION.md create mode 100644 docs/docs/auto-docs/GraphQl/Queries/OrganizationQueries/variables/VENUE_LIST.md create mode 100644 docs/docs/auto-docs/GraphQl/Queries/PlugInQueries/variables/ADVERTISEMENTS_GET.md create mode 100644 docs/docs/auto-docs/GraphQl/Queries/PlugInQueries/variables/CHATS_LIST.md create mode 100644 docs/docs/auto-docs/GraphQl/Queries/PlugInQueries/variables/CHAT_BY_ID.md create mode 100644 docs/docs/auto-docs/GraphQl/Queries/PlugInQueries/variables/GROUP_CHAT_LIST.md create mode 100644 docs/docs/auto-docs/GraphQl/Queries/PlugInQueries/variables/IS_SAMPLE_ORGANIZATION_QUERY.md create mode 100644 docs/docs/auto-docs/GraphQl/Queries/PlugInQueries/variables/ORGANIZATION_CUSTOM_FIELDS.md create mode 100644 docs/docs/auto-docs/GraphQl/Queries/PlugInQueries/variables/ORGANIZATION_EVENTS_CONNECTION.md create mode 100644 docs/docs/auto-docs/GraphQl/Queries/PlugInQueries/variables/PLUGIN_GET.md create mode 100644 docs/docs/auto-docs/GraphQl/Queries/PlugInQueries/variables/UNREAD_CHAT_LIST.md create mode 100644 docs/docs/auto-docs/GraphQl/Queries/PlugInQueries/variables/USER_EVENTS_VOLUNTEER.md create mode 100644 docs/docs/auto-docs/GraphQl/Queries/Queries/variables/ADMIN_LIST.md create mode 100644 docs/docs/auto-docs/GraphQl/Queries/Queries/variables/BLOCK_PAGE_MEMBER_LIST.md create mode 100644 docs/docs/auto-docs/GraphQl/Queries/Queries/variables/CHECK_AUTH.md create mode 100644 docs/docs/auto-docs/GraphQl/Queries/Queries/variables/EVENT_ATTENDEES.md create mode 100644 docs/docs/auto-docs/GraphQl/Queries/Queries/variables/EVENT_CHECKINS.md create mode 100644 docs/docs/auto-docs/GraphQl/Queries/Queries/variables/EVENT_DETAILS.md create mode 100644 docs/docs/auto-docs/GraphQl/Queries/Queries/variables/EVENT_FEEDBACKS.md create mode 100644 docs/docs/auto-docs/GraphQl/Queries/Queries/variables/EVENT_REGISTRANTS.md create mode 100644 docs/docs/auto-docs/GraphQl/Queries/Queries/variables/GET_COMMUNITY_DATA.md create mode 100644 docs/docs/auto-docs/GraphQl/Queries/Queries/variables/GET_COMMUNITY_SESSION_TIMEOUT_DATA.md create mode 100644 docs/docs/auto-docs/GraphQl/Queries/Queries/variables/MEMBERSHIP_REQUEST.md create mode 100644 docs/docs/auto-docs/GraphQl/Queries/Queries/variables/MEMBERS_LIST.md create mode 100644 docs/docs/auto-docs/GraphQl/Queries/Queries/variables/ORGANIZATIONS_LIST.md create mode 100644 docs/docs/auto-docs/GraphQl/Queries/Queries/variables/ORGANIZATIONS_MEMBER_CONNECTION_LIST.md create mode 100644 docs/docs/auto-docs/GraphQl/Queries/Queries/variables/ORGANIZATION_CONNECTION_LIST.md create mode 100644 docs/docs/auto-docs/GraphQl/Queries/Queries/variables/ORGANIZATION_DONATION_CONNECTION_LIST.md create mode 100644 docs/docs/auto-docs/GraphQl/Queries/Queries/variables/ORGANIZATION_EVENT_CONNECTION_LIST.md create mode 100644 docs/docs/auto-docs/GraphQl/Queries/Queries/variables/ORGANIZATION_EVENT_LIST.md create mode 100644 docs/docs/auto-docs/GraphQl/Queries/Queries/variables/ORGANIZATION_LIST.md create mode 100644 docs/docs/auto-docs/GraphQl/Queries/Queries/variables/RECURRING_EVENTS.md create mode 100644 docs/docs/auto-docs/GraphQl/Queries/Queries/variables/USERS_CONNECTION_LIST.md create mode 100644 docs/docs/auto-docs/GraphQl/Queries/Queries/variables/USER_DETAILS.md create mode 100644 docs/docs/auto-docs/GraphQl/Queries/Queries/variables/USER_LIST.md create mode 100644 docs/docs/auto-docs/GraphQl/Queries/Queries/variables/USER_LIST_FOR_TABLE.md create mode 100644 docs/docs/auto-docs/GraphQl/Queries/Queries/variables/USER_LIST_REQUEST.md create mode 100644 docs/docs/auto-docs/GraphQl/Queries/Queries/variables/USER_ORGANIZATION_LIST.md create mode 100644 docs/docs/auto-docs/GraphQl/Queries/fundQueries/variables/FUND_CAMPAIGN.md create mode 100644 docs/docs/auto-docs/GraphQl/Queries/fundQueries/variables/FUND_CAMPAIGN_PLEDGE.md create mode 100644 docs/docs/auto-docs/GraphQl/Queries/fundQueries/variables/FUND_LIST.md create mode 100644 docs/docs/auto-docs/GraphQl/Queries/fundQueries/variables/USER_FUND_CAMPAIGNS.md create mode 100644 docs/docs/auto-docs/GraphQl/Queries/fundQueries/variables/USER_PLEDGES.md create mode 100644 docs/docs/auto-docs/GraphQl/Queries/userTagQueries/variables/USER_TAGS_ASSIGNED_MEMBERS.md create mode 100644 docs/docs/auto-docs/GraphQl/Queries/userTagQueries/variables/USER_TAGS_MEMBERS_TO_ASSIGN_TO.md create mode 100644 docs/docs/auto-docs/GraphQl/Queries/userTagQueries/variables/USER_TAG_SUB_TAGS.md create mode 100644 docs/docs/auto-docs/components/AddOn/AddOn/functions/default.md create mode 100644 docs/docs/auto-docs/components/AddOn/core/AddOnEntry/AddOnEntry/functions/default.md create mode 100644 docs/docs/auto-docs/components/AddOn/core/AddOnEntry/AddOnEntryMocks/variables/ADD_ON_ENTRY_MOCK.md create mode 100644 docs/docs/auto-docs/components/AddOn/core/AddOnRegister/AddOnRegister/functions/default.md create mode 100644 docs/docs/auto-docs/components/AddOn/core/AddOnStore/AddOnStore/functions/default.md create mode 100644 docs/docs/auto-docs/components/AddOn/support/components/Action/Action/functions/default.md create mode 100644 docs/docs/auto-docs/components/AddOn/support/components/MainContent/MainContent/functions/default.md create mode 100644 docs/docs/auto-docs/components/AddOn/support/components/SidePanel/SidePanel/functions/default.md create mode 100644 docs/docs/auto-docs/components/AddOn/support/services/Plugin.helper/classes/default.md create mode 100644 docs/docs/auto-docs/components/AddOn/support/services/Render.helper/classes/default.md create mode 100644 docs/docs/auto-docs/components/AddPeopleToTag/AddPeopleToTag/functions/default.md create mode 100644 docs/docs/auto-docs/components/AddPeopleToTag/AddPeopleToTag/interfaces/InterfaceAddPeopleToTagProps.md create mode 100644 docs/docs/auto-docs/components/AddPeopleToTag/AddPeopleToTagsMocks/variables/MOCKS.md create mode 100644 docs/docs/auto-docs/components/AddPeopleToTag/AddPeopleToTagsMocks/variables/MOCKS_ERROR.md create mode 100644 docs/docs/auto-docs/components/Advertisements/Advertisements/functions/default.md create mode 100644 docs/docs/auto-docs/components/Advertisements/core/AdvertisementEntry/AdvertisementEntry/functions/default.md create mode 100644 docs/docs/auto-docs/components/Advertisements/core/AdvertisementRegister/AdvertisementRegister/functions/default.md create mode 100644 docs/docs/auto-docs/components/AgendaCategory/AgendaCategoryContainer/functions/default.md create mode 100644 docs/docs/auto-docs/components/AgendaCategory/AgendaCategoryContainerMocks/variables/MOCKS.md create mode 100644 docs/docs/auto-docs/components/AgendaCategory/AgendaCategoryContainerMocks/variables/MOCKS_ERROR_MUTATIONS.md create mode 100644 docs/docs/auto-docs/components/AgendaCategory/AgendaCategoryContainerProps/variables/props.md create mode 100644 docs/docs/auto-docs/components/AgendaCategory/AgendaCategoryContainerProps/variables/props2.md create mode 100644 docs/docs/auto-docs/components/AgendaItems/AgendaItemsContainer/functions/default.md create mode 100644 docs/docs/auto-docs/components/AgendaItems/AgendaItemsContainerMocks/variables/MOCKS.md create mode 100644 docs/docs/auto-docs/components/AgendaItems/AgendaItemsContainerMocks/variables/MOCKS_ERROR.md create mode 100644 docs/docs/auto-docs/components/AgendaItems/AgendaItemsContainerProps/variables/props.md create mode 100644 docs/docs/auto-docs/components/AgendaItems/AgendaItemsContainerProps/variables/props2.md create mode 100644 docs/docs/auto-docs/components/AgendaItems/AgendaItemsCreateModal/functions/default.md create mode 100644 docs/docs/auto-docs/components/AgendaItems/AgendaItemsDeleteModal/functions/default.md create mode 100644 docs/docs/auto-docs/components/AgendaItems/AgendaItemsPreviewModal/functions/default.md create mode 100644 docs/docs/auto-docs/components/AgendaItems/AgendaItemsUpdateModal/functions/default.md create mode 100644 docs/docs/auto-docs/components/Avatar/Avatar/functions/default.md create mode 100644 docs/docs/auto-docs/components/ChangeLanguageDropdown/ChangeLanguageDropDown/functions/default.md create mode 100644 docs/docs/auto-docs/components/CheckIn/CheckInModal/functions/CheckInModal.md create mode 100644 docs/docs/auto-docs/components/CheckIn/CheckInWrapper/functions/CheckInWrapper.md create mode 100644 docs/docs/auto-docs/components/CheckIn/TableRow/functions/TableRow.md create mode 100644 docs/docs/auto-docs/components/CheckIn/mocks/variables/checkInMutationSuccess.md create mode 100644 docs/docs/auto-docs/components/CheckIn/mocks/variables/checkInMutationUnsuccess.md create mode 100644 docs/docs/auto-docs/components/CheckIn/mocks/variables/checkInQueryMock.md create mode 100644 docs/docs/auto-docs/components/CheckIn/tagTemplate/variables/tagTemplate.md create mode 100644 docs/docs/auto-docs/components/CheckIn/types/interfaces/InterfaceAttendeeCheckIn.md create mode 100644 docs/docs/auto-docs/components/CheckIn/types/interfaces/InterfaceAttendeeQueryResponse.md create mode 100644 docs/docs/auto-docs/components/CheckIn/types/interfaces/InterfaceModalProp.md create mode 100644 docs/docs/auto-docs/components/CheckIn/types/interfaces/InterfaceTableCheckIn.md create mode 100644 docs/docs/auto-docs/components/CheckIn/types/interfaces/InterfaceTableData.md create mode 100644 docs/docs/auto-docs/components/CheckIn/types/interfaces/InterfaceUser.md create mode 100644 docs/docs/auto-docs/components/CollapsibleDropdown/CollapsibleDropdown/functions/default.md create mode 100644 docs/docs/auto-docs/components/CollapsibleDropdown/CollapsibleDropdown/interfaces/InterfaceCollapsibleDropdown.md create mode 100644 docs/docs/auto-docs/components/ContriStats/ContriStats/functions/default.md create mode 100644 docs/docs/auto-docs/components/CurrentHourIndicator/CurrentHourIndicator/functions/default.md create mode 100644 docs/docs/auto-docs/components/DynamicDropDown/DynamicDropDown/functions/default.md create mode 100644 docs/docs/auto-docs/components/EditCustomFieldDropDown/EditCustomFieldDropDown/functions/default.md create mode 100644 docs/docs/auto-docs/components/EventCalendar/EventCalendar/functions/default.md create mode 100644 docs/docs/auto-docs/components/EventCalendar/EventHeader/functions/default.md create mode 100644 docs/docs/auto-docs/components/EventCalendar/YearlyEventCalender/functions/default.md create mode 100644 docs/docs/auto-docs/components/EventCalendar/constants/variables/holidays.md create mode 100644 docs/docs/auto-docs/components/EventCalendar/constants/variables/hours.md create mode 100644 docs/docs/auto-docs/components/EventCalendar/constants/variables/months.md create mode 100644 docs/docs/auto-docs/components/EventCalendar/constants/variables/weekdays.md create mode 100644 docs/docs/auto-docs/components/EventDashboardScreen/EventDashboardScreen/functions/default.md create mode 100644 docs/docs/auto-docs/components/EventListCard/EventListCard/functions/default.md create mode 100644 docs/docs/auto-docs/components/EventListCard/EventListCard/interfaces/InterfaceEventListCardProps.md create mode 100644 docs/docs/auto-docs/components/EventListCard/EventListCardMocks/variables/ERROR_MOCKS.md create mode 100644 docs/docs/auto-docs/components/EventListCard/EventListCardMocks/variables/MOCKS.md create mode 100644 docs/docs/auto-docs/components/EventListCard/EventListCardModals/functions/default.md create mode 100644 docs/docs/auto-docs/components/EventListCard/EventListCardProps/variables/props.md create mode 100644 docs/docs/auto-docs/components/EventManagement/Dashboard/EventDashboard.mocks/variables/MOCKS_WITHOUT_TIME.md create mode 100644 docs/docs/auto-docs/components/EventManagement/Dashboard/EventDashboard.mocks/variables/MOCKS_WITH_TIME.md create mode 100644 docs/docs/auto-docs/components/EventManagement/Dashboard/EventDashboard/functions/default.md create mode 100644 docs/docs/auto-docs/components/EventManagement/EventAgendaItems/EventAgendaItems/functions/default.md create mode 100644 docs/docs/auto-docs/components/EventManagement/EventAgendaItems/EventAgendaItemsMocks/variables/MOCKS.md create mode 100644 docs/docs/auto-docs/components/EventManagement/EventAgendaItems/EventAgendaItemsMocks/variables/MOCKS_ERROR_MUTATION.md create mode 100644 docs/docs/auto-docs/components/EventManagement/EventAgendaItems/EventAgendaItemsMocks/variables/MOCKS_ERROR_QUERY.md create mode 100644 docs/docs/auto-docs/components/EventManagement/EventAttendance/Attendance.mocks/variables/MOCKS.md create mode 100644 docs/docs/auto-docs/components/EventManagement/EventAttendance/Attendance.mocks/variables/MOCKS_ERROR.md create mode 100644 docs/docs/auto-docs/components/EventManagement/EventAttendance/AttendedEventList/functions/default.md create mode 100644 docs/docs/auto-docs/components/EventManagement/EventAttendance/EventAttendance/functions/default.md create mode 100644 docs/docs/auto-docs/components/EventManagement/EventAttendance/EventStatistics/functions/AttendanceStatisticsModal.md create mode 100644 docs/docs/auto-docs/components/EventManagement/EventAttendance/InterfaceEvents/interfaces/InterfaceAttendanceStatisticsModalProps.md create mode 100644 docs/docs/auto-docs/components/EventManagement/EventAttendance/InterfaceEvents/interfaces/InterfaceEvent.md create mode 100644 docs/docs/auto-docs/components/EventManagement/EventAttendance/InterfaceEvents/interfaces/InterfaceMember.md create mode 100644 docs/docs/auto-docs/components/EventManagement/EventAttendance/InterfaceEvents/interfaces/InterfaceRecurringEvent.md create mode 100644 docs/docs/auto-docs/components/EventManagement/EventRegistrant/EventRegistrants/functions/default.md create mode 100644 docs/docs/auto-docs/components/EventManagement/EventRegistrant/Registrations.mocks/variables/REGISTRANTS_MOCKS.md create mode 100644 docs/docs/auto-docs/components/EventManagement/EventRegistrant/Registrations.mocks/variables/REGISTRANTS_MOCKS_ERROR.md create mode 100644 docs/docs/auto-docs/components/EventRegistrantsModal/AddOnSpotAttendee/functions/default.md create mode 100644 docs/docs/auto-docs/components/EventRegistrantsModal/EventRegistrantsModal/functions/EventRegistrantsModal.md create mode 100644 docs/docs/auto-docs/components/EventRegistrantsModal/EventRegistrantsWrapper/functions/EventRegistrantsWrapper.md create mode 100644 docs/docs/auto-docs/components/EventStats/EventStats/functions/EventStats.md create mode 100644 docs/docs/auto-docs/components/EventStats/EventStatsWrapper/functions/EventStatsWrapper.md create mode 100644 docs/docs/auto-docs/components/EventStats/Statistics/AverageRating/functions/AverageRating.md create mode 100644 docs/docs/auto-docs/components/EventStats/Statistics/Feedback/functions/FeedbackStats.md create mode 100644 docs/docs/auto-docs/components/EventStats/Statistics/Review/functions/ReviewStats.md create mode 100644 docs/docs/auto-docs/components/GroupChatDetails/GroupChatDetails/functions/default.md create mode 100644 docs/docs/auto-docs/components/HolidayCards/HolidayCard/functions/default.md create mode 100644 docs/docs/auto-docs/components/IconComponent/IconComponent/functions/default.md create mode 100644 docs/docs/auto-docs/components/IconComponent/IconComponent/interfaces/InterfaceIconComponent.md create mode 100644 docs/docs/auto-docs/components/InfiniteScrollLoader/InfiniteScrollLoader/functions/default.md create mode 100644 docs/docs/auto-docs/components/LeftDrawer/LeftDrawer/functions/default.md create mode 100644 docs/docs/auto-docs/components/LeftDrawer/LeftDrawer/interfaces/InterfaceLeftDrawerProps.md create mode 100644 docs/docs/auto-docs/components/LeftDrawerOrg/LeftDrawerOrg/functions/default.md create mode 100644 docs/docs/auto-docs/components/LeftDrawerOrg/LeftDrawerOrg/interfaces/InterfaceLeftDrawerProps.md create mode 100644 docs/docs/auto-docs/components/Loader/Loader/functions/default.md create mode 100644 docs/docs/auto-docs/components/LoginPortalToggle/LoginPortalToggle/functions/default.md create mode 100644 docs/docs/auto-docs/components/MemberDetail/EventsAttendedByMember/functions/default.md create mode 100644 docs/docs/auto-docs/components/MemberDetail/EventsAttendedCardItem/functions/default.md create mode 100644 docs/docs/auto-docs/components/MemberDetail/EventsAttendedCardItem/interfaces/InterfaceCardItem.md create mode 100644 docs/docs/auto-docs/components/MemberDetail/EventsAttendedMemberModal/functions/default.md create mode 100644 docs/docs/auto-docs/components/MemberDetail/customTableCell/functions/CustomTableCell.md create mode 100644 docs/docs/auto-docs/components/MemberRequestCard/MemberRequestCard/functions/default.md create mode 100644 docs/docs/auto-docs/components/NotFound/NotFound/functions/default.md create mode 100644 docs/docs/auto-docs/components/OrgAdminListCard/OrgAdminListCard/functions/default.md create mode 100644 docs/docs/auto-docs/components/OrgContriCards/OrgContriCards/functions/default.md create mode 100644 docs/docs/auto-docs/components/OrgDelete/OrgDelete/functions/default.md create mode 100644 docs/docs/auto-docs/components/OrgListCard/OrgListCard/functions/default.md create mode 100644 docs/docs/auto-docs/components/OrgListCard/OrgListCard/interfaces/InterfaceOrgListCardProps.md create mode 100644 docs/docs/auto-docs/components/OrgListCard/TruncatedText/functions/default.md create mode 100644 docs/docs/auto-docs/components/OrgListCard/useDebounce/functions/default.md create mode 100644 docs/docs/auto-docs/components/OrgPeopleListCard/OrgPeopleListCard/functions/default.md create mode 100644 docs/docs/auto-docs/components/OrgPostCard/DeletePostModal/functions/default.md create mode 100644 docs/docs/auto-docs/components/OrgPostCard/OrgPostCard/functions/default.md create mode 100644 docs/docs/auto-docs/components/OrgSettings/ActionItemCategories/CategoryModal/functions/default.md create mode 100644 docs/docs/auto-docs/components/OrgSettings/ActionItemCategories/CategoryModal/interfaces/InterfaceActionItemCategoryModal.md create mode 100644 docs/docs/auto-docs/components/OrgSettings/ActionItemCategories/OrgActionItemCategories/functions/default.md create mode 100644 docs/docs/auto-docs/components/OrgSettings/ActionItemCategories/OrgActionItemCategoryMocks/variables/MOCKS.md create mode 100644 docs/docs/auto-docs/components/OrgSettings/ActionItemCategories/OrgActionItemCategoryMocks/variables/MOCKS_EMPTY.md create mode 100644 docs/docs/auto-docs/components/OrgSettings/ActionItemCategories/OrgActionItemCategoryMocks/variables/MOCKS_ERROR.md create mode 100644 docs/docs/auto-docs/components/OrgSettings/AgendaItemCategories/AgendaCategoryCreateModal/functions/default.md create mode 100644 docs/docs/auto-docs/components/OrgSettings/AgendaItemCategories/AgendaCategoryDeleteModal/functions/default.md create mode 100644 docs/docs/auto-docs/components/OrgSettings/AgendaItemCategories/AgendaCategoryPreviewModal/functions/default.md create mode 100644 docs/docs/auto-docs/components/OrgSettings/AgendaItemCategories/AgendaCategoryUpdateModal/functions/default.md create mode 100644 docs/docs/auto-docs/components/OrgSettings/AgendaItemCategories/OrganizationAgendaCategory/functions/default.md create mode 100644 docs/docs/auto-docs/components/OrgSettings/AgendaItemCategories/OrganizationAgendaCategoryErrorMocks/variables/MOCKS_ERROR_AGENDA_ITEM_CATEGORY_LIST_QUERY.md create mode 100644 docs/docs/auto-docs/components/OrgSettings/AgendaItemCategories/OrganizationAgendaCategoryErrorMocks/variables/MOCKS_ERROR_MUTATION.md create mode 100644 docs/docs/auto-docs/components/OrgSettings/AgendaItemCategories/OrganizationAgendaCategoryMocks/variables/MOCKS.md create mode 100644 docs/docs/auto-docs/components/OrgSettings/General/DeleteOrg/DeleteOrg/functions/default.md create mode 100644 docs/docs/auto-docs/components/OrgSettings/General/GeneralSettings/functions/default.md create mode 100644 docs/docs/auto-docs/components/OrgSettings/General/OrgProfileFieldSettings/OrgProfileFieldSettings/functions/default.md create mode 100644 docs/docs/auto-docs/components/OrgSettings/General/OrgUpdate/OrgUpdate/functions/default.md create mode 100644 docs/docs/auto-docs/components/OrgSettings/General/OrgUpdate/OrgUpdateMocks/variables/MOCKS.md create mode 100644 docs/docs/auto-docs/components/OrgSettings/General/OrgUpdate/OrgUpdateMocks/variables/MOCKS_ERROR_ORGLIST.md create mode 100644 docs/docs/auto-docs/components/OrgSettings/General/OrgUpdate/OrgUpdateMocks/variables/MOCKS_ERROR_UPDATE_ORGLIST.md create mode 100644 docs/docs/auto-docs/components/OrganizationCard/OrganizationCard/functions/default.md create mode 100644 docs/docs/auto-docs/components/OrganizationCardStart/OrganizationCardStart/functions/default.md create mode 100644 docs/docs/auto-docs/components/OrganizationDashCards/CardItem/functions/default.md create mode 100644 docs/docs/auto-docs/components/OrganizationDashCards/CardItem/interfaces/InterfaceCardItem.md create mode 100644 docs/docs/auto-docs/components/OrganizationDashCards/CardItemLoading/functions/default.md create mode 100644 docs/docs/auto-docs/components/OrganizationDashCards/DashboardCard/functions/default.md create mode 100644 docs/docs/auto-docs/components/OrganizationDashCards/DashboardCardLoading/functions/default.md create mode 100644 docs/docs/auto-docs/components/OrganizationScreen/OrganizationScreen/functions/default.md create mode 100644 docs/docs/auto-docs/components/Pagination/Pagination/functions/default.md create mode 100644 docs/docs/auto-docs/components/PaginationList/PaginationList/functions/default.md create mode 100644 docs/docs/auto-docs/components/ProfileDropdown/ProfileDropdown/functions/default.md create mode 100644 docs/docs/auto-docs/components/RecurrenceOptions/CustomRecurrenceModal/functions/default.md create mode 100644 docs/docs/auto-docs/components/RecurrenceOptions/RecurrenceOptions/functions/default.md create mode 100644 docs/docs/auto-docs/components/RequestsTableItem/RequestsTableItem/functions/default.md create mode 100644 docs/docs/auto-docs/components/RequestsTableItem/RequestsTableItem/interfaces/InterfaceRequestsListItem.md create mode 100644 docs/docs/auto-docs/components/RequestsTableItem/RequestsTableItemMocks/variables/MOCKS.md create mode 100644 docs/docs/auto-docs/components/SecuredRoute/SecuredRoute/functions/default.md create mode 100644 docs/docs/auto-docs/components/SuperAdminScreen/SuperAdminScreen/functions/default.md create mode 100644 docs/docs/auto-docs/components/TableLoader/TableLoader/functions/default.md create mode 100644 docs/docs/auto-docs/components/TableLoader/TableLoader/interfaces/InterfaceTableLoader.md create mode 100644 docs/docs/auto-docs/components/TagActions/TagActions/functions/default.md create mode 100644 docs/docs/auto-docs/components/TagActions/TagActions/interfaces/InterfaceTagActionsProps.md create mode 100644 docs/docs/auto-docs/components/TagActions/TagActionsMocks/variables/MOCKS.md create mode 100644 docs/docs/auto-docs/components/TagActions/TagActionsMocks/variables/MOCKS_ERROR_ORGANIZATION_TAGS_QUERY.md create mode 100644 docs/docs/auto-docs/components/TagActions/TagActionsMocks/variables/MOCKS_ERROR_SUBTAGS_QUERY.md create mode 100644 docs/docs/auto-docs/components/TagActions/TagNode/functions/default.md create mode 100644 docs/docs/auto-docs/components/TagActions/TagNodeMocks/variables/MOCKS1.md create mode 100644 docs/docs/auto-docs/components/TagActions/TagNodeMocks/variables/MOCKS_ERROR_SUBTAGS_QUERY1.md create mode 100644 docs/docs/auto-docs/components/UpdateSession/UpdateSession/functions/default.md create mode 100644 docs/docs/auto-docs/components/UserListCard/UserListCard/functions/default.md create mode 100644 docs/docs/auto-docs/components/UserPasswordUpdate/UserPasswordUpdate/functions/default.md create mode 100644 docs/docs/auto-docs/components/UserPasswordUpdate/UserPasswordUpdateMocks/variables/MOCKS.md create mode 100644 docs/docs/auto-docs/components/UserPortal/ChatRoom/ChatRoom/functions/default.md create mode 100644 docs/docs/auto-docs/components/UserPortal/CommentCard/CommentCard/functions/default.md create mode 100644 docs/docs/auto-docs/components/UserPortal/ContactCard/ContactCard/functions/default.md create mode 100644 docs/docs/auto-docs/components/UserPortal/CreateDirectChat/CreateDirectChat/functions/default.md create mode 100644 docs/docs/auto-docs/components/UserPortal/CreateGroupChat/CreateGroupChat/functions/default.md create mode 100644 docs/docs/auto-docs/components/UserPortal/DonationCard/DonationCard/functions/default.md create mode 100644 docs/docs/auto-docs/components/UserPortal/EventCard/EventCard/functions/default.md create mode 100644 docs/docs/auto-docs/components/UserPortal/OrganizationCard/OrganizationCard/functions/default.md create mode 100644 docs/docs/auto-docs/components/UserPortal/OrganizationNavbar/OrganizationNavbar/functions/default.md create mode 100644 docs/docs/auto-docs/components/UserPortal/OrganizationSidebar/OrganizationSidebar/functions/default.md create mode 100644 docs/docs/auto-docs/components/UserPortal/PeopleCard/PeopleCard/functions/default.md create mode 100644 docs/docs/auto-docs/components/UserPortal/PostCard/PostCard/functions/default.md create mode 100644 docs/docs/auto-docs/components/UserPortal/PromotedPost/PromotedPost/functions/default.md create mode 100644 docs/docs/auto-docs/components/UserPortal/Register/Register/functions/default.md create mode 100644 docs/docs/auto-docs/components/UserPortal/SecuredRouteForUser/SecuredRouteForUser/functions/default.md create mode 100644 docs/docs/auto-docs/components/UserPortal/StartPostModal/StartPostModal/functions/default.md create mode 100644 docs/docs/auto-docs/components/UserPortal/UserNavbar/UserNavbar/functions/default.md create mode 100644 docs/docs/auto-docs/components/UserPortal/UserProfile/EventsAttendedByUser/functions/EventsAttendedByUser.md create mode 100644 docs/docs/auto-docs/components/UserPortal/UserProfile/UserAddressFields/functions/UserAddressFields.md create mode 100644 docs/docs/auto-docs/components/UserPortal/UserSidebar/UserSidebar/functions/default.md create mode 100644 docs/docs/auto-docs/components/UserPortal/UserSidebar/UserSidebar/interfaces/InterfaceUserSidebarProps.md create mode 100644 docs/docs/auto-docs/components/UserPortal/UserSidebarOrg/UserSidebarOrg/functions/default.md create mode 100644 docs/docs/auto-docs/components/UserPortal/UserSidebarOrg/UserSidebarOrg/interfaces/InterfaceUserSidebarOrgProps.md create mode 100644 docs/docs/auto-docs/components/UserProfileSettings/DeleteUser/functions/default.md create mode 100644 docs/docs/auto-docs/components/UserProfileSettings/OtherSettings/functions/default.md create mode 100644 docs/docs/auto-docs/components/UserProfileSettings/UserProfile/functions/default.md create mode 100644 docs/docs/auto-docs/components/UsersTableItem/UserTableItemMocks/variables/MOCKS.md create mode 100644 docs/docs/auto-docs/components/UsersTableItem/UserTableItemMocks/variables/MOCKS2.md create mode 100644 docs/docs/auto-docs/components/UsersTableItem/UserTableItemMocks/variables/MOCKS_UPDATE.md create mode 100644 docs/docs/auto-docs/components/UsersTableItem/UsersTableItem/functions/default.md create mode 100644 docs/docs/auto-docs/components/Venues/VenueCard/functions/default.md create mode 100644 docs/docs/auto-docs/components/Venues/VenueModal/functions/default.md create mode 100644 docs/docs/auto-docs/components/Venues/VenueModal/interfaces/InterfaceVenueModalProps.md create mode 100644 docs/docs/auto-docs/components/plugins/DummyPlugin/DummyPlugin/functions/default.md create mode 100644 docs/docs/auto-docs/components/plugins/DummyPlugin2/DummyPlugin2/functions/default.md create mode 100644 docs/docs/auto-docs/constants/variables/socialMediaLinks.md create mode 100644 docs/docs/auto-docs/reportWebVitals/functions/default.md create mode 100644 docs/docs/auto-docs/screens/BlockUser/BlockUser/functions/default.md create mode 100644 docs/docs/auto-docs/screens/CommunityProfile/CommunityProfile/functions/default.md create mode 100644 docs/docs/auto-docs/screens/EventManagement/EventManagement/functions/default.md create mode 100644 docs/docs/auto-docs/screens/EventVolunteers/Requests/Requests.mocks/variables/EMPTY_MOCKS.md create mode 100644 docs/docs/auto-docs/screens/EventVolunteers/Requests/Requests.mocks/variables/ERROR_MOCKS.md create mode 100644 docs/docs/auto-docs/screens/EventVolunteers/Requests/Requests.mocks/variables/MOCKS.md create mode 100644 docs/docs/auto-docs/screens/EventVolunteers/Requests/Requests.mocks/variables/UPDATE_ERROR_MOCKS.md create mode 100644 docs/docs/auto-docs/screens/EventVolunteers/Requests/Requests/functions/default.md create mode 100644 docs/docs/auto-docs/screens/EventVolunteers/VolunteerContainer/functions/default.md create mode 100644 docs/docs/auto-docs/screens/EventVolunteers/VolunteerGroups/VolunteerGroupDeleteModal/functions/default.md create mode 100644 docs/docs/auto-docs/screens/EventVolunteers/VolunteerGroups/VolunteerGroupDeleteModal/interfaces/InterfaceDeleteVolunteerGroupModal.md create mode 100644 docs/docs/auto-docs/screens/EventVolunteers/VolunteerGroups/VolunteerGroupModal/functions/default.md create mode 100644 docs/docs/auto-docs/screens/EventVolunteers/VolunteerGroups/VolunteerGroupModal/interfaces/InterfaceVolunteerGroupModal.md create mode 100644 docs/docs/auto-docs/screens/EventVolunteers/VolunteerGroups/VolunteerGroupViewModal/functions/default.md create mode 100644 docs/docs/auto-docs/screens/EventVolunteers/VolunteerGroups/VolunteerGroupViewModal/interfaces/InterfaceVolunteerGroupViewModal.md create mode 100644 docs/docs/auto-docs/screens/EventVolunteers/VolunteerGroups/VolunteerGroups.mocks/variables/MOCKS.md create mode 100644 docs/docs/auto-docs/screens/EventVolunteers/VolunteerGroups/VolunteerGroups.mocks/variables/MOCKS_EMPTY.md create mode 100644 docs/docs/auto-docs/screens/EventVolunteers/VolunteerGroups/VolunteerGroups.mocks/variables/MOCKS_ERROR.md create mode 100644 docs/docs/auto-docs/screens/EventVolunteers/VolunteerGroups/VolunteerGroups/functions/default.md create mode 100644 docs/docs/auto-docs/screens/EventVolunteers/Volunteers/VolunteerCreateModal/functions/default.md create mode 100644 docs/docs/auto-docs/screens/EventVolunteers/Volunteers/VolunteerCreateModal/interfaces/InterfaceVolunteerCreateModal.md create mode 100644 docs/docs/auto-docs/screens/EventVolunteers/Volunteers/VolunteerDeleteModal/functions/default.md create mode 100644 docs/docs/auto-docs/screens/EventVolunteers/Volunteers/VolunteerDeleteModal/interfaces/InterfaceDeleteVolunteerModal.md create mode 100644 docs/docs/auto-docs/screens/EventVolunteers/Volunteers/VolunteerViewModal/functions/default.md create mode 100644 docs/docs/auto-docs/screens/EventVolunteers/Volunteers/VolunteerViewModal/interfaces/InterfaceVolunteerViewModal.md create mode 100644 docs/docs/auto-docs/screens/EventVolunteers/Volunteers/Volunteers.mocks/variables/MOCKS.md create mode 100644 docs/docs/auto-docs/screens/EventVolunteers/Volunteers/Volunteers.mocks/variables/MOCKS_EMPTY.md create mode 100644 docs/docs/auto-docs/screens/EventVolunteers/Volunteers/Volunteers.mocks/variables/MOCKS_ERROR.md create mode 100644 docs/docs/auto-docs/screens/EventVolunteers/Volunteers/Volunteers/functions/default.md create mode 100644 docs/docs/auto-docs/screens/ForgotPassword/ForgotPassword/functions/default.md create mode 100644 docs/docs/auto-docs/screens/FundCampaignPledge/FundCampaignPledge/functions/default.md create mode 100644 docs/docs/auto-docs/screens/FundCampaignPledge/PledgeDeleteModal/functions/default.md create mode 100644 docs/docs/auto-docs/screens/FundCampaignPledge/PledgeDeleteModal/interfaces/InterfaceDeletePledgeModal.md create mode 100644 docs/docs/auto-docs/screens/FundCampaignPledge/PledgeModal/functions/default.md create mode 100644 docs/docs/auto-docs/screens/FundCampaignPledge/PledgeModal/interfaces/InterfacePledgeModal.md create mode 100644 docs/docs/auto-docs/screens/FundCampaignPledge/PledgesMocks/variables/EMPTY_MOCKS.md create mode 100644 docs/docs/auto-docs/screens/FundCampaignPledge/PledgesMocks/variables/MOCKS.md create mode 100644 docs/docs/auto-docs/screens/FundCampaignPledge/PledgesMocks/variables/MOCKS_DELETE_PLEDGE_ERROR.md create mode 100644 docs/docs/auto-docs/screens/FundCampaignPledge/PledgesMocks/variables/MOCKS_FUND_CAMPAIGN_PLEDGE_ERROR.md create mode 100644 docs/docs/auto-docs/screens/FundCampaignPledge/PledgesMocks/variables/PLEDGE_MODAL_MOCKS.md create mode 100644 docs/docs/auto-docs/screens/Leaderboard/Leaderboard.mocks/variables/EMPTY_MOCKS.md create mode 100644 docs/docs/auto-docs/screens/Leaderboard/Leaderboard.mocks/variables/ERROR_MOCKS.md create mode 100644 docs/docs/auto-docs/screens/Leaderboard/Leaderboard.mocks/variables/MOCKS.md create mode 100644 docs/docs/auto-docs/screens/Leaderboard/Leaderboard/functions/default.md create mode 100644 docs/docs/auto-docs/screens/LoginPage/LoginPage/functions/default.md create mode 100644 docs/docs/auto-docs/screens/ManageTag/EditUserTagModal/functions/default.md create mode 100644 docs/docs/auto-docs/screens/ManageTag/EditUserTagModal/interfaces/InterfaceEditUserTagModalProps.md create mode 100644 docs/docs/auto-docs/screens/ManageTag/ManageTag/functions/default.md create mode 100644 docs/docs/auto-docs/screens/ManageTag/ManageTagMockComponents/MockAddPeopleToTag/functions/default.md create mode 100644 docs/docs/auto-docs/screens/ManageTag/ManageTagMockComponents/MockTagActions/functions/default.md create mode 100644 docs/docs/auto-docs/screens/ManageTag/ManageTagMocks/variables/MOCKS.md create mode 100644 docs/docs/auto-docs/screens/ManageTag/ManageTagMocks/variables/MOCKS_ERROR_ASSIGNED_MEMBERS.md create mode 100644 docs/docs/auto-docs/screens/ManageTag/RemoveUserTagModal/functions/default.md create mode 100644 docs/docs/auto-docs/screens/ManageTag/RemoveUserTagModal/interfaces/InterfaceRemoveUserTagModalProps.md create mode 100644 docs/docs/auto-docs/screens/ManageTag/UnassignUserTagModal/functions/default.md create mode 100644 docs/docs/auto-docs/screens/ManageTag/UnassignUserTagModal/interfaces/InterfaceUnassignUserTagModalProps.md create mode 100644 docs/docs/auto-docs/screens/MemberDetail/MemberDetail/functions/default.md create mode 100644 docs/docs/auto-docs/screens/MemberDetail/MemberDetail/functions/getLanguageName.md create mode 100644 docs/docs/auto-docs/screens/MemberDetail/MemberDetail/functions/prettyDate.md create mode 100644 docs/docs/auto-docs/screens/MemberDetail/MemberDetailMocks/variables/MOCKS1.md create mode 100644 docs/docs/auto-docs/screens/MemberDetail/MemberDetailMocks/variables/MOCKS2.md create mode 100644 docs/docs/auto-docs/screens/MemberDetail/MemberDetailMocks/variables/MOCKS3.md create mode 100644 docs/docs/auto-docs/screens/OrgContribution/OrgContribution/functions/default.md create mode 100644 docs/docs/auto-docs/screens/OrgList/OrgList/functions/default.md create mode 100644 docs/docs/auto-docs/screens/OrgList/OrgListMocks/variables/MOCKS.md create mode 100644 docs/docs/auto-docs/screens/OrgList/OrgListMocks/variables/MOCKS_ADMIN.md create mode 100644 docs/docs/auto-docs/screens/OrgList/OrgListMocks/variables/MOCKS_EMPTY.md create mode 100644 docs/docs/auto-docs/screens/OrgList/OrgListMocks/variables/MOCKS_WITH_ERROR.md create mode 100644 docs/docs/auto-docs/screens/OrgList/OrganizationModal/functions/default.md create mode 100644 docs/docs/auto-docs/screens/OrgPost/OrgPost/functions/default.md create mode 100644 docs/docs/auto-docs/screens/OrgSettings/OrgSettings.mocks/variables/MOCKS.md create mode 100644 docs/docs/auto-docs/screens/OrgSettings/OrgSettings/functions/default.md create mode 100644 docs/docs/auto-docs/screens/OrganizationActionItems/ItemDeleteModal/functions/default.md create mode 100644 docs/docs/auto-docs/screens/OrganizationActionItems/ItemDeleteModal/interfaces/InterfaceItemDeleteModalProps.md create mode 100644 docs/docs/auto-docs/screens/OrganizationActionItems/ItemModal/functions/default.md create mode 100644 docs/docs/auto-docs/screens/OrganizationActionItems/ItemModal/interfaces/InterfaceItemModalProps.md create mode 100644 docs/docs/auto-docs/screens/OrganizationActionItems/ItemUpdateStatusModal/functions/default.md create mode 100644 docs/docs/auto-docs/screens/OrganizationActionItems/ItemUpdateStatusModal/interfaces/InterfaceItemUpdateStatusModalProps.md create mode 100644 docs/docs/auto-docs/screens/OrganizationActionItems/ItemViewModal/functions/default.md create mode 100644 docs/docs/auto-docs/screens/OrganizationActionItems/ItemViewModal/interfaces/InterfaceViewModalProps.md create mode 100644 docs/docs/auto-docs/screens/OrganizationActionItems/OrganizationActionItem.mocks/variables/MOCKS.md create mode 100644 docs/docs/auto-docs/screens/OrganizationActionItems/OrganizationActionItem.mocks/variables/MOCKS_EMPTY.md create mode 100644 docs/docs/auto-docs/screens/OrganizationActionItems/OrganizationActionItem.mocks/variables/MOCKS_ERROR.md create mode 100644 docs/docs/auto-docs/screens/OrganizationActionItems/OrganizationActionItems/functions/default.md create mode 100644 docs/docs/auto-docs/screens/OrganizationActionItems/testObject.mocks/variables/actionItemCategory1.md create mode 100644 docs/docs/auto-docs/screens/OrganizationActionItems/testObject.mocks/variables/actionItemCategory2.md create mode 100644 docs/docs/auto-docs/screens/OrganizationActionItems/testObject.mocks/variables/actionItemCategoryListQuery.md create mode 100644 docs/docs/auto-docs/screens/OrganizationActionItems/testObject.mocks/variables/baseActionItem.md create mode 100644 docs/docs/auto-docs/screens/OrganizationActionItems/testObject.mocks/variables/groupListQuery.md create mode 100644 docs/docs/auto-docs/screens/OrganizationActionItems/testObject.mocks/variables/itemWithGroup.md create mode 100644 docs/docs/auto-docs/screens/OrganizationActionItems/testObject.mocks/variables/itemWithUser.md create mode 100644 docs/docs/auto-docs/screens/OrganizationActionItems/testObject.mocks/variables/itemWithUserImage.md create mode 100644 docs/docs/auto-docs/screens/OrganizationActionItems/testObject.mocks/variables/itemWithVolunteer.md create mode 100644 docs/docs/auto-docs/screens/OrganizationActionItems/testObject.mocks/variables/itemWithVolunteerImage.md create mode 100644 docs/docs/auto-docs/screens/OrganizationActionItems/testObject.mocks/variables/memberListQuery.md create mode 100644 docs/docs/auto-docs/screens/OrganizationActionItems/testObject.mocks/variables/volunteerListQuery.md create mode 100644 docs/docs/auto-docs/screens/OrganizationDashboard/OrganizationDashboard/functions/default.md create mode 100644 docs/docs/auto-docs/screens/OrganizationDashboard/OrganizationDashboardMocks/variables/EMPTY_MOCKS.md create mode 100644 docs/docs/auto-docs/screens/OrganizationDashboard/OrganizationDashboardMocks/variables/ERROR_MOCKS.md create mode 100644 docs/docs/auto-docs/screens/OrganizationDashboard/OrganizationDashboardMocks/variables/MOCKS.md create mode 100644 docs/docs/auto-docs/screens/OrganizationEvents/OrganizationEvents/enumerations/ViewType.md create mode 100644 docs/docs/auto-docs/screens/OrganizationEvents/OrganizationEvents/functions/default.md create mode 100644 docs/docs/auto-docs/screens/OrganizationEvents/OrganizationEventsMocks/variables/MOCKS.md create mode 100644 docs/docs/auto-docs/screens/OrganizationFundCampaign/CampaignModal/functions/default.md create mode 100644 docs/docs/auto-docs/screens/OrganizationFundCampaign/CampaignModal/interfaces/InterfaceCampaignModal.md create mode 100644 docs/docs/auto-docs/screens/OrganizationFundCampaign/OrganizationFundCampagins/functions/default.md create mode 100644 docs/docs/auto-docs/screens/OrganizationFundCampaign/OrganizationFundCampaignMocks/variables/EMPTY_MOCKS.md create mode 100644 docs/docs/auto-docs/screens/OrganizationFundCampaign/OrganizationFundCampaignMocks/variables/MOCKS.md create mode 100644 docs/docs/auto-docs/screens/OrganizationFundCampaign/OrganizationFundCampaignMocks/variables/MOCK_ERROR.md create mode 100644 docs/docs/auto-docs/screens/OrganizationFunds/FundModal/functions/default.md create mode 100644 docs/docs/auto-docs/screens/OrganizationFunds/FundModal/interfaces/InterfaceFundModal.md create mode 100644 docs/docs/auto-docs/screens/OrganizationFunds/OrganizationFunds/functions/default.md create mode 100644 docs/docs/auto-docs/screens/OrganizationFunds/OrganizationFundsMocks/variables/MOCKS.md create mode 100644 docs/docs/auto-docs/screens/OrganizationFunds/OrganizationFundsMocks/variables/MOCKS_ERROR.md create mode 100644 docs/docs/auto-docs/screens/OrganizationFunds/OrganizationFundsMocks/variables/NO_FUNDS.md create mode 100644 docs/docs/auto-docs/screens/OrganizationPeople/AddMember/functions/default.md create mode 100644 docs/docs/auto-docs/screens/OrganizationPeople/MockDataTypes/type-aliases/TestMock.md create mode 100644 docs/docs/auto-docs/screens/OrganizationPeople/OrganizationPeople/functions/default.md create mode 100644 docs/docs/auto-docs/screens/OrganizationTags/OrganizationTags/functions/default.md create mode 100644 docs/docs/auto-docs/screens/OrganizationTags/OrganizationTagsMocks/variables/MOCKS.md create mode 100644 docs/docs/auto-docs/screens/OrganizationTags/OrganizationTagsMocks/variables/MOCKS_ERROR.md create mode 100644 docs/docs/auto-docs/screens/OrganizationVenues/OrganizationVenues/functions/default.md create mode 100644 docs/docs/auto-docs/screens/PageNotFound/PageNotFound/functions/default.md create mode 100644 docs/docs/auto-docs/screens/Requests/Requests/functions/default.md create mode 100644 docs/docs/auto-docs/screens/Requests/RequestsMocks/variables/EMPTY_MOCKS.md create mode 100644 docs/docs/auto-docs/screens/Requests/RequestsMocks/variables/EMPTY_REQUEST_MOCKS.md create mode 100644 docs/docs/auto-docs/screens/Requests/RequestsMocks/variables/MOCKS.md create mode 100644 docs/docs/auto-docs/screens/Requests/RequestsMocks/variables/MOCKS2.md create mode 100644 docs/docs/auto-docs/screens/Requests/RequestsMocks/variables/MOCKS3.md create mode 100644 docs/docs/auto-docs/screens/Requests/RequestsMocks/variables/MOCKS4.md create mode 100644 docs/docs/auto-docs/screens/Requests/RequestsMocks/variables/MOCKS_WITH_ERROR.md create mode 100644 docs/docs/auto-docs/screens/SubTags/SubTags/functions/default.md create mode 100644 docs/docs/auto-docs/screens/SubTags/SubTagsMocks/variables/MOCKS.md create mode 100644 docs/docs/auto-docs/screens/SubTags/SubTagsMocks/variables/MOCKS_ERROR_SUB_TAGS.md create mode 100644 docs/docs/auto-docs/screens/UserPortal/Campaigns/Campaigns/functions/default.md create mode 100644 docs/docs/auto-docs/screens/UserPortal/Campaigns/CampaignsMocks/variables/EMPTY_MOCKS.md create mode 100644 docs/docs/auto-docs/screens/UserPortal/Campaigns/CampaignsMocks/variables/MOCKS.md create mode 100644 docs/docs/auto-docs/screens/UserPortal/Campaigns/CampaignsMocks/variables/USER_FUND_CAMPAIGNS_ERROR.md create mode 100644 docs/docs/auto-docs/screens/UserPortal/Campaigns/PledgeModal/functions/default.md create mode 100644 docs/docs/auto-docs/screens/UserPortal/Campaigns/PledgeModal/interfaces/InterfacePledgeModal.md create mode 100644 docs/docs/auto-docs/screens/UserPortal/Chat/Chat/functions/default.md create mode 100644 docs/docs/auto-docs/screens/UserPortal/Donate/Donate/functions/default.md create mode 100644 docs/docs/auto-docs/screens/UserPortal/Donate/Donate/interfaces/InterfaceDonationCardProps.md create mode 100644 docs/docs/auto-docs/screens/UserPortal/Events/Events/functions/default.md create mode 100644 docs/docs/auto-docs/screens/UserPortal/LeaveOrganization/LeaveOrganization/functions/default.md create mode 100644 docs/docs/auto-docs/screens/UserPortal/LeaveOrganization/LeaveOrganization/variables/userEmail.md create mode 100644 docs/docs/auto-docs/screens/UserPortal/LeaveOrganization/LeaveOrganization/variables/userId.md create mode 100644 docs/docs/auto-docs/screens/UserPortal/Organizations/Organizations/functions/default.md create mode 100644 docs/docs/auto-docs/screens/UserPortal/People/People/functions/default.md create mode 100644 docs/docs/auto-docs/screens/UserPortal/Pledges/Pledges/functions/default.md create mode 100644 docs/docs/auto-docs/screens/UserPortal/Pledges/PledgesMocks/variables/EMPTY_MOCKS.md create mode 100644 docs/docs/auto-docs/screens/UserPortal/Pledges/PledgesMocks/variables/MOCKS.md create mode 100644 docs/docs/auto-docs/screens/UserPortal/Pledges/PledgesMocks/variables/USER_PLEDGES_ERROR.md create mode 100644 docs/docs/auto-docs/screens/UserPortal/Posts/Posts/functions/default.md create mode 100644 docs/docs/auto-docs/screens/UserPortal/Settings/Settings/functions/default.md create mode 100644 docs/docs/auto-docs/screens/UserPortal/UserScreen/UserScreen/functions/default.md create mode 100644 docs/docs/auto-docs/screens/UserPortal/Volunteer/Actions/Actions.mocks/variables/EMPTY_MOCKS.md create mode 100644 docs/docs/auto-docs/screens/UserPortal/Volunteer/Actions/Actions.mocks/variables/ERROR_MOCKS.md create mode 100644 docs/docs/auto-docs/screens/UserPortal/Volunteer/Actions/Actions.mocks/variables/MOCKS.md create mode 100644 docs/docs/auto-docs/screens/UserPortal/Volunteer/Actions/Actions/functions/default.md create mode 100644 docs/docs/auto-docs/screens/UserPortal/Volunteer/Groups/GroupModal/functions/default.md create mode 100644 docs/docs/auto-docs/screens/UserPortal/Volunteer/Groups/GroupModal/interfaces/InterfaceGroupModal.md create mode 100644 docs/docs/auto-docs/screens/UserPortal/Volunteer/Groups/Groups.mocks/variables/EMPTY_MOCKS.md create mode 100644 docs/docs/auto-docs/screens/UserPortal/Volunteer/Groups/Groups.mocks/variables/ERROR_MOCKS.md create mode 100644 docs/docs/auto-docs/screens/UserPortal/Volunteer/Groups/Groups.mocks/variables/MOCKS.md create mode 100644 docs/docs/auto-docs/screens/UserPortal/Volunteer/Groups/Groups.mocks/variables/UPDATE_ERROR_MOCKS.md create mode 100644 docs/docs/auto-docs/screens/UserPortal/Volunteer/Groups/Groups/functions/default.md create mode 100644 docs/docs/auto-docs/screens/UserPortal/Volunteer/Invitations/Invitations.mocks/variables/EMPTY_MOCKS.md create mode 100644 docs/docs/auto-docs/screens/UserPortal/Volunteer/Invitations/Invitations.mocks/variables/ERROR_MOCKS.md create mode 100644 docs/docs/auto-docs/screens/UserPortal/Volunteer/Invitations/Invitations.mocks/variables/MOCKS.md create mode 100644 docs/docs/auto-docs/screens/UserPortal/Volunteer/Invitations/Invitations.mocks/variables/UPDATE_ERROR_MOCKS.md create mode 100644 docs/docs/auto-docs/screens/UserPortal/Volunteer/Invitations/Invitations/functions/default.md create mode 100644 docs/docs/auto-docs/screens/UserPortal/Volunteer/UpcomingEvents/UpcomingEvents.mocks/variables/CREATE_ERROR_MOCKS.md create mode 100644 docs/docs/auto-docs/screens/UserPortal/Volunteer/UpcomingEvents/UpcomingEvents.mocks/variables/EMPTY_MOCKS.md create mode 100644 docs/docs/auto-docs/screens/UserPortal/Volunteer/UpcomingEvents/UpcomingEvents.mocks/variables/ERROR_MOCKS.md create mode 100644 docs/docs/auto-docs/screens/UserPortal/Volunteer/UpcomingEvents/UpcomingEvents.mocks/variables/MOCKS.md create mode 100644 docs/docs/auto-docs/screens/UserPortal/Volunteer/UpcomingEvents/UpcomingEvents/functions/default.md create mode 100644 docs/docs/auto-docs/screens/UserPortal/Volunteer/VolunteerManagement/functions/default.md create mode 100644 docs/docs/auto-docs/screens/Users/Users/functions/default.md create mode 100644 docs/docs/auto-docs/screens/Users/UsersMocks/variables/EMPTY_MOCKS.md create mode 100644 docs/docs/auto-docs/screens/Users/UsersMocks/variables/MOCKS.md create mode 100644 docs/docs/auto-docs/screens/Users/UsersMocks/variables/MOCKS2.md create mode 100644 docs/docs/auto-docs/setup/askAndSetDockerOption/askAndSetDockerOption/functions/default.md create mode 100644 docs/docs/auto-docs/setup/askAndUpdatePort/askAndUpdatePort/functions/default.md create mode 100644 docs/docs/auto-docs/setup/askForCustomPort/askForCustomPort/functions/askForCustomPort.md create mode 100644 docs/docs/auto-docs/setup/askForCustomPort/askForCustomPort/functions/reservedPortWarning.md create mode 100644 docs/docs/auto-docs/setup/askForCustomPort/askForCustomPort/functions/validatePort.md create mode 100644 docs/docs/auto-docs/setup/askForDocker/askForDocker/functions/askAndUpdateTalawaApiUrl.md create mode 100644 docs/docs/auto-docs/setup/askForDocker/askForDocker/functions/askForDocker.md create mode 100644 docs/docs/auto-docs/setup/askForTalawaApiUrl/askForTalawaApiUrl/functions/askForTalawaApiUrl.md create mode 100644 docs/docs/auto-docs/setup/checkConnection/checkConnection/functions/checkConnection.md create mode 100644 docs/docs/auto-docs/setup/checkEnvFile/checkEnvFile/functions/checkEnvFile.md create mode 100644 docs/docs/auto-docs/setup/updateEnvFile/updateEnvFile/functions/default.md create mode 100644 docs/docs/auto-docs/setup/validateRecaptcha/validateRecaptcha/functions/validateRecaptcha.md create mode 100644 docs/docs/auto-docs/state/action-creators/functions/installPlugin.md create mode 100644 docs/docs/auto-docs/state/action-creators/functions/removePlugin.md create mode 100644 docs/docs/auto-docs/state/action-creators/functions/updateInstalled.md create mode 100644 docs/docs/auto-docs/state/action-creators/functions/updatePluginLinks.md create mode 100644 docs/docs/auto-docs/state/action-creators/functions/updateTargets.md create mode 100644 docs/docs/auto-docs/state/helpers/Action/interfaces/InterfaceAction.md create mode 100644 docs/docs/auto-docs/state/hooks/functions/useAppDispatch.md create mode 100644 docs/docs/auto-docs/state/reducers/functions/reducers.md create mode 100644 docs/docs/auto-docs/state/reducers/pluginReducer/functions/default.md create mode 100644 docs/docs/auto-docs/state/reducers/routesReducer/functions/default.md create mode 100644 docs/docs/auto-docs/state/reducers/routesReducer/type-aliases/ComponentType.md create mode 100644 docs/docs/auto-docs/state/reducers/routesReducer/type-aliases/SubTargetType.md create mode 100644 docs/docs/auto-docs/state/reducers/routesReducer/type-aliases/TargetsType.md create mode 100644 docs/docs/auto-docs/state/reducers/type-aliases/RootState.md create mode 100644 docs/docs/auto-docs/state/reducers/userRoutesReducer/functions/default.md create mode 100644 docs/docs/auto-docs/state/reducers/userRoutesReducer/type-aliases/ComponentType.md create mode 100644 docs/docs/auto-docs/state/reducers/userRoutesReducer/type-aliases/SubTargetType.md create mode 100644 docs/docs/auto-docs/state/reducers/userRoutesReducer/type-aliases/TargetsType.md create mode 100644 docs/docs/auto-docs/state/store/type-aliases/AppDispatch.md create mode 100644 docs/docs/auto-docs/state/store/variables/store.md create mode 100644 docs/docs/auto-docs/subComponents/SortingButton/functions/default.md create mode 100644 docs/docs/auto-docs/utils/StaticMockLink/classes/StaticMockLink.md create mode 100644 docs/docs/auto-docs/utils/StaticMockLink/functions/mockSingleLink.md create mode 100644 docs/docs/auto-docs/utils/StaticMockLink/interfaces/InterfaceMockApolloLink.md create mode 100644 docs/docs/auto-docs/utils/chartToPdf/functions/exportDemographicsToCSV.md create mode 100644 docs/docs/auto-docs/utils/chartToPdf/functions/exportToCSV.md create mode 100644 docs/docs/auto-docs/utils/chartToPdf/functions/exportTrendsToCSV.md create mode 100644 docs/docs/auto-docs/utils/convertToBase64/functions/default.md create mode 100644 docs/docs/auto-docs/utils/currency/variables/currencyOptions.md create mode 100644 docs/docs/auto-docs/utils/currency/variables/currencySymbols.md create mode 100644 docs/docs/auto-docs/utils/dateFormatter/functions/formatDate.md create mode 100644 docs/docs/auto-docs/utils/errorHandler/functions/errorHandler.md create mode 100644 docs/docs/auto-docs/utils/fieldTypes/variables/default.md create mode 100644 docs/docs/auto-docs/utils/formEnumFields/variables/countryOptions.md create mode 100644 docs/docs/auto-docs/utils/formEnumFields/variables/educationGradeEnum.md create mode 100644 docs/docs/auto-docs/utils/formEnumFields/variables/employmentStatusEnum.md create mode 100644 docs/docs/auto-docs/utils/formEnumFields/variables/genderEnum.md create mode 100644 docs/docs/auto-docs/utils/formEnumFields/variables/maritalStatusEnum.md create mode 100644 docs/docs/auto-docs/utils/formEnumFields/variables/userRoleEnum.md create mode 100644 docs/docs/auto-docs/utils/getOrganizationId/functions/default.md create mode 100644 docs/docs/auto-docs/utils/getRefreshToken/functions/refreshToken.md create mode 100644 docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceActionItemCategoryInfo.md create mode 100644 docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceActionItemCategoryList.md create mode 100644 docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceActionItemInfo.md create mode 100644 docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceActionItemList.md create mode 100644 docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceAddOnSpotAttendeeProps.md create mode 100644 docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceAddress.md create mode 100644 docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceAgendaItemCategoryInfo.md create mode 100644 docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceAgendaItemCategoryList.md create mode 100644 docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceAgendaItemInfo.md create mode 100644 docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceAgendaItemList.md create mode 100644 docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceBaseEvent.md create mode 100644 docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceCampaignInfo.md create mode 100644 docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceCreateFund.md create mode 100644 docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceCreatePledge.md create mode 100644 docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceCreateVolunteerGroup.md create mode 100644 docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceCustomFieldData.md create mode 100644 docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceEventVolunteerInfo.md create mode 100644 docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceFormData.md create mode 100644 docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceFundInfo.md create mode 100644 docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceMapType.md create mode 100644 docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceMemberInfo.md create mode 100644 docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceMembersList.md create mode 100644 docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceOrgConnectionInfoType.md create mode 100644 docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceOrgConnectionType.md create mode 100644 docs/docs/auto-docs/utils/interfaces/interfaces/InterfacePledgeInfo.md create mode 100644 docs/docs/auto-docs/utils/interfaces/interfaces/InterfacePostCard.md create mode 100644 docs/docs/auto-docs/utils/interfaces/interfaces/InterfacePostForm.md create mode 100644 docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceQueryBlockPageMemberListItem.md create mode 100644 docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceQueryFundCampaignsPledges.md create mode 100644 docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceQueryMembershipRequestsListItem.md create mode 100644 docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceQueryOrganizationAdvertisementListItem.md create mode 100644 docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceQueryOrganizationEventListItem.md create mode 100644 docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceQueryOrganizationFundCampaigns.md create mode 100644 docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceQueryOrganizationListObject.md create mode 100644 docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceQueryOrganizationPostListItem.md create mode 100644 docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceQueryOrganizationUserTags.md create mode 100644 docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceQueryOrganizationsListObject.md create mode 100644 docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceQueryUserListItem.md create mode 100644 docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceQueryUserTagChildTags.md create mode 100644 docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceQueryUserTagsAssignedMembers.md create mode 100644 docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceQueryUserTagsMembersToAssignTo.md create mode 100644 docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceQueryVenueListItem.md create mode 100644 docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceTagData.md create mode 100644 docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceUserCampaign.md create mode 100644 docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceUserEvents.md create mode 100644 docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceUserInfo.md create mode 100644 docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceUserType.md create mode 100644 docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceVolunteerGroupInfo.md create mode 100644 docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceVolunteerMembership.md create mode 100644 docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceVolunteerRank.md create mode 100644 docs/docs/auto-docs/utils/languages/variables/languageArray.md create mode 100644 docs/docs/auto-docs/utils/languages/variables/languages.md create mode 100644 docs/docs/auto-docs/utils/linkValidator/functions/isValidLink.md create mode 100644 docs/docs/auto-docs/utils/organizationTagsUtils/interfaces/InterfaceOrganizationSubTagsQuery.md create mode 100644 docs/docs/auto-docs/utils/organizationTagsUtils/interfaces/InterfaceOrganizationTagsQuery.md create mode 100644 docs/docs/auto-docs/utils/organizationTagsUtils/interfaces/InterfaceTagAssignedMembersQuery.md create mode 100644 docs/docs/auto-docs/utils/organizationTagsUtils/interfaces/InterfaceTagUsersToAssignToQuery.md create mode 100644 docs/docs/auto-docs/utils/organizationTagsUtils/type-aliases/SortedByType.md create mode 100644 docs/docs/auto-docs/utils/organizationTagsUtils/type-aliases/TagActionType.md create mode 100644 docs/docs/auto-docs/utils/organizationTagsUtils/variables/TAGS_QUERY_DATA_CHUNK_SIZE.md create mode 100644 docs/docs/auto-docs/utils/organizationTagsUtils/variables/dataGridStyle.md create mode 100644 docs/docs/auto-docs/utils/recurrenceUtils/recurrenceConstants/variables/Days.md create mode 100644 docs/docs/auto-docs/utils/recurrenceUtils/recurrenceConstants/variables/allInstances.md create mode 100644 docs/docs/auto-docs/utils/recurrenceUtils/recurrenceConstants/variables/dayNames.md create mode 100644 docs/docs/auto-docs/utils/recurrenceUtils/recurrenceConstants/variables/daysOptions.md create mode 100644 docs/docs/auto-docs/utils/recurrenceUtils/recurrenceConstants/variables/endsAfter.md create mode 100644 docs/docs/auto-docs/utils/recurrenceUtils/recurrenceConstants/variables/endsNever.md create mode 100644 docs/docs/auto-docs/utils/recurrenceUtils/recurrenceConstants/variables/endsOn.md create mode 100644 docs/docs/auto-docs/utils/recurrenceUtils/recurrenceConstants/variables/frequencies.md create mode 100644 docs/docs/auto-docs/utils/recurrenceUtils/recurrenceConstants/variables/mondayToFriday.md create mode 100644 docs/docs/auto-docs/utils/recurrenceUtils/recurrenceConstants/variables/monthNames.md create mode 100644 docs/docs/auto-docs/utils/recurrenceUtils/recurrenceConstants/variables/recurrenceEndOptions.md create mode 100644 docs/docs/auto-docs/utils/recurrenceUtils/recurrenceConstants/variables/recurringEventMutationOptions.md create mode 100644 docs/docs/auto-docs/utils/recurrenceUtils/recurrenceConstants/variables/thisAndFollowingInstances.md create mode 100644 docs/docs/auto-docs/utils/recurrenceUtils/recurrenceConstants/variables/thisInstance.md create mode 100644 docs/docs/auto-docs/utils/recurrenceUtils/recurrenceConstants/variables/weekDayOccurences.md create mode 100644 docs/docs/auto-docs/utils/recurrenceUtils/recurrenceTypes/enumerations/Frequency.md create mode 100644 docs/docs/auto-docs/utils/recurrenceUtils/recurrenceTypes/enumerations/RecurrenceEndOption.md create mode 100644 docs/docs/auto-docs/utils/recurrenceUtils/recurrenceTypes/enumerations/RecurringEventMutationType.md create mode 100644 docs/docs/auto-docs/utils/recurrenceUtils/recurrenceTypes/enumerations/WeekDays.md create mode 100644 docs/docs/auto-docs/utils/recurrenceUtils/recurrenceTypes/interfaces/InterfaceRecurrenceRule.md create mode 100644 docs/docs/auto-docs/utils/recurrenceUtils/recurrenceTypes/interfaces/InterfaceRecurrenceRuleState.md create mode 100644 docs/docs/auto-docs/utils/recurrenceUtils/recurrenceUtilityFunctions/functions/getRecurrenceRuleText.md create mode 100644 docs/docs/auto-docs/utils/recurrenceUtils/recurrenceUtilityFunctions/functions/getWeekDayOccurenceInMonth.md create mode 100644 docs/docs/auto-docs/utils/recurrenceUtils/recurrenceUtilityFunctions/functions/hasRecurrenceRuleChanged.md create mode 100644 docs/docs/auto-docs/utils/recurrenceUtils/recurrenceUtilityFunctions/functions/haveInstanceDatesChanged.md create mode 100644 docs/docs/auto-docs/utils/recurrenceUtils/recurrenceUtilityFunctions/functions/isLastOccurenceOfWeekDay.md create mode 100644 docs/docs/auto-docs/utils/timezoneUtils/dateTimeConfig/variables/dateTimeFields.md create mode 100644 docs/docs/auto-docs/utils/timezoneUtils/dateTimeMiddleware/variables/requestMiddleware.md create mode 100644 docs/docs/auto-docs/utils/timezoneUtils/dateTimeMiddleware/variables/responseMiddleware.md create mode 100644 docs/docs/auto-docs/utils/useLocalstorage/functions/getItem.md create mode 100644 docs/docs/auto-docs/utils/useLocalstorage/functions/getStorageKey.md create mode 100644 docs/docs/auto-docs/utils/useLocalstorage/functions/removeItem.md create mode 100644 docs/docs/auto-docs/utils/useLocalstorage/functions/setItem.md create mode 100644 docs/docs/auto-docs/utils/useLocalstorage/functions/useLocalStorage.md create mode 100644 docs/docs/auto-docs/utils/useSession/functions/default.md create mode 100644 fix-readme-links.js delete mode 100644 talawa-admin-docs/.nojekyll delete mode 100644 talawa-admin-docs/Dockerfile delete mode 100644 talawa-admin-docs/README.md delete mode 100644 talawa-admin-docs/classes/components_AddOn_support_services_Plugin_helper.default.md delete mode 100644 talawa-admin-docs/classes/components_AddOn_support_services_Render_helper.default.md delete mode 100644 talawa-admin-docs/enums/components_EventCalendar_EventCalendar.ViewType.md delete mode 100644 talawa-admin-docs/interfaces/components_CheckIn_types.InterfaceAttendeeCheckIn.md delete mode 100644 talawa-admin-docs/interfaces/components_CheckIn_types.InterfaceAttendeeQueryResponse.md delete mode 100644 talawa-admin-docs/interfaces/components_CheckIn_types.InterfaceModalProp.md delete mode 100644 talawa-admin-docs/interfaces/components_CheckIn_types.InterfaceTableCheckIn.md delete mode 100644 talawa-admin-docs/interfaces/components_CheckIn_types.InterfaceTableData.md delete mode 100644 talawa-admin-docs/interfaces/components_CheckIn_types.InterfaceUser.md delete mode 100644 talawa-admin-docs/interfaces/components_CollapsibleDropdown_CollapsibleDropdown.InterfaceCollapsibleDropdown.md delete mode 100644 talawa-admin-docs/interfaces/components_IconComponent_IconComponent.InterfaceIconComponent.md delete mode 100644 talawa-admin-docs/interfaces/components_LeftDrawerEvent_LeftDrawerEvent.InterfaceLeftDrawerProps.md delete mode 100644 talawa-admin-docs/interfaces/components_LeftDrawerEvent_LeftDrawerEventWrapper.InterfacePropType.md delete mode 100644 talawa-admin-docs/interfaces/components_LeftDrawerOrg_LeftDrawerOrg.InterfaceLeftDrawerProps.md delete mode 100644 talawa-admin-docs/interfaces/components_LeftDrawer_LeftDrawer.InterfaceLeftDrawerProps.md delete mode 100644 talawa-admin-docs/interfaces/components_OrgListCard_OrgListCard.InterfaceOrgListCardProps.md delete mode 100644 talawa-admin-docs/interfaces/components_OrgProfileFieldSettings_OrgProfileFieldSettings.InterfaceCustomFieldData.md delete mode 100644 talawa-admin-docs/interfaces/components_OrganizationDashCards_CardItem.InterfaceCardItem.md delete mode 100644 talawa-admin-docs/interfaces/components_OrganizationScreen_OrganizationScreen.InterfaceOrganizationScreenProps.md delete mode 100644 talawa-admin-docs/interfaces/components_SuperAdminScreen_SuperAdminScreen.InterfaceSuperAdminScreenProps.md delete mode 100644 talawa-admin-docs/interfaces/components_TableLoader_TableLoader.InterfaceTableLoader.md delete mode 100644 talawa-admin-docs/modules.md delete mode 100644 talawa-admin-docs/modules/components_AddOn_AddOn.md delete mode 100644 talawa-admin-docs/modules/components_AddOn_AddOn_test.md delete mode 100644 talawa-admin-docs/modules/components_AddOn_core_AddOnEntry_AddOnEntry.md delete mode 100644 talawa-admin-docs/modules/components_AddOn_core_AddOnEntry_AddOnEntryMocks.md delete mode 100644 talawa-admin-docs/modules/components_AddOn_core_AddOnEntry_AddOnEntry_test.md delete mode 100644 talawa-admin-docs/modules/components_AddOn_core_AddOnRegister_AddOnRegister.md delete mode 100644 talawa-admin-docs/modules/components_AddOn_core_AddOnRegister_AddOnRegister_test.md delete mode 100644 talawa-admin-docs/modules/components_AddOn_core_AddOnStore_AddOnStore.md delete mode 100644 talawa-admin-docs/modules/components_AddOn_core_AddOnStore_AddOnStore_test.md delete mode 100644 talawa-admin-docs/modules/components_AddOn_support_components_Action_Action.md delete mode 100644 talawa-admin-docs/modules/components_AddOn_support_components_Action_Action_test.md delete mode 100644 talawa-admin-docs/modules/components_AddOn_support_components_MainContent_MainContent.md delete mode 100644 talawa-admin-docs/modules/components_AddOn_support_components_MainContent_MainContent_test.md delete mode 100644 talawa-admin-docs/modules/components_AddOn_support_components_SidePanel_SidePanel.md delete mode 100644 talawa-admin-docs/modules/components_AddOn_support_components_SidePanel_SidePanel_test.md delete mode 100644 talawa-admin-docs/modules/components_AddOn_support_services_Plugin_helper.md delete mode 100644 talawa-admin-docs/modules/components_AddOn_support_services_Render_helper.md delete mode 100644 talawa-admin-docs/modules/components_Advertisements_Advertisements.md delete mode 100644 talawa-admin-docs/modules/components_Advertisements_Advertisements_test.md delete mode 100644 talawa-admin-docs/modules/components_Advertisements_core_AdvertisementEntry_AdvertisementEntry.md delete mode 100644 talawa-admin-docs/modules/components_Advertisements_core_AdvertisementEntry_AdvertisementEntry_test.md delete mode 100644 talawa-admin-docs/modules/components_Advertisements_core_AdvertisementRegister_AdvertisementRegister.md delete mode 100644 talawa-admin-docs/modules/components_Advertisements_core_AdvertisementRegister_AdvertisementRegister_test.md delete mode 100644 talawa-admin-docs/modules/components_ChangeLanguageDropdown_ChangeLanguageDropDown.md delete mode 100644 talawa-admin-docs/modules/components_ChangeLanguageDropdown_ChangeLanguageDropdown_test.md delete mode 100644 talawa-admin-docs/modules/components_CheckIn_CheckInModal.md delete mode 100644 talawa-admin-docs/modules/components_CheckIn_CheckInModal_test.md delete mode 100644 talawa-admin-docs/modules/components_CheckIn_CheckInWrapper.md delete mode 100644 talawa-admin-docs/modules/components_CheckIn_CheckInWrapper_test.md delete mode 100644 talawa-admin-docs/modules/components_CheckIn_TableRow.md delete mode 100644 talawa-admin-docs/modules/components_CheckIn_TableRow_test.md delete mode 100644 talawa-admin-docs/modules/components_CheckIn_mocks.md delete mode 100644 talawa-admin-docs/modules/components_CheckIn_tagTemplate.md delete mode 100644 talawa-admin-docs/modules/components_CheckIn_types.md delete mode 100644 talawa-admin-docs/modules/components_CollapsibleDropdown_CollapsibleDropdown.md delete mode 100644 talawa-admin-docs/modules/components_CollapsibleDropdown_CollapsibleDropdown_test.md delete mode 100644 talawa-admin-docs/modules/components_ContriStats_ContriStats.md delete mode 100644 talawa-admin-docs/modules/components_ContriStats_ContriStats_test.md delete mode 100644 talawa-admin-docs/modules/components_CurrentHourIndicator_CurrentHourIndicator.md delete mode 100644 talawa-admin-docs/modules/components_CurrentHourIndicator_CurrentHourIndicator_test.md delete mode 100644 talawa-admin-docs/modules/components_DeleteOrg_DeleteOrg.md delete mode 100644 talawa-admin-docs/modules/components_DeleteOrg_DeleteOrg_test.md delete mode 100644 talawa-admin-docs/modules/components_EditCustomFieldDropDown_EditCustomFieldDropDown.md delete mode 100644 talawa-admin-docs/modules/components_EditCustomFieldDropDown_EditCustomFieldDropDown_test.md delete mode 100644 talawa-admin-docs/modules/components_EventCalendar_EventCalendar.md delete mode 100644 talawa-admin-docs/modules/components_EventCalendar_EventCalendar_test.md delete mode 100644 talawa-admin-docs/modules/components_EventListCard_EventListCard.md delete mode 100644 talawa-admin-docs/modules/components_EventListCard_EventListCard_test.md delete mode 100644 talawa-admin-docs/modules/components_EventRegistrantsModal_EventRegistrantsModal.md delete mode 100644 talawa-admin-docs/modules/components_EventRegistrantsModal_EventRegistrantsModal_test.md delete mode 100644 talawa-admin-docs/modules/components_EventRegistrantsModal_EventRegistrantsWrapper.md delete mode 100644 talawa-admin-docs/modules/components_EventRegistrantsModal_EventRegistrantsWrapper_test.md delete mode 100644 talawa-admin-docs/modules/components_EventStats_EventStats.md delete mode 100644 talawa-admin-docs/modules/components_EventStats_EventStatsWrapper.md delete mode 100644 talawa-admin-docs/modules/components_EventStats_EventStatsWrapper_test.md delete mode 100644 talawa-admin-docs/modules/components_EventStats_EventStats_test.md delete mode 100644 talawa-admin-docs/modules/components_EventStats_Statistics_AverageRating.md delete mode 100644 talawa-admin-docs/modules/components_EventStats_Statistics_AverageRating_test.md delete mode 100644 talawa-admin-docs/modules/components_EventStats_Statistics_Feedback.md delete mode 100644 talawa-admin-docs/modules/components_EventStats_Statistics_Feedback_test.md delete mode 100644 talawa-admin-docs/modules/components_EventStats_Statistics_Review.md delete mode 100644 talawa-admin-docs/modules/components_EventStats_Statistics_Review_test.md delete mode 100644 talawa-admin-docs/modules/components_IconComponent_IconComponent.md delete mode 100644 talawa-admin-docs/modules/components_IconComponent_IconComponent_test.md delete mode 100644 talawa-admin-docs/modules/components_LeftDrawerEvent_LeftDrawerEvent.md delete mode 100644 talawa-admin-docs/modules/components_LeftDrawerEvent_LeftDrawerEventWrapper.md delete mode 100644 talawa-admin-docs/modules/components_LeftDrawerEvent_LeftDrawerEventWrapper_test.md delete mode 100644 talawa-admin-docs/modules/components_LeftDrawerEvent_LeftDrawerEvent_test.md delete mode 100644 talawa-admin-docs/modules/components_LeftDrawerOrg_LeftDrawerOrg.md delete mode 100644 talawa-admin-docs/modules/components_LeftDrawerOrg_LeftDrawerOrg_test.md delete mode 100644 talawa-admin-docs/modules/components_LeftDrawer_LeftDrawer.md delete mode 100644 talawa-admin-docs/modules/components_LeftDrawer_LeftDrawer_test.md delete mode 100644 talawa-admin-docs/modules/components_Loader_Loader.md delete mode 100644 talawa-admin-docs/modules/components_Loader_Loader_test.md delete mode 100644 talawa-admin-docs/modules/components_LoginPortalToggle_LoginPortalToggle.md delete mode 100644 talawa-admin-docs/modules/components_LoginPortalToggle_LoginPortalToggle_test.md delete mode 100644 talawa-admin-docs/modules/components_MemberRequestCard_MemberRequestCard.md delete mode 100644 talawa-admin-docs/modules/components_MemberRequestCard_MemberRequestCard_test.md delete mode 100644 talawa-admin-docs/modules/components_NotFound_NotFound.md delete mode 100644 talawa-admin-docs/modules/components_NotFound_NotFound_test.md delete mode 100644 talawa-admin-docs/modules/components_OrgAdminListCard_OrgAdminListCard.md delete mode 100644 talawa-admin-docs/modules/components_OrgAdminListCard_OrgAdminListCard_test.md delete mode 100644 talawa-admin-docs/modules/components_OrgContriCards_OrgContriCards.md delete mode 100644 talawa-admin-docs/modules/components_OrgContriCards_OrgContriCards_test.md delete mode 100644 talawa-admin-docs/modules/components_OrgDelete_OrgDelete.md delete mode 100644 talawa-admin-docs/modules/components_OrgDelete_OrgDelete_test.md delete mode 100644 talawa-admin-docs/modules/components_OrgListCard_OrgListCard.md delete mode 100644 talawa-admin-docs/modules/components_OrgListCard_OrgListCard_test.md delete mode 100644 talawa-admin-docs/modules/components_OrgPeopleListCard_OrgPeopleListCard.md delete mode 100644 talawa-admin-docs/modules/components_OrgPeopleListCard_OrgPeopleListCard_test.md delete mode 100644 talawa-admin-docs/modules/components_OrgPostCard_OrgPostCard.md delete mode 100644 talawa-admin-docs/modules/components_OrgPostCard_OrgPostCard_test.md delete mode 100644 talawa-admin-docs/modules/components_OrgProfileFieldSettings_OrgProfileFieldSettings.md delete mode 100644 talawa-admin-docs/modules/components_OrgProfileFieldSettings_OrgProfileFieldSettings_test.md delete mode 100644 talawa-admin-docs/modules/components_OrgUpdate_OrgUpdate.md delete mode 100644 talawa-admin-docs/modules/components_OrgUpdate_OrgUpdateMocks.md delete mode 100644 talawa-admin-docs/modules/components_OrgUpdate_OrgUpdate_test.md delete mode 100644 talawa-admin-docs/modules/components_OrganizationCardStart_OrganizationCardStart.md delete mode 100644 talawa-admin-docs/modules/components_OrganizationCardStart_OrganizationCardStart_test.md delete mode 100644 talawa-admin-docs/modules/components_OrganizationCard_OrganizationCard.md delete mode 100644 talawa-admin-docs/modules/components_OrganizationCard_OrganizationCard_test.md delete mode 100644 talawa-admin-docs/modules/components_OrganizationDashCards_CardItem.md delete mode 100644 talawa-admin-docs/modules/components_OrganizationDashCards_CardItemLoading.md delete mode 100644 talawa-admin-docs/modules/components_OrganizationDashCards_CardItem_test.md delete mode 100644 talawa-admin-docs/modules/components_OrganizationDashCards_DashboardCard.md delete mode 100644 talawa-admin-docs/modules/components_OrganizationDashCards_DashboardCardLoading.md delete mode 100644 talawa-admin-docs/modules/components_OrganizationDashCards_DashboardCard_test.md delete mode 100644 talawa-admin-docs/modules/components_OrganizationScreen_OrganizationScreen.md delete mode 100644 talawa-admin-docs/modules/components_OrganizationScreen_OrganizationScreen_test.md delete mode 100644 talawa-admin-docs/modules/components_PaginationList_PaginationList.md delete mode 100644 talawa-admin-docs/modules/components_Pagination_Pagination.md delete mode 100644 talawa-admin-docs/modules/components_Pagination_Pagination_test.md delete mode 100644 talawa-admin-docs/modules/components_SecuredRoute_SecuredRoute.md delete mode 100644 talawa-admin-docs/modules/components_SuperAdminScreen_SuperAdminScreen.md delete mode 100644 talawa-admin-docs/modules/components_SuperAdminScreen_SuperAdminScreen_test.md delete mode 100644 talawa-admin-docs/modules/components_TableLoader_TableLoader.md delete mode 100644 talawa-admin-docs/modules/components_TableLoader_TableLoader_test.md delete mode 100644 talawa-admin-docs/modules/components_UserListCard_UserListCard.md delete mode 100644 talawa-admin-docs/modules/components_UserListCard_UserListCard_test.md delete mode 100644 talawa-admin-docs/modules/components_UserPasswordUpdate_UserPasswordUpdate.md delete mode 100644 talawa-admin-docs/modules/components_UserPasswordUpdate_UserPasswordUpdate_test.md delete mode 100644 talawa-admin-docs/modules/components_UserPortal_ChatRoom_ChatRoom.md delete mode 100644 talawa-admin-docs/modules/components_UserPortal_ChatRoom_ChatRoom_test.md delete mode 100644 talawa-admin-docs/modules/components_UserPortal_CommentCard_CommentCard.md delete mode 100644 talawa-admin-docs/modules/components_UserPortal_CommentCard_CommentCard_test.md delete mode 100644 talawa-admin-docs/modules/components_UserPortal_ContactCard_ContactCard.md delete mode 100644 talawa-admin-docs/modules/components_UserPortal_ContactCard_ContactCard_test.md delete mode 100644 talawa-admin-docs/modules/components_UserPortal_DonationCard_DonationCard.md delete mode 100644 talawa-admin-docs/modules/components_UserPortal_EventCard_EventCard.md delete mode 100644 talawa-admin-docs/modules/components_UserPortal_EventCard_EventCard_test.md delete mode 100644 talawa-admin-docs/modules/components_UserPortal_Login_Login.md delete mode 100644 talawa-admin-docs/modules/components_UserPortal_Login_Login_test.md delete mode 100644 talawa-admin-docs/modules/components_UserPortal_OrganizationCard_OrganizationCard.md delete mode 100644 talawa-admin-docs/modules/components_UserPortal_OrganizationCard_OrganizationCard_test.md delete mode 100644 talawa-admin-docs/modules/components_UserPortal_OrganizationNavbar_OrganizationNavbar.md delete mode 100644 talawa-admin-docs/modules/components_UserPortal_OrganizationNavbar_OrganizationNavbar_test.md delete mode 100644 talawa-admin-docs/modules/components_UserPortal_OrganizationSidebar_OrganizationSidebar.md delete mode 100644 talawa-admin-docs/modules/components_UserPortal_OrganizationSidebar_OrganizationSidebar_test.md delete mode 100644 talawa-admin-docs/modules/components_UserPortal_PeopleCard_PeopleCard.md delete mode 100644 talawa-admin-docs/modules/components_UserPortal_PeopleCard_PeopleCard_test.md delete mode 100644 talawa-admin-docs/modules/components_UserPortal_PostCard_PostCard.md delete mode 100644 talawa-admin-docs/modules/components_UserPortal_PostCard_PostCard_test.md delete mode 100644 talawa-admin-docs/modules/components_UserPortal_PromotedPost_PromotedPost.md delete mode 100644 talawa-admin-docs/modules/components_UserPortal_PromotedPost_PromotedPost_test.md delete mode 100644 talawa-admin-docs/modules/components_UserPortal_Register_Register.md delete mode 100644 talawa-admin-docs/modules/components_UserPortal_Register_Register_test.md delete mode 100644 talawa-admin-docs/modules/components_UserPortal_SecuredRouteForUser_SecuredRouteForUser.md delete mode 100644 talawa-admin-docs/modules/components_UserPortal_SecuredRouteForUser_SecuredRouteForUser_test.md delete mode 100644 talawa-admin-docs/modules/components_UserPortal_UserNavbar_UserNavbar.md delete mode 100644 talawa-admin-docs/modules/components_UserPortal_UserNavbar_UserNavbar_test.md delete mode 100644 talawa-admin-docs/modules/components_UserPortal_UserSidebar_UserSidebar.md delete mode 100644 talawa-admin-docs/modules/components_UserPortal_UserSidebar_UserSidebar_test.md delete mode 100644 talawa-admin-docs/modules/components_UserUpdate_UserUpdate.md delete mode 100644 talawa-admin-docs/modules/components_UserUpdate_UserUpdate_test.md delete mode 100644 talawa-admin-docs/modules/components_UsersTableItem_UserTableItemMocks.md delete mode 100644 talawa-admin-docs/modules/components_UsersTableItem_UserTableItem_test.md delete mode 100644 talawa-admin-docs/modules/components_UsersTableItem_UsersTableItem.md delete mode 100644 talawa-admin-docs/modules/components_plugins.md delete mode 100644 talawa-admin-docs/modules/components_plugins_DummyPlugin2_DummyPlugin2.md delete mode 100644 talawa-admin-docs/modules/components_plugins_DummyPlugin2_DummyPlugin2_test.md delete mode 100644 talawa-admin-docs/modules/components_plugins_DummyPlugin_DummyPlugin.md delete mode 100644 talawa-admin-docs/modules/components_plugins_DummyPlugin_DummyPlugin_test.md delete mode 100644 talawa-admin-docs/modules/screens_BlockUser_BlockUser.md delete mode 100644 talawa-admin-docs/modules/screens_BlockUser_BlockUser_test.md delete mode 100644 talawa-admin-docs/modules/screens_EventDashboard_EventDashboard.md delete mode 100644 talawa-admin-docs/modules/screens_EventDashboard_EventDashboard_mocks.md delete mode 100644 talawa-admin-docs/modules/screens_EventDashboard_EventDashboard_test.md delete mode 100644 talawa-admin-docs/modules/screens_ForgotPassword_ForgotPassword.md delete mode 100644 talawa-admin-docs/modules/screens_ForgotPassword_ForgotPassword_test.md delete mode 100644 talawa-admin-docs/modules/screens_LoginPage_LoginPage.md delete mode 100644 talawa-admin-docs/modules/screens_LoginPage_LoginPage_test.md delete mode 100644 talawa-admin-docs/modules/screens_MemberDetail_MemberDetail.md delete mode 100644 talawa-admin-docs/modules/screens_MemberDetail_MemberDetail_test.md delete mode 100644 talawa-admin-docs/modules/screens_OrgContribution_OrgContribution.md delete mode 100644 talawa-admin-docs/modules/screens_OrgContribution_OrgContribution_test.md delete mode 100644 talawa-admin-docs/modules/screens_OrgList_OrgList.md delete mode 100644 talawa-admin-docs/modules/screens_OrgList_OrgListMocks.md delete mode 100644 talawa-admin-docs/modules/screens_OrgList_OrgList_test.md delete mode 100644 talawa-admin-docs/modules/screens_OrgList_OrganizationModal.md delete mode 100644 talawa-admin-docs/modules/screens_OrgPost_OrgPost.md delete mode 100644 talawa-admin-docs/modules/screens_OrgPost_OrgPost_test.md delete mode 100644 talawa-admin-docs/modules/screens_OrgSettings_OrgSettings.md delete mode 100644 talawa-admin-docs/modules/screens_OrgSettings_OrgSettings_test.md delete mode 100644 talawa-admin-docs/modules/screens_OrganizationDashboard_OrganizationDashboard.md delete mode 100644 talawa-admin-docs/modules/screens_OrganizationDashboard_OrganizationDashboardMocks.md delete mode 100644 talawa-admin-docs/modules/screens_OrganizationDashboard_OrganizationDashboard_test.md delete mode 100644 talawa-admin-docs/modules/screens_OrganizationEvents_OrganizationEvents.md delete mode 100644 talawa-admin-docs/modules/screens_OrganizationEvents_OrganizationEvents_test.md delete mode 100644 talawa-admin-docs/modules/screens_OrganizationPeople_OrganizationPeople.md delete mode 100644 talawa-admin-docs/modules/screens_OrganizationPeople_OrganizationPeople_test.md delete mode 100644 talawa-admin-docs/modules/screens_PageNotFound_PageNotFound.md delete mode 100644 talawa-admin-docs/modules/screens_PageNotFound_PageNotFound_test.md delete mode 100644 talawa-admin-docs/modules/screens_UserPortal_Chat_Chat.md delete mode 100644 talawa-admin-docs/modules/screens_UserPortal_Chat_Chat_test.md delete mode 100644 talawa-admin-docs/modules/screens_UserPortal_Donate_Donate.md delete mode 100644 talawa-admin-docs/modules/screens_UserPortal_Donate_Donate_test.md delete mode 100644 talawa-admin-docs/modules/screens_UserPortal_Events_Events.md delete mode 100644 talawa-admin-docs/modules/screens_UserPortal_Events_Events_test.md delete mode 100644 talawa-admin-docs/modules/screens_UserPortal_Home_Home.md delete mode 100644 talawa-admin-docs/modules/screens_UserPortal_Home_Home_test.md delete mode 100644 talawa-admin-docs/modules/screens_UserPortal_Organizations_Organizations.md delete mode 100644 talawa-admin-docs/modules/screens_UserPortal_Organizations_Organizations_test.md delete mode 100644 talawa-admin-docs/modules/screens_UserPortal_People_People.md delete mode 100644 talawa-admin-docs/modules/screens_UserPortal_People_People_test.md delete mode 100644 talawa-admin-docs/modules/screens_UserPortal_Settings_Settings.md delete mode 100644 talawa-admin-docs/modules/screens_UserPortal_Settings_Settings_test.md delete mode 100644 talawa-admin-docs/modules/screens_UserPortal_UserLoginPage_UserLoginPage.md delete mode 100644 talawa-admin-docs/modules/screens_UserPortal_UserLoginPage_UserLoginPage_test.md delete mode 100644 talawa-admin-docs/modules/screens_Users_Users.md delete mode 100644 talawa-admin-docs/modules/screens_Users_UsersMocks.md delete mode 100644 talawa-admin-docs/modules/screens_Users_Users_test.md create mode 100644 tsconfig.docs.json create mode 100644 typedoc.json diff --git a/.eslintignore b/.eslintignore index b34742bb74..30da6cae7a 100644 --- a/.eslintignore +++ b/.eslintignore @@ -3,7 +3,7 @@ src/components/CheckIn/tagTemplate.ts package.json package-lock.json tsconfig.json - +fix-readme-links.js # Ignore the Docusaurus website subdirectory docs/** diff --git a/.github/workflows/pull-request.yml b/.github/workflows/pull-request.yml index 5f133c3014..3165850c74 100644 --- a/.github/workflows/pull-request.yml +++ b/.github/workflows/pull-request.yml @@ -416,27 +416,30 @@ jobs: run: | docker stop talawa-admin-app-container docker rm talawa-admin-app-container + Test-Docusaurus-Deployment: name: Test Deployment to https://docs-admin.talawa.io runs-on: ubuntu-latest needs: [Docker-Start-Check, Start-App-Without-Docker] - # Run only if the develop-postgres branch and not dependabot + # Run only if the develop-postgres branch and not dependabot if: ${{ github.actor != 'dependabot[bot]' && github.event.pull_request.base.ref == 'develop-postgres' }} steps: - - uses: actions/checkout@v4 - - uses: actions/setup-node@v4 + - name: Checkout the Repository + uses: actions/checkout@v4 + + - name: Set up Node.js + uses: actions/setup-node@v4 with: - node-version: '22.x' - cache: yarn - cache-dependency-path: 'docs/' - # Run Docusaurus in the ./docs directory + node-version: '20.x' + - name: Install dependencies working-directory: ./docs - run: yarn install --frozen-lockfile + run: npm install + - name: Test building the website working-directory: ./docs - run: yarn build + run: npm run build Check-Target-Branch: if: ${{ github.actor != 'dependabot[bot]' }} @@ -516,4 +519,4 @@ jobs: - name: Run docstring compliance check run: | source venv/bin/activate - python .github/workflows/scripts/check_docstrings.py --directories .github + python .github/workflows/scripts/check_docstrings.py --directories .github \ No newline at end of file diff --git a/.gitignore b/.gitignore index 1bd6f0deb1..8b262f4bc1 100644 --- a/.gitignore +++ b/.gitignore @@ -1,6 +1,9 @@ # Docusaurus related .docusaurus +# generated docs using husky pre-commit hook +# /docs/docs/auto-docs + # See https://help.github.com/articles/ignoring-files/ for more about ignoring files. # files that interfere with YARN diff --git a/.husky/pre-commit b/.husky/pre-commit index 8a0ce26aa2..5f91e7075c 100755 --- a/.husky/pre-commit +++ b/.husky/pre-commit @@ -1,4 +1,5 @@ +npm run generate-docs npm run format:fix # npm run lint:fix npm run lint-staged diff --git a/docs/docs/auto-docs/App/functions/default.md b/docs/docs/auto-docs/App/functions/default.md new file mode 100644 index 0000000000..454e609e38 --- /dev/null +++ b/docs/docs/auto-docs/App/functions/default.md @@ -0,0 +1,28 @@ +[Admin Docs](/) + +*** + +# Function: default() + +> **default**(): `JSX.Element` + +Defined in: [src/App.tsx:74](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/App.tsx#L74) + +This is the main function for our application. It sets up all the routes and components, +defining how the user can navigate through the app. The function uses React Router's `Routes` +and `Route` components to map different URL paths to corresponding screens and components. + +## Important Details +- **UseEffect Hook**: This hook checks user authentication status using the `CHECK_AUTH` GraphQL query. +- **Plugins**: It dynamically loads additional routes for any installed plugins. +- **Routes**: + - The root route ("/") takes the user to the `LoginPage`. + - Protected routes are wrapped with the `SecuredRoute` component to ensure they are only accessible to authenticated users. + - Admin and Super Admin routes allow access to organization and user management screens. + - User portal routes allow end-users to interact with organizations, settings, chat, events, etc. + +## Returns + +`JSX.Element` + +The rendered routes and components of the application. diff --git a/docs/docs/auto-docs/Constant/constant/variables/AUTH_TOKEN.md b/docs/docs/auto-docs/Constant/constant/variables/AUTH_TOKEN.md new file mode 100644 index 0000000000..3acc4b013c --- /dev/null +++ b/docs/docs/auto-docs/Constant/constant/variables/AUTH_TOKEN.md @@ -0,0 +1,9 @@ +[Admin Docs](/) + +*** + +# Variable: AUTH\_TOKEN + +> `const` **AUTH\_TOKEN**: `""` = `''` + +Defined in: [src/Constant/constant.ts:1](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/Constant/constant.ts#L1) diff --git a/docs/docs/auto-docs/Constant/constant/variables/BACKEND_URL.md b/docs/docs/auto-docs/Constant/constant/variables/BACKEND_URL.md new file mode 100644 index 0000000000..f0b90d1fbd --- /dev/null +++ b/docs/docs/auto-docs/Constant/constant/variables/BACKEND_URL.md @@ -0,0 +1,9 @@ +[Admin Docs](/) + +*** + +# Variable: BACKEND\_URL + +> `const` **BACKEND\_URL**: `string` = `process.env.REACT_APP_TALAWA_URL` + +Defined in: [src/Constant/constant.ts:2](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/Constant/constant.ts#L2) diff --git a/docs/docs/auto-docs/Constant/constant/variables/REACT_APP_BACKEND_WEBSOCKET_URL.md b/docs/docs/auto-docs/Constant/constant/variables/REACT_APP_BACKEND_WEBSOCKET_URL.md new file mode 100644 index 0000000000..b30b53d13a --- /dev/null +++ b/docs/docs/auto-docs/Constant/constant/variables/REACT_APP_BACKEND_WEBSOCKET_URL.md @@ -0,0 +1,9 @@ +[Admin Docs](/) + +*** + +# Variable: REACT\_APP\_BACKEND\_WEBSOCKET\_URL + +> `const` **REACT\_APP\_BACKEND\_WEBSOCKET\_URL**: `string` + +Defined in: [src/Constant/constant.ts:6](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/Constant/constant.ts#L6) diff --git a/docs/docs/auto-docs/Constant/constant/variables/REACT_APP_CUSTOM_PORT.md b/docs/docs/auto-docs/Constant/constant/variables/REACT_APP_CUSTOM_PORT.md new file mode 100644 index 0000000000..0064532080 --- /dev/null +++ b/docs/docs/auto-docs/Constant/constant/variables/REACT_APP_CUSTOM_PORT.md @@ -0,0 +1,9 @@ +[Admin Docs](/) + +*** + +# Variable: REACT\_APP\_CUSTOM\_PORT + +> `const` **REACT\_APP\_CUSTOM\_PORT**: `string` = `process.env.PORT` + +Defined in: [src/Constant/constant.ts:5](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/Constant/constant.ts#L5) diff --git a/docs/docs/auto-docs/Constant/constant/variables/REACT_APP_USE_RECAPTCHA.md b/docs/docs/auto-docs/Constant/constant/variables/REACT_APP_USE_RECAPTCHA.md new file mode 100644 index 0000000000..f78146c2c4 --- /dev/null +++ b/docs/docs/auto-docs/Constant/constant/variables/REACT_APP_USE_RECAPTCHA.md @@ -0,0 +1,9 @@ +[Admin Docs](/) + +*** + +# Variable: REACT\_APP\_USE\_RECAPTCHA + +> `const` **REACT\_APP\_USE\_RECAPTCHA**: `string` = `process.env.REACT_APP_USE_RECAPTCHA` + +Defined in: [src/Constant/constant.ts:4](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/Constant/constant.ts#L4) diff --git a/docs/docs/auto-docs/Constant/constant/variables/RECAPTCHA_SITE_KEY.md b/docs/docs/auto-docs/Constant/constant/variables/RECAPTCHA_SITE_KEY.md new file mode 100644 index 0000000000..6d6b54617b --- /dev/null +++ b/docs/docs/auto-docs/Constant/constant/variables/RECAPTCHA_SITE_KEY.md @@ -0,0 +1,9 @@ +[Admin Docs](/) + +*** + +# Variable: RECAPTCHA\_SITE\_KEY + +> `const` **RECAPTCHA\_SITE\_KEY**: `string` = `process.env.REACT_APP_RECAPTCHA_SITE_KEY` + +Defined in: [src/Constant/constant.ts:3](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/Constant/constant.ts#L3) diff --git a/docs/docs/auto-docs/GraphQl/Mutations/ActionItemCategoryMutations/variables/CREATE_ACTION_ITEM_CATEGORY_MUTATION.md b/docs/docs/auto-docs/GraphQl/Mutations/ActionItemCategoryMutations/variables/CREATE_ACTION_ITEM_CATEGORY_MUTATION.md new file mode 100644 index 0000000000..23139e4cb4 --- /dev/null +++ b/docs/docs/auto-docs/GraphQl/Mutations/ActionItemCategoryMutations/variables/CREATE_ACTION_ITEM_CATEGORY_MUTATION.md @@ -0,0 +1,23 @@ +[Admin Docs](/) + +*** + +# Variable: CREATE\_ACTION\_ITEM\_CATEGORY\_MUTATION + +> `const` **CREATE\_ACTION\_ITEM\_CATEGORY\_MUTATION**: `DocumentNode` + +Defined in: [src/GraphQl/Mutations/ActionItemCategoryMutations.ts:11](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/GraphQl/Mutations/ActionItemCategoryMutations.ts#L11) + +GraphQL mutation to create an action item category. + +## Param + +Name of the ActionItemCategory. + +## Param + +Disabled status of the ActionItemCategory. + +## Param + +Organization to which the ActionItemCategory belongs. diff --git a/docs/docs/auto-docs/GraphQl/Mutations/ActionItemCategoryMutations/variables/UPDATE_ACTION_ITEM_CATEGORY_MUTATION.md b/docs/docs/auto-docs/GraphQl/Mutations/ActionItemCategoryMutations/variables/UPDATE_ACTION_ITEM_CATEGORY_MUTATION.md new file mode 100644 index 0000000000..e514ccaa63 --- /dev/null +++ b/docs/docs/auto-docs/GraphQl/Mutations/ActionItemCategoryMutations/variables/UPDATE_ACTION_ITEM_CATEGORY_MUTATION.md @@ -0,0 +1,23 @@ +[Admin Docs](/) + +*** + +# Variable: UPDATE\_ACTION\_ITEM\_CATEGORY\_MUTATION + +> `const` **UPDATE\_ACTION\_ITEM\_CATEGORY\_MUTATION**: `DocumentNode` + +Defined in: [src/GraphQl/Mutations/ActionItemCategoryMutations.ts:35](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/GraphQl/Mutations/ActionItemCategoryMutations.ts#L35) + +GraphQL mutation to update an action item category. + +## Param + +The id of the ActionItemCategory to be updated. + +## Param + +Updated name of the ActionItemCategory. + +## Param + +Updated disabled status of the ActionItemCategory. diff --git a/docs/docs/auto-docs/GraphQl/Mutations/ActionItemMutations/variables/CREATE_ACTION_ITEM_MUTATION.md b/docs/docs/auto-docs/GraphQl/Mutations/ActionItemMutations/variables/CREATE_ACTION_ITEM_MUTATION.md new file mode 100644 index 0000000000..bc900ee438 --- /dev/null +++ b/docs/docs/auto-docs/GraphQl/Mutations/ActionItemMutations/variables/CREATE_ACTION_ITEM_MUTATION.md @@ -0,0 +1,35 @@ +[Admin Docs](/) + +*** + +# Variable: CREATE\_ACTION\_ITEM\_MUTATION + +> `const` **CREATE\_ACTION\_ITEM\_MUTATION**: `DocumentNode` + +Defined in: [src/GraphQl/Mutations/ActionItemMutations.ts:14](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/GraphQl/Mutations/ActionItemMutations.ts#L14) + +GraphQL mutation to create an action item. + +## Param + +ActionItemCategory to which the ActionItem is related. + +## Param + +User to whom the ActionItem is assigned. + +## Param + +Notes prior to completion. + +## Param + +Due date. + +## Param + +Event to which the ActionItem is related. + +## Param + +Hours allotted for the ActionItem. diff --git a/docs/docs/auto-docs/GraphQl/Mutations/ActionItemMutations/variables/DELETE_ACTION_ITEM_MUTATION.md b/docs/docs/auto-docs/GraphQl/Mutations/ActionItemMutations/variables/DELETE_ACTION_ITEM_MUTATION.md new file mode 100644 index 0000000000..bced03f3d9 --- /dev/null +++ b/docs/docs/auto-docs/GraphQl/Mutations/ActionItemMutations/variables/DELETE_ACTION_ITEM_MUTATION.md @@ -0,0 +1,15 @@ +[Admin Docs](/) + +*** + +# Variable: DELETE\_ACTION\_ITEM\_MUTATION + +> `const` **DELETE\_ACTION\_ITEM\_MUTATION**: `DocumentNode` + +Defined in: [src/GraphQl/Mutations/ActionItemMutations.ts:88](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/GraphQl/Mutations/ActionItemMutations.ts#L88) + +GraphQL mutation to delete an action item. + +## Param + +Id of the ActionItem to be updated. diff --git a/docs/docs/auto-docs/GraphQl/Mutations/ActionItemMutations/variables/UPDATE_ACTION_ITEM_MUTATION.md b/docs/docs/auto-docs/GraphQl/Mutations/ActionItemMutations/variables/UPDATE_ACTION_ITEM_MUTATION.md new file mode 100644 index 0000000000..1b3c30de32 --- /dev/null +++ b/docs/docs/auto-docs/GraphQl/Mutations/ActionItemMutations/variables/UPDATE_ACTION_ITEM_MUTATION.md @@ -0,0 +1,39 @@ +[Admin Docs](/) + +*** + +# Variable: UPDATE\_ACTION\_ITEM\_MUTATION + +> `const` **UPDATE\_ACTION\_ITEM\_MUTATION**: `DocumentNode` + +Defined in: [src/GraphQl/Mutations/ActionItemMutations.ts:52](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/GraphQl/Mutations/ActionItemMutations.ts#L52) + +GraphQL mutation to update an action item. + +## Param + +Id of the ActionItem to be updated. + +## Param + +User to whom the ActionItem is assigned. + +## Param + +Notes prior to completion. + +## Param + +Notes on completion. + +## Param + +Due date. + +## Param + +Completion date. + +## Param + +Whether the ActionItem has been completed. diff --git a/docs/docs/auto-docs/GraphQl/Mutations/AgendaCategoryMutations/variables/CREATE_AGENDA_ITEM_CATEGORY_MUTATION.md b/docs/docs/auto-docs/GraphQl/Mutations/AgendaCategoryMutations/variables/CREATE_AGENDA_ITEM_CATEGORY_MUTATION.md new file mode 100644 index 0000000000..7424543379 --- /dev/null +++ b/docs/docs/auto-docs/GraphQl/Mutations/AgendaCategoryMutations/variables/CREATE_AGENDA_ITEM_CATEGORY_MUTATION.md @@ -0,0 +1,15 @@ +[Admin Docs](/) + +*** + +# Variable: CREATE\_AGENDA\_ITEM\_CATEGORY\_MUTATION + +> `const` **CREATE\_AGENDA\_ITEM\_CATEGORY\_MUTATION**: `DocumentNode` + +Defined in: [src/GraphQl/Mutations/AgendaCategoryMutations.ts:9](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/GraphQl/Mutations/AgendaCategoryMutations.ts#L9) + +GraphQL mutation to create an agenda category. + +## Param + +Name, Description, OrganizationID of the AgendaCategory. diff --git a/docs/docs/auto-docs/GraphQl/Mutations/AgendaCategoryMutations/variables/DELETE_AGENDA_ITEM_CATEGORY_MUTATION.md b/docs/docs/auto-docs/GraphQl/Mutations/AgendaCategoryMutations/variables/DELETE_AGENDA_ITEM_CATEGORY_MUTATION.md new file mode 100644 index 0000000000..9ce65a497a --- /dev/null +++ b/docs/docs/auto-docs/GraphQl/Mutations/AgendaCategoryMutations/variables/DELETE_AGENDA_ITEM_CATEGORY_MUTATION.md @@ -0,0 +1,15 @@ +[Admin Docs](/) + +*** + +# Variable: DELETE\_AGENDA\_ITEM\_CATEGORY\_MUTATION + +> `const` **DELETE\_AGENDA\_ITEM\_CATEGORY\_MUTATION**: `DocumentNode` + +Defined in: [src/GraphQl/Mutations/AgendaCategoryMutations.ts:23](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/GraphQl/Mutations/AgendaCategoryMutations.ts#L23) + +GraphQL mutation to delete an agenda category. + +## Param + +The ID of the AgendaCategory to be deleted. diff --git a/docs/docs/auto-docs/GraphQl/Mutations/AgendaCategoryMutations/variables/UPDATE_AGENDA_ITEM_CATEGORY_MUTATION.md b/docs/docs/auto-docs/GraphQl/Mutations/AgendaCategoryMutations/variables/UPDATE_AGENDA_ITEM_CATEGORY_MUTATION.md new file mode 100644 index 0000000000..604c5b2a06 --- /dev/null +++ b/docs/docs/auto-docs/GraphQl/Mutations/AgendaCategoryMutations/variables/UPDATE_AGENDA_ITEM_CATEGORY_MUTATION.md @@ -0,0 +1,19 @@ +[Admin Docs](/) + +*** + +# Variable: UPDATE\_AGENDA\_ITEM\_CATEGORY\_MUTATION + +> `const` **UPDATE\_AGENDA\_ITEM\_CATEGORY\_MUTATION**: `DocumentNode` + +Defined in: [src/GraphQl/Mutations/AgendaCategoryMutations.ts:36](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/GraphQl/Mutations/AgendaCategoryMutations.ts#L36) + +GraphQL mutation to update an agenda category. + +## Param + +The ID of the AgendaCategory to be updated. + +## Param + +Updated Name, Description, OrganizationID of the AgendaCategory. diff --git a/docs/docs/auto-docs/GraphQl/Mutations/AgendaItemMutations/variables/CREATE_AGENDA_ITEM_MUTATION.md b/docs/docs/auto-docs/GraphQl/Mutations/AgendaItemMutations/variables/CREATE_AGENDA_ITEM_MUTATION.md new file mode 100644 index 0000000000..d98ca9242d --- /dev/null +++ b/docs/docs/auto-docs/GraphQl/Mutations/AgendaItemMutations/variables/CREATE_AGENDA_ITEM_MUTATION.md @@ -0,0 +1,9 @@ +[Admin Docs](/) + +*** + +# Variable: CREATE\_AGENDA\_ITEM\_MUTATION + +> `const` **CREATE\_AGENDA\_ITEM\_MUTATION**: `DocumentNode` + +Defined in: [src/GraphQl/Mutations/AgendaItemMutations.ts:3](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/GraphQl/Mutations/AgendaItemMutations.ts#L3) diff --git a/docs/docs/auto-docs/GraphQl/Mutations/AgendaItemMutations/variables/DELETE_AGENDA_ITEM_MUTATION.md b/docs/docs/auto-docs/GraphQl/Mutations/AgendaItemMutations/variables/DELETE_AGENDA_ITEM_MUTATION.md new file mode 100644 index 0000000000..ef169bb6d8 --- /dev/null +++ b/docs/docs/auto-docs/GraphQl/Mutations/AgendaItemMutations/variables/DELETE_AGENDA_ITEM_MUTATION.md @@ -0,0 +1,9 @@ +[Admin Docs](/) + +*** + +# Variable: DELETE\_AGENDA\_ITEM\_MUTATION + +> `const` **DELETE\_AGENDA\_ITEM\_MUTATION**: `DocumentNode` + +Defined in: [src/GraphQl/Mutations/AgendaItemMutations.ts:12](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/GraphQl/Mutations/AgendaItemMutations.ts#L12) diff --git a/docs/docs/auto-docs/GraphQl/Mutations/AgendaItemMutations/variables/UPDATE_AGENDA_ITEM_MUTATION.md b/docs/docs/auto-docs/GraphQl/Mutations/AgendaItemMutations/variables/UPDATE_AGENDA_ITEM_MUTATION.md new file mode 100644 index 0000000000..e1c393574e --- /dev/null +++ b/docs/docs/auto-docs/GraphQl/Mutations/AgendaItemMutations/variables/UPDATE_AGENDA_ITEM_MUTATION.md @@ -0,0 +1,9 @@ +[Admin Docs](/) + +*** + +# Variable: UPDATE\_AGENDA\_ITEM\_MUTATION + +> `const` **UPDATE\_AGENDA\_ITEM\_MUTATION**: `DocumentNode` + +Defined in: [src/GraphQl/Mutations/AgendaItemMutations.ts:20](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/GraphQl/Mutations/AgendaItemMutations.ts#L20) diff --git a/docs/docs/auto-docs/GraphQl/Mutations/CampaignMutation/variables/CREATE_CAMPAIGN_MUTATION.md b/docs/docs/auto-docs/GraphQl/Mutations/CampaignMutation/variables/CREATE_CAMPAIGN_MUTATION.md new file mode 100644 index 0000000000..314b45a149 --- /dev/null +++ b/docs/docs/auto-docs/GraphQl/Mutations/CampaignMutation/variables/CREATE_CAMPAIGN_MUTATION.md @@ -0,0 +1,39 @@ +[Admin Docs](/) + +*** + +# Variable: CREATE\_CAMPAIGN\_MUTATION + +> `const` **CREATE\_CAMPAIGN\_MUTATION**: `DocumentNode` + +Defined in: [src/GraphQl/Mutations/CampaignMutation.ts:15](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/GraphQl/Mutations/CampaignMutation.ts#L15) + +GraphQL mutation to create a new fund Campaign. + +## Param + +The name of the fund. + +## Param + +The fund ID the campaign is associated with. + +## Param + +The funding goal of the campaign. + +## Param + +The start date of the campaign. + +## Param + +The end date of the campaign. + +## Param + +The currency of the campaign. + +## Returns + +The ID of the created campaign. diff --git a/docs/docs/auto-docs/GraphQl/Mutations/CampaignMutation/variables/UPDATE_CAMPAIGN_MUTATION.md b/docs/docs/auto-docs/GraphQl/Mutations/CampaignMutation/variables/UPDATE_CAMPAIGN_MUTATION.md new file mode 100644 index 0000000000..def2a4741f --- /dev/null +++ b/docs/docs/auto-docs/GraphQl/Mutations/CampaignMutation/variables/UPDATE_CAMPAIGN_MUTATION.md @@ -0,0 +1,39 @@ +[Admin Docs](/) + +*** + +# Variable: UPDATE\_CAMPAIGN\_MUTATION + +> `const` **UPDATE\_CAMPAIGN\_MUTATION**: `DocumentNode` + +Defined in: [src/GraphQl/Mutations/CampaignMutation.ts:53](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/GraphQl/Mutations/CampaignMutation.ts#L53) + +GraphQL mutation to update a fund Campaign. + +## Param + +The ID of the campaign being updated. + +## Param + +The name of the campaign. + +## Param + +The funding goal of the campaign. + +## Param + +The start date of the campaign. + +## Param + +The end date of the campaign. + +## Param + +The currency of the campaign. + +## Returns + +The ID of the updated campaign. diff --git a/docs/docs/auto-docs/GraphQl/Mutations/CommentMutations/variables/CREATE_COMMENT_POST.md b/docs/docs/auto-docs/GraphQl/Mutations/CommentMutations/variables/CREATE_COMMENT_POST.md new file mode 100644 index 0000000000..c032aad89e --- /dev/null +++ b/docs/docs/auto-docs/GraphQl/Mutations/CommentMutations/variables/CREATE_COMMENT_POST.md @@ -0,0 +1,23 @@ +[Admin Docs](/) + +*** + +# Variable: CREATE\_COMMENT\_POST + +> `const` **CREATE\_COMMENT\_POST**: `DocumentNode` + +Defined in: [src/GraphQl/Mutations/CommentMutations.ts:11](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/GraphQl/Mutations/CommentMutations.ts#L11) + +GraphQL mutation to create a new comment on a post. + +## Param + +The text content of the comment. + +## Param + +The ID of the post to which the comment is being added. + +## Returns + +The created comment object. diff --git a/docs/docs/auto-docs/GraphQl/Mutations/CommentMutations/variables/LIKE_COMMENT.md b/docs/docs/auto-docs/GraphQl/Mutations/CommentMutations/variables/LIKE_COMMENT.md new file mode 100644 index 0000000000..e6e11d8f37 --- /dev/null +++ b/docs/docs/auto-docs/GraphQl/Mutations/CommentMutations/variables/LIKE_COMMENT.md @@ -0,0 +1,19 @@ +[Admin Docs](/) + +*** + +# Variable: LIKE\_COMMENT + +> `const` **LIKE\_COMMENT**: `DocumentNode` + +Defined in: [src/GraphQl/Mutations/CommentMutations.ts:37](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/GraphQl/Mutations/CommentMutations.ts#L37) + +GraphQL mutation to like a comment. + +## Param + +The ID of the comment to be liked. + +## Returns + +The liked comment object. diff --git a/docs/docs/auto-docs/GraphQl/Mutations/CommentMutations/variables/UNLIKE_COMMENT.md b/docs/docs/auto-docs/GraphQl/Mutations/CommentMutations/variables/UNLIKE_COMMENT.md new file mode 100644 index 0000000000..24dcc94384 --- /dev/null +++ b/docs/docs/auto-docs/GraphQl/Mutations/CommentMutations/variables/UNLIKE_COMMENT.md @@ -0,0 +1,19 @@ +[Admin Docs](/) + +*** + +# Variable: UNLIKE\_COMMENT + +> `const` **UNLIKE\_COMMENT**: `DocumentNode` + +Defined in: [src/GraphQl/Mutations/CommentMutations.ts:52](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/GraphQl/Mutations/CommentMutations.ts#L52) + +GraphQL mutation to unlike a comment. + +## Param + +The ID of the comment to be unliked. + +## Returns + +The unliked comment object. diff --git a/docs/docs/auto-docs/GraphQl/Mutations/EventAttendeeMutations/variables/ADD_EVENT_ATTENDEE.md b/docs/docs/auto-docs/GraphQl/Mutations/EventAttendeeMutations/variables/ADD_EVENT_ATTENDEE.md new file mode 100644 index 0000000000..f129375ef6 --- /dev/null +++ b/docs/docs/auto-docs/GraphQl/Mutations/EventAttendeeMutations/variables/ADD_EVENT_ATTENDEE.md @@ -0,0 +1,23 @@ +[Admin Docs](/) + +*** + +# Variable: ADD\_EVENT\_ATTENDEE + +> `const` **ADD\_EVENT\_ATTENDEE**: `DocumentNode` + +Defined in: [src/GraphQl/Mutations/EventAttendeeMutations.ts:11](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/GraphQl/Mutations/EventAttendeeMutations.ts#L11) + +GraphQL mutation to add an attendee to an event. + +## Param + +The ID of the user being added as an attendee. + +## Param + +The ID of the event to which the user is being added as an attendee. + +## Returns + +The updated event object with the added attendee. diff --git a/docs/docs/auto-docs/GraphQl/Mutations/EventAttendeeMutations/variables/MARK_CHECKIN.md b/docs/docs/auto-docs/GraphQl/Mutations/EventAttendeeMutations/variables/MARK_CHECKIN.md new file mode 100644 index 0000000000..2636b23f2c --- /dev/null +++ b/docs/docs/auto-docs/GraphQl/Mutations/EventAttendeeMutations/variables/MARK_CHECKIN.md @@ -0,0 +1,23 @@ +[Admin Docs](/) + +*** + +# Variable: MARK\_CHECKIN + +> `const` **MARK\_CHECKIN**: `DocumentNode` + +Defined in: [src/GraphQl/Mutations/EventAttendeeMutations.ts:43](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/GraphQl/Mutations/EventAttendeeMutations.ts#L43) + +GraphQL mutation to mark a user's check-in at an event. + +## Param + +The ID of the user checking in. + +## Param + +The ID of the event at which the user is checking in. + +## Returns + +The updated event object with the user's check-in information. diff --git a/docs/docs/auto-docs/GraphQl/Mutations/EventAttendeeMutations/variables/REMOVE_EVENT_ATTENDEE.md b/docs/docs/auto-docs/GraphQl/Mutations/EventAttendeeMutations/variables/REMOVE_EVENT_ATTENDEE.md new file mode 100644 index 0000000000..52a28ea86e --- /dev/null +++ b/docs/docs/auto-docs/GraphQl/Mutations/EventAttendeeMutations/variables/REMOVE_EVENT_ATTENDEE.md @@ -0,0 +1,23 @@ +[Admin Docs](/) + +*** + +# Variable: REMOVE\_EVENT\_ATTENDEE + +> `const` **REMOVE\_EVENT\_ATTENDEE**: `DocumentNode` + +Defined in: [src/GraphQl/Mutations/EventAttendeeMutations.ts:27](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/GraphQl/Mutations/EventAttendeeMutations.ts#L27) + +GraphQL mutation to remove an attendee from an event. + +## Param + +The ID of the user being removed as an attendee. + +## Param + +The ID of the event from which the user is being removed as an attendee. + +## Returns + +The updated event object without the removed attendee. diff --git a/docs/docs/auto-docs/GraphQl/Mutations/EventVolunteerMutation/variables/ADD_VOLUNTEER.md b/docs/docs/auto-docs/GraphQl/Mutations/EventVolunteerMutation/variables/ADD_VOLUNTEER.md new file mode 100644 index 0000000000..97c3ead609 --- /dev/null +++ b/docs/docs/auto-docs/GraphQl/Mutations/EventVolunteerMutation/variables/ADD_VOLUNTEER.md @@ -0,0 +1,19 @@ +[Admin Docs](/) + +*** + +# Variable: ADD\_VOLUNTEER + +> `const` **ADD\_VOLUNTEER**: `DocumentNode` + +Defined in: [src/GraphQl/Mutations/EventVolunteerMutation.ts:11](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/GraphQl/Mutations/EventVolunteerMutation.ts#L11) + +GraphQL mutation to create an event volunteer. + +## Param + +The data required to create an event volunteer. + +## Returns + +The ID of the created event volunteer. diff --git a/docs/docs/auto-docs/GraphQl/Mutations/EventVolunteerMutation/variables/CREATE_VOLUNTEER_GROUP.md b/docs/docs/auto-docs/GraphQl/Mutations/EventVolunteerMutation/variables/CREATE_VOLUNTEER_GROUP.md new file mode 100644 index 0000000000..f4488b97db --- /dev/null +++ b/docs/docs/auto-docs/GraphQl/Mutations/EventVolunteerMutation/variables/CREATE_VOLUNTEER_GROUP.md @@ -0,0 +1,26 @@ +[Admin Docs](/) + +*** + +# Variable: CREATE\_VOLUNTEER\_GROUP + +> `const` **CREATE\_VOLUNTEER\_GROUP**: `DocumentNode` + +Defined in: [src/GraphQl/Mutations/EventVolunteerMutation.ts:48](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/GraphQl/Mutations/EventVolunteerMutation.ts#L48) + +GraphQL mutation to create an event volunteer group. + +## Param + +The data required to create an event volunteer group. + - data contains following fileds: + - eventId: string + - leaderId: string + - name: string + - description?: string + - volunteers: [string] + - volunteersRequired?: number + +## Returns + +The ID of the created event volunteer group. diff --git a/docs/docs/auto-docs/GraphQl/Mutations/EventVolunteerMutation/variables/CREATE_VOLUNTEER_MEMBERSHIP.md b/docs/docs/auto-docs/GraphQl/Mutations/EventVolunteerMutation/variables/CREATE_VOLUNTEER_MEMBERSHIP.md new file mode 100644 index 0000000000..0ad3e9024c --- /dev/null +++ b/docs/docs/auto-docs/GraphQl/Mutations/EventVolunteerMutation/variables/CREATE_VOLUNTEER_MEMBERSHIP.md @@ -0,0 +1,9 @@ +[Admin Docs](/) + +*** + +# Variable: CREATE\_VOLUNTEER\_MEMBERSHIP + +> `const` **CREATE\_VOLUNTEER\_MEMBERSHIP**: `DocumentNode` + +Defined in: [src/GraphQl/Mutations/EventVolunteerMutation.ts:90](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/GraphQl/Mutations/EventVolunteerMutation.ts#L90) diff --git a/docs/docs/auto-docs/GraphQl/Mutations/EventVolunteerMutation/variables/DELETE_VOLUNTEER.md b/docs/docs/auto-docs/GraphQl/Mutations/EventVolunteerMutation/variables/DELETE_VOLUNTEER.md new file mode 100644 index 0000000000..74d6d61a2f --- /dev/null +++ b/docs/docs/auto-docs/GraphQl/Mutations/EventVolunteerMutation/variables/DELETE_VOLUNTEER.md @@ -0,0 +1,19 @@ +[Admin Docs](/) + +*** + +# Variable: DELETE\_VOLUNTEER + +> `const` **DELETE\_VOLUNTEER**: `DocumentNode` + +Defined in: [src/GraphQl/Mutations/EventVolunteerMutation.ts:26](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/GraphQl/Mutations/EventVolunteerMutation.ts#L26) + +GraphQL mutation to delete an event volunteer. + +## Param + +The ID of the event volunteer being deleted. + +## Returns + +The ID of the deleted event volunteer. diff --git a/docs/docs/auto-docs/GraphQl/Mutations/EventVolunteerMutation/variables/DELETE_VOLUNTEER_GROUP.md b/docs/docs/auto-docs/GraphQl/Mutations/EventVolunteerMutation/variables/DELETE_VOLUNTEER_GROUP.md new file mode 100644 index 0000000000..1816e24a22 --- /dev/null +++ b/docs/docs/auto-docs/GraphQl/Mutations/EventVolunteerMutation/variables/DELETE_VOLUNTEER_GROUP.md @@ -0,0 +1,19 @@ +[Admin Docs](/) + +*** + +# Variable: DELETE\_VOLUNTEER\_GROUP + +> `const` **DELETE\_VOLUNTEER\_GROUP**: `DocumentNode` + +Defined in: [src/GraphQl/Mutations/EventVolunteerMutation.ts:82](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/GraphQl/Mutations/EventVolunteerMutation.ts#L82) + +GraphQL mutation to delete an event volunteer group. + +## Param + +The ID of the event volunteer group being deleted. + +## Returns + +The ID of the deleted event volunteer group. diff --git a/docs/docs/auto-docs/GraphQl/Mutations/EventVolunteerMutation/variables/UPDATE_VOLUNTEER_GROUP.md b/docs/docs/auto-docs/GraphQl/Mutations/EventVolunteerMutation/variables/UPDATE_VOLUNTEER_GROUP.md new file mode 100644 index 0000000000..b4d8baa995 --- /dev/null +++ b/docs/docs/auto-docs/GraphQl/Mutations/EventVolunteerMutation/variables/UPDATE_VOLUNTEER_GROUP.md @@ -0,0 +1,23 @@ +[Admin Docs](/) + +*** + +# Variable: UPDATE\_VOLUNTEER\_GROUP + +> `const` **UPDATE\_VOLUNTEER\_GROUP**: `DocumentNode` + +Defined in: [src/GraphQl/Mutations/EventVolunteerMutation.ts:64](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/GraphQl/Mutations/EventVolunteerMutation.ts#L64) + +GraphQL mutation to update an event volunteer group. + +## Param + +The ID of the event volunteer group being updated. + +## Param + +The data required to update an event volunteer group. + +## Returns + +The ID of the updated event volunteer group. diff --git a/docs/docs/auto-docs/GraphQl/Mutations/EventVolunteerMutation/variables/UPDATE_VOLUNTEER_MEMBERSHIP.md b/docs/docs/auto-docs/GraphQl/Mutations/EventVolunteerMutation/variables/UPDATE_VOLUNTEER_MEMBERSHIP.md new file mode 100644 index 0000000000..2e130355b2 --- /dev/null +++ b/docs/docs/auto-docs/GraphQl/Mutations/EventVolunteerMutation/variables/UPDATE_VOLUNTEER_MEMBERSHIP.md @@ -0,0 +1,23 @@ +[Admin Docs](/) + +*** + +# Variable: UPDATE\_VOLUNTEER\_MEMBERSHIP + +> `const` **UPDATE\_VOLUNTEER\_MEMBERSHIP**: `DocumentNode` + +Defined in: [src/GraphQl/Mutations/EventVolunteerMutation.ts:106](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/GraphQl/Mutations/EventVolunteerMutation.ts#L106) + +GraphQL mutation to update an event volunteer group. + +## Param + +The ID of the event volunteer group being updated. + +## Param + +The data required to update an event volunteer group. + +## Returns + +The ID of the updated event volunteer group. diff --git a/docs/docs/auto-docs/GraphQl/Mutations/FundMutation/variables/CREATE_FUND_MUTATION.md b/docs/docs/auto-docs/GraphQl/Mutations/FundMutation/variables/CREATE_FUND_MUTATION.md new file mode 100644 index 0000000000..54526a40bd --- /dev/null +++ b/docs/docs/auto-docs/GraphQl/Mutations/FundMutation/variables/CREATE_FUND_MUTATION.md @@ -0,0 +1,39 @@ +[Admin Docs](/) + +*** + +# Variable: CREATE\_FUND\_MUTATION + +> `const` **CREATE\_FUND\_MUTATION**: `DocumentNode` + +Defined in: [src/GraphQl/Mutations/FundMutation.ts:14](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/GraphQl/Mutations/FundMutation.ts#L14) + +GraphQL mutation to create a new fund. + +## Param + +The name of the fund. + +## Param + +The organization ID the fund is associated with. + +## Param + +The reference number of the fund. + +## Param + +Whether the fund is tax deductible. + +## Param + +Whether the fund is archived. + +## Param + +Whether the fund is the default. + +## Returns + +The ID of the created fund. diff --git a/docs/docs/auto-docs/GraphQl/Mutations/FundMutation/variables/UPDATE_FUND_MUTATION.md b/docs/docs/auto-docs/GraphQl/Mutations/FundMutation/variables/UPDATE_FUND_MUTATION.md new file mode 100644 index 0000000000..ad9dd60689 --- /dev/null +++ b/docs/docs/auto-docs/GraphQl/Mutations/FundMutation/variables/UPDATE_FUND_MUTATION.md @@ -0,0 +1,39 @@ +[Admin Docs](/) + +*** + +# Variable: UPDATE\_FUND\_MUTATION + +> `const` **UPDATE\_FUND\_MUTATION**: `DocumentNode` + +Defined in: [src/GraphQl/Mutations/FundMutation.ts:49](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/GraphQl/Mutations/FundMutation.ts#L49) + +GraphQL mutation to update a fund. + +## Param + +The ID of the fund being updated. + +## Param + +The name of the fund. + +## Param + +The reference number of the fund. + +## Param + +Whether the fund is tax deductible. + +## Param + +Whether the fund is archived. + +## Param + +Whether the fund is the default. + +## Returns + +The ID of the updated fund. diff --git a/docs/docs/auto-docs/GraphQl/Mutations/OrganizationMutations/variables/ADD_CUSTOM_FIELD.md b/docs/docs/auto-docs/GraphQl/Mutations/OrganizationMutations/variables/ADD_CUSTOM_FIELD.md new file mode 100644 index 0000000000..04523ac415 --- /dev/null +++ b/docs/docs/auto-docs/GraphQl/Mutations/OrganizationMutations/variables/ADD_CUSTOM_FIELD.md @@ -0,0 +1,27 @@ +[Admin Docs](/) + +*** + +# Variable: ADD\_CUSTOM\_FIELD + +> `const` **ADD\_CUSTOM\_FIELD**: `DocumentNode` + +Defined in: [src/GraphQl/Mutations/OrganizationMutations.ts:237](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/GraphQl/Mutations/OrganizationMutations.ts#L237) + +GraphQL mutation to add a custom field to an organization. + +## Param + +The ID of the organization where the custom field is being added. + +## Param + +The type of the custom field (e.g., String, Number). + +## Param + +The name of the custom field. + +## Returns + +The added organization custom field object. diff --git a/docs/docs/auto-docs/GraphQl/Mutations/OrganizationMutations/variables/ADD_USER_TO_GROUP_CHAT.md b/docs/docs/auto-docs/GraphQl/Mutations/OrganizationMutations/variables/ADD_USER_TO_GROUP_CHAT.md new file mode 100644 index 0000000000..a73f8828dd --- /dev/null +++ b/docs/docs/auto-docs/GraphQl/Mutations/OrganizationMutations/variables/ADD_USER_TO_GROUP_CHAT.md @@ -0,0 +1,9 @@ +[Admin Docs](/) + +*** + +# Variable: ADD\_USER\_TO\_GROUP\_CHAT + +> `const` **ADD\_USER\_TO\_GROUP\_CHAT**: `DocumentNode` + +Defined in: [src/GraphQl/Mutations/OrganizationMutations.ts:82](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/GraphQl/Mutations/OrganizationMutations.ts#L82) diff --git a/docs/docs/auto-docs/GraphQl/Mutations/OrganizationMutations/variables/CANCEL_MEMBERSHIP_REQUEST.md b/docs/docs/auto-docs/GraphQl/Mutations/OrganizationMutations/variables/CANCEL_MEMBERSHIP_REQUEST.md new file mode 100644 index 0000000000..d4ab02d157 --- /dev/null +++ b/docs/docs/auto-docs/GraphQl/Mutations/OrganizationMutations/variables/CANCEL_MEMBERSHIP_REQUEST.md @@ -0,0 +1,9 @@ +[Admin Docs](/) + +*** + +# Variable: CANCEL\_MEMBERSHIP\_REQUEST + +> `const` **CANCEL\_MEMBERSHIP\_REQUEST**: `DocumentNode` + +Defined in: [src/GraphQl/Mutations/OrganizationMutations.ts:295](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/GraphQl/Mutations/OrganizationMutations.ts#L295) diff --git a/docs/docs/auto-docs/GraphQl/Mutations/OrganizationMutations/variables/CREATE_CHAT.md b/docs/docs/auto-docs/GraphQl/Mutations/OrganizationMutations/variables/CREATE_CHAT.md new file mode 100644 index 0000000000..9ad55f5133 --- /dev/null +++ b/docs/docs/auto-docs/GraphQl/Mutations/OrganizationMutations/variables/CREATE_CHAT.md @@ -0,0 +1,23 @@ +[Admin Docs](/) + +*** + +# Variable: CREATE\_CHAT + +> `const` **CREATE\_CHAT**: `DocumentNode` + +Defined in: [src/GraphQl/Mutations/OrganizationMutations.ts:60](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/GraphQl/Mutations/OrganizationMutations.ts#L60) + +GraphQL mutation to create a chat between users in an organization. + +## Param + +An array of user IDs participating in the direct chat. + +## Param + +The ID of the organization where the direct chat is created. + +## Returns + +The created direct chat object. diff --git a/docs/docs/auto-docs/GraphQl/Mutations/OrganizationMutations/variables/CREATE_SAMPLE_ORGANIZATION_MUTATION.md b/docs/docs/auto-docs/GraphQl/Mutations/OrganizationMutations/variables/CREATE_SAMPLE_ORGANIZATION_MUTATION.md new file mode 100644 index 0000000000..9f07a34159 --- /dev/null +++ b/docs/docs/auto-docs/GraphQl/Mutations/OrganizationMutations/variables/CREATE_SAMPLE_ORGANIZATION_MUTATION.md @@ -0,0 +1,15 @@ +[Admin Docs](/) + +*** + +# Variable: CREATE\_SAMPLE\_ORGANIZATION\_MUTATION + +> `const` **CREATE\_SAMPLE\_ORGANIZATION\_MUTATION**: `DocumentNode` + +Defined in: [src/GraphQl/Mutations/OrganizationMutations.ts:34](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/GraphQl/Mutations/OrganizationMutations.ts#L34) + +GraphQL mutation to create a sample organization. + +## Returns + +The created sample organization object. diff --git a/docs/docs/auto-docs/GraphQl/Mutations/OrganizationMutations/variables/EDIT_CHAT_MESSAGE.md b/docs/docs/auto-docs/GraphQl/Mutations/OrganizationMutations/variables/EDIT_CHAT_MESSAGE.md new file mode 100644 index 0000000000..4161e79171 --- /dev/null +++ b/docs/docs/auto-docs/GraphQl/Mutations/OrganizationMutations/variables/EDIT_CHAT_MESSAGE.md @@ -0,0 +1,9 @@ +[Admin Docs](/) + +*** + +# Variable: EDIT\_CHAT\_MESSAGE + +> `const` **EDIT\_CHAT\_MESSAGE**: `DocumentNode` + +Defined in: [src/GraphQl/Mutations/OrganizationMutations.ts:106](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/GraphQl/Mutations/OrganizationMutations.ts#L106) diff --git a/docs/docs/auto-docs/GraphQl/Mutations/OrganizationMutations/variables/JOIN_PUBLIC_ORGANIZATION.md b/docs/docs/auto-docs/GraphQl/Mutations/OrganizationMutations/variables/JOIN_PUBLIC_ORGANIZATION.md new file mode 100644 index 0000000000..694b4cb9c5 --- /dev/null +++ b/docs/docs/auto-docs/GraphQl/Mutations/OrganizationMutations/variables/JOIN_PUBLIC_ORGANIZATION.md @@ -0,0 +1,9 @@ +[Admin Docs](/) + +*** + +# Variable: JOIN\_PUBLIC\_ORGANIZATION + +> `const` **JOIN\_PUBLIC\_ORGANIZATION**: `DocumentNode` + +Defined in: [src/GraphQl/Mutations/OrganizationMutations.ts:287](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/GraphQl/Mutations/OrganizationMutations.ts#L287) diff --git a/docs/docs/auto-docs/GraphQl/Mutations/OrganizationMutations/variables/MARK_CHAT_MESSAGES_AS_READ.md b/docs/docs/auto-docs/GraphQl/Mutations/OrganizationMutations/variables/MARK_CHAT_MESSAGES_AS_READ.md new file mode 100644 index 0000000000..7481b3cd35 --- /dev/null +++ b/docs/docs/auto-docs/GraphQl/Mutations/OrganizationMutations/variables/MARK_CHAT_MESSAGES_AS_READ.md @@ -0,0 +1,9 @@ +[Admin Docs](/) + +*** + +# Variable: MARK\_CHAT\_MESSAGES\_AS\_READ + +> `const` **MARK\_CHAT\_MESSAGES\_AS\_READ**: `DocumentNode` + +Defined in: [src/GraphQl/Mutations/OrganizationMutations.ts:90](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/GraphQl/Mutations/OrganizationMutations.ts#L90) diff --git a/docs/docs/auto-docs/GraphQl/Mutations/OrganizationMutations/variables/MESSAGE_SENT_TO_CHAT.md b/docs/docs/auto-docs/GraphQl/Mutations/OrganizationMutations/variables/MESSAGE_SENT_TO_CHAT.md new file mode 100644 index 0000000000..3f5e6f56ba --- /dev/null +++ b/docs/docs/auto-docs/GraphQl/Mutations/OrganizationMutations/variables/MESSAGE_SENT_TO_CHAT.md @@ -0,0 +1,9 @@ +[Admin Docs](/) + +*** + +# Variable: MESSAGE\_SENT\_TO\_CHAT + +> `const` **MESSAGE\_SENT\_TO\_CHAT**: `DocumentNode` + +Defined in: [src/GraphQl/Mutations/OrganizationMutations.ts:164](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/GraphQl/Mutations/OrganizationMutations.ts#L164) diff --git a/docs/docs/auto-docs/GraphQl/Mutations/OrganizationMutations/variables/PLUGIN_SUBSCRIPTION.md b/docs/docs/auto-docs/GraphQl/Mutations/OrganizationMutations/variables/PLUGIN_SUBSCRIPTION.md new file mode 100644 index 0000000000..46286cdb85 --- /dev/null +++ b/docs/docs/auto-docs/GraphQl/Mutations/OrganizationMutations/variables/PLUGIN_SUBSCRIPTION.md @@ -0,0 +1,15 @@ +[Admin Docs](/) + +*** + +# Variable: PLUGIN\_SUBSCRIPTION + +> `const` **PLUGIN\_SUBSCRIPTION**: `DocumentNode` + +Defined in: [src/GraphQl/Mutations/OrganizationMutations.ts:202](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/GraphQl/Mutations/OrganizationMutations.ts#L202) + +GraphQL subscription to listen for updates on plugins. + +## Returns + +An object containing information about the updated plugin. diff --git a/docs/docs/auto-docs/GraphQl/Mutations/OrganizationMutations/variables/REMOVE_CUSTOM_FIELD.md b/docs/docs/auto-docs/GraphQl/Mutations/OrganizationMutations/variables/REMOVE_CUSTOM_FIELD.md new file mode 100644 index 0000000000..54a814ff39 --- /dev/null +++ b/docs/docs/auto-docs/GraphQl/Mutations/OrganizationMutations/variables/REMOVE_CUSTOM_FIELD.md @@ -0,0 +1,23 @@ +[Admin Docs](/) + +*** + +# Variable: REMOVE\_CUSTOM\_FIELD + +> `const` **REMOVE\_CUSTOM\_FIELD**: `DocumentNode` + +Defined in: [src/GraphQl/Mutations/OrganizationMutations.ts:260](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/GraphQl/Mutations/OrganizationMutations.ts#L260) + +GraphQL mutation to remove a custom field from an organization. + +## Param + +The ID of the organization from which the custom field is being removed. + +## Param + +The ID of the custom field to be removed. + +## Returns + +The removed organization custom field object. diff --git a/docs/docs/auto-docs/GraphQl/Mutations/OrganizationMutations/variables/REMOVE_SAMPLE_ORGANIZATION_MUTATION.md b/docs/docs/auto-docs/GraphQl/Mutations/OrganizationMutations/variables/REMOVE_SAMPLE_ORGANIZATION_MUTATION.md new file mode 100644 index 0000000000..95b7134a6c --- /dev/null +++ b/docs/docs/auto-docs/GraphQl/Mutations/OrganizationMutations/variables/REMOVE_SAMPLE_ORGANIZATION_MUTATION.md @@ -0,0 +1,15 @@ +[Admin Docs](/) + +*** + +# Variable: REMOVE\_SAMPLE\_ORGANIZATION\_MUTATION + +> `const` **REMOVE\_SAMPLE\_ORGANIZATION\_MUTATION**: `DocumentNode` + +Defined in: [src/GraphQl/Mutations/OrganizationMutations.ts:46](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/GraphQl/Mutations/OrganizationMutations.ts#L46) + +GraphQL mutation to remove a sample organization. + +## Returns + +The removed sample organization object. diff --git a/docs/docs/auto-docs/GraphQl/Mutations/OrganizationMutations/variables/SEND_MEMBERSHIP_REQUEST.md b/docs/docs/auto-docs/GraphQl/Mutations/OrganizationMutations/variables/SEND_MEMBERSHIP_REQUEST.md new file mode 100644 index 0000000000..fb10ee4762 --- /dev/null +++ b/docs/docs/auto-docs/GraphQl/Mutations/OrganizationMutations/variables/SEND_MEMBERSHIP_REQUEST.md @@ -0,0 +1,9 @@ +[Admin Docs](/) + +*** + +# Variable: SEND\_MEMBERSHIP\_REQUEST + +> `const` **SEND\_MEMBERSHIP\_REQUEST**: `DocumentNode` + +Defined in: [src/GraphQl/Mutations/OrganizationMutations.ts:272](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/GraphQl/Mutations/OrganizationMutations.ts#L272) diff --git a/docs/docs/auto-docs/GraphQl/Mutations/OrganizationMutations/variables/SEND_MESSAGE_TO_CHAT.md b/docs/docs/auto-docs/GraphQl/Mutations/OrganizationMutations/variables/SEND_MESSAGE_TO_CHAT.md new file mode 100644 index 0000000000..a9ba4522ca --- /dev/null +++ b/docs/docs/auto-docs/GraphQl/Mutations/OrganizationMutations/variables/SEND_MESSAGE_TO_CHAT.md @@ -0,0 +1,9 @@ +[Admin Docs](/) + +*** + +# Variable: SEND\_MESSAGE\_TO\_CHAT + +> `const` **SEND\_MESSAGE\_TO\_CHAT**: `DocumentNode` + +Defined in: [src/GraphQl/Mutations/OrganizationMutations.ts:126](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/GraphQl/Mutations/OrganizationMutations.ts#L126) diff --git a/docs/docs/auto-docs/GraphQl/Mutations/OrganizationMutations/variables/TOGGLE_PINNED_POST.md b/docs/docs/auto-docs/GraphQl/Mutations/OrganizationMutations/variables/TOGGLE_PINNED_POST.md new file mode 100644 index 0000000000..6b599fd9f4 --- /dev/null +++ b/docs/docs/auto-docs/GraphQl/Mutations/OrganizationMutations/variables/TOGGLE_PINNED_POST.md @@ -0,0 +1,19 @@ +[Admin Docs](/) + +*** + +# Variable: TOGGLE\_PINNED\_POST + +> `const` **TOGGLE\_PINNED\_POST**: `DocumentNode` + +Defined in: [src/GraphQl/Mutations/OrganizationMutations.ts:220](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/GraphQl/Mutations/OrganizationMutations.ts#L220) + +GraphQL mutation to toggle the pinned status of a post. + +## Param + +The ID of the post to be toggled. + +## Returns + +The updated post object with the new pinned status. diff --git a/docs/docs/auto-docs/GraphQl/Mutations/OrganizationMutations/variables/UPDATE_CHAT.md b/docs/docs/auto-docs/GraphQl/Mutations/OrganizationMutations/variables/UPDATE_CHAT.md new file mode 100644 index 0000000000..63ec58af71 --- /dev/null +++ b/docs/docs/auto-docs/GraphQl/Mutations/OrganizationMutations/variables/UPDATE_CHAT.md @@ -0,0 +1,9 @@ +[Admin Docs](/) + +*** + +# Variable: UPDATE\_CHAT + +> `const` **UPDATE\_CHAT**: `DocumentNode` + +Defined in: [src/GraphQl/Mutations/OrganizationMutations.ts:98](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/GraphQl/Mutations/OrganizationMutations.ts#L98) diff --git a/docs/docs/auto-docs/GraphQl/Mutations/OrganizationMutations/variables/UPDATE_USER_ROLE_IN_ORG_MUTATION.md b/docs/docs/auto-docs/GraphQl/Mutations/OrganizationMutations/variables/UPDATE_USER_ROLE_IN_ORG_MUTATION.md new file mode 100644 index 0000000000..6d3b2ebd2f --- /dev/null +++ b/docs/docs/auto-docs/GraphQl/Mutations/OrganizationMutations/variables/UPDATE_USER_ROLE_IN_ORG_MUTATION.md @@ -0,0 +1,27 @@ +[Admin Docs](/) + +*** + +# Variable: UPDATE\_USER\_ROLE\_IN\_ORG\_MUTATION + +> `const` **UPDATE\_USER\_ROLE\_IN\_ORG\_MUTATION**: `DocumentNode` + +Defined in: [src/GraphQl/Mutations/OrganizationMutations.ts:12](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/GraphQl/Mutations/OrganizationMutations.ts#L12) + +GraphQL mutation to update the role of a user in an organization. + +## Param + +The ID of the organization in which the user's role is being updated. + +## Param + +The ID of the user whose role is being updated. + +## Param + +The new role to be assigned to the user in the organization. + +## Returns + +The updated user object with the new role in the organization. diff --git a/docs/docs/auto-docs/GraphQl/Mutations/PledgeMutation/variables/CREATE_PlEDGE.md b/docs/docs/auto-docs/GraphQl/Mutations/PledgeMutation/variables/CREATE_PlEDGE.md new file mode 100644 index 0000000000..5378afdf55 --- /dev/null +++ b/docs/docs/auto-docs/GraphQl/Mutations/PledgeMutation/variables/CREATE_PlEDGE.md @@ -0,0 +1,39 @@ +[Admin Docs](/) + +*** + +# Variable: CREATE\_PlEDGE + +> `const` **CREATE\_PlEDGE**: `DocumentNode` + +Defined in: [src/GraphQl/Mutations/PledgeMutation.ts:14](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/GraphQl/Mutations/PledgeMutation.ts#L14) + +GraphQL mutation to create a pledge. + +## Param + +The ID of the campaign the pledge is associated with. + +## Param + +The amount of the pledge. + +## Param + +The currency of the pledge. + +## Param + +The start date of the pledge. + +## Param + +The end date of the pledge. + +## Param + +The IDs of the users associated with the pledge. + +## Returns + +The ID of the created pledge. diff --git a/docs/docs/auto-docs/GraphQl/Mutations/PledgeMutation/variables/DELETE_PLEDGE.md b/docs/docs/auto-docs/GraphQl/Mutations/PledgeMutation/variables/DELETE_PLEDGE.md new file mode 100644 index 0000000000..222758ce0a --- /dev/null +++ b/docs/docs/auto-docs/GraphQl/Mutations/PledgeMutation/variables/DELETE_PLEDGE.md @@ -0,0 +1,19 @@ +[Admin Docs](/) + +*** + +# Variable: DELETE\_PLEDGE + +> `const` **DELETE\_PLEDGE**: `DocumentNode` + +Defined in: [src/GraphQl/Mutations/PledgeMutation.ts:78](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/GraphQl/Mutations/PledgeMutation.ts#L78) + +GraphQL mutation to delete a pledge. + +## Param + +The ID of the pledge being deleted. + +## Returns + +Whether the pledge was successfully deleted. diff --git a/docs/docs/auto-docs/GraphQl/Mutations/PledgeMutation/variables/UPDATE_PLEDGE.md b/docs/docs/auto-docs/GraphQl/Mutations/PledgeMutation/variables/UPDATE_PLEDGE.md new file mode 100644 index 0000000000..a0788c2036 --- /dev/null +++ b/docs/docs/auto-docs/GraphQl/Mutations/PledgeMutation/variables/UPDATE_PLEDGE.md @@ -0,0 +1,35 @@ +[Admin Docs](/) + +*** + +# Variable: UPDATE\_PLEDGE + +> `const` **UPDATE\_PLEDGE**: `DocumentNode` + +Defined in: [src/GraphQl/Mutations/PledgeMutation.ts:48](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/GraphQl/Mutations/PledgeMutation.ts#L48) + +GraphQL mutation to update a pledge. + +## Param + +The ID of the pledge being updated. + +## Param + +The amount of the pledge. + +## Param + +The currency of the pledge. + +## Param + +The start date of the pledge. + +## Param + +The end date of the pledge. + +## Returns + +The ID of the updated pledge. diff --git a/docs/docs/auto-docs/GraphQl/Mutations/TagMutations/variables/ADD_PEOPLE_TO_TAG.md b/docs/docs/auto-docs/GraphQl/Mutations/TagMutations/variables/ADD_PEOPLE_TO_TAG.md new file mode 100644 index 0000000000..d805f74561 --- /dev/null +++ b/docs/docs/auto-docs/GraphQl/Mutations/TagMutations/variables/ADD_PEOPLE_TO_TAG.md @@ -0,0 +1,19 @@ +[Admin Docs](/) + +*** + +# Variable: ADD\_PEOPLE\_TO\_TAG + +> `const` **ADD\_PEOPLE\_TO\_TAG**: `DocumentNode` + +Defined in: [src/GraphQl/Mutations/TagMutations.ts:83](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/GraphQl/Mutations/TagMutations.ts#L83) + +GraphQL mutation to add people to tag. + +## Param + +Id of the tag to be assigned. + +## Param + +Ids of the users to assign to. diff --git a/docs/docs/auto-docs/GraphQl/Mutations/TagMutations/variables/ASSIGN_TO_TAGS.md b/docs/docs/auto-docs/GraphQl/Mutations/TagMutations/variables/ASSIGN_TO_TAGS.md new file mode 100644 index 0000000000..07d356b030 --- /dev/null +++ b/docs/docs/auto-docs/GraphQl/Mutations/TagMutations/variables/ASSIGN_TO_TAGS.md @@ -0,0 +1,19 @@ +[Admin Docs](/) + +*** + +# Variable: ASSIGN\_TO\_TAGS + +> `const` **ASSIGN\_TO\_TAGS**: `DocumentNode` + +Defined in: [src/GraphQl/Mutations/TagMutations.ts:98](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/GraphQl/Mutations/TagMutations.ts#L98) + +GraphQL mutation to assign people to multiple tags. + +## Param + +Id of the current tag. + +## Param + +Ids of the selected tags to be assined. diff --git a/docs/docs/auto-docs/GraphQl/Mutations/TagMutations/variables/CREATE_USER_TAG.md b/docs/docs/auto-docs/GraphQl/Mutations/TagMutations/variables/CREATE_USER_TAG.md new file mode 100644 index 0000000000..633c9126a5 --- /dev/null +++ b/docs/docs/auto-docs/GraphQl/Mutations/TagMutations/variables/CREATE_USER_TAG.md @@ -0,0 +1,27 @@ +[Admin Docs](/) + +*** + +# Variable: CREATE\_USER\_TAG + +> `const` **CREATE\_USER\_TAG**: `DocumentNode` + +Defined in: [src/GraphQl/Mutations/TagMutations.ts:12](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/GraphQl/Mutations/TagMutations.ts#L12) + +GraphQL mutation to create a user tag. + +## Param + +Name of the tag. + +## Param + +Color of the tag. + +## Param + +Id of the parent tag. + +## Param + +Organization to which the tag belongs. diff --git a/docs/docs/auto-docs/GraphQl/Mutations/TagMutations/variables/REMOVE_FROM_TAGS.md b/docs/docs/auto-docs/GraphQl/Mutations/TagMutations/variables/REMOVE_FROM_TAGS.md new file mode 100644 index 0000000000..7fa90ca91a --- /dev/null +++ b/docs/docs/auto-docs/GraphQl/Mutations/TagMutations/variables/REMOVE_FROM_TAGS.md @@ -0,0 +1,19 @@ +[Admin Docs](/) + +*** + +# Variable: REMOVE\_FROM\_TAGS + +> `const` **REMOVE\_FROM\_TAGS**: `DocumentNode` + +Defined in: [src/GraphQl/Mutations/TagMutations.ts:115](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/GraphQl/Mutations/TagMutations.ts#L115) + +GraphQL mutation to remove people from multiple tags. + +## Param + +Id of the current tag. + +## Param + +Ids of the selected tags to be removed from. diff --git a/docs/docs/auto-docs/GraphQl/Mutations/TagMutations/variables/REMOVE_USER_TAG.md b/docs/docs/auto-docs/GraphQl/Mutations/TagMutations/variables/REMOVE_USER_TAG.md new file mode 100644 index 0000000000..af0a72b98a --- /dev/null +++ b/docs/docs/auto-docs/GraphQl/Mutations/TagMutations/variables/REMOVE_USER_TAG.md @@ -0,0 +1,15 @@ +[Admin Docs](/) + +*** + +# Variable: REMOVE\_USER\_TAG + +> `const` **REMOVE\_USER\_TAG**: `DocumentNode` + +Defined in: [src/GraphQl/Mutations/TagMutations.ts:68](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/GraphQl/Mutations/TagMutations.ts#L68) + +GraphQL mutation to remove a user tag. + +## Param + +Id of the tag to be removed . diff --git a/docs/docs/auto-docs/GraphQl/Mutations/TagMutations/variables/UNASSIGN_USER_TAG.md b/docs/docs/auto-docs/GraphQl/Mutations/TagMutations/variables/UNASSIGN_USER_TAG.md new file mode 100644 index 0000000000..84818ce061 --- /dev/null +++ b/docs/docs/auto-docs/GraphQl/Mutations/TagMutations/variables/UNASSIGN_USER_TAG.md @@ -0,0 +1,19 @@ +[Admin Docs](/) + +*** + +# Variable: UNASSIGN\_USER\_TAG + +> `const` **UNASSIGN\_USER\_TAG**: `DocumentNode` + +Defined in: [src/GraphQl/Mutations/TagMutations.ts:39](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/GraphQl/Mutations/TagMutations.ts#L39) + +GraphQL mutation to unsssign a user tag from a user. + +## Param + +Id the tag. + +## Param + +Id of the user to be unassigned. diff --git a/docs/docs/auto-docs/GraphQl/Mutations/TagMutations/variables/UPDATE_USER_TAG.md b/docs/docs/auto-docs/GraphQl/Mutations/TagMutations/variables/UPDATE_USER_TAG.md new file mode 100644 index 0000000000..44a7757ded --- /dev/null +++ b/docs/docs/auto-docs/GraphQl/Mutations/TagMutations/variables/UPDATE_USER_TAG.md @@ -0,0 +1,19 @@ +[Admin Docs](/) + +*** + +# Variable: UPDATE\_USER\_TAG + +> `const` **UPDATE\_USER\_TAG**: `DocumentNode` + +Defined in: [src/GraphQl/Mutations/TagMutations.ts:54](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/GraphQl/Mutations/TagMutations.ts#L54) + +GraphQL mutation to update a user tag. + +## Param + +Id the tag. + +## Param + +Updated name of the tag. diff --git a/docs/docs/auto-docs/GraphQl/Mutations/VenueMutations/variables/CREATE_VENUE_MUTATION.md b/docs/docs/auto-docs/GraphQl/Mutations/VenueMutations/variables/CREATE_VENUE_MUTATION.md new file mode 100644 index 0000000000..2aeb314d5c --- /dev/null +++ b/docs/docs/auto-docs/GraphQl/Mutations/VenueMutations/variables/CREATE_VENUE_MUTATION.md @@ -0,0 +1,31 @@ +[Admin Docs](/) + +*** + +# Variable: CREATE\_VENUE\_MUTATION + +> `const` **CREATE\_VENUE\_MUTATION**: `DocumentNode` + +Defined in: [src/GraphQl/Mutations/VenueMutations.ts:13](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/GraphQl/Mutations/VenueMutations.ts#L13) + +GraphQL mutation to create a venue. + +## Param + +Name of the venue. + +## Param + +Ineteger representing capacity of venue. + +## Param + +Description of the venue. + +## Param + +Image file for the venue. + +## Param + +Organization to which the ActionItemCategory belongs. diff --git a/docs/docs/auto-docs/GraphQl/Mutations/VenueMutations/variables/DELETE_VENUE_MUTATION.md b/docs/docs/auto-docs/GraphQl/Mutations/VenueMutations/variables/DELETE_VENUE_MUTATION.md new file mode 100644 index 0000000000..148993b499 --- /dev/null +++ b/docs/docs/auto-docs/GraphQl/Mutations/VenueMutations/variables/DELETE_VENUE_MUTATION.md @@ -0,0 +1,15 @@ +[Admin Docs](/) + +*** + +# Variable: DELETE\_VENUE\_MUTATION + +> `const` **DELETE\_VENUE\_MUTATION**: `DocumentNode` + +Defined in: [src/GraphQl/Mutations/VenueMutations.ts:73](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/GraphQl/Mutations/VenueMutations.ts#L73) + +GraphQL mutation to delete a venue. + +## Param + +The id of the Venue to be deleted. diff --git a/docs/docs/auto-docs/GraphQl/Mutations/VenueMutations/variables/UPDATE_VENUE_MUTATION.md b/docs/docs/auto-docs/GraphQl/Mutations/VenueMutations/variables/UPDATE_VENUE_MUTATION.md new file mode 100644 index 0000000000..dddb3f1b54 --- /dev/null +++ b/docs/docs/auto-docs/GraphQl/Mutations/VenueMutations/variables/UPDATE_VENUE_MUTATION.md @@ -0,0 +1,31 @@ +[Admin Docs](/) + +*** + +# Variable: UPDATE\_VENUE\_MUTATION + +> `const` **UPDATE\_VENUE\_MUTATION**: `DocumentNode` + +Defined in: [src/GraphQl/Mutations/VenueMutations.ts:45](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/GraphQl/Mutations/VenueMutations.ts#L45) + +GraphQL mutation to update a venue. + +## Param + +The id of the Venue to be updated. + +## Param + +Ineteger representing capacity of venue. + +## Param + +Description of the venue. + +## Param + +Image file for the venue. + +## Param + +Name of the venue. diff --git a/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/ACCEPT_ORGANIZATION_REQUEST_MUTATION.md b/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/ACCEPT_ORGANIZATION_REQUEST_MUTATION.md new file mode 100644 index 0000000000..12f58c75ec --- /dev/null +++ b/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/ACCEPT_ORGANIZATION_REQUEST_MUTATION.md @@ -0,0 +1,9 @@ +[Admin Docs](/) + +*** + +# Variable: ACCEPT\_ORGANIZATION\_REQUEST\_MUTATION + +> `const` **ACCEPT\_ORGANIZATION\_REQUEST\_MUTATION**: `DocumentNode` + +Defined in: [src/GraphQl/Mutations/mutations.ts:33](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/GraphQl/Mutations/mutations.ts#L33) diff --git a/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/ADDRESS_DETAILS_FRAGMENT.md b/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/ADDRESS_DETAILS_FRAGMENT.md new file mode 100644 index 0000000000..e7e5d908fe --- /dev/null +++ b/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/ADDRESS_DETAILS_FRAGMENT.md @@ -0,0 +1,9 @@ +[Admin Docs](/) + +*** + +# Variable: ADDRESS\_DETAILS\_FRAGMENT + +> `const` **ADDRESS\_DETAILS\_FRAGMENT**: `DocumentNode` + +Defined in: [src/GraphQl/Mutations/mutations.ts:70](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/GraphQl/Mutations/mutations.ts#L70) diff --git a/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/ADD_ADMIN_MUTATION.md b/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/ADD_ADMIN_MUTATION.md new file mode 100644 index 0000000000..a39511baee --- /dev/null +++ b/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/ADD_ADMIN_MUTATION.md @@ -0,0 +1,9 @@ +[Admin Docs](/) + +*** + +# Variable: ADD\_ADMIN\_MUTATION + +> `const` **ADD\_ADMIN\_MUTATION**: `DocumentNode` + +Defined in: [src/GraphQl/Mutations/mutations.ts:351](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/GraphQl/Mutations/mutations.ts#L351) diff --git a/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/ADD_ADVERTISEMENT_MUTATION.md b/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/ADD_ADVERTISEMENT_MUTATION.md new file mode 100644 index 0000000000..1a44b64169 --- /dev/null +++ b/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/ADD_ADVERTISEMENT_MUTATION.md @@ -0,0 +1,9 @@ +[Admin Docs](/) + +*** + +# Variable: ADD\_ADVERTISEMENT\_MUTATION + +> `const` **ADD\_ADVERTISEMENT\_MUTATION**: `DocumentNode` + +Defined in: [src/GraphQl/Mutations/mutations.ts:486](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/GraphQl/Mutations/mutations.ts#L486) diff --git a/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/ADD_MEMBER_MUTATION.md b/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/ADD_MEMBER_MUTATION.md new file mode 100644 index 0000000000..56a6693215 --- /dev/null +++ b/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/ADD_MEMBER_MUTATION.md @@ -0,0 +1,9 @@ +[Admin Docs](/) + +*** + +# Variable: ADD\_MEMBER\_MUTATION + +> `const` **ADD\_MEMBER\_MUTATION**: `DocumentNode` + +Defined in: [src/GraphQl/Mutations/mutations.ts:361](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/GraphQl/Mutations/mutations.ts#L361) diff --git a/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/ADD_PLUGIN_MUTATION.md b/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/ADD_PLUGIN_MUTATION.md new file mode 100644 index 0000000000..aa988c997d --- /dev/null +++ b/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/ADD_PLUGIN_MUTATION.md @@ -0,0 +1,13 @@ +[Admin Docs](/) + +*** + +# Variable: ADD\_PLUGIN\_MUTATION + +> `const` **ADD\_PLUGIN\_MUTATION**: `DocumentNode` + +Defined in: [src/GraphQl/Mutations/mutations.ts:468](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/GraphQl/Mutations/mutations.ts#L468) + +## Remarks + +used `createPlugin` to add new Plugin in database diff --git a/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/BLOCK_USER_MUTATION.md b/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/BLOCK_USER_MUTATION.md new file mode 100644 index 0000000000..acf57f71a3 --- /dev/null +++ b/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/BLOCK_USER_MUTATION.md @@ -0,0 +1,9 @@ +[Admin Docs](/) + +*** + +# Variable: BLOCK\_USER\_MUTATION + +> `const` **BLOCK\_USER\_MUTATION**: `DocumentNode` + +Defined in: [src/GraphQl/Mutations/mutations.ts:13](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/GraphQl/Mutations/mutations.ts#L13) diff --git a/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/CREATE_EVENT_MUTATION.md b/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/CREATE_EVENT_MUTATION.md new file mode 100644 index 0000000000..4fd5f155ff --- /dev/null +++ b/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/CREATE_EVENT_MUTATION.md @@ -0,0 +1,9 @@ +[Admin Docs](/) + +*** + +# Variable: CREATE\_EVENT\_MUTATION + +> `const` **CREATE\_EVENT\_MUTATION**: `DocumentNode` + +Defined in: [src/GraphQl/Mutations/mutations.ts:265](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/GraphQl/Mutations/mutations.ts#L265) diff --git a/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/CREATE_ORGANIZATION_MUTATION.md b/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/CREATE_ORGANIZATION_MUTATION.md new file mode 100644 index 0000000000..1bc77b27e1 --- /dev/null +++ b/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/CREATE_ORGANIZATION_MUTATION.md @@ -0,0 +1,9 @@ +[Admin Docs](/) + +*** + +# Variable: CREATE\_ORGANIZATION\_MUTATION + +> `const` **CREATE\_ORGANIZATION\_MUTATION**: `DocumentNode` + +Defined in: [src/GraphQl/Mutations/mutations.ts:227](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/GraphQl/Mutations/mutations.ts#L227) diff --git a/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/CREATE_POST_MUTATION.md b/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/CREATE_POST_MUTATION.md new file mode 100644 index 0000000000..58221b0e15 --- /dev/null +++ b/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/CREATE_POST_MUTATION.md @@ -0,0 +1,9 @@ +[Admin Docs](/) + +*** + +# Variable: CREATE\_POST\_MUTATION + +> `const` **CREATE\_POST\_MUTATION**: `DocumentNode` + +Defined in: [src/GraphQl/Mutations/mutations.ts:371](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/GraphQl/Mutations/mutations.ts#L371) diff --git a/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/DELETE_ADVERTISEMENT_BY_ID.md b/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/DELETE_ADVERTISEMENT_BY_ID.md new file mode 100644 index 0000000000..f843bd2775 --- /dev/null +++ b/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/DELETE_ADVERTISEMENT_BY_ID.md @@ -0,0 +1,9 @@ +[Admin Docs](/) + +*** + +# Variable: DELETE\_ADVERTISEMENT\_BY\_ID + +> `const` **DELETE\_ADVERTISEMENT\_BY\_ID**: `DocumentNode` + +Defined in: [src/GraphQl/Mutations/mutations.ts:536](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/GraphQl/Mutations/mutations.ts#L536) diff --git a/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/DELETE_EVENT_MUTATION.md b/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/DELETE_EVENT_MUTATION.md new file mode 100644 index 0000000000..0feb26d964 --- /dev/null +++ b/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/DELETE_EVENT_MUTATION.md @@ -0,0 +1,9 @@ +[Admin Docs](/) + +*** + +# Variable: DELETE\_EVENT\_MUTATION + +> `const` **DELETE\_EVENT\_MUTATION**: `DocumentNode` + +Defined in: [src/GraphQl/Mutations/mutations.ts:321](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/GraphQl/Mutations/mutations.ts#L321) diff --git a/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/DELETE_ORGANIZATION_MUTATION.md b/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/DELETE_ORGANIZATION_MUTATION.md new file mode 100644 index 0000000000..78d7732753 --- /dev/null +++ b/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/DELETE_ORGANIZATION_MUTATION.md @@ -0,0 +1,9 @@ +[Admin Docs](/) + +*** + +# Variable: DELETE\_ORGANIZATION\_MUTATION + +> `const` **DELETE\_ORGANIZATION\_MUTATION**: `DocumentNode` + +Defined in: [src/GraphQl/Mutations/mutations.ts:253](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/GraphQl/Mutations/mutations.ts#L253) diff --git a/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/DELETE_POST_MUTATION.md b/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/DELETE_POST_MUTATION.md new file mode 100644 index 0000000000..c0186ed9bd --- /dev/null +++ b/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/DELETE_POST_MUTATION.md @@ -0,0 +1,9 @@ +[Admin Docs](/) + +*** + +# Variable: DELETE\_POST\_MUTATION + +> `const` **DELETE\_POST\_MUTATION**: `DocumentNode` + +Defined in: [src/GraphQl/Mutations/mutations.ts:397](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/GraphQl/Mutations/mutations.ts#L397) diff --git a/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/DONATE_TO_ORGANIZATION.md b/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/DONATE_TO_ORGANIZATION.md new file mode 100644 index 0000000000..e9ce2eae02 --- /dev/null +++ b/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/DONATE_TO_ORGANIZATION.md @@ -0,0 +1,9 @@ +[Admin Docs](/) + +*** + +# Variable: DONATE\_TO\_ORGANIZATION + +> `const` **DONATE\_TO\_ORGANIZATION**: `DocumentNode` + +Defined in: [src/GraphQl/Mutations/mutations.ts:663](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/GraphQl/Mutations/mutations.ts#L663) diff --git a/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/FORGOT_PASSWORD_MUTATION.md b/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/FORGOT_PASSWORD_MUTATION.md new file mode 100644 index 0000000000..20889b2b73 --- /dev/null +++ b/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/FORGOT_PASSWORD_MUTATION.md @@ -0,0 +1,9 @@ +[Admin Docs](/) + +*** + +# Variable: FORGOT\_PASSWORD\_MUTATION + +> `const` **FORGOT\_PASSWORD\_MUTATION**: `DocumentNode` + +Defined in: [src/GraphQl/Mutations/mutations.ts:413](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/GraphQl/Mutations/mutations.ts#L413) diff --git a/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/GENERATE_OTP_MUTATION.md b/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/GENERATE_OTP_MUTATION.md new file mode 100644 index 0000000000..aa2aea4e6f --- /dev/null +++ b/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/GENERATE_OTP_MUTATION.md @@ -0,0 +1,9 @@ +[Admin Docs](/) + +*** + +# Variable: GENERATE\_OTP\_MUTATION + +> `const` **GENERATE\_OTP\_MUTATION**: `DocumentNode` + +Defined in: [src/GraphQl/Mutations/mutations.ts:405](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/GraphQl/Mutations/mutations.ts#L405) diff --git a/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/LIKE_POST.md b/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/LIKE_POST.md new file mode 100644 index 0000000000..fd5ce49a49 --- /dev/null +++ b/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/LIKE_POST.md @@ -0,0 +1,9 @@ +[Admin Docs](/) + +*** + +# Variable: LIKE\_POST + +> `const` **LIKE\_POST**: `DocumentNode` + +Defined in: [src/GraphQl/Mutations/mutations.ts:621](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/GraphQl/Mutations/mutations.ts#L621) diff --git a/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/LOGIN_MUTATION.md b/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/LOGIN_MUTATION.md new file mode 100644 index 0000000000..5c61501d71 --- /dev/null +++ b/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/LOGIN_MUTATION.md @@ -0,0 +1,9 @@ +[Admin Docs](/) + +*** + +# Variable: LOGIN\_MUTATION + +> `const` **LOGIN\_MUTATION**: `DocumentNode` + +Defined in: [src/GraphQl/Mutations/mutations.ts:175](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/GraphQl/Mutations/mutations.ts#L175) diff --git a/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/RECAPTCHA_MUTATION.md b/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/RECAPTCHA_MUTATION.md new file mode 100644 index 0000000000..8418c47d31 --- /dev/null +++ b/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/RECAPTCHA_MUTATION.md @@ -0,0 +1,9 @@ +[Admin Docs](/) + +*** + +# Variable: RECAPTCHA\_MUTATION + +> `const` **RECAPTCHA\_MUTATION**: `DocumentNode` + +Defined in: [src/GraphQl/Mutations/mutations.ts:219](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/GraphQl/Mutations/mutations.ts#L219) diff --git a/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/REFRESH_TOKEN_MUTATION.md b/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/REFRESH_TOKEN_MUTATION.md new file mode 100644 index 0000000000..d4e71d38ae --- /dev/null +++ b/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/REFRESH_TOKEN_MUTATION.md @@ -0,0 +1,9 @@ +[Admin Docs](/) + +*** + +# Variable: REFRESH\_TOKEN\_MUTATION + +> `const` **REFRESH\_TOKEN\_MUTATION**: `DocumentNode` + +Defined in: [src/GraphQl/Mutations/mutations.ts:200](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/GraphQl/Mutations/mutations.ts#L200) diff --git a/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/REGISTER_EVENT.md b/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/REGISTER_EVENT.md new file mode 100644 index 0000000000..aa394f19c5 --- /dev/null +++ b/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/REGISTER_EVENT.md @@ -0,0 +1,9 @@ +[Admin Docs](/) + +*** + +# Variable: REGISTER\_EVENT + +> `const` **REGISTER\_EVENT**: `DocumentNode` + +Defined in: [src/GraphQl/Mutations/mutations.ts:637](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/GraphQl/Mutations/mutations.ts#L637) diff --git a/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/REJECT_ORGANIZATION_REQUEST_MUTATION.md b/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/REJECT_ORGANIZATION_REQUEST_MUTATION.md new file mode 100644 index 0000000000..8ea81208a9 --- /dev/null +++ b/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/REJECT_ORGANIZATION_REQUEST_MUTATION.md @@ -0,0 +1,9 @@ +[Admin Docs](/) + +*** + +# Variable: REJECT\_ORGANIZATION\_REQUEST\_MUTATION + +> `const` **REJECT\_ORGANIZATION\_REQUEST\_MUTATION**: `DocumentNode` + +Defined in: [src/GraphQl/Mutations/mutations.ts:23](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/GraphQl/Mutations/mutations.ts#L23) diff --git a/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/REMOVE_ADMIN_MUTATION.md b/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/REMOVE_ADMIN_MUTATION.md new file mode 100644 index 0000000000..2e45ec9cee --- /dev/null +++ b/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/REMOVE_ADMIN_MUTATION.md @@ -0,0 +1,9 @@ +[Admin Docs](/) + +*** + +# Variable: REMOVE\_ADMIN\_MUTATION + +> `const` **REMOVE\_ADMIN\_MUTATION**: `DocumentNode` + +Defined in: [src/GraphQl/Mutations/mutations.ts:333](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/GraphQl/Mutations/mutations.ts#L333) diff --git a/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/REMOVE_MEMBER_MUTATION.md b/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/REMOVE_MEMBER_MUTATION.md new file mode 100644 index 0000000000..c6927e6ffe --- /dev/null +++ b/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/REMOVE_MEMBER_MUTATION.md @@ -0,0 +1,9 @@ +[Admin Docs](/) + +*** + +# Variable: REMOVE\_MEMBER\_MUTATION + +> `const` **REMOVE\_MEMBER\_MUTATION**: `DocumentNode` + +Defined in: [src/GraphQl/Mutations/mutations.ts:342](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/GraphQl/Mutations/mutations.ts#L342) diff --git a/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/RESET_COMMUNITY.md b/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/RESET_COMMUNITY.md new file mode 100644 index 0000000000..bc68e0837d --- /dev/null +++ b/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/RESET_COMMUNITY.md @@ -0,0 +1,9 @@ +[Admin Docs](/) + +*** + +# Variable: RESET\_COMMUNITY + +> `const` **RESET\_COMMUNITY**: `DocumentNode` + +Defined in: [src/GraphQl/Mutations/mutations.ts:657](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/GraphQl/Mutations/mutations.ts#L657) diff --git a/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/REVOKE_REFRESH_TOKEN.md b/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/REVOKE_REFRESH_TOKEN.md new file mode 100644 index 0000000000..b095e5b79e --- /dev/null +++ b/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/REVOKE_REFRESH_TOKEN.md @@ -0,0 +1,9 @@ +[Admin Docs](/) + +*** + +# Variable: REVOKE\_REFRESH\_TOKEN + +> `const` **REVOKE\_REFRESH\_TOKEN**: `DocumentNode` + +Defined in: [src/GraphQl/Mutations/mutations.ts:211](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/GraphQl/Mutations/mutations.ts#L211) diff --git a/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/SIGNUP_MUTATION.md b/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/SIGNUP_MUTATION.md new file mode 100644 index 0000000000..cae0248727 --- /dev/null +++ b/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/SIGNUP_MUTATION.md @@ -0,0 +1,9 @@ +[Admin Docs](/) + +*** + +# Variable: SIGNUP\_MUTATION + +> `const` **SIGNUP\_MUTATION**: `DocumentNode` + +Defined in: [src/GraphQl/Mutations/mutations.ts:147](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/GraphQl/Mutations/mutations.ts#L147) diff --git a/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/UNBLOCK_USER_MUTATION.md b/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/UNBLOCK_USER_MUTATION.md new file mode 100644 index 0000000000..fec460e435 --- /dev/null +++ b/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/UNBLOCK_USER_MUTATION.md @@ -0,0 +1,9 @@ +[Admin Docs](/) + +*** + +# Variable: UNBLOCK\_USER\_MUTATION + +> `const` **UNBLOCK\_USER\_MUTATION**: `DocumentNode` + +Defined in: [src/GraphQl/Mutations/mutations.ts:3](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/GraphQl/Mutations/mutations.ts#L3) diff --git a/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/UNLIKE_POST.md b/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/UNLIKE_POST.md new file mode 100644 index 0000000000..1457015864 --- /dev/null +++ b/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/UNLIKE_POST.md @@ -0,0 +1,9 @@ +[Admin Docs](/) + +*** + +# Variable: UNLIKE\_POST + +> `const` **UNLIKE\_POST**: `DocumentNode` + +Defined in: [src/GraphQl/Mutations/mutations.ts:629](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/GraphQl/Mutations/mutations.ts#L629) diff --git a/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/UPDATE_ADVERTISEMENT_MUTATION.md b/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/UPDATE_ADVERTISEMENT_MUTATION.md new file mode 100644 index 0000000000..d993b4d1df --- /dev/null +++ b/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/UPDATE_ADVERTISEMENT_MUTATION.md @@ -0,0 +1,9 @@ +[Admin Docs](/) + +*** + +# Variable: UPDATE\_ADVERTISEMENT\_MUTATION + +> `const` **UPDATE\_ADVERTISEMENT\_MUTATION**: `DocumentNode` + +Defined in: [src/GraphQl/Mutations/mutations.ts:511](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/GraphQl/Mutations/mutations.ts#L511) diff --git a/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/UPDATE_COMMUNITY.md b/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/UPDATE_COMMUNITY.md new file mode 100644 index 0000000000..9f33f8b6b7 --- /dev/null +++ b/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/UPDATE_COMMUNITY.md @@ -0,0 +1,9 @@ +[Admin Docs](/) + +*** + +# Variable: UPDATE\_COMMUNITY + +> `const` **UPDATE\_COMMUNITY**: `DocumentNode` + +Defined in: [src/GraphQl/Mutations/mutations.ts:645](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/GraphQl/Mutations/mutations.ts#L645) diff --git a/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/UPDATE_EVENT_MUTATION.md b/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/UPDATE_EVENT_MUTATION.md new file mode 100644 index 0000000000..62396a973a --- /dev/null +++ b/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/UPDATE_EVENT_MUTATION.md @@ -0,0 +1,9 @@ +[Admin Docs](/) + +*** + +# Variable: UPDATE\_EVENT\_MUTATION + +> `const` **UPDATE\_EVENT\_MUTATION**: `DocumentNode` + +Defined in: [src/GraphQl/Mutations/mutations.ts:567](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/GraphQl/Mutations/mutations.ts#L567) diff --git a/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/UPDATE_INSTALL_STATUS_PLUGIN_MUTATION.md b/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/UPDATE_INSTALL_STATUS_PLUGIN_MUTATION.md new file mode 100644 index 0000000000..45d5131c0e --- /dev/null +++ b/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/UPDATE_INSTALL_STATUS_PLUGIN_MUTATION.md @@ -0,0 +1,13 @@ +[Admin Docs](/) + +*** + +# Variable: UPDATE\_INSTALL\_STATUS\_PLUGIN\_MUTATION + +> `const` **UPDATE\_INSTALL\_STATUS\_PLUGIN\_MUTATION**: `DocumentNode` + +Defined in: [src/GraphQl/Mutations/mutations.ts:434](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/GraphQl/Mutations/mutations.ts#L434) + +## Remarks + +used to toggle `installStatus` (boolean value) of a Plugin diff --git a/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/UPDATE_ORGANIZATION_MUTATION.md b/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/UPDATE_ORGANIZATION_MUTATION.md new file mode 100644 index 0000000000..be317dbf0e --- /dev/null +++ b/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/UPDATE_ORGANIZATION_MUTATION.md @@ -0,0 +1,9 @@ +[Admin Docs](/) + +*** + +# Variable: UPDATE\_ORGANIZATION\_MUTATION + +> `const` **UPDATE\_ORGANIZATION\_MUTATION**: `DocumentNode` + +Defined in: [src/GraphQl/Mutations/mutations.ts:43](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/GraphQl/Mutations/mutations.ts#L43) diff --git a/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/UPDATE_ORG_STATUS_PLUGIN_MUTATION.md b/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/UPDATE_ORG_STATUS_PLUGIN_MUTATION.md new file mode 100644 index 0000000000..f73d2e2740 --- /dev/null +++ b/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/UPDATE_ORG_STATUS_PLUGIN_MUTATION.md @@ -0,0 +1,13 @@ +[Admin Docs](/) + +*** + +# Variable: UPDATE\_ORG\_STATUS\_PLUGIN\_MUTATION + +> `const` **UPDATE\_ORG\_STATUS\_PLUGIN\_MUTATION**: `DocumentNode` + +Defined in: [src/GraphQl/Mutations/mutations.ts:451](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/GraphQl/Mutations/mutations.ts#L451) + +## Remarks + +used `updatePluginStatus`to add or remove the current Organization the in the plugin list `uninstalledOrgs` diff --git a/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/UPDATE_POST_MUTATION.md b/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/UPDATE_POST_MUTATION.md new file mode 100644 index 0000000000..952aa32485 --- /dev/null +++ b/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/UPDATE_POST_MUTATION.md @@ -0,0 +1,9 @@ +[Admin Docs](/) + +*** + +# Variable: UPDATE\_POST\_MUTATION + +> `const` **UPDATE\_POST\_MUTATION**: `DocumentNode` + +Defined in: [src/GraphQl/Mutations/mutations.ts:545](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/GraphQl/Mutations/mutations.ts#L545) diff --git a/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/UPDATE_SESSION_TIMEOUT.md b/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/UPDATE_SESSION_TIMEOUT.md new file mode 100644 index 0000000000..986e6dd945 --- /dev/null +++ b/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/UPDATE_SESSION_TIMEOUT.md @@ -0,0 +1,9 @@ +[Admin Docs](/) + +*** + +# Variable: UPDATE\_SESSION\_TIMEOUT + +> `const` **UPDATE\_SESSION\_TIMEOUT**: `DocumentNode` + +Defined in: [src/GraphQl/Mutations/mutations.ts:651](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/GraphQl/Mutations/mutations.ts#L651) diff --git a/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/UPDATE_USER_MUTATION.md b/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/UPDATE_USER_MUTATION.md new file mode 100644 index 0000000000..f2263db8d5 --- /dev/null +++ b/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/UPDATE_USER_MUTATION.md @@ -0,0 +1,9 @@ +[Admin Docs](/) + +*** + +# Variable: UPDATE\_USER\_MUTATION + +> `const` **UPDATE\_USER\_MUTATION**: `DocumentNode` + +Defined in: [src/GraphQl/Mutations/mutations.ts:85](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/GraphQl/Mutations/mutations.ts#L85) diff --git a/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/UPDATE_USER_PASSWORD_MUTATION.md b/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/UPDATE_USER_PASSWORD_MUTATION.md new file mode 100644 index 0000000000..f758850ef9 --- /dev/null +++ b/docs/docs/auto-docs/GraphQl/Mutations/mutations/variables/UPDATE_USER_PASSWORD_MUTATION.md @@ -0,0 +1,9 @@ +[Admin Docs](/) + +*** + +# Variable: UPDATE\_USER\_PASSWORD\_MUTATION + +> `const` **UPDATE\_USER\_PASSWORD\_MUTATION**: `DocumentNode` + +Defined in: [src/GraphQl/Mutations/mutations.ts:125](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/GraphQl/Mutations/mutations.ts#L125) diff --git a/docs/docs/auto-docs/GraphQl/Queries/ActionItemCategoryQueries/variables/ACTION_ITEM_CATEGORY_LIST.md b/docs/docs/auto-docs/GraphQl/Queries/ActionItemCategoryQueries/variables/ACTION_ITEM_CATEGORY_LIST.md new file mode 100644 index 0000000000..03c5f02df1 --- /dev/null +++ b/docs/docs/auto-docs/GraphQl/Queries/ActionItemCategoryQueries/variables/ACTION_ITEM_CATEGORY_LIST.md @@ -0,0 +1,19 @@ +[Admin Docs](/) + +*** + +# Variable: ACTION\_ITEM\_CATEGORY\_LIST + +> `const` **ACTION\_ITEM\_CATEGORY\_LIST**: `DocumentNode` + +Defined in: [src/GraphQl/Queries/ActionItemCategoryQueries.ts:10](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/GraphQl/Queries/ActionItemCategoryQueries.ts#L10) + +GraphQL query to retrieve action item categories by organization. + +## Param + +The ID of the organization for which action item categories are being retrieved. + +## Returns + +The list of action item categories associated with the organization. diff --git a/docs/docs/auto-docs/GraphQl/Queries/ActionItemQueries/variables/ACTION_ITEMS_BY_USER.md b/docs/docs/auto-docs/GraphQl/Queries/ActionItemQueries/variables/ACTION_ITEMS_BY_USER.md new file mode 100644 index 0000000000..8f451ef45d --- /dev/null +++ b/docs/docs/auto-docs/GraphQl/Queries/ActionItemQueries/variables/ACTION_ITEMS_BY_USER.md @@ -0,0 +1,9 @@ +[Admin Docs](/) + +*** + +# Variable: ACTION\_ITEMS\_BY\_USER + +> `const` **ACTION\_ITEMS\_BY\_USER**: `DocumentNode` + +Defined in: [src/GraphQl/Queries/ActionItemQueries.ts:78](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/GraphQl/Queries/ActionItemQueries.ts#L78) diff --git a/docs/docs/auto-docs/GraphQl/Queries/ActionItemQueries/variables/ACTION_ITEM_LIST.md b/docs/docs/auto-docs/GraphQl/Queries/ActionItemQueries/variables/ACTION_ITEM_LIST.md new file mode 100644 index 0000000000..86eec9aec4 --- /dev/null +++ b/docs/docs/auto-docs/GraphQl/Queries/ActionItemQueries/variables/ACTION_ITEM_LIST.md @@ -0,0 +1,35 @@ +[Admin Docs](/) + +*** + +# Variable: ACTION\_ITEM\_LIST + +> `const` **ACTION\_ITEM\_LIST**: `DocumentNode` + +Defined in: [src/GraphQl/Queries/ActionItemQueries.ts:14](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/GraphQl/Queries/ActionItemQueries.ts#L14) + +GraphQL query to retrieve action item categories by organization. + +## Param + +The ID of the organization for which action item categories are being retrieved. + +## Param + +Sort action items Latest/Earliest first. + +## Param + +Filter action items belonging to an action item category. + +## Param + +Filter action items belonging to an event. + +## Param + +Filter all the completed action items. + +## Returns + +The list of action item categories associated with the organization. diff --git a/docs/docs/auto-docs/GraphQl/Queries/AgendaCategoryQueries/variables/AGENDA_ITEM_CATEGORY_LIST.md b/docs/docs/auto-docs/GraphQl/Queries/AgendaCategoryQueries/variables/AGENDA_ITEM_CATEGORY_LIST.md new file mode 100644 index 0000000000..1cb5afce5f --- /dev/null +++ b/docs/docs/auto-docs/GraphQl/Queries/AgendaCategoryQueries/variables/AGENDA_ITEM_CATEGORY_LIST.md @@ -0,0 +1,19 @@ +[Admin Docs](/) + +*** + +# Variable: AGENDA\_ITEM\_CATEGORY\_LIST + +> `const` **AGENDA\_ITEM\_CATEGORY\_LIST**: `DocumentNode` + +Defined in: [src/GraphQl/Queries/AgendaCategoryQueries.ts:10](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/GraphQl/Queries/AgendaCategoryQueries.ts#L10) + +GraphQL query to retrieve agenda category by id. + +## Param + +The ID of the category which is being retrieved. + +## Returns + +Agenda category associated with the id. diff --git a/docs/docs/auto-docs/GraphQl/Queries/AgendaItemQueries/variables/AgendaItemByEvent.md b/docs/docs/auto-docs/GraphQl/Queries/AgendaItemQueries/variables/AgendaItemByEvent.md new file mode 100644 index 0000000000..cc81fad6d5 --- /dev/null +++ b/docs/docs/auto-docs/GraphQl/Queries/AgendaItemQueries/variables/AgendaItemByEvent.md @@ -0,0 +1,9 @@ +[Admin Docs](/) + +*** + +# Variable: AgendaItemByEvent + +> `const` **AgendaItemByEvent**: `DocumentNode` + +Defined in: [src/GraphQl/Queries/AgendaItemQueries.ts:39](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/GraphQl/Queries/AgendaItemQueries.ts#L39) diff --git a/docs/docs/auto-docs/GraphQl/Queries/AgendaItemQueries/variables/AgendaItemByOrganization.md b/docs/docs/auto-docs/GraphQl/Queries/AgendaItemQueries/variables/AgendaItemByOrganization.md new file mode 100644 index 0000000000..75ebc7b028 --- /dev/null +++ b/docs/docs/auto-docs/GraphQl/Queries/AgendaItemQueries/variables/AgendaItemByOrganization.md @@ -0,0 +1,9 @@ +[Admin Docs](/) + +*** + +# Variable: AgendaItemByOrganization + +> `const` **AgendaItemByOrganization**: `DocumentNode` + +Defined in: [src/GraphQl/Queries/AgendaItemQueries.ts:3](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/GraphQl/Queries/AgendaItemQueries.ts#L3) diff --git a/docs/docs/auto-docs/GraphQl/Queries/EventVolunteerQueries/variables/EVENT_VOLUNTEER_GROUP_LIST.md b/docs/docs/auto-docs/GraphQl/Queries/EventVolunteerQueries/variables/EVENT_VOLUNTEER_GROUP_LIST.md new file mode 100644 index 0000000000..8626a016d3 --- /dev/null +++ b/docs/docs/auto-docs/GraphQl/Queries/EventVolunteerQueries/variables/EVENT_VOLUNTEER_GROUP_LIST.md @@ -0,0 +1,9 @@ +[Admin Docs](/) + +*** + +# Variable: EVENT\_VOLUNTEER\_GROUP\_LIST + +> `const` **EVENT\_VOLUNTEER\_GROUP\_LIST**: `DocumentNode` + +Defined in: [src/GraphQl/Queries/EventVolunteerQueries.ts:41](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/GraphQl/Queries/EventVolunteerQueries.ts#L41) diff --git a/docs/docs/auto-docs/GraphQl/Queries/EventVolunteerQueries/variables/EVENT_VOLUNTEER_LIST.md b/docs/docs/auto-docs/GraphQl/Queries/EventVolunteerQueries/variables/EVENT_VOLUNTEER_LIST.md new file mode 100644 index 0000000000..8057665594 --- /dev/null +++ b/docs/docs/auto-docs/GraphQl/Queries/EventVolunteerQueries/variables/EVENT_VOLUNTEER_LIST.md @@ -0,0 +1,23 @@ +[Admin Docs](/) + +*** + +# Variable: EVENT\_VOLUNTEER\_LIST + +> `const` **EVENT\_VOLUNTEER\_LIST**: `DocumentNode` + +Defined in: [src/GraphQl/Queries/EventVolunteerQueries.ts:12](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/GraphQl/Queries/EventVolunteerQueries.ts#L12) + +GraphQL query to retrieve event volunteers. + +## Param + +The filter to apply to the query. + +## Param + +The order in which to return the results. + +## Returns + +The list of event volunteers. diff --git a/docs/docs/auto-docs/GraphQl/Queries/EventVolunteerQueries/variables/USER_VOLUNTEER_MEMBERSHIP.md b/docs/docs/auto-docs/GraphQl/Queries/EventVolunteerQueries/variables/USER_VOLUNTEER_MEMBERSHIP.md new file mode 100644 index 0000000000..e043595328 --- /dev/null +++ b/docs/docs/auto-docs/GraphQl/Queries/EventVolunteerQueries/variables/USER_VOLUNTEER_MEMBERSHIP.md @@ -0,0 +1,9 @@ +[Admin Docs](/) + +*** + +# Variable: USER\_VOLUNTEER\_MEMBERSHIP + +> `const` **USER\_VOLUNTEER\_MEMBERSHIP**: `DocumentNode` + +Defined in: [src/GraphQl/Queries/EventVolunteerQueries.ts:89](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/GraphQl/Queries/EventVolunteerQueries.ts#L89) diff --git a/docs/docs/auto-docs/GraphQl/Queries/EventVolunteerQueries/variables/VOLUNTEER_RANKING.md b/docs/docs/auto-docs/GraphQl/Queries/EventVolunteerQueries/variables/VOLUNTEER_RANKING.md new file mode 100644 index 0000000000..6e2db6cf18 --- /dev/null +++ b/docs/docs/auto-docs/GraphQl/Queries/EventVolunteerQueries/variables/VOLUNTEER_RANKING.md @@ -0,0 +1,9 @@ +[Admin Docs](/) + +*** + +# Variable: VOLUNTEER\_RANKING + +> `const` **VOLUNTEER\_RANKING**: `DocumentNode` + +Defined in: [src/GraphQl/Queries/EventVolunteerQueries.ts:120](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/GraphQl/Queries/EventVolunteerQueries.ts#L120) diff --git a/docs/docs/auto-docs/GraphQl/Queries/OrganizationQueries/variables/ORGANIZATION_ADMINS_LIST.md b/docs/docs/auto-docs/GraphQl/Queries/OrganizationQueries/variables/ORGANIZATION_ADMINS_LIST.md new file mode 100644 index 0000000000..67db069c1b --- /dev/null +++ b/docs/docs/auto-docs/GraphQl/Queries/OrganizationQueries/variables/ORGANIZATION_ADMINS_LIST.md @@ -0,0 +1,19 @@ +[Admin Docs](/) + +*** + +# Variable: ORGANIZATION\_ADMINS\_LIST + +> `const` **ORGANIZATION\_ADMINS\_LIST**: `DocumentNode` + +Defined in: [src/GraphQl/Queries/OrganizationQueries.ts:314](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/GraphQl/Queries/OrganizationQueries.ts#L314) + +GraphQL query to retrieve the list of admins for a specific organization. + +## Param + +The ID of the organization for which admins are being retrieved. + +## Returns + +The list of admins associated with the organization. diff --git a/docs/docs/auto-docs/GraphQl/Queries/OrganizationQueries/variables/ORGANIZATION_ADVERTISEMENT_LIST.md b/docs/docs/auto-docs/GraphQl/Queries/OrganizationQueries/variables/ORGANIZATION_ADVERTISEMENT_LIST.md new file mode 100644 index 0000000000..8e536ffcfb --- /dev/null +++ b/docs/docs/auto-docs/GraphQl/Queries/OrganizationQueries/variables/ORGANIZATION_ADVERTISEMENT_LIST.md @@ -0,0 +1,9 @@ +[Admin Docs](/) + +*** + +# Variable: ORGANIZATION\_ADVERTISEMENT\_LIST + +> `const` **ORGANIZATION\_ADVERTISEMENT\_LIST**: `DocumentNode` + +Defined in: [src/GraphQl/Queries/OrganizationQueries.ts:134](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/GraphQl/Queries/OrganizationQueries.ts#L134) diff --git a/docs/docs/auto-docs/GraphQl/Queries/OrganizationQueries/variables/ORGANIZATION_FUNDS.md b/docs/docs/auto-docs/GraphQl/Queries/OrganizationQueries/variables/ORGANIZATION_FUNDS.md new file mode 100644 index 0000000000..ec795d8f54 --- /dev/null +++ b/docs/docs/auto-docs/GraphQl/Queries/OrganizationQueries/variables/ORGANIZATION_FUNDS.md @@ -0,0 +1,19 @@ +[Admin Docs](/) + +*** + +# Variable: ORGANIZATION\_FUNDS + +> `const` **ORGANIZATION\_FUNDS**: `DocumentNode` + +Defined in: [src/GraphQl/Queries/OrganizationQueries.ts:335](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/GraphQl/Queries/OrganizationQueries.ts#L335) + +GraphQL query to retrieve the list of members for a specific organization. + +## Param + +The ID of the organization for which members are being retrieved. + +## Returns + +The list of members associated with the organization. diff --git a/docs/docs/auto-docs/GraphQl/Queries/OrganizationQueries/variables/ORGANIZATION_POST_LIST.md b/docs/docs/auto-docs/GraphQl/Queries/OrganizationQueries/variables/ORGANIZATION_POST_LIST.md new file mode 100644 index 0000000000..0103b4bb83 --- /dev/null +++ b/docs/docs/auto-docs/GraphQl/Queries/OrganizationQueries/variables/ORGANIZATION_POST_LIST.md @@ -0,0 +1,31 @@ +[Admin Docs](/) + +*** + +# Variable: ORGANIZATION\_POST\_LIST + +> `const` **ORGANIZATION\_POST\_LIST**: `DocumentNode` + +Defined in: [src/GraphQl/Queries/OrganizationQueries.ts:15](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/GraphQl/Queries/OrganizationQueries.ts#L15) + +GraphQL query to retrieve the list of organizations. + +## Param + +Optional. Number of organizations to retrieve in the first batch. + +## Param + +Optional. Number of organizations to skip before starting to collect the result set. + +## Param + +Optional. Filter organizations by a specified string. + +## Param + +Optional. The ID of a specific organization to retrieve. + +## Returns + +The list of organizations based on the applied filters. diff --git a/docs/docs/auto-docs/GraphQl/Queries/OrganizationQueries/variables/ORGANIZATION_USER_TAGS_LIST.md b/docs/docs/auto-docs/GraphQl/Queries/OrganizationQueries/variables/ORGANIZATION_USER_TAGS_LIST.md new file mode 100644 index 0000000000..c70e659598 --- /dev/null +++ b/docs/docs/auto-docs/GraphQl/Queries/OrganizationQueries/variables/ORGANIZATION_USER_TAGS_LIST.md @@ -0,0 +1,35 @@ +[Admin Docs](/) + +*** + +# Variable: ORGANIZATION\_USER\_TAGS\_LIST + +> `const` **ORGANIZATION\_USER\_TAGS\_LIST**: `DocumentNode` + +Defined in: [src/GraphQl/Queries/OrganizationQueries.ts:83](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/GraphQl/Queries/OrganizationQueries.ts#L83) + +GraphQL query to retrieve the list of user tags belonging to an organization. + +## Param + +ID of the organization. + +## Param + +Number of tags to retrieve "after" (if provided) a certain tag. + +## Param + +Id of the last tag on the current page. + +## Param + +Number of tags to retrieve "before" (if provided) a certain tag. + +## Param + +Id of the first tag on the current page. + +## Returns + +The list of organizations based on the applied filters. diff --git a/docs/docs/auto-docs/GraphQl/Queries/OrganizationQueries/variables/USER_CREATED_ORGANIZATIONS.md b/docs/docs/auto-docs/GraphQl/Queries/OrganizationQueries/variables/USER_CREATED_ORGANIZATIONS.md new file mode 100644 index 0000000000..2402748431 --- /dev/null +++ b/docs/docs/auto-docs/GraphQl/Queries/OrganizationQueries/variables/USER_CREATED_ORGANIZATIONS.md @@ -0,0 +1,19 @@ +[Admin Docs](/) + +*** + +# Variable: USER\_CREATED\_ORGANIZATIONS + +> `const` **USER\_CREATED\_ORGANIZATIONS**: `DocumentNode` + +Defined in: [src/GraphQl/Queries/OrganizationQueries.ts:276](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/GraphQl/Queries/OrganizationQueries.ts#L276) + +GraphQL query to retrieve organizations created by a user. + +## Param + +The ID of the user for which created organizations are being retrieved. + +## Returns + +The list of organizations created by the user. diff --git a/docs/docs/auto-docs/GraphQl/Queries/OrganizationQueries/variables/USER_JOINED_ORGANIZATIONS.md b/docs/docs/auto-docs/GraphQl/Queries/OrganizationQueries/variables/USER_JOINED_ORGANIZATIONS.md new file mode 100644 index 0000000000..02db99af16 --- /dev/null +++ b/docs/docs/auto-docs/GraphQl/Queries/OrganizationQueries/variables/USER_JOINED_ORGANIZATIONS.md @@ -0,0 +1,19 @@ +[Admin Docs](/) + +*** + +# Variable: USER\_JOINED\_ORGANIZATIONS + +> `const` **USER\_JOINED\_ORGANIZATIONS**: `DocumentNode` + +Defined in: [src/GraphQl/Queries/OrganizationQueries.ts:238](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/GraphQl/Queries/OrganizationQueries.ts#L238) + +GraphQL query to retrieve organizations joined by a user. + +## Param + +The ID of the user for which joined organizations are being retrieved. + +## Returns + +The list of organizations joined by the user. diff --git a/docs/docs/auto-docs/GraphQl/Queries/OrganizationQueries/variables/USER_ORGANIZATION_CONNECTION.md b/docs/docs/auto-docs/GraphQl/Queries/OrganizationQueries/variables/USER_ORGANIZATION_CONNECTION.md new file mode 100644 index 0000000000..50168e4f35 --- /dev/null +++ b/docs/docs/auto-docs/GraphQl/Queries/OrganizationQueries/variables/USER_ORGANIZATION_CONNECTION.md @@ -0,0 +1,31 @@ +[Admin Docs](/) + +*** + +# Variable: USER\_ORGANIZATION\_CONNECTION + +> `const` **USER\_ORGANIZATION\_CONNECTION**: `DocumentNode` + +Defined in: [src/GraphQl/Queries/OrganizationQueries.ts:182](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/GraphQl/Queries/OrganizationQueries.ts#L182) + +GraphQL query to retrieve organizations based on user connection. + +## Param + +Optional. Number of organizations to retrieve in the first batch. + +## Param + +Optional. Number of organizations to skip before starting to collect the result set. + +## Param + +Optional. Filter organizations by a specified string. + +## Param + +Optional. The ID of a specific organization to retrieve. + +## Returns + +The list of organizations based on the applied filters. diff --git a/docs/docs/auto-docs/GraphQl/Queries/OrganizationQueries/variables/VENUE_LIST.md b/docs/docs/auto-docs/GraphQl/Queries/OrganizationQueries/variables/VENUE_LIST.md new file mode 100644 index 0000000000..d05f3ea671 --- /dev/null +++ b/docs/docs/auto-docs/GraphQl/Queries/OrganizationQueries/variables/VENUE_LIST.md @@ -0,0 +1,19 @@ +[Admin Docs](/) + +*** + +# Variable: VENUE\_LIST + +> `const` **VENUE\_LIST**: `DocumentNode` + +Defined in: [src/GraphQl/Queries/OrganizationQueries.ts:357](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/GraphQl/Queries/OrganizationQueries.ts#L357) + +GraphQL query to retrieve the list of venues for a specific organization. + +## Param + +The ID of the organization for which venues are being retrieved. + +## Returns + +The list of venues associated with the organization. diff --git a/docs/docs/auto-docs/GraphQl/Queries/PlugInQueries/variables/ADVERTISEMENTS_GET.md b/docs/docs/auto-docs/GraphQl/Queries/PlugInQueries/variables/ADVERTISEMENTS_GET.md new file mode 100644 index 0000000000..3351de06cc --- /dev/null +++ b/docs/docs/auto-docs/GraphQl/Queries/PlugInQueries/variables/ADVERTISEMENTS_GET.md @@ -0,0 +1,15 @@ +[Admin Docs](/) + +*** + +# Variable: ADVERTISEMENTS\_GET + +> `const` **ADVERTISEMENTS\_GET**: `DocumentNode` + +Defined in: [src/GraphQl/Queries/PlugInQueries.ts:27](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/GraphQl/Queries/PlugInQueries.ts#L27) + +GraphQL query to retrieve a list of advertisements. + +## Returns + +The list of advertisements with details such as ID, name, type, organization ID, link, start date, and end date. diff --git a/docs/docs/auto-docs/GraphQl/Queries/PlugInQueries/variables/CHATS_LIST.md b/docs/docs/auto-docs/GraphQl/Queries/PlugInQueries/variables/CHATS_LIST.md new file mode 100644 index 0000000000..cee5bbd293 --- /dev/null +++ b/docs/docs/auto-docs/GraphQl/Queries/PlugInQueries/variables/CHATS_LIST.md @@ -0,0 +1,9 @@ +[Admin Docs](/) + +*** + +# Variable: CHATS\_LIST + +> `const` **CHATS\_LIST**: `DocumentNode` + +Defined in: [src/GraphQl/Queries/PlugInQueries.ts:304](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/GraphQl/Queries/PlugInQueries.ts#L304) diff --git a/docs/docs/auto-docs/GraphQl/Queries/PlugInQueries/variables/CHAT_BY_ID.md b/docs/docs/auto-docs/GraphQl/Queries/PlugInQueries/variables/CHAT_BY_ID.md new file mode 100644 index 0000000000..afb8a9dee2 --- /dev/null +++ b/docs/docs/auto-docs/GraphQl/Queries/PlugInQueries/variables/CHAT_BY_ID.md @@ -0,0 +1,19 @@ +[Admin Docs](/) + +*** + +# Variable: CHAT\_BY\_ID + +> `const` **CHAT\_BY\_ID**: `DocumentNode` + +Defined in: [src/GraphQl/Queries/PlugInQueries.ts:156](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/GraphQl/Queries/PlugInQueries.ts#L156) + +GraphQL query to retrieve a list of chats based on user ID. + +## Param + +The ID of the user for which chats are being retrieved. + +## Returns + +The list of chats associated with the user, including details such as ID, creator, messages, organization, and participating users. diff --git a/docs/docs/auto-docs/GraphQl/Queries/PlugInQueries/variables/GROUP_CHAT_LIST.md b/docs/docs/auto-docs/GraphQl/Queries/PlugInQueries/variables/GROUP_CHAT_LIST.md new file mode 100644 index 0000000000..9155b5b1fc --- /dev/null +++ b/docs/docs/auto-docs/GraphQl/Queries/PlugInQueries/variables/GROUP_CHAT_LIST.md @@ -0,0 +1,9 @@ +[Admin Docs](/) + +*** + +# Variable: GROUP\_CHAT\_LIST + +> `const` **GROUP\_CHAT\_LIST**: `DocumentNode` + +Defined in: [src/GraphQl/Queries/PlugInQueries.ts:210](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/GraphQl/Queries/PlugInQueries.ts#L210) diff --git a/docs/docs/auto-docs/GraphQl/Queries/PlugInQueries/variables/IS_SAMPLE_ORGANIZATION_QUERY.md b/docs/docs/auto-docs/GraphQl/Queries/PlugInQueries/variables/IS_SAMPLE_ORGANIZATION_QUERY.md new file mode 100644 index 0000000000..ece2a5345d --- /dev/null +++ b/docs/docs/auto-docs/GraphQl/Queries/PlugInQueries/variables/IS_SAMPLE_ORGANIZATION_QUERY.md @@ -0,0 +1,19 @@ +[Admin Docs](/) + +*** + +# Variable: IS\_SAMPLE\_ORGANIZATION\_QUERY + +> `const` **IS\_SAMPLE\_ORGANIZATION\_QUERY**: `DocumentNode` + +Defined in: [src/GraphQl/Queries/PlugInQueries.ts:366](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/GraphQl/Queries/PlugInQueries.ts#L366) + +GraphQL query to check if an organization is a sample organization. + +## Param + +The ID of the organization being checked. + +## Returns + +A boolean indicating whether the organization is a sample organization. diff --git a/docs/docs/auto-docs/GraphQl/Queries/PlugInQueries/variables/ORGANIZATION_CUSTOM_FIELDS.md b/docs/docs/auto-docs/GraphQl/Queries/PlugInQueries/variables/ORGANIZATION_CUSTOM_FIELDS.md new file mode 100644 index 0000000000..5faded6d83 --- /dev/null +++ b/docs/docs/auto-docs/GraphQl/Queries/PlugInQueries/variables/ORGANIZATION_CUSTOM_FIELDS.md @@ -0,0 +1,19 @@ +[Admin Docs](/) + +*** + +# Variable: ORGANIZATION\_CUSTOM\_FIELDS + +> `const` **ORGANIZATION\_CUSTOM\_FIELDS**: `DocumentNode` + +Defined in: [src/GraphQl/Queries/PlugInQueries.ts:379](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/GraphQl/Queries/PlugInQueries.ts#L379) + +GraphQL query to retrieve custom fields for a specific organization. + +## Param + +The ID of the organization for which custom fields are being retrieved. + +## Returns + +The list of custom fields associated with the organization, including details such as ID, type, and name. diff --git a/docs/docs/auto-docs/GraphQl/Queries/PlugInQueries/variables/ORGANIZATION_EVENTS_CONNECTION.md b/docs/docs/auto-docs/GraphQl/Queries/PlugInQueries/variables/ORGANIZATION_EVENTS_CONNECTION.md new file mode 100644 index 0000000000..1b4a338d83 --- /dev/null +++ b/docs/docs/auto-docs/GraphQl/Queries/PlugInQueries/variables/ORGANIZATION_EVENTS_CONNECTION.md @@ -0,0 +1,39 @@ +[Admin Docs](/) + +*** + +# Variable: ORGANIZATION\_EVENTS\_CONNECTION + +> `const` **ORGANIZATION\_EVENTS\_CONNECTION**: `DocumentNode` + +Defined in: [src/GraphQl/Queries/PlugInQueries.ts:59](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/GraphQl/Queries/PlugInQueries.ts#L59) + +GraphQL query to retrieve a list of events based on organization connection. + +## Param + +The ID of the organization for which events are being retrieved. + +## Param + +Optional. Filter events by title containing a specified string. + +## Param + +Optional. Filter events by description containing a specified string. + +## Param + +Optional. Filter events by location containing a specified string. + +## Param + +Optional. Number of events to retrieve in the first batch. + +## Param + +Optional. Number of events to skip before starting to collect the result set. + +## Returns + +The list of events associated with the organization based on the applied filters. diff --git a/docs/docs/auto-docs/GraphQl/Queries/PlugInQueries/variables/PLUGIN_GET.md b/docs/docs/auto-docs/GraphQl/Queries/PlugInQueries/variables/PLUGIN_GET.md new file mode 100644 index 0000000000..ffc9d7e382 --- /dev/null +++ b/docs/docs/auto-docs/GraphQl/Queries/PlugInQueries/variables/PLUGIN_GET.md @@ -0,0 +1,15 @@ +[Admin Docs](/) + +*** + +# Variable: PLUGIN\_GET + +> `const` **PLUGIN\_GET**: `DocumentNode` + +Defined in: [src/GraphQl/Queries/PlugInQueries.ts:9](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/GraphQl/Queries/PlugInQueries.ts#L9) + +GraphQL query to retrieve a list of plugins. + +## Returns + +The list of plugins with details such as ID, name, creator, description, and uninstalled organizations. diff --git a/docs/docs/auto-docs/GraphQl/Queries/PlugInQueries/variables/UNREAD_CHAT_LIST.md b/docs/docs/auto-docs/GraphQl/Queries/PlugInQueries/variables/UNREAD_CHAT_LIST.md new file mode 100644 index 0000000000..20496c3280 --- /dev/null +++ b/docs/docs/auto-docs/GraphQl/Queries/PlugInQueries/variables/UNREAD_CHAT_LIST.md @@ -0,0 +1,9 @@ +[Admin Docs](/) + +*** + +# Variable: UNREAD\_CHAT\_LIST + +> `const` **UNREAD\_CHAT\_LIST**: `DocumentNode` + +Defined in: [src/GraphQl/Queries/PlugInQueries.ts:257](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/GraphQl/Queries/PlugInQueries.ts#L257) diff --git a/docs/docs/auto-docs/GraphQl/Queries/PlugInQueries/variables/USER_EVENTS_VOLUNTEER.md b/docs/docs/auto-docs/GraphQl/Queries/PlugInQueries/variables/USER_EVENTS_VOLUNTEER.md new file mode 100644 index 0000000000..6bcf5a4d7f --- /dev/null +++ b/docs/docs/auto-docs/GraphQl/Queries/PlugInQueries/variables/USER_EVENTS_VOLUNTEER.md @@ -0,0 +1,9 @@ +[Admin Docs](/) + +*** + +# Variable: USER\_EVENTS\_VOLUNTEER + +> `const` **USER\_EVENTS\_VOLUNTEER**: `DocumentNode` + +Defined in: [src/GraphQl/Queries/PlugInQueries.ts:102](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/GraphQl/Queries/PlugInQueries.ts#L102) diff --git a/docs/docs/auto-docs/GraphQl/Queries/Queries/variables/ADMIN_LIST.md b/docs/docs/auto-docs/GraphQl/Queries/Queries/variables/ADMIN_LIST.md new file mode 100644 index 0000000000..7cbcc88d67 --- /dev/null +++ b/docs/docs/auto-docs/GraphQl/Queries/Queries/variables/ADMIN_LIST.md @@ -0,0 +1,9 @@ +[Admin Docs](/) + +*** + +# Variable: ADMIN\_LIST + +> `const` **ADMIN\_LIST**: `DocumentNode` + +Defined in: [src/GraphQl/Queries/Queries.ts:707](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/GraphQl/Queries/Queries.ts#L707) diff --git a/docs/docs/auto-docs/GraphQl/Queries/Queries/variables/BLOCK_PAGE_MEMBER_LIST.md b/docs/docs/auto-docs/GraphQl/Queries/Queries/variables/BLOCK_PAGE_MEMBER_LIST.md new file mode 100644 index 0000000000..79cff39fb0 --- /dev/null +++ b/docs/docs/auto-docs/GraphQl/Queries/Queries/variables/BLOCK_PAGE_MEMBER_LIST.md @@ -0,0 +1,9 @@ +[Admin Docs](/) + +*** + +# Variable: BLOCK\_PAGE\_MEMBER\_LIST + +> `const` **BLOCK\_PAGE\_MEMBER\_LIST**: `DocumentNode` + +Defined in: [src/GraphQl/Queries/Queries.ts:451](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/GraphQl/Queries/Queries.ts#L451) diff --git a/docs/docs/auto-docs/GraphQl/Queries/Queries/variables/CHECK_AUTH.md b/docs/docs/auto-docs/GraphQl/Queries/Queries/variables/CHECK_AUTH.md new file mode 100644 index 0000000000..b0dd5e6675 --- /dev/null +++ b/docs/docs/auto-docs/GraphQl/Queries/Queries/variables/CHECK_AUTH.md @@ -0,0 +1,9 @@ +[Admin Docs](/) + +*** + +# Variable: CHECK\_AUTH + +> `const` **CHECK\_AUTH**: `DocumentNode` + +Defined in: [src/GraphQl/Queries/Queries.ts:5](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/GraphQl/Queries/Queries.ts#L5) diff --git a/docs/docs/auto-docs/GraphQl/Queries/Queries/variables/EVENT_ATTENDEES.md b/docs/docs/auto-docs/GraphQl/Queries/Queries/variables/EVENT_ATTENDEES.md new file mode 100644 index 0000000000..f857411248 --- /dev/null +++ b/docs/docs/auto-docs/GraphQl/Queries/Queries/variables/EVENT_ATTENDEES.md @@ -0,0 +1,9 @@ +[Admin Docs](/) + +*** + +# Variable: EVENT\_ATTENDEES + +> `const` **EVENT\_ATTENDEES**: `DocumentNode` + +Defined in: [src/GraphQl/Queries/Queries.ts:313](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/GraphQl/Queries/Queries.ts#L313) diff --git a/docs/docs/auto-docs/GraphQl/Queries/Queries/variables/EVENT_CHECKINS.md b/docs/docs/auto-docs/GraphQl/Queries/Queries/variables/EVENT_CHECKINS.md new file mode 100644 index 0000000000..527279e314 --- /dev/null +++ b/docs/docs/auto-docs/GraphQl/Queries/Queries/variables/EVENT_CHECKINS.md @@ -0,0 +1,9 @@ +[Admin Docs](/) + +*** + +# Variable: EVENT\_CHECKINS + +> `const` **EVENT\_CHECKINS**: `DocumentNode` + +Defined in: [src/GraphQl/Queries/Queries.ts:341](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/GraphQl/Queries/Queries.ts#L341) diff --git a/docs/docs/auto-docs/GraphQl/Queries/Queries/variables/EVENT_DETAILS.md b/docs/docs/auto-docs/GraphQl/Queries/Queries/variables/EVENT_DETAILS.md new file mode 100644 index 0000000000..7ecf3796f2 --- /dev/null +++ b/docs/docs/auto-docs/GraphQl/Queries/Queries/variables/EVENT_DETAILS.md @@ -0,0 +1,9 @@ +[Admin Docs](/) + +*** + +# Variable: EVENT\_DETAILS + +> `const` **EVENT\_DETAILS**: `DocumentNode` + +Defined in: [src/GraphQl/Queries/Queries.ts:268](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/GraphQl/Queries/Queries.ts#L268) diff --git a/docs/docs/auto-docs/GraphQl/Queries/Queries/variables/EVENT_FEEDBACKS.md b/docs/docs/auto-docs/GraphQl/Queries/Queries/variables/EVENT_FEEDBACKS.md new file mode 100644 index 0000000000..d942f86f14 --- /dev/null +++ b/docs/docs/auto-docs/GraphQl/Queries/Queries/variables/EVENT_FEEDBACKS.md @@ -0,0 +1,9 @@ +[Admin Docs](/) + +*** + +# Variable: EVENT\_FEEDBACKS + +> `const` **EVENT\_FEEDBACKS**: `DocumentNode` + +Defined in: [src/GraphQl/Queries/Queries.ts:361](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/GraphQl/Queries/Queries.ts#L361) diff --git a/docs/docs/auto-docs/GraphQl/Queries/Queries/variables/EVENT_REGISTRANTS.md b/docs/docs/auto-docs/GraphQl/Queries/Queries/variables/EVENT_REGISTRANTS.md new file mode 100644 index 0000000000..4932e00ecd --- /dev/null +++ b/docs/docs/auto-docs/GraphQl/Queries/Queries/variables/EVENT_REGISTRANTS.md @@ -0,0 +1,9 @@ +[Admin Docs](/) + +*** + +# Variable: EVENT\_REGISTRANTS + +> `const` **EVENT\_REGISTRANTS**: `DocumentNode` + +Defined in: [src/GraphQl/Queries/Queries.ts:331](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/GraphQl/Queries/Queries.ts#L331) diff --git a/docs/docs/auto-docs/GraphQl/Queries/Queries/variables/GET_COMMUNITY_DATA.md b/docs/docs/auto-docs/GraphQl/Queries/Queries/variables/GET_COMMUNITY_DATA.md new file mode 100644 index 0000000000..dfa022112f --- /dev/null +++ b/docs/docs/auto-docs/GraphQl/Queries/Queries/variables/GET_COMMUNITY_DATA.md @@ -0,0 +1,9 @@ +[Admin Docs](/) + +*** + +# Variable: GET\_COMMUNITY\_DATA + +> `const` **GET\_COMMUNITY\_DATA**: `DocumentNode` + +Defined in: [src/GraphQl/Queries/Queries.ts:839](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/GraphQl/Queries/Queries.ts#L839) diff --git a/docs/docs/auto-docs/GraphQl/Queries/Queries/variables/GET_COMMUNITY_SESSION_TIMEOUT_DATA.md b/docs/docs/auto-docs/GraphQl/Queries/Queries/variables/GET_COMMUNITY_SESSION_TIMEOUT_DATA.md new file mode 100644 index 0000000000..ca0f778d30 --- /dev/null +++ b/docs/docs/auto-docs/GraphQl/Queries/Queries/variables/GET_COMMUNITY_SESSION_TIMEOUT_DATA.md @@ -0,0 +1,9 @@ +[Admin Docs](/) + +*** + +# Variable: GET\_COMMUNITY\_SESSION\_TIMEOUT\_DATA + +> `const` **GET\_COMMUNITY\_SESSION\_TIMEOUT\_DATA**: `DocumentNode` + +Defined in: [src/GraphQl/Queries/Queries.ts:860](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/GraphQl/Queries/Queries.ts#L860) diff --git a/docs/docs/auto-docs/GraphQl/Queries/Queries/variables/MEMBERSHIP_REQUEST.md b/docs/docs/auto-docs/GraphQl/Queries/Queries/variables/MEMBERSHIP_REQUEST.md new file mode 100644 index 0000000000..ca6dea27b6 --- /dev/null +++ b/docs/docs/auto-docs/GraphQl/Queries/Queries/variables/MEMBERSHIP_REQUEST.md @@ -0,0 +1,9 @@ +[Admin Docs](/) + +*** + +# Variable: MEMBERSHIP\_REQUEST + +> `const` **MEMBERSHIP\_REQUEST**: `DocumentNode` + +Defined in: [src/GraphQl/Queries/Queries.ts:724](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/GraphQl/Queries/Queries.ts#L724) diff --git a/docs/docs/auto-docs/GraphQl/Queries/Queries/variables/MEMBERS_LIST.md b/docs/docs/auto-docs/GraphQl/Queries/Queries/variables/MEMBERS_LIST.md new file mode 100644 index 0000000000..2d2d2009c9 --- /dev/null +++ b/docs/docs/auto-docs/GraphQl/Queries/Queries/variables/MEMBERS_LIST.md @@ -0,0 +1,9 @@ +[Admin Docs](/) + +*** + +# Variable: MEMBERS\_LIST + +> `const` **MEMBERS\_LIST**: `DocumentNode` + +Defined in: [src/GraphQl/Queries/Queries.ts:432](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/GraphQl/Queries/Queries.ts#L432) diff --git a/docs/docs/auto-docs/GraphQl/Queries/Queries/variables/ORGANIZATIONS_LIST.md b/docs/docs/auto-docs/GraphQl/Queries/Queries/variables/ORGANIZATIONS_LIST.md new file mode 100644 index 0000000000..5020620546 --- /dev/null +++ b/docs/docs/auto-docs/GraphQl/Queries/Queries/variables/ORGANIZATIONS_LIST.md @@ -0,0 +1,9 @@ +[Admin Docs](/) + +*** + +# Variable: ORGANIZATIONS\_LIST + +> `const` **ORGANIZATIONS\_LIST**: `DocumentNode` + +Defined in: [src/GraphQl/Queries/Queries.ts:376](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/GraphQl/Queries/Queries.ts#L376) diff --git a/docs/docs/auto-docs/GraphQl/Queries/Queries/variables/ORGANIZATIONS_MEMBER_CONNECTION_LIST.md b/docs/docs/auto-docs/GraphQl/Queries/Queries/variables/ORGANIZATIONS_MEMBER_CONNECTION_LIST.md new file mode 100644 index 0000000000..de643acea7 --- /dev/null +++ b/docs/docs/auto-docs/GraphQl/Queries/Queries/variables/ORGANIZATIONS_MEMBER_CONNECTION_LIST.md @@ -0,0 +1,9 @@ +[Admin Docs](/) + +*** + +# Variable: ORGANIZATIONS\_MEMBER\_CONNECTION\_LIST + +> `const` **ORGANIZATIONS\_MEMBER\_CONNECTION\_LIST**: `DocumentNode` + +Defined in: [src/GraphQl/Queries/Queries.ts:478](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/GraphQl/Queries/Queries.ts#L478) diff --git a/docs/docs/auto-docs/GraphQl/Queries/Queries/variables/ORGANIZATION_CONNECTION_LIST.md b/docs/docs/auto-docs/GraphQl/Queries/Queries/variables/ORGANIZATION_CONNECTION_LIST.md new file mode 100644 index 0000000000..4cf7d71743 --- /dev/null +++ b/docs/docs/auto-docs/GraphQl/Queries/Queries/variables/ORGANIZATION_CONNECTION_LIST.md @@ -0,0 +1,9 @@ +[Admin Docs](/) + +*** + +# Variable: ORGANIZATION\_CONNECTION\_LIST + +> `const` **ORGANIZATION\_CONNECTION\_LIST**: `DocumentNode` + +Defined in: [src/GraphQl/Queries/Queries.ts:67](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/GraphQl/Queries/Queries.ts#L67) diff --git a/docs/docs/auto-docs/GraphQl/Queries/Queries/variables/ORGANIZATION_DONATION_CONNECTION_LIST.md b/docs/docs/auto-docs/GraphQl/Queries/Queries/variables/ORGANIZATION_DONATION_CONNECTION_LIST.md new file mode 100644 index 0000000000..a92ad21e8b --- /dev/null +++ b/docs/docs/auto-docs/GraphQl/Queries/Queries/variables/ORGANIZATION_DONATION_CONNECTION_LIST.md @@ -0,0 +1,9 @@ +[Admin Docs](/) + +*** + +# Variable: ORGANIZATION\_DONATION\_CONNECTION\_LIST + +> `const` **ORGANIZATION\_DONATION\_CONNECTION\_LIST**: `DocumentNode` + +Defined in: [src/GraphQl/Queries/Queries.ts:686](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/GraphQl/Queries/Queries.ts#L686) diff --git a/docs/docs/auto-docs/GraphQl/Queries/Queries/variables/ORGANIZATION_EVENT_CONNECTION_LIST.md b/docs/docs/auto-docs/GraphQl/Queries/Queries/variables/ORGANIZATION_EVENT_CONNECTION_LIST.md new file mode 100644 index 0000000000..55453e119c --- /dev/null +++ b/docs/docs/auto-docs/GraphQl/Queries/Queries/variables/ORGANIZATION_EVENT_CONNECTION_LIST.md @@ -0,0 +1,9 @@ +[Admin Docs](/) + +*** + +# Variable: ORGANIZATION\_EVENT\_CONNECTION\_LIST + +> `const` **ORGANIZATION\_EVENT\_CONNECTION\_LIST**: `DocumentNode` + +Defined in: [src/GraphQl/Queries/Queries.ts:630](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/GraphQl/Queries/Queries.ts#L630) diff --git a/docs/docs/auto-docs/GraphQl/Queries/Queries/variables/ORGANIZATION_EVENT_LIST.md b/docs/docs/auto-docs/GraphQl/Queries/Queries/variables/ORGANIZATION_EVENT_LIST.md new file mode 100644 index 0000000000..e24657b3cc --- /dev/null +++ b/docs/docs/auto-docs/GraphQl/Queries/Queries/variables/ORGANIZATION_EVENT_LIST.md @@ -0,0 +1,9 @@ +[Admin Docs](/) + +*** + +# Variable: ORGANIZATION\_EVENT\_LIST + +> `const` **ORGANIZATION\_EVENT\_LIST**: `DocumentNode` + +Defined in: [src/GraphQl/Queries/Queries.ts:611](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/GraphQl/Queries/Queries.ts#L611) diff --git a/docs/docs/auto-docs/GraphQl/Queries/Queries/variables/ORGANIZATION_LIST.md b/docs/docs/auto-docs/GraphQl/Queries/Queries/variables/ORGANIZATION_LIST.md new file mode 100644 index 0000000000..309091feed --- /dev/null +++ b/docs/docs/auto-docs/GraphQl/Queries/Queries/variables/ORGANIZATION_LIST.md @@ -0,0 +1,9 @@ +[Admin Docs](/) + +*** + +# Variable: ORGANIZATION\_LIST + +> `const` **ORGANIZATION\_LIST**: `DocumentNode` + +Defined in: [src/GraphQl/Queries/Queries.ts:35](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/GraphQl/Queries/Queries.ts#L35) diff --git a/docs/docs/auto-docs/GraphQl/Queries/Queries/variables/RECURRING_EVENTS.md b/docs/docs/auto-docs/GraphQl/Queries/Queries/variables/RECURRING_EVENTS.md new file mode 100644 index 0000000000..024ac66e14 --- /dev/null +++ b/docs/docs/auto-docs/GraphQl/Queries/Queries/variables/RECURRING_EVENTS.md @@ -0,0 +1,9 @@ +[Admin Docs](/) + +*** + +# Variable: RECURRING\_EVENTS + +> `const` **RECURRING\_EVENTS**: `DocumentNode` + +Defined in: [src/GraphQl/Queries/Queries.ts:299](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/GraphQl/Queries/Queries.ts#L299) diff --git a/docs/docs/auto-docs/GraphQl/Queries/Queries/variables/USERS_CONNECTION_LIST.md b/docs/docs/auto-docs/GraphQl/Queries/Queries/variables/USERS_CONNECTION_LIST.md new file mode 100644 index 0000000000..d807e27202 --- /dev/null +++ b/docs/docs/auto-docs/GraphQl/Queries/Queries/variables/USERS_CONNECTION_LIST.md @@ -0,0 +1,9 @@ +[Admin Docs](/) + +*** + +# Variable: USERS\_CONNECTION\_LIST + +> `const` **USERS\_CONNECTION\_LIST**: `DocumentNode` + +Defined in: [src/GraphQl/Queries/Queries.ts:750](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/GraphQl/Queries/Queries.ts#L750) diff --git a/docs/docs/auto-docs/GraphQl/Queries/Queries/variables/USER_DETAILS.md b/docs/docs/auto-docs/GraphQl/Queries/Queries/variables/USER_DETAILS.md new file mode 100644 index 0000000000..57a4d9c64a --- /dev/null +++ b/docs/docs/auto-docs/GraphQl/Queries/Queries/variables/USER_DETAILS.md @@ -0,0 +1,9 @@ +[Admin Docs](/) + +*** + +# Variable: USER\_DETAILS + +> `const` **USER\_DETAILS**: `DocumentNode` + +Defined in: [src/GraphQl/Queries/Queries.ts:522](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/GraphQl/Queries/Queries.ts#L522) diff --git a/docs/docs/auto-docs/GraphQl/Queries/Queries/variables/USER_LIST.md b/docs/docs/auto-docs/GraphQl/Queries/Queries/variables/USER_LIST.md new file mode 100644 index 0000000000..fa8992f915 --- /dev/null +++ b/docs/docs/auto-docs/GraphQl/Queries/Queries/variables/USER_LIST.md @@ -0,0 +1,9 @@ +[Admin Docs](/) + +*** + +# Variable: USER\_LIST + +> `const` **USER\_LIST**: `DocumentNode` + +Defined in: [src/GraphQl/Queries/Queries.ts:109](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/GraphQl/Queries/Queries.ts#L109) diff --git a/docs/docs/auto-docs/GraphQl/Queries/Queries/variables/USER_LIST_FOR_TABLE.md b/docs/docs/auto-docs/GraphQl/Queries/Queries/variables/USER_LIST_FOR_TABLE.md new file mode 100644 index 0000000000..2bfb23f2a6 --- /dev/null +++ b/docs/docs/auto-docs/GraphQl/Queries/Queries/variables/USER_LIST_FOR_TABLE.md @@ -0,0 +1,9 @@ +[Admin Docs](/) + +*** + +# Variable: USER\_LIST\_FOR\_TABLE + +> `const` **USER\_LIST\_FOR\_TABLE**: `DocumentNode` + +Defined in: [src/GraphQl/Queries/Queries.ts:205](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/GraphQl/Queries/Queries.ts#L205) diff --git a/docs/docs/auto-docs/GraphQl/Queries/Queries/variables/USER_LIST_REQUEST.md b/docs/docs/auto-docs/GraphQl/Queries/Queries/variables/USER_LIST_REQUEST.md new file mode 100644 index 0000000000..1334f849fb --- /dev/null +++ b/docs/docs/auto-docs/GraphQl/Queries/Queries/variables/USER_LIST_REQUEST.md @@ -0,0 +1,9 @@ +[Admin Docs](/) + +*** + +# Variable: USER\_LIST\_REQUEST + +> `const` **USER\_LIST\_REQUEST**: `DocumentNode` + +Defined in: [src/GraphQl/Queries/Queries.ts:225](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/GraphQl/Queries/Queries.ts#L225) diff --git a/docs/docs/auto-docs/GraphQl/Queries/Queries/variables/USER_ORGANIZATION_LIST.md b/docs/docs/auto-docs/GraphQl/Queries/Queries/variables/USER_ORGANIZATION_LIST.md new file mode 100644 index 0000000000..93c1570451 --- /dev/null +++ b/docs/docs/auto-docs/GraphQl/Queries/Queries/variables/USER_ORGANIZATION_LIST.md @@ -0,0 +1,9 @@ +[Admin Docs](/) + +*** + +# Variable: USER\_ORGANIZATION\_LIST + +> `const` **USER\_ORGANIZATION\_LIST**: `DocumentNode` + +Defined in: [src/GraphQl/Queries/Queries.ts:508](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/GraphQl/Queries/Queries.ts#L508) diff --git a/docs/docs/auto-docs/GraphQl/Queries/fundQueries/variables/FUND_CAMPAIGN.md b/docs/docs/auto-docs/GraphQl/Queries/fundQueries/variables/FUND_CAMPAIGN.md new file mode 100644 index 0000000000..f444347c06 --- /dev/null +++ b/docs/docs/auto-docs/GraphQl/Queries/fundQueries/variables/FUND_CAMPAIGN.md @@ -0,0 +1,9 @@ +[Admin Docs](/) + +*** + +# Variable: FUND\_CAMPAIGN + +> `const` **FUND\_CAMPAIGN**: `DocumentNode` + +Defined in: [src/GraphQl/Queries/fundQueries.ts:39](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/GraphQl/Queries/fundQueries.ts#L39) diff --git a/docs/docs/auto-docs/GraphQl/Queries/fundQueries/variables/FUND_CAMPAIGN_PLEDGE.md b/docs/docs/auto-docs/GraphQl/Queries/fundQueries/variables/FUND_CAMPAIGN_PLEDGE.md new file mode 100644 index 0000000000..5d6306bb56 --- /dev/null +++ b/docs/docs/auto-docs/GraphQl/Queries/fundQueries/variables/FUND_CAMPAIGN_PLEDGE.md @@ -0,0 +1,9 @@ +[Admin Docs](/) + +*** + +# Variable: FUND\_CAMPAIGN\_PLEDGE + +> `const` **FUND\_CAMPAIGN\_PLEDGE**: `DocumentNode` + +Defined in: [src/GraphQl/Queries/fundQueries.ts:60](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/GraphQl/Queries/fundQueries.ts#L60) diff --git a/docs/docs/auto-docs/GraphQl/Queries/fundQueries/variables/FUND_LIST.md b/docs/docs/auto-docs/GraphQl/Queries/fundQueries/variables/FUND_LIST.md new file mode 100644 index 0000000000..8fbf73968a --- /dev/null +++ b/docs/docs/auto-docs/GraphQl/Queries/fundQueries/variables/FUND_LIST.md @@ -0,0 +1,23 @@ +[Admin Docs](/) + +*** + +# Variable: FUND\_LIST + +> `const` **FUND\_LIST**: `DocumentNode` + +Defined in: [src/GraphQl/Queries/fundQueries.ts:11](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/GraphQl/Queries/fundQueries.ts#L11) + +GraphQL query to retrieve the list of members for a specific organization. + +## Param + +The ID of the organization for which members are being retrieved. + +## Param + +The filter to search for a specific member. + +## Returns + +The list of members associated with the organization. diff --git a/docs/docs/auto-docs/GraphQl/Queries/fundQueries/variables/USER_FUND_CAMPAIGNS.md b/docs/docs/auto-docs/GraphQl/Queries/fundQueries/variables/USER_FUND_CAMPAIGNS.md new file mode 100644 index 0000000000..4523529124 --- /dev/null +++ b/docs/docs/auto-docs/GraphQl/Queries/fundQueries/variables/USER_FUND_CAMPAIGNS.md @@ -0,0 +1,9 @@ +[Admin Docs](/) + +*** + +# Variable: USER\_FUND\_CAMPAIGNS + +> `const` **USER\_FUND\_CAMPAIGNS**: `DocumentNode` + +Defined in: [src/GraphQl/Queries/fundQueries.ts:91](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/GraphQl/Queries/fundQueries.ts#L91) diff --git a/docs/docs/auto-docs/GraphQl/Queries/fundQueries/variables/USER_PLEDGES.md b/docs/docs/auto-docs/GraphQl/Queries/fundQueries/variables/USER_PLEDGES.md new file mode 100644 index 0000000000..74f34b94ce --- /dev/null +++ b/docs/docs/auto-docs/GraphQl/Queries/fundQueries/variables/USER_PLEDGES.md @@ -0,0 +1,9 @@ +[Admin Docs](/) + +*** + +# Variable: USER\_PLEDGES + +> `const` **USER\_PLEDGES**: `DocumentNode` + +Defined in: [src/GraphQl/Queries/fundQueries.ts:107](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/GraphQl/Queries/fundQueries.ts#L107) diff --git a/docs/docs/auto-docs/GraphQl/Queries/userTagQueries/variables/USER_TAGS_ASSIGNED_MEMBERS.md b/docs/docs/auto-docs/GraphQl/Queries/userTagQueries/variables/USER_TAGS_ASSIGNED_MEMBERS.md new file mode 100644 index 0000000000..6c6d9de7ed --- /dev/null +++ b/docs/docs/auto-docs/GraphQl/Queries/userTagQueries/variables/USER_TAGS_ASSIGNED_MEMBERS.md @@ -0,0 +1,19 @@ +[Admin Docs](/) + +*** + +# Variable: USER\_TAGS\_ASSIGNED\_MEMBERS + +> `const` **USER\_TAGS\_ASSIGNED\_MEMBERS**: `DocumentNode` + +Defined in: [src/GraphQl/Queries/userTagQueries.ts:10](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/GraphQl/Queries/userTagQueries.ts#L10) + +GraphQL query to retrieve organization members assigned a certain tag. + +## Param + +The ID of the tag that is assigned. + +## Returns + +The list of organization members. diff --git a/docs/docs/auto-docs/GraphQl/Queries/userTagQueries/variables/USER_TAGS_MEMBERS_TO_ASSIGN_TO.md b/docs/docs/auto-docs/GraphQl/Queries/userTagQueries/variables/USER_TAGS_MEMBERS_TO_ASSIGN_TO.md new file mode 100644 index 0000000000..66ed7d7cb5 --- /dev/null +++ b/docs/docs/auto-docs/GraphQl/Queries/userTagQueries/variables/USER_TAGS_MEMBERS_TO_ASSIGN_TO.md @@ -0,0 +1,19 @@ +[Admin Docs](/) + +*** + +# Variable: USER\_TAGS\_MEMBERS\_TO\_ASSIGN\_TO + +> `const` **USER\_TAGS\_MEMBERS\_TO\_ASSIGN\_TO**: `DocumentNode` + +Defined in: [src/GraphQl/Queries/userTagQueries.ts:119](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/GraphQl/Queries/userTagQueries.ts#L119) + +GraphQL query to retrieve organization members that aren't assigned a certain tag. + +## Param + +The ID of the tag. + +## Returns + +The list of organization members. diff --git a/docs/docs/auto-docs/GraphQl/Queries/userTagQueries/variables/USER_TAG_SUB_TAGS.md b/docs/docs/auto-docs/GraphQl/Queries/userTagQueries/variables/USER_TAG_SUB_TAGS.md new file mode 100644 index 0000000000..3170a66cb6 --- /dev/null +++ b/docs/docs/auto-docs/GraphQl/Queries/userTagQueries/variables/USER_TAG_SUB_TAGS.md @@ -0,0 +1,19 @@ +[Admin Docs](/) + +*** + +# Variable: USER\_TAG\_SUB\_TAGS + +> `const` **USER\_TAG\_SUB\_TAGS**: `DocumentNode` + +Defined in: [src/GraphQl/Queries/userTagQueries.ts:60](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/GraphQl/Queries/userTagQueries.ts#L60) + +GraphQL query to retrieve the sub tags of a certain tag. + +## Param + +The ID of the parent tag. + +## Returns + +The list of sub tags. diff --git a/docs/docs/auto-docs/components/AddOn/AddOn/functions/default.md b/docs/docs/auto-docs/components/AddOn/AddOn/functions/default.md new file mode 100644 index 0000000000..7f5a558090 --- /dev/null +++ b/docs/docs/auto-docs/components/AddOn/AddOn/functions/default.md @@ -0,0 +1,25 @@ +[Admin Docs](/) + +*** + +# Function: default() + +> **default**(`__namedParameters`): `JSX.Element` + +Defined in: [src/components/AddOn/AddOn.tsx:22](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/components/AddOn/AddOn.tsx#L22) + +The AddOn component is used to wrap children within a plugin container. +It also accepts additional properties (`extras` and `name`) to allow for +extensibility and custom naming. + +## Parameters + +### \_\_namedParameters + +`InterfaceAddOnProps` + +## Returns + +`JSX.Element` + +The JSX element representing the AddOn component. diff --git a/docs/docs/auto-docs/components/AddOn/core/AddOnEntry/AddOnEntry/functions/default.md b/docs/docs/auto-docs/components/AddOn/core/AddOnEntry/AddOnEntry/functions/default.md new file mode 100644 index 0000000000..eea1003400 --- /dev/null +++ b/docs/docs/auto-docs/components/AddOn/core/AddOnEntry/AddOnEntry/functions/default.md @@ -0,0 +1,41 @@ +[Admin Docs](/) + +*** + +# Function: default() + +> **default**(`props`): `JSX.Element` + +Defined in: [src/components/AddOn/core/AddOnEntry/AddOnEntry.tsx:46](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/components/AddOn/core/AddOnEntry/AddOnEntry.tsx#L46) + +A React component that represents an add-on entry, displaying its details and allowing installation or uninstallation. + +## Parameters + +### props + +`InterfaceAddOnEntryProps` + +The properties for the component. + +## Returns + +`JSX.Element` + +A JSX element containing the add-on entry. + +## Example + +```tsx + {}} +/> +``` diff --git a/docs/docs/auto-docs/components/AddOn/core/AddOnEntry/AddOnEntryMocks/variables/ADD_ON_ENTRY_MOCK.md b/docs/docs/auto-docs/components/AddOn/core/AddOnEntry/AddOnEntryMocks/variables/ADD_ON_ENTRY_MOCK.md new file mode 100644 index 0000000000..c607759bee --- /dev/null +++ b/docs/docs/auto-docs/components/AddOn/core/AddOnEntry/AddOnEntryMocks/variables/ADD_ON_ENTRY_MOCK.md @@ -0,0 +1,63 @@ +[Admin Docs](/) + +*** + +# Variable: ADD\_ON\_ENTRY\_MOCK + +> `const` **ADD\_ON\_ENTRY\_MOCK**: `object`[] + +Defined in: [src/components/AddOn/core/AddOnEntry/AddOnEntryMocks.ts:13](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/components/AddOn/core/AddOnEntry/AddOnEntryMocks.ts#L13) + +## Type declaration + +### request + +> **request**: `object` + +#### request.query + +> **query**: `DocumentNode` = `UPDATE_INSTALL_STATUS_PLUGIN_MUTATION` + +#### request.variables + +> **variables**: `object` + +#### request.variables.id + +> **id**: `string` = `'1'` + +#### request.variables.orgId + +> **orgId**: `string` = `'undefined'` + +### result + +> **result**: `object` + +#### result.data + +> **data**: `object` + +#### result.data.updatePluginStatus + +> **updatePluginStatus**: `object` = `updatePluginStatus` + +#### result.data.updatePluginStatus.\_id + +> **\_id**: `string` = `'123'` + +#### result.data.updatePluginStatus.pluginCreatedBy + +> **pluginCreatedBy**: `string` = `'John Doe'` + +#### result.data.updatePluginStatus.pluginDesc + +> **pluginDesc**: `string` = `'This is a sample plugin description.'` + +#### result.data.updatePluginStatus.pluginName + +> **pluginName**: `string` = `'Sample Plugin'` + +#### result.data.updatePluginStatus.uninstalledOrgs + +> **uninstalledOrgs**: `any`[] = `[]` diff --git a/docs/docs/auto-docs/components/AddOn/core/AddOnRegister/AddOnRegister/functions/default.md b/docs/docs/auto-docs/components/AddOn/core/AddOnRegister/AddOnRegister/functions/default.md new file mode 100644 index 0000000000..038fdec1ed --- /dev/null +++ b/docs/docs/auto-docs/components/AddOn/core/AddOnRegister/AddOnRegister/functions/default.md @@ -0,0 +1,30 @@ +[Admin Docs](/) + +*** + +# Function: default() + +> **default**(`__namedParameters`): `JSX.Element` + +Defined in: [src/components/AddOn/core/AddOnRegister/AddOnRegister.tsx:38](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/components/AddOn/core/AddOnRegister/AddOnRegister.tsx#L38) + +A React component for registering a new add-on plugin. + +This component: +- Displays a button to open a modal for plugin registration. +- Contains a form in the modal for entering plugin details. +- Uses GraphQL mutation to register the plugin. +- Uses `react-i18next` for localization and `react-toastify` for notifications. +- Redirects to the organization list page if no `orgId` is found in the URL. + +## Parameters + +### \_\_namedParameters + +`InterfaceAddOnRegisterProps` + +## Returns + +`JSX.Element` + +A JSX element containing the button and modal for plugin registration. diff --git a/docs/docs/auto-docs/components/AddOn/core/AddOnStore/AddOnStore/functions/default.md b/docs/docs/auto-docs/components/AddOn/core/AddOnStore/AddOnStore/functions/default.md new file mode 100644 index 0000000000..4390de6c23 --- /dev/null +++ b/docs/docs/auto-docs/components/AddOn/core/AddOnStore/AddOnStore/functions/default.md @@ -0,0 +1,23 @@ +[Admin Docs](/) + +*** + +# Function: default() + +> **default**(): `JSX.Element` + +Defined in: [src/components/AddOn/core/AddOnStore/AddOnStore.tsx:37](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/components/AddOn/core/AddOnStore/AddOnStore.tsx#L37) + +Component for managing and displaying plugins in the store. + +This component: +- Displays a search input and filter options. +- Uses tabs to switch between available and installed plugins. +- Fetches plugins from a GraphQL endpoint and filters them based on search criteria. +- Utilizes Redux store to manage plugin data. + +## Returns + +`JSX.Element` + +A JSX element containing the UI for the add-on store. diff --git a/docs/docs/auto-docs/components/AddOn/support/components/Action/Action/functions/default.md b/docs/docs/auto-docs/components/AddOn/support/components/Action/Action/functions/default.md new file mode 100644 index 0000000000..92f1db7442 --- /dev/null +++ b/docs/docs/auto-docs/components/AddOn/support/components/Action/Action/functions/default.md @@ -0,0 +1,33 @@ +[Admin Docs](/) + +*** + +# Function: default() + +> **default**(`props`): `JSX.Element` + +Defined in: [src/components/AddOn/support/components/Action/Action.tsx:29](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/components/AddOn/support/components/Action/Action.tsx#L29) + +A React component that renders a labeled container for embedded actions. + +## Parameters + +### props + +`InterfaceActionProps` + +The properties for the component. + +## Returns + +`JSX.Element` + +A JSX element containing the label and child elements. + +## Example + +```ts + + + +``` diff --git a/docs/docs/auto-docs/components/AddOn/support/components/MainContent/MainContent/functions/default.md b/docs/docs/auto-docs/components/AddOn/support/components/MainContent/MainContent/functions/default.md new file mode 100644 index 0000000000..aad2177976 --- /dev/null +++ b/docs/docs/auto-docs/components/AddOn/support/components/MainContent/MainContent/functions/default.md @@ -0,0 +1,33 @@ +[Admin Docs](/) + +*** + +# Function: default() + +> **default**(`props`): `JSX.Element` + +Defined in: [src/components/AddOn/support/components/MainContent/MainContent.tsx:25](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/components/AddOn/support/components/MainContent/MainContent.tsx#L25) + +A React component that renders a main content container with additional styles. + +## Parameters + +### props + +`InterfaceMainContentProps` + +The properties for the component. + +## Returns + +`JSX.Element` + +A JSX element containing the main content container with the provided child elements. + +## Example + +```ts + +

Main content goes here

+
+``` diff --git a/docs/docs/auto-docs/components/AddOn/support/components/SidePanel/SidePanel/functions/default.md b/docs/docs/auto-docs/components/AddOn/support/components/SidePanel/SidePanel/functions/default.md new file mode 100644 index 0000000000..ba9edf51d0 --- /dev/null +++ b/docs/docs/auto-docs/components/AddOn/support/components/SidePanel/SidePanel/functions/default.md @@ -0,0 +1,33 @@ +[Admin Docs](/) + +*** + +# Function: default() + +> **default**(`props`): `JSX.Element` + +Defined in: [src/components/AddOn/support/components/SidePanel/SidePanel.tsx:30](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/components/AddOn/support/components/SidePanel/SidePanel.tsx#L30) + +A React component that renders a side panel with an optional collapse state. + +## Parameters + +### props + +`InterfaceSidePanelProps` + +The properties for the component. + +## Returns + +`JSX.Element` + +A JSX element containing the side panel with the provided child elements. + +## Example + +```ts + +

Side panel content

+
+``` diff --git a/docs/docs/auto-docs/components/AddOn/support/services/Plugin.helper/classes/default.md b/docs/docs/auto-docs/components/AddOn/support/services/Plugin.helper/classes/default.md new file mode 100644 index 0000000000..230d9adc8a --- /dev/null +++ b/docs/docs/auto-docs/components/AddOn/support/services/Plugin.helper/classes/default.md @@ -0,0 +1,75 @@ +[Admin Docs](/) + +*** + +# Class: default + +Defined in: [src/components/AddOn/support/services/Plugin.helper.ts:5](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/components/AddOn/support/services/Plugin.helper.ts#L5) + +Helper class for managing plugin-related tasks such as fetching store data, installed plugins, and generating plugin links. + +## Constructors + +### new default() + +> **new default**(): [`default`](default.md) + +#### Returns + +[`default`](default.md) + +## Methods + +### fetchInstalled() + +> **fetchInstalled**(): `Promise`\<`any`\> + +Defined in: [src/components/AddOn/support/services/Plugin.helper.ts:21](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/components/AddOn/support/services/Plugin.helper.ts#L21) + +Fetches the list of installed plugins from a local server. + +#### Returns + +`Promise`\<`any`\> + +A promise that resolves to the installed plugins data in JSON format. + +*** + +### fetchStore() + +> **fetchStore**(): `Promise`\<`any`\> + +Defined in: [src/components/AddOn/support/services/Plugin.helper.ts:11](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/components/AddOn/support/services/Plugin.helper.ts#L11) + +Fetches the store data from a local server. + +#### Returns + +`Promise`\<`any`\> + +A promise that resolves to the store data in JSON format. + +*** + +### generateLinks() + +> **generateLinks**(`plugins`): `object`[] + +Defined in: [src/components/AddOn/support/services/Plugin.helper.ts:32](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/components/AddOn/support/services/Plugin.helper.ts#L32) + +Generates an array of links for the enabled plugins. + +#### Parameters + +##### plugins + +`any`[] + +An array of plugin objects. + +#### Returns + +`object`[] + +An array of objects containing the name and URL of each enabled plugin. diff --git a/docs/docs/auto-docs/components/AddOn/support/services/Render.helper/classes/default.md b/docs/docs/auto-docs/components/AddOn/support/services/Render.helper/classes/default.md new file mode 100644 index 0000000000..1ceeb8febd --- /dev/null +++ b/docs/docs/auto-docs/components/AddOn/support/services/Render.helper/classes/default.md @@ -0,0 +1,17 @@ +[Admin Docs](/) + +*** + +# Class: default + +Defined in: [src/components/AddOn/support/services/Render.helper.ts:1](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/components/AddOn/support/services/Render.helper.ts#L1) + +## Constructors + +### new default() + +> **new default**(): [`default`](default.md) + +#### Returns + +[`default`](default.md) diff --git a/docs/docs/auto-docs/components/AddPeopleToTag/AddPeopleToTag/functions/default.md b/docs/docs/auto-docs/components/AddPeopleToTag/AddPeopleToTag/functions/default.md new file mode 100644 index 0000000000..f51455ab54 --- /dev/null +++ b/docs/docs/auto-docs/components/AddPeopleToTag/AddPeopleToTag/functions/default.md @@ -0,0 +1,29 @@ +[Admin Docs](/) + +*** + +# Function: default() + +> **default**(`props`, `deprecatedLegacyContext`?): `ReactNode` + +Defined in: [src/components/AddPeopleToTag/AddPeopleToTag.tsx:42](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/components/AddPeopleToTag/AddPeopleToTag.tsx#L42) + +## Parameters + +### props + +[`InterfaceAddPeopleToTagProps`](../interfaces/InterfaceAddPeopleToTagProps.md) + +### deprecatedLegacyContext? + +`any` + +**Deprecated** + +**See** + +[React Docs](https://legacy.reactjs.org/docs/legacy-context.html#referencing-context-in-lifecycle-methods) + +## Returns + +`ReactNode` diff --git a/docs/docs/auto-docs/components/AddPeopleToTag/AddPeopleToTag/interfaces/InterfaceAddPeopleToTagProps.md b/docs/docs/auto-docs/components/AddPeopleToTag/AddPeopleToTag/interfaces/InterfaceAddPeopleToTagProps.md new file mode 100644 index 0000000000..5fac8a1a99 --- /dev/null +++ b/docs/docs/auto-docs/components/AddPeopleToTag/AddPeopleToTag/interfaces/InterfaceAddPeopleToTagProps.md @@ -0,0 +1,57 @@ +[Admin Docs](/) + +*** + +# Interface: InterfaceAddPeopleToTagProps + +Defined in: [src/components/AddPeopleToTag/AddPeopleToTag.tsx:28](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/components/AddPeopleToTag/AddPeopleToTag.tsx#L28) + +Props for the `AddPeopleToTag` component. + +## Properties + +### addPeopleToTagModalIsOpen + +> **addPeopleToTagModalIsOpen**: `boolean` + +Defined in: [src/components/AddPeopleToTag/AddPeopleToTag.tsx:29](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/components/AddPeopleToTag/AddPeopleToTag.tsx#L29) + +*** + +### hideAddPeopleToTagModal() + +> **hideAddPeopleToTagModal**: () => `void` + +Defined in: [src/components/AddPeopleToTag/AddPeopleToTag.tsx:30](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/components/AddPeopleToTag/AddPeopleToTag.tsx#L30) + +#### Returns + +`void` + +*** + +### refetchAssignedMembersData() + +> **refetchAssignedMembersData**: () => `void` + +Defined in: [src/components/AddPeopleToTag/AddPeopleToTag.tsx:31](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/components/AddPeopleToTag/AddPeopleToTag.tsx#L31) + +#### Returns + +`void` + +*** + +### t + +> **t**: `TFunction`\<`"manageTag"`\> + +Defined in: [src/components/AddPeopleToTag/AddPeopleToTag.tsx:32](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/components/AddPeopleToTag/AddPeopleToTag.tsx#L32) + +*** + +### tCommon + +> **tCommon**: `TFunction`\<`"common"`\> + +Defined in: [src/components/AddPeopleToTag/AddPeopleToTag.tsx:33](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/components/AddPeopleToTag/AddPeopleToTag.tsx#L33) diff --git a/docs/docs/auto-docs/components/AddPeopleToTag/AddPeopleToTagsMocks/variables/MOCKS.md b/docs/docs/auto-docs/components/AddPeopleToTag/AddPeopleToTagsMocks/variables/MOCKS.md new file mode 100644 index 0000000000..ed3a598dfe --- /dev/null +++ b/docs/docs/auto-docs/components/AddPeopleToTag/AddPeopleToTagsMocks/variables/MOCKS.md @@ -0,0 +1,9 @@ +[Admin Docs](/) + +*** + +# Variable: MOCKS + +> `const` **MOCKS**: (\{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `after`: `undefined`; `first`: `number`; `id`: `string`; `tagId`: `undefined`; `userIds`: `undefined`; `where`: \{ `firstName`: \{ `starts_with`: `string`; \}; `lastName`: \{ `starts_with`: `string`; \}; \}; \}; \}; `result`: \{ `data`: \{ `addPeopleToUserTag`: `undefined`; `getUsersToAssignTo`: \{ `name`: `string`; `usersToAssignTo`: \{ `edges`: `object`[]; `pageInfo`: \{ `endCursor`: `string`; `hasNextPage`: `boolean`; `hasPreviousPage`: `boolean`; `startCursor`: `string`; \}; `totalCount`: `number`; \}; \}; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `after`: `string`; `first`: `number`; `id`: `string`; `tagId`: `undefined`; `userIds`: `undefined`; `where`: \{ `firstName`: \{ `starts_with`: `string`; \}; `lastName`: \{ `starts_with`: `string`; \}; \}; \}; \}; `result`: \{ `data`: \{ `addPeopleToUserTag`: `undefined`; `getUsersToAssignTo`: \{ `name`: `string`; `usersToAssignTo`: \{ `edges`: `object`[]; `pageInfo`: \{ `endCursor`: `string`; `hasNextPage`: `boolean`; `hasPreviousPage`: `boolean`; `startCursor`: `string`; \}; `totalCount`: `number`; \}; \}; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `after`: `undefined`; `first`: `undefined`; `id`: `undefined`; `tagId`: `string`; `userIds`: `string`[]; `where`: `undefined`; \}; \}; `result`: \{ `data`: \{ `addPeopleToUserTag`: \{ `_id`: `string`; \}; `getUsersToAssignTo`: `undefined`; \}; \}; \})[] + +Defined in: [src/components/AddPeopleToTag/AddPeopleToTagsMocks.ts:5](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/components/AddPeopleToTag/AddPeopleToTagsMocks.ts#L5) diff --git a/docs/docs/auto-docs/components/AddPeopleToTag/AddPeopleToTagsMocks/variables/MOCKS_ERROR.md b/docs/docs/auto-docs/components/AddPeopleToTag/AddPeopleToTagsMocks/variables/MOCKS_ERROR.md new file mode 100644 index 0000000000..a410a7e682 --- /dev/null +++ b/docs/docs/auto-docs/components/AddPeopleToTag/AddPeopleToTagsMocks/variables/MOCKS_ERROR.md @@ -0,0 +1,55 @@ +[Admin Docs](/) + +*** + +# Variable: MOCKS\_ERROR + +> `const` **MOCKS\_ERROR**: `object`[] + +Defined in: [src/components/AddPeopleToTag/AddPeopleToTagsMocks.ts:277](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/components/AddPeopleToTag/AddPeopleToTagsMocks.ts#L277) + +## Type declaration + +### error + +> **error**: `Error` + +### request + +> **request**: `object` + +#### request.query + +> **query**: `DocumentNode` = `USER_TAGS_MEMBERS_TO_ASSIGN_TO` + +#### request.variables + +> **variables**: `object` + +#### request.variables.first + +> **first**: `number` = `TAGS_QUERY_DATA_CHUNK_SIZE` + +#### request.variables.id + +> **id**: `string` = `'1'` + +#### request.variables.where + +> **where**: `object` + +#### request.variables.where.firstName + +> **firstName**: `object` + +#### request.variables.where.firstName.starts\_with + +> **starts\_with**: `string` = `''` + +#### request.variables.where.lastName + +> **lastName**: `object` + +#### request.variables.where.lastName.starts\_with + +> **starts\_with**: `string` = `''` diff --git a/docs/docs/auto-docs/components/Advertisements/Advertisements/functions/default.md b/docs/docs/auto-docs/components/Advertisements/Advertisements/functions/default.md new file mode 100644 index 0000000000..733a2afdb3 --- /dev/null +++ b/docs/docs/auto-docs/components/Advertisements/Advertisements/functions/default.md @@ -0,0 +1,13 @@ +[Admin Docs](/) + +*** + +# Function: default() + +> **default**(): `JSX.Element` + +Defined in: [src/components/Advertisements/Advertisements.tsx:14](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/components/Advertisements/Advertisements.tsx#L14) + +## Returns + +`JSX.Element` diff --git a/docs/docs/auto-docs/components/Advertisements/core/AdvertisementEntry/AdvertisementEntry/functions/default.md b/docs/docs/auto-docs/components/Advertisements/core/AdvertisementEntry/AdvertisementEntry/functions/default.md new file mode 100644 index 0000000000..b4aa14453e --- /dev/null +++ b/docs/docs/auto-docs/components/Advertisements/core/AdvertisementEntry/AdvertisementEntry/functions/default.md @@ -0,0 +1,26 @@ +[Admin Docs](/) + +*** + +# Function: default() + +> **default**(`props`): `JSX.Element` + +Defined in: [src/components/Advertisements/core/AdvertisementEntry/AdvertisementEntry.tsx:31](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/components/Advertisements/core/AdvertisementEntry/AdvertisementEntry.tsx#L31) + +Component for displaying an advertisement entry. +Allows viewing, editing, and deleting of the advertisement. + +## Parameters + +### props + +`InterfaceAddOnEntryProps` + +Component properties + +## Returns + +`JSX.Element` + +The rendered component diff --git a/docs/docs/auto-docs/components/Advertisements/core/AdvertisementRegister/AdvertisementRegister/functions/default.md b/docs/docs/auto-docs/components/Advertisements/core/AdvertisementRegister/AdvertisementRegister/functions/default.md new file mode 100644 index 0000000000..f1124ff63f --- /dev/null +++ b/docs/docs/auto-docs/components/Advertisements/core/AdvertisementRegister/AdvertisementRegister/functions/default.md @@ -0,0 +1,34 @@ +[Admin Docs](/) + +*** + +# Function: default() + +> **default**(`props`): `JSX.Element` + +Defined in: [src/components/Advertisements/core/AdvertisementRegister/AdvertisementRegister.tsx:60](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/components/Advertisements/core/AdvertisementRegister/AdvertisementRegister.tsx#L60) + +Component for registering or editing an advertisement. + +## Parameters + +### props + +`InterfaceAddOnRegisterProps` + +Contains form status, advertisement details, and a function to update parent state. + +## Returns + +`JSX.Element` + +A JSX element that renders a form inside a modal for creating or editing an advertisement. + +## Example + +```tsx + console.log(value)} +/> +``` diff --git a/docs/docs/auto-docs/components/AgendaCategory/AgendaCategoryContainer/functions/default.md b/docs/docs/auto-docs/components/AgendaCategory/AgendaCategoryContainer/functions/default.md new file mode 100644 index 0000000000..b42ecd5ba2 --- /dev/null +++ b/docs/docs/auto-docs/components/AgendaCategory/AgendaCategoryContainer/functions/default.md @@ -0,0 +1,45 @@ +[Admin Docs](/) + +*** + +# Function: default() + +> **default**(`props`): `JSX.Element` + +Defined in: [src/components/AgendaCategory/AgendaCategoryContainer.tsx:34](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/components/AgendaCategory/AgendaCategoryContainer.tsx#L34) + +Component for displaying and managing agenda item categories. + +## Parameters + +### props + +Contains agenda category data and functions for data management. + +#### agendaCategoryConnection + +`"Organization"` + +#### agendaCategoryData + +[`InterfaceAgendaItemCategoryInfo`](../../../../utils/interfaces/interfaces/InterfaceAgendaItemCategoryInfo.md)[] + +#### agendaCategoryRefetch + +() => `void` + +## Returns + +`JSX.Element` + +A JSX element that renders agenda item categories with options to preview, edit, and delete. + +## Example + +```tsx + +``` diff --git a/docs/docs/auto-docs/components/AgendaCategory/AgendaCategoryContainerMocks/variables/MOCKS.md b/docs/docs/auto-docs/components/AgendaCategory/AgendaCategoryContainerMocks/variables/MOCKS.md new file mode 100644 index 0000000000..3b34465d8c --- /dev/null +++ b/docs/docs/auto-docs/components/AgendaCategory/AgendaCategoryContainerMocks/variables/MOCKS.md @@ -0,0 +1,9 @@ +[Admin Docs](/) + +*** + +# Variable: MOCKS + +> `const` **MOCKS**: (\{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `deleteAgendaCategoryId`: `undefined`; `input`: \{ `description`: `string`; `name`: `string`; \}; `updateAgendaCategoryId`: `string`; \}; \}; `result`: \{ `data`: \{ `deleteAgendaCategory`: `undefined`; `updateAgendaCategory`: \{ `_id`: `string`; \}; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `deleteAgendaCategoryId`: `string`; `input`: `undefined`; `updateAgendaCategoryId`: `undefined`; \}; \}; `result`: \{ `data`: \{ `deleteAgendaCategory`: \{ `_id`: `string`; \}; `updateAgendaCategory`: `undefined`; \}; \}; \})[] + +Defined in: [src/components/AgendaCategory/AgendaCategoryContainerMocks.ts:6](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/components/AgendaCategory/AgendaCategoryContainerMocks.ts#L6) diff --git a/docs/docs/auto-docs/components/AgendaCategory/AgendaCategoryContainerMocks/variables/MOCKS_ERROR_MUTATIONS.md b/docs/docs/auto-docs/components/AgendaCategory/AgendaCategoryContainerMocks/variables/MOCKS_ERROR_MUTATIONS.md new file mode 100644 index 0000000000..7b651e97e5 --- /dev/null +++ b/docs/docs/auto-docs/components/AgendaCategory/AgendaCategoryContainerMocks/variables/MOCKS_ERROR_MUTATIONS.md @@ -0,0 +1,9 @@ +[Admin Docs](/) + +*** + +# Variable: MOCKS\_ERROR\_MUTATIONS + +> `const` **MOCKS\_ERROR\_MUTATIONS**: (\{ `error`: `Error`; `request`: \{ `query`: `DocumentNode`; `variables`: \{ `deleteAgendaCategoryId`: `undefined`; `input`: \{ `description`: `string`; `name`: `string`; \}; `updateAgendaCategoryId`: `string`; \}; \}; \} \| \{ `error`: `Error`; `request`: \{ `query`: `DocumentNode`; `variables`: \{ `deleteAgendaCategoryId`: `string`; `input`: `undefined`; `updateAgendaCategoryId`: `undefined`; \}; \}; \})[] + +Defined in: [src/components/AgendaCategory/AgendaCategoryContainerMocks.ts:81](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/components/AgendaCategory/AgendaCategoryContainerMocks.ts#L81) diff --git a/docs/docs/auto-docs/components/AgendaCategory/AgendaCategoryContainerProps/variables/props.md b/docs/docs/auto-docs/components/AgendaCategory/AgendaCategoryContainerProps/variables/props.md new file mode 100644 index 0000000000..622743b677 --- /dev/null +++ b/docs/docs/auto-docs/components/AgendaCategory/AgendaCategoryContainerProps/variables/props.md @@ -0,0 +1,23 @@ +[Admin Docs](/) + +*** + +# Variable: props + +> `const` **props**: `object` + +Defined in: [src/components/AgendaCategory/AgendaCategoryContainerProps.ts:4](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/components/AgendaCategory/AgendaCategoryContainerProps.ts#L4) + +## Type declaration + +### agendaCategoryConnection + +> **agendaCategoryConnection**: `"Organization"` + +### agendaCategoryData + +> **agendaCategoryData**: `object`[] + +### agendaCategoryRefetch + +> **agendaCategoryRefetch**: `Mock` diff --git a/docs/docs/auto-docs/components/AgendaCategory/AgendaCategoryContainerProps/variables/props2.md b/docs/docs/auto-docs/components/AgendaCategory/AgendaCategoryContainerProps/variables/props2.md new file mode 100644 index 0000000000..7c0a8d44b6 --- /dev/null +++ b/docs/docs/auto-docs/components/AgendaCategory/AgendaCategoryContainerProps/variables/props2.md @@ -0,0 +1,23 @@ +[Admin Docs](/) + +*** + +# Variable: props2 + +> `const` **props2**: `object` + +Defined in: [src/components/AgendaCategory/AgendaCategoryContainerProps.ts:31](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/components/AgendaCategory/AgendaCategoryContainerProps.ts#L31) + +## Type declaration + +### agendaCategoryConnection + +> **agendaCategoryConnection**: `"Organization"` + +### agendaCategoryData + +> **agendaCategoryData**: `any`[] = `[]` + +### agendaCategoryRefetch + +> **agendaCategoryRefetch**: `Mock` diff --git a/docs/docs/auto-docs/components/AgendaItems/AgendaItemsContainer/functions/default.md b/docs/docs/auto-docs/components/AgendaItems/AgendaItemsContainer/functions/default.md new file mode 100644 index 0000000000..8030de1448 --- /dev/null +++ b/docs/docs/auto-docs/components/AgendaItems/AgendaItemsContainer/functions/default.md @@ -0,0 +1,41 @@ +[Admin Docs](/) + +*** + +# Function: default() + +> **default**(`props`): `JSX.Element` + +Defined in: [src/components/AgendaItems/AgendaItemsContainer.tsx:32](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/components/AgendaItems/AgendaItemsContainer.tsx#L32) + +Component for displaying and managing agenda items. +Supports drag-and-drop functionality, and includes modals for previewing, +updating, and deleting agenda items. + +## Parameters + +### props + +The props for the component. + +#### agendaItemCategories + +[`InterfaceAgendaItemCategoryInfo`](../../../../utils/interfaces/interfaces/InterfaceAgendaItemCategoryInfo.md)[] + +#### agendaItemConnection + +`"Event"` + +#### agendaItemData + +[`InterfaceAgendaItemInfo`](../../../../utils/interfaces/interfaces/InterfaceAgendaItemInfo.md)[] + +#### agendaItemRefetch + +() => `void` + +## Returns + +`JSX.Element` + +JSX.Element diff --git a/docs/docs/auto-docs/components/AgendaItems/AgendaItemsContainerMocks/variables/MOCKS.md b/docs/docs/auto-docs/components/AgendaItems/AgendaItemsContainerMocks/variables/MOCKS.md new file mode 100644 index 0000000000..d9d2e55be6 --- /dev/null +++ b/docs/docs/auto-docs/components/AgendaItems/AgendaItemsContainerMocks/variables/MOCKS.md @@ -0,0 +1,9 @@ +[Admin Docs](/) + +*** + +# Variable: MOCKS + +> `const` **MOCKS**: (\{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `input`: \{ `description`: `string`; `title`: `string`; \}; `removeAgendaItemId`: `undefined`; `updateAgendaItemId`: `string`; \}; \}; `result`: \{ `data`: \{ `removeAgendaItem`: `undefined`; `updateAgendaItem`: \{ `_id`: `string`; \}; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `input`: `undefined`; `removeAgendaItemId`: `string`; `updateAgendaItemId`: `undefined`; \}; \}; `result`: \{ `data`: \{ `removeAgendaItem`: \{ `_id`: `string`; \}; `updateAgendaItem`: `undefined`; \}; \}; \})[] + +Defined in: [src/components/AgendaItems/AgendaItemsContainerMocks.ts:6](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/components/AgendaItems/AgendaItemsContainerMocks.ts#L6) diff --git a/docs/docs/auto-docs/components/AgendaItems/AgendaItemsContainerMocks/variables/MOCKS_ERROR.md b/docs/docs/auto-docs/components/AgendaItems/AgendaItemsContainerMocks/variables/MOCKS_ERROR.md new file mode 100644 index 0000000000..603031287f --- /dev/null +++ b/docs/docs/auto-docs/components/AgendaItems/AgendaItemsContainerMocks/variables/MOCKS_ERROR.md @@ -0,0 +1,9 @@ +[Admin Docs](/) + +*** + +# Variable: MOCKS\_ERROR + +> `const` **MOCKS\_ERROR**: (\{ `error`: `Error`; `request`: \{ `query`: `DocumentNode`; `variables`: \{ `input`: \{ `description`: `string`; `title`: `string`; \}; `removeAgendaItemId`: `undefined`; `updateAgendaItemId`: `string`; \}; \}; \} \| \{ `error`: `Error`; `request`: \{ `query`: `DocumentNode`; `variables`: \{ `input`: `undefined`; `removeAgendaItemId`: `string`; `updateAgendaItemId`: `undefined`; \}; \}; \})[] + +Defined in: [src/components/AgendaItems/AgendaItemsContainerMocks.ts:96](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/components/AgendaItems/AgendaItemsContainerMocks.ts#L96) diff --git a/docs/docs/auto-docs/components/AgendaItems/AgendaItemsContainerProps/variables/props.md b/docs/docs/auto-docs/components/AgendaItems/AgendaItemsContainerProps/variables/props.md new file mode 100644 index 0000000000..732c2f2109 --- /dev/null +++ b/docs/docs/auto-docs/components/AgendaItems/AgendaItemsContainerProps/variables/props.md @@ -0,0 +1,27 @@ +[Admin Docs](/) + +*** + +# Variable: props + +> `const` **props**: `object` + +Defined in: [src/components/AgendaItems/AgendaItemsContainerProps.ts:4](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/components/AgendaItems/AgendaItemsContainerProps.ts#L4) + +## Type declaration + +### agendaItemCategories + +> **agendaItemCategories**: `object`[] + +### agendaItemConnection + +> **agendaItemConnection**: `"Event"` + +### agendaItemData + +> **agendaItemData**: `object`[] + +### agendaItemRefetch + +> **agendaItemRefetch**: `Mock` diff --git a/docs/docs/auto-docs/components/AgendaItems/AgendaItemsContainerProps/variables/props2.md b/docs/docs/auto-docs/components/AgendaItems/AgendaItemsContainerProps/variables/props2.md new file mode 100644 index 0000000000..79e6ad376b --- /dev/null +++ b/docs/docs/auto-docs/components/AgendaItems/AgendaItemsContainerProps/variables/props2.md @@ -0,0 +1,27 @@ +[Admin Docs](/) + +*** + +# Variable: props2 + +> `const` **props2**: `object` + +Defined in: [src/components/AgendaItems/AgendaItemsContainerProps.ts:97](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/components/AgendaItems/AgendaItemsContainerProps.ts#L97) + +## Type declaration + +### agendaItemCategories + +> **agendaItemCategories**: `any`[] = `[]` + +### agendaItemConnection + +> **agendaItemConnection**: `"Event"` + +### agendaItemData + +> **agendaItemData**: `any`[] = `[]` + +### agendaItemRefetch + +> **agendaItemRefetch**: `Mock` diff --git a/docs/docs/auto-docs/components/AgendaItems/AgendaItemsCreateModal/functions/default.md b/docs/docs/auto-docs/components/AgendaItems/AgendaItemsCreateModal/functions/default.md new file mode 100644 index 0000000000..2889d14782 --- /dev/null +++ b/docs/docs/auto-docs/components/AgendaItems/AgendaItemsCreateModal/functions/default.md @@ -0,0 +1,32 @@ +[Admin Docs](/) + +*** + +# Function: default() + +> **default**(`props`, `deprecatedLegacyContext`?): `ReactNode` + +Defined in: [src/components/AgendaItems/AgendaItemsCreateModal.tsx:43](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/components/AgendaItems/AgendaItemsCreateModal.tsx#L43) + +Component for creating a new agenda item. +Displays a modal form where users can input details for a new agenda item, including title, description, duration, categories, URLs, and attachments. + +## Parameters + +### props + +`InterfaceAgendaItemsCreateModalProps` + +### deprecatedLegacyContext? + +`any` + +**Deprecated** + +**See** + +[React Docs](https://legacy.reactjs.org/docs/legacy-context.html#referencing-context-in-lifecycle-methods) + +## Returns + +`ReactNode` diff --git a/docs/docs/auto-docs/components/AgendaItems/AgendaItemsDeleteModal/functions/default.md b/docs/docs/auto-docs/components/AgendaItems/AgendaItemsDeleteModal/functions/default.md new file mode 100644 index 0000000000..13fe6c404a --- /dev/null +++ b/docs/docs/auto-docs/components/AgendaItems/AgendaItemsDeleteModal/functions/default.md @@ -0,0 +1,32 @@ +[Admin Docs](/) + +*** + +# Function: default() + +> **default**(`props`, `deprecatedLegacyContext`?): `ReactNode` + +Defined in: [src/components/AgendaItems/AgendaItemsDeleteModal.tsx:23](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/components/AgendaItems/AgendaItemsDeleteModal.tsx#L23) + +Modal component for confirming the deletion of an agenda item. +Displays a confirmation dialog when a user attempts to delete an agenda item. + +## Parameters + +### props + +`InterfaceAgendaItemsDeleteModalProps` + +### deprecatedLegacyContext? + +`any` + +**Deprecated** + +**See** + +[React Docs](https://legacy.reactjs.org/docs/legacy-context.html#referencing-context-in-lifecycle-methods) + +## Returns + +`ReactNode` diff --git a/docs/docs/auto-docs/components/AgendaItems/AgendaItemsPreviewModal/functions/default.md b/docs/docs/auto-docs/components/AgendaItems/AgendaItemsPreviewModal/functions/default.md new file mode 100644 index 0000000000..ded1874381 --- /dev/null +++ b/docs/docs/auto-docs/components/AgendaItems/AgendaItemsPreviewModal/functions/default.md @@ -0,0 +1,33 @@ +[Admin Docs](/) + +*** + +# Function: default() + +> **default**(`props`, `deprecatedLegacyContext`?): `ReactNode` + +Defined in: [src/components/AgendaItems/AgendaItemsPreviewModal.tsx:41](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/components/AgendaItems/AgendaItemsPreviewModal.tsx#L41) + +Modal component for previewing details of an agenda item. +Displays the details of the selected agenda item, including its categories, title, description, duration, creator, URLs, and attachments. +Also provides options to update or delete the agenda item. + +## Parameters + +### props + +`InterfaceAgendaItemsPreviewModalProps` + +### deprecatedLegacyContext? + +`any` + +**Deprecated** + +**See** + +[React Docs](https://legacy.reactjs.org/docs/legacy-context.html#referencing-context-in-lifecycle-methods) + +## Returns + +`ReactNode` diff --git a/docs/docs/auto-docs/components/AgendaItems/AgendaItemsUpdateModal/functions/default.md b/docs/docs/auto-docs/components/AgendaItems/AgendaItemsUpdateModal/functions/default.md new file mode 100644 index 0000000000..e18f9a25fb --- /dev/null +++ b/docs/docs/auto-docs/components/AgendaItems/AgendaItemsUpdateModal/functions/default.md @@ -0,0 +1,33 @@ +[Admin Docs](/) + +*** + +# Function: default() + +> **default**(`props`, `deprecatedLegacyContext`?): `ReactNode` + +Defined in: [src/components/AgendaItems/AgendaItemsUpdateModal.tsx:49](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/components/AgendaItems/AgendaItemsUpdateModal.tsx#L49) + +Modal component for updating details of an agenda item. +Provides a form to update the agenda item's title, description, duration, categories, URLs, and attachments. +Also includes functionality to add, remove URLs and attachments. + +## Parameters + +### props + +`InterfaceAgendaItemsUpdateModalProps` + +### deprecatedLegacyContext? + +`any` + +**Deprecated** + +**See** + +[React Docs](https://legacy.reactjs.org/docs/legacy-context.html#referencing-context-in-lifecycle-methods) + +## Returns + +`ReactNode` diff --git a/docs/docs/auto-docs/components/Avatar/Avatar/functions/default.md b/docs/docs/auto-docs/components/Avatar/Avatar/functions/default.md new file mode 100644 index 0000000000..6b3e406276 --- /dev/null +++ b/docs/docs/auto-docs/components/Avatar/Avatar/functions/default.md @@ -0,0 +1,24 @@ +[Admin Docs](/) + +*** + +# Function: default() + +> **default**(`__namedParameters`): `Element` + +Defined in: [src/components/Avatar/Avatar.tsx:29](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/components/Avatar/Avatar.tsx#L29) + +A component that generates and displays an avatar based on the provided name. +The avatar is generated using the DiceBear library with the initials style. + +## Parameters + +### \_\_namedParameters + +`InterfaceAvatarProps` + +## Returns + +`Element` + +JSX.Element - The rendered avatar image component. diff --git a/docs/docs/auto-docs/components/ChangeLanguageDropdown/ChangeLanguageDropDown/functions/default.md b/docs/docs/auto-docs/components/ChangeLanguageDropdown/ChangeLanguageDropDown/functions/default.md new file mode 100644 index 0000000000..705e9c8ad6 --- /dev/null +++ b/docs/docs/auto-docs/components/ChangeLanguageDropdown/ChangeLanguageDropDown/functions/default.md @@ -0,0 +1,26 @@ +[Admin Docs](/) + +*** + +# Function: default() + +> **default**(`props`): `Element` + +Defined in: [src/components/ChangeLanguageDropdown/ChangeLanguageDropDown.tsx:29](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/components/ChangeLanguageDropdown/ChangeLanguageDropDown.tsx#L29) + +A dropdown component that allows users to change the application's language. +It updates the user's language preference in the backend and stores the selection in cookies. + +## Parameters + +### props + +`InterfaceChangeLanguageDropDownProps` + +The properties for customizing the dropdown component. + +## Returns + +`Element` + +JSX.Element - The rendered dropdown component for changing languages. diff --git a/docs/docs/auto-docs/components/CheckIn/CheckInModal/functions/CheckInModal.md b/docs/docs/auto-docs/components/CheckIn/CheckInModal/functions/CheckInModal.md new file mode 100644 index 0000000000..fc27a1dfee --- /dev/null +++ b/docs/docs/auto-docs/components/CheckIn/CheckInModal/functions/CheckInModal.md @@ -0,0 +1,24 @@ +[Admin Docs](/) + +*** + +# Function: CheckInModal() + +> **CheckInModal**(`__namedParameters`): `Element` + +Defined in: [src/components/CheckIn/CheckInModal.tsx:26](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/components/CheckIn/CheckInModal.tsx#L26) + +Modal component for managing event check-ins. Displays a list of attendees +and their check-in statuses, allowing for filtering by user name. + +## Parameters + +### \_\_namedParameters + +[`InterfaceModalProp`](../../types/interfaces/InterfaceModalProp.md) + +## Returns + +`Element` + +JSX.Element - The rendered modal component. diff --git a/docs/docs/auto-docs/components/CheckIn/CheckInWrapper/functions/CheckInWrapper.md b/docs/docs/auto-docs/components/CheckIn/CheckInWrapper/functions/CheckInWrapper.md new file mode 100644 index 0000000000..f978aa0b30 --- /dev/null +++ b/docs/docs/auto-docs/components/CheckIn/CheckInWrapper/functions/CheckInWrapper.md @@ -0,0 +1,25 @@ +[Admin Docs](/) + +*** + +# Function: CheckInWrapper() + +> **CheckInWrapper**(`eventId`): `Element` + +Defined in: [src/components/CheckIn/CheckInWrapper.tsx:17](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/components/CheckIn/CheckInWrapper.tsx#L17) + +Wrapper component that displays a button to open the CheckInModal. + +## Parameters + +### eventId + +`PropType` + +The ID of the event for which check-in management is being handled. + +## Returns + +`Element` + +JSX.Element - The rendered CheckInWrapper component. diff --git a/docs/docs/auto-docs/components/CheckIn/TableRow/functions/TableRow.md b/docs/docs/auto-docs/components/CheckIn/TableRow/functions/TableRow.md new file mode 100644 index 0000000000..647156b0b4 --- /dev/null +++ b/docs/docs/auto-docs/components/CheckIn/TableRow/functions/TableRow.md @@ -0,0 +1,30 @@ +[Admin Docs](/) + +*** + +# Function: TableRow() + +> **TableRow**(`__namedParameters`): `Element` + +Defined in: [src/components/CheckIn/TableRow.tsx:19](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/components/CheckIn/TableRow.tsx#L19) + +Component that represents a single row in the check-in table. +Allows users to mark themselves as checked in and download a tag if they are already checked in. + +## Parameters + +### \_\_namedParameters + +#### data + +[`InterfaceTableCheckIn`](../../types/interfaces/InterfaceTableCheckIn.md) + +#### refetch + +() => `void` + +## Returns + +`Element` + +JSX.Element - The rendered TableRow component. diff --git a/docs/docs/auto-docs/components/CheckIn/mocks/variables/checkInMutationSuccess.md b/docs/docs/auto-docs/components/CheckIn/mocks/variables/checkInMutationSuccess.md new file mode 100644 index 0000000000..c44b89433d --- /dev/null +++ b/docs/docs/auto-docs/components/CheckIn/mocks/variables/checkInMutationSuccess.md @@ -0,0 +1,47 @@ +[Admin Docs](/) + +*** + +# Variable: checkInMutationSuccess + +> `const` **checkInMutationSuccess**: `object`[] + +Defined in: [src/components/CheckIn/mocks.ts:46](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/components/CheckIn/mocks.ts#L46) + +## Type declaration + +### request + +> **request**: `object` + +#### request.query + +> **query**: `DocumentNode` = `MARK_CHECKIN` + +#### request.variables + +> **variables**: `object` + +#### request.variables.eventId + +> **eventId**: `string` = `'event123'` + +#### request.variables.userId + +> **userId**: `string` = `'user123'` + +### result + +> **result**: `object` + +#### result.data + +> **data**: `object` + +#### result.data.checkIn + +> **checkIn**: `object` + +#### result.data.checkIn.\_id + +> **\_id**: `string` = `'123'` diff --git a/docs/docs/auto-docs/components/CheckIn/mocks/variables/checkInMutationUnsuccess.md b/docs/docs/auto-docs/components/CheckIn/mocks/variables/checkInMutationUnsuccess.md new file mode 100644 index 0000000000..32331123b9 --- /dev/null +++ b/docs/docs/auto-docs/components/CheckIn/mocks/variables/checkInMutationUnsuccess.md @@ -0,0 +1,35 @@ +[Admin Docs](/) + +*** + +# Variable: checkInMutationUnsuccess + +> `const` **checkInMutationUnsuccess**: `object`[] + +Defined in: [src/components/CheckIn/mocks.ts:65](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/components/CheckIn/mocks.ts#L65) + +## Type declaration + +### error + +> **error**: `Error` + +### request + +> **request**: `object` + +#### request.query + +> **query**: `DocumentNode` = `MARK_CHECKIN` + +#### request.variables + +> **variables**: `object` + +#### request.variables.eventId + +> **eventId**: `string` = `'event123'` + +#### request.variables.userId + +> **userId**: `string` = `'user123'` diff --git a/docs/docs/auto-docs/components/CheckIn/mocks/variables/checkInQueryMock.md b/docs/docs/auto-docs/components/CheckIn/mocks/variables/checkInQueryMock.md new file mode 100644 index 0000000000..e0c1adc90d --- /dev/null +++ b/docs/docs/auto-docs/components/CheckIn/mocks/variables/checkInQueryMock.md @@ -0,0 +1,35 @@ +[Admin Docs](/) + +*** + +# Variable: checkInQueryMock + +> `const` **checkInQueryMock**: `object`[] + +Defined in: [src/components/CheckIn/mocks.ts:34](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/components/CheckIn/mocks.ts#L34) + +## Type declaration + +### request + +> **request**: `object` + +#### request.query + +> **query**: `DocumentNode` = `EVENT_CHECKINS` + +#### request.variables + +> **variables**: `object` + +#### request.variables.id + +> **id**: `string` = `'event123'` + +### result + +> **result**: `object` + +#### result.data + +> **data**: [`InterfaceAttendeeQueryResponse`](../../types/interfaces/InterfaceAttendeeQueryResponse.md) = `checkInQueryData` diff --git a/docs/docs/auto-docs/components/CheckIn/tagTemplate/variables/tagTemplate.md b/docs/docs/auto-docs/components/CheckIn/tagTemplate/variables/tagTemplate.md new file mode 100644 index 0000000000..298582106f --- /dev/null +++ b/docs/docs/auto-docs/components/CheckIn/tagTemplate/variables/tagTemplate.md @@ -0,0 +1,9 @@ +[Admin Docs](/) + +*** + +# Variable: tagTemplate + +> `const` **tagTemplate**: `Template` + +Defined in: [src/components/CheckIn/tagTemplate.ts:4](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/components/CheckIn/tagTemplate.ts#L4) diff --git a/docs/docs/auto-docs/components/CheckIn/types/interfaces/InterfaceAttendeeCheckIn.md b/docs/docs/auto-docs/components/CheckIn/types/interfaces/InterfaceAttendeeCheckIn.md new file mode 100644 index 0000000000..21bd014820 --- /dev/null +++ b/docs/docs/auto-docs/components/CheckIn/types/interfaces/InterfaceAttendeeCheckIn.md @@ -0,0 +1,39 @@ +[Admin Docs](/) + +*** + +# Interface: InterfaceAttendeeCheckIn + +Defined in: [src/components/CheckIn/types.ts:7](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/components/CheckIn/types.ts#L7) + +## Properties + +### \_id + +> **\_id**: `string` + +Defined in: [src/components/CheckIn/types.ts:8](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/components/CheckIn/types.ts#L8) + +*** + +### checkIn + +> **checkIn**: `object` + +Defined in: [src/components/CheckIn/types.ts:10](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/components/CheckIn/types.ts#L10) + +#### \_id + +> **\_id**: `string` + +#### time + +> **time**: `string` + +*** + +### user + +> **user**: [`InterfaceUser`](InterfaceUser.md) + +Defined in: [src/components/CheckIn/types.ts:9](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/components/CheckIn/types.ts#L9) diff --git a/docs/docs/auto-docs/components/CheckIn/types/interfaces/InterfaceAttendeeQueryResponse.md b/docs/docs/auto-docs/components/CheckIn/types/interfaces/InterfaceAttendeeQueryResponse.md new file mode 100644 index 0000000000..d4bb9ce167 --- /dev/null +++ b/docs/docs/auto-docs/components/CheckIn/types/interfaces/InterfaceAttendeeQueryResponse.md @@ -0,0 +1,23 @@ +[Admin Docs](/) + +*** + +# Interface: InterfaceAttendeeQueryResponse + +Defined in: [src/components/CheckIn/types.ts:16](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/components/CheckIn/types.ts#L16) + +## Properties + +### event + +> **event**: `object` + +Defined in: [src/components/CheckIn/types.ts:17](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/components/CheckIn/types.ts#L17) + +#### \_id + +> **\_id**: `string` + +#### attendeesCheckInStatus + +> **attendeesCheckInStatus**: [`InterfaceAttendeeCheckIn`](InterfaceAttendeeCheckIn.md)[] diff --git a/docs/docs/auto-docs/components/CheckIn/types/interfaces/InterfaceModalProp.md b/docs/docs/auto-docs/components/CheckIn/types/interfaces/InterfaceModalProp.md new file mode 100644 index 0000000000..92da83aeaf --- /dev/null +++ b/docs/docs/auto-docs/components/CheckIn/types/interfaces/InterfaceModalProp.md @@ -0,0 +1,35 @@ +[Admin Docs](/) + +*** + +# Interface: InterfaceModalProp + +Defined in: [src/components/CheckIn/types.ts:23](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/components/CheckIn/types.ts#L23) + +## Properties + +### eventId + +> **eventId**: `string` + +Defined in: [src/components/CheckIn/types.ts:25](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/components/CheckIn/types.ts#L25) + +*** + +### handleClose() + +> **handleClose**: () => `void` + +Defined in: [src/components/CheckIn/types.ts:26](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/components/CheckIn/types.ts#L26) + +#### Returns + +`void` + +*** + +### show + +> **show**: `boolean` + +Defined in: [src/components/CheckIn/types.ts:24](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/components/CheckIn/types.ts#L24) diff --git a/docs/docs/auto-docs/components/CheckIn/types/interfaces/InterfaceTableCheckIn.md b/docs/docs/auto-docs/components/CheckIn/types/interfaces/InterfaceTableCheckIn.md new file mode 100644 index 0000000000..132a4e623b --- /dev/null +++ b/docs/docs/auto-docs/components/CheckIn/types/interfaces/InterfaceTableCheckIn.md @@ -0,0 +1,55 @@ +[Admin Docs](/) + +*** + +# Interface: InterfaceTableCheckIn + +Defined in: [src/components/CheckIn/types.ts:29](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/components/CheckIn/types.ts#L29) + +## Properties + +### checkIn + +> **checkIn**: `object` + +Defined in: [src/components/CheckIn/types.ts:33](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/components/CheckIn/types.ts#L33) + +#### \_id + +> **\_id**: `string` + +#### time + +> **time**: `string` + +*** + +### eventId + +> **eventId**: `string` + +Defined in: [src/components/CheckIn/types.ts:37](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/components/CheckIn/types.ts#L37) + +*** + +### id + +> **id**: `string` + +Defined in: [src/components/CheckIn/types.ts:30](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/components/CheckIn/types.ts#L30) + +*** + +### name + +> **name**: `string` + +Defined in: [src/components/CheckIn/types.ts:31](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/components/CheckIn/types.ts#L31) + +*** + +### userId + +> **userId**: `string` + +Defined in: [src/components/CheckIn/types.ts:32](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/components/CheckIn/types.ts#L32) diff --git a/docs/docs/auto-docs/components/CheckIn/types/interfaces/InterfaceTableData.md b/docs/docs/auto-docs/components/CheckIn/types/interfaces/InterfaceTableData.md new file mode 100644 index 0000000000..e7322dec2f --- /dev/null +++ b/docs/docs/auto-docs/components/CheckIn/types/interfaces/InterfaceTableData.md @@ -0,0 +1,31 @@ +[Admin Docs](/) + +*** + +# Interface: InterfaceTableData + +Defined in: [src/components/CheckIn/types.ts:40](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/components/CheckIn/types.ts#L40) + +## Properties + +### checkInData + +> **checkInData**: [`InterfaceTableCheckIn`](InterfaceTableCheckIn.md) + +Defined in: [src/components/CheckIn/types.ts:43](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/components/CheckIn/types.ts#L43) + +*** + +### id + +> **id**: `string` + +Defined in: [src/components/CheckIn/types.ts:42](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/components/CheckIn/types.ts#L42) + +*** + +### userName + +> **userName**: `string` + +Defined in: [src/components/CheckIn/types.ts:41](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/components/CheckIn/types.ts#L41) diff --git a/docs/docs/auto-docs/components/CheckIn/types/interfaces/InterfaceUser.md b/docs/docs/auto-docs/components/CheckIn/types/interfaces/InterfaceUser.md new file mode 100644 index 0000000000..77ee3d2bb4 --- /dev/null +++ b/docs/docs/auto-docs/components/CheckIn/types/interfaces/InterfaceUser.md @@ -0,0 +1,31 @@ +[Admin Docs](/) + +*** + +# Interface: InterfaceUser + +Defined in: [src/components/CheckIn/types.ts:1](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/components/CheckIn/types.ts#L1) + +## Properties + +### \_id + +> **\_id**: `string` + +Defined in: [src/components/CheckIn/types.ts:2](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/components/CheckIn/types.ts#L2) + +*** + +### firstName + +> **firstName**: `string` + +Defined in: [src/components/CheckIn/types.ts:3](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/components/CheckIn/types.ts#L3) + +*** + +### lastName + +> **lastName**: `string` + +Defined in: [src/components/CheckIn/types.ts:4](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/components/CheckIn/types.ts#L4) diff --git a/docs/docs/auto-docs/components/CollapsibleDropdown/CollapsibleDropdown/functions/default.md b/docs/docs/auto-docs/components/CollapsibleDropdown/CollapsibleDropdown/functions/default.md new file mode 100644 index 0000000000..3b92a78ff3 --- /dev/null +++ b/docs/docs/auto-docs/components/CollapsibleDropdown/CollapsibleDropdown/functions/default.md @@ -0,0 +1,23 @@ +[Admin Docs](/) + +*** + +# Function: default() + +> **default**(`__namedParameters`): `Element` + +Defined in: [src/components/CollapsibleDropdown/CollapsibleDropdown.tsx:24](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/components/CollapsibleDropdown/CollapsibleDropdown.tsx#L24) + +A collapsible dropdown component that toggles visibility of sub-targets. + +## Parameters + +### \_\_namedParameters + +[`InterfaceCollapsibleDropdown`](../interfaces/InterfaceCollapsibleDropdown.md) + +## Returns + +`Element` + +JSX.Element - The rendered CollapsibleDropdown component. diff --git a/docs/docs/auto-docs/components/CollapsibleDropdown/CollapsibleDropdown/interfaces/InterfaceCollapsibleDropdown.md b/docs/docs/auto-docs/components/CollapsibleDropdown/CollapsibleDropdown/interfaces/InterfaceCollapsibleDropdown.md new file mode 100644 index 0000000000..75f0b3c38a --- /dev/null +++ b/docs/docs/auto-docs/components/CollapsibleDropdown/CollapsibleDropdown/interfaces/InterfaceCollapsibleDropdown.md @@ -0,0 +1,31 @@ +[Admin Docs](/) + +*** + +# Interface: InterfaceCollapsibleDropdown + +Defined in: [src/components/CollapsibleDropdown/CollapsibleDropdown.tsx:9](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/components/CollapsibleDropdown/CollapsibleDropdown.tsx#L9) + +## Properties + +### setShowDropdown + +> **setShowDropdown**: `Dispatch`\<`SetStateAction`\<`boolean`\>\> + +Defined in: [src/components/CollapsibleDropdown/CollapsibleDropdown.tsx:12](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/components/CollapsibleDropdown/CollapsibleDropdown.tsx#L12) + +*** + +### showDropdown + +> **showDropdown**: `boolean` + +Defined in: [src/components/CollapsibleDropdown/CollapsibleDropdown.tsx:10](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/components/CollapsibleDropdown/CollapsibleDropdown.tsx#L10) + +*** + +### target + +> **target**: [`TargetsType`](../../../../state/reducers/routesReducer/type-aliases/TargetsType.md) + +Defined in: [src/components/CollapsibleDropdown/CollapsibleDropdown.tsx:11](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/components/CollapsibleDropdown/CollapsibleDropdown.tsx#L11) diff --git a/docs/docs/auto-docs/components/ContriStats/ContriStats/functions/default.md b/docs/docs/auto-docs/components/ContriStats/ContriStats/functions/default.md new file mode 100644 index 0000000000..e40106f4f1 --- /dev/null +++ b/docs/docs/auto-docs/components/ContriStats/ContriStats/functions/default.md @@ -0,0 +1,23 @@ +[Admin Docs](/) + +*** + +# Function: default() + +> **default**(`__namedParameters`): `JSX.Element` + +Defined in: [src/components/ContriStats/ContriStats.tsx:22](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/components/ContriStats/ContriStats.tsx#L22) + +A component that displays contribution statistics. + +## Parameters + +### \_\_namedParameters + +`InterfaceContriStatsProps` + +## Returns + +`JSX.Element` + +JSX.Element - The rendered component displaying the contribution stats. diff --git a/docs/docs/auto-docs/components/CurrentHourIndicator/CurrentHourIndicator/functions/default.md b/docs/docs/auto-docs/components/CurrentHourIndicator/CurrentHourIndicator/functions/default.md new file mode 100644 index 0000000000..c1c14a45ca --- /dev/null +++ b/docs/docs/auto-docs/components/CurrentHourIndicator/CurrentHourIndicator/functions/default.md @@ -0,0 +1,17 @@ +[Admin Docs](/) + +*** + +# Function: default() + +> **default**(): `Element` + +Defined in: [src/components/CurrentHourIndicator/CurrentHourIndicator.tsx:9](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/components/CurrentHourIndicator/CurrentHourIndicator.tsx#L9) + +A component that displays an indicator for the current hour. + +## Returns + +`Element` + +JSX.Element - The rendered component showing the current hour indicator. diff --git a/docs/docs/auto-docs/components/DynamicDropDown/DynamicDropDown/functions/default.md b/docs/docs/auto-docs/components/DynamicDropDown/DynamicDropDown/functions/default.md new file mode 100644 index 0000000000..f80b7f929b --- /dev/null +++ b/docs/docs/auto-docs/components/DynamicDropDown/DynamicDropDown/functions/default.md @@ -0,0 +1,30 @@ +[Admin Docs](/) + +*** + +# Function: default() + +> **default**\<`T`\>(`__namedParameters`): `Element` + +Defined in: [src/components/DynamicDropDown/DynamicDropDown.tsx:34](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/components/DynamicDropDown/DynamicDropDown.tsx#L34) + +A dynamic dropdown component that allows users to select an option. + +This component renders a dropdown with a toggle button. Clicking the button +opens a menu with options. When an option is selected, it updates the form state. + +## Type Parameters + +• **T** *extends* `Record`\<`string`, `unknown`\> + +## Parameters + +### \_\_namedParameters + +`InterfaceChangeDropDownProps`\<`T`\> + +## Returns + +`Element` + +JSX.Element - The rendered dropdown component. diff --git a/docs/docs/auto-docs/components/EditCustomFieldDropDown/EditCustomFieldDropDown/functions/default.md b/docs/docs/auto-docs/components/EditCustomFieldDropDown/EditCustomFieldDropDown/functions/default.md new file mode 100644 index 0000000000..36a77f4f1c --- /dev/null +++ b/docs/docs/auto-docs/components/EditCustomFieldDropDown/EditCustomFieldDropDown/functions/default.md @@ -0,0 +1,27 @@ +[Admin Docs](/) + +*** + +# Function: default() + +> **default**(`__namedParameters`): `Element` + +Defined in: [src/components/EditCustomFieldDropDown/EditCustomFieldDropDown.tsx:33](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/components/EditCustomFieldDropDown/EditCustomFieldDropDown.tsx#L33) + +A dropdown component for editing custom field types. + +This component displays a dropdown menu that allows users to select a custom field type. +It shows the current type of the field and provides a list of available types to choose from. +When a new type is selected, it updates the custom field data. + +## Parameters + +### \_\_namedParameters + +`InterfaceEditCustomFieldDropDownProps` + +## Returns + +`Element` + +JSX.Element - The rendered dropdown component. diff --git a/docs/docs/auto-docs/components/EventCalendar/EventCalendar/functions/default.md b/docs/docs/auto-docs/components/EventCalendar/EventCalendar/functions/default.md new file mode 100644 index 0000000000..a99c816dc8 --- /dev/null +++ b/docs/docs/auto-docs/components/EventCalendar/EventCalendar/functions/default.md @@ -0,0 +1,29 @@ +[Admin Docs](/) + +*** + +# Function: default() + +> **default**(`props`, `deprecatedLegacyContext`?): `ReactNode` + +Defined in: [src/components/EventCalendar/EventCalendar.tsx:58](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/components/EventCalendar/EventCalendar.tsx#L58) + +## Parameters + +### props + +`InterfaceCalendarProps` + +### deprecatedLegacyContext? + +`any` + +**Deprecated** + +**See** + +[React Docs](https://legacy.reactjs.org/docs/legacy-context.html#referencing-context-in-lifecycle-methods) + +## Returns + +`ReactNode` diff --git a/docs/docs/auto-docs/components/EventCalendar/EventHeader/functions/default.md b/docs/docs/auto-docs/components/EventCalendar/EventHeader/functions/default.md new file mode 100644 index 0000000000..f1ff6391fb --- /dev/null +++ b/docs/docs/auto-docs/components/EventCalendar/EventHeader/functions/default.md @@ -0,0 +1,24 @@ +[Admin Docs](/) + +*** + +# Function: default() + +> **default**(`__namedParameters`): `JSX.Element` + +Defined in: [src/components/EventCalendar/EventHeader.tsx:27](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/components/EventCalendar/EventHeader.tsx#L27) + +EventHeader component displays the header for the event calendar. +It includes a search field, view type dropdown, event type dropdown, and a button to create an event. + +## Parameters + +### \_\_namedParameters + +`InterfaceEventHeaderProps` + +## Returns + +`JSX.Element` + +JSX.Element - The rendered EventHeader component. diff --git a/docs/docs/auto-docs/components/EventCalendar/YearlyEventCalender/functions/default.md b/docs/docs/auto-docs/components/EventCalendar/YearlyEventCalender/functions/default.md new file mode 100644 index 0000000000..321be8d690 --- /dev/null +++ b/docs/docs/auto-docs/components/EventCalendar/YearlyEventCalender/functions/default.md @@ -0,0 +1,36 @@ +[Admin Docs](/) + +*** + +# Function: default() + +> **default**(`props`, `deprecatedLegacyContext`?): `ReactNode` + +Defined in: [src/components/EventCalendar/YearlyEventCalender.tsx:95](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/components/EventCalendar/YearlyEventCalender.tsx#L95) + +Calendar component to display events for a selected year. + +This component renders a yearly calendar with navigation to view previous and next years. +It displays events for each day, with functionality to expand and view details of events. + +## Parameters + +### props + +`InterfaceCalendarProps` + +### deprecatedLegacyContext? + +`any` + +**Deprecated** + +**See** + +[React Docs](https://legacy.reactjs.org/docs/legacy-context.html#referencing-context-in-lifecycle-methods) + +## Returns + +`ReactNode` + +JSX.Element - The rendered calendar component. diff --git a/docs/docs/auto-docs/components/EventCalendar/constants/variables/holidays.md b/docs/docs/auto-docs/components/EventCalendar/constants/variables/holidays.md new file mode 100644 index 0000000000..ab7c0f14da --- /dev/null +++ b/docs/docs/auto-docs/components/EventCalendar/constants/variables/holidays.md @@ -0,0 +1,23 @@ +[Admin Docs](/) + +*** + +# Variable: holidays + +> `const` **holidays**: `object`[] + +Defined in: [src/components/EventCalendar/constants.js:1](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/components/EventCalendar/constants.js#L1) + +## Type declaration + +### date + +> **date**: `string` = `'05-01'` + +### month + +> **month**: `string` = `'May'` + +### name + +> **name**: `string` = `'May Day / Labour Day'` diff --git a/docs/docs/auto-docs/components/EventCalendar/constants/variables/hours.md b/docs/docs/auto-docs/components/EventCalendar/constants/variables/hours.md new file mode 100644 index 0000000000..568e1eccc4 --- /dev/null +++ b/docs/docs/auto-docs/components/EventCalendar/constants/variables/hours.md @@ -0,0 +1,9 @@ +[Admin Docs](/) + +*** + +# Variable: hours + +> `const` **hours**: `string`[] + +Defined in: [src/components/EventCalendar/constants.js:31](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/components/EventCalendar/constants.js#L31) diff --git a/docs/docs/auto-docs/components/EventCalendar/constants/variables/months.md b/docs/docs/auto-docs/components/EventCalendar/constants/variables/months.md new file mode 100644 index 0000000000..d21b9a2988 --- /dev/null +++ b/docs/docs/auto-docs/components/EventCalendar/constants/variables/months.md @@ -0,0 +1,9 @@ +[Admin Docs](/) + +*** + +# Variable: months + +> `const` **months**: `string`[] + +Defined in: [src/components/EventCalendar/constants.js:17](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/components/EventCalendar/constants.js#L17) diff --git a/docs/docs/auto-docs/components/EventCalendar/constants/variables/weekdays.md b/docs/docs/auto-docs/components/EventCalendar/constants/variables/weekdays.md new file mode 100644 index 0000000000..df77c10071 --- /dev/null +++ b/docs/docs/auto-docs/components/EventCalendar/constants/variables/weekdays.md @@ -0,0 +1,9 @@ +[Admin Docs](/) + +*** + +# Variable: weekdays + +> `const` **weekdays**: `string`[] + +Defined in: [src/components/EventCalendar/constants.js:16](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/components/EventCalendar/constants.js#L16) diff --git a/docs/docs/auto-docs/components/EventDashboardScreen/EventDashboardScreen/functions/default.md b/docs/docs/auto-docs/components/EventDashboardScreen/EventDashboardScreen/functions/default.md new file mode 100644 index 0000000000..c95f9d2b06 --- /dev/null +++ b/docs/docs/auto-docs/components/EventDashboardScreen/EventDashboardScreen/functions/default.md @@ -0,0 +1,18 @@ +[Admin Docs](/) + +*** + +# Function: default() + +> **default**(): `Element` + +Defined in: [src/components/EventDashboardScreen/EventDashboardScreen.tsx:21](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/components/EventDashboardScreen/EventDashboardScreen.tsx#L21) + +The EventDashboardScreen component is the main dashboard view for event management. +It includes navigation, a sidebar, and a profile dropdown. + +## Returns + +`Element` + +JSX.Element - The rendered EventDashboardScreen component. diff --git a/docs/docs/auto-docs/components/EventListCard/EventListCard/functions/default.md b/docs/docs/auto-docs/components/EventListCard/EventListCard/functions/default.md new file mode 100644 index 0000000000..9c45892003 --- /dev/null +++ b/docs/docs/auto-docs/components/EventListCard/EventListCard/functions/default.md @@ -0,0 +1,25 @@ +[Admin Docs](/) + +*** + +# Function: default() + +> **default**(`props`): `JSX.Element` + +Defined in: [src/components/EventListCard/EventListCard.tsx:45](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/components/EventListCard/EventListCard.tsx#L45) + +Component that displays an event card with a modal for event details. + +## Parameters + +### props + +[`InterfaceEventListCardProps`](../interfaces/InterfaceEventListCardProps.md) + +The props for the EventListCard component. + +## Returns + +`JSX.Element` + +The rendered EventListCard component. diff --git a/docs/docs/auto-docs/components/EventListCard/EventListCard/interfaces/InterfaceEventListCardProps.md b/docs/docs/auto-docs/components/EventListCard/EventListCard/interfaces/InterfaceEventListCardProps.md new file mode 100644 index 0000000000..6ef000fc85 --- /dev/null +++ b/docs/docs/auto-docs/components/EventListCard/EventListCard/interfaces/InterfaceEventListCardProps.md @@ -0,0 +1,181 @@ +[Admin Docs](/) + +*** + +# Interface: InterfaceEventListCardProps + +Defined in: [src/components/EventListCard/EventListCard.tsx:11](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/components/EventListCard/EventListCard.tsx#L11) + +Props for the EventListCard component. + +## Properties + +### allDay + +> **allDay**: `boolean` + +Defined in: [src/components/EventListCard/EventListCard.tsx:23](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/components/EventListCard/EventListCard.tsx#L23) + +*** + +### creator? + +> `optional` **creator**: `object` + +Defined in: [src/components/EventListCard/EventListCard.tsx:32](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/components/EventListCard/EventListCard.tsx#L32) + +#### \_id + +> **\_id**: `string` + +#### firstName + +> **firstName**: `string` + +#### lastName + +> **lastName**: `string` + +*** + +### endDate + +> **endDate**: `string` + +Defined in: [src/components/EventListCard/EventListCard.tsx:20](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/components/EventListCard/EventListCard.tsx#L20) + +*** + +### endTime + +> **endTime**: `string` + +Defined in: [src/components/EventListCard/EventListCard.tsx:22](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/components/EventListCard/EventListCard.tsx#L22) + +*** + +### eventDescription + +> **eventDescription**: `string` + +Defined in: [src/components/EventListCard/EventListCard.tsx:18](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/components/EventListCard/EventListCard.tsx#L18) + +*** + +### eventLocation + +> **eventLocation**: `string` + +Defined in: [src/components/EventListCard/EventListCard.tsx:16](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/components/EventListCard/EventListCard.tsx#L16) + +*** + +### eventName + +> **eventName**: `string` + +Defined in: [src/components/EventListCard/EventListCard.tsx:17](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/components/EventListCard/EventListCard.tsx#L17) + +*** + +### id + +> **id**: `string` + +Defined in: [src/components/EventListCard/EventListCard.tsx:15](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/components/EventListCard/EventListCard.tsx#L15) + +*** + +### isPublic + +> **isPublic**: `boolean` + +Defined in: [src/components/EventListCard/EventListCard.tsx:27](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/components/EventListCard/EventListCard.tsx#L27) + +*** + +### isRecurringEventException + +> **isRecurringEventException**: `boolean` + +Defined in: [src/components/EventListCard/EventListCard.tsx:26](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/components/EventListCard/EventListCard.tsx#L26) + +*** + +### isRegisterable + +> **isRegisterable**: `boolean` + +Defined in: [src/components/EventListCard/EventListCard.tsx:28](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/components/EventListCard/EventListCard.tsx#L28) + +*** + +### key + +> **key**: `string` + +Defined in: [src/components/EventListCard/EventListCard.tsx:14](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/components/EventListCard/EventListCard.tsx#L14) + +*** + +### recurrenceRule + +> **recurrenceRule**: [`InterfaceRecurrenceRule`](../../../../utils/recurrenceUtils/recurrenceTypes/interfaces/InterfaceRecurrenceRule.md) + +Defined in: [src/components/EventListCard/EventListCard.tsx:25](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/components/EventListCard/EventListCard.tsx#L25) + +*** + +### recurring + +> **recurring**: `boolean` + +Defined in: [src/components/EventListCard/EventListCard.tsx:24](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/components/EventListCard/EventListCard.tsx#L24) + +*** + +### refetchEvents()? + +> `optional` **refetchEvents**: () => `void` + +Defined in: [src/components/EventListCard/EventListCard.tsx:12](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/components/EventListCard/EventListCard.tsx#L12) + +#### Returns + +`void` + +*** + +### registrants? + +> `optional` **registrants**: `object`[] + +Defined in: [src/components/EventListCard/EventListCard.tsx:29](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/components/EventListCard/EventListCard.tsx#L29) + +#### \_id + +> **\_id**: `string` + +*** + +### startDate + +> **startDate**: `string` + +Defined in: [src/components/EventListCard/EventListCard.tsx:19](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/components/EventListCard/EventListCard.tsx#L19) + +*** + +### startTime + +> **startTime**: `string` + +Defined in: [src/components/EventListCard/EventListCard.tsx:21](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/components/EventListCard/EventListCard.tsx#L21) + +*** + +### userRole? + +> `optional` **userRole**: `string` + +Defined in: [src/components/EventListCard/EventListCard.tsx:13](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/components/EventListCard/EventListCard.tsx#L13) diff --git a/docs/docs/auto-docs/components/EventListCard/EventListCardMocks/variables/ERROR_MOCKS.md b/docs/docs/auto-docs/components/EventListCard/EventListCardMocks/variables/ERROR_MOCKS.md new file mode 100644 index 0000000000..b832083192 --- /dev/null +++ b/docs/docs/auto-docs/components/EventListCard/EventListCardMocks/variables/ERROR_MOCKS.md @@ -0,0 +1,31 @@ +[Admin Docs](/) + +*** + +# Variable: ERROR\_MOCKS + +> `const` **ERROR\_MOCKS**: `object`[] + +Defined in: [src/components/EventListCard/EventListCardMocks.ts:191](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/components/EventListCard/EventListCardMocks.ts#L191) + +## Type declaration + +### error + +> **error**: `Error` + +### request + +> **request**: `object` + +#### request.query + +> **query**: `DocumentNode` = `DELETE_EVENT_MUTATION` + +#### request.variables + +> **variables**: `object` + +#### request.variables.id + +> **id**: `string` = `'1'` diff --git a/docs/docs/auto-docs/components/EventListCard/EventListCardMocks/variables/MOCKS.md b/docs/docs/auto-docs/components/EventListCard/EventListCardMocks/variables/MOCKS.md new file mode 100644 index 0000000000..39b9f9d392 --- /dev/null +++ b/docs/docs/auto-docs/components/EventListCard/EventListCardMocks/variables/MOCKS.md @@ -0,0 +1,9 @@ +[Admin Docs](/) + +*** + +# Variable: MOCKS + +> `const` **MOCKS**: (\{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `allDay`: `undefined`; `description`: `undefined`; `endDate`: `undefined`; `endTime`: `undefined`; `eventId`: `undefined`; `frequency`: `undefined`; `id`: `string`; `interval`: `undefined`; `isPublic`: `undefined`; `isRegisterable`: `undefined`; `location`: `undefined`; `recurrenceEndDate`: `undefined`; `recurrenceStartDate`: `undefined`; `recurring`: `undefined`; `recurringEventDeleteType`: `undefined`; `recurringEventUpdateType`: `undefined`; `startDate`: `undefined`; `startTime`: `undefined`; `title`: `undefined`; `weekDayOccurenceInMonth`: `undefined`; `weekDays`: `undefined`; \}; \}; `result`: \{ `data`: \{ `registerForEvent`: `undefined`; `removeEvent`: \{ `_id`: `string`; \}; `updateEvent`: `undefined`; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `allDay`: `undefined`; `description`: `undefined`; `endDate`: `undefined`; `endTime`: `undefined`; `eventId`: `undefined`; `frequency`: `undefined`; `id`: `string`; `interval`: `undefined`; `isPublic`: `undefined`; `isRegisterable`: `undefined`; `location`: `undefined`; `recurrenceEndDate`: `undefined`; `recurrenceStartDate`: `undefined`; `recurring`: `undefined`; `recurringEventDeleteType`: `string`; `recurringEventUpdateType`: `undefined`; `startDate`: `undefined`; `startTime`: `undefined`; `title`: `undefined`; `weekDayOccurenceInMonth`: `undefined`; `weekDays`: `undefined`; \}; \}; `result`: \{ `data`: \{ `registerForEvent`: `undefined`; `removeEvent`: \{ `_id`: `string`; \}; `updateEvent`: `undefined`; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `allDay`: `boolean`; `description`: `string`; `endDate`: `string`; `endTime`: `undefined`; `eventId`: `undefined`; `frequency`: `undefined`; `id`: `string`; `interval`: `undefined`; `isPublic`: `boolean`; `isRegisterable`: `boolean`; `location`: `string`; `recurrenceEndDate`: `undefined`; `recurrenceStartDate`: `undefined`; `recurring`: `boolean`; `recurringEventDeleteType`: `undefined`; `recurringEventUpdateType`: `undefined`; `startDate`: `string`; `startTime`: `undefined`; `title`: `string`; `weekDayOccurenceInMonth`: `undefined`; `weekDays`: `undefined`; \}; \}; `result`: \{ `data`: \{ `registerForEvent`: `undefined`; `removeEvent`: `undefined`; `updateEvent`: \{ `_id`: `string`; \}; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `allDay`: `boolean`; `description`: `string`; `endDate`: `string`; `endTime`: `string`; `eventId`: `undefined`; `frequency`: `undefined`; `id`: `string`; `interval`: `undefined`; `isPublic`: `boolean`; `isRegisterable`: `boolean`; `location`: `string`; `recurrenceEndDate`: `undefined`; `recurrenceStartDate`: `undefined`; `recurring`: `boolean`; `recurringEventDeleteType`: `undefined`; `recurringEventUpdateType`: `undefined`; `startDate`: `string`; `startTime`: `string`; `title`: `string`; `weekDayOccurenceInMonth`: `undefined`; `weekDays`: `undefined`; \}; \}; `result`: \{ `data`: \{ `registerForEvent`: `undefined`; `removeEvent`: `undefined`; `updateEvent`: \{ `_id`: `string`; \}; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `allDay`: `boolean`; `description`: `string`; `endDate`: `string`; `endTime`: `undefined`; `eventId`: `undefined`; `frequency`: `string`; `id`: `string`; `interval`: `number`; `isPublic`: `boolean`; `isRegisterable`: `boolean`; `location`: `string`; `recurrenceEndDate`: `any`; `recurrenceStartDate`: `string`; `recurring`: `boolean`; `recurringEventDeleteType`: `undefined`; `recurringEventUpdateType`: `string`; `startDate`: `string`; `startTime`: `undefined`; `title`: `string`; `weekDayOccurenceInMonth`: `undefined`; `weekDays`: `string`[]; \}; \}; `result`: \{ `data`: \{ `registerForEvent`: `undefined`; `removeEvent`: `undefined`; `updateEvent`: \{ `_id`: `string`; \}; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `allDay`: `boolean`; `description`: `string`; `endDate`: `string`; `endTime`: `undefined`; `eventId`: `undefined`; `frequency`: `string`; `id`: `string`; `interval`: `number`; `isPublic`: `boolean`; `isRegisterable`: `boolean`; `location`: `string`; `recurrenceEndDate`: `string`; `recurrenceStartDate`: `string`; `recurring`: `boolean`; `recurringEventDeleteType`: `undefined`; `recurringEventUpdateType`: `string`; `startDate`: `string`; `startTime`: `undefined`; `title`: `string`; `weekDayOccurenceInMonth`: `number`; `weekDays`: `string`[]; \}; \}; `result`: \{ `data`: \{ `registerForEvent`: `undefined`; `removeEvent`: `undefined`; `updateEvent`: \{ `_id`: `string`; \}; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `allDay`: `boolean`; `description`: `string`; `endDate`: `string`; `endTime`: `undefined`; `eventId`: `undefined`; `frequency`: `string`; `id`: `string`; `interval`: `number`; `isPublic`: `boolean`; `isRegisterable`: `boolean`; `location`: `string`; `recurrenceEndDate`: `any`; `recurrenceStartDate`: `string`; `recurring`: `boolean`; `recurringEventDeleteType`: `undefined`; `recurringEventUpdateType`: `string`; `startDate`: `string`; `startTime`: `undefined`; `title`: `string`; `weekDayOccurenceInMonth`: `undefined`; `weekDays`: `undefined`; \}; \}; `result`: \{ `data`: \{ `registerForEvent`: `undefined`; `removeEvent`: `undefined`; `updateEvent`: \{ `_id`: `string`; \}; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `allDay`: `undefined`; `description`: `undefined`; `endDate`: `undefined`; `endTime`: `undefined`; `eventId`: `string`; `frequency`: `undefined`; `id`: `undefined`; `interval`: `undefined`; `isPublic`: `undefined`; `isRegisterable`: `undefined`; `location`: `undefined`; `recurrenceEndDate`: `undefined`; `recurrenceStartDate`: `undefined`; `recurring`: `undefined`; `recurringEventDeleteType`: `undefined`; `recurringEventUpdateType`: `undefined`; `startDate`: `undefined`; `startTime`: `undefined`; `title`: `undefined`; `weekDayOccurenceInMonth`: `undefined`; `weekDays`: `undefined`; \}; \}; `result`: \{ `data`: \{ `registerForEvent`: `object`[]; `removeEvent`: `undefined`; `updateEvent`: `undefined`; \}; \}; \})[] + +Defined in: [src/components/EventListCard/EventListCardMocks.ts:7](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/components/EventListCard/EventListCardMocks.ts#L7) diff --git a/docs/docs/auto-docs/components/EventListCard/EventListCardModals/functions/default.md b/docs/docs/auto-docs/components/EventListCard/EventListCardModals/functions/default.md new file mode 100644 index 0000000000..a32811229c --- /dev/null +++ b/docs/docs/auto-docs/components/EventListCard/EventListCardModals/functions/default.md @@ -0,0 +1,26 @@ +[Admin Docs](/) + +*** + +# Function: default() + +> **default**(`props`): `JSX.Element` + +Defined in: [src/components/EventListCard/EventListCardModals.tsx:72](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/components/EventListCard/EventListCardModals.tsx#L72) + +The `EventListCardModals` component displays the modals related to events, such as viewing, +updating, and deleting events. + +## Parameters + +### props + +`InterfaceEventListCardModalProps` + +The properties for the component. + +## Returns + +`JSX.Element` + +A JSX element containing the event modals. diff --git a/docs/docs/auto-docs/components/EventListCard/EventListCardProps/variables/props.md b/docs/docs/auto-docs/components/EventListCard/EventListCardProps/variables/props.md new file mode 100644 index 0000000000..989b4dc581 --- /dev/null +++ b/docs/docs/auto-docs/components/EventListCard/EventListCardProps/variables/props.md @@ -0,0 +1,9 @@ +[Admin Docs](/) + +*** + +# Variable: props + +> `const` **props**: [`InterfaceEventListCardProps`](../../EventListCard/interfaces/InterfaceEventListCardProps.md)[] + +Defined in: [src/components/EventListCard/EventListCardProps.ts:4](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/components/EventListCard/EventListCardProps.ts#L4) diff --git a/docs/docs/auto-docs/components/EventManagement/Dashboard/EventDashboard.mocks/variables/MOCKS_WITHOUT_TIME.md b/docs/docs/auto-docs/components/EventManagement/Dashboard/EventDashboard.mocks/variables/MOCKS_WITHOUT_TIME.md new file mode 100644 index 0000000000..9ca15cd738 --- /dev/null +++ b/docs/docs/auto-docs/components/EventManagement/Dashboard/EventDashboard.mocks/variables/MOCKS_WITHOUT_TIME.md @@ -0,0 +1,99 @@ +[Admin Docs](/) + +*** + +# Variable: MOCKS\_WITHOUT\_TIME + +> `const` **MOCKS\_WITHOUT\_TIME**: `object`[] + +Defined in: [src/components/EventManagement/Dashboard/EventDashboard.mocks.ts:34](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/components/EventManagement/Dashboard/EventDashboard.mocks.ts#L34) + +## Type declaration + +### request + +> **request**: `object` + +#### request.query + +> **query**: `DocumentNode` = `EVENT_DETAILS` + +#### request.variables + +> **variables**: `object` + +#### request.variables.id + +> **id**: `string` = `'event123'` + +### result + +> **result**: `object` + +#### result.data + +> **data**: `object` + +#### result.data.event + +> **event**: `object` + +#### result.data.event.\_id + +> **\_id**: `string` = `'event123'` + +#### result.data.event.allDay + +> **allDay**: `boolean` = `true` + +#### result.data.event.attendees + +> **attendees**: `object`[] + +#### result.data.event.creator + +> **creator**: `object` + +#### result.data.event.creator.\_id + +> **\_id**: `string` = `'creator1'` + +#### result.data.event.creator.firstName + +> **firstName**: `string` = `'John'` + +#### result.data.event.creator.lastName + +> **lastName**: `string` = `'Doe'` + +#### result.data.event.description + +> **description**: `string` = `'Test Description'` + +#### result.data.event.endDate + +> **endDate**: `string` = `'2024-01-02'` + +#### result.data.event.endTime + +> **endTime**: `any` = `null` + +#### result.data.event.location + +> **location**: `string` = `'India'` + +#### result.data.event.recurring + +> **recurring**: `boolean` = `false` + +#### result.data.event.startDate + +> **startDate**: `string` = `'2024-01-01'` + +#### result.data.event.startTime + +> **startTime**: `any` = `null` + +#### result.data.event.title + +> **title**: `string` = `'Test Event'` diff --git a/docs/docs/auto-docs/components/EventManagement/Dashboard/EventDashboard.mocks/variables/MOCKS_WITH_TIME.md b/docs/docs/auto-docs/components/EventManagement/Dashboard/EventDashboard.mocks/variables/MOCKS_WITH_TIME.md new file mode 100644 index 0000000000..4f1ef3bc59 --- /dev/null +++ b/docs/docs/auto-docs/components/EventManagement/Dashboard/EventDashboard.mocks/variables/MOCKS_WITH_TIME.md @@ -0,0 +1,99 @@ +[Admin Docs](/) + +*** + +# Variable: MOCKS\_WITH\_TIME + +> `const` **MOCKS\_WITH\_TIME**: `object`[] + +Defined in: [src/components/EventManagement/Dashboard/EventDashboard.mocks.ts:3](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/components/EventManagement/Dashboard/EventDashboard.mocks.ts#L3) + +## Type declaration + +### request + +> **request**: `object` + +#### request.query + +> **query**: `DocumentNode` = `EVENT_DETAILS` + +#### request.variables + +> **variables**: `object` + +#### request.variables.id + +> **id**: `string` = `'event123'` + +### result + +> **result**: `object` + +#### result.data + +> **data**: `object` + +#### result.data.event + +> **event**: `object` + +#### result.data.event.\_id + +> **\_id**: `string` = `'event123'` + +#### result.data.event.allDay + +> **allDay**: `boolean` = `false` + +#### result.data.event.attendees + +> **attendees**: `object`[] + +#### result.data.event.creator + +> **creator**: `object` + +#### result.data.event.creator.\_id + +> **\_id**: `string` = `'creator1'` + +#### result.data.event.creator.firstName + +> **firstName**: `string` = `'John'` + +#### result.data.event.creator.lastName + +> **lastName**: `string` = `'Doe'` + +#### result.data.event.description + +> **description**: `string` = `'Test Description'` + +#### result.data.event.endDate + +> **endDate**: `string` = `'2024-01-02'` + +#### result.data.event.endTime + +> **endTime**: `string` = `'17:00:00'` + +#### result.data.event.location + +> **location**: `string` = `'India'` + +#### result.data.event.recurring + +> **recurring**: `boolean` = `false` + +#### result.data.event.startDate + +> **startDate**: `string` = `'2024-01-01'` + +#### result.data.event.startTime + +> **startTime**: `string` = `'09:00:00'` + +#### result.data.event.title + +> **title**: `string` = `'Test Event'` diff --git a/docs/docs/auto-docs/components/EventManagement/Dashboard/EventDashboard/functions/default.md b/docs/docs/auto-docs/components/EventManagement/Dashboard/EventDashboard/functions/default.md new file mode 100644 index 0000000000..e9545680b6 --- /dev/null +++ b/docs/docs/auto-docs/components/EventManagement/Dashboard/EventDashboard/functions/default.md @@ -0,0 +1,27 @@ +[Admin Docs](/) + +*** + +# Function: default() + +> **default**(`props`): `Element` + +Defined in: [src/components/EventManagement/Dashboard/EventDashboard.tsx:20](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/components/EventManagement/Dashboard/EventDashboard.tsx#L20) + +Component that displays event details. + +## Parameters + +### props + +The props for the EventDashboard component. + +#### eventId + +`string` + +## Returns + +`Element` + +The rendered EventDashboard component. diff --git a/docs/docs/auto-docs/components/EventManagement/EventAgendaItems/EventAgendaItems/functions/default.md b/docs/docs/auto-docs/components/EventManagement/EventAgendaItems/EventAgendaItems/functions/default.md new file mode 100644 index 0000000000..a2449b0638 --- /dev/null +++ b/docs/docs/auto-docs/components/EventManagement/EventAgendaItems/EventAgendaItems/functions/default.md @@ -0,0 +1,27 @@ +[Admin Docs](/) + +*** + +# Function: default() + +> **default**(`props`): `JSX.Element` + +Defined in: [src/components/EventManagement/EventAgendaItems/EventAgendaItems.tsx:33](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/components/EventManagement/EventAgendaItems/EventAgendaItems.tsx#L33) + +Component to manage and display agenda items for a specific event. + +## Parameters + +### props + +The component props. + +#### eventId + +`string` + +## Returns + +`JSX.Element` + +The rendered component. diff --git a/docs/docs/auto-docs/components/EventManagement/EventAgendaItems/EventAgendaItemsMocks/variables/MOCKS.md b/docs/docs/auto-docs/components/EventManagement/EventAgendaItems/EventAgendaItemsMocks/variables/MOCKS.md new file mode 100644 index 0000000000..4dcabe5a95 --- /dev/null +++ b/docs/docs/auto-docs/components/EventManagement/EventAgendaItems/EventAgendaItemsMocks/variables/MOCKS.md @@ -0,0 +1,9 @@ +[Admin Docs](/) + +*** + +# Variable: MOCKS + +> `const` **MOCKS**: (\{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `input`: `undefined`; `organizationId`: `string`; `relatedEventId`: `undefined`; \}; \}; `result`: \{ `data`: \{ `agendaItemByEvent`: `undefined`; `agendaItemCategoriesByOrganization`: `object`[]; `createAgendaItem`: `undefined`; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `input`: `undefined`; `organizationId`: `undefined`; `relatedEventId`: `string`; \}; \}; `result`: \{ `data`: \{ `agendaItemByEvent`: `object`[]; `agendaItemCategoriesByOrganization`: `undefined`; `createAgendaItem`: `undefined`; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `input`: \{ `attachments`: `any`[]; `categories`: `string`[]; `description`: `string`; `duration`: `string`; `organizationId`: `string`; `relatedEventId`: `string`; `sequence`: `number`; `title`: `string`; `urls`: `any`[]; \}; `organizationId`: `undefined`; `relatedEventId`: `undefined`; \}; \}; `result`: \{ `data`: \{ `agendaItemByEvent`: `undefined`; `agendaItemCategoriesByOrganization`: `undefined`; `createAgendaItem`: \{ `_id`: `string`; \}; \}; \}; \})[] + +Defined in: [src/components/EventManagement/EventAgendaItems/EventAgendaItemsMocks.ts:6](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/components/EventManagement/EventAgendaItems/EventAgendaItemsMocks.ts#L6) diff --git a/docs/docs/auto-docs/components/EventManagement/EventAgendaItems/EventAgendaItemsMocks/variables/MOCKS_ERROR_MUTATION.md b/docs/docs/auto-docs/components/EventManagement/EventAgendaItems/EventAgendaItemsMocks/variables/MOCKS_ERROR_MUTATION.md new file mode 100644 index 0000000000..f6b02754c6 --- /dev/null +++ b/docs/docs/auto-docs/components/EventManagement/EventAgendaItems/EventAgendaItemsMocks/variables/MOCKS_ERROR_MUTATION.md @@ -0,0 +1,9 @@ +[Admin Docs](/) + +*** + +# Variable: MOCKS\_ERROR\_MUTATION + +> `const` **MOCKS\_ERROR\_MUTATION**: (\{ `error`: `Error`; `request`: \{ `query`: `DocumentNode`; `variables`: \{ `input`: \{ `attachments`: `any`[]; `categories`: `string`[]; `description`: `string`; `duration`: `string`; `organizationId`: `string`; `relatedEventId`: `string`; `sequence`: `number`; `title`: `string`; `urls`: `any`[]; \}; `organizationId`: `undefined`; `relatedEventId`: `undefined`; \}; \}; \} \| \{ `error`: `Error`; `request`: \{ `query`: `DocumentNode`; `variables`: \{ `input`: `undefined`; `organizationId`: `undefined`; `relatedEventId`: `string`; \}; \}; \} \| \{ `error`: `Error`; `request`: \{ `query`: `DocumentNode`; `variables`: \{ `input`: `undefined`; `organizationId`: `string`; `relatedEventId`: `undefined`; \}; \}; \})[] + +Defined in: [src/components/EventManagement/EventAgendaItems/EventAgendaItemsMocks.ts:97](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/components/EventManagement/EventAgendaItems/EventAgendaItemsMocks.ts#L97) diff --git a/docs/docs/auto-docs/components/EventManagement/EventAgendaItems/EventAgendaItemsMocks/variables/MOCKS_ERROR_QUERY.md b/docs/docs/auto-docs/components/EventManagement/EventAgendaItems/EventAgendaItemsMocks/variables/MOCKS_ERROR_QUERY.md new file mode 100644 index 0000000000..57ebc0e263 --- /dev/null +++ b/docs/docs/auto-docs/components/EventManagement/EventAgendaItems/EventAgendaItemsMocks/variables/MOCKS_ERROR_QUERY.md @@ -0,0 +1,9 @@ +[Admin Docs](/) + +*** + +# Variable: MOCKS\_ERROR\_QUERY + +> `const` **MOCKS\_ERROR\_QUERY**: `any`[] = `[]` + +Defined in: [src/components/EventManagement/EventAgendaItems/EventAgendaItemsMocks.ts:133](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/components/EventManagement/EventAgendaItems/EventAgendaItemsMocks.ts#L133) diff --git a/docs/docs/auto-docs/components/EventManagement/EventAttendance/Attendance.mocks/variables/MOCKS.md b/docs/docs/auto-docs/components/EventManagement/EventAttendance/Attendance.mocks/variables/MOCKS.md new file mode 100644 index 0000000000..4e81fbe03a --- /dev/null +++ b/docs/docs/auto-docs/components/EventManagement/EventAttendance/Attendance.mocks/variables/MOCKS.md @@ -0,0 +1,39 @@ +[Admin Docs](/) + +*** + +# Variable: MOCKS + +> `const` **MOCKS**: `object`[] + +Defined in: [src/components/EventManagement/EventAttendance/Attendance.mocks.ts:3](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/components/EventManagement/EventAttendance/Attendance.mocks.ts#L3) + +## Type declaration + +### request + +> **request**: `object` + +#### request.query + +> **query**: `DocumentNode` = `EVENT_ATTENDEES` + +#### request.variables + +> **variables**: `object` = `{}` + +### result + +> **result**: `object` + +#### result.data + +> **data**: `object` + +#### result.data.event + +> **event**: `object` + +#### result.data.event.attendees + +> **attendees**: `object`[] diff --git a/docs/docs/auto-docs/components/EventManagement/EventAttendance/Attendance.mocks/variables/MOCKS_ERROR.md b/docs/docs/auto-docs/components/EventManagement/EventAttendance/Attendance.mocks/variables/MOCKS_ERROR.md new file mode 100644 index 0000000000..6295151c3a --- /dev/null +++ b/docs/docs/auto-docs/components/EventManagement/EventAttendance/Attendance.mocks/variables/MOCKS_ERROR.md @@ -0,0 +1,27 @@ +[Admin Docs](/) + +*** + +# Variable: MOCKS\_ERROR + +> `const` **MOCKS\_ERROR**: `object`[] + +Defined in: [src/components/EventManagement/EventAttendance/Attendance.mocks.ts:54](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/components/EventManagement/EventAttendance/Attendance.mocks.ts#L54) + +## Type declaration + +### error + +> **error**: `Error` + +### request + +> **request**: `object` + +#### request.query + +> **query**: `DocumentNode` = `EVENT_ATTENDEES` + +#### request.variables + +> **variables**: `object` = `{}` diff --git a/docs/docs/auto-docs/components/EventManagement/EventAttendance/AttendedEventList/functions/default.md b/docs/docs/auto-docs/components/EventManagement/EventAttendance/AttendedEventList/functions/default.md new file mode 100644 index 0000000000..967c1a57bd --- /dev/null +++ b/docs/docs/auto-docs/components/EventManagement/EventAttendance/AttendedEventList/functions/default.md @@ -0,0 +1,33 @@ +[Admin Docs](/) + +*** + +# Function: default() + +> **default**(`props`, `deprecatedLegacyContext`?): `ReactNode` + +Defined in: [src/components/EventManagement/EventAttendance/AttendedEventList.tsx:16](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/components/EventManagement/EventAttendance/AttendedEventList.tsx#L16) + +Component to display a list of events attended by a member + +## Parameters + +### props + +`InterfaceEventsAttended` + +### deprecatedLegacyContext? + +`any` + +**Deprecated** + +**See** + +[React Docs](https://legacy.reactjs.org/docs/legacy-context.html#referencing-context-in-lifecycle-methods) + +## Returns + +`ReactNode` + +A table row containing event details with a link to the event diff --git a/docs/docs/auto-docs/components/EventManagement/EventAttendance/EventAttendance/functions/default.md b/docs/docs/auto-docs/components/EventManagement/EventAttendance/EventAttendance/functions/default.md new file mode 100644 index 0000000000..19a2da2e04 --- /dev/null +++ b/docs/docs/auto-docs/components/EventManagement/EventAttendance/EventAttendance/functions/default.md @@ -0,0 +1,18 @@ +[Admin Docs](/) + +*** + +# Function: default() + +> **default**(): `JSX.Element` + +Defined in: [src/components/EventManagement/EventAttendance/EventAttendance.tsx:34](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/components/EventManagement/EventAttendance/EventAttendance.tsx#L34) + +Component to manage and display event attendance information +Includes filtering and sorting functionality for attendees + +## Returns + +`JSX.Element` + +JSX element containing the event attendance interface diff --git a/docs/docs/auto-docs/components/EventManagement/EventAttendance/EventStatistics/functions/AttendanceStatisticsModal.md b/docs/docs/auto-docs/components/EventManagement/EventAttendance/EventStatistics/functions/AttendanceStatisticsModal.md new file mode 100644 index 0000000000..e3bd753937 --- /dev/null +++ b/docs/docs/auto-docs/components/EventManagement/EventAttendance/EventStatistics/functions/AttendanceStatisticsModal.md @@ -0,0 +1,34 @@ +[Admin Docs](/) + +*** + +# Function: AttendanceStatisticsModal() + +> **AttendanceStatisticsModal**(`props`, `deprecatedLegacyContext`?): `ReactNode` + +Defined in: [src/components/EventManagement/EventAttendance/EventStatistics.tsx:50](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/components/EventManagement/EventAttendance/EventStatistics.tsx#L50) + +Component to display statistical information about event attendance +Shows metrics like total attendees, filtering options, and attendance trends + +## Parameters + +### props + +[`InterfaceAttendanceStatisticsModalProps`](../../InterfaceEvents/interfaces/InterfaceAttendanceStatisticsModalProps.md) + +### deprecatedLegacyContext? + +`any` + +**Deprecated** + +**See** + +[React Docs](https://legacy.reactjs.org/docs/legacy-context.html#referencing-context-in-lifecycle-methods) + +## Returns + +`ReactNode` + +JSX element with event statistics dashboard diff --git a/docs/docs/auto-docs/components/EventManagement/EventAttendance/InterfaceEvents/interfaces/InterfaceAttendanceStatisticsModalProps.md b/docs/docs/auto-docs/components/EventManagement/EventAttendance/InterfaceEvents/interfaces/InterfaceAttendanceStatisticsModalProps.md new file mode 100644 index 0000000000..7e28335a01 --- /dev/null +++ b/docs/docs/auto-docs/components/EventManagement/EventAttendance/InterfaceEvents/interfaces/InterfaceAttendanceStatisticsModalProps.md @@ -0,0 +1,73 @@ +[Admin Docs](/) + +*** + +# Interface: InterfaceAttendanceStatisticsModalProps + +Defined in: [src/components/EventManagement/EventAttendance/InterfaceEvents.ts:1](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/components/EventManagement/EventAttendance/InterfaceEvents.ts#L1) + +## Properties + +### handleClose() + +> **handleClose**: () => `void` + +Defined in: [src/components/EventManagement/EventAttendance/InterfaceEvents.ts:3](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/components/EventManagement/EventAttendance/InterfaceEvents.ts#L3) + +#### Returns + +`void` + +*** + +### memberData + +> **memberData**: [`InterfaceMember`](InterfaceMember.md)[] + +Defined in: [src/components/EventManagement/EventAttendance/InterfaceEvents.ts:9](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/components/EventManagement/EventAttendance/InterfaceEvents.ts#L9) + +*** + +### show + +> **show**: `boolean` + +Defined in: [src/components/EventManagement/EventAttendance/InterfaceEvents.ts:2](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/components/EventManagement/EventAttendance/InterfaceEvents.ts#L2) + +*** + +### statistics + +> **statistics**: `object` + +Defined in: [src/components/EventManagement/EventAttendance/InterfaceEvents.ts:4](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/components/EventManagement/EventAttendance/InterfaceEvents.ts#L4) + +#### attendanceRate + +> **attendanceRate**: `number` + +#### membersAttended + +> **membersAttended**: `number` + +#### totalMembers + +> **totalMembers**: `number` + +*** + +### t() + +> **t**: (`key`) => `string` + +Defined in: [src/components/EventManagement/EventAttendance/InterfaceEvents.ts:10](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/components/EventManagement/EventAttendance/InterfaceEvents.ts#L10) + +#### Parameters + +##### key + +`string` + +#### Returns + +`string` diff --git a/docs/docs/auto-docs/components/EventManagement/EventAttendance/InterfaceEvents/interfaces/InterfaceEvent.md b/docs/docs/auto-docs/components/EventManagement/EventAttendance/InterfaceEvents/interfaces/InterfaceEvent.md new file mode 100644 index 0000000000..85e67eab8b --- /dev/null +++ b/docs/docs/auto-docs/components/EventManagement/EventAttendance/InterfaceEvents/interfaces/InterfaceEvent.md @@ -0,0 +1,187 @@ +[Admin Docs](/) + +*** + +# Interface: InterfaceEvent + +Defined in: [src/components/EventManagement/EventAttendance/InterfaceEvents.ts:35](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/components/EventManagement/EventAttendance/InterfaceEvents.ts#L35) + +## Properties + +### \_\_typename + +> **\_\_typename**: `string` + +Defined in: [src/components/EventManagement/EventAttendance/InterfaceEvents.ts:66](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/components/EventManagement/EventAttendance/InterfaceEvents.ts#L66) + +*** + +### \_id + +> **\_id**: `string` + +Defined in: [src/components/EventManagement/EventAttendance/InterfaceEvents.ts:36](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/components/EventManagement/EventAttendance/InterfaceEvents.ts#L36) + +*** + +### allDay + +> **allDay**: `boolean` + +Defined in: [src/components/EventManagement/EventAttendance/InterfaceEvents.ts:44](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/components/EventManagement/EventAttendance/InterfaceEvents.ts#L44) + +*** + +### attendees + +> **attendees**: `object`[] + +Defined in: [src/components/EventManagement/EventAttendance/InterfaceEvents.ts:58](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/components/EventManagement/EventAttendance/InterfaceEvents.ts#L58) + +#### \_id + +> **\_id**: `string` + +#### birthDate + +> **birthDate**: `string` + +#### email + +> **email**: `string` + +#### firstName + +> **firstName**: `string` + +#### gender + +> **gender**: `string` + +#### lastName + +> **lastName**: `string` + +*** + +### description + +> **description**: `string` + +Defined in: [src/components/EventManagement/EventAttendance/InterfaceEvents.ts:38](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/components/EventManagement/EventAttendance/InterfaceEvents.ts#L38) + +*** + +### endDate + +> **endDate**: `string` + +Defined in: [src/components/EventManagement/EventAttendance/InterfaceEvents.ts:40](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/components/EventManagement/EventAttendance/InterfaceEvents.ts#L40) + +*** + +### endTime + +> **endTime**: `string` + +Defined in: [src/components/EventManagement/EventAttendance/InterfaceEvents.ts:43](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/components/EventManagement/EventAttendance/InterfaceEvents.ts#L43) + +*** + +### isPublic + +> **isPublic**: `boolean` + +Defined in: [src/components/EventManagement/EventAttendance/InterfaceEvents.ts:56](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/components/EventManagement/EventAttendance/InterfaceEvents.ts#L56) + +*** + +### isRecurringEventException + +> **isRecurringEventException**: `boolean` + +Defined in: [src/components/EventManagement/EventAttendance/InterfaceEvents.ts:55](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/components/EventManagement/EventAttendance/InterfaceEvents.ts#L55) + +*** + +### isRegisterable + +> **isRegisterable**: `boolean` + +Defined in: [src/components/EventManagement/EventAttendance/InterfaceEvents.ts:57](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/components/EventManagement/EventAttendance/InterfaceEvents.ts#L57) + +*** + +### location + +> **location**: `string` + +Defined in: [src/components/EventManagement/EventAttendance/InterfaceEvents.ts:41](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/components/EventManagement/EventAttendance/InterfaceEvents.ts#L41) + +*** + +### recurrenceRule + +> **recurrenceRule**: `object` + +Defined in: [src/components/EventManagement/EventAttendance/InterfaceEvents.ts:46](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/components/EventManagement/EventAttendance/InterfaceEvents.ts#L46) + +#### count? + +> `optional` **count**: `number` + +#### frequency + +> **frequency**: `string` + +#### interval + +> **interval**: `number` + +#### recurrenceEndDate? + +> `optional` **recurrenceEndDate**: `string` + +#### recurrenceStartDate + +> **recurrenceStartDate**: `string` + +#### weekDayOccurenceInMonth? + +> `optional` **weekDayOccurenceInMonth**: `number` + +#### weekDays + +> **weekDays**: `string`[] + +*** + +### recurring + +> **recurring**: `boolean` + +Defined in: [src/components/EventManagement/EventAttendance/InterfaceEvents.ts:45](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/components/EventManagement/EventAttendance/InterfaceEvents.ts#L45) + +*** + +### startDate + +> **startDate**: `string` + +Defined in: [src/components/EventManagement/EventAttendance/InterfaceEvents.ts:39](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/components/EventManagement/EventAttendance/InterfaceEvents.ts#L39) + +*** + +### startTime + +> **startTime**: `string` + +Defined in: [src/components/EventManagement/EventAttendance/InterfaceEvents.ts:42](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/components/EventManagement/EventAttendance/InterfaceEvents.ts#L42) + +*** + +### title + +> **title**: `string` + +Defined in: [src/components/EventManagement/EventAttendance/InterfaceEvents.ts:37](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/components/EventManagement/EventAttendance/InterfaceEvents.ts#L37) diff --git a/docs/docs/auto-docs/components/EventManagement/EventAttendance/InterfaceEvents/interfaces/InterfaceMember.md b/docs/docs/auto-docs/components/EventManagement/EventAttendance/InterfaceEvents/interfaces/InterfaceMember.md new file mode 100644 index 0000000000..bfc84d3a66 --- /dev/null +++ b/docs/docs/auto-docs/components/EventManagement/EventAttendance/InterfaceEvents/interfaces/InterfaceMember.md @@ -0,0 +1,95 @@ +[Admin Docs](/) + +*** + +# Interface: InterfaceMember + +Defined in: [src/components/EventManagement/EventAttendance/InterfaceEvents.ts:13](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/components/EventManagement/EventAttendance/InterfaceEvents.ts#L13) + +## Properties + +### \_\_typename + +> **\_\_typename**: `string` + +Defined in: [src/components/EventManagement/EventAttendance/InterfaceEvents.ts:23](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/components/EventManagement/EventAttendance/InterfaceEvents.ts#L23) + +*** + +### \_id + +> **\_id**: `string` + +Defined in: [src/components/EventManagement/EventAttendance/InterfaceEvents.ts:24](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/components/EventManagement/EventAttendance/InterfaceEvents.ts#L24) + +*** + +### birthDate + +> **birthDate**: `Date` + +Defined in: [src/components/EventManagement/EventAttendance/InterfaceEvents.ts:22](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/components/EventManagement/EventAttendance/InterfaceEvents.ts#L22) + +*** + +### createdAt + +> **createdAt**: `string` + +Defined in: [src/components/EventManagement/EventAttendance/InterfaceEvents.ts:14](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/components/EventManagement/EventAttendance/InterfaceEvents.ts#L14) + +*** + +### email + +> **email**: `` `${string}@${string}.${string}` `` + +Defined in: [src/components/EventManagement/EventAttendance/InterfaceEvents.ts:17](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/components/EventManagement/EventAttendance/InterfaceEvents.ts#L17) + +*** + +### eventsAttended? + +> `optional` **eventsAttended**: `object`[] + +Defined in: [src/components/EventManagement/EventAttendance/InterfaceEvents.ts:19](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/components/EventManagement/EventAttendance/InterfaceEvents.ts#L19) + +#### \_id + +> **\_id**: `string` + +*** + +### firstName + +> **firstName**: `string` + +Defined in: [src/components/EventManagement/EventAttendance/InterfaceEvents.ts:15](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/components/EventManagement/EventAttendance/InterfaceEvents.ts#L15) + +*** + +### gender + +> **gender**: `string` + +Defined in: [src/components/EventManagement/EventAttendance/InterfaceEvents.ts:18](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/components/EventManagement/EventAttendance/InterfaceEvents.ts#L18) + +*** + +### lastName + +> **lastName**: `string` + +Defined in: [src/components/EventManagement/EventAttendance/InterfaceEvents.ts:16](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/components/EventManagement/EventAttendance/InterfaceEvents.ts#L16) + +*** + +### tagsAssignedWith + +> **tagsAssignedWith**: `object` + +Defined in: [src/components/EventManagement/EventAttendance/InterfaceEvents.ts:25](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/components/EventManagement/EventAttendance/InterfaceEvents.ts#L25) + +#### edges + +> **edges**: `object`[] diff --git a/docs/docs/auto-docs/components/EventManagement/EventAttendance/InterfaceEvents/interfaces/InterfaceRecurringEvent.md b/docs/docs/auto-docs/components/EventManagement/EventAttendance/InterfaceEvents/interfaces/InterfaceRecurringEvent.md new file mode 100644 index 0000000000..6321b4d1cd --- /dev/null +++ b/docs/docs/auto-docs/components/EventManagement/EventAttendance/InterfaceEvents/interfaces/InterfaceRecurringEvent.md @@ -0,0 +1,87 @@ +[Admin Docs](/) + +*** + +# Interface: InterfaceRecurringEvent + +Defined in: [src/components/EventManagement/EventAttendance/InterfaceEvents.ts:69](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/components/EventManagement/EventAttendance/InterfaceEvents.ts#L69) + +## Properties + +### \_id + +> **\_id**: `string` + +Defined in: [src/components/EventManagement/EventAttendance/InterfaceEvents.ts:70](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/components/EventManagement/EventAttendance/InterfaceEvents.ts#L70) + +*** + +### attendees + +> **attendees**: `object`[] + +Defined in: [src/components/EventManagement/EventAttendance/InterfaceEvents.ts:76](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/components/EventManagement/EventAttendance/InterfaceEvents.ts#L76) + +#### \_id + +> **\_id**: `string` + +#### gender + +> **gender**: `"MALE"` \| `"FEMALE"` \| `"OTHER"` \| `"PREFER_NOT_TO_SAY"` + +*** + +### endDate + +> **endDate**: `string` + +Defined in: [src/components/EventManagement/EventAttendance/InterfaceEvents.ts:73](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/components/EventManagement/EventAttendance/InterfaceEvents.ts#L73) + +*** + +### frequency + +> **frequency**: `string` + +Defined in: [src/components/EventManagement/EventAttendance/InterfaceEvents.ts:74](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/components/EventManagement/EventAttendance/InterfaceEvents.ts#L74) + +*** + +### interval + +> **interval**: `number` + +Defined in: [src/components/EventManagement/EventAttendance/InterfaceEvents.ts:75](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/components/EventManagement/EventAttendance/InterfaceEvents.ts#L75) + +*** + +### isPublic + +> **isPublic**: `boolean` + +Defined in: [src/components/EventManagement/EventAttendance/InterfaceEvents.ts:80](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/components/EventManagement/EventAttendance/InterfaceEvents.ts#L80) + +*** + +### isRegisterable + +> **isRegisterable**: `boolean` + +Defined in: [src/components/EventManagement/EventAttendance/InterfaceEvents.ts:81](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/components/EventManagement/EventAttendance/InterfaceEvents.ts#L81) + +*** + +### startDate + +> **startDate**: `string` + +Defined in: [src/components/EventManagement/EventAttendance/InterfaceEvents.ts:72](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/components/EventManagement/EventAttendance/InterfaceEvents.ts#L72) + +*** + +### title + +> **title**: `string` + +Defined in: [src/components/EventManagement/EventAttendance/InterfaceEvents.ts:71](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/components/EventManagement/EventAttendance/InterfaceEvents.ts#L71) diff --git a/docs/docs/auto-docs/components/EventManagement/EventRegistrant/EventRegistrants/functions/default.md b/docs/docs/auto-docs/components/EventManagement/EventRegistrant/EventRegistrants/functions/default.md new file mode 100644 index 0000000000..123a12cca3 --- /dev/null +++ b/docs/docs/auto-docs/components/EventManagement/EventRegistrant/EventRegistrants/functions/default.md @@ -0,0 +1,18 @@ +[Admin Docs](/) + +*** + +# Function: default() + +> **default**(): `JSX.Element` + +Defined in: [src/components/EventManagement/EventRegistrant/EventRegistrants.tsx:34](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/components/EventManagement/EventRegistrant/EventRegistrants.tsx#L34) + +Component to manage and display event registrant information +Includes adding new registrants and check-in functionality for registrants + +## Returns + +`JSX.Element` + +JSX element containing the event attendance interface diff --git a/docs/docs/auto-docs/components/EventManagement/EventRegistrant/Registrations.mocks/variables/REGISTRANTS_MOCKS.md b/docs/docs/auto-docs/components/EventManagement/EventRegistrant/Registrations.mocks/variables/REGISTRANTS_MOCKS.md new file mode 100644 index 0000000000..082741e093 --- /dev/null +++ b/docs/docs/auto-docs/components/EventManagement/EventRegistrant/Registrations.mocks/variables/REGISTRANTS_MOCKS.md @@ -0,0 +1,9 @@ +[Admin Docs](/) + +*** + +# Variable: REGISTRANTS\_MOCKS + +> `const` **REGISTRANTS\_MOCKS**: (\{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `eventId`: `string`; `id`: `undefined`; \}; \}; `result`: \{ `data`: \{ `event`: `undefined`; `getEventAttendeesByEventId`: `object`[]; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `eventId`: `undefined`; `id`: `string`; \}; \}; `result`: \{ `data`: \{ `event`: \{ `attendees`: `object`[]; \}; `getEventAttendeesByEventId`: `undefined`; \}; \}; \})[] + +Defined in: [src/components/EventManagement/EventRegistrant/Registrations.mocks.ts:3](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/components/EventManagement/EventRegistrant/Registrations.mocks.ts#L3) diff --git a/docs/docs/auto-docs/components/EventManagement/EventRegistrant/Registrations.mocks/variables/REGISTRANTS_MOCKS_ERROR.md b/docs/docs/auto-docs/components/EventManagement/EventRegistrant/Registrations.mocks/variables/REGISTRANTS_MOCKS_ERROR.md new file mode 100644 index 0000000000..aa3026a71c --- /dev/null +++ b/docs/docs/auto-docs/components/EventManagement/EventRegistrant/Registrations.mocks/variables/REGISTRANTS_MOCKS_ERROR.md @@ -0,0 +1,31 @@ +[Admin Docs](/) + +*** + +# Variable: REGISTRANTS\_MOCKS\_ERROR + +> `const` **REGISTRANTS\_MOCKS\_ERROR**: `object`[] + +Defined in: [src/components/EventManagement/EventRegistrant/Registrations.mocks.ts:58](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/components/EventManagement/EventRegistrant/Registrations.mocks.ts#L58) + +## Type declaration + +### error + +> **error**: `Error` + +### request + +> **request**: `object` + +#### request.query + +> **query**: `DocumentNode` = `EVENT_REGISTRANTS` + +#### request.variables + +> **variables**: `object` + +#### request.variables.eventId + +> **eventId**: `string` = `'event123'` diff --git a/docs/docs/auto-docs/components/EventRegistrantsModal/AddOnSpotAttendee/functions/default.md b/docs/docs/auto-docs/components/EventRegistrantsModal/AddOnSpotAttendee/functions/default.md new file mode 100644 index 0000000000..7755de837b --- /dev/null +++ b/docs/docs/auto-docs/components/EventRegistrantsModal/AddOnSpotAttendee/functions/default.md @@ -0,0 +1,33 @@ +[Admin Docs](/) + +*** + +# Function: default() + +> **default**(`props`, `deprecatedLegacyContext`?): `ReactNode` + +Defined in: [src/components/EventRegistrantsModal/AddOnSpotAttendee.tsx:21](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/components/EventRegistrantsModal/AddOnSpotAttendee.tsx#L21) + +Modal component for adding on-spot attendees to an event + +## Parameters + +### props + +[`InterfaceAddOnSpotAttendeeProps`](../../../../utils/interfaces/interfaces/InterfaceAddOnSpotAttendeeProps.md) + +### deprecatedLegacyContext? + +`any` + +**Deprecated** + +**See** + +[React Docs](https://legacy.reactjs.org/docs/legacy-context.html#referencing-context-in-lifecycle-methods) + +## Returns + +`ReactNode` + +Modal component with form for adding new attendee diff --git a/docs/docs/auto-docs/components/EventRegistrantsModal/EventRegistrantsModal/functions/EventRegistrantsModal.md b/docs/docs/auto-docs/components/EventRegistrantsModal/EventRegistrantsModal/functions/EventRegistrantsModal.md new file mode 100644 index 0000000000..99b867cab9 --- /dev/null +++ b/docs/docs/auto-docs/components/EventRegistrantsModal/EventRegistrantsModal/functions/EventRegistrantsModal.md @@ -0,0 +1,24 @@ +[Admin Docs](/) + +*** + +# Function: EventRegistrantsModal() + +> **EventRegistrantsModal**(`props`): `Element` + +Defined in: [src/components/EventRegistrantsModal/EventRegistrantsModal.tsx:44](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/components/EventRegistrantsModal/EventRegistrantsModal.tsx#L44) + +Modal component for managing event registrants. +Allows adding and removing attendees from an event. + +## Parameters + +### props + +`ModalPropType` + +## Returns + +`Element` + +JSX element representing the modal. diff --git a/docs/docs/auto-docs/components/EventRegistrantsModal/EventRegistrantsWrapper/functions/EventRegistrantsWrapper.md b/docs/docs/auto-docs/components/EventRegistrantsModal/EventRegistrantsWrapper/functions/EventRegistrantsWrapper.md new file mode 100644 index 0000000000..cbb627ebe7 --- /dev/null +++ b/docs/docs/auto-docs/components/EventRegistrantsModal/EventRegistrantsWrapper/functions/EventRegistrantsWrapper.md @@ -0,0 +1,23 @@ +[Admin Docs](/) + +*** + +# Function: EventRegistrantsWrapper() + +> **EventRegistrantsWrapper**(`__namedParameters`): `Element` + +Defined in: [src/components/EventRegistrantsModal/EventRegistrantsWrapper.tsx:20](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/components/EventRegistrantsModal/EventRegistrantsWrapper.tsx#L20) + +Wrapper component that displays a button to show the event registrants modal. + +## Parameters + +### \_\_namedParameters + +`PropType` + +## Returns + +`Element` + +JSX element representing the wrapper with a button to show the modal. diff --git a/docs/docs/auto-docs/components/EventStats/EventStats/functions/EventStats.md b/docs/docs/auto-docs/components/EventStats/EventStats/functions/EventStats.md new file mode 100644 index 0000000000..ff17d6ccb1 --- /dev/null +++ b/docs/docs/auto-docs/components/EventStats/EventStats/functions/EventStats.md @@ -0,0 +1,24 @@ +[Admin Docs](/) + +*** + +# Function: EventStats() + +> **EventStats**(`__namedParameters`): `Element` + +Defined in: [src/components/EventStats/EventStats.tsx:27](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/components/EventStats/EventStats.tsx#L27) + +Component that displays event statistics in a modal. +Shows feedback, reviews, and average rating for the event. + +## Parameters + +### \_\_namedParameters + +`ModalPropType` + +## Returns + +`Element` + +JSX element representing the event statistics modal. diff --git a/docs/docs/auto-docs/components/EventStats/EventStatsWrapper/functions/EventStatsWrapper.md b/docs/docs/auto-docs/components/EventStats/EventStatsWrapper/functions/EventStatsWrapper.md new file mode 100644 index 0000000000..212e801a6a --- /dev/null +++ b/docs/docs/auto-docs/components/EventStats/EventStatsWrapper/functions/EventStatsWrapper.md @@ -0,0 +1,25 @@ +[Admin Docs](/) + +*** + +# Function: EventStatsWrapper() + +> **EventStatsWrapper**(`eventId`): `Element` + +Defined in: [src/components/EventStats/EventStatsWrapper.tsx:18](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/components/EventStats/EventStatsWrapper.tsx#L18) + +Wrapper component that displays a button to show event statistics. + +## Parameters + +### eventId + +`PropType` + +The ID of the event. + +## Returns + +`Element` + +JSX element representing the wrapper with a button to view event statistics. diff --git a/docs/docs/auto-docs/components/EventStats/Statistics/AverageRating/functions/AverageRating.md b/docs/docs/auto-docs/components/EventStats/Statistics/AverageRating/functions/AverageRating.md new file mode 100644 index 0000000000..92bd8a6e9a --- /dev/null +++ b/docs/docs/auto-docs/components/EventStats/Statistics/AverageRating/functions/AverageRating.md @@ -0,0 +1,26 @@ +[Admin Docs](/) + +*** + +# Function: AverageRating() + +> **AverageRating**(`data`): `Element` + +Defined in: [src/components/EventStats/Statistics/AverageRating.tsx:33](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/components/EventStats/Statistics/AverageRating.tsx#L33) + +Component that displays the average rating for an event. +Shows a rating value and a star rating icon. + +## Parameters + +### data + +`ModalPropType` + +Data containing the average feedback score to be displayed. + +## Returns + +`Element` + +JSX element representing the average rating card with a star rating. diff --git a/docs/docs/auto-docs/components/EventStats/Statistics/Feedback/functions/FeedbackStats.md b/docs/docs/auto-docs/components/EventStats/Statistics/Feedback/functions/FeedbackStats.md new file mode 100644 index 0000000000..96d8f36dcb --- /dev/null +++ b/docs/docs/auto-docs/components/EventStats/Statistics/Feedback/functions/FeedbackStats.md @@ -0,0 +1,26 @@ +[Admin Docs](/) + +*** + +# Function: FeedbackStats() + +> **FeedbackStats**(`data`): `Element` + +Defined in: [src/components/EventStats/Statistics/Feedback.tsx:34](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/components/EventStats/Statistics/Feedback.tsx#L34) + +Component that displays a pie chart of feedback ratings for an event. +Shows how many people gave each rating. + +## Parameters + +### data + +`ModalPropType` + +Data containing event feedback to be displayed in the chart. + +## Returns + +`Element` + +JSX element representing the feedback analysis card with a pie chart. diff --git a/docs/docs/auto-docs/components/EventStats/Statistics/Review/functions/ReviewStats.md b/docs/docs/auto-docs/components/EventStats/Statistics/Review/functions/ReviewStats.md new file mode 100644 index 0000000000..83f9bf4039 --- /dev/null +++ b/docs/docs/auto-docs/components/EventStats/Statistics/Review/functions/ReviewStats.md @@ -0,0 +1,26 @@ +[Admin Docs](/) + +*** + +# Function: ReviewStats() + +> **ReviewStats**(`data`): `Element` + +Defined in: [src/components/EventStats/Statistics/Review.tsx:30](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/components/EventStats/Statistics/Review.tsx#L30) + +Component that displays reviews for an event. +Shows a list of reviews with ratings and text. + +## Parameters + +### data + +`ModalPropType` + +Data containing event feedback to be displayed. + +## Returns + +`Element` + +JSX element representing the reviews card. diff --git a/docs/docs/auto-docs/components/GroupChatDetails/GroupChatDetails/functions/default.md b/docs/docs/auto-docs/components/GroupChatDetails/GroupChatDetails/functions/default.md new file mode 100644 index 0000000000..727a8d6772 --- /dev/null +++ b/docs/docs/auto-docs/components/GroupChatDetails/GroupChatDetails/functions/default.md @@ -0,0 +1,23 @@ +[Admin Docs](/) + +*** + +# Function: default() + +> **default**(`__namedParameters`): `JSX.Element` + +Defined in: [src/components/GroupChatDetails/GroupChatDetails.tsx:120](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/components/GroupChatDetails/GroupChatDetails.tsx#L120) + +Component for displaying and managing group chat details. + +## Parameters + +### \_\_namedParameters + +`InterfaceGoroupChatDetailsProps` + +## Returns + +`JSX.Element` + +The rendered component. diff --git a/docs/docs/auto-docs/components/HolidayCards/HolidayCard/functions/default.md b/docs/docs/auto-docs/components/HolidayCards/HolidayCard/functions/default.md new file mode 100644 index 0000000000..b8e01deb14 --- /dev/null +++ b/docs/docs/auto-docs/components/HolidayCards/HolidayCard/functions/default.md @@ -0,0 +1,25 @@ +[Admin Docs](/) + +*** + +# Function: default() + +> **default**(`props`): `Element` + +Defined in: [src/components/HolidayCards/HolidayCard.tsx:15](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/components/HolidayCards/HolidayCard.tsx#L15) + +Component that displays a card with the name of a holiday. + +## Parameters + +### props + +`InterfaceHolidayList` + +Contains the holidayName to be displayed on the card. + +## Returns + +`Element` + +JSX element representing a card with the holiday name. diff --git a/docs/docs/auto-docs/components/IconComponent/IconComponent/functions/default.md b/docs/docs/auto-docs/components/IconComponent/IconComponent/functions/default.md new file mode 100644 index 0000000000..4c5de7e2e3 --- /dev/null +++ b/docs/docs/auto-docs/components/IconComponent/IconComponent/functions/default.md @@ -0,0 +1,25 @@ +[Admin Docs](/) + +*** + +# Function: default() + +> **default**(`props`): `Element` + +Defined in: [src/components/IconComponent/IconComponent.tsx:39](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/components/IconComponent/IconComponent.tsx#L39) + +Renders an icon based on the provided name. + +## Parameters + +### props + +[`InterfaceIconComponent`](../interfaces/InterfaceIconComponent.md) + +Contains the name of the icon and optional styles (fill, height, width). + +## Returns + +`Element` + +JSX element representing the icon. diff --git a/docs/docs/auto-docs/components/IconComponent/IconComponent/interfaces/InterfaceIconComponent.md b/docs/docs/auto-docs/components/IconComponent/IconComponent/interfaces/InterfaceIconComponent.md new file mode 100644 index 0000000000..9ee4b1b82f --- /dev/null +++ b/docs/docs/auto-docs/components/IconComponent/IconComponent/interfaces/InterfaceIconComponent.md @@ -0,0 +1,39 @@ +[Admin Docs](/) + +*** + +# Interface: InterfaceIconComponent + +Defined in: [src/components/IconComponent/IconComponent.tsx:27](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/components/IconComponent/IconComponent.tsx#L27) + +## Properties + +### fill? + +> `optional` **fill**: `string` + +Defined in: [src/components/IconComponent/IconComponent.tsx:29](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/components/IconComponent/IconComponent.tsx#L29) + +*** + +### height? + +> `optional` **height**: `string` + +Defined in: [src/components/IconComponent/IconComponent.tsx:30](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/components/IconComponent/IconComponent.tsx#L30) + +*** + +### name + +> **name**: `string` + +Defined in: [src/components/IconComponent/IconComponent.tsx:28](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/components/IconComponent/IconComponent.tsx#L28) + +*** + +### width? + +> `optional` **width**: `string` + +Defined in: [src/components/IconComponent/IconComponent.tsx:31](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/components/IconComponent/IconComponent.tsx#L31) diff --git a/docs/docs/auto-docs/components/InfiniteScrollLoader/InfiniteScrollLoader/functions/default.md b/docs/docs/auto-docs/components/InfiniteScrollLoader/InfiniteScrollLoader/functions/default.md new file mode 100644 index 0000000000..da3fca5087 --- /dev/null +++ b/docs/docs/auto-docs/components/InfiniteScrollLoader/InfiniteScrollLoader/functions/default.md @@ -0,0 +1,15 @@ +[Admin Docs](/) + +*** + +# Function: default() + +> **default**(): `Element` + +Defined in: [src/components/InfiniteScrollLoader/InfiniteScrollLoader.tsx:8](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/components/InfiniteScrollLoader/InfiniteScrollLoader.tsx#L8) + +A Loader for infinite scroll. + +## Returns + +`Element` diff --git a/docs/docs/auto-docs/components/LeftDrawer/LeftDrawer/functions/default.md b/docs/docs/auto-docs/components/LeftDrawer/LeftDrawer/functions/default.md new file mode 100644 index 0000000000..413650dda1 --- /dev/null +++ b/docs/docs/auto-docs/components/LeftDrawer/LeftDrawer/functions/default.md @@ -0,0 +1,23 @@ +[Admin Docs](/) + +*** + +# Function: default() + +> **default**(`__namedParameters`): `Element` + +Defined in: [src/components/LeftDrawer/LeftDrawer.tsx:24](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/components/LeftDrawer/LeftDrawer.tsx#L24) + +LeftDrawer component for displaying navigation options. + +## Parameters + +### \_\_namedParameters + +[`InterfaceLeftDrawerProps`](../interfaces/InterfaceLeftDrawerProps.md) + +## Returns + +`Element` + +JSX element for the left navigation drawer. diff --git a/docs/docs/auto-docs/components/LeftDrawer/LeftDrawer/interfaces/InterfaceLeftDrawerProps.md b/docs/docs/auto-docs/components/LeftDrawer/LeftDrawer/interfaces/InterfaceLeftDrawerProps.md new file mode 100644 index 0000000000..4a1a5d50bc --- /dev/null +++ b/docs/docs/auto-docs/components/LeftDrawer/LeftDrawer/interfaces/InterfaceLeftDrawerProps.md @@ -0,0 +1,23 @@ +[Admin Docs](/) + +*** + +# Interface: InterfaceLeftDrawerProps + +Defined in: [src/components/LeftDrawer/LeftDrawer.tsx:12](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/components/LeftDrawer/LeftDrawer.tsx#L12) + +## Properties + +### hideDrawer + +> **hideDrawer**: `boolean` + +Defined in: [src/components/LeftDrawer/LeftDrawer.tsx:13](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/components/LeftDrawer/LeftDrawer.tsx#L13) + +*** + +### setHideDrawer + +> **setHideDrawer**: `Dispatch`\<`SetStateAction`\<`boolean`\>\> + +Defined in: [src/components/LeftDrawer/LeftDrawer.tsx:14](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/components/LeftDrawer/LeftDrawer.tsx#L14) diff --git a/docs/docs/auto-docs/components/LeftDrawerOrg/LeftDrawerOrg/functions/default.md b/docs/docs/auto-docs/components/LeftDrawerOrg/LeftDrawerOrg/functions/default.md new file mode 100644 index 0000000000..1f4434da29 --- /dev/null +++ b/docs/docs/auto-docs/components/LeftDrawerOrg/LeftDrawerOrg/functions/default.md @@ -0,0 +1,23 @@ +[Admin Docs](/) + +*** + +# Function: default() + +> **default**(`__namedParameters`): `Element` + +Defined in: [src/components/LeftDrawerOrg/LeftDrawerOrg.tsx:35](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/components/LeftDrawerOrg/LeftDrawerOrg.tsx#L35) + +LeftDrawerOrg component for displaying organization details and navigation options. + +## Parameters + +### \_\_namedParameters + +[`InterfaceLeftDrawerProps`](../interfaces/InterfaceLeftDrawerProps.md) + +## Returns + +`Element` + +JSX element for the left navigation drawer with organization details. diff --git a/docs/docs/auto-docs/components/LeftDrawerOrg/LeftDrawerOrg/interfaces/InterfaceLeftDrawerProps.md b/docs/docs/auto-docs/components/LeftDrawerOrg/LeftDrawerOrg/interfaces/InterfaceLeftDrawerProps.md new file mode 100644 index 0000000000..bbbe127c27 --- /dev/null +++ b/docs/docs/auto-docs/components/LeftDrawerOrg/LeftDrawerOrg/interfaces/InterfaceLeftDrawerProps.md @@ -0,0 +1,39 @@ +[Admin Docs](/) + +*** + +# Interface: InterfaceLeftDrawerProps + +Defined in: [src/components/LeftDrawerOrg/LeftDrawerOrg.tsx:18](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/components/LeftDrawerOrg/LeftDrawerOrg.tsx#L18) + +## Properties + +### hideDrawer + +> **hideDrawer**: `boolean` + +Defined in: [src/components/LeftDrawerOrg/LeftDrawerOrg.tsx:21](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/components/LeftDrawerOrg/LeftDrawerOrg.tsx#L21) + +*** + +### orgId + +> **orgId**: `string` + +Defined in: [src/components/LeftDrawerOrg/LeftDrawerOrg.tsx:19](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/components/LeftDrawerOrg/LeftDrawerOrg.tsx#L19) + +*** + +### setHideDrawer + +> **setHideDrawer**: `Dispatch`\<`SetStateAction`\<`boolean`\>\> + +Defined in: [src/components/LeftDrawerOrg/LeftDrawerOrg.tsx:22](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/components/LeftDrawerOrg/LeftDrawerOrg.tsx#L22) + +*** + +### targets + +> **targets**: [`TargetsType`](../../../../state/reducers/routesReducer/type-aliases/TargetsType.md)[] + +Defined in: [src/components/LeftDrawerOrg/LeftDrawerOrg.tsx:20](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/components/LeftDrawerOrg/LeftDrawerOrg.tsx#L20) diff --git a/docs/docs/auto-docs/components/Loader/Loader/functions/default.md b/docs/docs/auto-docs/components/Loader/Loader/functions/default.md new file mode 100644 index 0000000000..09741a9cca --- /dev/null +++ b/docs/docs/auto-docs/components/Loader/Loader/functions/default.md @@ -0,0 +1,23 @@ +[Admin Docs](/) + +*** + +# Function: default() + +> **default**(`props`): `Element` + +Defined in: [src/components/Loader/Loader.tsx:17](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/components/Loader/Loader.tsx#L17) + +Loader component for displaying a loading spinner. + +## Parameters + +### props + +`InterfaceLoaderProps` + +## Returns + +`Element` + +JSX element for a loading spinner. diff --git a/docs/docs/auto-docs/components/LoginPortalToggle/LoginPortalToggle/functions/default.md b/docs/docs/auto-docs/components/LoginPortalToggle/LoginPortalToggle/functions/default.md new file mode 100644 index 0000000000..cf0bb4f52c --- /dev/null +++ b/docs/docs/auto-docs/components/LoginPortalToggle/LoginPortalToggle/functions/default.md @@ -0,0 +1,25 @@ +[Admin Docs](/) + +*** + +# Function: default() + +> **default**(`onToggle`): `JSX.Element` + +Defined in: [src/components/LoginPortalToggle/LoginPortalToggle.tsx:18](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/components/LoginPortalToggle/LoginPortalToggle.tsx#L18) + +Component for toggling between admin and user login portals. + +## Parameters + +### onToggle + +`InterfaceLoginPortalToggleProps` + +Callback function to handle role changes ('admin' or 'user'). + +## Returns + +`JSX.Element` + +JSX element for login portal toggle. diff --git a/docs/docs/auto-docs/components/MemberDetail/EventsAttendedByMember/functions/default.md b/docs/docs/auto-docs/components/MemberDetail/EventsAttendedByMember/functions/default.md new file mode 100644 index 0000000000..75c653d419 --- /dev/null +++ b/docs/docs/auto-docs/components/MemberDetail/EventsAttendedByMember/functions/default.md @@ -0,0 +1,19 @@ +[Admin Docs](/) + +*** + +# Function: default() + +> **default**(`__namedParameters`): `JSX.Element` + +Defined in: [src/components/MemberDetail/EventsAttendedByMember.tsx:15](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/components/MemberDetail/EventsAttendedByMember.tsx#L15) + +## Parameters + +### \_\_namedParameters + +`InterfaceEventsAttendedByMember` + +## Returns + +`JSX.Element` diff --git a/docs/docs/auto-docs/components/MemberDetail/EventsAttendedCardItem/functions/default.md b/docs/docs/auto-docs/components/MemberDetail/EventsAttendedCardItem/functions/default.md new file mode 100644 index 0000000000..52fa3e38b8 --- /dev/null +++ b/docs/docs/auto-docs/components/MemberDetail/EventsAttendedCardItem/functions/default.md @@ -0,0 +1,19 @@ +[Admin Docs](/) + +*** + +# Function: default() + +> **default**(`props`): `Element` + +Defined in: [src/components/MemberDetail/EventsAttendedCardItem.tsx:26](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/components/MemberDetail/EventsAttendedCardItem.tsx#L26) + +## Parameters + +### props + +[`InterfaceCardItem`](../interfaces/InterfaceCardItem.md) + +## Returns + +`Element` diff --git a/docs/docs/auto-docs/components/MemberDetail/EventsAttendedCardItem/interfaces/InterfaceCardItem.md b/docs/docs/auto-docs/components/MemberDetail/EventsAttendedCardItem/interfaces/InterfaceCardItem.md new file mode 100644 index 0000000000..90dd092053 --- /dev/null +++ b/docs/docs/auto-docs/components/MemberDetail/EventsAttendedCardItem/interfaces/InterfaceCardItem.md @@ -0,0 +1,86 @@ +[Admin Docs](/) + +*** + +# Interface: InterfaceCardItem + +Defined in: [src/components/MemberDetail/EventsAttendedCardItem.tsx:16](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/components/MemberDetail/EventsAttendedCardItem.tsx#L16) + +Card component to display individual event attendance information +Shows event details including title, date, location and organization + +## Param + +Organization ID + +## Param + +Event ID + +## Param + +Event start date + +## Param + +Event title + +## Param + +Event location + +## Properties + +### creator? + +> `optional` **creator**: `string` + +Defined in: [src/components/MemberDetail/EventsAttendedCardItem.tsx:20](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/components/MemberDetail/EventsAttendedCardItem.tsx#L20) + +*** + +### eventId? + +> `optional` **eventId**: `string` + +Defined in: [src/components/MemberDetail/EventsAttendedCardItem.tsx:22](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/components/MemberDetail/EventsAttendedCardItem.tsx#L22) + +*** + +### location? + +> `optional` **location**: `string` + +Defined in: [src/components/MemberDetail/EventsAttendedCardItem.tsx:21](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/components/MemberDetail/EventsAttendedCardItem.tsx#L21) + +*** + +### orgId? + +> `optional` **orgId**: `string` + +Defined in: [src/components/MemberDetail/EventsAttendedCardItem.tsx:23](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/components/MemberDetail/EventsAttendedCardItem.tsx#L23) + +*** + +### startdate? + +> `optional` **startdate**: `string` + +Defined in: [src/components/MemberDetail/EventsAttendedCardItem.tsx:19](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/components/MemberDetail/EventsAttendedCardItem.tsx#L19) + +*** + +### time? + +> `optional` **time**: `string` + +Defined in: [src/components/MemberDetail/EventsAttendedCardItem.tsx:18](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/components/MemberDetail/EventsAttendedCardItem.tsx#L18) + +*** + +### title + +> **title**: `string` + +Defined in: [src/components/MemberDetail/EventsAttendedCardItem.tsx:17](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/components/MemberDetail/EventsAttendedCardItem.tsx#L17) diff --git a/docs/docs/auto-docs/components/MemberDetail/EventsAttendedMemberModal/functions/default.md b/docs/docs/auto-docs/components/MemberDetail/EventsAttendedMemberModal/functions/default.md new file mode 100644 index 0000000000..b4ddc6662e --- /dev/null +++ b/docs/docs/auto-docs/components/MemberDetail/EventsAttendedMemberModal/functions/default.md @@ -0,0 +1,29 @@ +[Admin Docs](/) + +*** + +# Function: default() + +> **default**(`props`, `deprecatedLegacyContext`?): `ReactNode` + +Defined in: [src/components/MemberDetail/EventsAttendedMemberModal.tsx:39](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/components/MemberDetail/EventsAttendedMemberModal.tsx#L39) + +## Parameters + +### props + +`InterfaceEventsAttendedMemberModalProps` + +### deprecatedLegacyContext? + +`any` + +**Deprecated** + +**See** + +[React Docs](https://legacy.reactjs.org/docs/legacy-context.html#referencing-context-in-lifecycle-methods) + +## Returns + +`ReactNode` diff --git a/docs/docs/auto-docs/components/MemberDetail/customTableCell/functions/CustomTableCell.md b/docs/docs/auto-docs/components/MemberDetail/customTableCell/functions/CustomTableCell.md new file mode 100644 index 0000000000..074c3db2e9 --- /dev/null +++ b/docs/docs/auto-docs/components/MemberDetail/customTableCell/functions/CustomTableCell.md @@ -0,0 +1,35 @@ +[Admin Docs](/) + +*** + +# Function: CustomTableCell() + +> **CustomTableCell**(`props`, `deprecatedLegacyContext`?): `ReactNode` + +Defined in: [src/components/MemberDetail/customTableCell.tsx:13](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/components/MemberDetail/customTableCell.tsx#L13) + +Custom table cell component to display event details + +## Parameters + +### props + +#### eventId + +`string` + +### deprecatedLegacyContext? + +`any` + +**Deprecated** + +**See** + +[React Docs](https://legacy.reactjs.org/docs/legacy-context.html#referencing-context-in-lifecycle-methods) + +## Returns + +`ReactNode` + +TableRow component with event information diff --git a/docs/docs/auto-docs/components/MemberRequestCard/MemberRequestCard/functions/default.md b/docs/docs/auto-docs/components/MemberRequestCard/MemberRequestCard/functions/default.md new file mode 100644 index 0000000000..90613183a2 --- /dev/null +++ b/docs/docs/auto-docs/components/MemberRequestCard/MemberRequestCard/functions/default.md @@ -0,0 +1,25 @@ +[Admin Docs](/) + +*** + +# Function: default() + +> **default**(`props`): `JSX.Element` + +Defined in: [src/components/MemberRequestCard/MemberRequestCard.tsx:31](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/components/MemberRequestCard/MemberRequestCard.tsx#L31) + +Component for displaying and managing member requests. + +## Parameters + +### props + +`InterfaceMemberRequestCardProps` + +Properties for the member request card. + +## Returns + +`JSX.Element` + +JSX element for member request card. diff --git a/docs/docs/auto-docs/components/NotFound/NotFound/functions/default.md b/docs/docs/auto-docs/components/NotFound/NotFound/functions/default.md new file mode 100644 index 0000000000..38dad17285 --- /dev/null +++ b/docs/docs/auto-docs/components/NotFound/NotFound/functions/default.md @@ -0,0 +1,23 @@ +[Admin Docs](/) + +*** + +# Function: default() + +> **default**(`props`): `JSX.Element` + +Defined in: [src/components/NotFound/NotFound.tsx:18](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/components/NotFound/NotFound.tsx#L18) + +Component to display a "Not Found" message. + +## Parameters + +### props + +`InterfaceNotFoundProps` + +## Returns + +`JSX.Element` + +JSX element for the "Not Found" page. diff --git a/docs/docs/auto-docs/components/OrgAdminListCard/OrgAdminListCard/functions/default.md b/docs/docs/auto-docs/components/OrgAdminListCard/OrgAdminListCard/functions/default.md new file mode 100644 index 0000000000..df011d4012 --- /dev/null +++ b/docs/docs/auto-docs/components/OrgAdminListCard/OrgAdminListCard/functions/default.md @@ -0,0 +1,23 @@ +[Admin Docs](/) + +*** + +# Function: default() + +> **default**(`props`): `JSX.Element` + +Defined in: [src/components/OrgAdminListCard/OrgAdminListCard.tsx:22](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/components/OrgAdminListCard/OrgAdminListCard.tsx#L22) + +Component to confirm and handle the removal of an admin. + +## Parameters + +### props + +`InterfaceOrgPeopleListCardProps` + +## Returns + +`JSX.Element` + +JSX element for the removal confirmation modal. diff --git a/docs/docs/auto-docs/components/OrgContriCards/OrgContriCards/functions/default.md b/docs/docs/auto-docs/components/OrgContriCards/OrgContriCards/functions/default.md new file mode 100644 index 0000000000..ba4b9ff34f --- /dev/null +++ b/docs/docs/auto-docs/components/OrgContriCards/OrgContriCards/functions/default.md @@ -0,0 +1,28 @@ +[Admin Docs](/) + +*** + +# Function: default() + +> **default**(`props`): `JSX.Element` + +Defined in: [src/components/OrgContriCards/OrgContriCards.tsx:30](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/components/OrgContriCards/OrgContriCards.tsx#L30) + +Component to display organization contribution cards + +This component shows the contribution details of a user in a card format. It includes +the user's name, email, contribution date, transaction ID, and the contribution amount. + +## Parameters + +### props + +`InterfaceOrgContriCardsProps` + +The properties passed to the component + +## Returns + +`JSX.Element` + +JSX.Element representing a contribution card diff --git a/docs/docs/auto-docs/components/OrgDelete/OrgDelete/functions/default.md b/docs/docs/auto-docs/components/OrgDelete/OrgDelete/functions/default.md new file mode 100644 index 0000000000..9353918a25 --- /dev/null +++ b/docs/docs/auto-docs/components/OrgDelete/OrgDelete/functions/default.md @@ -0,0 +1,19 @@ +[Admin Docs](/) + +*** + +# Function: default() + +> **default**(): `JSX.Element` + +Defined in: [src/components/OrgDelete/OrgDelete.tsx:11](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/components/OrgDelete/OrgDelete.tsx#L11) + +Component for displaying organization deletion message + +This component renders a message related to deleting an organization. + +## Returns + +`JSX.Element` + +JSX.Element representing the organization deletion message diff --git a/docs/docs/auto-docs/components/OrgListCard/OrgListCard/functions/default.md b/docs/docs/auto-docs/components/OrgListCard/OrgListCard/functions/default.md new file mode 100644 index 0000000000..b602abbdb8 --- /dev/null +++ b/docs/docs/auto-docs/components/OrgListCard/OrgListCard/functions/default.md @@ -0,0 +1,29 @@ +[Admin Docs](/) + +*** + +# Function: default() + +> **default**(`props`): `JSX.Element` + +Defined in: [src/components/OrgListCard/OrgListCard.tsx:38](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/components/OrgListCard/OrgListCard.tsx#L38) + +Component for displaying a list card for an organization + +This component renders a card that displays information about an organization, +including its name, address, members, and admins. It also provides a button +to manage the organization, navigating to the organization's dashboard. + +## Parameters + +### props + +[`InterfaceOrgListCardProps`](../interfaces/InterfaceOrgListCardProps.md) + +The properties passed to the component + +## Returns + +`JSX.Element` + +JSX.Element representing an organization list card diff --git a/docs/docs/auto-docs/components/OrgListCard/OrgListCard/interfaces/InterfaceOrgListCardProps.md b/docs/docs/auto-docs/components/OrgListCard/OrgListCard/interfaces/InterfaceOrgListCardProps.md new file mode 100644 index 0000000000..df772ee66d --- /dev/null +++ b/docs/docs/auto-docs/components/OrgListCard/OrgListCard/interfaces/InterfaceOrgListCardProps.md @@ -0,0 +1,17 @@ +[Admin Docs](/) + +*** + +# Interface: InterfaceOrgListCardProps + +Defined in: [src/components/OrgListCard/OrgListCard.tsx:24](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/components/OrgListCard/OrgListCard.tsx#L24) + +Props for the OrgListCard component + +## Properties + +### data + +> **data**: [`InterfaceOrgConnectionInfoType`](../../../../utils/interfaces/interfaces/InterfaceOrgConnectionInfoType.md) + +Defined in: [src/components/OrgListCard/OrgListCard.tsx:25](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/components/OrgListCard/OrgListCard.tsx#L25) diff --git a/docs/docs/auto-docs/components/OrgListCard/TruncatedText/functions/default.md b/docs/docs/auto-docs/components/OrgListCard/TruncatedText/functions/default.md new file mode 100644 index 0000000000..92b2cbac8c --- /dev/null +++ b/docs/docs/auto-docs/components/OrgListCard/TruncatedText/functions/default.md @@ -0,0 +1,45 @@ +[Admin Docs](/) + +*** + +# Function: default() + +> **default**(`props`, `deprecatedLegacyContext`?): `ReactNode` + +Defined in: [src/components/OrgListCard/TruncatedText.tsx:31](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/components/OrgListCard/TruncatedText.tsx#L31) + +A React functional component that displays text and truncates it with an ellipsis (`...`) +if the text exceeds the available width or the `maxWidthOverride` value. + +The component adjusts the truncation dynamically based on the available space +or the `maxWidthOverride` value. It also listens for window resize events to reapply truncation. + +## Parameters + +### props + +`InterfaceTruncatedTextProps` + +The props for the component. + +### deprecatedLegacyContext? + +`any` + +**Deprecated** + +**See** + +[React Docs](https://legacy.reactjs.org/docs/legacy-context.html#referencing-context-in-lifecycle-methods) + +## Returns + +`ReactNode` + +A heading element (`
`) containing the truncated or full text. + +## Example + +```tsx + +``` diff --git a/docs/docs/auto-docs/components/OrgListCard/useDebounce/functions/default.md b/docs/docs/auto-docs/components/OrgListCard/useDebounce/functions/default.md new file mode 100644 index 0000000000..b12d0019a9 --- /dev/null +++ b/docs/docs/auto-docs/components/OrgListCard/useDebounce/functions/default.md @@ -0,0 +1,59 @@ +[Admin Docs](/) + +*** + +# Function: default() + +> **default**\<`T`\>(`callback`, `delay`): `object` + +Defined in: [src/components/OrgListCard/useDebounce.tsx:12](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/components/OrgListCard/useDebounce.tsx#L12) + +A custom React hook for debouncing a callback function. +It delays the execution of the callback until after a specified delay has elapsed +since the last time the debounced function was invoked. + +## Type Parameters + +• **T** *extends* (...`args`) => `void` + +## Parameters + +### callback + +`T` + +The function to debounce. + +### delay + +`number` + +The delay in milliseconds to wait before invoking the callback. + +## Returns + +`object` + +An object with the `debouncedCallback` function and a `cancel` method to clear the timeout. + +### cancel() + +> **cancel**: () => `void` + +#### Returns + +`void` + +### debouncedCallback() + +> **debouncedCallback**: (...`args`) => `void` + +#### Parameters + +##### args + +...`Parameters`\<`T`\> + +#### Returns + +`void` diff --git a/docs/docs/auto-docs/components/OrgPeopleListCard/OrgPeopleListCard/functions/default.md b/docs/docs/auto-docs/components/OrgPeopleListCard/OrgPeopleListCard/functions/default.md new file mode 100644 index 0000000000..a2133a774b --- /dev/null +++ b/docs/docs/auto-docs/components/OrgPeopleListCard/OrgPeopleListCard/functions/default.md @@ -0,0 +1,28 @@ +[Admin Docs](/) + +*** + +# Function: default() + +> **default**(`props`): `JSX.Element` + +Defined in: [src/components/OrgPeopleListCard/OrgPeopleListCard.tsx:30](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/components/OrgPeopleListCard/OrgPeopleListCard.tsx#L30) + +Component for displaying a modal to remove a member from an organization + +This component shows a modal that confirms the removal of a member from the organization. +It performs the removal action and displays success or error messages. + +## Parameters + +### props + +`InterfaceOrgPeopleListCardProps` + +The properties passed to the component + +## Returns + +`JSX.Element` + +JSX.Element representing the organization people list card modal diff --git a/docs/docs/auto-docs/components/OrgPostCard/DeletePostModal/functions/default.md b/docs/docs/auto-docs/components/OrgPostCard/DeletePostModal/functions/default.md new file mode 100644 index 0000000000..20ad1a6705 --- /dev/null +++ b/docs/docs/auto-docs/components/OrgPostCard/DeletePostModal/functions/default.md @@ -0,0 +1,29 @@ +[Admin Docs](/) + +*** + +# Function: default() + +> **default**(`props`, `deprecatedLegacyContext`?): `ReactNode` + +Defined in: [src/components/OrgPostCard/DeletePostModal.tsx:21](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/components/OrgPostCard/DeletePostModal.tsx#L21) + +## Parameters + +### props + +`InterfaceDeletePostModalProps` + +### deprecatedLegacyContext? + +`any` + +**Deprecated** + +**See** + +[React Docs](https://legacy.reactjs.org/docs/legacy-context.html#referencing-context-in-lifecycle-methods) + +## Returns + +`ReactNode` diff --git a/docs/docs/auto-docs/components/OrgPostCard/OrgPostCard/functions/default.md b/docs/docs/auto-docs/components/OrgPostCard/OrgPostCard/functions/default.md new file mode 100644 index 0000000000..f9e018a4b5 --- /dev/null +++ b/docs/docs/auto-docs/components/OrgPostCard/OrgPostCard/functions/default.md @@ -0,0 +1,19 @@ +[Admin Docs](/) + +*** + +# Function: default() + +> **default**(`props`): `JSX.Element` + +Defined in: [src/components/OrgPostCard/OrgPostCard.tsx:29](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/components/OrgPostCard/OrgPostCard.tsx#L29) + +## Parameters + +### props + +`InterfaceOrgPostCardProps` + +## Returns + +`JSX.Element` diff --git a/docs/docs/auto-docs/components/OrgSettings/ActionItemCategories/CategoryModal/functions/default.md b/docs/docs/auto-docs/components/OrgSettings/ActionItemCategories/CategoryModal/functions/default.md new file mode 100644 index 0000000000..e7c3d1de51 --- /dev/null +++ b/docs/docs/auto-docs/components/OrgSettings/ActionItemCategories/CategoryModal/functions/default.md @@ -0,0 +1,35 @@ +[Admin Docs](/) + +*** + +# Function: default() + +> **default**(`props`, `deprecatedLegacyContext`?): `ReactNode` + +Defined in: [src/components/OrgSettings/ActionItemCategories/CategoryModal.tsx:41](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/components/OrgSettings/ActionItemCategories/CategoryModal.tsx#L41) + +A modal component for creating and editing action item categories. + +## Parameters + +### props + +[`InterfaceActionItemCategoryModal`](../interfaces/InterfaceActionItemCategoryModal.md) + +The properties passed to the component. + +### deprecatedLegacyContext? + +`any` + +**Deprecated** + +**See** + +[React Docs](https://legacy.reactjs.org/docs/legacy-context.html#referencing-context-in-lifecycle-methods) + +## Returns + +`ReactNode` + +The `CategoryModal` component. diff --git a/docs/docs/auto-docs/components/OrgSettings/ActionItemCategories/CategoryModal/interfaces/InterfaceActionItemCategoryModal.md b/docs/docs/auto-docs/components/OrgSettings/ActionItemCategories/CategoryModal/interfaces/InterfaceActionItemCategoryModal.md new file mode 100644 index 0000000000..f1d6b630e2 --- /dev/null +++ b/docs/docs/auto-docs/components/OrgSettings/ActionItemCategories/CategoryModal/interfaces/InterfaceActionItemCategoryModal.md @@ -0,0 +1,72 @@ +[Admin Docs](/) + +*** + +# Interface: InterfaceActionItemCategoryModal + +Defined in: [src/components/OrgSettings/ActionItemCategories/CategoryModal.tsx:26](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/components/OrgSettings/ActionItemCategories/CategoryModal.tsx#L26) + +Props for the `CategoryModal` component. + +isOpen - The state of the modal. +hide - The function to hide the modal. +refetchCategories - The function to refetch the categories. +orgId - The organization ID. +category - The category to be edited. +mode - The mode of the modal. + +## Properties + +### category + +> **category**: [`InterfaceActionItemCategoryInfo`](../../../../../utils/interfaces/interfaces/InterfaceActionItemCategoryInfo.md) + +Defined in: [src/components/OrgSettings/ActionItemCategories/CategoryModal.tsx:31](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/components/OrgSettings/ActionItemCategories/CategoryModal.tsx#L31) + +*** + +### hide() + +> **hide**: () => `void` + +Defined in: [src/components/OrgSettings/ActionItemCategories/CategoryModal.tsx:28](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/components/OrgSettings/ActionItemCategories/CategoryModal.tsx#L28) + +#### Returns + +`void` + +*** + +### isOpen + +> **isOpen**: `boolean` + +Defined in: [src/components/OrgSettings/ActionItemCategories/CategoryModal.tsx:27](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/components/OrgSettings/ActionItemCategories/CategoryModal.tsx#L27) + +*** + +### mode + +> **mode**: `"create"` \| `"edit"` + +Defined in: [src/components/OrgSettings/ActionItemCategories/CategoryModal.tsx:32](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/components/OrgSettings/ActionItemCategories/CategoryModal.tsx#L32) + +*** + +### orgId + +> **orgId**: `string` + +Defined in: [src/components/OrgSettings/ActionItemCategories/CategoryModal.tsx:30](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/components/OrgSettings/ActionItemCategories/CategoryModal.tsx#L30) + +*** + +### refetchCategories() + +> **refetchCategories**: () => `void` + +Defined in: [src/components/OrgSettings/ActionItemCategories/CategoryModal.tsx:29](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/components/OrgSettings/ActionItemCategories/CategoryModal.tsx#L29) + +#### Returns + +`void` diff --git a/docs/docs/auto-docs/components/OrgSettings/ActionItemCategories/OrgActionItemCategories/functions/default.md b/docs/docs/auto-docs/components/OrgSettings/ActionItemCategories/OrgActionItemCategories/functions/default.md new file mode 100644 index 0000000000..9aead11afa --- /dev/null +++ b/docs/docs/auto-docs/components/OrgSettings/ActionItemCategories/OrgActionItemCategories/functions/default.md @@ -0,0 +1,32 @@ +[Admin Docs](/) + +*** + +# Function: default() + +> **default**(`props`, `deprecatedLegacyContext`?): `ReactNode` + +Defined in: [src/components/OrgSettings/ActionItemCategories/OrgActionItemCategories.tsx:61](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/components/OrgSettings/ActionItemCategories/OrgActionItemCategories.tsx#L61) + +Represents the component for managing organization action item categories. +This component allows creating, updating, enabling, and disabling action item categories. + +## Parameters + +### props + +`InterfaceActionItemCategoryProps` + +### deprecatedLegacyContext? + +`any` + +**Deprecated** + +**See** + +[React Docs](https://legacy.reactjs.org/docs/legacy-context.html#referencing-context-in-lifecycle-methods) + +## Returns + +`ReactNode` diff --git a/docs/docs/auto-docs/components/OrgSettings/ActionItemCategories/OrgActionItemCategoryMocks/variables/MOCKS.md b/docs/docs/auto-docs/components/OrgSettings/ActionItemCategories/OrgActionItemCategoryMocks/variables/MOCKS.md new file mode 100644 index 0000000000..adef446b7f --- /dev/null +++ b/docs/docs/auto-docs/components/OrgSettings/ActionItemCategories/OrgActionItemCategoryMocks/variables/MOCKS.md @@ -0,0 +1,9 @@ +[Admin Docs](/) + +*** + +# Variable: MOCKS + +> `const` **MOCKS**: (\{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `actionItemCategoryId`: `undefined`; `isDisabled`: `undefined`; `name`: `undefined`; `orderBy`: `string`; `organizationId`: `string`; `where`: \{ `is_disabled`: `undefined`; `name_contains`: `string`; \}; \}; \}; `result`: \{ `data`: \{ `actionItemCategoriesByOrganization`: `object`[]; `createActionItemCategory`: `undefined`; `updateActionItemCategory`: `undefined`; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `actionItemCategoryId`: `undefined`; `isDisabled`: `undefined`; `name`: `undefined`; `orderBy`: `string`; `organizationId`: `string`; `where`: \{ `is_disabled`: `boolean`; `name_contains`: `string`; \}; \}; \}; `result`: \{ `data`: \{ `actionItemCategoriesByOrganization`: `object`[]; `createActionItemCategory`: `undefined`; `updateActionItemCategory`: `undefined`; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `actionItemCategoryId`: `undefined`; `isDisabled`: `boolean`; `name`: `string`; `orderBy`: `undefined`; `organizationId`: `string`; `where`: `undefined`; \}; \}; `result`: \{ `data`: \{ `actionItemCategoriesByOrganization`: `undefined`; `createActionItemCategory`: \{ `_id`: `string`; \}; `updateActionItemCategory`: `undefined`; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `actionItemCategoryId`: `string`; `isDisabled`: `boolean`; `name`: `string`; `orderBy`: `undefined`; `organizationId`: `undefined`; `where`: `undefined`; \}; \}; `result`: \{ `data`: \{ `actionItemCategoriesByOrganization`: `undefined`; `createActionItemCategory`: `undefined`; `updateActionItemCategory`: \{ `_id`: `string`; \}; \}; \}; \})[] + +Defined in: [src/components/OrgSettings/ActionItemCategories/OrgActionItemCategoryMocks.ts:8](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/components/OrgSettings/ActionItemCategories/OrgActionItemCategoryMocks.ts#L8) diff --git a/docs/docs/auto-docs/components/OrgSettings/ActionItemCategories/OrgActionItemCategoryMocks/variables/MOCKS_EMPTY.md b/docs/docs/auto-docs/components/OrgSettings/ActionItemCategories/OrgActionItemCategoryMocks/variables/MOCKS_EMPTY.md new file mode 100644 index 0000000000..67c66fc67d --- /dev/null +++ b/docs/docs/auto-docs/components/OrgSettings/ActionItemCategories/OrgActionItemCategoryMocks/variables/MOCKS_EMPTY.md @@ -0,0 +1,51 @@ +[Admin Docs](/) + +*** + +# Variable: MOCKS\_EMPTY + +> `const` **MOCKS\_EMPTY**: `object`[] + +Defined in: [src/components/OrgSettings/ActionItemCategories/OrgActionItemCategoryMocks.ts:236](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/components/OrgSettings/ActionItemCategories/OrgActionItemCategoryMocks.ts#L236) + +## Type declaration + +### request + +> **request**: `object` + +#### request.query + +> **query**: `DocumentNode` = `ACTION_ITEM_CATEGORY_LIST` + +#### request.variables + +> **variables**: `object` + +#### request.variables.orderBy + +> **orderBy**: `string` = `'createdAt_DESC'` + +#### request.variables.organizationId + +> **organizationId**: `string` = `'orgId'` + +#### request.variables.where + +> **where**: `object` + +#### request.variables.where.name\_contains + +> **name\_contains**: `string` = `''` + +### result + +> **result**: `object` + +#### result.data + +> **data**: `object` + +#### result.data.actionItemCategoriesByOrganization + +> **actionItemCategoriesByOrganization**: `any`[] = `[]` diff --git a/docs/docs/auto-docs/components/OrgSettings/ActionItemCategories/OrgActionItemCategoryMocks/variables/MOCKS_ERROR.md b/docs/docs/auto-docs/components/OrgSettings/ActionItemCategories/OrgActionItemCategoryMocks/variables/MOCKS_ERROR.md new file mode 100644 index 0000000000..c028535976 --- /dev/null +++ b/docs/docs/auto-docs/components/OrgSettings/ActionItemCategories/OrgActionItemCategoryMocks/variables/MOCKS_ERROR.md @@ -0,0 +1,9 @@ +[Admin Docs](/) + +*** + +# Variable: MOCKS\_ERROR + +> `const` **MOCKS\_ERROR**: (\{ `error`: `Error`; `request`: \{ `query`: `DocumentNode`; `variables`: \{ `actionItemCategoryId`: `undefined`; `isDisabled`: `undefined`; `name`: `undefined`; `orderBy`: `string`; `organizationId`: `string`; `where`: \{ `name_contains`: `string`; \}; \}; \}; \} \| \{ `error`: `Error`; `request`: \{ `query`: `DocumentNode`; `variables`: \{ `actionItemCategoryId`: `undefined`; `isDisabled`: `boolean`; `name`: `string`; `orderBy`: `undefined`; `organizationId`: `string`; `where`: `undefined`; \}; \}; \} \| \{ `error`: `Error`; `request`: \{ `query`: `DocumentNode`; `variables`: \{ `actionItemCategoryId`: `string`; `isDisabled`: `boolean`; `name`: `string`; `orderBy`: `undefined`; `organizationId`: `undefined`; `where`: `undefined`; \}; \}; \})[] + +Defined in: [src/components/OrgSettings/ActionItemCategories/OrgActionItemCategoryMocks.ts:254](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/components/OrgSettings/ActionItemCategories/OrgActionItemCategoryMocks.ts#L254) diff --git a/docs/docs/auto-docs/components/OrgSettings/AgendaItemCategories/AgendaCategoryCreateModal/functions/default.md b/docs/docs/auto-docs/components/OrgSettings/AgendaItemCategories/AgendaCategoryCreateModal/functions/default.md new file mode 100644 index 0000000000..68bdc0189c --- /dev/null +++ b/docs/docs/auto-docs/components/OrgSettings/AgendaItemCategories/AgendaCategoryCreateModal/functions/default.md @@ -0,0 +1,33 @@ +[Admin Docs](/) + +*** + +# Function: default() + +> **default**(`props`, `deprecatedLegacyContext`?): `ReactNode` + +Defined in: [src/components/OrgSettings/AgendaItemCategories/AgendaCategoryCreateModal.tsx:38](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/components/OrgSettings/AgendaItemCategories/AgendaCategoryCreateModal.tsx#L38) + +AgendaCategoryCreateModal component is used to create the agenda category details like name, description + +## Parameters + +### props + +`InterfaceAgendaCategoryCreateModalProps` + +### deprecatedLegacyContext? + +`any` + +**Deprecated** + +**See** + +[React Docs](https://legacy.reactjs.org/docs/legacy-context.html#referencing-context-in-lifecycle-methods) + +## Returns + +`ReactNode` + +returns the AgendaCategoryCreateModal component diff --git a/docs/docs/auto-docs/components/OrgSettings/AgendaItemCategories/AgendaCategoryDeleteModal/functions/default.md b/docs/docs/auto-docs/components/OrgSettings/AgendaItemCategories/AgendaCategoryDeleteModal/functions/default.md new file mode 100644 index 0000000000..2884b55b06 --- /dev/null +++ b/docs/docs/auto-docs/components/OrgSettings/AgendaItemCategories/AgendaCategoryDeleteModal/functions/default.md @@ -0,0 +1,33 @@ +[Admin Docs](/) + +*** + +# Function: default() + +> **default**(`props`, `deprecatedLegacyContext`?): `ReactNode` + +Defined in: [src/components/OrgSettings/AgendaItemCategories/AgendaCategoryDeleteModal.tsx:25](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/components/OrgSettings/AgendaItemCategories/AgendaCategoryDeleteModal.tsx#L25) + +AgendaCategoryDeleteModal component is used to delete the agenda category + +## Parameters + +### props + +`InterfaceAgendaCategoryDeleteModalProps` + +### deprecatedLegacyContext? + +`any` + +**Deprecated** + +**See** + +[React Docs](https://legacy.reactjs.org/docs/legacy-context.html#referencing-context-in-lifecycle-methods) + +## Returns + +`ReactNode` + +returns the AgendaCategoryDeleteModal component diff --git a/docs/docs/auto-docs/components/OrgSettings/AgendaItemCategories/AgendaCategoryPreviewModal/functions/default.md b/docs/docs/auto-docs/components/OrgSettings/AgendaItemCategories/AgendaCategoryPreviewModal/functions/default.md new file mode 100644 index 0000000000..2bfe043adf --- /dev/null +++ b/docs/docs/auto-docs/components/OrgSettings/AgendaItemCategories/AgendaCategoryPreviewModal/functions/default.md @@ -0,0 +1,33 @@ +[Admin Docs](/) + +*** + +# Function: default() + +> **default**(`props`, `deprecatedLegacyContext`?): `ReactNode` + +Defined in: [src/components/OrgSettings/AgendaItemCategories/AgendaCategoryPreviewModal.tsx:38](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/components/OrgSettings/AgendaItemCategories/AgendaCategoryPreviewModal.tsx#L38) + +AgendaCategoryPreviewModal component is used to preview the agenda category details like name, description, createdBy + +## Parameters + +### props + +`InterfaceAgendaCategoryPreviewModalProps` + +### deprecatedLegacyContext? + +`any` + +**Deprecated** + +**See** + +[React Docs](https://legacy.reactjs.org/docs/legacy-context.html#referencing-context-in-lifecycle-methods) + +## Returns + +`ReactNode` + +returns the AgendaCategoryPreviewModal component diff --git a/docs/docs/auto-docs/components/OrgSettings/AgendaItemCategories/AgendaCategoryUpdateModal/functions/default.md b/docs/docs/auto-docs/components/OrgSettings/AgendaItemCategories/AgendaCategoryUpdateModal/functions/default.md new file mode 100644 index 0000000000..ff5411f7e2 --- /dev/null +++ b/docs/docs/auto-docs/components/OrgSettings/AgendaItemCategories/AgendaCategoryUpdateModal/functions/default.md @@ -0,0 +1,33 @@ +[Admin Docs](/) + +*** + +# Function: default() + +> **default**(`props`, `deprecatedLegacyContext`?): `ReactNode` + +Defined in: [src/components/OrgSettings/AgendaItemCategories/AgendaCategoryUpdateModal.tsx:40](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/components/OrgSettings/AgendaItemCategories/AgendaCategoryUpdateModal.tsx#L40) + +AgendaCategoryUpdateModal component is used to update the agenda category details like name, description + +## Parameters + +### props + +`InterfaceAgendaCategoryUpdateModalProps` + +### deprecatedLegacyContext? + +`any` + +**Deprecated** + +**See** + +[React Docs](https://legacy.reactjs.org/docs/legacy-context.html#referencing-context-in-lifecycle-methods) + +## Returns + +`ReactNode` + +returns the AgendaCategoryUpdateModal component diff --git a/docs/docs/auto-docs/components/OrgSettings/AgendaItemCategories/OrganizationAgendaCategory/functions/default.md b/docs/docs/auto-docs/components/OrgSettings/AgendaItemCategories/OrganizationAgendaCategory/functions/default.md new file mode 100644 index 0000000000..d9a34128aa --- /dev/null +++ b/docs/docs/auto-docs/components/OrgSettings/AgendaItemCategories/OrganizationAgendaCategory/functions/default.md @@ -0,0 +1,35 @@ +[Admin Docs](/) + +*** + +# Function: default() + +> **default**(`props`, `deprecatedLegacyContext`?): `ReactNode` + +Defined in: [src/components/OrgSettings/AgendaItemCategories/OrganizationAgendaCategory.tsx:31](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/components/OrgSettings/AgendaItemCategories/OrganizationAgendaCategory.tsx#L31) + +Component for managing and displaying agenda item categories within an organization. + +This component allows users to view, create, and manage agenda item categories. It includes functionality for displaying categories, handling creation, and managing modal visibility. + +## Parameters + +### props + +`InterfaceAgendaCategoryProps` + +### deprecatedLegacyContext? + +`any` + +**Deprecated** + +**See** + +[React Docs](https://legacy.reactjs.org/docs/legacy-context.html#referencing-context-in-lifecycle-methods) + +## Returns + +`ReactNode` + +The rendered component. diff --git a/docs/docs/auto-docs/components/OrgSettings/AgendaItemCategories/OrganizationAgendaCategoryErrorMocks/variables/MOCKS_ERROR_AGENDA_ITEM_CATEGORY_LIST_QUERY.md b/docs/docs/auto-docs/components/OrgSettings/AgendaItemCategories/OrganizationAgendaCategoryErrorMocks/variables/MOCKS_ERROR_AGENDA_ITEM_CATEGORY_LIST_QUERY.md new file mode 100644 index 0000000000..0300d98f33 --- /dev/null +++ b/docs/docs/auto-docs/components/OrgSettings/AgendaItemCategories/OrganizationAgendaCategoryErrorMocks/variables/MOCKS_ERROR_AGENDA_ITEM_CATEGORY_LIST_QUERY.md @@ -0,0 +1,39 @@ +[Admin Docs](/) + +*** + +# Variable: MOCKS\_ERROR\_AGENDA\_ITEM\_CATEGORY\_LIST\_QUERY + +> `const` **MOCKS\_ERROR\_AGENDA\_ITEM\_CATEGORY\_LIST\_QUERY**: `object`[] + +Defined in: [src/components/OrgSettings/AgendaItemCategories/OrganizationAgendaCategoryErrorMocks.ts:5](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/components/OrgSettings/AgendaItemCategories/OrganizationAgendaCategoryErrorMocks.ts#L5) + +## Type declaration + +### error + +> **error**: `Error` + +### request + +> **request**: `object` + +#### request.query + +> **query**: `DocumentNode` = `AGENDA_ITEM_CATEGORY_LIST` + +#### request.variables + +> **variables**: `object` + +#### request.variables.organizationId + +> **organizationId**: `string` = `'123'` + +#### request.variables.where + +> **where**: `object` + +#### request.variables.where.name\_contains + +> **name\_contains**: `string` = `''` diff --git a/docs/docs/auto-docs/components/OrgSettings/AgendaItemCategories/OrganizationAgendaCategoryErrorMocks/variables/MOCKS_ERROR_MUTATION.md b/docs/docs/auto-docs/components/OrgSettings/AgendaItemCategories/OrganizationAgendaCategoryErrorMocks/variables/MOCKS_ERROR_MUTATION.md new file mode 100644 index 0000000000..a018c44ea9 --- /dev/null +++ b/docs/docs/auto-docs/components/OrgSettings/AgendaItemCategories/OrganizationAgendaCategoryErrorMocks/variables/MOCKS_ERROR_MUTATION.md @@ -0,0 +1,9 @@ +[Admin Docs](/) + +*** + +# Variable: MOCKS\_ERROR\_MUTATION + +> `const` **MOCKS\_ERROR\_MUTATION**: (\{ `error`: `undefined`; `request`: \{ `query`: `DocumentNode`; `variables`: \{ `input`: `undefined`; `organizationId`: `string`; `where`: \{ `name_contains`: `string`; \}; \}; \}; `result`: \{ `data`: \{ `agendaItemCategoriesByOrganization`: `object`[]; \}; \}; \} \| \{ `error`: `Error`; `request`: \{ `query`: `DocumentNode`; `variables`: \{ `input`: \{ `description`: `string`; `name`: `string`; `organizationId`: `string`; \}; `organizationId`: `undefined`; `where`: `undefined`; \}; \}; `result`: `undefined`; \})[] + +Defined in: [src/components/OrgSettings/AgendaItemCategories/OrganizationAgendaCategoryErrorMocks.ts:20](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/components/OrgSettings/AgendaItemCategories/OrganizationAgendaCategoryErrorMocks.ts#L20) diff --git a/docs/docs/auto-docs/components/OrgSettings/AgendaItemCategories/OrganizationAgendaCategoryMocks/variables/MOCKS.md b/docs/docs/auto-docs/components/OrgSettings/AgendaItemCategories/OrganizationAgendaCategoryMocks/variables/MOCKS.md new file mode 100644 index 0000000000..2ddb4991aa --- /dev/null +++ b/docs/docs/auto-docs/components/OrgSettings/AgendaItemCategories/OrganizationAgendaCategoryMocks/variables/MOCKS.md @@ -0,0 +1,9 @@ +[Admin Docs](/) + +*** + +# Variable: MOCKS + +> `const` **MOCKS**: (\{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `input`: `undefined`; `organizationId`: `string`; `where`: \{ `name_contains`: `string`; \}; \}; \}; `result`: \{ `data`: \{ `agendaItemCategoriesByOrganization`: `object`[]; `createAgendaCategory`: `undefined`; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `input`: \{ `description`: `string`; `name`: `string`; `organizationId`: `string`; \}; `organizationId`: `undefined`; `where`: `undefined`; \}; \}; `result`: \{ `data`: \{ `agendaItemCategoriesByOrganization`: `undefined`; `createAgendaCategory`: \{ `_id`: `string`; \}; \}; \}; \})[] + +Defined in: [src/components/OrgSettings/AgendaItemCategories/OrganizationAgendaCategoryMocks.ts:5](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/components/OrgSettings/AgendaItemCategories/OrganizationAgendaCategoryMocks.ts#L5) diff --git a/docs/docs/auto-docs/components/OrgSettings/General/DeleteOrg/DeleteOrg/functions/default.md b/docs/docs/auto-docs/components/OrgSettings/General/DeleteOrg/DeleteOrg/functions/default.md new file mode 100644 index 0000000000..57462df34c --- /dev/null +++ b/docs/docs/auto-docs/components/OrgSettings/General/DeleteOrg/DeleteOrg/functions/default.md @@ -0,0 +1,22 @@ +[Admin Docs](/) + +*** + +# Function: default() + +> **default**(): `JSX.Element` + +Defined in: [src/components/OrgSettings/General/DeleteOrg/DeleteOrg.tsx:26](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/components/OrgSettings/General/DeleteOrg/DeleteOrg.tsx#L26) + +A component for deleting an organization. + +It displays a card with a delete button. When the delete button is clicked, +a modal appears asking for confirmation. Depending on the type of organization +(sample or regular), it performs the delete operation and shows appropriate +success or error messages. + +## Returns + +`JSX.Element` + +JSX.Element - The rendered component with delete functionality. diff --git a/docs/docs/auto-docs/components/OrgSettings/General/GeneralSettings/functions/default.md b/docs/docs/auto-docs/components/OrgSettings/General/GeneralSettings/functions/default.md new file mode 100644 index 0000000000..6e11d84bf9 --- /dev/null +++ b/docs/docs/auto-docs/components/OrgSettings/General/GeneralSettings/functions/default.md @@ -0,0 +1,35 @@ +[Admin Docs](/) + +*** + +# Function: default() + +> **default**(`props`, `deprecatedLegacyContext`?): `ReactNode` + +Defined in: [src/components/OrgSettings/General/GeneralSettings.tsx:23](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/components/OrgSettings/General/GeneralSettings.tsx#L23) + +A component for displaying general settings for an organization. + +## Parameters + +### props + +`InterfaceGeneralSettingsProps` + +The properties passed to the component. + +### deprecatedLegacyContext? + +`any` + +**Deprecated** + +**See** + +[React Docs](https://legacy.reactjs.org/docs/legacy-context.html#referencing-context-in-lifecycle-methods) + +## Returns + +`ReactNode` + +The `GeneralSettings` component. diff --git a/docs/docs/auto-docs/components/OrgSettings/General/OrgProfileFieldSettings/OrgProfileFieldSettings/functions/default.md b/docs/docs/auto-docs/components/OrgSettings/General/OrgProfileFieldSettings/OrgProfileFieldSettings/functions/default.md new file mode 100644 index 0000000000..f958a57120 --- /dev/null +++ b/docs/docs/auto-docs/components/OrgSettings/General/OrgProfileFieldSettings/OrgProfileFieldSettings/functions/default.md @@ -0,0 +1,20 @@ +[Admin Docs](/) + +*** + +# Function: default() + +> **default**(): `Element` + +Defined in: [src/components/OrgSettings/General/OrgProfileFieldSettings/OrgProfileFieldSettings.tsx:26](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/components/OrgSettings/General/OrgProfileFieldSettings/OrgProfileFieldSettings.tsx#L26) + +Component for managing organization profile field settings + +This component allows adding and removing custom fields for an organization. +It displays existing custom fields and provides a form to add new fields. + +## Returns + +`Element` + +JSX.Element representing the organization profile field settings diff --git a/docs/docs/auto-docs/components/OrgSettings/General/OrgUpdate/OrgUpdate/functions/default.md b/docs/docs/auto-docs/components/OrgSettings/General/OrgUpdate/OrgUpdate/functions/default.md new file mode 100644 index 0000000000..762b62ce2d --- /dev/null +++ b/docs/docs/auto-docs/components/OrgSettings/General/OrgUpdate/OrgUpdate/functions/default.md @@ -0,0 +1,29 @@ +[Admin Docs](/) + +*** + +# Function: default() + +> **default**(`props`): `JSX.Element` + +Defined in: [src/components/OrgSettings/General/OrgUpdate/OrgUpdate.tsx:36](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/components/OrgSettings/General/OrgUpdate/OrgUpdate.tsx#L36) + +Component for updating organization details. + +This component allows users to update the organization's name, description, address, +visibility settings, and upload an image. It uses GraphQL mutations and queries to +fetch and update data. + +## Parameters + +### props + +`InterfaceOrgUpdateProps` + +Component props containing the organization ID. + +## Returns + +`JSX.Element` + +The rendered component. diff --git a/docs/docs/auto-docs/components/OrgSettings/General/OrgUpdate/OrgUpdateMocks/variables/MOCKS.md b/docs/docs/auto-docs/components/OrgSettings/General/OrgUpdate/OrgUpdateMocks/variables/MOCKS.md new file mode 100644 index 0000000000..2ca8f9ffc7 --- /dev/null +++ b/docs/docs/auto-docs/components/OrgSettings/General/OrgUpdate/OrgUpdateMocks/variables/MOCKS.md @@ -0,0 +1,9 @@ +[Admin Docs](/) + +*** + +# Variable: MOCKS + +> `const` **MOCKS**: (\{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `address`: `undefined`; `description`: `undefined`; `id`: `string`; `image`: `undefined`; `name`: `undefined`; `userRegistrationRequired`: `undefined`; `visibleInSearch`: `undefined`; \}; \}; `result`: \{ `data`: \{ `organizations`: `object`[]; `updateOrganization`: `undefined`; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `address`: \{ `city`: `string`; `countryCode`: `string`; `dependentLocality`: `string`; `line1`: `string`; `line2`: `string`; `postalCode`: `string`; `sortingCode`: `string`; `state`: `string`; \}; `description`: `string`; `id`: `string`; `image`: `File`; `name`: `string`; `userRegistrationRequired`: `boolean`; `visibleInSearch`: `boolean`; \}; \}; `result`: \{ `data`: \{ `organizations`: `undefined`; `updateOrganization`: \{ `_id`: `string`; `address`: \{ `city`: `string`; `countryCode`: `string`; `dependentLocality`: `string`; `line1`: `string`; `line2`: `string`; `postalCode`: `string`; `sortingCode`: `string`; `state`: `string`; \}; `description`: `string`; `name`: `string`; `userRegistrationRequired`: `boolean`; `visibleInSearch`: `boolean`; \}; \}; \}; \})[] + +Defined in: [src/components/OrgSettings/General/OrgUpdate/OrgUpdateMocks.ts:4](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/components/OrgSettings/General/OrgUpdate/OrgUpdateMocks.ts#L4) diff --git a/docs/docs/auto-docs/components/OrgSettings/General/OrgUpdate/OrgUpdateMocks/variables/MOCKS_ERROR_ORGLIST.md b/docs/docs/auto-docs/components/OrgSettings/General/OrgUpdate/OrgUpdateMocks/variables/MOCKS_ERROR_ORGLIST.md new file mode 100644 index 0000000000..529047cd03 --- /dev/null +++ b/docs/docs/auto-docs/components/OrgSettings/General/OrgUpdate/OrgUpdateMocks/variables/MOCKS_ERROR_ORGLIST.md @@ -0,0 +1,31 @@ +[Admin Docs](/) + +*** + +# Variable: MOCKS\_ERROR\_ORGLIST + +> `const` **MOCKS\_ERROR\_ORGLIST**: `object`[] + +Defined in: [src/components/OrgSettings/General/OrgUpdate/OrgUpdateMocks.ts:110](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/components/OrgSettings/General/OrgUpdate/OrgUpdateMocks.ts#L110) + +## Type declaration + +### error + +> **error**: `Error` + +### request + +> **request**: `object` + +#### request.query + +> **query**: `DocumentNode` = `ORGANIZATIONS_LIST` + +#### request.variables + +> **variables**: `object` + +#### request.variables.id + +> **id**: `string` = `'123'` diff --git a/docs/docs/auto-docs/components/OrgSettings/General/OrgUpdate/OrgUpdateMocks/variables/MOCKS_ERROR_UPDATE_ORGLIST.md b/docs/docs/auto-docs/components/OrgSettings/General/OrgUpdate/OrgUpdateMocks/variables/MOCKS_ERROR_UPDATE_ORGLIST.md new file mode 100644 index 0000000000..05d8302201 --- /dev/null +++ b/docs/docs/auto-docs/components/OrgSettings/General/OrgUpdate/OrgUpdateMocks/variables/MOCKS_ERROR_UPDATE_ORGLIST.md @@ -0,0 +1,9 @@ +[Admin Docs](/) + +*** + +# Variable: MOCKS\_ERROR\_UPDATE\_ORGLIST + +> `const` **MOCKS\_ERROR\_UPDATE\_ORGLIST**: (\{ `erorr`: `undefined`; `request`: \{ `query`: `DocumentNode`; `variables`: \{ `address`: `undefined`; `description`: `undefined`; `id`: `string`; `image`: `undefined`; `name`: `undefined`; `userRegistrationRequired`: `undefined`; `visibleInSearch`: `undefined`; \}; \}; `result`: \{ `data`: \{ `organizations`: `object`[]; \}; \}; \} \| \{ `erorr`: `Error`; `request`: \{ `query`: `DocumentNode`; `variables`: \{ `address`: \{ `city`: `string`; `countryCode`: `string`; `dependentLocality`: `string`; `line1`: `string`; `line2`: `string`; `postalCode`: `string`; `sortingCode`: `string`; `state`: `string`; \}; `description`: `string`; `id`: `string`; `image`: `File`; `name`: `string`; `userRegistrationRequired`: `boolean`; `visibleInSearch`: `boolean`; \}; \}; `result`: `undefined`; \})[] + +Defined in: [src/components/OrgSettings/General/OrgUpdate/OrgUpdateMocks.ts:120](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/components/OrgSettings/General/OrgUpdate/OrgUpdateMocks.ts#L120) diff --git a/docs/docs/auto-docs/components/OrganizationCard/OrganizationCard/functions/default.md b/docs/docs/auto-docs/components/OrganizationCard/OrganizationCard/functions/default.md new file mode 100644 index 0000000000..c9ab99fe77 --- /dev/null +++ b/docs/docs/auto-docs/components/OrganizationCard/OrganizationCard/functions/default.md @@ -0,0 +1,25 @@ +[Admin Docs](/) + +*** + +# Function: default() + +> **default**(`props`): `JSX.Element` + +Defined in: [src/components/OrganizationCard/OrganizationCard.tsx:18](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/components/OrganizationCard/OrganizationCard.tsx#L18) + +Component to display an organization's card with its image and owner details. + +## Parameters + +### props + +`InterfaceOrganizationCardProps` + +Properties for the organization card. + +## Returns + +`JSX.Element` + +JSX element representing the organization card. diff --git a/docs/docs/auto-docs/components/OrganizationCardStart/OrganizationCardStart/functions/default.md b/docs/docs/auto-docs/components/OrganizationCardStart/OrganizationCardStart/functions/default.md new file mode 100644 index 0000000000..cc252874a8 --- /dev/null +++ b/docs/docs/auto-docs/components/OrganizationCardStart/OrganizationCardStart/functions/default.md @@ -0,0 +1,23 @@ +[Admin Docs](/) + +*** + +# Function: default() + +> **default**(`props`): `JSX.Element` + +Defined in: [src/components/OrganizationCardStart/OrganizationCardStart.tsx:18](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/components/OrganizationCardStart/OrganizationCardStart.tsx#L18) + +Component to display a simplified card for an organization. + +## Parameters + +### props + +`InterfaceOrganizationCardStartProps` + +## Returns + +`JSX.Element` + +JSX element representing the organization card. diff --git a/docs/docs/auto-docs/components/OrganizationDashCards/CardItem/functions/default.md b/docs/docs/auto-docs/components/OrganizationDashCards/CardItem/functions/default.md new file mode 100644 index 0000000000..b3996dc179 --- /dev/null +++ b/docs/docs/auto-docs/components/OrganizationDashCards/CardItem/functions/default.md @@ -0,0 +1,25 @@ +[Admin Docs](/) + +*** + +# Function: default() + +> **default**(`props`): `Element` + +Defined in: [src/components/OrganizationDashCards/CardItem.tsx:35](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/components/OrganizationDashCards/CardItem.tsx#L35) + +Component to display a card item with various types such as Event, Post, or MembershipRequest. + +## Parameters + +### props + +[`InterfaceCardItem`](../interfaces/InterfaceCardItem.md) + +Props for the CardItem component. + +## Returns + +`Element` + +JSX element representing the card item. diff --git a/docs/docs/auto-docs/components/OrganizationDashCards/CardItem/interfaces/InterfaceCardItem.md b/docs/docs/auto-docs/components/OrganizationDashCards/CardItem/interfaces/InterfaceCardItem.md new file mode 100644 index 0000000000..0aac3b5acb --- /dev/null +++ b/docs/docs/auto-docs/components/OrganizationDashCards/CardItem/interfaces/InterfaceCardItem.md @@ -0,0 +1,81 @@ +[Admin Docs](/) + +*** + +# Interface: InterfaceCardItem + +Defined in: [src/components/OrganizationDashCards/CardItem.tsx:14](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/components/OrganizationDashCards/CardItem.tsx#L14) + +Interface for the CardItem component's props. + +## Properties + +### creator? + +> `optional` **creator**: `object` + +Defined in: [src/components/OrganizationDashCards/CardItem.tsx:20](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/components/OrganizationDashCards/CardItem.tsx#L20) + +#### \_id + +> **\_id**: `string` + +#### email + +> **email**: `string` + +#### firstName + +> **firstName**: `string` + +#### lastName + +> **lastName**: `string` + +*** + +### enddate? + +> `optional` **enddate**: `string` + +Defined in: [src/components/OrganizationDashCards/CardItem.tsx:19](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/components/OrganizationDashCards/CardItem.tsx#L19) + +*** + +### location? + +> `optional` **location**: `string` + +Defined in: [src/components/OrganizationDashCards/CardItem.tsx:26](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/components/OrganizationDashCards/CardItem.tsx#L26) + +*** + +### startdate? + +> `optional` **startdate**: `string` + +Defined in: [src/components/OrganizationDashCards/CardItem.tsx:18](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/components/OrganizationDashCards/CardItem.tsx#L18) + +*** + +### time? + +> `optional` **time**: `string` + +Defined in: [src/components/OrganizationDashCards/CardItem.tsx:17](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/components/OrganizationDashCards/CardItem.tsx#L17) + +*** + +### title + +> **title**: `string` + +Defined in: [src/components/OrganizationDashCards/CardItem.tsx:16](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/components/OrganizationDashCards/CardItem.tsx#L16) + +*** + +### type + +> **type**: `"Event"` \| `"Post"` \| `"MembershipRequest"` + +Defined in: [src/components/OrganizationDashCards/CardItem.tsx:15](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/components/OrganizationDashCards/CardItem.tsx#L15) diff --git a/docs/docs/auto-docs/components/OrganizationDashCards/CardItemLoading/functions/default.md b/docs/docs/auto-docs/components/OrganizationDashCards/CardItemLoading/functions/default.md new file mode 100644 index 0000000000..524a7c2532 --- /dev/null +++ b/docs/docs/auto-docs/components/OrganizationDashCards/CardItemLoading/functions/default.md @@ -0,0 +1,17 @@ +[Admin Docs](/) + +*** + +# Function: default() + +> **default**(): `Element` + +Defined in: [src/components/OrganizationDashCards/CardItemLoading.tsx:8](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/components/OrganizationDashCards/CardItemLoading.tsx#L8) + +CardItemLoading component is a loading state for the card item. It is used when the data is being fetched. + +## Returns + +`Element` + +JSX.Element diff --git a/docs/docs/auto-docs/components/OrganizationDashCards/DashboardCard/functions/default.md b/docs/docs/auto-docs/components/OrganizationDashCards/DashboardCard/functions/default.md new file mode 100644 index 0000000000..4ce6d6c589 --- /dev/null +++ b/docs/docs/auto-docs/components/OrganizationDashCards/DashboardCard/functions/default.md @@ -0,0 +1,33 @@ +[Admin Docs](/) + +*** + +# Function: default() + +> **default**(`props`): `Element` + +Defined in: [src/components/OrganizationDashCards/DashboardCard.tsx:13](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/components/OrganizationDashCards/DashboardCard.tsx#L13) + +Dashboard card component is used to display the card with icon, title and count. + +## Parameters + +### props + +#### count + +`number` + +#### icon + +`ReactNode` + +#### title + +`string` + +## Returns + +`Element` + +Dashboard card component diff --git a/docs/docs/auto-docs/components/OrganizationDashCards/DashboardCardLoading/functions/default.md b/docs/docs/auto-docs/components/OrganizationDashCards/DashboardCardLoading/functions/default.md new file mode 100644 index 0000000000..24ab400da3 --- /dev/null +++ b/docs/docs/auto-docs/components/OrganizationDashCards/DashboardCardLoading/functions/default.md @@ -0,0 +1,17 @@ +[Admin Docs](/) + +*** + +# Function: default() + +> **default**(): `Element` + +Defined in: [src/components/OrganizationDashCards/DashboardCardLoading.tsx:10](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/components/OrganizationDashCards/DashboardCardLoading.tsx#L10) + +Dashboard card loading component is a loading state for the dashboard card. It is used when the data is being fetched. + +## Returns + +`Element` + +JSX.Element diff --git a/docs/docs/auto-docs/components/OrganizationScreen/OrganizationScreen/functions/default.md b/docs/docs/auto-docs/components/OrganizationScreen/OrganizationScreen/functions/default.md new file mode 100644 index 0000000000..4027bca9c6 --- /dev/null +++ b/docs/docs/auto-docs/components/OrganizationScreen/OrganizationScreen/functions/default.md @@ -0,0 +1,22 @@ +[Admin Docs](/) + +*** + +# Function: default() + +> **default**(): `Element` + +Defined in: [src/components/OrganizationScreen/OrganizationScreen.tsx:37](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/components/OrganizationScreen/OrganizationScreen.tsx#L37) + +Component for the organization screen + +This component displays the organization screen and handles the layout +including a side drawer, header, and main content area. It adjusts +the layout based on the screen size and shows the appropriate content +based on the route. + +## Returns + +`Element` + +JSX.Element representing the organization screen diff --git a/docs/docs/auto-docs/components/Pagination/Pagination/functions/default.md b/docs/docs/auto-docs/components/Pagination/Pagination/functions/default.md new file mode 100644 index 0000000000..a7d0dc6fdf --- /dev/null +++ b/docs/docs/auto-docs/components/Pagination/Pagination/functions/default.md @@ -0,0 +1,29 @@ +[Admin Docs](/) + +*** + +# Function: default() + +> **default**(`props`): `JSX.Element` + +Defined in: [src/components/Pagination/Pagination.tsx:30](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/components/Pagination/Pagination.tsx#L30) + +Pagination component for navigating between pages in a table. + +This component provides buttons to navigate to the first page, previous page, +next page, and last page of a table. The visibility and functionality of the +buttons are controlled based on the current page and the total number of items. + +## Parameters + +### props + +`InterfaceTablePaginationActionsProps` + +Component properties. + +## Returns + +`JSX.Element` + +The rendered component. diff --git a/docs/docs/auto-docs/components/PaginationList/PaginationList/functions/default.md b/docs/docs/auto-docs/components/PaginationList/PaginationList/functions/default.md new file mode 100644 index 0000000000..3f8cb42faa --- /dev/null +++ b/docs/docs/auto-docs/components/PaginationList/PaginationList/functions/default.md @@ -0,0 +1,22 @@ +[Admin Docs](/) + +*** + +# Function: default() + +> **default**(`__namedParameters`): `Element` + +Defined in: [src/components/PaginationList/PaginationList.tsx:31](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/components/PaginationList/PaginationList.tsx#L31) + +A component that provides pagination controls for a table. +It uses different pagination styles based on screen size. + +## Parameters + +### \_\_namedParameters + +`InterfacePropsInterface` + +## Returns + +`Element` diff --git a/docs/docs/auto-docs/components/ProfileDropdown/ProfileDropdown/functions/default.md b/docs/docs/auto-docs/components/ProfileDropdown/ProfileDropdown/functions/default.md new file mode 100644 index 0000000000..f63a67cafe --- /dev/null +++ b/docs/docs/auto-docs/components/ProfileDropdown/ProfileDropdown/functions/default.md @@ -0,0 +1,24 @@ +[Admin Docs](/) + +*** + +# Function: default() + +> **default**(): `Element` + +Defined in: [src/components/ProfileDropdown/ProfileDropdown.tsx:24](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/components/ProfileDropdown/ProfileDropdown.tsx#L24) + +Renders a profile dropdown menu for the user. + +This component displays the user's profile picture or an avatar, their name (truncated if necessary), +and their role (SuperAdmin, Admin, or User). It provides options to view the profile or log out. + +- If a user image is available, it displays that; otherwise, it shows an avatar. +- The displayed name is truncated if it exceeds a specified length. +- The logout function revokes the refresh token and clears local storage before redirecting to the home page. + +## Returns + +`Element` + +JSX.Element - The profile dropdown menu. diff --git a/docs/docs/auto-docs/components/RecurrenceOptions/CustomRecurrenceModal/functions/default.md b/docs/docs/auto-docs/components/RecurrenceOptions/CustomRecurrenceModal/functions/default.md new file mode 100644 index 0000000000..51ef87c2a9 --- /dev/null +++ b/docs/docs/auto-docs/components/RecurrenceOptions/CustomRecurrenceModal/functions/default.md @@ -0,0 +1,39 @@ +[Admin Docs](/) + +*** + +# Function: default() + +> **default**(`props`, `deprecatedLegacyContext`?): `ReactNode` + +Defined in: [src/components/RecurrenceOptions/CustomRecurrenceModal.tsx:54](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/components/RecurrenceOptions/CustomRecurrenceModal.tsx#L54) + +A modal for setting up custom recurrence rules. + +This component allows users to configure how often an event should repeat, and +when it should end. It includes options for daily, weekly, monthly, and yearly +recurrence, as well as specific end options. + +## Parameters + +### props + +`InterfaceCustomRecurrenceModalProps` + +The props object containing various configurations and state management functions. + +### deprecatedLegacyContext? + +`any` + +**Deprecated** + +**See** + +[React Docs](https://legacy.reactjs.org/docs/legacy-context.html#referencing-context-in-lifecycle-methods) + +## Returns + +`ReactNode` + +The JSX element representing the CustomRecurrenceModal. diff --git a/docs/docs/auto-docs/components/RecurrenceOptions/RecurrenceOptions/functions/default.md b/docs/docs/auto-docs/components/RecurrenceOptions/RecurrenceOptions/functions/default.md new file mode 100644 index 0000000000..31a2512814 --- /dev/null +++ b/docs/docs/auto-docs/components/RecurrenceOptions/RecurrenceOptions/functions/default.md @@ -0,0 +1,47 @@ +[Admin Docs](/) + +*** + +# Function: default() + +> **default**(`props`, `deprecatedLegacyContext`?): `ReactNode` + +Defined in: [src/components/RecurrenceOptions/RecurrenceOptions.tsx:49](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/components/RecurrenceOptions/RecurrenceOptions.tsx#L49) + +Renders a dropdown menu for selecting recurrence options. + +This component allows users to choose various recurrence rules (daily, weekly, monthly, yearly) for a given event. +It displays the current recurrence rule text and provides options to modify it, including a custom recurrence modal. + +The dropdown menu includes options for: +- Daily recurrence +- Weekly recurrence (including a specific day of the week or Monday to Friday) +- Monthly recurrence (on a specific day or occurrence) +- Yearly recurrence +- Custom recurrence (opens a modal for advanced settings) + +The displayed recurrence rule text is truncated if it exceeds a specified length, with an overlay showing the full text on hover. + +## Parameters + +### props + +`InterfaceRecurrenceOptionsProps` + +The properties to configure the recurrence options dropdown. + +### deprecatedLegacyContext? + +`any` + +**Deprecated** + +**See** + +[React Docs](https://legacy.reactjs.org/docs/legacy-context.html#referencing-context-in-lifecycle-methods) + +## Returns + +`ReactNode` + +JSX.Element - The recurrence options dropdown and the custom recurrence modal. diff --git a/docs/docs/auto-docs/components/RequestsTableItem/RequestsTableItem/functions/default.md b/docs/docs/auto-docs/components/RequestsTableItem/RequestsTableItem/functions/default.md new file mode 100644 index 0000000000..931ab6b126 --- /dev/null +++ b/docs/docs/auto-docs/components/RequestsTableItem/RequestsTableItem/functions/default.md @@ -0,0 +1,29 @@ +[Admin Docs](/) + +*** + +# Function: default() + +> **default**(`props`): `Element` + +Defined in: [src/components/RequestsTableItem/RequestsTableItem.tsx:45](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/components/RequestsTableItem/RequestsTableItem.tsx#L45) + +Renders a table row item for a membership request. + +This component displays user details and provides buttons to accept or reject +the membership request. It also handles showing success or error messages using +toast notifications. + +## Parameters + +### props + +`Props` + +The props object containing request details, index, and state reset function. + +## Returns + +`Element` + +The JSX element representing the RequestsTableItem. diff --git a/docs/docs/auto-docs/components/RequestsTableItem/RequestsTableItem/interfaces/InterfaceRequestsListItem.md b/docs/docs/auto-docs/components/RequestsTableItem/RequestsTableItem/interfaces/InterfaceRequestsListItem.md new file mode 100644 index 0000000000..095f3919fd --- /dev/null +++ b/docs/docs/auto-docs/components/RequestsTableItem/RequestsTableItem/interfaces/InterfaceRequestsListItem.md @@ -0,0 +1,37 @@ +[Admin Docs](/) + +*** + +# Interface: InterfaceRequestsListItem + +Defined in: [src/components/RequestsTableItem/RequestsTableItem.tsx:16](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/components/RequestsTableItem/RequestsTableItem.tsx#L16) + +Represents a membership request in the requests table. + +## Properties + +### \_id + +> **\_id**: `string` + +Defined in: [src/components/RequestsTableItem/RequestsTableItem.tsx:17](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/components/RequestsTableItem/RequestsTableItem.tsx#L17) + +*** + +### user + +> **user**: `object` + +Defined in: [src/components/RequestsTableItem/RequestsTableItem.tsx:18](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/components/RequestsTableItem/RequestsTableItem.tsx#L18) + +#### email + +> **email**: `string` + +#### firstName + +> **firstName**: `string` + +#### lastName + +> **lastName**: `string` diff --git a/docs/docs/auto-docs/components/RequestsTableItem/RequestsTableItemMocks/variables/MOCKS.md b/docs/docs/auto-docs/components/RequestsTableItem/RequestsTableItemMocks/variables/MOCKS.md new file mode 100644 index 0000000000..afea965605 --- /dev/null +++ b/docs/docs/auto-docs/components/RequestsTableItem/RequestsTableItemMocks/variables/MOCKS.md @@ -0,0 +1,9 @@ +[Admin Docs](/) + +*** + +# Variable: MOCKS + +> `const` **MOCKS**: (\{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `id`: `string`; \}; \}; `result`: \{ `data`: \{ `acceptMembershipRequest`: \{ `_id`: `string`; \}; `rejectMembershipRequest`: `undefined`; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `id`: `string`; \}; \}; `result`: \{ `data`: \{ `acceptMembershipRequest`: `undefined`; `rejectMembershipRequest`: \{ `_id`: `string`; \}; \}; \}; \})[] + +Defined in: [src/components/RequestsTableItem/RequestsTableItemMocks.ts:6](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/components/RequestsTableItem/RequestsTableItemMocks.ts#L6) diff --git a/docs/docs/auto-docs/components/SecuredRoute/SecuredRoute/functions/default.md b/docs/docs/auto-docs/components/SecuredRoute/SecuredRoute/functions/default.md new file mode 100644 index 0000000000..a9376d909d --- /dev/null +++ b/docs/docs/auto-docs/components/SecuredRoute/SecuredRoute/functions/default.md @@ -0,0 +1,20 @@ +[Admin Docs](/) + +*** + +# Function: default() + +> **default**(): `Element` + +Defined in: [src/components/SecuredRoute/SecuredRoute.tsx:16](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/components/SecuredRoute/SecuredRoute.tsx#L16) + +A route guard that checks if the user is logged in and has the necessary permissions. + +If the user is logged in and has an admin role set, it renders the child routes. +Otherwise, it redirects to the home page or shows a 404 page if admin role is not set. + +## Returns + +`Element` + +The JSX element representing the secured route. diff --git a/docs/docs/auto-docs/components/SuperAdminScreen/SuperAdminScreen/functions/default.md b/docs/docs/auto-docs/components/SuperAdminScreen/SuperAdminScreen/functions/default.md new file mode 100644 index 0000000000..fd8357d265 --- /dev/null +++ b/docs/docs/auto-docs/components/SuperAdminScreen/SuperAdminScreen/functions/default.md @@ -0,0 +1,18 @@ +[Admin Docs](/) + +*** + +# Function: default() + +> **default**(): `Element` + +Defined in: [src/components/SuperAdminScreen/SuperAdminScreen.tsx:15](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/components/SuperAdminScreen/SuperAdminScreen.tsx#L15) + +The SuperAdminScreen component manages the layout for the Super Admin screen, +including handling the sidebar visibility and page title based on the current route. + +## Returns + +`Element` + +The JSX element representing the Super Admin screen layout. diff --git a/docs/docs/auto-docs/components/TableLoader/TableLoader/functions/default.md b/docs/docs/auto-docs/components/TableLoader/TableLoader/functions/default.md new file mode 100644 index 0000000000..fee76212c8 --- /dev/null +++ b/docs/docs/auto-docs/components/TableLoader/TableLoader/functions/default.md @@ -0,0 +1,27 @@ +[Admin Docs](/) + +*** + +# Function: default() + +> **default**(`props`): `Element` + +Defined in: [src/components/TableLoader/TableLoader.tsx:23](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/components/TableLoader/TableLoader.tsx#L23) + +The TableLoader component displays a loading skeleton for tables. +It shows a specified number of rows and columns as placeholders +with a shimmering effect to indicate loading content. + +## Parameters + +### props + +[`InterfaceTableLoader`](../interfaces/InterfaceTableLoader.md) + +The properties for the TableLoader component. + +## Returns + +`Element` + +The JSX element representing the table loader. diff --git a/docs/docs/auto-docs/components/TableLoader/TableLoader/interfaces/InterfaceTableLoader.md b/docs/docs/auto-docs/components/TableLoader/TableLoader/interfaces/InterfaceTableLoader.md new file mode 100644 index 0000000000..b980805dd1 --- /dev/null +++ b/docs/docs/auto-docs/components/TableLoader/TableLoader/interfaces/InterfaceTableLoader.md @@ -0,0 +1,31 @@ +[Admin Docs](/) + +*** + +# Interface: InterfaceTableLoader + +Defined in: [src/components/TableLoader/TableLoader.tsx:5](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/components/TableLoader/TableLoader.tsx#L5) + +## Properties + +### headerTitles? + +> `optional` **headerTitles**: `string`[] + +Defined in: [src/components/TableLoader/TableLoader.tsx:7](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/components/TableLoader/TableLoader.tsx#L7) + +*** + +### noOfCols? + +> `optional` **noOfCols**: `number` + +Defined in: [src/components/TableLoader/TableLoader.tsx:8](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/components/TableLoader/TableLoader.tsx#L8) + +*** + +### noOfRows + +> **noOfRows**: `number` + +Defined in: [src/components/TableLoader/TableLoader.tsx:6](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/components/TableLoader/TableLoader.tsx#L6) diff --git a/docs/docs/auto-docs/components/TagActions/TagActions/functions/default.md b/docs/docs/auto-docs/components/TagActions/TagActions/functions/default.md new file mode 100644 index 0000000000..d0e70515ee --- /dev/null +++ b/docs/docs/auto-docs/components/TagActions/TagActions/functions/default.md @@ -0,0 +1,29 @@ +[Admin Docs](/) + +*** + +# Function: default() + +> **default**(`props`, `deprecatedLegacyContext`?): `ReactNode` + +Defined in: [src/components/TagActions/TagActions.tsx:44](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/components/TagActions/TagActions.tsx#L44) + +## Parameters + +### props + +[`InterfaceTagActionsProps`](../interfaces/InterfaceTagActionsProps.md) + +### deprecatedLegacyContext? + +`any` + +**Deprecated** + +**See** + +[React Docs](https://legacy.reactjs.org/docs/legacy-context.html#referencing-context-in-lifecycle-methods) + +## Returns + +`ReactNode` diff --git a/docs/docs/auto-docs/components/TagActions/TagActions/interfaces/InterfaceTagActionsProps.md b/docs/docs/auto-docs/components/TagActions/TagActions/interfaces/InterfaceTagActionsProps.md new file mode 100644 index 0000000000..68eb61fd82 --- /dev/null +++ b/docs/docs/auto-docs/components/TagActions/TagActions/interfaces/InterfaceTagActionsProps.md @@ -0,0 +1,53 @@ +[Admin Docs](/) + +*** + +# Interface: InterfaceTagActionsProps + +Defined in: [src/components/TagActions/TagActions.tsx:36](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/components/TagActions/TagActions.tsx#L36) + +Props for the `AssignToTags` component. + +## Properties + +### hideTagActionsModal() + +> **hideTagActionsModal**: () => `void` + +Defined in: [src/components/TagActions/TagActions.tsx:38](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/components/TagActions/TagActions.tsx#L38) + +#### Returns + +`void` + +*** + +### t + +> **t**: `TFunction`\<`"manageTag"`\> + +Defined in: [src/components/TagActions/TagActions.tsx:40](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/components/TagActions/TagActions.tsx#L40) + +*** + +### tagActionsModalIsOpen + +> **tagActionsModalIsOpen**: `boolean` + +Defined in: [src/components/TagActions/TagActions.tsx:37](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/components/TagActions/TagActions.tsx#L37) + +*** + +### tagActionType + +> **tagActionType**: [`TagActionType`](../../../../utils/organizationTagsUtils/type-aliases/TagActionType.md) + +Defined in: [src/components/TagActions/TagActions.tsx:39](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/components/TagActions/TagActions.tsx#L39) + +*** + +### tCommon + +> **tCommon**: `TFunction`\<`"common"`\> + +Defined in: [src/components/TagActions/TagActions.tsx:41](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/components/TagActions/TagActions.tsx#L41) diff --git a/docs/docs/auto-docs/components/TagActions/TagActionsMocks/variables/MOCKS.md b/docs/docs/auto-docs/components/TagActions/TagActionsMocks/variables/MOCKS.md new file mode 100644 index 0000000000..c0a6e622d7 --- /dev/null +++ b/docs/docs/auto-docs/components/TagActions/TagActionsMocks/variables/MOCKS.md @@ -0,0 +1,9 @@ +[Admin Docs](/) + +*** + +# Variable: MOCKS + +> `const` **MOCKS**: (\{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `after`: `string`; `currentTagId`: `undefined`; `first`: `number`; `id`: `string`; `selectedTagIds`: `undefined`; `where`: \{ `name`: \{ `starts_with`: `string`; \}; \}; \}; \}; `result`: \{ `data`: \{ `assignToUserTags`: `undefined`; `getChildTags`: `undefined`; `organizations`: `object`[]; `removeFromUserTags`: `undefined`; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `after`: `undefined`; `currentTagId`: `undefined`; `first`: `number`; `id`: `string`; `selectedTagIds`: `undefined`; `where`: \{ `name`: \{ `starts_with`: `string`; \}; \}; \}; \}; `result`: \{ `data`: \{ `assignToUserTags`: `undefined`; `getChildTags`: `undefined`; `organizations`: `object`[]; `removeFromUserTags`: `undefined`; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `after`: `undefined`; `currentTagId`: `undefined`; `first`: `number`; `id`: `string`; `selectedTagIds`: `undefined`; `where`: `undefined`; \}; \}; `result`: \{ `data`: \{ `assignToUserTags`: `undefined`; `getChildTags`: \{ `ancestorTags`: `any`[]; `childTags`: \{ `edges`: `object`[]; `pageInfo`: \{ `endCursor`: `string`; `hasNextPage`: `boolean`; `hasPreviousPage`: `boolean`; `startCursor`: `string`; \}; `totalCount`: `number`; \}; `name`: `string`; \}; `organizations`: `undefined`; `removeFromUserTags`: `undefined`; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `after`: `string`; `currentTagId`: `undefined`; `first`: `number`; `id`: `string`; `selectedTagIds`: `undefined`; `where`: `undefined`; \}; \}; `result`: \{ `data`: \{ `assignToUserTags`: `undefined`; `getChildTags`: \{ `ancestorTags`: `any`[]; `childTags`: \{ `edges`: `object`[]; `pageInfo`: \{ `endCursor`: `string`; `hasNextPage`: `boolean`; `hasPreviousPage`: `boolean`; `startCursor`: `string`; \}; `totalCount`: `number`; \}; `name`: `string`; \}; `organizations`: `undefined`; `removeFromUserTags`: `undefined`; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `after`: `undefined`; `currentTagId`: `string`; `first`: `undefined`; `id`: `undefined`; `selectedTagIds`: `string`[]; `where`: `undefined`; \}; \}; `result`: \{ `data`: \{ `assignToUserTags`: \{ `_id`: `string`; \}; `getChildTags`: `undefined`; `organizations`: `undefined`; `removeFromUserTags`: `undefined`; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `after`: `undefined`; `currentTagId`: `string`; `first`: `undefined`; `id`: `undefined`; `selectedTagIds`: `string`[]; `where`: `undefined`; \}; \}; `result`: \{ `data`: \{ `assignToUserTags`: `undefined`; `getChildTags`: `undefined`; `organizations`: `undefined`; `removeFromUserTags`: \{ `_id`: `string`; \}; \}; \}; \})[] + +Defined in: [src/components/TagActions/TagActionsMocks.ts:9](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/components/TagActions/TagActionsMocks.ts#L9) diff --git a/docs/docs/auto-docs/components/TagActions/TagActionsMocks/variables/MOCKS_ERROR_ORGANIZATION_TAGS_QUERY.md b/docs/docs/auto-docs/components/TagActions/TagActionsMocks/variables/MOCKS_ERROR_ORGANIZATION_TAGS_QUERY.md new file mode 100644 index 0000000000..7cbac414f4 --- /dev/null +++ b/docs/docs/auto-docs/components/TagActions/TagActionsMocks/variables/MOCKS_ERROR_ORGANIZATION_TAGS_QUERY.md @@ -0,0 +1,47 @@ +[Admin Docs](/) + +*** + +# Variable: MOCKS\_ERROR\_ORGANIZATION\_TAGS\_QUERY + +> `const` **MOCKS\_ERROR\_ORGANIZATION\_TAGS\_QUERY**: `object`[] + +Defined in: [src/components/TagActions/TagActionsMocks.ts:622](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/components/TagActions/TagActionsMocks.ts#L622) + +## Type declaration + +### error + +> **error**: `Error` + +### request + +> **request**: `object` + +#### request.query + +> **query**: `DocumentNode` = `ORGANIZATION_USER_TAGS_LIST` + +#### request.variables + +> **variables**: `object` + +#### request.variables.first + +> **first**: `number` = `TAGS_QUERY_DATA_CHUNK_SIZE` + +#### request.variables.id + +> **id**: `string` = `'123'` + +#### request.variables.where + +> **where**: `object` + +#### request.variables.where.name + +> **name**: `object` + +#### request.variables.where.name.starts\_with + +> **starts\_with**: `string` = `''` diff --git a/docs/docs/auto-docs/components/TagActions/TagActionsMocks/variables/MOCKS_ERROR_SUBTAGS_QUERY.md b/docs/docs/auto-docs/components/TagActions/TagActionsMocks/variables/MOCKS_ERROR_SUBTAGS_QUERY.md new file mode 100644 index 0000000000..6c21d1b1d0 --- /dev/null +++ b/docs/docs/auto-docs/components/TagActions/TagActionsMocks/variables/MOCKS_ERROR_SUBTAGS_QUERY.md @@ -0,0 +1,9 @@ +[Admin Docs](/) + +*** + +# Variable: MOCKS\_ERROR\_SUBTAGS\_QUERY + +> `const` **MOCKS\_ERROR\_SUBTAGS\_QUERY**: (\{ `error`: `undefined`; `request`: \{ `query`: `DocumentNode`; `variables`: \{ `first`: `number`; `id`: `string`; `where`: \{ `name`: \{ `starts_with`: `string`; \}; \}; \}; \}; `result`: \{ `data`: \{ `organizations`: `object`[]; \}; \}; \} \| \{ `error`: `Error`; `request`: \{ `query`: `DocumentNode`; `variables`: \{ `first`: `number`; `id`: `string`; `where`: `undefined`; \}; \}; `result`: `undefined`; \})[] + +Defined in: [src/components/TagActions/TagActionsMocks.ts:636](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/components/TagActions/TagActionsMocks.ts#L636) diff --git a/docs/docs/auto-docs/components/TagActions/TagNode/functions/default.md b/docs/docs/auto-docs/components/TagActions/TagNode/functions/default.md new file mode 100644 index 0000000000..1ab61e6996 --- /dev/null +++ b/docs/docs/auto-docs/components/TagActions/TagNode/functions/default.md @@ -0,0 +1,31 @@ +[Admin Docs](/) + +*** + +# Function: default() + +> **default**(`props`, `deprecatedLegacyContext`?): `ReactNode` + +Defined in: [src/components/TagActions/TagNode.tsx:29](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/components/TagActions/TagNode.tsx#L29) + +Renders the Tags which can be expanded to list subtags. + +## Parameters + +### props + +`InterfaceTagNodeProps` + +### deprecatedLegacyContext? + +`any` + +**Deprecated** + +**See** + +[React Docs](https://legacy.reactjs.org/docs/legacy-context.html#referencing-context-in-lifecycle-methods) + +## Returns + +`ReactNode` diff --git a/docs/docs/auto-docs/components/TagActions/TagNodeMocks/variables/MOCKS1.md b/docs/docs/auto-docs/components/TagActions/TagNodeMocks/variables/MOCKS1.md new file mode 100644 index 0000000000..e5b1cb3b42 --- /dev/null +++ b/docs/docs/auto-docs/components/TagActions/TagNodeMocks/variables/MOCKS1.md @@ -0,0 +1,9 @@ +[Admin Docs](/) + +*** + +# Variable: MOCKS1 + +> `const` **MOCKS1**: (\{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `after`: `undefined`; `first`: `number`; `id`: `string`; \}; \}; `result`: \{ `data`: \{ `getChildTags`: \{ `__typename`: `string`; `childTags`: \{ `__typename`: `string`; `edges`: `object`[]; `pageInfo`: \{ `__typename`: `string`; `endCursor`: `string`; `hasNextPage`: `boolean`; \}; \}; \}; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `after`: `string`; `first`: `number`; `id`: `string`; \}; \}; `result`: \{ `data`: \{ `getChildTags`: \{ `__typename`: `string`; `childTags`: \{ `__typename`: `string`; `edges`: `object`[]; `pageInfo`: \{ `__typename`: `string`; `endCursor`: `string`; `hasNextPage`: `boolean`; \}; \}; \}; \}; \}; \})[] + +Defined in: [src/components/TagActions/TagNodeMocks.ts:3](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/components/TagActions/TagNodeMocks.ts#L3) diff --git a/docs/docs/auto-docs/components/TagActions/TagNodeMocks/variables/MOCKS_ERROR_SUBTAGS_QUERY1.md b/docs/docs/auto-docs/components/TagActions/TagNodeMocks/variables/MOCKS_ERROR_SUBTAGS_QUERY1.md new file mode 100644 index 0000000000..1bb556228a --- /dev/null +++ b/docs/docs/auto-docs/components/TagActions/TagNodeMocks/variables/MOCKS_ERROR_SUBTAGS_QUERY1.md @@ -0,0 +1,35 @@ +[Admin Docs](/) + +*** + +# Variable: MOCKS\_ERROR\_SUBTAGS\_QUERY1 + +> `const` **MOCKS\_ERROR\_SUBTAGS\_QUERY1**: `object`[] + +Defined in: [src/components/TagActions/TagNodeMocks.ts:64](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/components/TagActions/TagNodeMocks.ts#L64) + +## Type declaration + +### error + +> **error**: `Error` + +### request + +> **request**: `object` + +#### request.query + +> **query**: `DocumentNode` = `USER_TAG_SUB_TAGS` + +#### request.variables + +> **variables**: `object` + +#### request.variables.first + +> **first**: `number` = `10` + +#### request.variables.id + +> **id**: `string` = `'1'` diff --git a/docs/docs/auto-docs/components/UpdateSession/UpdateSession/functions/default.md b/docs/docs/auto-docs/components/UpdateSession/UpdateSession/functions/default.md new file mode 100644 index 0000000000..449c6ae1ec --- /dev/null +++ b/docs/docs/auto-docs/components/UpdateSession/UpdateSession/functions/default.md @@ -0,0 +1,29 @@ +[Admin Docs](/) + +*** + +# Function: default() + +> **default**(`props`, `deprecatedLegacyContext`?): `ReactNode` + +Defined in: [src/components/UpdateSession/UpdateSession.tsx:29](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/components/UpdateSession/UpdateSession.tsx#L29) + +## Parameters + +### props + +`TestInterfaceUpdateTimeoutProps` + +### deprecatedLegacyContext? + +`any` + +**Deprecated** + +**See** + +[React Docs](https://legacy.reactjs.org/docs/legacy-context.html#referencing-context-in-lifecycle-methods) + +## Returns + +`ReactNode` diff --git a/docs/docs/auto-docs/components/UserListCard/UserListCard/functions/default.md b/docs/docs/auto-docs/components/UserListCard/UserListCard/functions/default.md new file mode 100644 index 0000000000..4d613b4f55 --- /dev/null +++ b/docs/docs/auto-docs/components/UserListCard/UserListCard/functions/default.md @@ -0,0 +1,26 @@ +[Admin Docs](/) + +*** + +# Function: default() + +> **default**(`props`): `JSX.Element` + +Defined in: [src/components/UserListCard/UserListCard.tsx:27](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/components/UserListCard/UserListCard.tsx#L27) + +The UserListCard component allows for adding a user as an admin in a specific organization. +It uses a button to trigger a mutation for updating the user's role. + +## Parameters + +### props + +`InterfaceUserListCardProps` + +The properties for the UserListCard component. + +## Returns + +`JSX.Element` + +The JSX element representing the user list card. diff --git a/docs/docs/auto-docs/components/UserPasswordUpdate/UserPasswordUpdate/functions/default.md b/docs/docs/auto-docs/components/UserPasswordUpdate/UserPasswordUpdate/functions/default.md new file mode 100644 index 0000000000..259ea233b1 --- /dev/null +++ b/docs/docs/auto-docs/components/UserPasswordUpdate/UserPasswordUpdate/functions/default.md @@ -0,0 +1,36 @@ +[Admin Docs](/) + +*** + +# Function: default() + +> **default**(`props`, `deprecatedLegacyContext`?): `ReactNode` + +Defined in: [src/components/UserPasswordUpdate/UserPasswordUpdate.tsx:23](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/components/UserPasswordUpdate/UserPasswordUpdate.tsx#L23) + +UserUpdate component allows users to update their passwords. +It handles form submission and communicates with the backend to update the user's password. + +## Parameters + +### props + +`InterfaceUserPasswordUpdateProps` + +The properties for the UserUpdate component. + +### deprecatedLegacyContext? + +`any` + +**Deprecated** + +**See** + +[React Docs](https://legacy.reactjs.org/docs/legacy-context.html#referencing-context-in-lifecycle-methods) + +## Returns + +`ReactNode` + +The JSX element for updating user password. diff --git a/docs/docs/auto-docs/components/UserPasswordUpdate/UserPasswordUpdateMocks/variables/MOCKS.md b/docs/docs/auto-docs/components/UserPasswordUpdate/UserPasswordUpdateMocks/variables/MOCKS.md new file mode 100644 index 0000000000..1cc1d90c54 --- /dev/null +++ b/docs/docs/auto-docs/components/UserPasswordUpdate/UserPasswordUpdateMocks/variables/MOCKS.md @@ -0,0 +1,9 @@ +[Admin Docs](/) + +*** + +# Variable: MOCKS + +> `const` **MOCKS**: (\{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `confirmNewPassword`: `string`; `newPassword`: `string`; `previousPassword`: `string`; \}; \}; `result`: \{ `data`: \{ `users`: `object`[]; \}; `errors`: `undefined`; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `confirmNewPassword`: `string`; `newPassword`: `string`; `previousPassword`: `string`; \}; \}; `result`: \{ `data`: `undefined`; `errors`: `object`[]; \}; \})[] + +Defined in: [src/components/UserPasswordUpdate/UserPasswordUpdateMocks.ts:3](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/components/UserPasswordUpdate/UserPasswordUpdateMocks.ts#L3) diff --git a/docs/docs/auto-docs/components/UserPortal/ChatRoom/ChatRoom/functions/default.md b/docs/docs/auto-docs/components/UserPortal/ChatRoom/ChatRoom/functions/default.md new file mode 100644 index 0000000000..5a9fcdc70c --- /dev/null +++ b/docs/docs/auto-docs/components/UserPortal/ChatRoom/ChatRoom/functions/default.md @@ -0,0 +1,19 @@ +[Admin Docs](/) + +*** + +# Function: default() + +> **default**(`props`): `JSX.Element` + +Defined in: [src/components/UserPortal/ChatRoom/ChatRoom.tsx:100](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/components/UserPortal/ChatRoom/ChatRoom.tsx#L100) + +## Parameters + +### props + +`InterfaceChatRoomProps` + +## Returns + +`JSX.Element` diff --git a/docs/docs/auto-docs/components/UserPortal/CommentCard/CommentCard/functions/default.md b/docs/docs/auto-docs/components/UserPortal/CommentCard/CommentCard/functions/default.md new file mode 100644 index 0000000000..0086bf7da4 --- /dev/null +++ b/docs/docs/auto-docs/components/UserPortal/CommentCard/CommentCard/functions/default.md @@ -0,0 +1,28 @@ +[Admin Docs](/) + +*** + +# Function: default() + +> **default**(`props`): `JSX.Element` + +Defined in: [src/components/UserPortal/CommentCard/CommentCard.tsx:51](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/components/UserPortal/CommentCard/CommentCard.tsx#L51) + +Displays a card for a single comment with options to like or dislike the comment. + +Shows the commenter's name, the comment text, and the number of likes. +Allows the user to like or dislike the comment. The button icon changes based on whether the comment is liked by the user. + +## Parameters + +### props + +`InterfaceCommentCardProps` + +The properties passed to the component. + +## Returns + +`JSX.Element` + +The rendered comment card component. diff --git a/docs/docs/auto-docs/components/UserPortal/ContactCard/ContactCard/functions/default.md b/docs/docs/auto-docs/components/UserPortal/ContactCard/ContactCard/functions/default.md new file mode 100644 index 0000000000..2354cdb1b0 --- /dev/null +++ b/docs/docs/auto-docs/components/UserPortal/ContactCard/ContactCard/functions/default.md @@ -0,0 +1,29 @@ +[Admin Docs](/) + +*** + +# Function: default() + +> **default**(`props`): `JSX.Element` + +Defined in: [src/components/UserPortal/ContactCard/ContactCard.tsx:36](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/components/UserPortal/ContactCard/ContactCard.tsx#L36) + +Displays a card for a contact in a contact list. + +Shows the contact's name, email, and an image or avatar. +The card changes background color based on whether it is selected. +Clicking on the card sets it as the selected contact and updates the contact name. + +## Parameters + +### props + +`InterfaceContactCardProps` + +The properties passed to the component. + +## Returns + +`JSX.Element` + +The rendered contact card component. diff --git a/docs/docs/auto-docs/components/UserPortal/CreateDirectChat/CreateDirectChat/functions/default.md b/docs/docs/auto-docs/components/UserPortal/CreateDirectChat/CreateDirectChat/functions/default.md new file mode 100644 index 0000000000..175de7d4c1 --- /dev/null +++ b/docs/docs/auto-docs/components/UserPortal/CreateDirectChat/CreateDirectChat/functions/default.md @@ -0,0 +1,19 @@ +[Admin Docs](/) + +*** + +# Function: default() + +> **default**(`__namedParameters`): `JSX.Element` + +Defined in: [src/components/UserPortal/CreateDirectChat/CreateDirectChat.tsx:60](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/components/UserPortal/CreateDirectChat/CreateDirectChat.tsx#L60) + +## Parameters + +### \_\_namedParameters + +`InterfaceCreateDirectChatProps` + +## Returns + +`JSX.Element` diff --git a/docs/docs/auto-docs/components/UserPortal/CreateGroupChat/CreateGroupChat/functions/default.md b/docs/docs/auto-docs/components/UserPortal/CreateGroupChat/CreateGroupChat/functions/default.md new file mode 100644 index 0000000000..3c0a9689c6 --- /dev/null +++ b/docs/docs/auto-docs/components/UserPortal/CreateGroupChat/CreateGroupChat/functions/default.md @@ -0,0 +1,19 @@ +[Admin Docs](/) + +*** + +# Function: default() + +> **default**(`__namedParameters`): `JSX.Element` + +Defined in: [src/components/UserPortal/CreateGroupChat/CreateGroupChat.tsx:63](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/components/UserPortal/CreateGroupChat/CreateGroupChat.tsx#L63) + +## Parameters + +### \_\_namedParameters + +`InterfaceCreateGroupChatProps` + +## Returns + +`JSX.Element` diff --git a/docs/docs/auto-docs/components/UserPortal/DonationCard/DonationCard/functions/default.md b/docs/docs/auto-docs/components/UserPortal/DonationCard/DonationCard/functions/default.md new file mode 100644 index 0000000000..2cbe13c7b0 --- /dev/null +++ b/docs/docs/auto-docs/components/UserPortal/DonationCard/DonationCard/functions/default.md @@ -0,0 +1,28 @@ +[Admin Docs](/) + +*** + +# Function: default() + +> **default**(`props`): `JSX.Element` + +Defined in: [src/components/UserPortal/DonationCard/DonationCard.tsx:19](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/components/UserPortal/DonationCard/DonationCard.tsx#L19) + +Displays a card with details about a donation. + +Shows the donor's name, the amount donated, and the date of the donation. +Includes a button to view more details about the donation. + +## Parameters + +### props + +[`InterfaceDonationCardProps`](../../../../../screens/UserPortal/Donate/Donate/interfaces/InterfaceDonationCardProps.md) + +The properties passed to the component. + +## Returns + +`JSX.Element` + +The rendered donation card component. diff --git a/docs/docs/auto-docs/components/UserPortal/EventCard/EventCard/functions/default.md b/docs/docs/auto-docs/components/UserPortal/EventCard/EventCard/functions/default.md new file mode 100644 index 0000000000..0552f60c19 --- /dev/null +++ b/docs/docs/auto-docs/components/UserPortal/EventCard/EventCard/functions/default.md @@ -0,0 +1,29 @@ +[Admin Docs](/) + +*** + +# Function: default() + +> **default**(`props`): `JSX.Element` + +Defined in: [src/components/UserPortal/EventCard/EventCard.tsx:63](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/components/UserPortal/EventCard/EventCard.tsx#L63) + +Displays information about an event and provides an option to register for it. + +Shows the event's title, description, location, start and end dates and times, +creator's name, and registration status. Includes a button to register for the event +if the user is not already registered. + +## Parameters + +### props + +`InterfaceEventCardProps` + +The properties for the event card. + +## Returns + +`JSX.Element` + +The event card component. diff --git a/docs/docs/auto-docs/components/UserPortal/OrganizationCard/OrganizationCard/functions/default.md b/docs/docs/auto-docs/components/UserPortal/OrganizationCard/OrganizationCard/functions/default.md new file mode 100644 index 0000000000..23641c2203 --- /dev/null +++ b/docs/docs/auto-docs/components/UserPortal/OrganizationCard/OrganizationCard/functions/default.md @@ -0,0 +1,19 @@ +[Admin Docs](/) + +*** + +# Function: default() + +> **default**(`props`): `JSX.Element` + +Defined in: [src/components/UserPortal/OrganizationCard/OrganizationCard.tsx:73](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/components/UserPortal/OrganizationCard/OrganizationCard.tsx#L73) + +## Parameters + +### props + +`InterfaceOrganizationCardProps` + +## Returns + +`JSX.Element` diff --git a/docs/docs/auto-docs/components/UserPortal/OrganizationNavbar/OrganizationNavbar/functions/default.md b/docs/docs/auto-docs/components/UserPortal/OrganizationNavbar/OrganizationNavbar/functions/default.md new file mode 100644 index 0000000000..a8948ba1e6 --- /dev/null +++ b/docs/docs/auto-docs/components/UserPortal/OrganizationNavbar/OrganizationNavbar/functions/default.md @@ -0,0 +1,31 @@ +[Admin Docs](/) + +*** + +# Function: default() + +> **default**(`props`): `JSX.Element` + +Defined in: [src/components/UserPortal/OrganizationNavbar/OrganizationNavbar.tsx:44](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/components/UserPortal/OrganizationNavbar/OrganizationNavbar.tsx#L44) + +Displays the organization navbar with navigation options, user settings, and language selection. + +The navbar includes: +- Organization branding and name. +- Navigation links for various plugins based on user permissions. +- Language dropdown for changing the interface language. +- User dropdown for accessing settings and logging out. + +## Parameters + +### props + +`InterfaceNavbarProps` + +The properties for the navbar. + +## Returns + +`JSX.Element` + +The organization navbar component. diff --git a/docs/docs/auto-docs/components/UserPortal/OrganizationSidebar/OrganizationSidebar/functions/default.md b/docs/docs/auto-docs/components/UserPortal/OrganizationSidebar/OrganizationSidebar/functions/default.md new file mode 100644 index 0000000000..13ee056bdb --- /dev/null +++ b/docs/docs/auto-docs/components/UserPortal/OrganizationSidebar/OrganizationSidebar/functions/default.md @@ -0,0 +1,27 @@ +[Admin Docs](/) + +*** + +# Function: default() + +> **default**(): `JSX.Element` + +Defined in: [src/components/UserPortal/OrganizationSidebar/OrganizationSidebar.tsx:36](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/components/UserPortal/OrganizationSidebar/OrganizationSidebar.tsx#L36) + +OrganizationSidebar displays the sidebar for an organization, showing a list of members and events. + +This component fetches and displays: +- The top 3 members of the organization with their images and names. +- The top 3 upcoming events for the organization with their titles, start, and end dates. + +It includes: +- A link to view all members. +- A link to view all events. + +The sidebar handles loading states and displays appropriate messages while data is being fetched. + +## Returns + +`JSX.Element` + +JSX.Element representing the organization sidebar. diff --git a/docs/docs/auto-docs/components/UserPortal/PeopleCard/PeopleCard/functions/default.md b/docs/docs/auto-docs/components/UserPortal/PeopleCard/PeopleCard/functions/default.md new file mode 100644 index 0000000000..49da477165 --- /dev/null +++ b/docs/docs/auto-docs/components/UserPortal/PeopleCard/PeopleCard/functions/default.md @@ -0,0 +1,32 @@ +[Admin Docs](/) + +*** + +# Function: default() + +> **default**(`props`): `JSX.Element` + +Defined in: [src/components/UserPortal/PeopleCard/PeopleCard.tsx:30](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/components/UserPortal/PeopleCard/PeopleCard.tsx#L30) + +PeopleCard component displays information about a person within an organization. + +It includes: +- An image of the person or a default image if none is provided. +- The serial number of the person. +- The person's name. +- The person's email address. +- The person's role within the organization, styled with a border. + +## Parameters + +### props + +`InterfaceOrganizationCardProps` + +The properties passed to the component. + +## Returns + +`JSX.Element` + +JSX.Element representing a card with the person's details. diff --git a/docs/docs/auto-docs/components/UserPortal/PostCard/PostCard/functions/default.md b/docs/docs/auto-docs/components/UserPortal/PostCard/PostCard/functions/default.md new file mode 100644 index 0000000000..c10f84ed40 --- /dev/null +++ b/docs/docs/auto-docs/components/UserPortal/PostCard/PostCard/functions/default.md @@ -0,0 +1,32 @@ +[Admin Docs](/) + +*** + +# Function: default() + +> **default**(`props`): `JSX.Element` + +Defined in: [src/components/UserPortal/PostCard/PostCard.tsx:69](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/components/UserPortal/PostCard/PostCard.tsx#L69) + +PostCard component displays an individual post, including its details, interactions, and comments. + +The component allows users to: +- View the post's details in a modal. +- Edit or delete the post. +- Like or unlike the post. +- Add comments to the post. +- Like or dislike individual comments. + +## Parameters + +### props + +[`InterfacePostCard`](../../../../../utils/interfaces/interfaces/InterfacePostCard.md) + +The properties passed to the component including post details, comments, and related actions. + +## Returns + +`JSX.Element` + +JSX.Element representing a post card with interactive features. diff --git a/docs/docs/auto-docs/components/UserPortal/PromotedPost/PromotedPost/functions/default.md b/docs/docs/auto-docs/components/UserPortal/PromotedPost/PromotedPost/functions/default.md new file mode 100644 index 0000000000..c8f8dfa7ab --- /dev/null +++ b/docs/docs/auto-docs/components/UserPortal/PromotedPost/PromotedPost/functions/default.md @@ -0,0 +1,30 @@ +[Admin Docs](/) + +*** + +# Function: default() + +> **default**(`props`): `JSX.Element` + +Defined in: [src/components/UserPortal/PromotedPost/PromotedPost.tsx:23](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/components/UserPortal/PromotedPost/PromotedPost.tsx#L23) + +PromotedPost component displays a card representing promoted content. + +This component includes: +- A header with a star icon indicating the content is promoted. +- A title and description of the promoted content. +- An optional image associated with the promoted content. + +## Parameters + +### props + +`InterfacePostCardProps` + +Properties passed to the component including an image, title, and ID. + +## Returns + +`JSX.Element` + +JSX.Element representing a card with promoted content. diff --git a/docs/docs/auto-docs/components/UserPortal/Register/Register/functions/default.md b/docs/docs/auto-docs/components/UserPortal/Register/Register/functions/default.md new file mode 100644 index 0000000000..9428b00a4d --- /dev/null +++ b/docs/docs/auto-docs/components/UserPortal/Register/Register/functions/default.md @@ -0,0 +1,19 @@ +[Admin Docs](/) + +*** + +# Function: default() + +> **default**(`props`): `JSX.Element` + +Defined in: [src/components/UserPortal/Register/Register.tsx:22](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/components/UserPortal/Register/Register.tsx#L22) + +## Parameters + +### props + +`InterfaceRegisterProps` + +## Returns + +`JSX.Element` diff --git a/docs/docs/auto-docs/components/UserPortal/SecuredRouteForUser/SecuredRouteForUser/functions/default.md b/docs/docs/auto-docs/components/UserPortal/SecuredRouteForUser/SecuredRouteForUser/functions/default.md new file mode 100644 index 0000000000..a7923bc50a --- /dev/null +++ b/docs/docs/auto-docs/components/UserPortal/SecuredRouteForUser/SecuredRouteForUser/functions/default.md @@ -0,0 +1,20 @@ +[Admin Docs](/) + +*** + +# Function: default() + +> **default**(): `Element` + +Defined in: [src/components/UserPortal/SecuredRouteForUser/SecuredRouteForUser.tsx:14](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/components/UserPortal/SecuredRouteForUser/SecuredRouteForUser.tsx#L14) + +A component that guards routes by checking if the user is logged in. +If the user is logged in and does not have 'AdminFor' set, the child routes are rendered. +If the user is not logged in, they are redirected to the homepage. +If the user is logged in but has 'AdminFor' set, a 404 page is shown. + +## Returns + +`Element` + +JSX.Element - Rendered component based on user authentication and role. diff --git a/docs/docs/auto-docs/components/UserPortal/StartPostModal/StartPostModal/functions/default.md b/docs/docs/auto-docs/components/UserPortal/StartPostModal/StartPostModal/functions/default.md new file mode 100644 index 0000000000..9d8fd78a5a --- /dev/null +++ b/docs/docs/auto-docs/components/UserPortal/StartPostModal/StartPostModal/functions/default.md @@ -0,0 +1,28 @@ +[Admin Docs](/) + +*** + +# Function: default() + +> **default**(`__namedParameters`): `Element` + +Defined in: [src/components/UserPortal/StartPostModal/StartPostModal.tsx:40](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/components/UserPortal/StartPostModal/StartPostModal.tsx#L40) + +A modal component for creating a new post. + +This modal includes: +- A form where users can input the content of the post. +- A preview of the image if provided. +- User's profile image and name displayed in the modal header. + +## Parameters + +### \_\_namedParameters + +`InterfaceStartPostModalProps` + +## Returns + +`Element` + +JSX.Element - The rendered modal component. diff --git a/docs/docs/auto-docs/components/UserPortal/UserNavbar/UserNavbar/functions/default.md b/docs/docs/auto-docs/components/UserPortal/UserNavbar/UserNavbar/functions/default.md new file mode 100644 index 0000000000..b38677f8ea --- /dev/null +++ b/docs/docs/auto-docs/components/UserPortal/UserNavbar/UserNavbar/functions/default.md @@ -0,0 +1,22 @@ +[Admin Docs](/) + +*** + +# Function: default() + +> **default**(): `JSX.Element` + +Defined in: [src/components/UserPortal/UserNavbar/UserNavbar.tsx:26](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/components/UserPortal/UserNavbar/UserNavbar.tsx#L26) + +Navbar component for user-specific actions and settings. + +This component provides: +- A branding image and name. +- A dropdown for language selection. +- A dropdown for user actions including profile settings and logout. + +## Returns + +`JSX.Element` + +JSX.Element - The rendered Navbar component. diff --git a/docs/docs/auto-docs/components/UserPortal/UserProfile/EventsAttendedByUser/functions/EventsAttendedByUser.md b/docs/docs/auto-docs/components/UserPortal/UserProfile/EventsAttendedByUser/functions/EventsAttendedByUser.md new file mode 100644 index 0000000000..3907133168 --- /dev/null +++ b/docs/docs/auto-docs/components/UserPortal/UserProfile/EventsAttendedByUser/functions/EventsAttendedByUser.md @@ -0,0 +1,29 @@ +[Admin Docs](/) + +*** + +# Function: EventsAttendedByUser() + +> **EventsAttendedByUser**(`props`, `deprecatedLegacyContext`?): `ReactNode` + +Defined in: [src/components/UserPortal/UserProfile/EventsAttendedByUser.tsx:31](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/components/UserPortal/UserProfile/EventsAttendedByUser.tsx#L31) + +## Parameters + +### props + +`InterfaceUser` + +### deprecatedLegacyContext? + +`any` + +**Deprecated** + +**See** + +[React Docs](https://legacy.reactjs.org/docs/legacy-context.html#referencing-context-in-lifecycle-methods) + +## Returns + +`ReactNode` diff --git a/docs/docs/auto-docs/components/UserPortal/UserProfile/UserAddressFields/functions/UserAddressFields.md b/docs/docs/auto-docs/components/UserPortal/UserProfile/UserAddressFields/functions/UserAddressFields.md new file mode 100644 index 0000000000..3d896bf821 --- /dev/null +++ b/docs/docs/auto-docs/components/UserPortal/UserProfile/UserAddressFields/functions/UserAddressFields.md @@ -0,0 +1,36 @@ +[Admin Docs](/) + +*** + +# Function: UserAddressFields() + +> **UserAddressFields**(`props`, `deprecatedLegacyContext`?): `ReactNode` + +Defined in: [src/components/UserPortal/UserProfile/UserAddressFields.tsx:26](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/components/UserPortal/UserProfile/UserAddressFields.tsx#L26) + +Form component containing address-related input fields for user profile +Includes fields for address, city, state, and country + +## Parameters + +### props + +`InterfaceUserAddressFieldsProps` + +Component props + +### deprecatedLegacyContext? + +`any` + +**Deprecated** + +**See** + +[React Docs](https://legacy.reactjs.org/docs/legacy-context.html#referencing-context-in-lifecycle-methods) + +## Returns + +`ReactNode` + +Form group with address input fields diff --git a/docs/docs/auto-docs/components/UserPortal/UserSidebar/UserSidebar/functions/default.md b/docs/docs/auto-docs/components/UserPortal/UserSidebar/UserSidebar/functions/default.md new file mode 100644 index 0000000000..7a7fe54961 --- /dev/null +++ b/docs/docs/auto-docs/components/UserPortal/UserSidebar/UserSidebar/functions/default.md @@ -0,0 +1,28 @@ +[Admin Docs](/) + +*** + +# Function: default() + +> **default**(`__namedParameters`): `Element` + +Defined in: [src/components/UserPortal/UserSidebar/UserSidebar.tsx:28](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/components/UserPortal/UserSidebar/UserSidebar.tsx#L28) + +Sidebar component for user navigation, including links to organizations and settings. + +Provides: +- A logo and title for the sidebar. +- Navigation buttons for "My Organizations" and "Settings". +- Dynamic styling based on the active route. + +## Parameters + +### \_\_namedParameters + +[`InterfaceUserSidebarProps`](../interfaces/InterfaceUserSidebarProps.md) + +## Returns + +`Element` + +JSX.Element - The rendered sidebar component. diff --git a/docs/docs/auto-docs/components/UserPortal/UserSidebar/UserSidebar/interfaces/InterfaceUserSidebarProps.md b/docs/docs/auto-docs/components/UserPortal/UserSidebar/UserSidebar/interfaces/InterfaceUserSidebarProps.md new file mode 100644 index 0000000000..cd3e03d0ce --- /dev/null +++ b/docs/docs/auto-docs/components/UserPortal/UserSidebar/UserSidebar/interfaces/InterfaceUserSidebarProps.md @@ -0,0 +1,23 @@ +[Admin Docs](/) + +*** + +# Interface: InterfaceUserSidebarProps + +Defined in: [src/components/UserPortal/UserSidebar/UserSidebar.tsx:10](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/components/UserPortal/UserSidebar/UserSidebar.tsx#L10) + +## Properties + +### hideDrawer + +> **hideDrawer**: `boolean` + +Defined in: [src/components/UserPortal/UserSidebar/UserSidebar.tsx:11](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/components/UserPortal/UserSidebar/UserSidebar.tsx#L11) + +*** + +### setHideDrawer + +> **setHideDrawer**: `Dispatch`\<`SetStateAction`\<`boolean`\>\> + +Defined in: [src/components/UserPortal/UserSidebar/UserSidebar.tsx:12](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/components/UserPortal/UserSidebar/UserSidebar.tsx#L12) diff --git a/docs/docs/auto-docs/components/UserPortal/UserSidebarOrg/UserSidebarOrg/functions/default.md b/docs/docs/auto-docs/components/UserPortal/UserSidebarOrg/UserSidebarOrg/functions/default.md new file mode 100644 index 0000000000..c85b7c8b83 --- /dev/null +++ b/docs/docs/auto-docs/components/UserPortal/UserSidebarOrg/UserSidebarOrg/functions/default.md @@ -0,0 +1,28 @@ +[Admin Docs](/) + +*** + +# Function: default() + +> **default**(`__namedParameters`): `Element` + +Defined in: [src/components/UserPortal/UserSidebarOrg/UserSidebarOrg.tsx:39](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/components/UserPortal/UserSidebarOrg/UserSidebarOrg.tsx#L39) + +Sidebar component for user navigation within an organization. + +Provides: +- Branding with the Talawa logo. +- Displays the current organization's details. +- Navigation options with links and collapsible dropdowns. + +## Parameters + +### \_\_namedParameters + +[`InterfaceUserSidebarOrgProps`](../interfaces/InterfaceUserSidebarOrgProps.md) + +## Returns + +`Element` + +JSX.Element - The rendered sidebar component. diff --git a/docs/docs/auto-docs/components/UserPortal/UserSidebarOrg/UserSidebarOrg/interfaces/InterfaceUserSidebarOrgProps.md b/docs/docs/auto-docs/components/UserPortal/UserSidebarOrg/UserSidebarOrg/interfaces/InterfaceUserSidebarOrgProps.md new file mode 100644 index 0000000000..30da68d3fa --- /dev/null +++ b/docs/docs/auto-docs/components/UserPortal/UserSidebarOrg/UserSidebarOrg/interfaces/InterfaceUserSidebarOrgProps.md @@ -0,0 +1,39 @@ +[Admin Docs](/) + +*** + +# Interface: InterfaceUserSidebarOrgProps + +Defined in: [src/components/UserPortal/UserSidebarOrg/UserSidebarOrg.tsx:17](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/components/UserPortal/UserSidebarOrg/UserSidebarOrg.tsx#L17) + +## Properties + +### hideDrawer + +> **hideDrawer**: `boolean` + +Defined in: [src/components/UserPortal/UserSidebarOrg/UserSidebarOrg.tsx:20](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/components/UserPortal/UserSidebarOrg/UserSidebarOrg.tsx#L20) + +*** + +### orgId + +> **orgId**: `string` + +Defined in: [src/components/UserPortal/UserSidebarOrg/UserSidebarOrg.tsx:18](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/components/UserPortal/UserSidebarOrg/UserSidebarOrg.tsx#L18) + +*** + +### setHideDrawer + +> **setHideDrawer**: `Dispatch`\<`SetStateAction`\<`boolean`\>\> + +Defined in: [src/components/UserPortal/UserSidebarOrg/UserSidebarOrg.tsx:21](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/components/UserPortal/UserSidebarOrg/UserSidebarOrg.tsx#L21) + +*** + +### targets + +> **targets**: [`TargetsType`](../../../../../state/reducers/routesReducer/type-aliases/TargetsType.md)[] + +Defined in: [src/components/UserPortal/UserSidebarOrg/UserSidebarOrg.tsx:19](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/components/UserPortal/UserSidebarOrg/UserSidebarOrg.tsx#L19) diff --git a/docs/docs/auto-docs/components/UserProfileSettings/DeleteUser/functions/default.md b/docs/docs/auto-docs/components/UserProfileSettings/DeleteUser/functions/default.md new file mode 100644 index 0000000000..c8b200a240 --- /dev/null +++ b/docs/docs/auto-docs/components/UserProfileSettings/DeleteUser/functions/default.md @@ -0,0 +1,32 @@ +[Admin Docs](/) + +*** + +# Function: default() + +> **default**(`props`, `deprecatedLegacyContext`?): `ReactNode` + +Defined in: [src/components/UserProfileSettings/DeleteUser.tsx:12](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/components/UserProfileSettings/DeleteUser.tsx#L12) + +DeleteUser component displays a card with a button to delete a user. +It includes a message and a button to trigger the delete action. + +## Parameters + +### props + +### deprecatedLegacyContext? + +`any` + +**Deprecated** + +**See** + +[React Docs](https://legacy.reactjs.org/docs/legacy-context.html#referencing-context-in-lifecycle-methods) + +## Returns + +`ReactNode` + +The JSX element for the delete user card. diff --git a/docs/docs/auto-docs/components/UserProfileSettings/OtherSettings/functions/default.md b/docs/docs/auto-docs/components/UserProfileSettings/OtherSettings/functions/default.md new file mode 100644 index 0000000000..4d6363df3c --- /dev/null +++ b/docs/docs/auto-docs/components/UserProfileSettings/OtherSettings/functions/default.md @@ -0,0 +1,32 @@ +[Admin Docs](/) + +*** + +# Function: default() + +> **default**(`props`, `deprecatedLegacyContext`?): `ReactNode` + +Defined in: [src/components/UserProfileSettings/OtherSettings.tsx:13](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/components/UserProfileSettings/OtherSettings.tsx#L13) + +OtherSettings component displays a card with settings options such as changing the language. +It includes a label and a dropdown for selecting a different language. + +## Parameters + +### props + +### deprecatedLegacyContext? + +`any` + +**Deprecated** + +**See** + +[React Docs](https://legacy.reactjs.org/docs/legacy-context.html#referencing-context-in-lifecycle-methods) + +## Returns + +`ReactNode` + +The JSX element for the other settings card. diff --git a/docs/docs/auto-docs/components/UserProfileSettings/UserProfile/functions/default.md b/docs/docs/auto-docs/components/UserProfileSettings/UserProfile/functions/default.md new file mode 100644 index 0000000000..ef370cdc11 --- /dev/null +++ b/docs/docs/auto-docs/components/UserProfileSettings/UserProfile/functions/default.md @@ -0,0 +1,36 @@ +[Admin Docs](/) + +*** + +# Function: default() + +> **default**(`props`, `deprecatedLegacyContext`?): `ReactNode` + +Defined in: [src/components/UserProfileSettings/UserProfile.tsx:38](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/components/UserProfileSettings/UserProfile.tsx#L38) + +UserProfile component displays user profile details including an avatar or profile image, name, email, and join date. +It also provides a button to copy the profile link. + +## Parameters + +### props + +`InterfaceUserProfile` + +The properties to be passed into the component. + +### deprecatedLegacyContext? + +`any` + +**Deprecated** + +**See** + +[React Docs](https://legacy.reactjs.org/docs/legacy-context.html#referencing-context-in-lifecycle-methods) + +## Returns + +`ReactNode` + +The JSX element for the user profile card. diff --git a/docs/docs/auto-docs/components/UsersTableItem/UserTableItemMocks/variables/MOCKS.md b/docs/docs/auto-docs/components/UsersTableItem/UserTableItemMocks/variables/MOCKS.md new file mode 100644 index 0000000000..14c464c86c --- /dev/null +++ b/docs/docs/auto-docs/components/UsersTableItem/UserTableItemMocks/variables/MOCKS.md @@ -0,0 +1,9 @@ +[Admin Docs](/) + +*** + +# Variable: MOCKS + +> `const` **MOCKS**: (\{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `organizationId`: `undefined`; `orgid`: `string`; `role`: `undefined`; `userid`: `string`; `userId`: `undefined`; \}; \}; `result`: \{ `data`: \{ `removeMember`: \{ `_id`: `string`; \}; `updateUserRoleInOrganization`: `undefined`; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `organizationId`: `string`; `orgid`: `undefined`; `role`: `string`; `userid`: `undefined`; `userId`: `string`; \}; \}; `result`: \{ `data`: \{ `removeMember`: `undefined`; `updateUserRoleInOrganization`: \{ `_id`: `string`; \}; \}; \}; \})[] + +Defined in: [src/components/UsersTableItem/UserTableItemMocks.ts:6](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/components/UsersTableItem/UserTableItemMocks.ts#L6) diff --git a/docs/docs/auto-docs/components/UsersTableItem/UserTableItemMocks/variables/MOCKS2.md b/docs/docs/auto-docs/components/UsersTableItem/UserTableItemMocks/variables/MOCKS2.md new file mode 100644 index 0000000000..34288d49f3 --- /dev/null +++ b/docs/docs/auto-docs/components/UsersTableItem/UserTableItemMocks/variables/MOCKS2.md @@ -0,0 +1,35 @@ +[Admin Docs](/) + +*** + +# Variable: MOCKS2 + +> `const` **MOCKS2**: `object`[] + +Defined in: [src/components/UsersTableItem/UserTableItemMocks.ts:42](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/components/UsersTableItem/UserTableItemMocks.ts#L42) + +## Type declaration + +### error + +> **error**: `Error` + +### request + +> **request**: `object` + +#### request.query + +> **query**: `DocumentNode` = `REMOVE_MEMBER_MUTATION` + +#### request.variables + +> **variables**: `object` + +#### request.variables.orgid + +> **orgid**: `string` = `'abc'` + +#### request.variables.userid + +> **userid**: `string` = `'123'` diff --git a/docs/docs/auto-docs/components/UsersTableItem/UserTableItemMocks/variables/MOCKS_UPDATE.md b/docs/docs/auto-docs/components/UsersTableItem/UserTableItemMocks/variables/MOCKS_UPDATE.md new file mode 100644 index 0000000000..20b904c0f2 --- /dev/null +++ b/docs/docs/auto-docs/components/UsersTableItem/UserTableItemMocks/variables/MOCKS_UPDATE.md @@ -0,0 +1,9 @@ +[Admin Docs](/) + +*** + +# Variable: MOCKS\_UPDATE + +> `const` **MOCKS\_UPDATE**: (\{ `error`: `Error`; `request`: \{ `query`: `DocumentNode`; `variables`: \{ `organizationId`: `string`; `role`: `string`; `userId`: `string`; \}; \}; `result`: `undefined`; \} \| \{ `error`: `undefined`; `request`: \{ `query`: `DocumentNode`; `variables`: \{ `organizationId`: `string`; `role`: `string`; `userId`: `string`; \}; \}; `result`: \{ `data`: \{ `updateUserRoleInOrganization`: \{ `_id`: `string`; \}; \}; \}; \})[] + +Defined in: [src/components/UsersTableItem/UserTableItemMocks.ts:55](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/components/UsersTableItem/UserTableItemMocks.ts#L55) diff --git a/docs/docs/auto-docs/components/UsersTableItem/UsersTableItem/functions/default.md b/docs/docs/auto-docs/components/UsersTableItem/UsersTableItem/functions/default.md new file mode 100644 index 0000000000..6577499067 --- /dev/null +++ b/docs/docs/auto-docs/components/UsersTableItem/UsersTableItem/functions/default.md @@ -0,0 +1,19 @@ +[Admin Docs](/) + +*** + +# Function: default() + +> **default**(`props`): `Element` + +Defined in: [src/components/UsersTableItem/UsersTableItem.tsx:23](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/components/UsersTableItem/UsersTableItem.tsx#L23) + +## Parameters + +### props + +`Props` + +## Returns + +`Element` diff --git a/docs/docs/auto-docs/components/Venues/VenueCard/functions/default.md b/docs/docs/auto-docs/components/Venues/VenueCard/functions/default.md new file mode 100644 index 0000000000..ea781ff2f3 --- /dev/null +++ b/docs/docs/auto-docs/components/Venues/VenueCard/functions/default.md @@ -0,0 +1,37 @@ +[Admin Docs](/) + +*** + +# Function: default() + +> **default**(`__namedParameters`): `Element` + +Defined in: [src/components/Venues/VenueCard.tsx:39](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/components/Venues/VenueCard.tsx#L39) + +Represents a card component displaying venue information. + +This component renders a card with the venue's image, name, capacity, and description. +It also provides buttons to edit or delete the venue. + +## Parameters + +### \_\_namedParameters + +`InterfaceVenueCardProps` + +## Returns + +`Element` + +JSX.Element - The `VenueCard` component. + +## Example + +```tsx + +``` diff --git a/docs/docs/auto-docs/components/Venues/VenueModal/functions/default.md b/docs/docs/auto-docs/components/Venues/VenueModal/functions/default.md new file mode 100644 index 0000000000..77669d7973 --- /dev/null +++ b/docs/docs/auto-docs/components/Venues/VenueModal/functions/default.md @@ -0,0 +1,26 @@ +[Admin Docs](/) + +*** + +# Function: default() + +> **default**(`__namedParameters`): `Element` + +Defined in: [src/components/Venues/VenueModal.tsx:39](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/components/Venues/VenueModal.tsx#L39) + +A modal component for creating or updating venue information. + +This component displays a modal window where users can enter details for a venue, such as name, description, capacity, and an image. +It also handles submitting the form data to create or update a venue based on whether the `edit` prop is true or false. + +## Parameters + +### \_\_namedParameters + +[`InterfaceVenueModalProps`](../interfaces/InterfaceVenueModalProps.md) + +## Returns + +`Element` + +The rendered modal component. diff --git a/docs/docs/auto-docs/components/Venues/VenueModal/interfaces/InterfaceVenueModalProps.md b/docs/docs/auto-docs/components/Venues/VenueModal/interfaces/InterfaceVenueModalProps.md new file mode 100644 index 0000000000..83d74fd435 --- /dev/null +++ b/docs/docs/auto-docs/components/Venues/VenueModal/interfaces/InterfaceVenueModalProps.md @@ -0,0 +1,63 @@ +[Admin Docs](/) + +*** + +# Interface: InterfaceVenueModalProps + +Defined in: [src/components/Venues/VenueModal.tsx:15](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/components/Venues/VenueModal.tsx#L15) + +## Properties + +### edit + +> **edit**: `boolean` + +Defined in: [src/components/Venues/VenueModal.tsx:21](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/components/Venues/VenueModal.tsx#L21) + +*** + +### onHide() + +> **onHide**: () => `void` + +Defined in: [src/components/Venues/VenueModal.tsx:17](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/components/Venues/VenueModal.tsx#L17) + +#### Returns + +`void` + +*** + +### orgId + +> **orgId**: `string` + +Defined in: [src/components/Venues/VenueModal.tsx:19](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/components/Venues/VenueModal.tsx#L19) + +*** + +### refetchVenues() + +> **refetchVenues**: () => `void` + +Defined in: [src/components/Venues/VenueModal.tsx:18](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/components/Venues/VenueModal.tsx#L18) + +#### Returns + +`void` + +*** + +### show + +> **show**: `boolean` + +Defined in: [src/components/Venues/VenueModal.tsx:16](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/components/Venues/VenueModal.tsx#L16) + +*** + +### venueData? + +> `optional` **venueData**: [`InterfaceQueryVenueListItem`](../../../../utils/interfaces/interfaces/InterfaceQueryVenueListItem.md) + +Defined in: [src/components/Venues/VenueModal.tsx:20](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/components/Venues/VenueModal.tsx#L20) diff --git a/docs/docs/auto-docs/components/plugins/DummyPlugin/DummyPlugin/functions/default.md b/docs/docs/auto-docs/components/plugins/DummyPlugin/DummyPlugin/functions/default.md new file mode 100644 index 0000000000..a6edb3ab4d --- /dev/null +++ b/docs/docs/auto-docs/components/plugins/DummyPlugin/DummyPlugin/functions/default.md @@ -0,0 +1,20 @@ +[Admin Docs](/) + +*** + +# Function: default() + +> **default**(): `JSX.Element` + +Defined in: [src/components/plugins/DummyPlugin/DummyPlugin.tsx:12](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/components/plugins/DummyPlugin/DummyPlugin.tsx#L12) + +A dummy plugin component that renders a welcome message inside an `AddOn` component. + +This component is used for demonstration or testing purposes and does not have any +additional functionality or properties. + +## Returns + +`JSX.Element` + +JSX.Element - Renders the `AddOn` component containing a welcome message. diff --git a/docs/docs/auto-docs/components/plugins/DummyPlugin2/DummyPlugin2/functions/default.md b/docs/docs/auto-docs/components/plugins/DummyPlugin2/DummyPlugin2/functions/default.md new file mode 100644 index 0000000000..d273982109 --- /dev/null +++ b/docs/docs/auto-docs/components/plugins/DummyPlugin2/DummyPlugin2/functions/default.md @@ -0,0 +1,19 @@ +[Admin Docs](/) + +*** + +# Function: default() + +> **default**(): `JSX.Element` + +Defined in: [src/components/plugins/DummyPlugin2/DummyPlugin2.tsx:10](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/components/plugins/DummyPlugin2/DummyPlugin2.tsx#L10) + +A placeholder component for demonstration or testing purposes. +It renders an empty `div` element. + +This component currently does not have any additional functionality +or properties. + +## Returns + +`JSX.Element` diff --git a/docs/docs/auto-docs/constants/variables/socialMediaLinks.md b/docs/docs/auto-docs/constants/variables/socialMediaLinks.md new file mode 100644 index 0000000000..4168fd9491 --- /dev/null +++ b/docs/docs/auto-docs/constants/variables/socialMediaLinks.md @@ -0,0 +1,23 @@ +[Admin Docs](/) + +*** + +# Variable: socialMediaLinks + +> `const` **socialMediaLinks**: `object`[] + +Defined in: [src/constants.ts:12](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/constants.ts#L12) + +## Type declaration + +### href + +> **href**: `string` = `'https://www.facebook.com/palisadoesproject'` + +### logo + +> **logo**: `string` = `FacebookLogo` + +### tag + +> **tag**: `string` = `'facebook'` diff --git a/docs/docs/auto-docs/reportWebVitals/functions/default.md b/docs/docs/auto-docs/reportWebVitals/functions/default.md new file mode 100644 index 0000000000..d601eb635a --- /dev/null +++ b/docs/docs/auto-docs/reportWebVitals/functions/default.md @@ -0,0 +1,19 @@ +[Admin Docs](/) + +*** + +# Function: default() + +> **default**(`onPerfEntry`?): `void` + +Defined in: [src/reportWebVitals.ts:4](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/reportWebVitals.ts#L4) + +## Parameters + +### onPerfEntry? + +(`metric`) => `void` + +## Returns + +`void` diff --git a/docs/docs/auto-docs/screens/BlockUser/BlockUser/functions/default.md b/docs/docs/auto-docs/screens/BlockUser/BlockUser/functions/default.md new file mode 100644 index 0000000000..90d5d0454f --- /dev/null +++ b/docs/docs/auto-docs/screens/BlockUser/BlockUser/functions/default.md @@ -0,0 +1,26 @@ +[Admin Docs](/) + +*** + +# Function: default() + +> **default**(): `Element` + +Defined in: [src/screens/BlockUser/BlockUser.tsx:45](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/screens/BlockUser/BlockUser.tsx#L45) + +Requests component displays and manages a list of users that can be blocked or unblocked. + +This component allows users to search for members by their first name or last name, +toggle between viewing blocked and all members, and perform block/unblock operations. + +## Returns + +`Element` + +JSX.Element - The `Requests` component. + +## Example + +```tsx + +``` diff --git a/docs/docs/auto-docs/screens/CommunityProfile/CommunityProfile/functions/default.md b/docs/docs/auto-docs/screens/CommunityProfile/CommunityProfile/functions/default.md new file mode 100644 index 0000000000..89f8210220 --- /dev/null +++ b/docs/docs/auto-docs/screens/CommunityProfile/CommunityProfile/functions/default.md @@ -0,0 +1,28 @@ +[Admin Docs](/) + +*** + +# Function: default() + +> **default**(): `Element` + +Defined in: [src/screens/CommunityProfile/CommunityProfile.tsx:40](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/screens/CommunityProfile/CommunityProfile.tsx#L40) + +`CommunityProfile` component allows users to view and update their community profile details. + +It includes functionalities to: +- Display current community profile information +- Update profile details including social media links and logo +- Reset profile changes to the initial state + +## Returns + +`Element` + +JSX.Element - The `CommunityProfile` component. + +## Example + +```tsx + +``` diff --git a/docs/docs/auto-docs/screens/EventManagement/EventManagement/functions/default.md b/docs/docs/auto-docs/screens/EventManagement/EventManagement/functions/default.md new file mode 100644 index 0000000000..00a53867d6 --- /dev/null +++ b/docs/docs/auto-docs/screens/EventManagement/EventManagement/functions/default.md @@ -0,0 +1,32 @@ +[Admin Docs](/) + +*** + +# Function: default() + +> **default**(): `Element` + +Defined in: [src/screens/EventManagement/EventManagement.tsx:91](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/screens/EventManagement/EventManagement.tsx#L91) + +`EventManagement` component handles the display and navigation of different event management sections. + +It provides a tabbed interface for: +- Viewing event dashboard +- Managing event registrants +- Handling event actions +- Reviewing event agendas +- Viewing event statistics +- Managing event volunteers +- Managing event attendance + +## Returns + +`Element` + +JSX.Element - The `EventManagement` component. + +## Example + +```tsx + +``` diff --git a/docs/docs/auto-docs/screens/EventVolunteers/Requests/Requests.mocks/variables/EMPTY_MOCKS.md b/docs/docs/auto-docs/screens/EventVolunteers/Requests/Requests.mocks/variables/EMPTY_MOCKS.md new file mode 100644 index 0000000000..54a8210a7f --- /dev/null +++ b/docs/docs/auto-docs/screens/EventVolunteers/Requests/Requests.mocks/variables/EMPTY_MOCKS.md @@ -0,0 +1,47 @@ +[Admin Docs](/) + +*** + +# Variable: EMPTY\_MOCKS + +> `const` **EMPTY\_MOCKS**: `object`[] + +Defined in: [src/screens/EventVolunteers/Requests/Requests.mocks.ts:148](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/screens/EventVolunteers/Requests/Requests.mocks.ts#L148) + +## Type declaration + +### request + +> **request**: `object` + +#### request.query + +> **query**: `DocumentNode` = `USER_VOLUNTEER_MEMBERSHIP` + +#### request.variables + +> **variables**: `object` + +#### request.variables.where + +> **where**: `object` + +#### request.variables.where.eventId + +> **eventId**: `string` = `'eventId'` + +#### request.variables.where.status + +> **status**: `string` = `'requested'` + +### result + +> **result**: `object` + +#### result.data + +> **data**: `object` + +#### result.data.getVolunteerMembership + +> **getVolunteerMembership**: `any`[] = `[]` diff --git a/docs/docs/auto-docs/screens/EventVolunteers/Requests/Requests.mocks/variables/ERROR_MOCKS.md b/docs/docs/auto-docs/screens/EventVolunteers/Requests/Requests.mocks/variables/ERROR_MOCKS.md new file mode 100644 index 0000000000..9426cdc2e0 --- /dev/null +++ b/docs/docs/auto-docs/screens/EventVolunteers/Requests/Requests.mocks/variables/ERROR_MOCKS.md @@ -0,0 +1,9 @@ +[Admin Docs](/) + +*** + +# Variable: ERROR\_MOCKS + +> `const` **ERROR\_MOCKS**: (\{ `error`: `Error`; `request`: \{ `query`: `DocumentNode`; `variables`: \{ `id`: `undefined`; `orderBy`: `any`; `status`: `undefined`; `where`: \{ `eventId`: `string`; `status`: `string`; `userName`: `any`; \}; \}; \}; \} \| \{ `error`: `Error`; `request`: \{ `query`: `DocumentNode`; `variables`: \{ `id`: `string`; `orderBy`: `undefined`; `status`: `string`; `where`: `undefined`; \}; \}; \})[] + +Defined in: [src/screens/EventVolunteers/Requests/Requests.mocks.ts:167](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/screens/EventVolunteers/Requests/Requests.mocks.ts#L167) diff --git a/docs/docs/auto-docs/screens/EventVolunteers/Requests/Requests.mocks/variables/MOCKS.md b/docs/docs/auto-docs/screens/EventVolunteers/Requests/Requests.mocks/variables/MOCKS.md new file mode 100644 index 0000000000..49cc0b7cd6 --- /dev/null +++ b/docs/docs/auto-docs/screens/EventVolunteers/Requests/Requests.mocks/variables/MOCKS.md @@ -0,0 +1,9 @@ +[Admin Docs](/) + +*** + +# Variable: MOCKS + +> `const` **MOCKS**: (\{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `id`: `undefined`; `orderBy`: `undefined`; `status`: `undefined`; `where`: \{ `eventId`: `string`; `status`: `string`; `userName`: `undefined`; \}; \}; \}; `result`: \{ `data`: \{ `getVolunteerMembership`: `object`[]; `updateVolunteerMembership`: `undefined`; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `id`: `undefined`; `orderBy`: `string`; `status`: `undefined`; `where`: \{ `eventId`: `string`; `status`: `string`; `userName`: `undefined`; \}; \}; \}; `result`: \{ `data`: \{ `getVolunteerMembership`: `object`[]; `updateVolunteerMembership`: `undefined`; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `id`: `undefined`; `orderBy`: `undefined`; `status`: `undefined`; `where`: \{ `eventId`: `string`; `status`: `string`; `userName`: `string`; \}; \}; \}; `result`: \{ `data`: \{ `getVolunteerMembership`: `object`[]; `updateVolunteerMembership`: `undefined`; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `id`: `string`; `orderBy`: `undefined`; `status`: `string`; `where`: `undefined`; \}; \}; `result`: \{ `data`: \{ `getVolunteerMembership`: `undefined`; `updateVolunteerMembership`: \{ `_id`: `string`; \}; \}; \}; \})[] + +Defined in: [src/screens/EventVolunteers/Requests/Requests.mocks.ts:46](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/screens/EventVolunteers/Requests/Requests.mocks.ts#L46) diff --git a/docs/docs/auto-docs/screens/EventVolunteers/Requests/Requests.mocks/variables/UPDATE_ERROR_MOCKS.md b/docs/docs/auto-docs/screens/EventVolunteers/Requests/Requests.mocks/variables/UPDATE_ERROR_MOCKS.md new file mode 100644 index 0000000000..91019039e5 --- /dev/null +++ b/docs/docs/auto-docs/screens/EventVolunteers/Requests/Requests.mocks/variables/UPDATE_ERROR_MOCKS.md @@ -0,0 +1,9 @@ +[Admin Docs](/) + +*** + +# Variable: UPDATE\_ERROR\_MOCKS + +> `const` **UPDATE\_ERROR\_MOCKS**: (\{ `error`: `undefined`; `request`: \{ `query`: `DocumentNode`; `variables`: \{ `id`: `undefined`; `status`: `undefined`; `where`: \{ `eventId`: `string`; `status`: `string`; \}; \}; \}; `result`: \{ `data`: \{ `getVolunteerMembership`: `object`[]; \}; \}; \} \| \{ `error`: `Error`; `request`: \{ `query`: `DocumentNode`; `variables`: \{ `id`: `string`; `status`: `string`; `where`: `undefined`; \}; \}; `result`: `undefined`; \})[] + +Defined in: [src/screens/EventVolunteers/Requests/Requests.mocks.ts:194](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/screens/EventVolunteers/Requests/Requests.mocks.ts#L194) diff --git a/docs/docs/auto-docs/screens/EventVolunteers/Requests/Requests/functions/default.md b/docs/docs/auto-docs/screens/EventVolunteers/Requests/Requests/functions/default.md new file mode 100644 index 0000000000..90a15a20f5 --- /dev/null +++ b/docs/docs/auto-docs/screens/EventVolunteers/Requests/Requests/functions/default.md @@ -0,0 +1,19 @@ +[Admin Docs](/) + +*** + +# Function: default() + +> **default**(): `JSX.Element` + +Defined in: [src/screens/EventVolunteers/Requests/Requests.tsx:53](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/screens/EventVolunteers/Requests/Requests.tsx#L53) + +Component for managing and displaying Volunteer Membership requests for an event. + +This component allows users to view, filter, sort, and create action items. It also allows users to accept or reject volunteer membership requests. + +## Returns + +`JSX.Element` + +The rendered component. diff --git a/docs/docs/auto-docs/screens/EventVolunteers/VolunteerContainer/functions/default.md b/docs/docs/auto-docs/screens/EventVolunteers/VolunteerContainer/functions/default.md new file mode 100644 index 0000000000..a82ce8df80 --- /dev/null +++ b/docs/docs/auto-docs/screens/EventVolunteers/VolunteerContainer/functions/default.md @@ -0,0 +1,19 @@ +[Admin Docs](/) + +*** + +# Function: default() + +> **default**(): `JSX.Element` + +Defined in: [src/screens/EventVolunteers/VolunteerContainer.tsx:18](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/screens/EventVolunteers/VolunteerContainer.tsx#L18) + +Container Component for Volunteer or VolunteerGroups as per selection. + +This component allows users switch between Volunteers and VolunteerGroups. + +## Returns + +`JSX.Element` + +The rendered component. diff --git a/docs/docs/auto-docs/screens/EventVolunteers/VolunteerGroups/VolunteerGroupDeleteModal/functions/default.md b/docs/docs/auto-docs/screens/EventVolunteers/VolunteerGroups/VolunteerGroupDeleteModal/functions/default.md new file mode 100644 index 0000000000..249c78906d --- /dev/null +++ b/docs/docs/auto-docs/screens/EventVolunteers/VolunteerGroups/VolunteerGroupDeleteModal/functions/default.md @@ -0,0 +1,46 @@ +[Admin Docs](/) + +*** + +# Function: default() + +> **default**(`props`, `deprecatedLegacyContext`?): `ReactNode` + +Defined in: [src/screens/EventVolunteers/VolunteerGroups/VolunteerGroupDeleteModal.tsx:42](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/screens/EventVolunteers/VolunteerGroups/VolunteerGroupDeleteModal.tsx#L42) + +A modal dialog for confirming the deletion of a volunteer group. + +## Parameters + +### props + +[`InterfaceDeleteVolunteerGroupModal`](../interfaces/InterfaceDeleteVolunteerGroupModal.md) + +### deprecatedLegacyContext? + +`any` + +**Deprecated** + +**See** + +[React Docs](https://legacy.reactjs.org/docs/legacy-context.html#referencing-context-in-lifecycle-methods) + +## Returns + +`ReactNode` + +The rendered modal component. + +The `VolunteerGroupDeleteModal` component displays a confirmation dialog when a user attempts to delete a volunteer group. +It allows the user to either confirm or cancel the deletion. +On confirmation, the `deleteVolunteerGroup` mutation is called to remove the volunteer group from the database, +and the `refetchGroups` function is invoked to update the list of volunteer groups. +A success or error toast notification is shown based on the result of the deletion operation. + +The modal includes: +- A header with a title and a close button. +- A body with a message asking for confirmation. +- A footer with "Yes" and "No" buttons to confirm or cancel the deletion. + +The `deleteVolunteerGroup` mutation is used to perform the deletion operation. diff --git a/docs/docs/auto-docs/screens/EventVolunteers/VolunteerGroups/VolunteerGroupDeleteModal/interfaces/InterfaceDeleteVolunteerGroupModal.md b/docs/docs/auto-docs/screens/EventVolunteers/VolunteerGroups/VolunteerGroupDeleteModal/interfaces/InterfaceDeleteVolunteerGroupModal.md new file mode 100644 index 0000000000..9ccc97ed45 --- /dev/null +++ b/docs/docs/auto-docs/screens/EventVolunteers/VolunteerGroups/VolunteerGroupDeleteModal/interfaces/InterfaceDeleteVolunteerGroupModal.md @@ -0,0 +1,47 @@ +[Admin Docs](/) + +*** + +# Interface: InterfaceDeleteVolunteerGroupModal + +Defined in: [src/screens/EventVolunteers/VolunteerGroups/VolunteerGroupDeleteModal.tsx:10](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/screens/EventVolunteers/VolunteerGroups/VolunteerGroupDeleteModal.tsx#L10) + +## Properties + +### group + +> **group**: [`InterfaceVolunteerGroupInfo`](../../../../../utils/interfaces/interfaces/InterfaceVolunteerGroupInfo.md) + +Defined in: [src/screens/EventVolunteers/VolunteerGroups/VolunteerGroupDeleteModal.tsx:13](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/screens/EventVolunteers/VolunteerGroups/VolunteerGroupDeleteModal.tsx#L13) + +*** + +### hide() + +> **hide**: () => `void` + +Defined in: [src/screens/EventVolunteers/VolunteerGroups/VolunteerGroupDeleteModal.tsx:12](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/screens/EventVolunteers/VolunteerGroups/VolunteerGroupDeleteModal.tsx#L12) + +#### Returns + +`void` + +*** + +### isOpen + +> **isOpen**: `boolean` + +Defined in: [src/screens/EventVolunteers/VolunteerGroups/VolunteerGroupDeleteModal.tsx:11](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/screens/EventVolunteers/VolunteerGroups/VolunteerGroupDeleteModal.tsx#L11) + +*** + +### refetchGroups() + +> **refetchGroups**: () => `void` + +Defined in: [src/screens/EventVolunteers/VolunteerGroups/VolunteerGroupDeleteModal.tsx:14](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/screens/EventVolunteers/VolunteerGroups/VolunteerGroupDeleteModal.tsx#L14) + +#### Returns + +`void` diff --git a/docs/docs/auto-docs/screens/EventVolunteers/VolunteerGroups/VolunteerGroupModal/functions/default.md b/docs/docs/auto-docs/screens/EventVolunteers/VolunteerGroups/VolunteerGroupModal/functions/default.md new file mode 100644 index 0000000000..55b2a1741b --- /dev/null +++ b/docs/docs/auto-docs/screens/EventVolunteers/VolunteerGroups/VolunteerGroupModal/functions/default.md @@ -0,0 +1,52 @@ +[Admin Docs](/) + +*** + +# Function: default() + +> **default**(`props`, `deprecatedLegacyContext`?): `ReactNode` + +Defined in: [src/screens/EventVolunteers/VolunteerGroups/VolunteerGroupModal.tsx:63](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/screens/EventVolunteers/VolunteerGroups/VolunteerGroupModal.tsx#L63) + +A modal dialog for creating or editing a volunteer group. + +## Parameters + +### props + +[`InterfaceVolunteerGroupModal`](../interfaces/InterfaceVolunteerGroupModal.md) + +### deprecatedLegacyContext? + +`any` + +**Deprecated** + +**See** + +[React Docs](https://legacy.reactjs.org/docs/legacy-context.html#referencing-context-in-lifecycle-methods) + +## Returns + +`ReactNode` + +The rendered modal component. + +The `VolunteerGroupModal` component displays a form within a modal dialog for creating or editing a Volunteer Group. +It includes fields for entering the group name, description, volunteersRequired, and selecting volunteers/leaders. + +The modal includes: +- A header with a title indicating the current mode (create or edit) and a close button. +- A form with: + - An input field for entering the group name. + - A textarea for entering the group description. + - A multi-select dropdown for selecting leader. + - A multi-select dropdown for selecting volunteers. + - An input field for entering the number of volunteers required. +- A submit button to create or update the pledge. + +On form submission, the component either: +- Calls `updatePledge` mutation to update an existing pledge, or +- Calls `createPledge` mutation to create a new pledge. + +Success or error messages are displayed using toast notifications based on the result of the mutation. diff --git a/docs/docs/auto-docs/screens/EventVolunteers/VolunteerGroups/VolunteerGroupModal/interfaces/InterfaceVolunteerGroupModal.md b/docs/docs/auto-docs/screens/EventVolunteers/VolunteerGroups/VolunteerGroupModal/interfaces/InterfaceVolunteerGroupModal.md new file mode 100644 index 0000000000..ee15f6ed53 --- /dev/null +++ b/docs/docs/auto-docs/screens/EventVolunteers/VolunteerGroups/VolunteerGroupModal/interfaces/InterfaceVolunteerGroupModal.md @@ -0,0 +1,71 @@ +[Admin Docs](/) + +*** + +# Interface: InterfaceVolunteerGroupModal + +Defined in: [src/screens/EventVolunteers/VolunteerGroups/VolunteerGroupModal.tsx:21](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/screens/EventVolunteers/VolunteerGroups/VolunteerGroupModal.tsx#L21) + +## Properties + +### eventId + +> **eventId**: `string` + +Defined in: [src/screens/EventVolunteers/VolunteerGroups/VolunteerGroupModal.tsx:24](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/screens/EventVolunteers/VolunteerGroups/VolunteerGroupModal.tsx#L24) + +*** + +### group + +> **group**: [`InterfaceVolunteerGroupInfo`](../../../../../utils/interfaces/interfaces/InterfaceVolunteerGroupInfo.md) + +Defined in: [src/screens/EventVolunteers/VolunteerGroups/VolunteerGroupModal.tsx:26](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/screens/EventVolunteers/VolunteerGroups/VolunteerGroupModal.tsx#L26) + +*** + +### hide() + +> **hide**: () => `void` + +Defined in: [src/screens/EventVolunteers/VolunteerGroups/VolunteerGroupModal.tsx:23](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/screens/EventVolunteers/VolunteerGroups/VolunteerGroupModal.tsx#L23) + +#### Returns + +`void` + +*** + +### isOpen + +> **isOpen**: `boolean` + +Defined in: [src/screens/EventVolunteers/VolunteerGroups/VolunteerGroupModal.tsx:22](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/screens/EventVolunteers/VolunteerGroups/VolunteerGroupModal.tsx#L22) + +*** + +### mode + +> **mode**: `"create"` \| `"edit"` + +Defined in: [src/screens/EventVolunteers/VolunteerGroups/VolunteerGroupModal.tsx:28](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/screens/EventVolunteers/VolunteerGroups/VolunteerGroupModal.tsx#L28) + +*** + +### orgId + +> **orgId**: `string` + +Defined in: [src/screens/EventVolunteers/VolunteerGroups/VolunteerGroupModal.tsx:25](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/screens/EventVolunteers/VolunteerGroups/VolunteerGroupModal.tsx#L25) + +*** + +### refetchGroups() + +> **refetchGroups**: () => `void` + +Defined in: [src/screens/EventVolunteers/VolunteerGroups/VolunteerGroupModal.tsx:27](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/screens/EventVolunteers/VolunteerGroups/VolunteerGroupModal.tsx#L27) + +#### Returns + +`void` diff --git a/docs/docs/auto-docs/screens/EventVolunteers/VolunteerGroups/VolunteerGroupViewModal/functions/default.md b/docs/docs/auto-docs/screens/EventVolunteers/VolunteerGroups/VolunteerGroupViewModal/functions/default.md new file mode 100644 index 0000000000..2ccd70ff6f --- /dev/null +++ b/docs/docs/auto-docs/screens/EventVolunteers/VolunteerGroups/VolunteerGroupViewModal/functions/default.md @@ -0,0 +1,39 @@ +[Admin Docs](/) + +*** + +# Function: default() + +> **default**(`props`, `deprecatedLegacyContext`?): `ReactNode` + +Defined in: [src/screens/EventVolunteers/VolunteerGroups/VolunteerGroupViewModal.tsx:41](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/screens/EventVolunteers/VolunteerGroups/VolunteerGroupViewModal.tsx#L41) + +A modal dialog for viewing volunteer group information for an event. + +## Parameters + +### props + +[`InterfaceVolunteerGroupViewModal`](../interfaces/InterfaceVolunteerGroupViewModal.md) + +### deprecatedLegacyContext? + +`any` + +**Deprecated** + +**See** + +[React Docs](https://legacy.reactjs.org/docs/legacy-context.html#referencing-context-in-lifecycle-methods) + +## Returns + +`ReactNode` + +The rendered modal component. + +The `VolunteerGroupViewModal` component displays all the fields of a volunteer group in a modal dialog. + +The modal includes: +- A header with a title and a close button. +- fields for volunteer name, status, hours volunteered, groups, and assignments. diff --git a/docs/docs/auto-docs/screens/EventVolunteers/VolunteerGroups/VolunteerGroupViewModal/interfaces/InterfaceVolunteerGroupViewModal.md b/docs/docs/auto-docs/screens/EventVolunteers/VolunteerGroups/VolunteerGroupViewModal/interfaces/InterfaceVolunteerGroupViewModal.md new file mode 100644 index 0000000000..407ea410d0 --- /dev/null +++ b/docs/docs/auto-docs/screens/EventVolunteers/VolunteerGroups/VolunteerGroupViewModal/interfaces/InterfaceVolunteerGroupViewModal.md @@ -0,0 +1,35 @@ +[Admin Docs](/) + +*** + +# Interface: InterfaceVolunteerGroupViewModal + +Defined in: [src/screens/EventVolunteers/VolunteerGroups/VolunteerGroupViewModal.tsx:19](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/screens/EventVolunteers/VolunteerGroups/VolunteerGroupViewModal.tsx#L19) + +## Properties + +### group + +> **group**: [`InterfaceVolunteerGroupInfo`](../../../../../utils/interfaces/interfaces/InterfaceVolunteerGroupInfo.md) + +Defined in: [src/screens/EventVolunteers/VolunteerGroups/VolunteerGroupViewModal.tsx:22](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/screens/EventVolunteers/VolunteerGroups/VolunteerGroupViewModal.tsx#L22) + +*** + +### hide() + +> **hide**: () => `void` + +Defined in: [src/screens/EventVolunteers/VolunteerGroups/VolunteerGroupViewModal.tsx:21](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/screens/EventVolunteers/VolunteerGroups/VolunteerGroupViewModal.tsx#L21) + +#### Returns + +`void` + +*** + +### isOpen + +> **isOpen**: `boolean` + +Defined in: [src/screens/EventVolunteers/VolunteerGroups/VolunteerGroupViewModal.tsx:20](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/screens/EventVolunteers/VolunteerGroups/VolunteerGroupViewModal.tsx#L20) diff --git a/docs/docs/auto-docs/screens/EventVolunteers/VolunteerGroups/VolunteerGroups.mocks/variables/MOCKS.md b/docs/docs/auto-docs/screens/EventVolunteers/VolunteerGroups/VolunteerGroups.mocks/variables/MOCKS.md new file mode 100644 index 0000000000..b9e4bdc17a --- /dev/null +++ b/docs/docs/auto-docs/screens/EventVolunteers/VolunteerGroups/VolunteerGroups.mocks/variables/MOCKS.md @@ -0,0 +1,9 @@ +[Admin Docs](/) + +*** + +# Variable: MOCKS + +> `const` **MOCKS**: (\{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `data`: `undefined`; `id`: `undefined`; `orderBy`: `string`; `where`: \{ `eventId`: `string`; `leaderName`: `any`; `name_contains`: `string`; \}; \}; \}; `result`: \{ `data`: \{ `createEventVolunteerGroup`: `undefined`; `getEventVolunteerGroups`: `object`[]; `organizations`: `undefined`; `removeEventVolunteerGroup`: `undefined`; `updateEventVolunteerGroup`: `undefined`; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `data`: `undefined`; `id`: `undefined`; `orderBy`: `any`; `where`: \{ `eventId`: `string`; `leaderName`: `string`; `name_contains`: `any`; \}; \}; \}; `result`: \{ `data`: \{ `createEventVolunteerGroup`: `undefined`; `getEventVolunteerGroups`: `object`[]; `organizations`: `undefined`; `removeEventVolunteerGroup`: `undefined`; `updateEventVolunteerGroup`: `undefined`; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `data`: `undefined`; `id`: `string`; `orderBy`: `undefined`; `where`: `undefined`; \}; \}; `result`: \{ `data`: \{ `createEventVolunteerGroup`: `undefined`; `getEventVolunteerGroups`: `undefined`; `organizations`: `object`[]; `removeEventVolunteerGroup`: `undefined`; `updateEventVolunteerGroup`: `undefined`; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `data`: \{ `description`: `string`; `eventId`: `string`; `leaderId`: `string`; `name`: `string`; `volunteersRequired`: `number`; `volunteerUserIds`: `string`[]; \}; `id`: `undefined`; `orderBy`: `undefined`; `where`: `undefined`; \}; \}; `result`: \{ `data`: \{ `createEventVolunteerGroup`: \{ `_id`: `string`; \}; `getEventVolunteerGroups`: `undefined`; `organizations`: `undefined`; `removeEventVolunteerGroup`: `undefined`; `updateEventVolunteerGroup`: `undefined`; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `data`: `undefined`; `id`: `string`; `orderBy`: `undefined`; `where`: `undefined`; \}; \}; `result`: \{ `data`: \{ `createEventVolunteerGroup`: `undefined`; `getEventVolunteerGroups`: `undefined`; `organizations`: `undefined`; `removeEventVolunteerGroup`: \{ `_id`: `string`; \}; `updateEventVolunteerGroup`: `undefined`; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `data`: \{ `description`: `string`; `eventId`: `string`; `leaderId`: `undefined`; `name`: `string`; `volunteersRequired`: `number`; `volunteerUserIds`: `undefined`; \}; `id`: `string`; `orderBy`: `undefined`; `where`: `undefined`; \}; \}; `result`: \{ `data`: \{ `createEventVolunteerGroup`: `undefined`; `getEventVolunteerGroups`: `undefined`; `organizations`: `undefined`; `removeEventVolunteerGroup`: `undefined`; `updateEventVolunteerGroup`: \{ `_id`: `string`; \}; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `data`: \{ `description`: `undefined`; `eventId`: `string`; `leaderId`: `undefined`; `name`: `undefined`; `volunteersRequired`: `undefined`; `volunteerUserIds`: `undefined`; \}; `id`: `string`; `orderBy`: `undefined`; `where`: `undefined`; \}; \}; `result`: \{ `data`: \{ `createEventVolunteerGroup`: `undefined`; `getEventVolunteerGroups`: `undefined`; `organizations`: `undefined`; `removeEventVolunteerGroup`: `undefined`; `updateEventVolunteerGroup`: \{ `_id`: `string`; \}; \}; \}; \})[] + +Defined in: [src/screens/EventVolunteers/VolunteerGroups/VolunteerGroups.mocks.ts:114](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/screens/EventVolunteers/VolunteerGroups/VolunteerGroups.mocks.ts#L114) diff --git a/docs/docs/auto-docs/screens/EventVolunteers/VolunteerGroups/VolunteerGroups.mocks/variables/MOCKS_EMPTY.md b/docs/docs/auto-docs/screens/EventVolunteers/VolunteerGroups/VolunteerGroups.mocks/variables/MOCKS_EMPTY.md new file mode 100644 index 0000000000..8fe2b0d7aa --- /dev/null +++ b/docs/docs/auto-docs/screens/EventVolunteers/VolunteerGroups/VolunteerGroups.mocks/variables/MOCKS_EMPTY.md @@ -0,0 +1,55 @@ +[Admin Docs](/) + +*** + +# Variable: MOCKS\_EMPTY + +> `const` **MOCKS\_EMPTY**: `object`[] + +Defined in: [src/screens/EventVolunteers/VolunteerGroups/VolunteerGroups.mocks.ts:339](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/screens/EventVolunteers/VolunteerGroups/VolunteerGroups.mocks.ts#L339) + +## Type declaration + +### request + +> **request**: `object` + +#### request.query + +> **query**: `DocumentNode` = `EVENT_VOLUNTEER_GROUP_LIST` + +#### request.variables + +> **variables**: `object` + +#### request.variables.orderBy + +> **orderBy**: `any` = `null` + +#### request.variables.where + +> **where**: `object` + +#### request.variables.where.eventId + +> **eventId**: `string` = `'eventId'` + +#### request.variables.where.leaderName + +> **leaderName**: `any` = `null` + +#### request.variables.where.name\_contains + +> **name\_contains**: `string` = `''` + +### result + +> **result**: `object` + +#### result.data + +> **data**: `object` + +#### result.data.getEventVolunteerGroups + +> **getEventVolunteerGroups**: `any`[] = `[]` diff --git a/docs/docs/auto-docs/screens/EventVolunteers/VolunteerGroups/VolunteerGroups.mocks/variables/MOCKS_ERROR.md b/docs/docs/auto-docs/screens/EventVolunteers/VolunteerGroups/VolunteerGroups.mocks/variables/MOCKS_ERROR.md new file mode 100644 index 0000000000..b5eaa4d7b8 --- /dev/null +++ b/docs/docs/auto-docs/screens/EventVolunteers/VolunteerGroups/VolunteerGroups.mocks/variables/MOCKS_ERROR.md @@ -0,0 +1,9 @@ +[Admin Docs](/) + +*** + +# Variable: MOCKS\_ERROR + +> `const` **MOCKS\_ERROR**: (\{ `error`: `Error`; `request`: \{ `query`: `DocumentNode`; `variables`: \{ `data`: `undefined`; `id`: `undefined`; `orderBy`: `any`; `where`: \{ `eventId`: `string`; `leaderName`: `any`; `name_contains`: `string`; \}; \}; \}; `result`: `undefined`; \} \| \{ `error`: `Error`; `request`: \{ `query`: `DocumentNode`; `variables`: \{ `data`: `undefined`; `id`: `string`; `orderBy`: `undefined`; `where`: `undefined`; \}; \}; `result`: `undefined`; \} \| \{ `error`: `undefined`; `request`: \{ `query`: `DocumentNode`; `variables`: \{ `data`: `undefined`; `id`: `string`; `orderBy`: `undefined`; `where`: `undefined`; \}; \}; `result`: \{ `data`: \{ `organizations`: `object`[]; \}; \}; \} \| \{ `error`: `Error`; `request`: \{ `query`: `DocumentNode`; `variables`: \{ `data`: \{ `description`: `string`; `eventId`: `string`; `leaderId`: `string`; `name`: `string`; `volunteersRequired`: `number`; `volunteerUserIds`: `string`[]; \}; `id`: `undefined`; `orderBy`: `undefined`; `where`: `undefined`; \}; \}; `result`: `undefined`; \} \| \{ `error`: `Error`; `request`: \{ `query`: `DocumentNode`; `variables`: \{ `data`: \{ `description`: `string`; `eventId`: `string`; `leaderId`: `undefined`; `name`: `string`; `volunteersRequired`: `number`; `volunteerUserIds`: `undefined`; \}; `id`: `string`; `orderBy`: `undefined`; `where`: `undefined`; \}; \}; `result`: `undefined`; \})[] + +Defined in: [src/screens/EventVolunteers/VolunteerGroups/VolunteerGroups.mocks.ts:360](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/screens/EventVolunteers/VolunteerGroups/VolunteerGroups.mocks.ts#L360) diff --git a/docs/docs/auto-docs/screens/EventVolunteers/VolunteerGroups/VolunteerGroups/functions/default.md b/docs/docs/auto-docs/screens/EventVolunteers/VolunteerGroups/VolunteerGroups/functions/default.md new file mode 100644 index 0000000000..1d3ce0b796 --- /dev/null +++ b/docs/docs/auto-docs/screens/EventVolunteers/VolunteerGroups/VolunteerGroups/functions/default.md @@ -0,0 +1,18 @@ +[Admin Docs](/) + +*** + +# Function: default() + +> **default**(): `JSX.Element` + +Defined in: [src/screens/EventVolunteers/VolunteerGroups/VolunteerGroups.tsx:58](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/screens/EventVolunteers/VolunteerGroups/VolunteerGroups.tsx#L58) + +Component for managing volunteer groups for an event. +This component allows users to view, filter, sort, and create action items. It also provides a modal for creating and editing action items. + +## Returns + +`JSX.Element` + +The rendered component. diff --git a/docs/docs/auto-docs/screens/EventVolunteers/Volunteers/VolunteerCreateModal/functions/default.md b/docs/docs/auto-docs/screens/EventVolunteers/Volunteers/VolunteerCreateModal/functions/default.md new file mode 100644 index 0000000000..acabe78710 --- /dev/null +++ b/docs/docs/auto-docs/screens/EventVolunteers/Volunteers/VolunteerCreateModal/functions/default.md @@ -0,0 +1,47 @@ +[Admin Docs](/) + +*** + +# Function: default() + +> **default**(`props`, `deprecatedLegacyContext`?): `ReactNode` + +Defined in: [src/screens/EventVolunteers/Volunteers/VolunteerCreateModal.tsx:48](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/screens/EventVolunteers/Volunteers/VolunteerCreateModal.tsx#L48) + +A modal dialog for add a volunteer for an event. + +## Parameters + +### props + +[`InterfaceVolunteerCreateModal`](../interfaces/InterfaceVolunteerCreateModal.md) + +### deprecatedLegacyContext? + +`any` + +**Deprecated** + +**See** + +[React Docs](https://legacy.reactjs.org/docs/legacy-context.html#referencing-context-in-lifecycle-methods) + +## Returns + +`ReactNode` + +The rendered modal component. + +The `VolunteerCreateModal` component displays a form within a modal dialog for adding a volunteer. +It includes fields for selecting user. + +The modal includes: +- A header with a title and a close button. +- A form with: +- A multi-select dropdown for selecting user be added as volunteer. +- A submit button to create or update the pledge. + +On form submission, the component: +- Calls `addVolunteer` mutation to add a new Volunteer. + +Success or error messages are displayed using toast notifications based on the result of the mutation. diff --git a/docs/docs/auto-docs/screens/EventVolunteers/Volunteers/VolunteerCreateModal/interfaces/InterfaceVolunteerCreateModal.md b/docs/docs/auto-docs/screens/EventVolunteers/Volunteers/VolunteerCreateModal/interfaces/InterfaceVolunteerCreateModal.md new file mode 100644 index 0000000000..9c7b2ba32c --- /dev/null +++ b/docs/docs/auto-docs/screens/EventVolunteers/Volunteers/VolunteerCreateModal/interfaces/InterfaceVolunteerCreateModal.md @@ -0,0 +1,55 @@ +[Admin Docs](/) + +*** + +# Interface: InterfaceVolunteerCreateModal + +Defined in: [src/screens/EventVolunteers/Volunteers/VolunteerCreateModal.tsx:14](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/screens/EventVolunteers/Volunteers/VolunteerCreateModal.tsx#L14) + +## Properties + +### eventId + +> **eventId**: `string` + +Defined in: [src/screens/EventVolunteers/Volunteers/VolunteerCreateModal.tsx:17](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/screens/EventVolunteers/Volunteers/VolunteerCreateModal.tsx#L17) + +*** + +### hide() + +> **hide**: () => `void` + +Defined in: [src/screens/EventVolunteers/Volunteers/VolunteerCreateModal.tsx:16](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/screens/EventVolunteers/Volunteers/VolunteerCreateModal.tsx#L16) + +#### Returns + +`void` + +*** + +### isOpen + +> **isOpen**: `boolean` + +Defined in: [src/screens/EventVolunteers/Volunteers/VolunteerCreateModal.tsx:15](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/screens/EventVolunteers/Volunteers/VolunteerCreateModal.tsx#L15) + +*** + +### orgId + +> **orgId**: `string` + +Defined in: [src/screens/EventVolunteers/Volunteers/VolunteerCreateModal.tsx:18](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/screens/EventVolunteers/Volunteers/VolunteerCreateModal.tsx#L18) + +*** + +### refetchVolunteers() + +> **refetchVolunteers**: () => `void` + +Defined in: [src/screens/EventVolunteers/Volunteers/VolunteerCreateModal.tsx:19](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/screens/EventVolunteers/Volunteers/VolunteerCreateModal.tsx#L19) + +#### Returns + +`void` diff --git a/docs/docs/auto-docs/screens/EventVolunteers/Volunteers/VolunteerDeleteModal/functions/default.md b/docs/docs/auto-docs/screens/EventVolunteers/Volunteers/VolunteerDeleteModal/functions/default.md new file mode 100644 index 0000000000..ee3370b433 --- /dev/null +++ b/docs/docs/auto-docs/screens/EventVolunteers/Volunteers/VolunteerDeleteModal/functions/default.md @@ -0,0 +1,46 @@ +[Admin Docs](/) + +*** + +# Function: default() + +> **default**(`props`, `deprecatedLegacyContext`?): `ReactNode` + +Defined in: [src/screens/EventVolunteers/Volunteers/VolunteerDeleteModal.tsx:42](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/screens/EventVolunteers/Volunteers/VolunteerDeleteModal.tsx#L42) + +A modal dialog for confirming the deletion of a volunteer. + +## Parameters + +### props + +[`InterfaceDeleteVolunteerModal`](../interfaces/InterfaceDeleteVolunteerModal.md) + +### deprecatedLegacyContext? + +`any` + +**Deprecated** + +**See** + +[React Docs](https://legacy.reactjs.org/docs/legacy-context.html#referencing-context-in-lifecycle-methods) + +## Returns + +`ReactNode` + +The rendered modal component. + +The `VolunteerDeleteModal` component displays a confirmation dialog when a user attempts to delete a volunteer. +It allows the user to either confirm or cancel the deletion. +On confirmation, the `deleteVolunteer` mutation is called to remove the pledge from the database, +and the `refetchVolunteers` function is invoked to update the list of volunteers. +A success or error toast notification is shown based on the result of the deletion operation. + +The modal includes: +- A header with a title and a close button. +- A body with a message asking for confirmation. +- A footer with "Yes" and "No" buttons to confirm or cancel the deletion. + +The `deleteVolunteer` mutation is used to perform the deletion operation. diff --git a/docs/docs/auto-docs/screens/EventVolunteers/Volunteers/VolunteerDeleteModal/interfaces/InterfaceDeleteVolunteerModal.md b/docs/docs/auto-docs/screens/EventVolunteers/Volunteers/VolunteerDeleteModal/interfaces/InterfaceDeleteVolunteerModal.md new file mode 100644 index 0000000000..80e19c1d36 --- /dev/null +++ b/docs/docs/auto-docs/screens/EventVolunteers/Volunteers/VolunteerDeleteModal/interfaces/InterfaceDeleteVolunteerModal.md @@ -0,0 +1,47 @@ +[Admin Docs](/) + +*** + +# Interface: InterfaceDeleteVolunteerModal + +Defined in: [src/screens/EventVolunteers/Volunteers/VolunteerDeleteModal.tsx:10](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/screens/EventVolunteers/Volunteers/VolunteerDeleteModal.tsx#L10) + +## Properties + +### hide() + +> **hide**: () => `void` + +Defined in: [src/screens/EventVolunteers/Volunteers/VolunteerDeleteModal.tsx:12](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/screens/EventVolunteers/Volunteers/VolunteerDeleteModal.tsx#L12) + +#### Returns + +`void` + +*** + +### isOpen + +> **isOpen**: `boolean` + +Defined in: [src/screens/EventVolunteers/Volunteers/VolunteerDeleteModal.tsx:11](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/screens/EventVolunteers/Volunteers/VolunteerDeleteModal.tsx#L11) + +*** + +### refetchVolunteers() + +> **refetchVolunteers**: () => `void` + +Defined in: [src/screens/EventVolunteers/Volunteers/VolunteerDeleteModal.tsx:14](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/screens/EventVolunteers/Volunteers/VolunteerDeleteModal.tsx#L14) + +#### Returns + +`void` + +*** + +### volunteer + +> **volunteer**: [`InterfaceEventVolunteerInfo`](../../../../../utils/interfaces/interfaces/InterfaceEventVolunteerInfo.md) + +Defined in: [src/screens/EventVolunteers/Volunteers/VolunteerDeleteModal.tsx:13](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/screens/EventVolunteers/Volunteers/VolunteerDeleteModal.tsx#L13) diff --git a/docs/docs/auto-docs/screens/EventVolunteers/Volunteers/VolunteerViewModal/functions/default.md b/docs/docs/auto-docs/screens/EventVolunteers/Volunteers/VolunteerViewModal/functions/default.md new file mode 100644 index 0000000000..e9fe5154c2 --- /dev/null +++ b/docs/docs/auto-docs/screens/EventVolunteers/Volunteers/VolunteerViewModal/functions/default.md @@ -0,0 +1,39 @@ +[Admin Docs](/) + +*** + +# Function: default() + +> **default**(`props`, `deprecatedLegacyContext`?): `ReactNode` + +Defined in: [src/screens/EventVolunteers/Volunteers/VolunteerViewModal.tsx:42](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/screens/EventVolunteers/Volunteers/VolunteerViewModal.tsx#L42) + +A modal dialog for viewing volunteer information for an event. + +## Parameters + +### props + +[`InterfaceVolunteerViewModal`](../interfaces/InterfaceVolunteerViewModal.md) + +### deprecatedLegacyContext? + +`any` + +**Deprecated** + +**See** + +[React Docs](https://legacy.reactjs.org/docs/legacy-context.html#referencing-context-in-lifecycle-methods) + +## Returns + +`ReactNode` + +The rendered modal component. + +The `VolunteerViewModal` component displays all the fields of a volunteer in a modal dialog. + +The modal includes: +- A header with a title and a close button. +- fields for volunteer name, status, hours volunteered, groups, and assignments. diff --git a/docs/docs/auto-docs/screens/EventVolunteers/Volunteers/VolunteerViewModal/interfaces/InterfaceVolunteerViewModal.md b/docs/docs/auto-docs/screens/EventVolunteers/Volunteers/VolunteerViewModal/interfaces/InterfaceVolunteerViewModal.md new file mode 100644 index 0000000000..afa9c70a08 --- /dev/null +++ b/docs/docs/auto-docs/screens/EventVolunteers/Volunteers/VolunteerViewModal/interfaces/InterfaceVolunteerViewModal.md @@ -0,0 +1,35 @@ +[Admin Docs](/) + +*** + +# Interface: InterfaceVolunteerViewModal + +Defined in: [src/screens/EventVolunteers/Volunteers/VolunteerViewModal.tsx:20](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/screens/EventVolunteers/Volunteers/VolunteerViewModal.tsx#L20) + +## Properties + +### hide() + +> **hide**: () => `void` + +Defined in: [src/screens/EventVolunteers/Volunteers/VolunteerViewModal.tsx:22](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/screens/EventVolunteers/Volunteers/VolunteerViewModal.tsx#L22) + +#### Returns + +`void` + +*** + +### isOpen + +> **isOpen**: `boolean` + +Defined in: [src/screens/EventVolunteers/Volunteers/VolunteerViewModal.tsx:21](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/screens/EventVolunteers/Volunteers/VolunteerViewModal.tsx#L21) + +*** + +### volunteer + +> **volunteer**: [`InterfaceEventVolunteerInfo`](../../../../../utils/interfaces/interfaces/InterfaceEventVolunteerInfo.md) + +Defined in: [src/screens/EventVolunteers/Volunteers/VolunteerViewModal.tsx:23](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/screens/EventVolunteers/Volunteers/VolunteerViewModal.tsx#L23) diff --git a/docs/docs/auto-docs/screens/EventVolunteers/Volunteers/Volunteers.mocks/variables/MOCKS.md b/docs/docs/auto-docs/screens/EventVolunteers/Volunteers/Volunteers.mocks/variables/MOCKS.md new file mode 100644 index 0000000000..463fd89df6 --- /dev/null +++ b/docs/docs/auto-docs/screens/EventVolunteers/Volunteers/Volunteers.mocks/variables/MOCKS.md @@ -0,0 +1,9 @@ +[Admin Docs](/) + +*** + +# Variable: MOCKS + +> `const` **MOCKS**: (\{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `data`: `undefined`; `id`: `undefined`; `orderBy`: `string`; `where`: \{ `eventId`: `string`; `hasAccepted`: `undefined`; `name_contains`: `string`; \}; \}; \}; `result`: \{ `data`: \{ `createEventVolunteer`: `undefined`; `getEventVolunteers`: (\{ `_id`: `string`; `assignments`: `any`[]; `groups`: `object`[]; `hasAccepted`: `boolean`; `hoursVolunteered`: `number`; `user`: \{ `_id`: `string`; `firstName`: `string`; `image`: `any`; `lastName`: `string`; \}; \} \| \{ `_id`: `string`; `assignments`: `any`[]; `groups`: `any`[]; `hasAccepted`: `boolean`; `hoursVolunteered`: `any`; `user`: \{ `_id`: `string`; `firstName`: `string`; `image`: `string`; `lastName`: `string`; \}; \})[]; `organizations`: `undefined`; `removeEventVolunteer`: `undefined`; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `data`: `undefined`; `id`: `undefined`; `orderBy`: `any`; `where`: \{ `eventId`: `string`; `hasAccepted`: `boolean`; `name_contains`: `string`; \}; \}; \}; `result`: \{ `data`: \{ `createEventVolunteer`: `undefined`; `getEventVolunteers`: `object`[]; `organizations`: `undefined`; `removeEventVolunteer`: `undefined`; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `data`: `undefined`; `id`: `undefined`; `orderBy`: `any`; `where`: \{ `eventId`: `string`; `hasAccepted`: `boolean`; `name_contains`: `string`; \}; \}; \}; `result`: \{ `data`: \{ `createEventVolunteer`: `undefined`; `getEventVolunteers`: `object`[]; `organizations`: `undefined`; `removeEventVolunteer`: `undefined`; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `data`: `undefined`; `id`: `string`; `orderBy`: `undefined`; `where`: `undefined`; \}; \}; `result`: \{ `data`: \{ `createEventVolunteer`: `undefined`; `getEventVolunteers`: `undefined`; `organizations`: `undefined`; `removeEventVolunteer`: \{ `_id`: `string`; \}; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `data`: `undefined`; `id`: `string`; `orderBy`: `undefined`; `where`: `undefined`; \}; \}; `result`: \{ `data`: \{ `createEventVolunteer`: `undefined`; `getEventVolunteers`: `undefined`; `organizations`: `object`[]; `removeEventVolunteer`: `undefined`; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `data`: \{ `eventId`: `string`; `userId`: `string`; \}; `id`: `undefined`; `orderBy`: `undefined`; `where`: `undefined`; \}; \}; `result`: \{ `data`: \{ `createEventVolunteer`: \{ `_id`: `string`; \}; `getEventVolunteers`: `undefined`; `organizations`: `undefined`; `removeEventVolunteer`: `undefined`; \}; \}; \})[] + +Defined in: [src/screens/EventVolunteers/Volunteers/Volunteers.mocks.ts:46](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/screens/EventVolunteers/Volunteers/Volunteers.mocks.ts#L46) diff --git a/docs/docs/auto-docs/screens/EventVolunteers/Volunteers/Volunteers.mocks/variables/MOCKS_EMPTY.md b/docs/docs/auto-docs/screens/EventVolunteers/Volunteers/Volunteers.mocks/variables/MOCKS_EMPTY.md new file mode 100644 index 0000000000..b3c8368646 --- /dev/null +++ b/docs/docs/auto-docs/screens/EventVolunteers/Volunteers/Volunteers.mocks/variables/MOCKS_EMPTY.md @@ -0,0 +1,51 @@ +[Admin Docs](/) + +*** + +# Variable: MOCKS\_EMPTY + +> `const` **MOCKS\_EMPTY**: `object`[] + +Defined in: [src/screens/EventVolunteers/Volunteers/Volunteers.mocks.ts:288](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/screens/EventVolunteers/Volunteers/Volunteers.mocks.ts#L288) + +## Type declaration + +### request + +> **request**: `object` + +#### request.query + +> **query**: `DocumentNode` = `EVENT_VOLUNTEER_LIST` + +#### request.variables + +> **variables**: `object` + +#### request.variables.orderBy + +> **orderBy**: `any` = `null` + +#### request.variables.where + +> **where**: `object` + +#### request.variables.where.eventId + +> **eventId**: `string` = `'eventId'` + +#### request.variables.where.name\_contains + +> **name\_contains**: `string` = `''` + +### result + +> **result**: `object` + +#### result.data + +> **data**: `object` + +#### result.data.getEventVolunteers + +> **getEventVolunteers**: `any`[] = `[]` diff --git a/docs/docs/auto-docs/screens/EventVolunteers/Volunteers/Volunteers.mocks/variables/MOCKS_ERROR.md b/docs/docs/auto-docs/screens/EventVolunteers/Volunteers/Volunteers.mocks/variables/MOCKS_ERROR.md new file mode 100644 index 0000000000..ca4a27d910 --- /dev/null +++ b/docs/docs/auto-docs/screens/EventVolunteers/Volunteers/Volunteers.mocks/variables/MOCKS_ERROR.md @@ -0,0 +1,9 @@ +[Admin Docs](/) + +*** + +# Variable: MOCKS\_ERROR + +> `const` **MOCKS\_ERROR**: (\{ `error`: `Error`; `request`: \{ `query`: `DocumentNode`; `variables`: \{ `data`: `undefined`; `id`: `undefined`; `orderBy`: `any`; `where`: \{ `eventId`: `string`; `name_contains`: `string`; \}; \}; \}; `result`: `undefined`; \} \| \{ `error`: `Error`; `request`: \{ `query`: `DocumentNode`; `variables`: \{ `data`: `undefined`; `id`: `string`; `orderBy`: `undefined`; `where`: `undefined`; \}; \}; `result`: `undefined`; \} \| \{ `error`: `undefined`; `request`: \{ `query`: `DocumentNode`; `variables`: \{ `data`: `undefined`; `id`: `string`; `orderBy`: `undefined`; `where`: `undefined`; \}; \}; `result`: \{ `data`: \{ `organizations`: `object`[]; \}; \}; \} \| \{ `error`: `Error`; `request`: \{ `query`: `DocumentNode`; `variables`: \{ `data`: \{ `eventId`: `string`; `userId`: `string`; \}; `id`: `undefined`; `orderBy`: `undefined`; `where`: `undefined`; \}; \}; `result`: `undefined`; \})[] + +Defined in: [src/screens/EventVolunteers/Volunteers/Volunteers.mocks.ts:217](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/screens/EventVolunteers/Volunteers/Volunteers.mocks.ts#L217) diff --git a/docs/docs/auto-docs/screens/EventVolunteers/Volunteers/Volunteers/functions/default.md b/docs/docs/auto-docs/screens/EventVolunteers/Volunteers/Volunteers/functions/default.md new file mode 100644 index 0000000000..4229dcedf5 --- /dev/null +++ b/docs/docs/auto-docs/screens/EventVolunteers/Volunteers/Volunteers/functions/default.md @@ -0,0 +1,19 @@ +[Admin Docs](/) + +*** + +# Function: default() + +> **default**(): `JSX.Element` + +Defined in: [src/screens/EventVolunteers/Volunteers/Volunteers.tsx:65](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/screens/EventVolunteers/Volunteers/Volunteers.tsx#L65) + +Component for managing and displaying event volunteers related to an event. + +This component allows users to view, filter, sort, and create volunteers. It also handles fetching and displaying related data such as volunteer acceptance status, etc. + +## Returns + +`JSX.Element` + +The rendered component. diff --git a/docs/docs/auto-docs/screens/ForgotPassword/ForgotPassword/functions/default.md b/docs/docs/auto-docs/screens/ForgotPassword/ForgotPassword/functions/default.md new file mode 100644 index 0000000000..9b9c295887 --- /dev/null +++ b/docs/docs/auto-docs/screens/ForgotPassword/ForgotPassword/functions/default.md @@ -0,0 +1,27 @@ +[Admin Docs](/) + +*** + +# Function: default() + +> **default**(): `Element` + +Defined in: [src/screens/ForgotPassword/ForgotPassword.tsx:36](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/screens/ForgotPassword/ForgotPassword.tsx#L36) + +`ForgotPassword` component allows users to reset their password. + +It provides two stages: +1. Entering the registered email to receive an OTP. +2. Entering the OTP and new password to reset the password. + +## Returns + +`Element` + +JSX.Element - The `ForgotPassword` component. + +## Example + +```tsx + +``` diff --git a/docs/docs/auto-docs/screens/FundCampaignPledge/FundCampaignPledge/functions/default.md b/docs/docs/auto-docs/screens/FundCampaignPledge/FundCampaignPledge/functions/default.md new file mode 100644 index 0000000000..c3a07b1831 --- /dev/null +++ b/docs/docs/auto-docs/screens/FundCampaignPledge/FundCampaignPledge/functions/default.md @@ -0,0 +1,13 @@ +[Admin Docs](/) + +*** + +# Function: default() + +> **default**(): `Element` + +Defined in: [src/screens/FundCampaignPledge/FundCampaignPledge.tsx:62](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/screens/FundCampaignPledge/FundCampaignPledge.tsx#L62) + +## Returns + +`Element` diff --git a/docs/docs/auto-docs/screens/FundCampaignPledge/PledgeDeleteModal/functions/default.md b/docs/docs/auto-docs/screens/FundCampaignPledge/PledgeDeleteModal/functions/default.md new file mode 100644 index 0000000000..d53f3ddfb8 --- /dev/null +++ b/docs/docs/auto-docs/screens/FundCampaignPledge/PledgeDeleteModal/functions/default.md @@ -0,0 +1,46 @@ +[Admin Docs](/) + +*** + +# Function: default() + +> **default**(`props`, `deprecatedLegacyContext`?): `ReactNode` + +Defined in: [src/screens/FundCampaignPledge/PledgeDeleteModal.tsx:42](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/screens/FundCampaignPledge/PledgeDeleteModal.tsx#L42) + +A modal dialog for confirming the deletion of a pledge. + +## Parameters + +### props + +[`InterfaceDeletePledgeModal`](../interfaces/InterfaceDeletePledgeModal.md) + +### deprecatedLegacyContext? + +`any` + +**Deprecated** + +**See** + +[React Docs](https://legacy.reactjs.org/docs/legacy-context.html#referencing-context-in-lifecycle-methods) + +## Returns + +`ReactNode` + +The rendered modal component. + +The `PledgeDeleteModal` component displays a confirmation dialog when a user attempts to delete a pledge. +It allows the user to either confirm or cancel the deletion. +On confirmation, the `deletePledge` mutation is called to remove the pledge from the database, +and the `refetchPledge` function is invoked to update the list of pledges. +A success or error toast notification is shown based on the result of the deletion operation. + +The modal includes: +- A header with a title and a close button. +- A body with a message asking for confirmation. +- A footer with "Yes" and "No" buttons to confirm or cancel the deletion. + +The `deletePledge` mutation is used to perform the deletion operation. diff --git a/docs/docs/auto-docs/screens/FundCampaignPledge/PledgeDeleteModal/interfaces/InterfaceDeletePledgeModal.md b/docs/docs/auto-docs/screens/FundCampaignPledge/PledgeDeleteModal/interfaces/InterfaceDeletePledgeModal.md new file mode 100644 index 0000000000..29d4232f6e --- /dev/null +++ b/docs/docs/auto-docs/screens/FundCampaignPledge/PledgeDeleteModal/interfaces/InterfaceDeletePledgeModal.md @@ -0,0 +1,47 @@ +[Admin Docs](/) + +*** + +# Interface: InterfaceDeletePledgeModal + +Defined in: [src/screens/FundCampaignPledge/PledgeDeleteModal.tsx:10](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/screens/FundCampaignPledge/PledgeDeleteModal.tsx#L10) + +## Properties + +### hide() + +> **hide**: () => `void` + +Defined in: [src/screens/FundCampaignPledge/PledgeDeleteModal.tsx:12](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/screens/FundCampaignPledge/PledgeDeleteModal.tsx#L12) + +#### Returns + +`void` + +*** + +### isOpen + +> **isOpen**: `boolean` + +Defined in: [src/screens/FundCampaignPledge/PledgeDeleteModal.tsx:11](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/screens/FundCampaignPledge/PledgeDeleteModal.tsx#L11) + +*** + +### pledge + +> **pledge**: [`InterfacePledgeInfo`](../../../../utils/interfaces/interfaces/InterfacePledgeInfo.md) + +Defined in: [src/screens/FundCampaignPledge/PledgeDeleteModal.tsx:13](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/screens/FundCampaignPledge/PledgeDeleteModal.tsx#L13) + +*** + +### refetchPledge() + +> **refetchPledge**: () => `void` + +Defined in: [src/screens/FundCampaignPledge/PledgeDeleteModal.tsx:14](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/screens/FundCampaignPledge/PledgeDeleteModal.tsx#L14) + +#### Returns + +`void` diff --git a/docs/docs/auto-docs/screens/FundCampaignPledge/PledgeModal/functions/default.md b/docs/docs/auto-docs/screens/FundCampaignPledge/PledgeModal/functions/default.md new file mode 100644 index 0000000000..74ee722c32 --- /dev/null +++ b/docs/docs/auto-docs/screens/FundCampaignPledge/PledgeModal/functions/default.md @@ -0,0 +1,51 @@ +[Admin Docs](/) + +*** + +# Function: default() + +> **default**(`props`, `deprecatedLegacyContext`?): `ReactNode` + +Defined in: [src/screens/FundCampaignPledge/PledgeModal.tsx:72](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/screens/FundCampaignPledge/PledgeModal.tsx#L72) + +A modal dialog for creating or editing a pledge. + +## Parameters + +### props + +[`InterfacePledgeModal`](../interfaces/InterfacePledgeModal.md) + +### deprecatedLegacyContext? + +`any` + +**Deprecated** + +**See** + +[React Docs](https://legacy.reactjs.org/docs/legacy-context.html#referencing-context-in-lifecycle-methods) + +## Returns + +`ReactNode` + +The rendered modal component. + +The `PledgeModal` component displays a form within a modal dialog for creating or editing a pledge. +It includes fields for selecting users, entering an amount, choosing a currency, and setting start and end dates for the pledge. + +The modal includes: +- A header with a title indicating the current mode (create or edit) and a close button. +- A form with: + - A multi-select dropdown for selecting users to participate in the pledge. + - Date pickers for selecting the start and end dates of the pledge. + - A dropdown for selecting the currency of the pledge amount. + - An input field for entering the pledge amount. +- A submit button to create or update the pledge. + +On form submission, the component either: +- Calls `updatePledge` mutation to update an existing pledge, or +- Calls `createPledge` mutation to create a new pledge. + +Success or error messages are displayed using toast notifications based on the result of the mutation. diff --git a/docs/docs/auto-docs/screens/FundCampaignPledge/PledgeModal/interfaces/InterfacePledgeModal.md b/docs/docs/auto-docs/screens/FundCampaignPledge/PledgeModal/interfaces/InterfacePledgeModal.md new file mode 100644 index 0000000000..777a46c8a0 --- /dev/null +++ b/docs/docs/auto-docs/screens/FundCampaignPledge/PledgeModal/interfaces/InterfacePledgeModal.md @@ -0,0 +1,79 @@ +[Admin Docs](/) + +*** + +# Interface: InterfacePledgeModal + +Defined in: [src/screens/FundCampaignPledge/PledgeModal.tsx:28](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/screens/FundCampaignPledge/PledgeModal.tsx#L28) + +## Properties + +### campaignId + +> **campaignId**: `string` + +Defined in: [src/screens/FundCampaignPledge/PledgeModal.tsx:31](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/screens/FundCampaignPledge/PledgeModal.tsx#L31) + +*** + +### endDate + +> **endDate**: `Date` + +Defined in: [src/screens/FundCampaignPledge/PledgeModal.tsx:35](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/screens/FundCampaignPledge/PledgeModal.tsx#L35) + +*** + +### hide() + +> **hide**: () => `void` + +Defined in: [src/screens/FundCampaignPledge/PledgeModal.tsx:30](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/screens/FundCampaignPledge/PledgeModal.tsx#L30) + +#### Returns + +`void` + +*** + +### isOpen + +> **isOpen**: `boolean` + +Defined in: [src/screens/FundCampaignPledge/PledgeModal.tsx:29](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/screens/FundCampaignPledge/PledgeModal.tsx#L29) + +*** + +### mode + +> **mode**: `"create"` \| `"edit"` + +Defined in: [src/screens/FundCampaignPledge/PledgeModal.tsx:36](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/screens/FundCampaignPledge/PledgeModal.tsx#L36) + +*** + +### orgId + +> **orgId**: `string` + +Defined in: [src/screens/FundCampaignPledge/PledgeModal.tsx:32](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/screens/FundCampaignPledge/PledgeModal.tsx#L32) + +*** + +### pledge + +> **pledge**: [`InterfacePledgeInfo`](../../../../utils/interfaces/interfaces/InterfacePledgeInfo.md) + +Defined in: [src/screens/FundCampaignPledge/PledgeModal.tsx:33](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/screens/FundCampaignPledge/PledgeModal.tsx#L33) + +*** + +### refetchPledge() + +> **refetchPledge**: () => `void` + +Defined in: [src/screens/FundCampaignPledge/PledgeModal.tsx:34](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/screens/FundCampaignPledge/PledgeModal.tsx#L34) + +#### Returns + +`void` diff --git a/docs/docs/auto-docs/screens/FundCampaignPledge/PledgesMocks/variables/EMPTY_MOCKS.md b/docs/docs/auto-docs/screens/FundCampaignPledge/PledgesMocks/variables/EMPTY_MOCKS.md new file mode 100644 index 0000000000..86cc9fc557 --- /dev/null +++ b/docs/docs/auto-docs/screens/FundCampaignPledge/PledgesMocks/variables/EMPTY_MOCKS.md @@ -0,0 +1,9 @@ +[Admin Docs](/) + +*** + +# Variable: EMPTY\_MOCKS + +> `const` **EMPTY\_MOCKS**: (\{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `id`: `string`; \}; \}; `result`: \{ `data`: \{ `organizations`: `object`[]; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `pledgeOrderBy`: `string`; `where`: \{ `id`: `string`; \}; \}; \}; `result`: \{ `data`: \{ `getFundraisingCampaigns`: `object`[]; \}; \}; \})[] + +Defined in: [src/screens/FundCampaignPledge/PledgesMocks.ts:387](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/screens/FundCampaignPledge/PledgesMocks.ts#L387) diff --git a/docs/docs/auto-docs/screens/FundCampaignPledge/PledgesMocks/variables/MOCKS.md b/docs/docs/auto-docs/screens/FundCampaignPledge/PledgesMocks/variables/MOCKS.md new file mode 100644 index 0000000000..71a0f6c4b2 --- /dev/null +++ b/docs/docs/auto-docs/screens/FundCampaignPledge/PledgesMocks/variables/MOCKS.md @@ -0,0 +1,9 @@ +[Admin Docs](/) + +*** + +# Variable: MOCKS + +> `const` **MOCKS**: (\{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `id`: `string`; \}; \}; `result`: \{ `data`: \{ `organizations`: `object`[]; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `id`: `undefined`; `pledgeOrderBy`: `string`; `where`: \{ `id`: `string`; \}; \}; \}; `result`: \{ `data`: \{ `getFundraisingCampaigns`: `object`[]; `removeFundraisingCampaignPledge`: `undefined`; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `id`: `string`; `pledgeOrderBy`: `undefined`; `where`: `undefined`; \}; \}; `result`: \{ `data`: \{ `getFundraisingCampaigns`: `undefined`; `removeFundraisingCampaignPledge`: \{ `_id`: `string`; \}; \}; \}; \})[] + +Defined in: [src/screens/FundCampaignPledge/PledgesMocks.ts:49](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/screens/FundCampaignPledge/PledgesMocks.ts#L49) diff --git a/docs/docs/auto-docs/screens/FundCampaignPledge/PledgesMocks/variables/MOCKS_DELETE_PLEDGE_ERROR.md b/docs/docs/auto-docs/screens/FundCampaignPledge/PledgesMocks/variables/MOCKS_DELETE_PLEDGE_ERROR.md new file mode 100644 index 0000000000..0079abeb2c --- /dev/null +++ b/docs/docs/auto-docs/screens/FundCampaignPledge/PledgesMocks/variables/MOCKS_DELETE_PLEDGE_ERROR.md @@ -0,0 +1,9 @@ +[Admin Docs](/) + +*** + +# Variable: MOCKS\_DELETE\_PLEDGE\_ERROR + +> `const` **MOCKS\_DELETE\_PLEDGE\_ERROR**: (\{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `id`: `string`; \}; \}; `result`: \{ `data`: \{ `organizations`: `object`[]; \}; \}; \} \| \{ `error`: `Error`; `request`: \{ `query`: `DocumentNode`; `variables`: \{ `id`: `string`; \}; \}; \})[] + +Defined in: [src/screens/FundCampaignPledge/PledgesMocks.ts:374](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/screens/FundCampaignPledge/PledgesMocks.ts#L374) diff --git a/docs/docs/auto-docs/screens/FundCampaignPledge/PledgesMocks/variables/MOCKS_FUND_CAMPAIGN_PLEDGE_ERROR.md b/docs/docs/auto-docs/screens/FundCampaignPledge/PledgesMocks/variables/MOCKS_FUND_CAMPAIGN_PLEDGE_ERROR.md new file mode 100644 index 0000000000..fac417b2c4 --- /dev/null +++ b/docs/docs/auto-docs/screens/FundCampaignPledge/PledgesMocks/variables/MOCKS_FUND_CAMPAIGN_PLEDGE_ERROR.md @@ -0,0 +1,9 @@ +[Admin Docs](/) + +*** + +# Variable: MOCKS\_FUND\_CAMPAIGN\_PLEDGE\_ERROR + +> `const` **MOCKS\_FUND\_CAMPAIGN\_PLEDGE\_ERROR**: (\{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `id`: `string`; \}; \}; `result`: \{ `data`: \{ `organizations`: `object`[]; \}; \}; \} \| \{ `error`: `Error`; `request`: \{ `query`: `DocumentNode`; `variables`: \{ `pledgeOrderBy`: `string`; `where`: \{ `id`: `string`; \}; \}; \}; \})[] + +Defined in: [src/screens/FundCampaignPledge/PledgesMocks.ts:358](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/screens/FundCampaignPledge/PledgesMocks.ts#L358) diff --git a/docs/docs/auto-docs/screens/FundCampaignPledge/PledgesMocks/variables/PLEDGE_MODAL_MOCKS.md b/docs/docs/auto-docs/screens/FundCampaignPledge/PledgesMocks/variables/PLEDGE_MODAL_MOCKS.md new file mode 100644 index 0000000000..2cf2dc500f --- /dev/null +++ b/docs/docs/auto-docs/screens/FundCampaignPledge/PledgesMocks/variables/PLEDGE_MODAL_MOCKS.md @@ -0,0 +1,9 @@ +[Admin Docs](/) + +*** + +# Variable: PLEDGE\_MODAL\_MOCKS + +> `const` **PLEDGE\_MODAL\_MOCKS**: (\{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `id`: `string`; \}; \}; `result`: \{ `data`: \{ `organizations`: `object`[]; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `amount`: `number`; `campaignId`: `undefined`; `currency`: `undefined`; `endDate`: `undefined`; `id`: `string`; `startDate`: `undefined`; `userIds`: `undefined`; \}; \}; `result`: \{ `data`: \{ `createFundraisingCampaignPledge`: `undefined`; `updateFundraisingCampaignPledge`: \{ `_id`: `string`; \}; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `amount`: `number`; `campaignId`: `string`; `currency`: `string`; `endDate`: `string`; `id`: `undefined`; `startDate`: `string`; `userIds`: `string`[]; \}; \}; `result`: \{ `data`: \{ `createFundraisingCampaignPledge`: \{ `_id`: `string`; \}; `updateFundraisingCampaignPledge`: `undefined`; \}; \}; \})[] + +Defined in: [src/screens/FundCampaignPledge/PledgesMocks.ts:419](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/screens/FundCampaignPledge/PledgesMocks.ts#L419) diff --git a/docs/docs/auto-docs/screens/Leaderboard/Leaderboard.mocks/variables/EMPTY_MOCKS.md b/docs/docs/auto-docs/screens/Leaderboard/Leaderboard.mocks/variables/EMPTY_MOCKS.md new file mode 100644 index 0000000000..01fda2bf68 --- /dev/null +++ b/docs/docs/auto-docs/screens/Leaderboard/Leaderboard.mocks/variables/EMPTY_MOCKS.md @@ -0,0 +1,55 @@ +[Admin Docs](/) + +*** + +# Variable: EMPTY\_MOCKS + +> `const` **EMPTY\_MOCKS**: `object`[] + +Defined in: [src/screens/Leaderboard/Leaderboard.mocks.ts:162](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/screens/Leaderboard/Leaderboard.mocks.ts#L162) + +## Type declaration + +### request + +> **request**: `object` + +#### request.query + +> **query**: `DocumentNode` = `VOLUNTEER_RANKING` + +#### request.variables + +> **variables**: `object` + +#### request.variables.orgId + +> **orgId**: `string` = `'orgId'` + +#### request.variables.where + +> **where**: `object` + +#### request.variables.where.nameContains + +> **nameContains**: `string` = `''` + +#### request.variables.where.orderBy + +> **orderBy**: `string` = `'hours_DESC'` + +#### request.variables.where.timeFrame + +> **timeFrame**: `string` = `'allTime'` + +### result + +> **result**: `object` + +#### result.data + +> **data**: `object` + +#### result.data.getVolunteerRanks + +> **getVolunteerRanks**: `any`[] = `[]` diff --git a/docs/docs/auto-docs/screens/Leaderboard/Leaderboard.mocks/variables/ERROR_MOCKS.md b/docs/docs/auto-docs/screens/Leaderboard/Leaderboard.mocks/variables/ERROR_MOCKS.md new file mode 100644 index 0000000000..42b75c3b36 --- /dev/null +++ b/docs/docs/auto-docs/screens/Leaderboard/Leaderboard.mocks/variables/ERROR_MOCKS.md @@ -0,0 +1,47 @@ +[Admin Docs](/) + +*** + +# Variable: ERROR\_MOCKS + +> `const` **ERROR\_MOCKS**: `object`[] + +Defined in: [src/screens/Leaderboard/Leaderboard.mocks.ts:183](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/screens/Leaderboard/Leaderboard.mocks.ts#L183) + +## Type declaration + +### error + +> **error**: `Error` + +### request + +> **request**: `object` + +#### request.query + +> **query**: `DocumentNode` = `VOLUNTEER_RANKING` + +#### request.variables + +> **variables**: `object` + +#### request.variables.orgId + +> **orgId**: `string` = `'orgId'` + +#### request.variables.where + +> **where**: `object` + +#### request.variables.where.nameContains + +> **nameContains**: `string` = `''` + +#### request.variables.where.orderBy + +> **orderBy**: `string` = `'hours_DESC'` + +#### request.variables.where.timeFrame + +> **timeFrame**: `string` = `'allTime'` diff --git a/docs/docs/auto-docs/screens/Leaderboard/Leaderboard.mocks/variables/MOCKS.md b/docs/docs/auto-docs/screens/Leaderboard/Leaderboard.mocks/variables/MOCKS.md new file mode 100644 index 0000000000..206a658f51 --- /dev/null +++ b/docs/docs/auto-docs/screens/Leaderboard/Leaderboard.mocks/variables/MOCKS.md @@ -0,0 +1,55 @@ +[Admin Docs](/) + +*** + +# Variable: MOCKS + +> `const` **MOCKS**: `object`[] + +Defined in: [src/screens/Leaderboard/Leaderboard.mocks.ts:51](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/screens/Leaderboard/Leaderboard.mocks.ts#L51) + +## Type declaration + +### request + +> **request**: `object` + +#### request.query + +> **query**: `DocumentNode` = `VOLUNTEER_RANKING` + +#### request.variables + +> **variables**: `object` + +#### request.variables.orgId + +> **orgId**: `string` = `'orgId'` + +#### request.variables.where + +> **where**: `object` + +#### request.variables.where.nameContains + +> **nameContains**: `string` = `''` + +#### request.variables.where.orderBy + +> **orderBy**: `string` = `'hours_DESC'` + +#### request.variables.where.timeFrame + +> **timeFrame**: `string` = `'allTime'` + +### result + +> **result**: `object` + +#### result.data + +> **data**: `object` + +#### result.data.getVolunteerRanks + +> **getVolunteerRanks**: `object`[] diff --git a/docs/docs/auto-docs/screens/Leaderboard/Leaderboard/functions/default.md b/docs/docs/auto-docs/screens/Leaderboard/Leaderboard/functions/default.md new file mode 100644 index 0000000000..3a5672aa51 --- /dev/null +++ b/docs/docs/auto-docs/screens/Leaderboard/Leaderboard/functions/default.md @@ -0,0 +1,21 @@ +[Admin Docs](/) + +*** + +# Function: default() + +> **default**(): `JSX.Element` + +Defined in: [src/screens/Leaderboard/Leaderboard.tsx:62](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/screens/Leaderboard/Leaderboard.tsx#L62) + +Component to display the leaderboard of volunteers. + +This component shows a leaderboard of volunteers ranked by hours contributed, +with features for filtering by time frame and sorting by hours. It displays +volunteer details including rank, name, email, and hours volunteered. + +## Returns + +`JSX.Element` + +The rendered component. diff --git a/docs/docs/auto-docs/screens/LoginPage/LoginPage/functions/default.md b/docs/docs/auto-docs/screens/LoginPage/LoginPage/functions/default.md new file mode 100644 index 0000000000..96a8bf68d4 --- /dev/null +++ b/docs/docs/auto-docs/screens/LoginPage/LoginPage/functions/default.md @@ -0,0 +1,17 @@ +[Admin Docs](/) + +*** + +# Function: default() + +> **default**(): `Element` + +Defined in: [src/screens/LoginPage/LoginPage.tsx:46](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/screens/LoginPage/LoginPage.tsx#L46) + +LoginPage component is used to render the login page of the application where user can login or register +to the application using email and password. The component also provides the functionality to switch between login and +register form. + +## Returns + +`Element` diff --git a/docs/docs/auto-docs/screens/ManageTag/EditUserTagModal/functions/default.md b/docs/docs/auto-docs/screens/ManageTag/EditUserTagModal/functions/default.md new file mode 100644 index 0000000000..fb28178560 --- /dev/null +++ b/docs/docs/auto-docs/screens/ManageTag/EditUserTagModal/functions/default.md @@ -0,0 +1,29 @@ +[Admin Docs](/) + +*** + +# Function: default() + +> **default**(`props`, `deprecatedLegacyContext`?): `ReactNode` + +Defined in: [src/screens/ManageTag/EditUserTagModal.tsx:21](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/screens/ManageTag/EditUserTagModal.tsx#L21) + +## Parameters + +### props + +[`InterfaceEditUserTagModalProps`](../interfaces/InterfaceEditUserTagModalProps.md) + +### deprecatedLegacyContext? + +`any` + +**Deprecated** + +**See** + +[React Docs](https://legacy.reactjs.org/docs/legacy-context.html#referencing-context-in-lifecycle-methods) + +## Returns + +`ReactNode` diff --git a/docs/docs/auto-docs/screens/ManageTag/EditUserTagModal/interfaces/InterfaceEditUserTagModalProps.md b/docs/docs/auto-docs/screens/ManageTag/EditUserTagModal/interfaces/InterfaceEditUserTagModalProps.md new file mode 100644 index 0000000000..1d7a92ee63 --- /dev/null +++ b/docs/docs/auto-docs/screens/ManageTag/EditUserTagModal/interfaces/InterfaceEditUserTagModalProps.md @@ -0,0 +1,89 @@ +[Admin Docs](/) + +*** + +# Interface: InterfaceEditUserTagModalProps + +Defined in: [src/screens/ManageTag/EditUserTagModal.tsx:11](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/screens/ManageTag/EditUserTagModal.tsx#L11) + +Edit UserTag Modal component for the Manage Tag screen. + +## Properties + +### editUserTagModalIsOpen + +> **editUserTagModalIsOpen**: `boolean` + +Defined in: [src/screens/ManageTag/EditUserTagModal.tsx:12](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/screens/ManageTag/EditUserTagModal.tsx#L12) + +*** + +### handleEditUserTag() + +> **handleEditUserTag**: (`e`) => `Promise`\<`void`\> + +Defined in: [src/screens/ManageTag/EditUserTagModal.tsx:16](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/screens/ManageTag/EditUserTagModal.tsx#L16) + +#### Parameters + +##### e + +`FormEvent`\<`HTMLFormElement`\> + +#### Returns + +`Promise`\<`void`\> + +*** + +### hideEditUserTagModal() + +> **hideEditUserTagModal**: () => `void` + +Defined in: [src/screens/ManageTag/EditUserTagModal.tsx:13](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/screens/ManageTag/EditUserTagModal.tsx#L13) + +#### Returns + +`void` + +*** + +### newTagName + +> **newTagName**: `string` + +Defined in: [src/screens/ManageTag/EditUserTagModal.tsx:14](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/screens/ManageTag/EditUserTagModal.tsx#L14) + +*** + +### setNewTagName() + +> **setNewTagName**: (`state`) => `void` + +Defined in: [src/screens/ManageTag/EditUserTagModal.tsx:15](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/screens/ManageTag/EditUserTagModal.tsx#L15) + +#### Parameters + +##### state + +`SetStateAction`\<`string`\> + +#### Returns + +`void` + +*** + +### t + +> **t**: `TFunction`\<`"manageTag"`\> + +Defined in: [src/screens/ManageTag/EditUserTagModal.tsx:17](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/screens/ManageTag/EditUserTagModal.tsx#L17) + +*** + +### tCommon + +> **tCommon**: `TFunction`\<`"common"`\> + +Defined in: [src/screens/ManageTag/EditUserTagModal.tsx:18](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/screens/ManageTag/EditUserTagModal.tsx#L18) diff --git a/docs/docs/auto-docs/screens/ManageTag/ManageTag/functions/default.md b/docs/docs/auto-docs/screens/ManageTag/ManageTag/functions/default.md new file mode 100644 index 0000000000..98d138a88c --- /dev/null +++ b/docs/docs/auto-docs/screens/ManageTag/ManageTag/functions/default.md @@ -0,0 +1,15 @@ +[Admin Docs](/) + +*** + +# Function: default() + +> **default**(): `JSX.Element` + +Defined in: [src/screens/ManageTag/ManageTag.tsx:46](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/screens/ManageTag/ManageTag.tsx#L46) + +Component that renders the Manage Tag screen when the app navigates to '/orgtags/:orgId/manageTag/:tagId'. + +## Returns + +`JSX.Element` diff --git a/docs/docs/auto-docs/screens/ManageTag/ManageTagMockComponents/MockAddPeopleToTag/functions/default.md b/docs/docs/auto-docs/screens/ManageTag/ManageTagMockComponents/MockAddPeopleToTag/functions/default.md new file mode 100644 index 0000000000..bb37450488 --- /dev/null +++ b/docs/docs/auto-docs/screens/ManageTag/ManageTagMockComponents/MockAddPeopleToTag/functions/default.md @@ -0,0 +1,29 @@ +[Admin Docs](/) + +*** + +# Function: default() + +> **default**(`props`, `deprecatedLegacyContext`?): `ReactNode` + +Defined in: [src/screens/ManageTag/ManageTagMockComponents/MockAddPeopleToTag.tsx:12](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/screens/ManageTag/ManageTagMockComponents/MockAddPeopleToTag.tsx#L12) + +## Parameters + +### props + +[`InterfaceAddPeopleToTagProps`](../../../../../components/AddPeopleToTag/AddPeopleToTag/interfaces/InterfaceAddPeopleToTagProps.md) + +### deprecatedLegacyContext? + +`any` + +**Deprecated** + +**See** + +[React Docs](https://legacy.reactjs.org/docs/legacy-context.html#referencing-context-in-lifecycle-methods) + +## Returns + +`ReactNode` diff --git a/docs/docs/auto-docs/screens/ManageTag/ManageTagMockComponents/MockTagActions/functions/default.md b/docs/docs/auto-docs/screens/ManageTag/ManageTagMockComponents/MockTagActions/functions/default.md new file mode 100644 index 0000000000..b9c49db8ff --- /dev/null +++ b/docs/docs/auto-docs/screens/ManageTag/ManageTagMockComponents/MockTagActions/functions/default.md @@ -0,0 +1,31 @@ +[Admin Docs](/) + +*** + +# Function: default() + +> **default**(`props`, `deprecatedLegacyContext`?): `ReactNode` + +Defined in: [src/screens/ManageTag/ManageTagMockComponents/MockTagActions.tsx:8](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/screens/ManageTag/ManageTagMockComponents/MockTagActions.tsx#L8) + +Component that mocks the TagActions component for the Manage Tag screen. + +## Parameters + +### props + +[`InterfaceTagActionsProps`](../../../../../components/TagActions/TagActions/interfaces/InterfaceTagActionsProps.md) + +### deprecatedLegacyContext? + +`any` + +**Deprecated** + +**See** + +[React Docs](https://legacy.reactjs.org/docs/legacy-context.html#referencing-context-in-lifecycle-methods) + +## Returns + +`ReactNode` diff --git a/docs/docs/auto-docs/screens/ManageTag/ManageTagMocks/variables/MOCKS.md b/docs/docs/auto-docs/screens/ManageTag/ManageTagMocks/variables/MOCKS.md new file mode 100644 index 0000000000..4a9a00f444 --- /dev/null +++ b/docs/docs/auto-docs/screens/ManageTag/ManageTagMocks/variables/MOCKS.md @@ -0,0 +1,9 @@ +[Admin Docs](/) + +*** + +# Variable: MOCKS + +> `const` **MOCKS**: (\{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `after`: `undefined`; `first`: `number`; `id`: `string`; `name`: `undefined`; `sortedBy`: \{ `id`: `string`; \}; `tagId`: `undefined`; `userId`: `undefined`; `where`: \{ `firstName`: \{ `starts_with`: `string`; \}; `lastName`: \{ `starts_with`: `string`; \}; \}; \}; \}; `result`: \{ `data`: \{ `getAssignedUsers`: \{ `ancestorTags`: `any`[]; `name`: `string`; `usersAssignedTo`: \{ `edges`: `object`[]; `pageInfo`: \{ `endCursor`: `string`; `hasNextPage`: `boolean`; `hasPreviousPage`: `boolean`; `startCursor`: `string`; \}; `totalCount`: `number`; \}; \}; `removeUserTag`: `undefined`; `unassignUserTag`: `undefined`; `updateUserTag`: `undefined`; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `after`: `string`; `first`: `number`; `id`: `string`; `name`: `undefined`; `sortedBy`: \{ `id`: `string`; \}; `tagId`: `undefined`; `userId`: `undefined`; `where`: \{ `firstName`: \{ `starts_with`: `string`; \}; `lastName`: \{ `starts_with`: `string`; \}; \}; \}; \}; `result`: \{ `data`: \{ `getAssignedUsers`: \{ `ancestorTags`: `any`[]; `name`: `string`; `usersAssignedTo`: \{ `edges`: `object`[]; `pageInfo`: \{ `endCursor`: `string`; `hasNextPage`: `boolean`; `hasPreviousPage`: `boolean`; `startCursor`: `string`; \}; `totalCount`: `number`; \}; \}; `removeUserTag`: `undefined`; `unassignUserTag`: `undefined`; `updateUserTag`: `undefined`; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `after`: `undefined`; `first`: `undefined`; `id`: `undefined`; `name`: `undefined`; `sortedBy`: `undefined`; `tagId`: `string`; `userId`: `string`; `where`: `undefined`; \}; \}; `result`: \{ `data`: \{ `getAssignedUsers`: `undefined`; `removeUserTag`: `undefined`; `unassignUserTag`: \{ `_id`: `string`; \}; `updateUserTag`: `undefined`; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `after`: `undefined`; `first`: `undefined`; `id`: `undefined`; `name`: `string`; `sortedBy`: `undefined`; `tagId`: `string`; `userId`: `undefined`; `where`: `undefined`; \}; \}; `result`: \{ `data`: \{ `getAssignedUsers`: `undefined`; `removeUserTag`: `undefined`; `unassignUserTag`: `undefined`; `updateUserTag`: \{ `_id`: `string`; \}; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `after`: `undefined`; `first`: `undefined`; `id`: `string`; `name`: `undefined`; `sortedBy`: `undefined`; `tagId`: `undefined`; `userId`: `undefined`; `where`: `undefined`; \}; \}; `result`: \{ `data`: \{ `getAssignedUsers`: `undefined`; `removeUserTag`: \{ `_id`: `string`; \}; `unassignUserTag`: `undefined`; `updateUserTag`: `undefined`; \}; \}; \})[] + +Defined in: [src/screens/ManageTag/ManageTagMocks.ts:9](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/screens/ManageTag/ManageTagMocks.ts#L9) diff --git a/docs/docs/auto-docs/screens/ManageTag/ManageTagMocks/variables/MOCKS_ERROR_ASSIGNED_MEMBERS.md b/docs/docs/auto-docs/screens/ManageTag/ManageTagMocks/variables/MOCKS_ERROR_ASSIGNED_MEMBERS.md new file mode 100644 index 0000000000..739f6ebff9 --- /dev/null +++ b/docs/docs/auto-docs/screens/ManageTag/ManageTagMocks/variables/MOCKS_ERROR_ASSIGNED_MEMBERS.md @@ -0,0 +1,63 @@ +[Admin Docs](/) + +*** + +# Variable: MOCKS\_ERROR\_ASSIGNED\_MEMBERS + +> `const` **MOCKS\_ERROR\_ASSIGNED\_MEMBERS**: `object`[] + +Defined in: [src/screens/ManageTag/ManageTagMocks.ts:320](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/screens/ManageTag/ManageTagMocks.ts#L320) + +## Type declaration + +### error + +> **error**: `Error` + +### request + +> **request**: `object` + +#### request.query + +> **query**: `DocumentNode` = `USER_TAGS_ASSIGNED_MEMBERS` + +#### request.variables + +> **variables**: `object` + +#### request.variables.first + +> **first**: `number` = `TAGS_QUERY_DATA_CHUNK_SIZE` + +#### request.variables.id + +> **id**: `string` = `'1'` + +#### request.variables.sortedBy + +> **sortedBy**: `object` + +#### request.variables.sortedBy.id + +> **id**: `string` = `'DESCENDING'` + +#### request.variables.where + +> **where**: `object` + +#### request.variables.where.firstName + +> **firstName**: `object` + +#### request.variables.where.firstName.starts\_with + +> **starts\_with**: `string` = `''` + +#### request.variables.where.lastName + +> **lastName**: `object` + +#### request.variables.where.lastName.starts\_with + +> **starts\_with**: `string` = `''` diff --git a/docs/docs/auto-docs/screens/ManageTag/RemoveUserTagModal/functions/default.md b/docs/docs/auto-docs/screens/ManageTag/RemoveUserTagModal/functions/default.md new file mode 100644 index 0000000000..7d2b4e23e6 --- /dev/null +++ b/docs/docs/auto-docs/screens/ManageTag/RemoveUserTagModal/functions/default.md @@ -0,0 +1,29 @@ +[Admin Docs](/) + +*** + +# Function: default() + +> **default**(`props`, `deprecatedLegacyContext`?): `ReactNode` + +Defined in: [src/screens/ManageTag/RemoveUserTagModal.tsx:18](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/screens/ManageTag/RemoveUserTagModal.tsx#L18) + +## Parameters + +### props + +[`InterfaceRemoveUserTagModalProps`](../interfaces/InterfaceRemoveUserTagModalProps.md) + +### deprecatedLegacyContext? + +`any` + +**Deprecated** + +**See** + +[React Docs](https://legacy.reactjs.org/docs/legacy-context.html#referencing-context-in-lifecycle-methods) + +## Returns + +`ReactNode` diff --git a/docs/docs/auto-docs/screens/ManageTag/RemoveUserTagModal/interfaces/InterfaceRemoveUserTagModalProps.md b/docs/docs/auto-docs/screens/ManageTag/RemoveUserTagModal/interfaces/InterfaceRemoveUserTagModalProps.md new file mode 100644 index 0000000000..864bc4be23 --- /dev/null +++ b/docs/docs/auto-docs/screens/ManageTag/RemoveUserTagModal/interfaces/InterfaceRemoveUserTagModalProps.md @@ -0,0 +1,57 @@ +[Admin Docs](/) + +*** + +# Interface: InterfaceRemoveUserTagModalProps + +Defined in: [src/screens/ManageTag/RemoveUserTagModal.tsx:10](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/screens/ManageTag/RemoveUserTagModal.tsx#L10) + +Remove UserTag Modal component for the Manage Tag screen. + +## Properties + +### handleRemoveUserTag() + +> **handleRemoveUserTag**: () => `Promise`\<`void`\> + +Defined in: [src/screens/ManageTag/RemoveUserTagModal.tsx:13](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/screens/ManageTag/RemoveUserTagModal.tsx#L13) + +#### Returns + +`Promise`\<`void`\> + +*** + +### removeUserTagModalIsOpen + +> **removeUserTagModalIsOpen**: `boolean` + +Defined in: [src/screens/ManageTag/RemoveUserTagModal.tsx:11](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/screens/ManageTag/RemoveUserTagModal.tsx#L11) + +*** + +### t + +> **t**: `TFunction`\<`"manageTag"`\> + +Defined in: [src/screens/ManageTag/RemoveUserTagModal.tsx:14](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/screens/ManageTag/RemoveUserTagModal.tsx#L14) + +*** + +### tCommon + +> **tCommon**: `TFunction`\<`"common"`\> + +Defined in: [src/screens/ManageTag/RemoveUserTagModal.tsx:15](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/screens/ManageTag/RemoveUserTagModal.tsx#L15) + +*** + +### toggleRemoveUserTagModal() + +> **toggleRemoveUserTagModal**: () => `void` + +Defined in: [src/screens/ManageTag/RemoveUserTagModal.tsx:12](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/screens/ManageTag/RemoveUserTagModal.tsx#L12) + +#### Returns + +`void` diff --git a/docs/docs/auto-docs/screens/ManageTag/UnassignUserTagModal/functions/default.md b/docs/docs/auto-docs/screens/ManageTag/UnassignUserTagModal/functions/default.md new file mode 100644 index 0000000000..37df778b62 --- /dev/null +++ b/docs/docs/auto-docs/screens/ManageTag/UnassignUserTagModal/functions/default.md @@ -0,0 +1,29 @@ +[Admin Docs](/) + +*** + +# Function: default() + +> **default**(`props`, `deprecatedLegacyContext`?): `ReactNode` + +Defined in: [src/screens/ManageTag/UnassignUserTagModal.tsx:17](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/screens/ManageTag/UnassignUserTagModal.tsx#L17) + +## Parameters + +### props + +[`InterfaceUnassignUserTagModalProps`](../interfaces/InterfaceUnassignUserTagModalProps.md) + +### deprecatedLegacyContext? + +`any` + +**Deprecated** + +**See** + +[React Docs](https://legacy.reactjs.org/docs/legacy-context.html#referencing-context-in-lifecycle-methods) + +## Returns + +`ReactNode` diff --git a/docs/docs/auto-docs/screens/ManageTag/UnassignUserTagModal/interfaces/InterfaceUnassignUserTagModalProps.md b/docs/docs/auto-docs/screens/ManageTag/UnassignUserTagModal/interfaces/InterfaceUnassignUserTagModalProps.md new file mode 100644 index 0000000000..12d5185c1f --- /dev/null +++ b/docs/docs/auto-docs/screens/ManageTag/UnassignUserTagModal/interfaces/InterfaceUnassignUserTagModalProps.md @@ -0,0 +1,57 @@ +[Admin Docs](/) + +*** + +# Interface: InterfaceUnassignUserTagModalProps + +Defined in: [src/screens/ManageTag/UnassignUserTagModal.tsx:9](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/screens/ManageTag/UnassignUserTagModal.tsx#L9) + +Unassign UserTag Modal component for the Manage Tag screen. + +## Properties + +### handleUnassignUserTag() + +> **handleUnassignUserTag**: () => `Promise`\<`void`\> + +Defined in: [src/screens/ManageTag/UnassignUserTagModal.tsx:12](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/screens/ManageTag/UnassignUserTagModal.tsx#L12) + +#### Returns + +`Promise`\<`void`\> + +*** + +### t + +> **t**: `TFunction`\<`"manageTag"` \| `"memberDetail"`\> + +Defined in: [src/screens/ManageTag/UnassignUserTagModal.tsx:13](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/screens/ManageTag/UnassignUserTagModal.tsx#L13) + +*** + +### tCommon + +> **tCommon**: `TFunction`\<`"common"`\> + +Defined in: [src/screens/ManageTag/UnassignUserTagModal.tsx:14](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/screens/ManageTag/UnassignUserTagModal.tsx#L14) + +*** + +### toggleUnassignUserTagModal() + +> **toggleUnassignUserTagModal**: () => `void` + +Defined in: [src/screens/ManageTag/UnassignUserTagModal.tsx:11](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/screens/ManageTag/UnassignUserTagModal.tsx#L11) + +#### Returns + +`void` + +*** + +### unassignUserTagModalIsOpen + +> **unassignUserTagModalIsOpen**: `boolean` + +Defined in: [src/screens/ManageTag/UnassignUserTagModal.tsx:10](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/screens/ManageTag/UnassignUserTagModal.tsx#L10) diff --git a/docs/docs/auto-docs/screens/MemberDetail/MemberDetail/functions/default.md b/docs/docs/auto-docs/screens/MemberDetail/MemberDetail/functions/default.md new file mode 100644 index 0000000000..bbdf8fc56f --- /dev/null +++ b/docs/docs/auto-docs/screens/MemberDetail/MemberDetail/functions/default.md @@ -0,0 +1,36 @@ +[Admin Docs](/) + +*** + +# Function: default() + +> **default**(`props`, `deprecatedLegacyContext`?): `ReactNode` + +Defined in: [src/screens/MemberDetail/MemberDetail.tsx:51](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/screens/MemberDetail/MemberDetail.tsx#L51) + +MemberDetail component is used to display the details of a user. +It also allows the user to update the details. It uses the UPDATE_USER_MUTATION to update the user details. +It uses the USER_DETAILS query to get the user details. It uses the useLocalStorage hook to store the user + details in the local storage. + +## Parameters + +### props + +`MemberDetailProps` + +### deprecatedLegacyContext? + +`any` + +**Deprecated** + +**See** + +[React Docs](https://legacy.reactjs.org/docs/legacy-context.html#referencing-context-in-lifecycle-methods) + +## Returns + +`ReactNode` + +React component diff --git a/docs/docs/auto-docs/screens/MemberDetail/MemberDetail/functions/getLanguageName.md b/docs/docs/auto-docs/screens/MemberDetail/MemberDetail/functions/getLanguageName.md new file mode 100644 index 0000000000..f736725bc6 --- /dev/null +++ b/docs/docs/auto-docs/screens/MemberDetail/MemberDetail/functions/getLanguageName.md @@ -0,0 +1,19 @@ +[Admin Docs](/) + +*** + +# Function: getLanguageName() + +> **getLanguageName**(`code`): `string` + +Defined in: [src/screens/MemberDetail/MemberDetail.tsx:752](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/screens/MemberDetail/MemberDetail.tsx#L752) + +## Parameters + +### code + +`string` + +## Returns + +`string` diff --git a/docs/docs/auto-docs/screens/MemberDetail/MemberDetail/functions/prettyDate.md b/docs/docs/auto-docs/screens/MemberDetail/MemberDetail/functions/prettyDate.md new file mode 100644 index 0000000000..e22bb3789d --- /dev/null +++ b/docs/docs/auto-docs/screens/MemberDetail/MemberDetail/functions/prettyDate.md @@ -0,0 +1,19 @@ +[Admin Docs](/) + +*** + +# Function: prettyDate() + +> **prettyDate**(`param`): `string` + +Defined in: [src/screens/MemberDetail/MemberDetail.tsx:742](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/screens/MemberDetail/MemberDetail.tsx#L742) + +## Parameters + +### param + +`string` + +## Returns + +`string` diff --git a/docs/docs/auto-docs/screens/MemberDetail/MemberDetailMocks/variables/MOCKS1.md b/docs/docs/auto-docs/screens/MemberDetail/MemberDetailMocks/variables/MOCKS1.md new file mode 100644 index 0000000000..b7310a9b55 --- /dev/null +++ b/docs/docs/auto-docs/screens/MemberDetail/MemberDetailMocks/variables/MOCKS1.md @@ -0,0 +1,9 @@ +[Admin Docs](/) + +*** + +# Variable: MOCKS1 + +> `const` **MOCKS1**: (\{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `after`: `undefined`; `first`: `number`; `id`: `string`; `tagId`: `undefined`; `userId`: `undefined`; \}; \}; `result`: \{ `data`: \{ `unassignUserTag`: `undefined`; `user`: \{ `__typename`: `string`; `appUserProfile`: \{ `__typename`: `string`; `_id`: `string`; `adminFor`: `object`[]; `appLanguageCode`: `string`; `createdEvents`: `object`[]; `createdOrganizations`: `object`[]; `eventAdmin`: `object`[]; `isSuperAdmin`: `boolean`; `pluginCreationAllowed`: `boolean`; \}; `user`: \{ `__typename`: `string`; `_id`: `string`; `address`: \{ `city`: `string`; `countryCode`: `string`; `line1`: `string`; `state`: `string`; \}; `birthDate`: `string`; `createdAt`: `string`; `educationGrade`: `string`; `email`: `string`; `employmentStatus`: `string`; `eventsAttended`: `any`[]; `firstName`: `string`; `gender`: `string`; `image`: `any`; `joinedOrganizations`: `object`[]; `lastName`: `string`; `maritalStatus`: `string`; `membershipRequests`: `any`[]; `organizationsBlockedBy`: `any`[]; `phone`: \{ `mobile`: `string`; \}; `registeredEvents`: `object`[]; `tagsAssignedWith`: \{ `edges`: `object`[]; `pageInfo`: \{ `endCursor`: `string`; `hasNextPage`: `boolean`; `hasPreviousPage`: `boolean`; `startCursor`: `string`; \}; `totalCount`: `number`; \}; \}; \}; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `after`: `string`; `first`: `number`; `id`: `string`; `tagId`: `undefined`; `userId`: `undefined`; \}; \}; `result`: \{ `data`: \{ `unassignUserTag`: `undefined`; `user`: \{ `__typename`: `string`; `appUserProfile`: \{ `__typename`: `string`; `_id`: `string`; `adminFor`: `object`[]; `appLanguageCode`: `string`; `createdEvents`: `object`[]; `createdOrganizations`: `object`[]; `eventAdmin`: `object`[]; `isSuperAdmin`: `boolean`; `pluginCreationAllowed`: `boolean`; \}; `user`: \{ `__typename`: `string`; `_id`: `string`; `address`: \{ `city`: `string`; `countryCode`: `string`; `line1`: `string`; `state`: `string`; \}; `birthDate`: `string`; `createdAt`: `string`; `educationGrade`: `string`; `email`: `string`; `employmentStatus`: `string`; `eventsAttended`: `any`[]; `firstName`: `string`; `gender`: `string`; `image`: `any`; `joinedOrganizations`: `object`[]; `lastName`: `string`; `maritalStatus`: `string`; `membershipRequests`: `any`[]; `organizationsBlockedBy`: `any`[]; `phone`: \{ `mobile`: `string`; \}; `registeredEvents`: `object`[]; `tagsAssignedWith`: \{ `edges`: `object`[]; `pageInfo`: \{ `endCursor`: `string`; `hasNextPage`: `boolean`; `hasPreviousPage`: `boolean`; `startCursor`: `string`; \}; `totalCount`: `number`; \}; \}; \}; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `after`: `undefined`; `first`: `undefined`; `id`: `undefined`; `tagId`: `string`; `userId`: `string`; \}; \}; `result`: \{ `data`: \{ `unassignUserTag`: \{ `_id`: `string`; \}; `user`: `undefined`; \}; \}; \})[] + +Defined in: [src/screens/MemberDetail/MemberDetailMocks.ts:5](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/screens/MemberDetail/MemberDetailMocks.ts#L5) diff --git a/docs/docs/auto-docs/screens/MemberDetail/MemberDetailMocks/variables/MOCKS2.md b/docs/docs/auto-docs/screens/MemberDetail/MemberDetailMocks/variables/MOCKS2.md new file mode 100644 index 0000000000..581a63dbe0 --- /dev/null +++ b/docs/docs/auto-docs/screens/MemberDetail/MemberDetailMocks/variables/MOCKS2.md @@ -0,0 +1,219 @@ +[Admin Docs](/) + +*** + +# Variable: MOCKS2 + +> `const` **MOCKS2**: `object`[] + +Defined in: [src/screens/MemberDetail/MemberDetailMocks.ts:337](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/screens/MemberDetail/MemberDetailMocks.ts#L337) + +## Type declaration + +### request + +> **request**: `object` + +#### request.query + +> **query**: `DocumentNode` = `USER_DETAILS` + +#### request.variables + +> **variables**: `object` + +#### request.variables.first + +> **first**: `number` = `TAGS_QUERY_DATA_CHUNK_SIZE` + +#### request.variables.id + +> **id**: `string` = `'rishav-jha-mech'` + +### result + +> **result**: `object` + +#### result.data + +> **data**: `object` + +#### result.data.user + +> **user**: `object` + +#### result.data.user.\_\_typename + +> **\_\_typename**: `string` = `'UserData'` + +#### result.data.user.appUserProfile + +> **appUserProfile**: `object` + +#### result.data.user.appUserProfile.\_\_typename + +> **\_\_typename**: `string` = `'AppUserProfile'` + +#### result.data.user.appUserProfile.\_id + +> **\_id**: `string` = `'1'` + +#### result.data.user.appUserProfile.adminFor + +> **adminFor**: `any`[] = `[]` + +#### result.data.user.appUserProfile.appLanguageCode + +> **appLanguageCode**: `string` = `'en'` + +#### result.data.user.appUserProfile.createdEvents + +> **createdEvents**: `object`[] + +#### result.data.user.appUserProfile.createdOrganizations + +> **createdOrganizations**: `object`[] + +#### result.data.user.appUserProfile.eventAdmin + +> **eventAdmin**: `object`[] + +#### result.data.user.appUserProfile.isSuperAdmin + +> **isSuperAdmin**: `boolean` = `false` + +#### result.data.user.appUserProfile.pluginCreationAllowed + +> **pluginCreationAllowed**: `boolean` = `true` + +#### result.data.user.user + +> **user**: `object` + +#### result.data.user.user.\_\_typename + +> **\_\_typename**: `string` = `'User'` + +#### result.data.user.user.\_id + +> **\_id**: `string` = `'1'` + +#### result.data.user.user.address + +> **address**: `object` + +#### result.data.user.user.address.city + +> **city**: `string` = `''` + +#### result.data.user.user.address.countryCode + +> **countryCode**: `string` = `''` + +#### result.data.user.user.address.line1 + +> **line1**: `string` = `''` + +#### result.data.user.user.address.state + +> **state**: `string` = `''` + +#### result.data.user.user.birthDate + +> **birthDate**: `string` = `'2024-03-14'` + +#### result.data.user.user.createdAt + +> **createdAt**: `string` = `'2024-02-26T10:36:33.098Z'` + +#### result.data.user.user.educationGrade + +> **educationGrade**: `string` = `''` + +#### result.data.user.user.email + +> **email**: `string` = `'adi790u@gmail.com'` + +#### result.data.user.user.employmentStatus + +> **employmentStatus**: `string` = `''` + +#### result.data.user.user.eventsAttended + +> **eventsAttended**: `object`[] + +#### result.data.user.user.firstName + +> **firstName**: `string` = `'Aditya'` + +#### result.data.user.user.gender + +> **gender**: `string` = `''` + +#### result.data.user.user.image + +> **image**: `string` = `'https://placeholder.com/200x200'` + +#### result.data.user.user.joinedOrganizations + +> **joinedOrganizations**: `object`[] + +#### result.data.user.user.lastName + +> **lastName**: `string` = `'Agarwal'` + +#### result.data.user.user.maritalStatus + +> **maritalStatus**: `string` = `''` + +#### result.data.user.user.membershipRequests + +> **membershipRequests**: `any`[] = `[]` + +#### result.data.user.user.organizationsBlockedBy + +> **organizationsBlockedBy**: `any`[] = `[]` + +#### result.data.user.user.phone + +> **phone**: `object` + +#### result.data.user.user.phone.mobile + +> **mobile**: `string` = `''` + +#### result.data.user.user.registeredEvents + +> **registeredEvents**: `object`[] + +#### result.data.user.user.tagsAssignedWith + +> **tagsAssignedWith**: `object` + +#### result.data.user.user.tagsAssignedWith.edges + +> **edges**: `any`[] = `[]` + +#### result.data.user.user.tagsAssignedWith.pageInfo + +> **pageInfo**: `object` + +#### result.data.user.user.tagsAssignedWith.pageInfo.endCursor + +> **endCursor**: `any` = `null` + +#### result.data.user.user.tagsAssignedWith.pageInfo.hasNextPage + +> **hasNextPage**: `boolean` = `false` + +#### result.data.user.user.tagsAssignedWith.pageInfo.hasPreviousPage + +> **hasPreviousPage**: `boolean` = `false` + +#### result.data.user.user.tagsAssignedWith.pageInfo.startCursor + +> **startCursor**: `any` = `null` + +#### result.data.user.user.tagsAssignedWith.totalCount + +> **totalCount**: `number` = `0` diff --git a/docs/docs/auto-docs/screens/MemberDetail/MemberDetailMocks/variables/MOCKS3.md b/docs/docs/auto-docs/screens/MemberDetail/MemberDetailMocks/variables/MOCKS3.md new file mode 100644 index 0000000000..83e6d9d384 --- /dev/null +++ b/docs/docs/auto-docs/screens/MemberDetail/MemberDetailMocks/variables/MOCKS3.md @@ -0,0 +1,219 @@ +[Admin Docs](/) + +*** + +# Variable: MOCKS3 + +> `const` **MOCKS3**: `object`[] + +Defined in: [src/screens/MemberDetail/MemberDetailMocks.ts:437](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/screens/MemberDetail/MemberDetailMocks.ts#L437) + +## Type declaration + +### request + +> **request**: `object` + +#### request.query + +> **query**: `DocumentNode` = `USER_DETAILS` + +#### request.variables + +> **variables**: `object` + +#### request.variables.first + +> **first**: `number` = `TAGS_QUERY_DATA_CHUNK_SIZE` + +#### request.variables.id + +> **id**: `string` = `'rishav-jha-mech'` + +### result + +> **result**: `object` + +#### result.data + +> **data**: `object` + +#### result.data.user + +> **user**: `object` + +#### result.data.user.\_\_typename + +> **\_\_typename**: `string` = `'UserData'` + +#### result.data.user.appUserProfile + +> **appUserProfile**: `object` + +#### result.data.user.appUserProfile.\_\_typename + +> **\_\_typename**: `string` = `'AppUserProfile'` + +#### result.data.user.appUserProfile.\_id + +> **\_id**: `string` = `'1'` + +#### result.data.user.appUserProfile.adminFor + +> **adminFor**: `any`[] = `[]` + +#### result.data.user.appUserProfile.appLanguageCode + +> **appLanguageCode**: `string` = `'en'` + +#### result.data.user.appUserProfile.createdEvents + +> **createdEvents**: `object`[] + +#### result.data.user.appUserProfile.createdOrganizations + +> **createdOrganizations**: `object`[] + +#### result.data.user.appUserProfile.eventAdmin + +> **eventAdmin**: `object`[] + +#### result.data.user.appUserProfile.isSuperAdmin + +> **isSuperAdmin**: `boolean` = `true` + +#### result.data.user.appUserProfile.pluginCreationAllowed + +> **pluginCreationAllowed**: `boolean` = `true` + +#### result.data.user.user + +> **user**: `object` + +#### result.data.user.user.\_\_typename + +> **\_\_typename**: `string` = `'User'` + +#### result.data.user.user.\_id + +> **\_id**: `string` = `'1'` + +#### result.data.user.user.address + +> **address**: `object` + +#### result.data.user.user.address.city + +> **city**: `string` = `''` + +#### result.data.user.user.address.countryCode + +> **countryCode**: `string` = `''` + +#### result.data.user.user.address.line1 + +> **line1**: `string` = `''` + +#### result.data.user.user.address.state + +> **state**: `string` = `''` + +#### result.data.user.user.birthDate + +> **birthDate**: `string` = `'2024-03-14'` + +#### result.data.user.user.createdAt + +> **createdAt**: `string` = `'2024-02-26T10:36:33.098Z'` + +#### result.data.user.user.educationGrade + +> **educationGrade**: `string` = `''` + +#### result.data.user.user.email + +> **email**: `string` = `'adi790u@gmail.com'` + +#### result.data.user.user.employmentStatus + +> **employmentStatus**: `string` = `''` + +#### result.data.user.user.eventsAttended + +> **eventsAttended**: `any`[] = `[]` + +#### result.data.user.user.firstName + +> **firstName**: `string` = `'Aditya'` + +#### result.data.user.user.gender + +> **gender**: `string` = `''` + +#### result.data.user.user.image + +> **image**: `string` = `'https://placeholder.com/200x200'` + +#### result.data.user.user.joinedOrganizations + +> **joinedOrganizations**: `object`[] + +#### result.data.user.user.lastName + +> **lastName**: `string` = `'Agarwal'` + +#### result.data.user.user.maritalStatus + +> **maritalStatus**: `string` = `''` + +#### result.data.user.user.membershipRequests + +> **membershipRequests**: `any`[] = `[]` + +#### result.data.user.user.organizationsBlockedBy + +> **organizationsBlockedBy**: `any`[] = `[]` + +#### result.data.user.user.phone + +> **phone**: `object` + +#### result.data.user.user.phone.mobile + +> **mobile**: `string` = `''` + +#### result.data.user.user.registeredEvents + +> **registeredEvents**: `object`[] + +#### result.data.user.user.tagsAssignedWith + +> **tagsAssignedWith**: `object` + +#### result.data.user.user.tagsAssignedWith.edges + +> **edges**: `any`[] = `[]` + +#### result.data.user.user.tagsAssignedWith.pageInfo + +> **pageInfo**: `object` + +#### result.data.user.user.tagsAssignedWith.pageInfo.endCursor + +> **endCursor**: `any` = `null` + +#### result.data.user.user.tagsAssignedWith.pageInfo.hasNextPage + +> **hasNextPage**: `boolean` = `false` + +#### result.data.user.user.tagsAssignedWith.pageInfo.hasPreviousPage + +> **hasPreviousPage**: `boolean` = `false` + +#### result.data.user.user.tagsAssignedWith.pageInfo.startCursor + +> **startCursor**: `any` = `null` + +#### result.data.user.user.tagsAssignedWith.totalCount + +> **totalCount**: `number` = `0` diff --git a/docs/docs/auto-docs/screens/OrgContribution/OrgContribution/functions/default.md b/docs/docs/auto-docs/screens/OrgContribution/OrgContribution/functions/default.md new file mode 100644 index 0000000000..2079aa8b74 --- /dev/null +++ b/docs/docs/auto-docs/screens/OrgContribution/OrgContribution/functions/default.md @@ -0,0 +1,17 @@ +[Admin Docs](/) + +*** + +# Function: default() + +> **default**(): `JSX.Element` + +Defined in: [src/screens/OrgContribution/OrgContribution.tsx:16](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/screens/OrgContribution/OrgContribution.tsx#L16) + +The `orgContribution` component displays the contributions to an organization. +It includes a sidebar for filtering contributions by organization name and transaction ID. +Additionally, it shows recent contribution statistics and a list of contribution cards. + +## Returns + +`JSX.Element` diff --git a/docs/docs/auto-docs/screens/OrgList/OrgList/functions/default.md b/docs/docs/auto-docs/screens/OrgList/OrgList/functions/default.md new file mode 100644 index 0000000000..28b232bd96 --- /dev/null +++ b/docs/docs/auto-docs/screens/OrgList/OrgList/functions/default.md @@ -0,0 +1,13 @@ +[Admin Docs](/) + +*** + +# Function: default() + +> **default**(): `JSX.Element` + +Defined in: [src/screens/OrgList/OrgList.tsx:33](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/screens/OrgList/OrgList.tsx#L33) + +## Returns + +`JSX.Element` diff --git a/docs/docs/auto-docs/screens/OrgList/OrgListMocks/variables/MOCKS.md b/docs/docs/auto-docs/screens/OrgList/OrgListMocks/variables/MOCKS.md new file mode 100644 index 0000000000..24da8eef3d --- /dev/null +++ b/docs/docs/auto-docs/screens/OrgList/OrgListMocks/variables/MOCKS.md @@ -0,0 +1,9 @@ +[Admin Docs](/) + +*** + +# Variable: MOCKS + +> `const` **MOCKS**: (\{ `request`: \{ `notifyOnNetworkStatusChange`: `boolean`; `query`: `DocumentNode`; `variables`: \{ `address`: `undefined`; `description`: `undefined`; `filter`: `string`; `first`: `number`; `image`: `undefined`; `name`: `undefined`; `orderBy`: `string`; `skip`: `number`; `userId`: `undefined`; `userRegistrationRequired`: `undefined`; `visibleInSearch`: `undefined`; \}; \}; `result`: \{ `data`: \{ `createOrganization`: `undefined`; `createSampleOrganization`: `undefined`; `organizationsConnection`: [`InterfaceOrgConnectionInfoType`](../../../../utils/interfaces/interfaces/InterfaceOrgConnectionInfoType.md)[]; `user`: `undefined`; \}; \}; \} \| \{ `request`: \{ `notifyOnNetworkStatusChange`: `undefined`; `query`: `DocumentNode`; `variables`: \{ `address`: `undefined`; `description`: `undefined`; `filter`: `undefined`; `first`: `undefined`; `image`: `undefined`; `name`: `undefined`; `orderBy`: `undefined`; `skip`: `undefined`; `userId`: `string`; `userRegistrationRequired`: `undefined`; `visibleInSearch`: `undefined`; \}; \}; `result`: \{ `data`: \{ `createOrganization`: `undefined`; `createSampleOrganization`: `undefined`; `organizationsConnection`: `undefined`; `user`: [`InterfaceUserType`](../../../../utils/interfaces/interfaces/InterfaceUserType.md); \}; \}; \} \| \{ `request`: \{ `notifyOnNetworkStatusChange`: `undefined`; `query`: `DocumentNode`; `variables`: `undefined`; \}; `result`: \{ `data`: \{ `createOrganization`: `undefined`; `createSampleOrganization`: \{ `id`: `string`; `name`: `string`; \}; `organizationsConnection`: `undefined`; `user`: `undefined`; \}; \}; \} \| \{ `request`: \{ `notifyOnNetworkStatusChange`: `undefined`; `query`: `DocumentNode`; `variables`: \{ `address`: \{ `city`: `string`; `countryCode`: `string`; `dependentLocality`: `string`; `line1`: `string`; `line2`: `string`; `postalCode`: `string`; `sortingCode`: `string`; `state`: `string`; \}; `description`: `string`; `filter`: `undefined`; `first`: `undefined`; `image`: `string`; `name`: `string`; `orderBy`: `undefined`; `skip`: `undefined`; `userId`: `undefined`; `userRegistrationRequired`: `boolean`; `visibleInSearch`: `boolean`; \}; \}; `result`: \{ `data`: \{ `createOrganization`: \{ `_id`: `string`; \}; `createSampleOrganization`: `undefined`; `organizationsConnection`: `undefined`; `user`: `undefined`; \}; \}; \})[] + +Defined in: [src/screens/OrgList/OrgListMocks.ts:94](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/screens/OrgList/OrgListMocks.ts#L94) diff --git a/docs/docs/auto-docs/screens/OrgList/OrgListMocks/variables/MOCKS_ADMIN.md b/docs/docs/auto-docs/screens/OrgList/OrgListMocks/variables/MOCKS_ADMIN.md new file mode 100644 index 0000000000..949e62296c --- /dev/null +++ b/docs/docs/auto-docs/screens/OrgList/OrgListMocks/variables/MOCKS_ADMIN.md @@ -0,0 +1,9 @@ +[Admin Docs](/) + +*** + +# Variable: MOCKS\_ADMIN + +> `const` **MOCKS\_ADMIN**: (\{ `request`: \{ `notifyOnNetworkStatusChange`: `boolean`; `query`: `DocumentNode`; `variables`: \{ `filter`: `string`; `first`: `number`; `orderBy`: `string`; `skip`: `number`; `userId`: `undefined`; \}; \}; `result`: \{ `data`: \{ `organizationsConnection`: [`InterfaceOrgConnectionInfoType`](../../../../utils/interfaces/interfaces/InterfaceOrgConnectionInfoType.md)[]; `user`: `undefined`; \}; \}; \} \| \{ `request`: \{ `notifyOnNetworkStatusChange`: `undefined`; `query`: `DocumentNode`; `variables`: \{ `filter`: `undefined`; `first`: `undefined`; `orderBy`: `undefined`; `skip`: `undefined`; `userId`: `string`; \}; \}; `result`: \{ `data`: \{ `organizationsConnection`: `undefined`; `user`: [`InterfaceUserType`](../../../../utils/interfaces/interfaces/InterfaceUserType.md); \}; \}; \})[] + +Defined in: [src/screens/OrgList/OrgListMocks.ts:228](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/screens/OrgList/OrgListMocks.ts#L228) diff --git a/docs/docs/auto-docs/screens/OrgList/OrgListMocks/variables/MOCKS_EMPTY.md b/docs/docs/auto-docs/screens/OrgList/OrgListMocks/variables/MOCKS_EMPTY.md new file mode 100644 index 0000000000..bf4b2f0100 --- /dev/null +++ b/docs/docs/auto-docs/screens/OrgList/OrgListMocks/variables/MOCKS_EMPTY.md @@ -0,0 +1,9 @@ +[Admin Docs](/) + +*** + +# Variable: MOCKS\_EMPTY + +> `const` **MOCKS\_EMPTY**: (\{ `request`: \{ `notifyOnNetworkStatusChange`: `boolean`; `query`: `DocumentNode`; `variables`: \{ `filter`: `string`; `first`: `number`; `orderBy`: `string`; `skip`: `number`; `userId`: `undefined`; \}; \}; `result`: \{ `data`: \{ `organizationsConnection`: `any`[]; `user`: `undefined`; \}; \}; \} \| \{ `request`: \{ `notifyOnNetworkStatusChange`: `undefined`; `query`: `DocumentNode`; `variables`: \{ `filter`: `undefined`; `first`: `undefined`; `orderBy`: `undefined`; `skip`: `undefined`; `userId`: `string`; \}; \}; `result`: \{ `data`: \{ `organizationsConnection`: `undefined`; `user`: [`InterfaceUserType`](../../../../utils/interfaces/interfaces/InterfaceUserType.md); \}; \}; \})[] + +Defined in: [src/screens/OrgList/OrgListMocks.ts:164](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/screens/OrgList/OrgListMocks.ts#L164) diff --git a/docs/docs/auto-docs/screens/OrgList/OrgListMocks/variables/MOCKS_WITH_ERROR.md b/docs/docs/auto-docs/screens/OrgList/OrgListMocks/variables/MOCKS_WITH_ERROR.md new file mode 100644 index 0000000000..ccc12296ce --- /dev/null +++ b/docs/docs/auto-docs/screens/OrgList/OrgListMocks/variables/MOCKS_WITH_ERROR.md @@ -0,0 +1,9 @@ +[Admin Docs](/) + +*** + +# Variable: MOCKS\_WITH\_ERROR + +> `const` **MOCKS\_WITH\_ERROR**: (\{ `error`: `undefined`; `request`: \{ `notifyOnNetworkStatusChange`: `boolean`; `query`: `DocumentNode`; `variables`: \{ `filter`: `string`; `first`: `number`; `orderBy`: `string`; `skip`: `number`; `userId`: `undefined`; \}; \}; `result`: \{ `data`: \{ `organizationsConnection`: [`InterfaceOrgConnectionInfoType`](../../../../utils/interfaces/interfaces/InterfaceOrgConnectionInfoType.md)[]; `user`: `undefined`; \}; \}; \} \| \{ `error`: `undefined`; `request`: \{ `notifyOnNetworkStatusChange`: `undefined`; `query`: `DocumentNode`; `variables`: \{ `filter`: `undefined`; `first`: `undefined`; `orderBy`: `undefined`; `skip`: `undefined`; `userId`: `string`; \}; \}; `result`: \{ `data`: \{ `organizationsConnection`: `undefined`; `user`: [`InterfaceUserType`](../../../../utils/interfaces/interfaces/InterfaceUserType.md); \}; \}; \} \| \{ `error`: `Error`; `request`: \{ `notifyOnNetworkStatusChange`: `undefined`; `query`: `DocumentNode`; `variables`: `undefined`; \}; `result`: `undefined`; \})[] + +Defined in: [src/screens/OrgList/OrgListMocks.ts:192](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/screens/OrgList/OrgListMocks.ts#L192) diff --git a/docs/docs/auto-docs/screens/OrgList/OrganizationModal/functions/default.md b/docs/docs/auto-docs/screens/OrgList/OrganizationModal/functions/default.md new file mode 100644 index 0000000000..ec23a02d6f --- /dev/null +++ b/docs/docs/auto-docs/screens/OrgList/OrganizationModal/functions/default.md @@ -0,0 +1,31 @@ +[Admin Docs](/) + +*** + +# Function: default() + +> **default**(`props`, `deprecatedLegacyContext`?): `ReactNode` + +Defined in: [src/screens/OrgList/OrganizationModal.tsx:55](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/screens/OrgList/OrganizationModal.tsx#L55) + +Represents the organization modal component. + +## Parameters + +### props + +`InterfaceOrganizationModalProps` + +### deprecatedLegacyContext? + +`any` + +**Deprecated** + +**See** + +[React Docs](https://legacy.reactjs.org/docs/legacy-context.html#referencing-context-in-lifecycle-methods) + +## Returns + +`ReactNode` diff --git a/docs/docs/auto-docs/screens/OrgPost/OrgPost/functions/default.md b/docs/docs/auto-docs/screens/OrgPost/OrgPost/functions/default.md new file mode 100644 index 0000000000..a0a125048f --- /dev/null +++ b/docs/docs/auto-docs/screens/OrgPost/OrgPost/functions/default.md @@ -0,0 +1,19 @@ +[Admin Docs](/) + +*** + +# Function: default() + +> **default**(): `JSX.Element` + +Defined in: [src/screens/OrgPost/OrgPost.tsx:51](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/screens/OrgPost/OrgPost.tsx#L51) + +This function is used to display the posts of the organization. It displays the posts in a card format. +It also provides the functionality to create a new post. The user can also sort the posts based on the date of creation. +The user can also search for a post based on the title of the post. + +## Returns + +`JSX.Element` + +JSX.Element which contains the posts of the organization. diff --git a/docs/docs/auto-docs/screens/OrgSettings/OrgSettings.mocks/variables/MOCKS.md b/docs/docs/auto-docs/screens/OrgSettings/OrgSettings.mocks/variables/MOCKS.md new file mode 100644 index 0000000000..76b23165e5 --- /dev/null +++ b/docs/docs/auto-docs/screens/OrgSettings/OrgSettings.mocks/variables/MOCKS.md @@ -0,0 +1,9 @@ +[Admin Docs](/) + +*** + +# Variable: MOCKS + +> `const` **MOCKS**: (\{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `customFieldsByOrganizationId`: `undefined`; `id`: `string`; `isSampleOrganizationId`: `undefined`; `orderBy`: `undefined`; `organizationId`: `undefined`; `where`: `undefined`; \}; \}; `result`: \{ `data`: \{ `actionItemCategoriesByOrganization`: `undefined`; `agendaItemCategoriesByOrganization`: `undefined`; `customFieldsByOrganization`: `undefined`; `isSampleOrganization`: `undefined`; `organizations`: `object`[]; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `customFieldsByOrganizationId`: `string`; `id`: `undefined`; `isSampleOrganizationId`: `undefined`; `orderBy`: `undefined`; `organizationId`: `undefined`; `where`: `undefined`; \}; \}; `result`: \{ `data`: \{ `actionItemCategoriesByOrganization`: `undefined`; `agendaItemCategoriesByOrganization`: `undefined`; `customFieldsByOrganization`: `object`[]; `isSampleOrganization`: `undefined`; `organizations`: `undefined`; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `customFieldsByOrganizationId`: `undefined`; `id`: `undefined`; `isSampleOrganizationId`: `string`; `orderBy`: `undefined`; `organizationId`: `undefined`; `where`: `undefined`; \}; \}; `result`: \{ `data`: \{ `actionItemCategoriesByOrganization`: `undefined`; `agendaItemCategoriesByOrganization`: `undefined`; `customFieldsByOrganization`: `undefined`; `isSampleOrganization`: `boolean`; `organizations`: `undefined`; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `customFieldsByOrganizationId`: `undefined`; `id`: `undefined`; `isSampleOrganizationId`: `undefined`; `orderBy`: `undefined`; `organizationId`: `string`; `where`: `undefined`; \}; \}; `result`: \{ `data`: \{ `actionItemCategoriesByOrganization`: `undefined`; `agendaItemCategoriesByOrganization`: `any`[]; `customFieldsByOrganization`: `undefined`; `isSampleOrganization`: `undefined`; `organizations`: `undefined`; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `customFieldsByOrganizationId`: `undefined`; `id`: `undefined`; `isSampleOrganizationId`: `undefined`; `orderBy`: `string`; `organizationId`: `string`; `where`: \{ `name_contains`: `string`; \}; \}; \}; `result`: \{ `data`: \{ `actionItemCategoriesByOrganization`: `object`[]; `agendaItemCategoriesByOrganization`: `undefined`; `customFieldsByOrganization`: `undefined`; `isSampleOrganization`: `undefined`; `organizations`: `undefined`; \}; \}; \})[] + +Defined in: [src/screens/OrgSettings/OrgSettings.mocks.ts:9](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/screens/OrgSettings/OrgSettings.mocks.ts#L9) diff --git a/docs/docs/auto-docs/screens/OrgSettings/OrgSettings/functions/default.md b/docs/docs/auto-docs/screens/OrgSettings/OrgSettings/functions/default.md new file mode 100644 index 0000000000..0ef3675948 --- /dev/null +++ b/docs/docs/auto-docs/screens/OrgSettings/OrgSettings/functions/default.md @@ -0,0 +1,21 @@ +[Admin Docs](/) + +*** + +# Function: default() + +> **default**(): `JSX.Element` + +Defined in: [src/screens/OrgSettings/OrgSettings.tsx:29](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/screens/OrgSettings/OrgSettings.tsx#L29) + +The `orgSettings` component provides a user interface for managing various settings related to an organization. +It includes options for updating organization details, deleting the organization, changing language preferences, +and managing custom fields and action item categories. + +The component renders different settings sections based on the user's selection from the tabs or dropdown menu. + +## Returns + +`JSX.Element` + +The rendered component displaying the organization settings. diff --git a/docs/docs/auto-docs/screens/OrganizationActionItems/ItemDeleteModal/functions/default.md b/docs/docs/auto-docs/screens/OrganizationActionItems/ItemDeleteModal/functions/default.md new file mode 100644 index 0000000000..78ee026a24 --- /dev/null +++ b/docs/docs/auto-docs/screens/OrganizationActionItems/ItemDeleteModal/functions/default.md @@ -0,0 +1,35 @@ +[Admin Docs](/) + +*** + +# Function: default() + +> **default**(`props`, `deprecatedLegacyContext`?): `ReactNode` + +Defined in: [src/screens/OrganizationActionItems/ItemDeleteModal.tsx:26](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/screens/OrganizationActionItems/ItemDeleteModal.tsx#L26) + +A modal component for confirming the deletion of an action item. + +## Parameters + +### props + +[`InterfaceItemDeleteModalProps`](../interfaces/InterfaceItemDeleteModalProps.md) + +The properties passed to the component. + +### deprecatedLegacyContext? + +`any` + +**Deprecated** + +**See** + +[React Docs](https://legacy.reactjs.org/docs/legacy-context.html#referencing-context-in-lifecycle-methods) + +## Returns + +`ReactNode` + +The `ItemDeleteModal` component. diff --git a/docs/docs/auto-docs/screens/OrganizationActionItems/ItemDeleteModal/interfaces/InterfaceItemDeleteModalProps.md b/docs/docs/auto-docs/screens/OrganizationActionItems/ItemDeleteModal/interfaces/InterfaceItemDeleteModalProps.md new file mode 100644 index 0000000000..a1f1a8c02e --- /dev/null +++ b/docs/docs/auto-docs/screens/OrganizationActionItems/ItemDeleteModal/interfaces/InterfaceItemDeleteModalProps.md @@ -0,0 +1,49 @@ +[Admin Docs](/) + +*** + +# Interface: InterfaceItemDeleteModalProps + +Defined in: [src/screens/OrganizationActionItems/ItemDeleteModal.tsx:13](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/screens/OrganizationActionItems/ItemDeleteModal.tsx#L13) + +Props for the `ItemDeleteModal` component. + +## Properties + +### actionItem + +> **actionItem**: [`InterfaceActionItemInfo`](../../../../utils/interfaces/interfaces/InterfaceActionItemInfo.md) + +Defined in: [src/screens/OrganizationActionItems/ItemDeleteModal.tsx:16](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/screens/OrganizationActionItems/ItemDeleteModal.tsx#L16) + +*** + +### actionItemsRefetch() + +> **actionItemsRefetch**: () => `void` + +Defined in: [src/screens/OrganizationActionItems/ItemDeleteModal.tsx:17](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/screens/OrganizationActionItems/ItemDeleteModal.tsx#L17) + +#### Returns + +`void` + +*** + +### hide() + +> **hide**: () => `void` + +Defined in: [src/screens/OrganizationActionItems/ItemDeleteModal.tsx:15](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/screens/OrganizationActionItems/ItemDeleteModal.tsx#L15) + +#### Returns + +`void` + +*** + +### isOpen + +> **isOpen**: `boolean` + +Defined in: [src/screens/OrganizationActionItems/ItemDeleteModal.tsx:14](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/screens/OrganizationActionItems/ItemDeleteModal.tsx#L14) diff --git a/docs/docs/auto-docs/screens/OrganizationActionItems/ItemModal/functions/default.md b/docs/docs/auto-docs/screens/OrganizationActionItems/ItemModal/functions/default.md new file mode 100644 index 0000000000..cc28c98961 --- /dev/null +++ b/docs/docs/auto-docs/screens/OrganizationActionItems/ItemModal/functions/default.md @@ -0,0 +1,35 @@ +[Admin Docs](/) + +*** + +# Function: default() + +> **default**(`props`, `deprecatedLegacyContext`?): `ReactNode` + +Defined in: [src/screens/OrganizationActionItems/ItemModal.tsx:92](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/screens/OrganizationActionItems/ItemModal.tsx#L92) + +A modal component for creating action items. + +## Parameters + +### props + +[`InterfaceItemModalProps`](../interfaces/InterfaceItemModalProps.md) + +The properties passed to the component. + +### deprecatedLegacyContext? + +`any` + +**Deprecated** + +**See** + +[React Docs](https://legacy.reactjs.org/docs/legacy-context.html#referencing-context-in-lifecycle-methods) + +## Returns + +`ReactNode` + +The `ItemModal` component. diff --git a/docs/docs/auto-docs/screens/OrganizationActionItems/ItemModal/interfaces/InterfaceItemModalProps.md b/docs/docs/auto-docs/screens/OrganizationActionItems/ItemModal/interfaces/InterfaceItemModalProps.md new file mode 100644 index 0000000000..7643295e75 --- /dev/null +++ b/docs/docs/auto-docs/screens/OrganizationActionItems/ItemModal/interfaces/InterfaceItemModalProps.md @@ -0,0 +1,73 @@ +[Admin Docs](/) + +*** + +# Interface: InterfaceItemModalProps + +Defined in: [src/screens/OrganizationActionItems/ItemModal.tsx:52](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/screens/OrganizationActionItems/ItemModal.tsx#L52) + +Props for the `ItemModal` component. + +## Properties + +### actionItem + +> **actionItem**: [`InterfaceActionItemInfo`](../../../../utils/interfaces/interfaces/InterfaceActionItemInfo.md) + +Defined in: [src/screens/OrganizationActionItems/ItemModal.tsx:58](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/screens/OrganizationActionItems/ItemModal.tsx#L58) + +*** + +### actionItemsRefetch() + +> **actionItemsRefetch**: () => `void` + +Defined in: [src/screens/OrganizationActionItems/ItemModal.tsx:57](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/screens/OrganizationActionItems/ItemModal.tsx#L57) + +#### Returns + +`void` + +*** + +### editMode + +> **editMode**: `boolean` + +Defined in: [src/screens/OrganizationActionItems/ItemModal.tsx:59](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/screens/OrganizationActionItems/ItemModal.tsx#L59) + +*** + +### eventId + +> **eventId**: `string` + +Defined in: [src/screens/OrganizationActionItems/ItemModal.tsx:56](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/screens/OrganizationActionItems/ItemModal.tsx#L56) + +*** + +### hide() + +> **hide**: () => `void` + +Defined in: [src/screens/OrganizationActionItems/ItemModal.tsx:54](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/screens/OrganizationActionItems/ItemModal.tsx#L54) + +#### Returns + +`void` + +*** + +### isOpen + +> **isOpen**: `boolean` + +Defined in: [src/screens/OrganizationActionItems/ItemModal.tsx:53](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/screens/OrganizationActionItems/ItemModal.tsx#L53) + +*** + +### orgId + +> **orgId**: `string` + +Defined in: [src/screens/OrganizationActionItems/ItemModal.tsx:55](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/screens/OrganizationActionItems/ItemModal.tsx#L55) diff --git a/docs/docs/auto-docs/screens/OrganizationActionItems/ItemUpdateStatusModal/functions/default.md b/docs/docs/auto-docs/screens/OrganizationActionItems/ItemUpdateStatusModal/functions/default.md new file mode 100644 index 0000000000..8eeade9f2a --- /dev/null +++ b/docs/docs/auto-docs/screens/OrganizationActionItems/ItemUpdateStatusModal/functions/default.md @@ -0,0 +1,29 @@ +[Admin Docs](/) + +*** + +# Function: default() + +> **default**(`props`, `deprecatedLegacyContext`?): `ReactNode` + +Defined in: [src/screens/OrganizationActionItems/ItemUpdateStatusModal.tsx:18](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/screens/OrganizationActionItems/ItemUpdateStatusModal.tsx#L18) + +## Parameters + +### props + +[`InterfaceItemUpdateStatusModalProps`](../interfaces/InterfaceItemUpdateStatusModalProps.md) + +### deprecatedLegacyContext? + +`any` + +**Deprecated** + +**See** + +[React Docs](https://legacy.reactjs.org/docs/legacy-context.html#referencing-context-in-lifecycle-methods) + +## Returns + +`ReactNode` diff --git a/docs/docs/auto-docs/screens/OrganizationActionItems/ItemUpdateStatusModal/interfaces/InterfaceItemUpdateStatusModalProps.md b/docs/docs/auto-docs/screens/OrganizationActionItems/ItemUpdateStatusModal/interfaces/InterfaceItemUpdateStatusModalProps.md new file mode 100644 index 0000000000..e4c5eb16b9 --- /dev/null +++ b/docs/docs/auto-docs/screens/OrganizationActionItems/ItemUpdateStatusModal/interfaces/InterfaceItemUpdateStatusModalProps.md @@ -0,0 +1,47 @@ +[Admin Docs](/) + +*** + +# Interface: InterfaceItemUpdateStatusModalProps + +Defined in: [src/screens/OrganizationActionItems/ItemUpdateStatusModal.tsx:11](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/screens/OrganizationActionItems/ItemUpdateStatusModal.tsx#L11) + +## Properties + +### actionItem + +> **actionItem**: [`InterfaceActionItemInfo`](../../../../utils/interfaces/interfaces/InterfaceActionItemInfo.md) + +Defined in: [src/screens/OrganizationActionItems/ItemUpdateStatusModal.tsx:15](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/screens/OrganizationActionItems/ItemUpdateStatusModal.tsx#L15) + +*** + +### actionItemsRefetch() + +> **actionItemsRefetch**: () => `void` + +Defined in: [src/screens/OrganizationActionItems/ItemUpdateStatusModal.tsx:14](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/screens/OrganizationActionItems/ItemUpdateStatusModal.tsx#L14) + +#### Returns + +`void` + +*** + +### hide() + +> **hide**: () => `void` + +Defined in: [src/screens/OrganizationActionItems/ItemUpdateStatusModal.tsx:13](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/screens/OrganizationActionItems/ItemUpdateStatusModal.tsx#L13) + +#### Returns + +`void` + +*** + +### isOpen + +> **isOpen**: `boolean` + +Defined in: [src/screens/OrganizationActionItems/ItemUpdateStatusModal.tsx:12](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/screens/OrganizationActionItems/ItemUpdateStatusModal.tsx#L12) diff --git a/docs/docs/auto-docs/screens/OrganizationActionItems/ItemViewModal/functions/default.md b/docs/docs/auto-docs/screens/OrganizationActionItems/ItemViewModal/functions/default.md new file mode 100644 index 0000000000..c884f45999 --- /dev/null +++ b/docs/docs/auto-docs/screens/OrganizationActionItems/ItemViewModal/functions/default.md @@ -0,0 +1,36 @@ +[Admin Docs](/) + +*** + +# Function: default() + +> **default**(`props`, `deprecatedLegacyContext`?): `ReactNode` + +Defined in: [src/screens/OrganizationActionItems/ItemViewModal.tsx:32](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/screens/OrganizationActionItems/ItemViewModal.tsx#L32) + +A modal dialog for viewing action item details. + +## Parameters + +### props + +[`InterfaceViewModalProps`](../interfaces/InterfaceViewModalProps.md) + +### deprecatedLegacyContext? + +`any` + +**Deprecated** + +**See** + +[React Docs](https://legacy.reactjs.org/docs/legacy-context.html#referencing-context-in-lifecycle-methods) + +## Returns + +`ReactNode` + +The rendered modal component. + +The `ItemViewModal` component displays all the fields of an action item in a modal dialog. +It includes fields for assignee, assigner, category, pre and post completion notes, assignment date, due date, completion date, and event. diff --git a/docs/docs/auto-docs/screens/OrganizationActionItems/ItemViewModal/interfaces/InterfaceViewModalProps.md b/docs/docs/auto-docs/screens/OrganizationActionItems/ItemViewModal/interfaces/InterfaceViewModalProps.md new file mode 100644 index 0000000000..649b28fd4a --- /dev/null +++ b/docs/docs/auto-docs/screens/OrganizationActionItems/ItemViewModal/interfaces/InterfaceViewModalProps.md @@ -0,0 +1,35 @@ +[Admin Docs](/) + +*** + +# Interface: InterfaceViewModalProps + +Defined in: [src/screens/OrganizationActionItems/ItemViewModal.tsx:13](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/screens/OrganizationActionItems/ItemViewModal.tsx#L13) + +## Properties + +### hide() + +> **hide**: () => `void` + +Defined in: [src/screens/OrganizationActionItems/ItemViewModal.tsx:15](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/screens/OrganizationActionItems/ItemViewModal.tsx#L15) + +#### Returns + +`void` + +*** + +### isOpen + +> **isOpen**: `boolean` + +Defined in: [src/screens/OrganizationActionItems/ItemViewModal.tsx:14](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/screens/OrganizationActionItems/ItemViewModal.tsx#L14) + +*** + +### item + +> **item**: [`InterfaceActionItemInfo`](../../../../utils/interfaces/interfaces/InterfaceActionItemInfo.md) + +Defined in: [src/screens/OrganizationActionItems/ItemViewModal.tsx:16](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/screens/OrganizationActionItems/ItemViewModal.tsx#L16) diff --git a/docs/docs/auto-docs/screens/OrganizationActionItems/OrganizationActionItem.mocks/variables/MOCKS.md b/docs/docs/auto-docs/screens/OrganizationActionItems/OrganizationActionItem.mocks/variables/MOCKS.md new file mode 100644 index 0000000000..cc2a5ebe69 --- /dev/null +++ b/docs/docs/auto-docs/screens/OrganizationActionItems/OrganizationActionItem.mocks/variables/MOCKS.md @@ -0,0 +1,9 @@ +[Admin Docs](/) + +*** + +# Variable: MOCKS + +> `const` **MOCKS**: (\{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `id`: `string`; \}; \}; `result`: \{ `data`: \{ `organizations`: `object`[]; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `organizationId`: `string`; `where`: \{ `is_disabled`: `boolean`; \}; \}; \}; `result`: \{ `data`: \{ `actionItemCategoriesByOrganization`: (\{ `_id`: `string`; `createdAt`: `string`; `creator`: \{ `_id`: `string`; `firstName`: `string`; `lastName`: `string`; \}; `isDisabled`: `boolean`; `name`: `string`; \} \| \{ `_id`: `undefined`; `createdAt`: `string`; `creator`: \{ `_id`: `undefined`; `firstName`: `string`; `lastName`: `string`; \}; `isDisabled`: `boolean`; `name`: `string`; \})[]; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `where`: \{ `eventId`: `string`; `hasAccepted`: `boolean`; \}; \}; \}; `result`: \{ `data`: \{ `getEventVolunteers`: (\{ `_id`: `string`; `assignments`: `any`[]; `groups`: `object`[]; `hasAccepted`: `boolean`; `hoursVolunteered`: `number`; `user`: \{ `_id`: `string`; `firstName`: `string`; `image`: `any`; `lastName`: `string`; \}; \} \| \{ `_id`: `undefined`; `assignments`: `any`[]; `groups`: `any`[]; `hasAccepted`: `boolean`; `hoursVolunteered`: `number`; `user`: \{ `_id`: `undefined`; `firstName`: `string`; `image`: `any`; `lastName`: `string`; \}; \})[]; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `where`: \{ `eventId`: `undefined`; `hasAccepted`: `boolean`; \}; \}; \}; `result`: \{ `data`: \{ `getEventVolunteers`: `any`[]; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `where`: \{ `eventId`: `string`; \}; \}; \}; `result`: \{ `data`: \{ `getEventVolunteerGroups`: (\{ `_id`: `string`; `assignments`: `any`[]; `createdAt`: `string`; `creator`: \{ `_id`: `string`; `firstName`: `string`; `image`: `any`; `lastName`: `string`; \}; `description`: `string`; `event`: \{ `_id`: `string`; \}; `leader`: \{ `_id`: `string`; `firstName`: `string`; `image`: `any`; `lastName`: `string`; \}; `name`: `string`; `volunteers`: `object`[]; `volunteersRequired`: `number`; \} \| \{ `_id`: `undefined`; `assignments`: `any`[]; `createdAt`: `string`; `creator`: \{ `_id`: `string`; `firstName`: `string`; `image`: `any`; `lastName`: `string`; \}; `description`: `string`; `event`: \{ `_id`: `string`; \}; `leader`: \{ `_id`: `string`; `firstName`: `string`; `image`: `any`; `lastName`: `string`; \}; `name`: `string`; `volunteers`: `any`[]; `volunteersRequired`: `number`; \})[]; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `actionItemCategoryId`: `undefined`; `actionItemId`: `undefined`; `allottedHours`: `undefined`; `assigneeId`: `undefined`; `assigneeType`: `undefined`; `dDate`: `undefined`; `dueDate`: `undefined`; `eventId`: `string`; `isCompleted`: `undefined`; `orderBy`: `any`; `organizationId`: `string`; `postCompletionNotes`: `undefined`; `preCompletionNotes`: `undefined`; `where`: \{ `assigneeName`: `undefined`; `categoryName`: `string`; `is_completed`: `undefined`; \}; \}; \}; `result`: \{ `data`: \{ `actionItemsByOrganization`: [`InterfaceActionItemInfo`](../../../../utils/interfaces/interfaces/InterfaceActionItemInfo.md)[]; `createActionItem`: `undefined`; `removeActionItem`: `undefined`; `updateActionItem`: `undefined`; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `actionItemCategoryId`: `undefined`; `actionItemId`: `undefined`; `allottedHours`: `undefined`; `assigneeId`: `undefined`; `assigneeType`: `undefined`; `dDate`: `undefined`; `dueDate`: `undefined`; `eventId`: `string`; `isCompleted`: `undefined`; `orderBy`: `string`; `organizationId`: `string`; `postCompletionNotes`: `undefined`; `preCompletionNotes`: `undefined`; `where`: \{ `assigneeName`: `string`; `categoryName`: `undefined`; `is_completed`: `undefined`; \}; \}; \}; `result`: \{ `data`: \{ `actionItemsByOrganization`: [`InterfaceActionItemInfo`](../../../../utils/interfaces/interfaces/InterfaceActionItemInfo.md)[]; `createActionItem`: `undefined`; `removeActionItem`: `undefined`; `updateActionItem`: `undefined`; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `actionItemCategoryId`: `undefined`; `actionItemId`: `undefined`; `allottedHours`: `undefined`; `assigneeId`: `undefined`; `assigneeType`: `undefined`; `dDate`: `undefined`; `dueDate`: `undefined`; `eventId`: `string`; `isCompleted`: `undefined`; `orderBy`: `any`; `organizationId`: `string`; `postCompletionNotes`: `undefined`; `preCompletionNotes`: `undefined`; `where`: \{ `assigneeName`: `string`; `categoryName`: `undefined`; `is_completed`: `boolean`; \}; \}; \}; `result`: \{ `data`: \{ `actionItemsByOrganization`: [`InterfaceActionItemInfo`](../../../../utils/interfaces/interfaces/InterfaceActionItemInfo.md)[]; `createActionItem`: `undefined`; `removeActionItem`: `undefined`; `updateActionItem`: `undefined`; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `actionItemCategoryId`: `undefined`; `actionItemId`: `string`; `allottedHours`: `undefined`; `assigneeId`: `undefined`; `assigneeType`: `undefined`; `dDate`: `undefined`; `dueDate`: `undefined`; `eventId`: `undefined`; `isCompleted`: `undefined`; `orderBy`: `undefined`; `organizationId`: `undefined`; `postCompletionNotes`: `undefined`; `preCompletionNotes`: `undefined`; `where`: `undefined`; \}; \}; `result`: \{ `data`: \{ `actionItemsByOrganization`: `undefined`; `createActionItem`: `undefined`; `removeActionItem`: \{ `_id`: `string`; \}; `updateActionItem`: `undefined`; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `actionItemCategoryId`: `undefined`; `actionItemId`: `string`; `allottedHours`: `undefined`; `assigneeId`: `string`; `assigneeType`: `string`; `dDate`: `undefined`; `dueDate`: `undefined`; `eventId`: `undefined`; `isCompleted`: `boolean`; `orderBy`: `undefined`; `organizationId`: `undefined`; `postCompletionNotes`: `string`; `preCompletionNotes`: `undefined`; `where`: `undefined`; \}; \}; `result`: \{ `data`: \{ `actionItemsByOrganization`: `undefined`; `createActionItem`: `undefined`; `removeActionItem`: `undefined`; `updateActionItem`: \{ `_id`: `string`; \}; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `actionItemCategoryId`: `string`; `actionItemId`: `string`; `allottedHours`: `number`; `assigneeId`: `string`; `assigneeType`: `string`; `dDate`: `undefined`; `dueDate`: `undefined`; `eventId`: `undefined`; `isCompleted`: `undefined`; `orderBy`: `undefined`; `organizationId`: `undefined`; `postCompletionNotes`: `string`; `preCompletionNotes`: `undefined`; `where`: `undefined`; \}; \}; `result`: \{ `data`: \{ `actionItemsByOrganization`: `undefined`; `createActionItem`: `undefined`; `removeActionItem`: `undefined`; `updateActionItem`: \{ `_id`: `string`; \}; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `actionItemCategoryId`: `string`; `actionItemId`: `string`; `allottedHours`: `number`; `assigneeId`: `string`; `assigneeType`: `string`; `dDate`: `undefined`; `dueDate`: `string`; `eventId`: `undefined`; `isCompleted`: `undefined`; `orderBy`: `undefined`; `organizationId`: `undefined`; `postCompletionNotes`: `undefined`; `preCompletionNotes`: `string`; `where`: `undefined`; \}; \}; `result`: \{ `data`: \{ `actionItemsByOrganization`: `undefined`; `createActionItem`: `undefined`; `removeActionItem`: `undefined`; `updateActionItem`: \{ `_id`: `string`; \}; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `actionItemCategoryId`: `undefined`; `actionItemId`: `string`; `allottedHours`: `undefined`; `assigneeId`: `string`; `assigneeType`: `undefined`; `dDate`: `undefined`; `dueDate`: `undefined`; `eventId`: `undefined`; `isCompleted`: `boolean`; `orderBy`: `undefined`; `organizationId`: `undefined`; `postCompletionNotes`: `string`; `preCompletionNotes`: `undefined`; `where`: `undefined`; \}; \}; `result`: \{ `data`: \{ `actionItemsByOrganization`: `undefined`; `createActionItem`: `undefined`; `removeActionItem`: `undefined`; `updateActionItem`: \{ `_id`: `string`; \}; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `actionItemCategoryId`: `string`; `actionItemId`: `string`; `allottedHours`: `number`; `assigneeId`: `string`; `assigneeType`: `string`; `dDate`: `undefined`; `dueDate`: `undefined`; `eventId`: `undefined`; `isCompleted`: `undefined`; `orderBy`: `undefined`; `organizationId`: `undefined`; `postCompletionNotes`: `undefined`; `preCompletionNotes`: `undefined`; `where`: `undefined`; \}; \}; `result`: \{ `data`: \{ `actionItemsByOrganization`: `undefined`; `createActionItem`: `undefined`; `removeActionItem`: `undefined`; `updateActionItem`: \{ `_id`: `string`; \}; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `actionItemCategoryId`: `string`; `actionItemId`: `undefined`; `allottedHours`: `number`; `assigneeId`: `string`; `assigneeType`: `string`; `dDate`: `string`; `dueDate`: `undefined`; `eventId`: `undefined`; `isCompleted`: `undefined`; `orderBy`: `undefined`; `organizationId`: `undefined`; `postCompletionNotes`: `undefined`; `preCompletionNotes`: `string`; `where`: `undefined`; \}; \}; `result`: \{ `data`: \{ `actionItemsByOrganization`: `undefined`; `createActionItem`: \{ `_id`: `string`; \}; `removeActionItem`: `undefined`; `updateActionItem`: `undefined`; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `actionItemCategoryId`: `string`; `actionItemId`: `undefined`; `allottedHours`: `number`; `assigneeId`: `string`; `assigneeType`: `string`; `dDate`: `string`; `dueDate`: `undefined`; `eventId`: `string`; `isCompleted`: `undefined`; `orderBy`: `undefined`; `organizationId`: `undefined`; `postCompletionNotes`: `undefined`; `preCompletionNotes`: `string`; `where`: `undefined`; \}; \}; `result`: \{ `data`: \{ `actionItemsByOrganization`: `undefined`; `createActionItem`: \{ `_id`: `string`; \}; `removeActionItem`: `undefined`; `updateActionItem`: `undefined`; \}; \}; \})[] + +Defined in: [src/screens/OrganizationActionItems/OrganizationActionItem.mocks.ts:21](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/screens/OrganizationActionItems/OrganizationActionItem.mocks.ts#L21) diff --git a/docs/docs/auto-docs/screens/OrganizationActionItems/OrganizationActionItem.mocks/variables/MOCKS_EMPTY.md b/docs/docs/auto-docs/screens/OrganizationActionItems/OrganizationActionItem.mocks/variables/MOCKS_EMPTY.md new file mode 100644 index 0000000000..b4feaa0543 --- /dev/null +++ b/docs/docs/auto-docs/screens/OrganizationActionItems/OrganizationActionItem.mocks/variables/MOCKS_EMPTY.md @@ -0,0 +1,9 @@ +[Admin Docs](/) + +*** + +# Variable: MOCKS\_EMPTY + +> `const` **MOCKS\_EMPTY**: (\{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `id`: `string`; \}; \}; `result`: \{ `data`: \{ `organizations`: `object`[]; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `organizationId`: `string`; `where`: \{ `is_disabled`: `boolean`; \}; \}; \}; `result`: \{ `data`: \{ `actionItemCategoriesByOrganization`: (\{ `_id`: `string`; `createdAt`: `string`; `creator`: \{ `_id`: `string`; `firstName`: `string`; `lastName`: `string`; \}; `isDisabled`: `boolean`; `name`: `string`; \} \| \{ `_id`: `undefined`; `createdAt`: `string`; `creator`: \{ `_id`: `undefined`; `firstName`: `string`; `lastName`: `string`; \}; `isDisabled`: `boolean`; `name`: `string`; \})[]; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `where`: \{ `eventId`: `string`; `hasAccepted`: `boolean`; \}; \}; \}; `result`: \{ `data`: \{ `getEventVolunteers`: (\{ `_id`: `string`; `assignments`: `any`[]; `groups`: `object`[]; `hasAccepted`: `boolean`; `hoursVolunteered`: `number`; `user`: \{ `_id`: `string`; `firstName`: `string`; `image`: `any`; `lastName`: `string`; \}; \} \| \{ `_id`: `undefined`; `assignments`: `any`[]; `groups`: `any`[]; `hasAccepted`: `boolean`; `hoursVolunteered`: `number`; `user`: \{ `_id`: `undefined`; `firstName`: `string`; `image`: `any`; `lastName`: `string`; \}; \})[]; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `where`: \{ `eventId`: `undefined`; `hasAccepted`: `boolean`; \}; \}; \}; `result`: \{ `data`: \{ `getEventVolunteers`: `any`[]; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `where`: \{ `eventId`: `string`; \}; \}; \}; `result`: \{ `data`: \{ `getEventVolunteerGroups`: (\{ `_id`: `string`; `assignments`: `any`[]; `createdAt`: `string`; `creator`: \{ `_id`: `string`; `firstName`: `string`; `image`: `any`; `lastName`: `string`; \}; `description`: `string`; `event`: \{ `_id`: `string`; \}; `leader`: \{ `_id`: `string`; `firstName`: `string`; `image`: `any`; `lastName`: `string`; \}; `name`: `string`; `volunteers`: `object`[]; `volunteersRequired`: `number`; \} \| \{ `_id`: `undefined`; `assignments`: `any`[]; `createdAt`: `string`; `creator`: \{ `_id`: `string`; `firstName`: `string`; `image`: `any`; `lastName`: `string`; \}; `description`: `string`; `event`: \{ `_id`: `string`; \}; `leader`: \{ `_id`: `string`; `firstName`: `string`; `image`: `any`; `lastName`: `string`; \}; `name`: `string`; `volunteers`: `any`[]; `volunteersRequired`: `number`; \})[]; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `eventId`: `string`; `orderBy`: `any`; `organizationId`: `string`; `where`: \{ `assigneeName`: `string`; \}; \}; \}; `result`: \{ `data`: \{ `actionItemsByOrganization`: `any`[]; \}; \}; \})[] + +Defined in: [src/screens/OrganizationActionItems/OrganizationActionItem.mocks.ts:480](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/screens/OrganizationActionItems/OrganizationActionItem.mocks.ts#L480) diff --git a/docs/docs/auto-docs/screens/OrganizationActionItems/OrganizationActionItem.mocks/variables/MOCKS_ERROR.md b/docs/docs/auto-docs/screens/OrganizationActionItems/OrganizationActionItem.mocks/variables/MOCKS_ERROR.md new file mode 100644 index 0000000000..858f72c35b --- /dev/null +++ b/docs/docs/auto-docs/screens/OrganizationActionItems/OrganizationActionItem.mocks/variables/MOCKS_ERROR.md @@ -0,0 +1,9 @@ +[Admin Docs](/) + +*** + +# Variable: MOCKS\_ERROR + +> `const` **MOCKS\_ERROR**: (\{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `id`: `string`; \}; \}; `result`: \{ `data`: \{ `organizations`: `object`[]; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `organizationId`: `string`; `where`: \{ `is_disabled`: `boolean`; \}; \}; \}; `result`: \{ `data`: \{ `actionItemCategoriesByOrganization`: (\{ `_id`: `string`; `createdAt`: `string`; `creator`: \{ `_id`: `string`; `firstName`: `string`; `lastName`: `string`; \}; `isDisabled`: `boolean`; `name`: `string`; \} \| \{ `_id`: `undefined`; `createdAt`: `string`; `creator`: \{ `_id`: `undefined`; `firstName`: `string`; `lastName`: `string`; \}; `isDisabled`: `boolean`; `name`: `string`; \})[]; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `where`: \{ `eventId`: `string`; `hasAccepted`: `boolean`; \}; \}; \}; `result`: \{ `data`: \{ `getEventVolunteers`: (\{ `_id`: `string`; `assignments`: `any`[]; `groups`: `object`[]; `hasAccepted`: `boolean`; `hoursVolunteered`: `number`; `user`: \{ `_id`: `string`; `firstName`: `string`; `image`: `any`; `lastName`: `string`; \}; \} \| \{ `_id`: `undefined`; `assignments`: `any`[]; `groups`: `any`[]; `hasAccepted`: `boolean`; `hoursVolunteered`: `number`; `user`: \{ `_id`: `undefined`; `firstName`: `string`; `image`: `any`; `lastName`: `string`; \}; \})[]; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `where`: \{ `eventId`: `undefined`; `hasAccepted`: `boolean`; \}; \}; \}; `result`: \{ `data`: \{ `getEventVolunteers`: `any`[]; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `where`: \{ `eventId`: `string`; \}; \}; \}; `result`: \{ `data`: \{ `getEventVolunteerGroups`: (\{ `_id`: `string`; `assignments`: `any`[]; `createdAt`: `string`; `creator`: \{ `_id`: `string`; `firstName`: `string`; `image`: `any`; `lastName`: `string`; \}; `description`: `string`; `event`: \{ `_id`: `string`; \}; `leader`: \{ `_id`: `string`; `firstName`: `string`; `image`: `any`; `lastName`: `string`; \}; `name`: `string`; `volunteers`: `object`[]; `volunteersRequired`: `number`; \} \| \{ `_id`: `undefined`; `assignments`: `any`[]; `createdAt`: `string`; `creator`: \{ `_id`: `string`; `firstName`: `string`; `image`: `any`; `lastName`: `string`; \}; `description`: `string`; `event`: \{ `_id`: `string`; \}; `leader`: \{ `_id`: `string`; `firstName`: `string`; `image`: `any`; `lastName`: `string`; \}; `name`: `string`; `volunteers`: `any`[]; `volunteersRequired`: `number`; \})[]; \}; \}; \} \| \{ `error`: `Error`; `request`: \{ `query`: `DocumentNode`; `variables`: \{ `actionItemId`: `undefined`; `allottedHours`: `undefined`; `assigneeId`: `undefined`; `assigneeType`: `undefined`; `dDate`: `undefined`; `eventId`: `string`; `isCompleted`: `undefined`; `orderBy`: `any`; `organizationId`: `string`; `postCompletionNotes`: `undefined`; `preCompletionNotes`: `undefined`; `where`: \{ `assigneeName`: `string`; \}; \}; \}; \} \| \{ `error`: `Error`; `request`: \{ `query`: `DocumentNode`; `variables`: \{ `actionItemId`: `string`; `allottedHours`: `undefined`; `assigneeId`: `undefined`; `assigneeType`: `undefined`; `dDate`: `undefined`; `eventId`: `undefined`; `isCompleted`: `undefined`; `orderBy`: `undefined`; `organizationId`: `undefined`; `postCompletionNotes`: `undefined`; `preCompletionNotes`: `undefined`; `where`: `undefined`; \}; \}; \} \| \{ `error`: `Error`; `request`: \{ `query`: `DocumentNode`; `variables`: \{ `actionItemId`: `string`; `allottedHours`: `undefined`; `assigneeId`: `string`; `assigneeType`: `string`; `dDate`: `undefined`; `eventId`: `undefined`; `isCompleted`: `boolean`; `orderBy`: `undefined`; `organizationId`: `undefined`; `postCompletionNotes`: `string`; `preCompletionNotes`: `undefined`; `where`: `undefined`; \}; \}; \} \| \{ `error`: `Error`; `request`: \{ `query`: `DocumentNode`; `variables`: \{ `actionItemId`: `undefined`; `allottedHours`: `any`; `assigneeId`: `string`; `assigneeType`: `string`; `dDate`: `string`; `eventId`: `undefined`; `isCompleted`: `undefined`; `orderBy`: `undefined`; `organizationId`: `undefined`; `postCompletionNotes`: `undefined`; `preCompletionNotes`: `string`; `where`: `undefined`; \}; \}; \} \| \{ `error`: `Error`; `request`: \{ `query`: `DocumentNode`; `variables`: \{ `actionItemId`: `string`; `allottedHours`: `undefined`; `assigneeId`: `string`; `assigneeType`: `string`; `dDate`: `undefined`; `eventId`: `undefined`; `isCompleted`: `undefined`; `orderBy`: `undefined`; `organizationId`: `undefined`; `postCompletionNotes`: `string`; `preCompletionNotes`: `undefined`; `where`: `undefined`; \}; \}; \})[] + +Defined in: [src/screens/OrganizationActionItems/OrganizationActionItem.mocks.ts:412](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/screens/OrganizationActionItems/OrganizationActionItem.mocks.ts#L412) diff --git a/docs/docs/auto-docs/screens/OrganizationActionItems/OrganizationActionItems/functions/default.md b/docs/docs/auto-docs/screens/OrganizationActionItems/OrganizationActionItems/functions/default.md new file mode 100644 index 0000000000..e5e2d429a4 --- /dev/null +++ b/docs/docs/auto-docs/screens/OrganizationActionItems/OrganizationActionItems/functions/default.md @@ -0,0 +1,19 @@ +[Admin Docs](/) + +*** + +# Function: default() + +> **default**(): `JSX.Element` + +Defined in: [src/screens/OrganizationActionItems/OrganizationActionItems.tsx:51](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/screens/OrganizationActionItems/OrganizationActionItems.tsx#L51) + +Component for managing and displaying action items within an organization. + +This component allows users to view, filter, sort, and create action items. It also handles fetching and displaying related data such as action item categories and members. + +## Returns + +`JSX.Element` + +The rendered component. diff --git a/docs/docs/auto-docs/screens/OrganizationActionItems/testObject.mocks/variables/actionItemCategory1.md b/docs/docs/auto-docs/screens/OrganizationActionItems/testObject.mocks/variables/actionItemCategory1.md new file mode 100644 index 0000000000..6a5cb55416 --- /dev/null +++ b/docs/docs/auto-docs/screens/OrganizationActionItems/testObject.mocks/variables/actionItemCategory1.md @@ -0,0 +1,19 @@ +[Admin Docs](/) + +*** + +# Variable: actionItemCategory1 + +> `const` **actionItemCategory1**: `object` + +Defined in: [src/screens/OrganizationActionItems/testObject.mocks.ts:11](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/screens/OrganizationActionItems/testObject.mocks.ts#L11) + +## Type declaration + +### \_id + +> **\_id**: `string` = `'actionItemCategoryId1'` + +### name + +> **name**: `string` = `'Category 1'` diff --git a/docs/docs/auto-docs/screens/OrganizationActionItems/testObject.mocks/variables/actionItemCategory2.md b/docs/docs/auto-docs/screens/OrganizationActionItems/testObject.mocks/variables/actionItemCategory2.md new file mode 100644 index 0000000000..e6040450c9 --- /dev/null +++ b/docs/docs/auto-docs/screens/OrganizationActionItems/testObject.mocks/variables/actionItemCategory2.md @@ -0,0 +1,19 @@ +[Admin Docs](/) + +*** + +# Variable: actionItemCategory2 + +> `const` **actionItemCategory2**: `object` + +Defined in: [src/screens/OrganizationActionItems/testObject.mocks.ts:16](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/screens/OrganizationActionItems/testObject.mocks.ts#L16) + +## Type declaration + +### \_id + +> **\_id**: `string` = `'actionItemCategoryId2'` + +### name + +> **name**: `string` = `'Category 2'` diff --git a/docs/docs/auto-docs/screens/OrganizationActionItems/testObject.mocks/variables/actionItemCategoryListQuery.md b/docs/docs/auto-docs/screens/OrganizationActionItems/testObject.mocks/variables/actionItemCategoryListQuery.md new file mode 100644 index 0000000000..ae376af4a5 --- /dev/null +++ b/docs/docs/auto-docs/screens/OrganizationActionItems/testObject.mocks/variables/actionItemCategoryListQuery.md @@ -0,0 +1,47 @@ +[Admin Docs](/) + +*** + +# Variable: actionItemCategoryListQuery + +> `const` **actionItemCategoryListQuery**: `object` + +Defined in: [src/screens/OrganizationActionItems/testObject.mocks.ts:408](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/screens/OrganizationActionItems/testObject.mocks.ts#L408) + +## Type declaration + +### request + +> **request**: `object` + +#### request.query + +> **query**: `DocumentNode` = `ACTION_ITEM_CATEGORY_LIST` + +#### request.variables + +> **variables**: `object` + +#### request.variables.organizationId + +> **organizationId**: `string` = `'orgId'` + +#### request.variables.where + +> **where**: `object` + +#### request.variables.where.is\_disabled + +> **is\_disabled**: `boolean` = `false` + +### result + +> **result**: `object` + +#### result.data + +> **data**: `object` + +#### result.data.actionItemCategoriesByOrganization + +> **actionItemCategoriesByOrganization**: (\{ `_id`: `string`; `createdAt`: `string`; `creator`: \{ `_id`: `string`; `firstName`: `string`; `lastName`: `string`; \}; `isDisabled`: `boolean`; `name`: `string`; \} \| \{ `_id`: `undefined`; `createdAt`: `string`; `creator`: \{ `_id`: `undefined`; `firstName`: `string`; `lastName`: `string`; \}; `isDisabled`: `boolean`; `name`: `string`; \})[] diff --git a/docs/docs/auto-docs/screens/OrganizationActionItems/testObject.mocks/variables/baseActionItem.md b/docs/docs/auto-docs/screens/OrganizationActionItems/testObject.mocks/variables/baseActionItem.md new file mode 100644 index 0000000000..d2c43b399e --- /dev/null +++ b/docs/docs/auto-docs/screens/OrganizationActionItems/testObject.mocks/variables/baseActionItem.md @@ -0,0 +1,55 @@ +[Admin Docs](/) + +*** + +# Variable: baseActionItem + +> `const` **baseActionItem**: `object` + +Defined in: [src/screens/OrganizationActionItems/testObject.mocks.ts:21](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/screens/OrganizationActionItems/testObject.mocks.ts#L21) + +## Type declaration + +### assigner + +> **assigner**: `object` + +#### assigner.\_id + +> **\_id**: `string` = `'userId'` + +#### assigner.firstName + +> **firstName**: `string` = `'Wilt'` + +#### assigner.image + +> **image**: `any` = `null` + +#### assigner.lastName + +> **lastName**: `string` = `'Shepherd'` + +### creator + +> **creator**: `object` + +#### creator.\_\_typename + +> **\_\_typename**: `string` = `'User'` + +#### creator.\_id + +> **\_id**: `string` = `'userId'` + +#### creator.firstName + +> **firstName**: `string` = `'Wilt'` + +#### creator.image + +> **image**: `any` = `null` + +#### creator.lastName + +> **lastName**: `string` = `'Shepherd'` diff --git a/docs/docs/auto-docs/screens/OrganizationActionItems/testObject.mocks/variables/groupListQuery.md b/docs/docs/auto-docs/screens/OrganizationActionItems/testObject.mocks/variables/groupListQuery.md new file mode 100644 index 0000000000..31158bbef4 --- /dev/null +++ b/docs/docs/auto-docs/screens/OrganizationActionItems/testObject.mocks/variables/groupListQuery.md @@ -0,0 +1,43 @@ +[Admin Docs](/) + +*** + +# Variable: groupListQuery + +> `const` **groupListQuery**: `object`[] + +Defined in: [src/screens/OrganizationActionItems/testObject.mocks.ts:301](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/screens/OrganizationActionItems/testObject.mocks.ts#L301) + +## Type declaration + +### request + +> **request**: `object` + +#### request.query + +> **query**: `DocumentNode` = `EVENT_VOLUNTEER_GROUP_LIST` + +#### request.variables + +> **variables**: `object` + +#### request.variables.where + +> **where**: `object` + +#### request.variables.where.eventId + +> **eventId**: `string` = `'eventId'` + +### result + +> **result**: `object` + +#### result.data + +> **data**: `object` + +#### result.data.getEventVolunteerGroups + +> **getEventVolunteerGroups**: (\{ `_id`: `string`; `assignments`: `any`[]; `createdAt`: `string`; `creator`: \{ `_id`: `string`; `firstName`: `string`; `image`: `any`; `lastName`: `string`; \}; `description`: `string`; `event`: \{ `_id`: `string`; \}; `leader`: \{ `_id`: `string`; `firstName`: `string`; `image`: `any`; `lastName`: `string`; \}; `name`: `string`; `volunteers`: `object`[]; `volunteersRequired`: `number`; \} \| \{ `_id`: `undefined`; `assignments`: `any`[]; `createdAt`: `string`; `creator`: \{ `_id`: `string`; `firstName`: `string`; `image`: `any`; `lastName`: `string`; \}; `description`: `string`; `event`: \{ `_id`: `string`; \}; `leader`: \{ `_id`: `string`; `firstName`: `string`; `image`: `any`; `lastName`: `string`; \}; `name`: `string`; `volunteers`: `any`[]; `volunteersRequired`: `number`; \})[] diff --git a/docs/docs/auto-docs/screens/OrganizationActionItems/testObject.mocks/variables/itemWithGroup.md b/docs/docs/auto-docs/screens/OrganizationActionItems/testObject.mocks/variables/itemWithGroup.md new file mode 100644 index 0000000000..62994578e1 --- /dev/null +++ b/docs/docs/auto-docs/screens/OrganizationActionItems/testObject.mocks/variables/itemWithGroup.md @@ -0,0 +1,9 @@ +[Admin Docs](/) + +*** + +# Variable: itemWithGroup + +> `const` **itemWithGroup**: [`InterfaceActionItemInfo`](../../../../utils/interfaces/interfaces/InterfaceActionItemInfo.md) + +Defined in: [src/screens/OrganizationActionItems/testObject.mocks.ts:143](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/screens/OrganizationActionItems/testObject.mocks.ts#L143) diff --git a/docs/docs/auto-docs/screens/OrganizationActionItems/testObject.mocks/variables/itemWithUser.md b/docs/docs/auto-docs/screens/OrganizationActionItems/testObject.mocks/variables/itemWithUser.md new file mode 100644 index 0000000000..1fac8cdef9 --- /dev/null +++ b/docs/docs/auto-docs/screens/OrganizationActionItems/testObject.mocks/variables/itemWithUser.md @@ -0,0 +1,9 @@ +[Admin Docs](/) + +*** + +# Variable: itemWithUser + +> `const` **itemWithUser**: [`InterfaceActionItemInfo`](../../../../utils/interfaces/interfaces/InterfaceActionItemInfo.md) + +Defined in: [src/screens/OrganizationActionItems/testObject.mocks.ts:97](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/screens/OrganizationActionItems/testObject.mocks.ts#L97) diff --git a/docs/docs/auto-docs/screens/OrganizationActionItems/testObject.mocks/variables/itemWithUserImage.md b/docs/docs/auto-docs/screens/OrganizationActionItems/testObject.mocks/variables/itemWithUserImage.md new file mode 100644 index 0000000000..d08656f3eb --- /dev/null +++ b/docs/docs/auto-docs/screens/OrganizationActionItems/testObject.mocks/variables/itemWithUserImage.md @@ -0,0 +1,9 @@ +[Admin Docs](/) + +*** + +# Variable: itemWithUserImage + +> `const` **itemWithUserImage**: [`InterfaceActionItemInfo`](../../../../utils/interfaces/interfaces/InterfaceActionItemInfo.md) + +Defined in: [src/screens/OrganizationActionItems/testObject.mocks.ts:120](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/screens/OrganizationActionItems/testObject.mocks.ts#L120) diff --git a/docs/docs/auto-docs/screens/OrganizationActionItems/testObject.mocks/variables/itemWithVolunteer.md b/docs/docs/auto-docs/screens/OrganizationActionItems/testObject.mocks/variables/itemWithVolunteer.md new file mode 100644 index 0000000000..c8fcc44852 --- /dev/null +++ b/docs/docs/auto-docs/screens/OrganizationActionItems/testObject.mocks/variables/itemWithVolunteer.md @@ -0,0 +1,9 @@ +[Admin Docs](/) + +*** + +# Variable: itemWithVolunteer + +> `const` **itemWithVolunteer**: [`InterfaceActionItemInfo`](../../../../utils/interfaces/interfaces/InterfaceActionItemInfo.md) + +Defined in: [src/screens/OrganizationActionItems/testObject.mocks.ts:37](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/screens/OrganizationActionItems/testObject.mocks.ts#L37) diff --git a/docs/docs/auto-docs/screens/OrganizationActionItems/testObject.mocks/variables/itemWithVolunteerImage.md b/docs/docs/auto-docs/screens/OrganizationActionItems/testObject.mocks/variables/itemWithVolunteerImage.md new file mode 100644 index 0000000000..db248020a4 --- /dev/null +++ b/docs/docs/auto-docs/screens/OrganizationActionItems/testObject.mocks/variables/itemWithVolunteerImage.md @@ -0,0 +1,9 @@ +[Admin Docs](/) + +*** + +# Variable: itemWithVolunteerImage + +> `const` **itemWithVolunteerImage**: [`InterfaceActionItemInfo`](../../../../utils/interfaces/interfaces/InterfaceActionItemInfo.md) + +Defined in: [src/screens/OrganizationActionItems/testObject.mocks.ts:67](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/screens/OrganizationActionItems/testObject.mocks.ts#L67) diff --git a/docs/docs/auto-docs/screens/OrganizationActionItems/testObject.mocks/variables/memberListQuery.md b/docs/docs/auto-docs/screens/OrganizationActionItems/testObject.mocks/variables/memberListQuery.md new file mode 100644 index 0000000000..6495333d0e --- /dev/null +++ b/docs/docs/auto-docs/screens/OrganizationActionItems/testObject.mocks/variables/memberListQuery.md @@ -0,0 +1,39 @@ +[Admin Docs](/) + +*** + +# Variable: memberListQuery + +> `const` **memberListQuery**: `object` + +Defined in: [src/screens/OrganizationActionItems/testObject.mocks.ts:184](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/screens/OrganizationActionItems/testObject.mocks.ts#L184) + +## Type declaration + +### request + +> **request**: `object` + +#### request.query + +> **query**: `DocumentNode` = `MEMBERS_LIST` + +#### request.variables + +> **variables**: `object` + +#### request.variables.id + +> **id**: `string` = `'orgId'` + +### result + +> **result**: `object` + +#### result.data + +> **data**: `object` + +#### result.data.organizations + +> **organizations**: `object`[] diff --git a/docs/docs/auto-docs/screens/OrganizationActionItems/testObject.mocks/variables/volunteerListQuery.md b/docs/docs/auto-docs/screens/OrganizationActionItems/testObject.mocks/variables/volunteerListQuery.md new file mode 100644 index 0000000000..9ec7da3712 --- /dev/null +++ b/docs/docs/auto-docs/screens/OrganizationActionItems/testObject.mocks/variables/volunteerListQuery.md @@ -0,0 +1,9 @@ +[Admin Docs](/) + +*** + +# Variable: volunteerListQuery + +> `const` **volunteerListQuery**: (\{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `where`: \{ `eventId`: `string`; `hasAccepted`: `boolean`; \}; \}; \}; `result`: \{ `data`: \{ `getEventVolunteers`: (\{ `_id`: `string`; `assignments`: `any`[]; `groups`: `object`[]; `hasAccepted`: `boolean`; `hoursVolunteered`: `number`; `user`: \{ `_id`: `string`; `firstName`: `string`; `image`: `any`; `lastName`: `string`; \}; \} \| \{ `_id`: `undefined`; `assignments`: `any`[]; `groups`: `any`[]; `hasAccepted`: `boolean`; `hoursVolunteered`: `number`; `user`: \{ `_id`: `undefined`; `firstName`: `string`; `image`: `any`; `lastName`: `string`; \}; \})[]; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `where`: \{ `eventId`: `undefined`; `hasAccepted`: `boolean`; \}; \}; \}; `result`: \{ `data`: \{ `getEventVolunteers`: `any`[]; \}; \}; \})[] + +Defined in: [src/screens/OrganizationActionItems/testObject.mocks.ts:228](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/screens/OrganizationActionItems/testObject.mocks.ts#L228) diff --git a/docs/docs/auto-docs/screens/OrganizationDashboard/OrganizationDashboard/functions/default.md b/docs/docs/auto-docs/screens/OrganizationDashboard/OrganizationDashboard/functions/default.md new file mode 100644 index 0000000000..c1e8d22aff --- /dev/null +++ b/docs/docs/auto-docs/screens/OrganizationDashboard/OrganizationDashboard/functions/default.md @@ -0,0 +1,19 @@ +[Admin Docs](/) + +*** + +# Function: default() + +> **default**(): `JSX.Element` + +Defined in: [src/screens/OrganizationDashboard/OrganizationDashboard.tsx:44](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/screens/OrganizationDashboard/OrganizationDashboard.tsx#L44) + +Component for displaying the organization dashboard. + +This component provides an overview of various statistics and information related to an organization, including members, admins, posts, events, blocked users, and membership requests. It also displays upcoming events and latest posts. + +## Returns + +`JSX.Element` + +The rendered component. diff --git a/docs/docs/auto-docs/screens/OrganizationDashboard/OrganizationDashboardMocks/variables/EMPTY_MOCKS.md b/docs/docs/auto-docs/screens/OrganizationDashboard/OrganizationDashboardMocks/variables/EMPTY_MOCKS.md new file mode 100644 index 0000000000..149f370f58 --- /dev/null +++ b/docs/docs/auto-docs/screens/OrganizationDashboard/OrganizationDashboardMocks/variables/EMPTY_MOCKS.md @@ -0,0 +1,9 @@ +[Admin Docs](/) + +*** + +# Variable: EMPTY\_MOCKS + +> `const` **EMPTY\_MOCKS**: (\{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `first`: `undefined`; `id`: `string`; `organization_id`: `undefined`; `orgId`: `undefined`; `where`: `undefined`; \}; \}; `result`: \{ `data`: \{ `eventsByOrganizationConnection`: `undefined`; `getVolunteerRanks`: `undefined`; `organizations`: `object`[]; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `first`: `number`; `id`: `string`; `organization_id`: `undefined`; `orgId`: `undefined`; `where`: `undefined`; \}; \}; `result`: \{ `data`: \{ `eventsByOrganizationConnection`: `undefined`; `getVolunteerRanks`: `undefined`; `organizations`: `object`[]; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `first`: `undefined`; `id`: `undefined`; `organization_id`: `string`; `orgId`: `undefined`; `where`: `undefined`; \}; \}; `result`: \{ `data`: \{ `eventsByOrganizationConnection`: `any`[]; `getVolunteerRanks`: `undefined`; `organizations`: `undefined`; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `first`: `undefined`; `id`: `undefined`; `organization_id`: `undefined`; `orgId`: `string`; `where`: \{ `limit`: `number`; `orderBy`: `string`; `timeFrame`: `string`; \}; \}; \}; `result`: \{ `data`: \{ `eventsByOrganizationConnection`: `undefined`; `getVolunteerRanks`: `any`[]; `organizations`: `undefined`; \}; \}; \})[] + +Defined in: [src/screens/OrganizationDashboard/OrganizationDashboardMocks.ts:329](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/screens/OrganizationDashboard/OrganizationDashboardMocks.ts#L329) diff --git a/docs/docs/auto-docs/screens/OrganizationDashboard/OrganizationDashboardMocks/variables/ERROR_MOCKS.md b/docs/docs/auto-docs/screens/OrganizationDashboard/OrganizationDashboardMocks/variables/ERROR_MOCKS.md new file mode 100644 index 0000000000..31a4c4a6b5 --- /dev/null +++ b/docs/docs/auto-docs/screens/OrganizationDashboard/OrganizationDashboardMocks/variables/ERROR_MOCKS.md @@ -0,0 +1,9 @@ +[Admin Docs](/) + +*** + +# Variable: ERROR\_MOCKS + +> `const` **ERROR\_MOCKS**: (\{ `error`: `Error`; `request`: \{ `query`: `DocumentNode`; `variables`: \{ `first`: `undefined`; `id`: `string`; `organization_id`: `undefined`; `orgId`: `undefined`; `where`: `undefined`; \}; \}; \} \| \{ `error`: `Error`; `request`: \{ `query`: `DocumentNode`; `variables`: \{ `first`: `number`; `id`: `string`; `organization_id`: `undefined`; `orgId`: `undefined`; `where`: `undefined`; \}; \}; \} \| \{ `error`: `Error`; `request`: \{ `query`: `DocumentNode`; `variables`: \{ `first`: `undefined`; `id`: `undefined`; `organization_id`: `string`; `orgId`: `undefined`; `where`: `undefined`; \}; \}; \} \| \{ `error`: `Error`; `request`: \{ `query`: `DocumentNode`; `variables`: \{ `first`: `undefined`; `id`: `undefined`; `organization_id`: `undefined`; `orgId`: `string`; `where`: \{ `limit`: `number`; `orderBy`: `string`; `timeFrame`: `string`; \}; \}; \}; \})[] + +Defined in: [src/screens/OrganizationDashboard/OrganizationDashboardMocks.ts:448](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/screens/OrganizationDashboard/OrganizationDashboardMocks.ts#L448) diff --git a/docs/docs/auto-docs/screens/OrganizationDashboard/OrganizationDashboardMocks/variables/MOCKS.md b/docs/docs/auto-docs/screens/OrganizationDashboard/OrganizationDashboardMocks/variables/MOCKS.md new file mode 100644 index 0000000000..8850134eaa --- /dev/null +++ b/docs/docs/auto-docs/screens/OrganizationDashboard/OrganizationDashboardMocks/variables/MOCKS.md @@ -0,0 +1,9 @@ +[Admin Docs](/) + +*** + +# Variable: MOCKS + +> `const` **MOCKS**: (\{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `first`: `undefined`; `id`: `string`; `organization_id`: `undefined`; `orgId`: `undefined`; `where`: `undefined`; \}; \}; `result`: \{ `data`: \{ `eventsByOrganizationConnection`: `undefined`; `getVolunteerRanks`: `undefined`; `organizations`: `object`[]; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `first`: `number`; `id`: `string`; `organization_id`: `undefined`; `orgId`: `undefined`; `where`: `undefined`; \}; \}; `result`: \{ `data`: \{ `eventsByOrganizationConnection`: `undefined`; `getVolunteerRanks`: `undefined`; `organizations`: `object`[]; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `first`: `undefined`; `id`: `undefined`; `organization_id`: `string`; `orgId`: `undefined`; `where`: `undefined`; \}; \}; `result`: \{ `data`: \{ `eventsByOrganizationConnection`: `object`[]; `getVolunteerRanks`: `undefined`; `organizations`: `undefined`; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `first`: `undefined`; `id`: `undefined`; `organization_id`: `undefined`; `orgId`: `string`; `where`: \{ `limit`: `number`; `orderBy`: `string`; `timeFrame`: `string`; \}; \}; \}; `result`: \{ `data`: \{ `eventsByOrganizationConnection`: `undefined`; `getVolunteerRanks`: `object`[]; `organizations`: `undefined`; \}; \}; \})[] + +Defined in: [src/screens/OrganizationDashboard/OrganizationDashboardMocks.ts:8](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/screens/OrganizationDashboard/OrganizationDashboardMocks.ts#L8) diff --git a/docs/docs/auto-docs/screens/OrganizationEvents/OrganizationEvents/enumerations/ViewType.md b/docs/docs/auto-docs/screens/OrganizationEvents/OrganizationEvents/enumerations/ViewType.md new file mode 100644 index 0000000000..263524eef6 --- /dev/null +++ b/docs/docs/auto-docs/screens/OrganizationEvents/OrganizationEvents/enumerations/ViewType.md @@ -0,0 +1,31 @@ +[Admin Docs](/) + +*** + +# Enumeration: ViewType + +Defined in: [src/screens/OrganizationEvents/OrganizationEvents.tsx:37](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/screens/OrganizationEvents/OrganizationEvents.tsx#L37) + +## Enumeration Members + +### DAY + +> **DAY**: `"Day"` + +Defined in: [src/screens/OrganizationEvents/OrganizationEvents.tsx:38](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/screens/OrganizationEvents/OrganizationEvents.tsx#L38) + +*** + +### MONTH + +> **MONTH**: `"Month View"` + +Defined in: [src/screens/OrganizationEvents/OrganizationEvents.tsx:39](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/screens/OrganizationEvents/OrganizationEvents.tsx#L39) + +*** + +### YEAR + +> **YEAR**: `"Year View"` + +Defined in: [src/screens/OrganizationEvents/OrganizationEvents.tsx:40](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/screens/OrganizationEvents/OrganizationEvents.tsx#L40) diff --git a/docs/docs/auto-docs/screens/OrganizationEvents/OrganizationEvents/functions/default.md b/docs/docs/auto-docs/screens/OrganizationEvents/OrganizationEvents/functions/default.md new file mode 100644 index 0000000000..d9c709a9fc --- /dev/null +++ b/docs/docs/auto-docs/screens/OrganizationEvents/OrganizationEvents/functions/default.md @@ -0,0 +1,25 @@ +[Admin Docs](/) + +*** + +# Function: default() + +> **default**(): `JSX.Element` + +Defined in: [src/screens/OrganizationEvents/OrganizationEvents.tsx:56](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/screens/OrganizationEvents/OrganizationEvents.tsx#L56) + +Organization Events Page Component to display the events of an organization +and create new events for the organization by the admin or superadmin user. +The component uses the EventCalendar component to display the events and EventHeader component + to display the view type and create event button. + The component uses the RecurrenceOptions component to display the recurrence options for the event. + The component uses the CREATE_EVENT_MUTATION mutation to create a new event for the organization. + The component uses the ORGANIZATION_EVENT_CONNECTION_LIST and ORGANIZATIONS_LIST queries to fetch the events + and organization details. + The component uses the useLocalStorage hook to get the user details from the local storage. + +## Returns + +`JSX.Element` + +JSX.Element to display the Organization Events Page diff --git a/docs/docs/auto-docs/screens/OrganizationEvents/OrganizationEventsMocks/variables/MOCKS.md b/docs/docs/auto-docs/screens/OrganizationEvents/OrganizationEventsMocks/variables/MOCKS.md new file mode 100644 index 0000000000..d58b01cef6 --- /dev/null +++ b/docs/docs/auto-docs/screens/OrganizationEvents/OrganizationEventsMocks/variables/MOCKS.md @@ -0,0 +1,9 @@ +[Admin Docs](/) + +*** + +# Variable: MOCKS + +> `const` **MOCKS**: (\{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `allDay`: `undefined`; `count`: `undefined`; `description`: `undefined`; `description_contains`: `string`; `endDate`: `undefined`; `endTime`: `undefined`; `frequency`: `undefined`; `interval`: `undefined`; `isPublic`: `undefined`; `isRegisterable`: `undefined`; `location`: `undefined`; `location_contains`: `string`; `organization_id`: `any`; `organizationId`: `undefined`; `recurrenceEndDate`: `undefined`; `recurrenceStartDate`: `undefined`; `recurring`: `undefined`; `startDate`: `undefined`; `startTime`: `undefined`; `title`: `undefined`; `title_contains`: `string`; `weekDayOccurenceInMonth`: `undefined`; `weekDays`: `undefined`; \}; \}; `result`: \{ `data`: \{ `createEvent`: `undefined`; `eventsByOrganizationConnection`: `object`[]; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `allDay`: `undefined`; `count`: `undefined`; `description`: `undefined`; `description_contains`: `string`; `endDate`: `undefined`; `endTime`: `undefined`; `frequency`: `undefined`; `interval`: `undefined`; `isPublic`: `undefined`; `isRegisterable`: `undefined`; `location`: `undefined`; `location_contains`: `string`; `organization_id`: `any`; `organizationId`: `undefined`; `recurrenceEndDate`: `undefined`; `recurrenceStartDate`: `undefined`; `recurring`: `undefined`; `startDate`: `undefined`; `startTime`: `undefined`; `title`: `undefined`; `title_contains`: `string`; `weekDayOccurenceInMonth`: `undefined`; `weekDays`: `undefined`; \}; \}; `result`: \{ `data`: \{ `createEvent`: `undefined`; `eventsByOrganizationConnection`: `object`[]; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `allDay`: `boolean`; `count`: `undefined`; `description`: `string`; `description_contains`: `undefined`; `endDate`: `string`; `endTime`: `undefined`; `frequency`: `undefined`; `interval`: `undefined`; `isPublic`: `boolean`; `isRegisterable`: `boolean`; `location`: `string`; `location_contains`: `undefined`; `organization_id`: `undefined`; `organizationId`: `any`; `recurrenceEndDate`: `undefined`; `recurrenceStartDate`: `undefined`; `recurring`: `boolean`; `startDate`: `string`; `startTime`: `undefined`; `title`: `string`; `title_contains`: `undefined`; `weekDayOccurenceInMonth`: `undefined`; `weekDays`: `undefined`; \}; \}; `result`: \{ `data`: \{ `createEvent`: \{ `_id`: `string`; \}; `eventsByOrganizationConnection`: `undefined`; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `allDay`: `boolean`; `count`: `undefined`; `description`: `string`; `description_contains`: `undefined`; `endDate`: `string`; `endTime`: `string`; `frequency`: `undefined`; `interval`: `undefined`; `isPublic`: `boolean`; `isRegisterable`: `boolean`; `location`: `string`; `location_contains`: `undefined`; `organization_id`: `undefined`; `organizationId`: `any`; `recurrenceEndDate`: `undefined`; `recurrenceStartDate`: `undefined`; `recurring`: `boolean`; `startDate`: `string`; `startTime`: `string`; `title`: `string`; `title_contains`: `undefined`; `weekDayOccurenceInMonth`: `undefined`; `weekDays`: `undefined`; \}; \}; `result`: \{ `data`: \{ `createEvent`: \{ `_id`: `string`; \}; `eventsByOrganizationConnection`: `undefined`; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `allDay`: `boolean`; `count`: `undefined`; `description`: `string`; `description_contains`: `undefined`; `endDate`: `string`; `endTime`: `string`; `frequency`: `string`; `interval`: `number`; `isPublic`: `boolean`; `isRegisterable`: `boolean`; `location`: `string`; `location_contains`: `undefined`; `organization_id`: `undefined`; `organizationId`: `any`; `recurrenceEndDate`: `any`; `recurrenceStartDate`: `string`; `recurring`: `boolean`; `startDate`: `string`; `startTime`: `string`; `title`: `string`; `title_contains`: `undefined`; `weekDayOccurenceInMonth`: `undefined`; `weekDays`: `undefined`; \}; \}; `result`: \{ `data`: \{ `createEvent`: \{ `_id`: `string`; \}; `eventsByOrganizationConnection`: `undefined`; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `allDay`: `boolean`; `count`: `undefined`; `description`: `string`; `description_contains`: `undefined`; `endDate`: `string`; `endTime`: `string`; `frequency`: `string`; `interval`: `number`; `isPublic`: `boolean`; `isRegisterable`: `boolean`; `location`: `string`; `location_contains`: `undefined`; `organization_id`: `undefined`; `organizationId`: `any`; `recurrenceEndDate`: `any`; `recurrenceStartDate`: `string`; `recurring`: `boolean`; `startDate`: `string`; `startTime`: `string`; `title`: `string`; `title_contains`: `undefined`; `weekDayOccurenceInMonth`: `undefined`; `weekDays`: `string`[]; \}; \}; `result`: \{ `data`: \{ `createEvent`: \{ `_id`: `string`; \}; `eventsByOrganizationConnection`: `undefined`; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `allDay`: `boolean`; `count`: `undefined`; `description`: `string`; `description_contains`: `undefined`; `endDate`: `string`; `endTime`: `undefined`; `frequency`: `string`; `interval`: `number`; `isPublic`: `boolean`; `isRegisterable`: `boolean`; `location`: `string`; `location_contains`: `undefined`; `organization_id`: `undefined`; `organizationId`: `any`; `recurrenceEndDate`: `string`; `recurrenceStartDate`: `string`; `recurring`: `boolean`; `startDate`: `string`; `startTime`: `undefined`; `title`: `string`; `title_contains`: `undefined`; `weekDayOccurenceInMonth`: `number`; `weekDays`: `string`[]; \}; \}; `result`: \{ `data`: \{ `createEvent`: \{ `_id`: `string`; \}; `eventsByOrganizationConnection`: `undefined`; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `allDay`: `boolean`; `count`: `number`; `description`: `string`; `description_contains`: `undefined`; `endDate`: `string`; `endTime`: `undefined`; `frequency`: `string`; `interval`: `number`; `isPublic`: `boolean`; `isRegisterable`: `boolean`; `location`: `string`; `location_contains`: `undefined`; `organization_id`: `undefined`; `organizationId`: `any`; `recurrenceEndDate`: `any`; `recurrenceStartDate`: `string`; `recurring`: `boolean`; `startDate`: `string`; `startTime`: `undefined`; `title`: `string`; `title_contains`: `undefined`; `weekDayOccurenceInMonth`: `undefined`; `weekDays`: `undefined`; \}; \}; `result`: \{ `data`: \{ `createEvent`: \{ `_id`: `string`; \}; `eventsByOrganizationConnection`: `undefined`; \}; \}; \})[] + +Defined in: [src/screens/OrganizationEvents/OrganizationEventsMocks.ts:4](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/screens/OrganizationEvents/OrganizationEventsMocks.ts#L4) diff --git a/docs/docs/auto-docs/screens/OrganizationFundCampaign/CampaignModal/functions/default.md b/docs/docs/auto-docs/screens/OrganizationFundCampaign/CampaignModal/functions/default.md new file mode 100644 index 0000000000..fd715e0bd5 --- /dev/null +++ b/docs/docs/auto-docs/screens/OrganizationFundCampaign/CampaignModal/functions/default.md @@ -0,0 +1,35 @@ +[Admin Docs](/) + +*** + +# Function: default() + +> **default**(`props`, `deprecatedLegacyContext`?): `ReactNode` + +Defined in: [src/screens/OrganizationFundCampaign/CampaignModal.tsx:44](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/screens/OrganizationFundCampaign/CampaignModal.tsx#L44) + +Modal component for creating or editing a campaign. + +## Parameters + +### props + +[`InterfaceCampaignModal`](../interfaces/InterfaceCampaignModal.md) + +The props for the CampaignModal component. + +### deprecatedLegacyContext? + +`any` + +**Deprecated** + +**See** + +[React Docs](https://legacy.reactjs.org/docs/legacy-context.html#referencing-context-in-lifecycle-methods) + +## Returns + +`ReactNode` + +JSX.Element diff --git a/docs/docs/auto-docs/screens/OrganizationFundCampaign/CampaignModal/interfaces/InterfaceCampaignModal.md b/docs/docs/auto-docs/screens/OrganizationFundCampaign/CampaignModal/interfaces/InterfaceCampaignModal.md new file mode 100644 index 0000000000..539e6248fc --- /dev/null +++ b/docs/docs/auto-docs/screens/OrganizationFundCampaign/CampaignModal/interfaces/InterfaceCampaignModal.md @@ -0,0 +1,73 @@ +[Admin Docs](/) + +*** + +# Interface: InterfaceCampaignModal + +Defined in: [src/screens/OrganizationFundCampaign/CampaignModal.tsx:28](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/screens/OrganizationFundCampaign/CampaignModal.tsx#L28) + +Props for the CampaignModal component. + +## Properties + +### campaign + +> **campaign**: [`InterfaceCampaignInfo`](../../../../utils/interfaces/interfaces/InterfaceCampaignInfo.md) + +Defined in: [src/screens/OrganizationFundCampaign/CampaignModal.tsx:33](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/screens/OrganizationFundCampaign/CampaignModal.tsx#L33) + +*** + +### fundId + +> **fundId**: `string` + +Defined in: [src/screens/OrganizationFundCampaign/CampaignModal.tsx:31](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/screens/OrganizationFundCampaign/CampaignModal.tsx#L31) + +*** + +### hide() + +> **hide**: () => `void` + +Defined in: [src/screens/OrganizationFundCampaign/CampaignModal.tsx:30](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/screens/OrganizationFundCampaign/CampaignModal.tsx#L30) + +#### Returns + +`void` + +*** + +### isOpen + +> **isOpen**: `boolean` + +Defined in: [src/screens/OrganizationFundCampaign/CampaignModal.tsx:29](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/screens/OrganizationFundCampaign/CampaignModal.tsx#L29) + +*** + +### mode + +> **mode**: `"create"` \| `"edit"` + +Defined in: [src/screens/OrganizationFundCampaign/CampaignModal.tsx:35](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/screens/OrganizationFundCampaign/CampaignModal.tsx#L35) + +*** + +### orgId + +> **orgId**: `string` + +Defined in: [src/screens/OrganizationFundCampaign/CampaignModal.tsx:32](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/screens/OrganizationFundCampaign/CampaignModal.tsx#L32) + +*** + +### refetchCampaign() + +> **refetchCampaign**: () => `void` + +Defined in: [src/screens/OrganizationFundCampaign/CampaignModal.tsx:34](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/screens/OrganizationFundCampaign/CampaignModal.tsx#L34) + +#### Returns + +`void` diff --git a/docs/docs/auto-docs/screens/OrganizationFundCampaign/OrganizationFundCampagins/functions/default.md b/docs/docs/auto-docs/screens/OrganizationFundCampaign/OrganizationFundCampagins/functions/default.md new file mode 100644 index 0000000000..5fd89adb38 --- /dev/null +++ b/docs/docs/auto-docs/screens/OrganizationFundCampaign/OrganizationFundCampagins/functions/default.md @@ -0,0 +1,43 @@ +[Admin Docs](/) + +*** + +# Function: default() + +> **default**(): `Element` + +Defined in: [src/screens/OrganizationFundCampaign/OrganizationFundCampagins.tsx:78](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/screens/OrganizationFundCampaign/OrganizationFundCampagins.tsx#L78) + +`orgFundCampaign` component displays a list of fundraising campaigns for a specific fund within an organization. +It allows users to search, sort, view and edit campaigns. + +### Functionality +- Displays a data grid with campaigns information, including their names, start and end dates, funding goals, and actions. +- Provides search functionality to filter campaigns by name. +- Offers sorting options based on funding goal and end date. +- Opens modals for creating or editing campaigns. + +### State +- `campaign`: The current campaign being edited or deleted. +- `searchTerm`: The term used for searching campaigns by name. +- `sortBy`: The current sorting criteria for campaigns. +- `modalState`: An object indicating the visibility of different modals (`same` for create/edit). +- `campaignModalMode`: Determines if the modal is in 'edit' or 'create' mode. + +### Methods +- `handleOpenModal(campaign: InterfaceCampaignInfo | null, mode: 'edit' | 'create')`: Opens the modal for creating or editing a campaign. +- `handleClick(campaignId: string)`: Navigates to the pledge details page for a specific campaign. + +### GraphQL Queries +- Uses `FUND_CAMPAIGN` query to fetch the list of campaigns based on the provided fund ID, search term, and sorting criteria. + +### Rendering +- Renders a `DataGrid` component with campaigns information. +- Displays modals for creating and editing campaigns. +- Shows error and loading states using `Loader` and error message components. + +## Returns + +`Element` + +The rendered component including breadcrumbs, search and filter controls, data grid, and modals. diff --git a/docs/docs/auto-docs/screens/OrganizationFundCampaign/OrganizationFundCampaignMocks/variables/EMPTY_MOCKS.md b/docs/docs/auto-docs/screens/OrganizationFundCampaign/OrganizationFundCampaignMocks/variables/EMPTY_MOCKS.md new file mode 100644 index 0000000000..c9f5757d70 --- /dev/null +++ b/docs/docs/auto-docs/screens/OrganizationFundCampaign/OrganizationFundCampaignMocks/variables/EMPTY_MOCKS.md @@ -0,0 +1,63 @@ +[Admin Docs](/) + +*** + +# Variable: EMPTY\_MOCKS + +> `const` **EMPTY\_MOCKS**: `object`[] + +Defined in: [src/screens/OrganizationFundCampaign/OrganizationFundCampaignMocks.ts:300](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/screens/OrganizationFundCampaign/OrganizationFundCampaignMocks.ts#L300) + +## Type declaration + +### request + +> **request**: `object` + +#### request.query + +> **query**: `DocumentNode` = `FUND_CAMPAIGN` + +#### request.variables + +> **variables**: `object` + +#### request.variables.id + +> **id**: `string` = `'fundId'` + +#### request.variables.orderBy + +> **orderBy**: `any` = `null` + +#### request.variables.where + +> **where**: `object` + +#### request.variables.where.name\_contains + +> **name\_contains**: `string` = `''` + +### result + +> **result**: `object` + +#### result.data + +> **data**: `object` + +#### result.data.getFundById + +> **getFundById**: `object` + +#### result.data.getFundById.campaigns + +> **campaigns**: `any`[] = `[]` + +#### result.data.getFundById.isArchived + +> **isArchived**: `boolean` = `false` + +#### result.data.getFundById.name + +> **name**: `string` = `'Fund 1'` diff --git a/docs/docs/auto-docs/screens/OrganizationFundCampaign/OrganizationFundCampaignMocks/variables/MOCKS.md b/docs/docs/auto-docs/screens/OrganizationFundCampaign/OrganizationFundCampaignMocks/variables/MOCKS.md new file mode 100644 index 0000000000..24245db1a0 --- /dev/null +++ b/docs/docs/auto-docs/screens/OrganizationFundCampaign/OrganizationFundCampaignMocks/variables/MOCKS.md @@ -0,0 +1,9 @@ +[Admin Docs](/) + +*** + +# Variable: MOCKS + +> `const` **MOCKS**: (\{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `currency`: `undefined`; `endDate`: `undefined`; `fundId`: `undefined`; `fundingGoal`: `undefined`; `id`: `string`; `name`: `undefined`; `orderBy`: `string`; `organizationId`: `undefined`; `startDate`: `undefined`; `where`: \{ `name_contains`: `string`; \}; \}; \}; `result`: \{ `data`: \{ `createFundraisingCampaign`: `undefined`; `getFundById`: \{ `campaigns`: `object`[]; `isArchived`: `boolean`; `name`: `string`; \}; `updateFundraisingCampaign`: `undefined`; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `currency`: `string`; `endDate`: `string`; `fundId`: `string`; `fundingGoal`: `number`; `id`: `undefined`; `name`: `string`; `orderBy`: `undefined`; `organizationId`: `string`; `startDate`: `string`; `where`: `undefined`; \}; \}; `result`: \{ `data`: \{ `createFundraisingCampaign`: \{ `_id`: `string`; \}; `getFundById`: `undefined`; `updateFundraisingCampaign`: `undefined`; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `currency`: `undefined`; `endDate`: `string`; `fundId`: `undefined`; `fundingGoal`: `number`; `id`: `string`; `name`: `string`; `orderBy`: `undefined`; `organizationId`: `undefined`; `startDate`: `string`; `where`: `undefined`; \}; \}; `result`: \{ `data`: \{ `createFundraisingCampaign`: `undefined`; `getFundById`: `undefined`; `updateFundraisingCampaign`: \{ `_id`: `string`; \}; \}; \}; \})[] + +Defined in: [src/screens/OrganizationFundCampaign/OrganizationFundCampaignMocks.ts:7](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/screens/OrganizationFundCampaign/OrganizationFundCampaignMocks.ts#L7) diff --git a/docs/docs/auto-docs/screens/OrganizationFundCampaign/OrganizationFundCampaignMocks/variables/MOCK_ERROR.md b/docs/docs/auto-docs/screens/OrganizationFundCampaign/OrganizationFundCampaignMocks/variables/MOCK_ERROR.md new file mode 100644 index 0000000000..26cb900b5d --- /dev/null +++ b/docs/docs/auto-docs/screens/OrganizationFundCampaign/OrganizationFundCampaignMocks/variables/MOCK_ERROR.md @@ -0,0 +1,9 @@ +[Admin Docs](/) + +*** + +# Variable: MOCK\_ERROR + +> `const` **MOCK\_ERROR**: (\{ `error`: `Error`; `request`: \{ `query`: `DocumentNode`; `variables`: \{ `currency`: `undefined`; `endDate`: `undefined`; `fundId`: `undefined`; `fundingGoal`: `undefined`; `id`: `string`; `name`: `undefined`; `orderBy`: `any`; `organizationId`: `undefined`; `startDate`: `undefined`; `where`: \{ `name_contains`: `string`; \}; \}; \}; \} \| \{ `error`: `Error`; `request`: \{ `query`: `DocumentNode`; `variables`: \{ `currency`: `string`; `endDate`: `string`; `fundId`: `string`; `fundingGoal`: `number`; `id`: `undefined`; `name`: `string`; `orderBy`: `undefined`; `organizationId`: `string`; `startDate`: `string`; `where`: `undefined`; \}; \}; \} \| \{ `error`: `Error`; `request`: \{ `query`: `DocumentNode`; `variables`: \{ `currency`: `undefined`; `endDate`: `string`; `fundId`: `undefined`; `fundingGoal`: `number`; `id`: `string`; `name`: `string`; `orderBy`: `undefined`; `organizationId`: `undefined`; `startDate`: `string`; `where`: `undefined`; \}; \}; \})[] + +Defined in: [src/screens/OrganizationFundCampaign/OrganizationFundCampaignMocks.ts:258](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/screens/OrganizationFundCampaign/OrganizationFundCampaignMocks.ts#L258) diff --git a/docs/docs/auto-docs/screens/OrganizationFunds/FundModal/functions/default.md b/docs/docs/auto-docs/screens/OrganizationFunds/FundModal/functions/default.md new file mode 100644 index 0000000000..fea0fb1c67 --- /dev/null +++ b/docs/docs/auto-docs/screens/OrganizationFunds/FundModal/functions/default.md @@ -0,0 +1,57 @@ +[Admin Docs](/) + +*** + +# Function: default() + +> **default**(`props`, `deprecatedLegacyContext`?): `ReactNode` + +Defined in: [src/screens/OrganizationFunds/FundModal.tsx:52](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/screens/OrganizationFunds/FundModal.tsx#L52) + +`FundModal` component provides a modal dialog for creating or editing a fund. +It allows users to input fund details and submit them to the server. + +This component handles both the creation of new funds and the editing of existing funds, +based on the `mode` prop. It displays a form with fields for the fund's name, description, +and other relevant details. Upon submission, it interacts with the GraphQL API to save +or update the fund details and triggers a refetch of the fund data. + +### Props +- `isOpen`: A boolean indicating whether the modal is open or closed. +- `hide`: A function to close the modal. +- `refetchFunds`: A function to refetch the fund list after a successful operation. +- `fund`: The current fund object being edited or `null` if creating a new fund. +- `orgId`: The ID of the organization to which the fund belongs. +- `mode`: The mode of the modal, either 'edit' or 'create'. + +### State +- `name`: The name of the fund. +- `description`: The description of the fund. +- `amount`: The amount associated with the fund. +- `status`: The status of the fund (e.g., active, archived). + +### Methods +- `handleSubmit()`: Handles form submission, creates or updates the fund, and triggers a refetch of the fund list. +- `handleChange(event: React.ChangeEvent)`: Updates the state based on user input. + +## Parameters + +### props + +[`InterfaceFundModal`](../interfaces/InterfaceFundModal.md) + +### deprecatedLegacyContext? + +`any` + +**Deprecated** + +**See** + +[React Docs](https://legacy.reactjs.org/docs/legacy-context.html#referencing-context-in-lifecycle-methods) + +## Returns + +`ReactNode` + +The rendered modal dialog. diff --git a/docs/docs/auto-docs/screens/OrganizationFunds/FundModal/interfaces/InterfaceFundModal.md b/docs/docs/auto-docs/screens/OrganizationFunds/FundModal/interfaces/InterfaceFundModal.md new file mode 100644 index 0000000000..0ad0ee6a08 --- /dev/null +++ b/docs/docs/auto-docs/screens/OrganizationFunds/FundModal/interfaces/InterfaceFundModal.md @@ -0,0 +1,63 @@ +[Admin Docs](/) + +*** + +# Interface: InterfaceFundModal + +Defined in: [src/screens/OrganizationFunds/FundModal.tsx:15](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/screens/OrganizationFunds/FundModal.tsx#L15) + +## Properties + +### fund + +> **fund**: [`InterfaceFundInfo`](../../../../utils/interfaces/interfaces/InterfaceFundInfo.md) + +Defined in: [src/screens/OrganizationFunds/FundModal.tsx:19](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/screens/OrganizationFunds/FundModal.tsx#L19) + +*** + +### hide() + +> **hide**: () => `void` + +Defined in: [src/screens/OrganizationFunds/FundModal.tsx:17](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/screens/OrganizationFunds/FundModal.tsx#L17) + +#### Returns + +`void` + +*** + +### isOpen + +> **isOpen**: `boolean` + +Defined in: [src/screens/OrganizationFunds/FundModal.tsx:16](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/screens/OrganizationFunds/FundModal.tsx#L16) + +*** + +### mode + +> **mode**: `"create"` \| `"edit"` + +Defined in: [src/screens/OrganizationFunds/FundModal.tsx:21](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/screens/OrganizationFunds/FundModal.tsx#L21) + +*** + +### orgId + +> **orgId**: `string` + +Defined in: [src/screens/OrganizationFunds/FundModal.tsx:20](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/screens/OrganizationFunds/FundModal.tsx#L20) + +*** + +### refetchFunds() + +> **refetchFunds**: () => `void` + +Defined in: [src/screens/OrganizationFunds/FundModal.tsx:18](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/screens/OrganizationFunds/FundModal.tsx#L18) + +#### Returns + +`void` diff --git a/docs/docs/auto-docs/screens/OrganizationFunds/OrganizationFunds/functions/default.md b/docs/docs/auto-docs/screens/OrganizationFunds/OrganizationFunds/functions/default.md new file mode 100644 index 0000000000..9f735d5cc6 --- /dev/null +++ b/docs/docs/auto-docs/screens/OrganizationFunds/OrganizationFunds/functions/default.md @@ -0,0 +1,46 @@ +[Admin Docs](/) + +*** + +# Function: default() + +> **default**(): `Element` + +Defined in: [src/screens/OrganizationFunds/OrganizationFunds.tsx:79](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/screens/OrganizationFunds/OrganizationFunds.tsx#L79) + +`organizationFunds` component displays a list of funds for a specific organization, +allowing users to search, sort, view and edit funds. + +This component utilizes the `DataGrid` from Material-UI to present the list of funds in a tabular format, +and includes functionality for filtering and sorting. It also handles the opening and closing of modals +for creating and editing. + +It includes: +- A search input field to filter funds by name. +- A dropdown menu to sort funds by creation date. +- A button to create a new fund. +- A table to display the list of funds with columns for fund details and actions. +- Modals for creating and editing funds. + +### GraphQL Queries +- `FUND_LIST`: Fetches a list of funds for the given organization, filtered and sorted based on the provided parameters. + +### Props +- `orgId`: The ID of the organization whose funds are being managed. + +### State +- `fund`: The currently selected fund for editing or deletion. +- `searchTerm`: The current search term used for filtering funds. +- `sortBy`: The current sorting order for funds. +- `modalState`: The state of the modals (edit/create). +- `fundModalMode`: The mode of the fund modal (edit or create). + +### Methods +- `handleOpenModal(fund: InterfaceFundInfo | null, mode: 'edit' | 'create')`: Opens the fund modal with the given fund and mode. +- `handleClick(fundId: string)`: Navigates to the campaign page for the specified fund. + +## Returns + +`Element` + +The rendered component. diff --git a/docs/docs/auto-docs/screens/OrganizationFunds/OrganizationFundsMocks/variables/MOCKS.md b/docs/docs/auto-docs/screens/OrganizationFunds/OrganizationFundsMocks/variables/MOCKS.md new file mode 100644 index 0000000000..dcd33ad06b --- /dev/null +++ b/docs/docs/auto-docs/screens/OrganizationFunds/OrganizationFundsMocks/variables/MOCKS.md @@ -0,0 +1,9 @@ +[Admin Docs](/) + +*** + +# Variable: MOCKS + +> `const` **MOCKS**: (\{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `filter`: `string`; `id`: `undefined`; `isArchived`: `undefined`; `isDefault`: `undefined`; `name`: `undefined`; `orderBy`: `string`; `organizationId`: `string`; `refrenceNumber`: `undefined`; `taxDeductible`: `undefined`; \}; \}; `result`: \{ `data`: \{ `createFund`: `undefined`; `fundsByOrganization`: `object`[]; `updateFund`: `undefined`; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `filter`: `undefined`; `id`: `undefined`; `isArchived`: `boolean`; `isDefault`: `boolean`; `name`: `string`; `orderBy`: `undefined`; `organizationId`: `string`; `refrenceNumber`: `string`; `taxDeductible`: `boolean`; \}; \}; `result`: \{ `data`: \{ `createFund`: \{ `_id`: `string`; \}; `fundsByOrganization`: `undefined`; `updateFund`: `undefined`; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `filter`: `undefined`; `id`: `string`; `isArchived`: `boolean`; `isDefault`: `boolean`; `name`: `string`; `orderBy`: `undefined`; `organizationId`: `undefined`; `refrenceNumber`: `string`; `taxDeductible`: `boolean`; \}; \}; `result`: \{ `data`: \{ `createFund`: `undefined`; `fundsByOrganization`: `undefined`; `updateFund`: \{ `_id`: `string`; \}; \}; \}; \})[] + +Defined in: [src/screens/OrganizationFunds/OrganizationFundsMocks.ts:7](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/screens/OrganizationFunds/OrganizationFundsMocks.ts#L7) diff --git a/docs/docs/auto-docs/screens/OrganizationFunds/OrganizationFundsMocks/variables/MOCKS_ERROR.md b/docs/docs/auto-docs/screens/OrganizationFunds/OrganizationFundsMocks/variables/MOCKS_ERROR.md new file mode 100644 index 0000000000..ccf5a0287e --- /dev/null +++ b/docs/docs/auto-docs/screens/OrganizationFunds/OrganizationFundsMocks/variables/MOCKS_ERROR.md @@ -0,0 +1,9 @@ +[Admin Docs](/) + +*** + +# Variable: MOCKS\_ERROR + +> `const` **MOCKS\_ERROR**: (\{ `error`: `Error`; `request`: \{ `query`: `DocumentNode`; `variables`: \{ `filter`: `string`; `id`: `undefined`; `isArchived`: `undefined`; `isDefault`: `undefined`; `name`: `undefined`; `orderBy`: `string`; `organizationId`: `string`; `refrenceNumber`: `undefined`; `taxDeductible`: `undefined`; \}; \}; \} \| \{ `error`: `Error`; `request`: \{ `query`: `DocumentNode`; `variables`: \{ `filter`: `undefined`; `id`: `undefined`; `isArchived`: `boolean`; `isDefault`: `boolean`; `name`: `string`; `orderBy`: `undefined`; `organizationId`: `string`; `refrenceNumber`: `string`; `taxDeductible`: `boolean`; \}; \}; \} \| \{ `error`: `Error`; `request`: \{ `query`: `DocumentNode`; `variables`: \{ `filter`: `undefined`; `id`: `string`; `isArchived`: `boolean`; `isDefault`: `boolean`; `name`: `string`; `orderBy`: `undefined`; `organizationId`: `undefined`; `refrenceNumber`: `string`; `taxDeductible`: `boolean`; \}; \}; \})[] + +Defined in: [src/screens/OrganizationFunds/OrganizationFundsMocks.ts:191](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/screens/OrganizationFunds/OrganizationFundsMocks.ts#L191) diff --git a/docs/docs/auto-docs/screens/OrganizationFunds/OrganizationFundsMocks/variables/NO_FUNDS.md b/docs/docs/auto-docs/screens/OrganizationFunds/OrganizationFundsMocks/variables/NO_FUNDS.md new file mode 100644 index 0000000000..43d864c786 --- /dev/null +++ b/docs/docs/auto-docs/screens/OrganizationFunds/OrganizationFundsMocks/variables/NO_FUNDS.md @@ -0,0 +1,47 @@ +[Admin Docs](/) + +*** + +# Variable: NO\_FUNDS + +> `const` **NO\_FUNDS**: `object`[] + +Defined in: [src/screens/OrganizationFunds/OrganizationFundsMocks.ts:173](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/screens/OrganizationFunds/OrganizationFundsMocks.ts#L173) + +## Type declaration + +### request + +> **request**: `object` + +#### request.query + +> **query**: `DocumentNode` = `FUND_LIST` + +#### request.variables + +> **variables**: `object` + +#### request.variables.filter + +> **filter**: `string` = `''` + +#### request.variables.orderBy + +> **orderBy**: `string` = `'createdAt_DESC'` + +#### request.variables.organizationId + +> **organizationId**: `string` = `'orgId'` + +### result + +> **result**: `object` + +#### result.data + +> **data**: `object` + +#### result.data.fundsByOrganization + +> **fundsByOrganization**: `any`[] = `[]` diff --git a/docs/docs/auto-docs/screens/OrganizationPeople/AddMember/functions/default.md b/docs/docs/auto-docs/screens/OrganizationPeople/AddMember/functions/default.md new file mode 100644 index 0000000000..b49dd90ee6 --- /dev/null +++ b/docs/docs/auto-docs/screens/OrganizationPeople/AddMember/functions/default.md @@ -0,0 +1,21 @@ +[Admin Docs](/) + +*** + +# Function: default() + +> **default**(): `JSX.Element` + +Defined in: [src/screens/OrganizationPeople/AddMember.tsx:62](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/screens/OrganizationPeople/AddMember.tsx#L62) + +AddMember component is used to add new members to the organization by selecting from +the existing users or creating a new user. +It uses the following queries and mutations: + ORGANIZATIONS_LIST, + ORGANIZATIONS_MEMBER_CONNECTION_LIST, + USERS_CONNECTION_LIST, + ADD_MEMBER_MUTATION,SIGNUP_MUTATION. + +## Returns + +`JSX.Element` diff --git a/docs/docs/auto-docs/screens/OrganizationPeople/MockDataTypes/type-aliases/TestMock.md b/docs/docs/auto-docs/screens/OrganizationPeople/MockDataTypes/type-aliases/TestMock.md new file mode 100644 index 0000000000..ac09162a48 --- /dev/null +++ b/docs/docs/auto-docs/screens/OrganizationPeople/MockDataTypes/type-aliases/TestMock.md @@ -0,0 +1,151 @@ +[Admin Docs](/) + +*** + +# Type Alias: TestMock + +> **TestMock**: `object` + +Defined in: [src/screens/OrganizationPeople/MockDataTypes.ts:34](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/screens/OrganizationPeople/MockDataTypes.ts#L34) + +## Type declaration + +### newData()? + +> `optional` **newData**: () => [`TestMock`](TestMock.md)\[`"result"`\] + +#### Returns + +[`TestMock`](TestMock.md)\[`"result"`\] + +### request + +> **request**: `object` + +#### request.query + +> **query**: `DocumentNode` + +#### request.variables + +> **variables**: `object` + +#### request.variables.email? + +> `optional` **email**: `string` + +#### request.variables.firstName? + +> `optional` **firstName**: `string` + +#### request.variables.firstName\_contains? + +> `optional` **firstName\_contains**: `string` + +#### request.variables.firstNameContains? + +> `optional` **firstNameContains**: `string` + +#### request.variables.id? + +> `optional` **id**: `string` + +#### request.variables.id\_not\_in? + +> `optional` **id\_not\_in**: `string`[] + +#### request.variables.lastName? + +> `optional` **lastName**: `string` + +#### request.variables.lastName\_contains? + +> `optional` **lastName\_contains**: `string` + +#### request.variables.lastNameContains? + +> `optional` **lastNameContains**: `string` + +#### request.variables.orgid? + +> `optional` **orgid**: `string` + +#### request.variables.orgId? + +> `optional` **orgId**: `string` + +#### request.variables.password? + +> `optional` **password**: `string` + +#### request.variables.userid? + +> `optional` **userid**: `string` + +### result + +> **result**: `object` + +#### result.\_\_typename? + +> `optional` **\_\_typename**: `string` + +#### result.data + +> **data**: `object` + +#### result.data.\_\_typename? + +> `optional` **\_\_typename**: `string` + +#### result.data.createMember? + +> `optional` **createMember**: `object` + +#### result.data.createMember.\_\_typename + +> **\_\_typename**: `string` + +#### result.data.createMember.\_id + +> **\_id**: `string` + +#### result.data.organizations? + +> `optional` **organizations**: [`InterfaceQueryOrganizationsListObject`](../../../../utils/interfaces/interfaces/InterfaceQueryOrganizationsListObject.md)[] + +#### result.data.organizationsMemberConnection? + +> `optional` **organizationsMemberConnection**: `object` + +#### result.data.organizationsMemberConnection.edges? + +> `optional` **edges**: `Edge`[] + +#### result.data.organizationsMemberConnection.user? + +> `optional` **user**: `Edge`[] + +#### result.data.signUp? + +> `optional` **signUp**: `object` + +#### result.data.signUp.accessToken? + +> `optional` **accessToken**: `string` + +#### result.data.signUp.refreshToken? + +> `optional` **refreshToken**: `string` + +#### result.data.signUp.user? + +> `optional` **user**: `object` + +#### result.data.signUp.user.\_id + +> **\_id**: `string` + +#### result.data.users? + +> `optional` **users**: `object`[] diff --git a/docs/docs/auto-docs/screens/OrganizationPeople/OrganizationPeople/functions/default.md b/docs/docs/auto-docs/screens/OrganizationPeople/OrganizationPeople/functions/default.md new file mode 100644 index 0000000000..4380b3725d --- /dev/null +++ b/docs/docs/auto-docs/screens/OrganizationPeople/OrganizationPeople/functions/default.md @@ -0,0 +1,19 @@ +[Admin Docs](/) + +*** + +# Function: default() + +> **default**(): `JSX.Element` + +Defined in: [src/screens/OrganizationPeople/OrganizationPeople.tsx:31](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/screens/OrganizationPeople/OrganizationPeople.tsx#L31) + +OrganizationPeople component is used to display the list of members, admins and users of the organization. +It also provides the functionality to search the members, admins and users by their full name. +It also provides the functionality to remove the members and admins from the organization. + +## Returns + +`JSX.Element` + +JSX.Element which contains the list of members, admins and users of the organization. diff --git a/docs/docs/auto-docs/screens/OrganizationTags/OrganizationTags/functions/default.md b/docs/docs/auto-docs/screens/OrganizationTags/OrganizationTags/functions/default.md new file mode 100644 index 0000000000..8896126ba0 --- /dev/null +++ b/docs/docs/auto-docs/screens/OrganizationTags/OrganizationTags/functions/default.md @@ -0,0 +1,18 @@ +[Admin Docs](/) + +*** + +# Function: default() + +> **default**(): `JSX.Element` + +Defined in: [src/screens/OrganizationTags/OrganizationTags.tsx:39](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/screens/OrganizationTags/OrganizationTags.tsx#L39) + +Component that renders the Organization Tags screen when the app navigates to '/orgtags/:orgId'. + +This component does not accept any props and is responsible for displaying +the content associated with the corresponding route. + +## Returns + +`JSX.Element` diff --git a/docs/docs/auto-docs/screens/OrganizationTags/OrganizationTagsMocks/variables/MOCKS.md b/docs/docs/auto-docs/screens/OrganizationTags/OrganizationTagsMocks/variables/MOCKS.md new file mode 100644 index 0000000000..08109db9d5 --- /dev/null +++ b/docs/docs/auto-docs/screens/OrganizationTags/OrganizationTagsMocks/variables/MOCKS.md @@ -0,0 +1,9 @@ +[Admin Docs](/) + +*** + +# Variable: MOCKS + +> `const` **MOCKS**: (\{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `after`: `string`; `first`: `number`; `id`: `string`; `name`: `undefined`; `organizationId`: `undefined`; `sortedBy`: \{ `id`: `string`; \}; `where`: \{ `name`: \{ `starts_with`: `string`; \}; \}; \}; \}; `result`: \{ `data`: \{ `createUserTag`: `undefined`; `organizations`: `object`[]; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `after`: `undefined`; `first`: `number`; `id`: `string`; `name`: `undefined`; `organizationId`: `undefined`; `sortedBy`: \{ `id`: `string`; \}; `where`: \{ `name`: \{ `starts_with`: `string`; \}; \}; \}; \}; `result`: \{ `data`: \{ `createUserTag`: `undefined`; `organizations`: `object`[]; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `after`: `undefined`; `first`: `undefined`; `id`: `undefined`; `name`: `string`; `organizationId`: `string`; `sortedBy`: `undefined`; `where`: `undefined`; \}; \}; `result`: \{ `data`: \{ `createUserTag`: \{ `_id`: `string`; \}; `organizations`: `undefined`; \}; \}; \})[] + +Defined in: [src/screens/OrganizationTags/OrganizationTagsMocks.ts:5](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/screens/OrganizationTags/OrganizationTagsMocks.ts#L5) diff --git a/docs/docs/auto-docs/screens/OrganizationTags/OrganizationTagsMocks/variables/MOCKS_ERROR.md b/docs/docs/auto-docs/screens/OrganizationTags/OrganizationTagsMocks/variables/MOCKS_ERROR.md new file mode 100644 index 0000000000..5200509a1f --- /dev/null +++ b/docs/docs/auto-docs/screens/OrganizationTags/OrganizationTagsMocks/variables/MOCKS_ERROR.md @@ -0,0 +1,55 @@ +[Admin Docs](/) + +*** + +# Variable: MOCKS\_ERROR + +> `const` **MOCKS\_ERROR**: `object`[] + +Defined in: [src/screens/OrganizationTags/OrganizationTagsMocks.ts:413](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/screens/OrganizationTags/OrganizationTagsMocks.ts#L413) + +## Type declaration + +### error + +> **error**: `Error` + +### request + +> **request**: `object` + +#### request.query + +> **query**: `DocumentNode` = `ORGANIZATION_USER_TAGS_LIST` + +#### request.variables + +> **variables**: `object` + +#### request.variables.first + +> **first**: `number` = `TAGS_QUERY_DATA_CHUNK_SIZE` + +#### request.variables.id + +> **id**: `string` = `'orgId'` + +#### request.variables.sortedBy + +> **sortedBy**: `object` + +#### request.variables.sortedBy.id + +> **id**: `string` = `'DESCENDING'` + +#### request.variables.where + +> **where**: `object` + +#### request.variables.where.name + +> **name**: `object` + +#### request.variables.where.name.starts\_with + +> **starts\_with**: `string` = `''` diff --git a/docs/docs/auto-docs/screens/OrganizationVenues/OrganizationVenues/functions/default.md b/docs/docs/auto-docs/screens/OrganizationVenues/OrganizationVenues/functions/default.md new file mode 100644 index 0000000000..1673ca9b6f --- /dev/null +++ b/docs/docs/auto-docs/screens/OrganizationVenues/OrganizationVenues/functions/default.md @@ -0,0 +1,16 @@ +[Admin Docs](/) + +*** + +# Function: default() + +> **default**(): `JSX.Element` + +Defined in: [src/screens/OrganizationVenues/OrganizationVenues.tsx:23](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/screens/OrganizationVenues/OrganizationVenues.tsx#L23) + +Component to manage and display the list of organization venues. +Handles searching, sorting, and CRUD operations for venues. + +## Returns + +`JSX.Element` diff --git a/docs/docs/auto-docs/screens/PageNotFound/PageNotFound/functions/default.md b/docs/docs/auto-docs/screens/PageNotFound/PageNotFound/functions/default.md new file mode 100644 index 0000000000..bdee6e67f8 --- /dev/null +++ b/docs/docs/auto-docs/screens/PageNotFound/PageNotFound/functions/default.md @@ -0,0 +1,17 @@ +[Admin Docs](/) + +*** + +# Function: default() + +> **default**(): `Element` + +Defined in: [src/screens/PageNotFound/PageNotFound.tsx:15](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/screens/PageNotFound/PageNotFound.tsx#L15) + +The `PageNotFound` component displays a 404 error page when a user navigates to a non-existent route. +It shows a message indicating that the page was not found and provides a link to redirect users back +to the appropriate home page based on their admin status. + +## Returns + +`Element` diff --git a/docs/docs/auto-docs/screens/Requests/Requests/functions/default.md b/docs/docs/auto-docs/screens/Requests/Requests/functions/default.md new file mode 100644 index 0000000000..1c9120700b --- /dev/null +++ b/docs/docs/auto-docs/screens/Requests/Requests/functions/default.md @@ -0,0 +1,16 @@ +[Admin Docs](/) + +*** + +# Function: default() + +> **default**(): `Element` + +Defined in: [src/screens/Requests/Requests.tsx:34](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/screens/Requests/Requests.tsx#L34) + +The `Requests` component fetches and displays a paginated list of membership requests +for an organization, with functionality for searching, filtering, and infinite scrolling. + +## Returns + +`Element` diff --git a/docs/docs/auto-docs/screens/Requests/RequestsMocks/variables/EMPTY_MOCKS.md b/docs/docs/auto-docs/screens/Requests/RequestsMocks/variables/EMPTY_MOCKS.md new file mode 100644 index 0000000000..386ae2d1fd --- /dev/null +++ b/docs/docs/auto-docs/screens/Requests/RequestsMocks/variables/EMPTY_MOCKS.md @@ -0,0 +1,9 @@ +[Admin Docs](/) + +*** + +# Variable: EMPTY\_MOCKS + +> `const` **EMPTY\_MOCKS**: (\{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `first`: `number`; `firstName_contains`: `string`; `id`: `string`; `skip`: `number`; \}; \}; `result`: \{ `data`: \{ `organizations`: `object`[]; `organizationsConnection`: `undefined`; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: `undefined`; \}; `result`: \{ `data`: \{ `organizations`: `undefined`; `organizationsConnection`: `any`[]; \}; \}; \})[] + +Defined in: [src/screens/Requests/RequestsMocks.ts:522](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/screens/Requests/RequestsMocks.ts#L522) diff --git a/docs/docs/auto-docs/screens/Requests/RequestsMocks/variables/EMPTY_REQUEST_MOCKS.md b/docs/docs/auto-docs/screens/Requests/RequestsMocks/variables/EMPTY_REQUEST_MOCKS.md new file mode 100644 index 0000000000..7793bdbf78 --- /dev/null +++ b/docs/docs/auto-docs/screens/Requests/RequestsMocks/variables/EMPTY_REQUEST_MOCKS.md @@ -0,0 +1,9 @@ +[Admin Docs](/) + +*** + +# Variable: EMPTY\_REQUEST\_MOCKS + +> `const` **EMPTY\_REQUEST\_MOCKS**: (\{ `request`: \{ `query`: `DocumentNode`; `variables`: `undefined`; \}; `result`: \{ `data`: \{ `organizations`: `undefined`; `organizationsConnection`: `object`[]; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `first`: `number`; `firstName_contains`: `string`; `id`: `string`; `skip`: `number`; \}; \}; `result`: \{ `data`: \{ `organizations`: `object`[]; `organizationsConnection`: `undefined`; \}; \}; \})[] + +Defined in: [src/screens/Requests/RequestsMocks.ts:6](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/screens/Requests/RequestsMocks.ts#L6) diff --git a/docs/docs/auto-docs/screens/Requests/RequestsMocks/variables/MOCKS.md b/docs/docs/auto-docs/screens/Requests/RequestsMocks/variables/MOCKS.md new file mode 100644 index 0000000000..362b8f8c33 --- /dev/null +++ b/docs/docs/auto-docs/screens/Requests/RequestsMocks/variables/MOCKS.md @@ -0,0 +1,9 @@ +[Admin Docs](/) + +*** + +# Variable: MOCKS + +> `const` **MOCKS**: (\{ `request`: \{ `query`: `DocumentNode`; `variables`: `undefined`; \}; `result`: \{ `data`: \{ `organizations`: `undefined`; `organizationsConnection`: `object`[]; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `first`: `number`; `firstName_contains`: `string`; `id`: `string`; `skip`: `number`; \}; \}; `result`: \{ `data`: \{ `organizations`: `object`[]; `organizationsConnection`: `undefined`; \}; \}; \})[] + +Defined in: [src/screens/Requests/RequestsMocks.ts:71](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/screens/Requests/RequestsMocks.ts#L71) diff --git a/docs/docs/auto-docs/screens/Requests/RequestsMocks/variables/MOCKS2.md b/docs/docs/auto-docs/screens/Requests/RequestsMocks/variables/MOCKS2.md new file mode 100644 index 0000000000..28e7eae14a --- /dev/null +++ b/docs/docs/auto-docs/screens/Requests/RequestsMocks/variables/MOCKS2.md @@ -0,0 +1,9 @@ +[Admin Docs](/) + +*** + +# Variable: MOCKS2 + +> `const` **MOCKS2**: (\{ `request`: \{ `query`: `DocumentNode`; `variables`: `undefined`; \}; `result`: \{ `data`: \{ `organizations`: `undefined`; `organizationsConnection`: `object`[]; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `first`: `number`; `firstName_contains`: `string`; `id`: `string`; `skip`: `number`; \}; \}; `result`: \{ `data`: \{ `organizations`: `object`[]; `organizationsConnection`: `undefined`; \}; \}; \})[] + +Defined in: [src/screens/Requests/RequestsMocks.ts:387](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/screens/Requests/RequestsMocks.ts#L387) diff --git a/docs/docs/auto-docs/screens/Requests/RequestsMocks/variables/MOCKS3.md b/docs/docs/auto-docs/screens/Requests/RequestsMocks/variables/MOCKS3.md new file mode 100644 index 0000000000..00fd0aff7e --- /dev/null +++ b/docs/docs/auto-docs/screens/Requests/RequestsMocks/variables/MOCKS3.md @@ -0,0 +1,9 @@ +[Admin Docs](/) + +*** + +# Variable: MOCKS3 + +> `const` **MOCKS3**: (\{ `request`: \{ `query`: `DocumentNode`; `variables`: `undefined`; \}; `result`: \{ `data`: \{ `organizations`: `undefined`; `organizationsConnection`: `object`[]; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `first`: `number`; `firstName_contains`: `string`; `id`: `string`; `skip`: `number`; \}; \}; `result`: \{ `data`: \{ `organizations`: `any`[]; `organizationsConnection`: `undefined`; \}; \}; \})[] + +Defined in: [src/screens/Requests/RequestsMocks.ts:462](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/screens/Requests/RequestsMocks.ts#L462) diff --git a/docs/docs/auto-docs/screens/Requests/RequestsMocks/variables/MOCKS4.md b/docs/docs/auto-docs/screens/Requests/RequestsMocks/variables/MOCKS4.md new file mode 100644 index 0000000000..c6fd1217ec --- /dev/null +++ b/docs/docs/auto-docs/screens/Requests/RequestsMocks/variables/MOCKS4.md @@ -0,0 +1,9 @@ +[Admin Docs](/) + +*** + +# Variable: MOCKS4 + +> `const` **MOCKS4**: (\{ `request`: \{ `query`: `DocumentNode`; `variables`: `undefined`; \}; `result`: \{ `data`: \{ `organizations`: `undefined`; `organizationsConnection`: `object`[]; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `first`: `number`; `firstName_contains`: `string`; `id`: `string`; `skip`: `number`; \}; \}; `result`: \{ `data`: \{ `organizations`: `object`[]; `organizationsConnection`: `undefined`; \}; \}; \})[] + +Defined in: [src/screens/Requests/RequestsMocks.ts:155](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/screens/Requests/RequestsMocks.ts#L155) diff --git a/docs/docs/auto-docs/screens/Requests/RequestsMocks/variables/MOCKS_WITH_ERROR.md b/docs/docs/auto-docs/screens/Requests/RequestsMocks/variables/MOCKS_WITH_ERROR.md new file mode 100644 index 0000000000..f07c7a1ab1 --- /dev/null +++ b/docs/docs/auto-docs/screens/Requests/RequestsMocks/variables/MOCKS_WITH_ERROR.md @@ -0,0 +1,9 @@ +[Admin Docs](/) + +*** + +# Variable: MOCKS\_WITH\_ERROR + +> `const` **MOCKS\_WITH\_ERROR**: (\{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `first`: `number`; `firstName_contains`: `string`; `id`: `string`; `skip`: `number`; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: `undefined`; \}; \})[] + +Defined in: [src/screens/Requests/RequestsMocks.ts:556](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/screens/Requests/RequestsMocks.ts#L556) diff --git a/docs/docs/auto-docs/screens/SubTags/SubTags/functions/default.md b/docs/docs/auto-docs/screens/SubTags/SubTags/functions/default.md new file mode 100644 index 0000000000..4cc4a8b31a --- /dev/null +++ b/docs/docs/auto-docs/screens/SubTags/SubTags/functions/default.md @@ -0,0 +1,18 @@ +[Admin Docs](/) + +*** + +# Function: default() + +> **default**(): `JSX.Element` + +Defined in: [src/screens/SubTags/SubTags.tsx:40](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/screens/SubTags/SubTags.tsx#L40) + +Component that renders the SubTags screen when the app navigates to '/orgtags/:orgId/subtags/:tagId'. + +This component does not accept any props and is responsible for displaying +the content associated with the corresponding route. + +## Returns + +`JSX.Element` diff --git a/docs/docs/auto-docs/screens/SubTags/SubTagsMocks/variables/MOCKS.md b/docs/docs/auto-docs/screens/SubTags/SubTagsMocks/variables/MOCKS.md new file mode 100644 index 0000000000..753a096f88 --- /dev/null +++ b/docs/docs/auto-docs/screens/SubTags/SubTagsMocks/variables/MOCKS.md @@ -0,0 +1,9 @@ +[Admin Docs](/) + +*** + +# Variable: MOCKS + +> `const` **MOCKS**: (\{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `after`: `string`; `first`: `number`; `id`: `string`; `name`: `undefined`; `organizationId`: `undefined`; `parentTagId`: `undefined`; `sortedBy`: \{ `id`: `string`; \}; `where`: \{ `name`: \{ `starts_with`: `string`; \}; \}; \}; \}; `result`: \{ `data`: \{ `createUserTag`: `undefined`; `getChildTags`: \{ `ancestorTags`: `any`[]; `childTags`: \{ `edges`: `object`[]; `pageInfo`: \{ `endCursor`: `string`; `hasNextPage`: `boolean`; `hasPreviousPage`: `boolean`; `startCursor`: `string`; \}; `totalCount`: `number`; \}; `name`: `string`; \}; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `after`: `undefined`; `first`: `number`; `id`: `string`; `name`: `undefined`; `organizationId`: `undefined`; `parentTagId`: `undefined`; `sortedBy`: \{ `id`: `string`; \}; `where`: \{ `name`: \{ `starts_with`: `string`; \}; \}; \}; \}; `result`: \{ `data`: \{ `createUserTag`: `undefined`; `getChildTags`: \{ `ancestorTags`: `object`[]; `childTags`: \{ `edges`: `object`[]; `pageInfo`: \{ `endCursor`: `string`; `hasNextPage`: `boolean`; `hasPreviousPage`: `boolean`; `startCursor`: `string`; \}; `totalCount`: `number`; \}; `name`: `string`; \}; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `after`: `undefined`; `first`: `undefined`; `id`: `undefined`; `name`: `string`; `organizationId`: `string`; `parentTagId`: `string`; `sortedBy`: `undefined`; `where`: `undefined`; \}; \}; `result`: \{ `data`: \{ `createUserTag`: \{ `_id`: `string`; \}; `getChildTags`: `undefined`; \}; \}; \})[] + +Defined in: [src/screens/SubTags/SubTagsMocks.ts:5](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/screens/SubTags/SubTagsMocks.ts#L5) diff --git a/docs/docs/auto-docs/screens/SubTags/SubTagsMocks/variables/MOCKS_ERROR_SUB_TAGS.md b/docs/docs/auto-docs/screens/SubTags/SubTagsMocks/variables/MOCKS_ERROR_SUB_TAGS.md new file mode 100644 index 0000000000..6a92b14245 --- /dev/null +++ b/docs/docs/auto-docs/screens/SubTags/SubTagsMocks/variables/MOCKS_ERROR_SUB_TAGS.md @@ -0,0 +1,55 @@ +[Admin Docs](/) + +*** + +# Variable: MOCKS\_ERROR\_SUB\_TAGS + +> `const` **MOCKS\_ERROR\_SUB\_TAGS**: `object`[] + +Defined in: [src/screens/SubTags/SubTagsMocks.ts:489](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/screens/SubTags/SubTagsMocks.ts#L489) + +## Type declaration + +### error + +> **error**: `Error` + +### request + +> **request**: `object` + +#### request.query + +> **query**: `DocumentNode` = `USER_TAG_SUB_TAGS` + +#### request.variables + +> **variables**: `object` + +#### request.variables.first + +> **first**: `number` = `TAGS_QUERY_DATA_CHUNK_SIZE` + +#### request.variables.id + +> **id**: `string` = `'1'` + +#### request.variables.sortedBy + +> **sortedBy**: `object` + +#### request.variables.sortedBy.id + +> **id**: `string` = `'DESCENDING'` + +#### request.variables.where + +> **where**: `object` + +#### request.variables.where.name + +> **name**: `object` + +#### request.variables.where.name.starts\_with + +> **starts\_with**: `string` = `''` diff --git a/docs/docs/auto-docs/screens/UserPortal/Campaigns/Campaigns/functions/default.md b/docs/docs/auto-docs/screens/UserPortal/Campaigns/Campaigns/functions/default.md new file mode 100644 index 0000000000..4d8a2bf292 --- /dev/null +++ b/docs/docs/auto-docs/screens/UserPortal/Campaigns/Campaigns/functions/default.md @@ -0,0 +1,18 @@ +[Admin Docs](/) + +*** + +# Function: default() + +> **default**(): `Element` + +Defined in: [src/screens/UserPortal/Campaigns/Campaigns.tsx:30](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/screens/UserPortal/Campaigns/Campaigns.tsx#L30) + +The `Campaigns` component displays a list of fundraising campaigns for a specific organization. +It allows users to search, sort, and view details about each campaign. Users can also add pledges to active campaigns. + +## Returns + +`Element` + +The rendered component displaying the campaigns. diff --git a/docs/docs/auto-docs/screens/UserPortal/Campaigns/CampaignsMocks/variables/EMPTY_MOCKS.md b/docs/docs/auto-docs/screens/UserPortal/Campaigns/CampaignsMocks/variables/EMPTY_MOCKS.md new file mode 100644 index 0000000000..242a46da9a --- /dev/null +++ b/docs/docs/auto-docs/screens/UserPortal/Campaigns/CampaignsMocks/variables/EMPTY_MOCKS.md @@ -0,0 +1,9 @@ +[Admin Docs](/) + +*** + +# Variable: EMPTY\_MOCKS + +> `const` **EMPTY\_MOCKS**: (\{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `id`: `string`; \}; \}; `result`: \{ `data`: \{ `user`: \{ `__typename`: `string`; `appUserProfile`: \{ `__typename`: `string`; `_id`: `string`; `adminFor`: `any`[]; `appLanguageCode`: `string`; `createdEvents`: `any`[]; `createdOrganizations`: `any`[]; `eventAdmin`: `any`[]; `isSuperAdmin`: `boolean`; `pluginCreationAllowed`: `boolean`; \}; `user`: \{ `__typename`: `string`; `_id`: `string`; `address`: \{ `__typename`: `string`; `city`: `string`; `countryCode`: `string`; `line1`: `string`; `state`: `string`; \}; `birthDate`: `any`; `createdAt`: `string`; `educationGrade`: `any`; `email`: `string`; `employmentStatus`: `any`; `firstName`: `string`; `gender`: `any`; `image`: `any`; `joinedOrganizations`: `object`[]; `lastName`: `string`; `maritalStatus`: `any`; `membershipRequests`: `any`[]; `phone`: `any`; `registeredEvents`: `any`[]; \}; \}; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `campaignOrderBy`: `string`; `where`: \{ `name_contains`: `string`; `organizationId`: `string`; \}; \}; \}; `result`: \{ `data`: \{ `getFundraisingCampaigns`: `any`[]; \}; \}; \})[] + +Defined in: [src/screens/UserPortal/Campaigns/CampaignsMocks.ts:236](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/screens/UserPortal/Campaigns/CampaignsMocks.ts#L236) diff --git a/docs/docs/auto-docs/screens/UserPortal/Campaigns/CampaignsMocks/variables/MOCKS.md b/docs/docs/auto-docs/screens/UserPortal/Campaigns/CampaignsMocks/variables/MOCKS.md new file mode 100644 index 0000000000..c88e17d7ef --- /dev/null +++ b/docs/docs/auto-docs/screens/UserPortal/Campaigns/CampaignsMocks/variables/MOCKS.md @@ -0,0 +1,9 @@ +[Admin Docs](/) + +*** + +# Variable: MOCKS + +> `const` **MOCKS**: (\{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `id`: `string`; \}; \}; `result`: \{ `data`: \{ `user`: \{ `__typename`: `string`; `appUserProfile`: \{ `__typename`: `string`; `_id`: `string`; `adminFor`: `any`[]; `appLanguageCode`: `string`; `createdEvents`: `any`[]; `createdOrganizations`: `any`[]; `eventAdmin`: `any`[]; `isSuperAdmin`: `boolean`; `pluginCreationAllowed`: `boolean`; \}; `user`: \{ `__typename`: `string`; `_id`: `string`; `address`: \{ `__typename`: `string`; `city`: `string`; `countryCode`: `string`; `line1`: `string`; `state`: `string`; \}; `birthDate`: `any`; `createdAt`: `string`; `educationGrade`: `any`; `email`: `string`; `employmentStatus`: `any`; `firstName`: `string`; `gender`: `any`; `image`: `any`; `joinedOrganizations`: `object`[]; `lastName`: `string`; `maritalStatus`: `any`; `membershipRequests`: `any`[]; `phone`: `any`; `registeredEvents`: `any`[]; \}; \}; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `campaignOrderBy`: `string`; `where`: \{ `name_contains`: `string`; `organizationId`: `string`; \}; \}; \}; `result`: \{ `data`: \{ `getFundraisingCampaigns`: `object`[]; \}; \}; \})[] + +Defined in: [src/screens/UserPortal/Campaigns/CampaignsMocks.ts:61](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/screens/UserPortal/Campaigns/CampaignsMocks.ts#L61) diff --git a/docs/docs/auto-docs/screens/UserPortal/Campaigns/CampaignsMocks/variables/USER_FUND_CAMPAIGNS_ERROR.md b/docs/docs/auto-docs/screens/UserPortal/Campaigns/CampaignsMocks/variables/USER_FUND_CAMPAIGNS_ERROR.md new file mode 100644 index 0000000000..6f96671095 --- /dev/null +++ b/docs/docs/auto-docs/screens/UserPortal/Campaigns/CampaignsMocks/variables/USER_FUND_CAMPAIGNS_ERROR.md @@ -0,0 +1,9 @@ +[Admin Docs](/) + +*** + +# Variable: USER\_FUND\_CAMPAIGNS\_ERROR + +> `const` **USER\_FUND\_CAMPAIGNS\_ERROR**: (\{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `id`: `string`; \}; \}; `result`: \{ `data`: \{ `user`: \{ `__typename`: `string`; `appUserProfile`: \{ `__typename`: `string`; `_id`: `string`; `adminFor`: `any`[]; `appLanguageCode`: `string`; `createdEvents`: `any`[]; `createdOrganizations`: `any`[]; `eventAdmin`: `any`[]; `isSuperAdmin`: `boolean`; `pluginCreationAllowed`: `boolean`; \}; `user`: \{ `__typename`: `string`; `_id`: `string`; `address`: \{ `__typename`: `string`; `city`: `string`; `countryCode`: `string`; `line1`: `string`; `state`: `string`; \}; `birthDate`: `any`; `createdAt`: `string`; `educationGrade`: `any`; `email`: `string`; `employmentStatus`: `any`; `firstName`: `string`; `gender`: `any`; `image`: `any`; `joinedOrganizations`: `object`[]; `lastName`: `string`; `maritalStatus`: `any`; `membershipRequests`: `any`[]; `phone`: `any`; `registeredEvents`: `any`[]; \}; \}; \}; \}; \} \| \{ `error`: `Error`; `request`: \{ `query`: `DocumentNode`; `variables`: \{ `campaignOrderBy`: `string`; `where`: \{ `name_contains`: `string`; `organizationId`: `string`; \}; \}; \}; \})[] + +Defined in: [src/screens/UserPortal/Campaigns/CampaignsMocks.ts:257](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/screens/UserPortal/Campaigns/CampaignsMocks.ts#L257) diff --git a/docs/docs/auto-docs/screens/UserPortal/Campaigns/PledgeModal/functions/default.md b/docs/docs/auto-docs/screens/UserPortal/Campaigns/PledgeModal/functions/default.md new file mode 100644 index 0000000000..b45bfe9f0c --- /dev/null +++ b/docs/docs/auto-docs/screens/UserPortal/Campaigns/PledgeModal/functions/default.md @@ -0,0 +1,32 @@ +[Admin Docs](/) + +*** + +# Function: default() + +> **default**(`props`, `deprecatedLegacyContext`?): `ReactNode` + +Defined in: [src/screens/UserPortal/Campaigns/PledgeModal.tsx:54](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/screens/UserPortal/Campaigns/PledgeModal.tsx#L54) + +`PledgeModal` is a React component that allows users to create or edit a pledge for a specific campaign. +It displays a form with inputs for pledge details such as amount, currency, dates, and users involved in the pledge. + +## Parameters + +### props + +[`InterfacePledgeModal`](../interfaces/InterfacePledgeModal.md) + +### deprecatedLegacyContext? + +`any` + +**Deprecated** + +**See** + +[React Docs](https://legacy.reactjs.org/docs/legacy-context.html#referencing-context-in-lifecycle-methods) + +## Returns + +`ReactNode` diff --git a/docs/docs/auto-docs/screens/UserPortal/Campaigns/PledgeModal/interfaces/InterfacePledgeModal.md b/docs/docs/auto-docs/screens/UserPortal/Campaigns/PledgeModal/interfaces/InterfacePledgeModal.md new file mode 100644 index 0000000000..4211eb3e86 --- /dev/null +++ b/docs/docs/auto-docs/screens/UserPortal/Campaigns/PledgeModal/interfaces/InterfacePledgeModal.md @@ -0,0 +1,81 @@ +[Admin Docs](/) + +*** + +# Interface: InterfacePledgeModal + +Defined in: [src/screens/UserPortal/Campaigns/PledgeModal.tsx:30](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/screens/UserPortal/Campaigns/PledgeModal.tsx#L30) + +Interface representing the properties for the `PledgeModal` component. + +## Properties + +### campaignId + +> **campaignId**: `string` + +Defined in: [src/screens/UserPortal/Campaigns/PledgeModal.tsx:33](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/screens/UserPortal/Campaigns/PledgeModal.tsx#L33) + +*** + +### endDate + +> **endDate**: `Date` + +Defined in: [src/screens/UserPortal/Campaigns/PledgeModal.tsx:37](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/screens/UserPortal/Campaigns/PledgeModal.tsx#L37) + +*** + +### hide() + +> **hide**: () => `void` + +Defined in: [src/screens/UserPortal/Campaigns/PledgeModal.tsx:32](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/screens/UserPortal/Campaigns/PledgeModal.tsx#L32) + +#### Returns + +`void` + +*** + +### isOpen + +> **isOpen**: `boolean` + +Defined in: [src/screens/UserPortal/Campaigns/PledgeModal.tsx:31](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/screens/UserPortal/Campaigns/PledgeModal.tsx#L31) + +*** + +### mode + +> **mode**: `"create"` \| `"edit"` + +Defined in: [src/screens/UserPortal/Campaigns/PledgeModal.tsx:38](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/screens/UserPortal/Campaigns/PledgeModal.tsx#L38) + +*** + +### pledge + +> **pledge**: [`InterfacePledgeInfo`](../../../../../utils/interfaces/interfaces/InterfacePledgeInfo.md) + +Defined in: [src/screens/UserPortal/Campaigns/PledgeModal.tsx:35](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/screens/UserPortal/Campaigns/PledgeModal.tsx#L35) + +*** + +### refetchPledge() + +> **refetchPledge**: () => `void` + +Defined in: [src/screens/UserPortal/Campaigns/PledgeModal.tsx:36](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/screens/UserPortal/Campaigns/PledgeModal.tsx#L36) + +#### Returns + +`void` + +*** + +### userId + +> **userId**: `string` + +Defined in: [src/screens/UserPortal/Campaigns/PledgeModal.tsx:34](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/screens/UserPortal/Campaigns/PledgeModal.tsx#L34) diff --git a/docs/docs/auto-docs/screens/UserPortal/Chat/Chat/functions/default.md b/docs/docs/auto-docs/screens/UserPortal/Chat/Chat/functions/default.md new file mode 100644 index 0000000000..09857f88ee --- /dev/null +++ b/docs/docs/auto-docs/screens/UserPortal/Chat/Chat/functions/default.md @@ -0,0 +1,13 @@ +[Admin Docs](/) + +*** + +# Function: default() + +> **default**(): `JSX.Element` + +Defined in: [src/screens/UserPortal/Chat/Chat.tsx:102](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/screens/UserPortal/Chat/Chat.tsx#L102) + +## Returns + +`JSX.Element` diff --git a/docs/docs/auto-docs/screens/UserPortal/Donate/Donate/functions/default.md b/docs/docs/auto-docs/screens/UserPortal/Donate/Donate/functions/default.md new file mode 100644 index 0000000000..0a2e12838c --- /dev/null +++ b/docs/docs/auto-docs/screens/UserPortal/Donate/Donate/functions/default.md @@ -0,0 +1,36 @@ +[Admin Docs](/) + +*** + +# Function: default() + +> **default**(): `JSX.Element` + +Defined in: [src/screens/UserPortal/Donate/Donate.tsx:65](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/screens/UserPortal/Donate/Donate.tsx#L65) + +`donate` component allows users to make donations to an organization and view their previous donations. + +This component fetches donation-related data using GraphQL queries and allows users to make donations +using a mutation. It supports currency selection, donation amount input, and displays a paginated list +of previous donations. + +It includes: +- An input field for searching donations. +- A dropdown to select currency. +- An input field for entering donation amount. +- A button to submit the donation. +- A list of previous donations displayed in a paginated format. +- An organization sidebar for navigation. + +### GraphQL Queries +- `ORGANIZATION_DONATION_CONNECTION_LIST`: Fetches the list of donations for the organization. +- `USER_ORGANIZATION_CONNECTION`: Fetches organization details. + +### GraphQL Mutations +- `DONATE_TO_ORGANIZATION`: Performs the donation action. + +## Returns + +`JSX.Element` + +The rendered component. diff --git a/docs/docs/auto-docs/screens/UserPortal/Donate/Donate/interfaces/InterfaceDonationCardProps.md b/docs/docs/auto-docs/screens/UserPortal/Donate/Donate/interfaces/InterfaceDonationCardProps.md new file mode 100644 index 0000000000..83054b8b95 --- /dev/null +++ b/docs/docs/auto-docs/screens/UserPortal/Donate/Donate/interfaces/InterfaceDonationCardProps.md @@ -0,0 +1,55 @@ +[Admin Docs](/) + +*** + +# Interface: InterfaceDonationCardProps + +Defined in: [src/screens/UserPortal/Donate/Donate.tsx:23](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/screens/UserPortal/Donate/Donate.tsx#L23) + +## Properties + +### amount + +> **amount**: `string` + +Defined in: [src/screens/UserPortal/Donate/Donate.tsx:26](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/screens/UserPortal/Donate/Donate.tsx#L26) + +*** + +### id + +> **id**: `string` + +Defined in: [src/screens/UserPortal/Donate/Donate.tsx:24](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/screens/UserPortal/Donate/Donate.tsx#L24) + +*** + +### name + +> **name**: `string` + +Defined in: [src/screens/UserPortal/Donate/Donate.tsx:25](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/screens/UserPortal/Donate/Donate.tsx#L25) + +*** + +### payPalId + +> **payPalId**: `string` + +Defined in: [src/screens/UserPortal/Donate/Donate.tsx:28](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/screens/UserPortal/Donate/Donate.tsx#L28) + +*** + +### updatedAt + +> **updatedAt**: `string` + +Defined in: [src/screens/UserPortal/Donate/Donate.tsx:29](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/screens/UserPortal/Donate/Donate.tsx#L29) + +*** + +### userId + +> **userId**: `string` + +Defined in: [src/screens/UserPortal/Donate/Donate.tsx:27](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/screens/UserPortal/Donate/Donate.tsx#L27) diff --git a/docs/docs/auto-docs/screens/UserPortal/Events/Events/functions/default.md b/docs/docs/auto-docs/screens/UserPortal/Events/Events/functions/default.md new file mode 100644 index 0000000000..de2af4f999 --- /dev/null +++ b/docs/docs/auto-docs/screens/UserPortal/Events/Events/functions/default.md @@ -0,0 +1,20 @@ +[Admin Docs](/) + +*** + +# Function: default() + +> **default**(): `JSX.Element` + +Defined in: [src/screens/UserPortal/Events/Events.tsx:43](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/screens/UserPortal/Events/Events.tsx#L43) + +Component to manage and display events for an organization. + +This component allows users to view, create, and manage events within an organization. +It includes a calendar view, a form to create new events, and various filters and settings. + +## Returns + +`JSX.Element` + +The JSX element for the events management interface. diff --git a/docs/docs/auto-docs/screens/UserPortal/LeaveOrganization/LeaveOrganization/functions/default.md b/docs/docs/auto-docs/screens/UserPortal/LeaveOrganization/LeaveOrganization/functions/default.md new file mode 100644 index 0000000000..d5d0cdbae5 --- /dev/null +++ b/docs/docs/auto-docs/screens/UserPortal/LeaveOrganization/LeaveOrganization/functions/default.md @@ -0,0 +1,13 @@ +[Admin Docs](/) + +*** + +# Function: default() + +> **default**(): `Element` + +Defined in: [src/screens/UserPortal/LeaveOrganization/LeaveOrganization.tsx:32](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/screens/UserPortal/LeaveOrganization/LeaveOrganization.tsx#L32) + +## Returns + +`Element` diff --git a/docs/docs/auto-docs/screens/UserPortal/LeaveOrganization/LeaveOrganization/variables/userEmail.md b/docs/docs/auto-docs/screens/UserPortal/LeaveOrganization/LeaveOrganization/variables/userEmail.md new file mode 100644 index 0000000000..0a19f39eba --- /dev/null +++ b/docs/docs/auto-docs/screens/UserPortal/LeaveOrganization/LeaveOrganization/variables/userEmail.md @@ -0,0 +1,9 @@ +[Admin Docs](/) + +*** + +# Variable: userEmail + +> `const` **userEmail**: `any` + +Defined in: [src/screens/UserPortal/LeaveOrganization/LeaveOrganization.tsx:13](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/screens/UserPortal/LeaveOrganization/LeaveOrganization.tsx#L13) diff --git a/docs/docs/auto-docs/screens/UserPortal/LeaveOrganization/LeaveOrganization/variables/userId.md b/docs/docs/auto-docs/screens/UserPortal/LeaveOrganization/LeaveOrganization/variables/userId.md new file mode 100644 index 0000000000..288d651712 --- /dev/null +++ b/docs/docs/auto-docs/screens/UserPortal/LeaveOrganization/LeaveOrganization/variables/userId.md @@ -0,0 +1,9 @@ +[Admin Docs](/) + +*** + +# Variable: userId + +> `const` **userId**: `any` + +Defined in: [src/screens/UserPortal/LeaveOrganization/LeaveOrganization.tsx:21](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/screens/UserPortal/LeaveOrganization/LeaveOrganization.tsx#L21) diff --git a/docs/docs/auto-docs/screens/UserPortal/Organizations/Organizations/functions/default.md b/docs/docs/auto-docs/screens/UserPortal/Organizations/Organizations/functions/default.md new file mode 100644 index 0000000000..533bb7ae04 --- /dev/null +++ b/docs/docs/auto-docs/screens/UserPortal/Organizations/Organizations/functions/default.md @@ -0,0 +1,15 @@ +[Admin Docs](/) + +*** + +# Function: default() + +> **default**(): `JSX.Element` + +Defined in: [src/screens/UserPortal/Organizations/Organizations.tsx:76](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/screens/UserPortal/Organizations/Organizations.tsx#L76) + +Component for displaying and managing user organizations. + +## Returns + +`JSX.Element` diff --git a/docs/docs/auto-docs/screens/UserPortal/People/People/functions/default.md b/docs/docs/auto-docs/screens/UserPortal/People/People/functions/default.md new file mode 100644 index 0000000000..f928f10d65 --- /dev/null +++ b/docs/docs/auto-docs/screens/UserPortal/People/People/functions/default.md @@ -0,0 +1,17 @@ +[Admin Docs](/) + +*** + +# Function: default() + +> **default**(): `JSX.Element` + +Defined in: [src/screens/UserPortal/People/People.tsx:39](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/screens/UserPortal/People/People.tsx#L39) + +`People` component displays a list of people associated with an organization. +It allows users to filter between all members and admins, search for members by their first name, +and paginate through the list. + +## Returns + +`JSX.Element` diff --git a/docs/docs/auto-docs/screens/UserPortal/Pledges/Pledges/functions/default.md b/docs/docs/auto-docs/screens/UserPortal/Pledges/Pledges/functions/default.md new file mode 100644 index 0000000000..b0482ced59 --- /dev/null +++ b/docs/docs/auto-docs/screens/UserPortal/Pledges/Pledges/functions/default.md @@ -0,0 +1,30 @@ +[Admin Docs](/) + +*** + +# Function: default() + +> **default**(): `Element` + +Defined in: [src/screens/UserPortal/Pledges/Pledges.tsx:70](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/screens/UserPortal/Pledges/Pledges.tsx#L70) + +The `Pledges` component is responsible for rendering a user's pledges within a campaign. +It fetches pledges data using Apollo Client's `useQuery` hook and displays the data +in a DataGrid with various features such as search, sorting, and modal dialogs for updating +or deleting a pledge. The component also handles various UI interactions including opening +modals for editing or deleting a pledge, showing additional pledgers in a popup, and +applying filters for searching pledges by campaign or pledger name. + +Key functionalities include: +- Fetching pledges data from the backend using GraphQL query `USER_PLEDGES`. +- Displaying pledges in a table with columns for pledgers, associated campaigns, + end dates, pledged amounts, and actions. +- Handling search and sorting of pledges. +- Opening and closing modals for updating and deleting pledges. +- Displaying additional pledgers in a popup when the list of pledgers exceeds a certain limit. + +## Returns + +`Element` + +The rendered Pledges component. diff --git a/docs/docs/auto-docs/screens/UserPortal/Pledges/PledgesMocks/variables/EMPTY_MOCKS.md b/docs/docs/auto-docs/screens/UserPortal/Pledges/PledgesMocks/variables/EMPTY_MOCKS.md new file mode 100644 index 0000000000..f7a3b216bd --- /dev/null +++ b/docs/docs/auto-docs/screens/UserPortal/Pledges/PledgesMocks/variables/EMPTY_MOCKS.md @@ -0,0 +1,9 @@ +[Admin Docs](/) + +*** + +# Variable: EMPTY\_MOCKS + +> `const` **EMPTY\_MOCKS**: (\{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `id`: `string`; \}; \}; `result`: \{ `data`: \{ `user`: \{ `__typename`: `string`; `appUserProfile`: \{ `__typename`: `string`; `_id`: `string`; `adminFor`: `any`[]; `appLanguageCode`: `string`; `createdEvents`: `any`[]; `createdOrganizations`: `any`[]; `eventAdmin`: `any`[]; `isSuperAdmin`: `boolean`; `pluginCreationAllowed`: `boolean`; \}; `user`: \{ `__typename`: `string`; `_id`: `string`; `address`: \{ `__typename`: `string`; `city`: `string`; `countryCode`: `string`; `line1`: `string`; `state`: `string`; \}; `birthDate`: `any`; `createdAt`: `string`; `educationGrade`: `any`; `email`: `string`; `employmentStatus`: `any`; `firstName`: `string`; `gender`: `any`; `image`: `any`; `joinedOrganizations`: `object`[]; `lastName`: `string`; `maritalStatus`: `any`; `membershipRequests`: `any`[]; `phone`: `any`; `registeredEvents`: `any`[]; \}; \}; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `orderBy`: `string`; `userId`: `string`; `where`: \{ `firstName_contains`: `string`; \}; \}; \}; `result`: \{ `data`: \{ `getPledgesByUserId`: `any`[]; \}; \}; \})[] + +Defined in: [src/screens/UserPortal/Pledges/PledgesMocks.ts:560](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/screens/UserPortal/Pledges/PledgesMocks.ts#L560) diff --git a/docs/docs/auto-docs/screens/UserPortal/Pledges/PledgesMocks/variables/MOCKS.md b/docs/docs/auto-docs/screens/UserPortal/Pledges/PledgesMocks/variables/MOCKS.md new file mode 100644 index 0000000000..8ec0b8a1b9 --- /dev/null +++ b/docs/docs/auto-docs/screens/UserPortal/Pledges/PledgesMocks/variables/MOCKS.md @@ -0,0 +1,9 @@ +[Admin Docs](/) + +*** + +# Variable: MOCKS + +> `const` **MOCKS**: (\{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `id`: `string`; \}; \}; `result`: \{ `data`: \{ `user`: \{ `__typename`: `string`; `appUserProfile`: \{ `__typename`: `string`; `_id`: `string`; `adminFor`: `any`[]; `appLanguageCode`: `string`; `createdEvents`: `any`[]; `createdOrganizations`: `any`[]; `eventAdmin`: `any`[]; `isSuperAdmin`: `boolean`; `pluginCreationAllowed`: `boolean`; \}; `user`: \{ `__typename`: `string`; `_id`: `string`; `address`: \{ `__typename`: `string`; `city`: `string`; `countryCode`: `string`; `line1`: `string`; `state`: `string`; \}; `birthDate`: `any`; `createdAt`: `string`; `educationGrade`: `any`; `email`: `string`; `employmentStatus`: `any`; `firstName`: `string`; `gender`: `any`; `image`: `any`; `joinedOrganizations`: `object`[]; `lastName`: `string`; `maritalStatus`: `any`; `membershipRequests`: `any`[]; `phone`: `any`; `registeredEvents`: `any`[]; \}; \}; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `id`: `undefined`; `orderBy`: `string`; `userId`: `string`; `where`: \{ `firstName_contains`: `undefined`; `name_contains`: `string`; \}; \}; \}; `result`: \{ `data`: \{ `getPledgesByUserId`: `object`[]; `removeFundraisingCampaignPledge`: `undefined`; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `id`: `undefined`; `orderBy`: `string`; `userId`: `string`; `where`: \{ `firstName_contains`: `string`; `name_contains`: `undefined`; \}; \}; \}; `result`: \{ `data`: \{ `getPledgesByUserId`: `object`[]; `removeFundraisingCampaignPledge`: `undefined`; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `id`: `string`; `orderBy`: `undefined`; `userId`: `undefined`; `where`: `undefined`; \}; \}; `result`: \{ `data`: \{ `getPledgesByUserId`: `undefined`; `removeFundraisingCampaignPledge`: \{ `_id`: `string`; \}; \}; \}; \})[] + +Defined in: [src/screens/UserPortal/Pledges/PledgesMocks.ts:62](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/screens/UserPortal/Pledges/PledgesMocks.ts#L62) diff --git a/docs/docs/auto-docs/screens/UserPortal/Pledges/PledgesMocks/variables/USER_PLEDGES_ERROR.md b/docs/docs/auto-docs/screens/UserPortal/Pledges/PledgesMocks/variables/USER_PLEDGES_ERROR.md new file mode 100644 index 0000000000..8a753d4842 --- /dev/null +++ b/docs/docs/auto-docs/screens/UserPortal/Pledges/PledgesMocks/variables/USER_PLEDGES_ERROR.md @@ -0,0 +1,9 @@ +[Admin Docs](/) + +*** + +# Variable: USER\_PLEDGES\_ERROR + +> `const` **USER\_PLEDGES\_ERROR**: (\{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `id`: `string`; \}; \}; `result`: \{ `data`: \{ `user`: \{ `__typename`: `string`; `appUserProfile`: \{ `__typename`: `string`; `_id`: `string`; `adminFor`: `any`[]; `appLanguageCode`: `string`; `createdEvents`: `any`[]; `createdOrganizations`: `any`[]; `eventAdmin`: `any`[]; `isSuperAdmin`: `boolean`; `pluginCreationAllowed`: `boolean`; \}; `user`: \{ `__typename`: `string`; `_id`: `string`; `address`: \{ `__typename`: `string`; `city`: `string`; `countryCode`: `string`; `line1`: `string`; `state`: `string`; \}; `birthDate`: `any`; `createdAt`: `string`; `educationGrade`: `any`; `email`: `string`; `employmentStatus`: `any`; `firstName`: `string`; `gender`: `any`; `image`: `any`; `joinedOrganizations`: `object`[]; `lastName`: `string`; `maritalStatus`: `any`; `membershipRequests`: `any`[]; `phone`: `any`; `registeredEvents`: `any`[]; \}; \}; \}; \}; \} \| \{ `error`: `Error`; `request`: \{ `query`: `DocumentNode`; `variables`: \{ `orderBy`: `string`; `userId`: `string`; `where`: \{ `firstName_contains`: `string`; \}; \}; \}; \})[] + +Defined in: [src/screens/UserPortal/Pledges/PledgesMocks.ts:581](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/screens/UserPortal/Pledges/PledgesMocks.ts#L581) diff --git a/docs/docs/auto-docs/screens/UserPortal/Posts/Posts/functions/default.md b/docs/docs/auto-docs/screens/UserPortal/Posts/Posts/functions/default.md new file mode 100644 index 0000000000..4f582a3266 --- /dev/null +++ b/docs/docs/auto-docs/screens/UserPortal/Posts/Posts/functions/default.md @@ -0,0 +1,19 @@ +[Admin Docs](/) + +*** + +# Function: default() + +> **default**(): `JSX.Element` + +Defined in: [src/screens/UserPortal/Posts/Posts.tsx:112](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/screens/UserPortal/Posts/Posts.tsx#L112) + +`home` component displays the main feed for a user, including posts, promoted content, and options to create a new post. + +It utilizes Apollo Client for fetching and managing data through GraphQL queries. The component fetches and displays posts from an organization, promoted advertisements, and handles user interactions for creating new posts. It also manages state for displaying modal dialogs and handling file uploads for new posts. + +## Returns + +`JSX.Element` + +JSX.Element - The rendered `home` component. diff --git a/docs/docs/auto-docs/screens/UserPortal/Settings/Settings/functions/default.md b/docs/docs/auto-docs/screens/UserPortal/Settings/Settings/functions/default.md new file mode 100644 index 0000000000..d5ac4e2726 --- /dev/null +++ b/docs/docs/auto-docs/screens/UserPortal/Settings/Settings/functions/default.md @@ -0,0 +1,18 @@ +[Admin Docs](/) + +*** + +# Function: default() + +> **default**(): `JSX.Element` + +Defined in: [src/screens/UserPortal/Settings/Settings.tsx:33](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/screens/UserPortal/Settings/Settings.tsx#L33) + +The Settings component allows users to view and update their profile settings. +It includes functionality to handle image uploads, reset changes, and save updated user details. + +## Returns + +`JSX.Element` + +The Settings component. diff --git a/docs/docs/auto-docs/screens/UserPortal/UserScreen/UserScreen/functions/default.md b/docs/docs/auto-docs/screens/UserPortal/UserScreen/UserScreen/functions/default.md new file mode 100644 index 0000000000..877a088b72 --- /dev/null +++ b/docs/docs/auto-docs/screens/UserPortal/UserScreen/UserScreen/functions/default.md @@ -0,0 +1,19 @@ +[Admin Docs](/) + +*** + +# Function: default() + +> **default**(): `Element` + +Defined in: [src/screens/UserPortal/UserScreen/UserScreen.tsx:34](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/screens/UserPortal/UserScreen/UserScreen.tsx#L34) + +The UserScreen component serves as a container for user-specific pages +within an organization context. It provides layout and sidebar navigation +functionality based on the current organization ID and user roles. + +## Returns + +`Element` + +The UserScreen component. diff --git a/docs/docs/auto-docs/screens/UserPortal/Volunteer/Actions/Actions.mocks/variables/EMPTY_MOCKS.md b/docs/docs/auto-docs/screens/UserPortal/Volunteer/Actions/Actions.mocks/variables/EMPTY_MOCKS.md new file mode 100644 index 0000000000..927e804522 --- /dev/null +++ b/docs/docs/auto-docs/screens/UserPortal/Volunteer/Actions/Actions.mocks/variables/EMPTY_MOCKS.md @@ -0,0 +1,55 @@ +[Admin Docs](/) + +*** + +# Variable: EMPTY\_MOCKS + +> `const` **EMPTY\_MOCKS**: `object`[] + +Defined in: [src/screens/UserPortal/Volunteer/Actions/Actions.mocks.ts:232](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/screens/UserPortal/Volunteer/Actions/Actions.mocks.ts#L232) + +## Type declaration + +### request + +> **request**: `object` + +#### request.query + +> **query**: `DocumentNode` = `ACTION_ITEMS_BY_USER` + +#### request.variables + +> **variables**: `object` + +#### request.variables.orderBy + +> **orderBy**: `any` = `null` + +#### request.variables.userId + +> **userId**: `string` = `'userId'` + +#### request.variables.where + +> **where**: `object` + +#### request.variables.where.assigneeName + +> **assigneeName**: `string` = `''` + +#### request.variables.where.orgId + +> **orgId**: `string` = `'orgId'` + +### result + +> **result**: `object` + +#### result.data + +> **data**: `object` + +#### result.data.actionItemsByUser + +> **actionItemsByUser**: `any`[] = `[]` diff --git a/docs/docs/auto-docs/screens/UserPortal/Volunteer/Actions/Actions.mocks/variables/ERROR_MOCKS.md b/docs/docs/auto-docs/screens/UserPortal/Volunteer/Actions/Actions.mocks/variables/ERROR_MOCKS.md new file mode 100644 index 0000000000..0ec49ba3c6 --- /dev/null +++ b/docs/docs/auto-docs/screens/UserPortal/Volunteer/Actions/Actions.mocks/variables/ERROR_MOCKS.md @@ -0,0 +1,47 @@ +[Admin Docs](/) + +*** + +# Variable: ERROR\_MOCKS + +> `const` **ERROR\_MOCKS**: `object`[] + +Defined in: [src/screens/UserPortal/Volunteer/Actions/Actions.mocks.ts:253](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/screens/UserPortal/Volunteer/Actions/Actions.mocks.ts#L253) + +## Type declaration + +### error + +> **error**: `Error` + +### request + +> **request**: `object` + +#### request.query + +> **query**: `DocumentNode` = `ACTION_ITEMS_BY_USER` + +#### request.variables + +> **variables**: `object` + +#### request.variables.orderBy + +> **orderBy**: `any` = `null` + +#### request.variables.userId + +> **userId**: `string` = `'userId'` + +#### request.variables.where + +> **where**: `object` + +#### request.variables.where.assigneeName + +> **assigneeName**: `string` = `''` + +#### request.variables.where.orgId + +> **orgId**: `string` = `'orgId'` diff --git a/docs/docs/auto-docs/screens/UserPortal/Volunteer/Actions/Actions.mocks/variables/MOCKS.md b/docs/docs/auto-docs/screens/UserPortal/Volunteer/Actions/Actions.mocks/variables/MOCKS.md new file mode 100644 index 0000000000..c5fb742bb6 --- /dev/null +++ b/docs/docs/auto-docs/screens/UserPortal/Volunteer/Actions/Actions.mocks/variables/MOCKS.md @@ -0,0 +1,9 @@ +[Admin Docs](/) + +*** + +# Variable: MOCKS + +> `const` **MOCKS**: (\{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `orderBy`: `any`; `userId`: `string`; `where`: \{ `assigneeName`: `string`; `categoryName`: `undefined`; `orgId`: `string`; \}; \}; \}; `result`: \{ `data`: \{ `actionItemsByUser`: (\{ `_id`: `string`; `actionItemCategory`: \{ `_id`: `string`; `name`: `string`; \}; `allottedHours`: `number`; `assignee`: \{ `_id`: `string`; `user`: \{ `_id`: `string`; `firstName`: `string`; `image`: `any`; `lastName`: `string`; \}; \}; `assigneeGroup`: `any`; `assigneeType`: `string`; `assigner`: \{ `_id`: `string`; `firstName`: `string`; `image`: `any`; `lastName`: `string`; \}; `assignmentDate`: `string`; `completionDate`: `string`; `creator`: \{ `_id`: `string`; `firstName`: `string`; `lastName`: `string`; \}; `dueDate`: `string`; `event`: \{ `_id`: `string`; `title`: `string`; \}; `isCompleted`: `boolean`; `postCompletionNotes`: `string`; `preCompletionNotes`: `string`; \} \| \{ `_id`: `string`; `actionItemCategory`: \{ `_id`: `string`; `name`: `string`; \}; `allottedHours`: `number`; `assignee`: `any`; `assigneeGroup`: \{ `_id`: `string`; `name`: `string`; \}; `assigneeType`: `string`; `assigner`: \{ `_id`: `string`; `firstName`: `string`; `image`: `any`; `lastName`: `string`; \}; `assignmentDate`: `string`; `completionDate`: `string`; `creator`: \{ `_id`: `string`; `firstName`: `string`; `lastName`: `string`; \}; `dueDate`: `string`; `event`: \{ `_id`: `string`; `title`: `string`; \}; `isCompleted`: `boolean`; `postCompletionNotes`: `string`; `preCompletionNotes`: `string`; \} \| \{ `_id`: `string`; `actionItemCategory`: \{ `_id`: `string`; `name`: `string`; \}; `allottedHours`: `any`; `assignee`: \{ `_id`: `string`; `user`: \{ `_id`: `string`; `firstName`: `string`; `image`: `string`; `lastName`: `string`; \}; \}; `assigneeGroup`: `any`; `assigneeType`: `string`; `assigner`: \{ `_id`: `string`; `firstName`: `string`; `image`: `any`; `lastName`: `string`; \}; `assignmentDate`: `string`; `completionDate`: `string`; `creator`: \{ `_id`: `string`; `firstName`: `string`; `lastName`: `string`; \}; `dueDate`: `string`; `event`: \{ `_id`: `string`; `title`: `string`; \}; `isCompleted`: `boolean`; `postCompletionNotes`: `string`; `preCompletionNotes`: `string`; \})[]; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `orderBy`: `string`; `userId`: `string`; `where`: \{ `assigneeName`: `string`; `categoryName`: `undefined`; `orgId`: `string`; \}; \}; \}; `result`: \{ `data`: \{ `actionItemsByUser`: (\{ `_id`: `string`; `actionItemCategory`: \{ `_id`: `string`; `name`: `string`; \}; `allottedHours`: `number`; `assignee`: \{ `_id`: `string`; `user`: \{ `_id`: `string`; `firstName`: `string`; `image`: `any`; `lastName`: `string`; \}; \}; `assigneeGroup`: `any`; `assigneeType`: `string`; `assigner`: \{ `_id`: `string`; `firstName`: `string`; `image`: `any`; `lastName`: `string`; \}; `assignmentDate`: `string`; `completionDate`: `string`; `creator`: \{ `_id`: `string`; `firstName`: `string`; `lastName`: `string`; \}; `dueDate`: `string`; `event`: \{ `_id`: `string`; `title`: `string`; \}; `isCompleted`: `boolean`; `postCompletionNotes`: `string`; `preCompletionNotes`: `string`; \} \| \{ `_id`: `string`; `actionItemCategory`: \{ `_id`: `string`; `name`: `string`; \}; `allottedHours`: `number`; `assignee`: `any`; `assigneeGroup`: \{ `_id`: `string`; `name`: `string`; \}; `assigneeType`: `string`; `assigner`: \{ `_id`: `string`; `firstName`: `string`; `image`: `any`; `lastName`: `string`; \}; `assignmentDate`: `string`; `completionDate`: `string`; `creator`: \{ `_id`: `string`; `firstName`: `string`; `lastName`: `string`; \}; `dueDate`: `string`; `event`: \{ `_id`: `string`; `title`: `string`; \}; `isCompleted`: `boolean`; `postCompletionNotes`: `string`; `preCompletionNotes`: `string`; \})[]; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `orderBy`: `any`; `userId`: `string`; `where`: \{ `assigneeName`: `undefined`; `categoryName`: `string`; `orgId`: `string`; \}; \}; \}; `result`: \{ `data`: \{ `actionItemsByUser`: (\{ `_id`: `string`; `actionItemCategory`: \{ `_id`: `string`; `name`: `string`; \}; `allottedHours`: `number`; `assignee`: \{ `_id`: `string`; `user`: \{ `_id`: `string`; `firstName`: `string`; `image`: `any`; `lastName`: `string`; \}; \}; `assigneeGroup`: `any`; `assigneeType`: `string`; `assigner`: \{ `_id`: `string`; `firstName`: `string`; `image`: `any`; `lastName`: `string`; \}; `assignmentDate`: `string`; `completionDate`: `string`; `creator`: \{ `_id`: `string`; `firstName`: `string`; `lastName`: `string`; \}; `dueDate`: `string`; `event`: \{ `_id`: `string`; `title`: `string`; \}; `isCompleted`: `boolean`; `postCompletionNotes`: `string`; `preCompletionNotes`: `string`; \} \| \{ `_id`: `string`; `actionItemCategory`: \{ `_id`: `string`; `name`: `string`; \}; `allottedHours`: `number`; `assignee`: `any`; `assigneeGroup`: \{ `_id`: `string`; `name`: `string`; \}; `assigneeType`: `string`; `assigner`: \{ `_id`: `string`; `firstName`: `string`; `image`: `any`; `lastName`: `string`; \}; `assignmentDate`: `string`; `completionDate`: `string`; `creator`: \{ `_id`: `string`; `firstName`: `string`; `lastName`: `string`; \}; `dueDate`: `string`; `event`: \{ `_id`: `string`; `title`: `string`; \}; `isCompleted`: `boolean`; `postCompletionNotes`: `string`; `preCompletionNotes`: `string`; \})[]; \}; \}; \})[] + +Defined in: [src/screens/UserPortal/Volunteer/Actions/Actions.mocks.ts:121](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/screens/UserPortal/Volunteer/Actions/Actions.mocks.ts#L121) diff --git a/docs/docs/auto-docs/screens/UserPortal/Volunteer/Actions/Actions/functions/default.md b/docs/docs/auto-docs/screens/UserPortal/Volunteer/Actions/Actions/functions/default.md new file mode 100644 index 0000000000..70f1e870b8 --- /dev/null +++ b/docs/docs/auto-docs/screens/UserPortal/Volunteer/Actions/Actions/functions/default.md @@ -0,0 +1,19 @@ +[Admin Docs](/) + +*** + +# Function: default() + +> **default**(): `JSX.Element` + +Defined in: [src/screens/UserPortal/Volunteer/Actions/Actions.tsx:60](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/screens/UserPortal/Volunteer/Actions/Actions.tsx#L60) + +Component for managing and displaying action items within an organization. + +This component allows users to view, filter, sort, and create action items. It also handles fetching and displaying related data such as action item categories and members. + +## Returns + +`JSX.Element` + +The rendered component. diff --git a/docs/docs/auto-docs/screens/UserPortal/Volunteer/Groups/GroupModal/functions/default.md b/docs/docs/auto-docs/screens/UserPortal/Volunteer/Groups/GroupModal/functions/default.md new file mode 100644 index 0000000000..98c1e48ae3 --- /dev/null +++ b/docs/docs/auto-docs/screens/UserPortal/Volunteer/Groups/GroupModal/functions/default.md @@ -0,0 +1,49 @@ +[Admin Docs](/) + +*** + +# Function: default() + +> **default**(`props`, `deprecatedLegacyContext`?): `ReactNode` + +Defined in: [src/screens/UserPortal/Volunteer/Groups/GroupModal.tsx:71](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/screens/UserPortal/Volunteer/Groups/GroupModal.tsx#L71) + +A modal dialog for creating or editing a volunteer group. + +## Parameters + +### props + +[`InterfaceGroupModal`](../interfaces/InterfaceGroupModal.md) + +### deprecatedLegacyContext? + +`any` + +**Deprecated** + +**See** + +[React Docs](https://legacy.reactjs.org/docs/legacy-context.html#referencing-context-in-lifecycle-methods) + +## Returns + +`ReactNode` + +The rendered modal component. + +The `VolunteerGroupModal` component displays a form within a modal dialog for creating or editing a Volunteer Group. +It includes fields for entering the group name, description, volunteersRequired, and selecting volunteers/leaders. + +The modal includes: +- A header with a title indicating the current mode (create or edit) and a close button. +- A form with: + - An input field for entering the group name. + - A textarea for entering the group description. + - An input field for entering the number of volunteers required. +- A submit button to create or update the pledge. + +On form submission, the component either: +- Calls `updateVoluneerGroup` mutation to update an existing group, or + +Success or error messages are displayed using toast notifications based on the result of the mutation. diff --git a/docs/docs/auto-docs/screens/UserPortal/Volunteer/Groups/GroupModal/interfaces/InterfaceGroupModal.md b/docs/docs/auto-docs/screens/UserPortal/Volunteer/Groups/GroupModal/interfaces/InterfaceGroupModal.md new file mode 100644 index 0000000000..cf8bb9dd35 --- /dev/null +++ b/docs/docs/auto-docs/screens/UserPortal/Volunteer/Groups/GroupModal/interfaces/InterfaceGroupModal.md @@ -0,0 +1,55 @@ +[Admin Docs](/) + +*** + +# Interface: InterfaceGroupModal + +Defined in: [src/screens/UserPortal/Volunteer/Groups/GroupModal.tsx:35](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/screens/UserPortal/Volunteer/Groups/GroupModal.tsx#L35) + +## Properties + +### eventId + +> **eventId**: `string` + +Defined in: [src/screens/UserPortal/Volunteer/Groups/GroupModal.tsx:38](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/screens/UserPortal/Volunteer/Groups/GroupModal.tsx#L38) + +*** + +### group + +> **group**: [`InterfaceVolunteerGroupInfo`](../../../../../../utils/interfaces/interfaces/InterfaceVolunteerGroupInfo.md) + +Defined in: [src/screens/UserPortal/Volunteer/Groups/GroupModal.tsx:39](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/screens/UserPortal/Volunteer/Groups/GroupModal.tsx#L39) + +*** + +### hide() + +> **hide**: () => `void` + +Defined in: [src/screens/UserPortal/Volunteer/Groups/GroupModal.tsx:37](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/screens/UserPortal/Volunteer/Groups/GroupModal.tsx#L37) + +#### Returns + +`void` + +*** + +### isOpen + +> **isOpen**: `boolean` + +Defined in: [src/screens/UserPortal/Volunteer/Groups/GroupModal.tsx:36](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/screens/UserPortal/Volunteer/Groups/GroupModal.tsx#L36) + +*** + +### refetchGroups() + +> **refetchGroups**: () => `void` + +Defined in: [src/screens/UserPortal/Volunteer/Groups/GroupModal.tsx:40](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/screens/UserPortal/Volunteer/Groups/GroupModal.tsx#L40) + +#### Returns + +`void` diff --git a/docs/docs/auto-docs/screens/UserPortal/Volunteer/Groups/Groups.mocks/variables/EMPTY_MOCKS.md b/docs/docs/auto-docs/screens/UserPortal/Volunteer/Groups/Groups.mocks/variables/EMPTY_MOCKS.md new file mode 100644 index 0000000000..029d2cd72a --- /dev/null +++ b/docs/docs/auto-docs/screens/UserPortal/Volunteer/Groups/Groups.mocks/variables/EMPTY_MOCKS.md @@ -0,0 +1,9 @@ +[Admin Docs](/) + +*** + +# Variable: EMPTY\_MOCKS + +> `const` **EMPTY\_MOCKS**: (\{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `orderBy`: `any`; `where`: \{ `eventId`: `undefined`; `group`: `undefined`; `leaderName`: `any`; `name_contains`: `string`; `orgId`: `string`; `status`: `undefined`; `userId`: `string`; \}; \}; \}; `result`: \{ `data`: \{ `getEventVolunteerGroups`: `any`[]; `getVolunteerMembership`: `undefined`; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `orderBy`: `undefined`; `where`: \{ `eventId`: `string`; `group`: `string`; `leaderName`: `undefined`; `name_contains`: `undefined`; `orgId`: `undefined`; `status`: `string`; `userId`: `undefined`; \}; \}; \}; `result`: \{ `data`: \{ `getEventVolunteerGroups`: `undefined`; `getVolunteerMembership`: `any`[]; \}; \}; \})[] + +Defined in: [src/screens/UserPortal/Volunteer/Groups/Groups.mocks.ts:368](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/screens/UserPortal/Volunteer/Groups/Groups.mocks.ts#L368) diff --git a/docs/docs/auto-docs/screens/UserPortal/Volunteer/Groups/Groups.mocks/variables/ERROR_MOCKS.md b/docs/docs/auto-docs/screens/UserPortal/Volunteer/Groups/Groups.mocks/variables/ERROR_MOCKS.md new file mode 100644 index 0000000000..8e77de0a1d --- /dev/null +++ b/docs/docs/auto-docs/screens/UserPortal/Volunteer/Groups/Groups.mocks/variables/ERROR_MOCKS.md @@ -0,0 +1,51 @@ +[Admin Docs](/) + +*** + +# Variable: ERROR\_MOCKS + +> `const` **ERROR\_MOCKS**: `object`[] + +Defined in: [src/screens/UserPortal/Volunteer/Groups/Groups.mocks.ts:407](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/screens/UserPortal/Volunteer/Groups/Groups.mocks.ts#L407) + +## Type declaration + +### error + +> **error**: `Error` + +### request + +> **request**: `object` + +#### request.query + +> **query**: `DocumentNode` = `EVENT_VOLUNTEER_GROUP_LIST` + +#### request.variables + +> **variables**: `object` + +#### request.variables.orderBy + +> **orderBy**: `any` = `null` + +#### request.variables.where + +> **where**: `object` + +#### request.variables.where.leaderName + +> **leaderName**: `any` = `null` + +#### request.variables.where.name\_contains + +> **name\_contains**: `string` = `''` + +#### request.variables.where.orgId + +> **orgId**: `string` = `'orgId'` + +#### request.variables.where.userId + +> **userId**: `string` = `'userId'` diff --git a/docs/docs/auto-docs/screens/UserPortal/Volunteer/Groups/Groups.mocks/variables/MOCKS.md b/docs/docs/auto-docs/screens/UserPortal/Volunteer/Groups/Groups.mocks/variables/MOCKS.md new file mode 100644 index 0000000000..379d6b301f --- /dev/null +++ b/docs/docs/auto-docs/screens/UserPortal/Volunteer/Groups/Groups.mocks/variables/MOCKS.md @@ -0,0 +1,9 @@ +[Admin Docs](/) + +*** + +# Variable: MOCKS + +> `const` **MOCKS**: (\{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `data`: `undefined`; `id`: `undefined`; `orderBy`: `string`; `status`: `undefined`; `where`: \{ `eventId`: `undefined`; `groupId`: `undefined`; `leaderName`: `any`; `name_contains`: `string`; `orgId`: `string`; `status`: `undefined`; `userId`: `string`; \}; \}; \}; `result`: \{ `data`: \{ `getEventVolunteerGroups`: `object`[]; `getVolunteerMembership`: `undefined`; `updateEventVolunteerGroup`: `undefined`; `updateVolunteerMembership`: `undefined`; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `data`: `undefined`; `id`: `undefined`; `orderBy`: `any`; `status`: `undefined`; `where`: \{ `eventId`: `undefined`; `groupId`: `undefined`; `leaderName`: `string`; `name_contains`: `any`; `orgId`: `string`; `status`: `undefined`; `userId`: `string`; \}; \}; \}; `result`: \{ `data`: \{ `getEventVolunteerGroups`: `object`[]; `getVolunteerMembership`: `undefined`; `updateEventVolunteerGroup`: `undefined`; `updateVolunteerMembership`: `undefined`; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `data`: `undefined`; `id`: `undefined`; `orderBy`: `undefined`; `status`: `undefined`; `where`: \{ `eventId`: `string`; `groupId`: `string`; `leaderName`: `undefined`; `name_contains`: `undefined`; `orgId`: `undefined`; `status`: `string`; `userId`: `undefined`; \}; \}; \}; `result`: \{ `data`: \{ `getEventVolunteerGroups`: `undefined`; `getVolunteerMembership`: `object`[]; `updateEventVolunteerGroup`: `undefined`; `updateVolunteerMembership`: `undefined`; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `data`: `undefined`; `id`: `string`; `orderBy`: `undefined`; `status`: `string`; `where`: `undefined`; \}; \}; `result`: \{ `data`: \{ `getEventVolunteerGroups`: `undefined`; `getVolunteerMembership`: `undefined`; `updateEventVolunteerGroup`: `undefined`; `updateVolunteerMembership`: \{ `_id`: `string`; \}; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `data`: \{ `description`: `string`; `eventId`: `string`; `name`: `string`; `volunteersRequired`: `number`; \}; `id`: `string`; `orderBy`: `undefined`; `status`: `undefined`; `where`: `undefined`; \}; \}; `result`: \{ `data`: \{ `getEventVolunteerGroups`: `undefined`; `getVolunteerMembership`: `undefined`; `updateEventVolunteerGroup`: \{ `_id`: `string`; \}; `updateVolunteerMembership`: `undefined`; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `data`: \{ `description`: `undefined`; `eventId`: `string`; `name`: `undefined`; `volunteersRequired`: `undefined`; \}; `id`: `string`; `orderBy`: `undefined`; `status`: `undefined`; `where`: `undefined`; \}; \}; `result`: \{ `data`: \{ `getEventVolunteerGroups`: `undefined`; `getVolunteerMembership`: `undefined`; `updateEventVolunteerGroup`: \{ `_id`: `string`; \}; `updateVolunteerMembership`: `undefined`; \}; \}; \})[] + +Defined in: [src/screens/UserPortal/Volunteer/Groups/Groups.mocks.ts:163](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/screens/UserPortal/Volunteer/Groups/Groups.mocks.ts#L163) diff --git a/docs/docs/auto-docs/screens/UserPortal/Volunteer/Groups/Groups.mocks/variables/UPDATE_ERROR_MOCKS.md b/docs/docs/auto-docs/screens/UserPortal/Volunteer/Groups/Groups.mocks/variables/UPDATE_ERROR_MOCKS.md new file mode 100644 index 0000000000..d1c5377d94 --- /dev/null +++ b/docs/docs/auto-docs/screens/UserPortal/Volunteer/Groups/Groups.mocks/variables/UPDATE_ERROR_MOCKS.md @@ -0,0 +1,9 @@ +[Admin Docs](/) + +*** + +# Variable: UPDATE\_ERROR\_MOCKS + +> `const` **UPDATE\_ERROR\_MOCKS**: (\{ `error`: `undefined`; `request`: \{ `query`: `DocumentNode`; `variables`: \{ `data`: `undefined`; `id`: `undefined`; `status`: `undefined`; `where`: \{ `eventId`: `string`; `groupId`: `string`; `status`: `string`; \}; \}; \}; `result`: \{ `data`: \{ `getVolunteerMembership`: `object`[]; \}; \}; \} \| \{ `error`: `Error`; `request`: \{ `query`: `DocumentNode`; `variables`: \{ `data`: `undefined`; `id`: `string`; `status`: `string`; `where`: `undefined`; \}; \}; `result`: `undefined`; \} \| \{ `error`: `Error`; `request`: \{ `query`: `DocumentNode`; `variables`: \{ `data`: \{ `description`: `string`; `eventId`: `string`; `name`: `string`; `volunteersRequired`: `number`; \}; `id`: `string`; `status`: `undefined`; `where`: `undefined`; \}; \}; `result`: `undefined`; \})[] + +Defined in: [src/screens/UserPortal/Volunteer/Groups/Groups.mocks.ts:425](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/screens/UserPortal/Volunteer/Groups/Groups.mocks.ts#L425) diff --git a/docs/docs/auto-docs/screens/UserPortal/Volunteer/Groups/Groups/functions/default.md b/docs/docs/auto-docs/screens/UserPortal/Volunteer/Groups/Groups/functions/default.md new file mode 100644 index 0000000000..89fc6d99ad --- /dev/null +++ b/docs/docs/auto-docs/screens/UserPortal/Volunteer/Groups/Groups/functions/default.md @@ -0,0 +1,18 @@ +[Admin Docs](/) + +*** + +# Function: default() + +> **default**(): `JSX.Element` + +Defined in: [src/screens/UserPortal/Volunteer/Groups/Groups.tsx:55](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/screens/UserPortal/Volunteer/Groups/Groups.tsx#L55) + +Component for managing volunteer groups for an event. +This component allows users to view, filter, sort, and create action items. It also provides a modal for creating and editing action items. + +## Returns + +`JSX.Element` + +The rendered component. diff --git a/docs/docs/auto-docs/screens/UserPortal/Volunteer/Invitations/Invitations.mocks/variables/EMPTY_MOCKS.md b/docs/docs/auto-docs/screens/UserPortal/Volunteer/Invitations/Invitations.mocks/variables/EMPTY_MOCKS.md new file mode 100644 index 0000000000..b050223bd6 --- /dev/null +++ b/docs/docs/auto-docs/screens/UserPortal/Volunteer/Invitations/Invitations.mocks/variables/EMPTY_MOCKS.md @@ -0,0 +1,51 @@ +[Admin Docs](/) + +*** + +# Variable: EMPTY\_MOCKS + +> `const` **EMPTY\_MOCKS**: `object`[] + +Defined in: [src/screens/UserPortal/Volunteer/Invitations/Invitations.mocks.ts:189](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/screens/UserPortal/Volunteer/Invitations/Invitations.mocks.ts#L189) + +## Type declaration + +### request + +> **request**: `object` + +#### request.query + +> **query**: `DocumentNode` = `USER_VOLUNTEER_MEMBERSHIP` + +#### request.variables + +> **variables**: `object` + +#### request.variables.where + +> **where**: `object` + +#### request.variables.where.filter + +> **filter**: `any` = `null` + +#### request.variables.where.status + +> **status**: `string` = `'invited'` + +#### request.variables.where.userId + +> **userId**: `string` = `'userId'` + +### result + +> **result**: `object` + +#### result.data + +> **data**: `object` + +#### result.data.getVolunteerMembership + +> **getVolunteerMembership**: `any`[] = `[]` diff --git a/docs/docs/auto-docs/screens/UserPortal/Volunteer/Invitations/Invitations.mocks/variables/ERROR_MOCKS.md b/docs/docs/auto-docs/screens/UserPortal/Volunteer/Invitations/Invitations.mocks/variables/ERROR_MOCKS.md new file mode 100644 index 0000000000..8d5e17634a --- /dev/null +++ b/docs/docs/auto-docs/screens/UserPortal/Volunteer/Invitations/Invitations.mocks/variables/ERROR_MOCKS.md @@ -0,0 +1,9 @@ +[Admin Docs](/) + +*** + +# Variable: ERROR\_MOCKS + +> `const` **ERROR\_MOCKS**: (\{ `error`: `Error`; `request`: \{ `query`: `DocumentNode`; `variables`: \{ `id`: `undefined`; `status`: `undefined`; `where`: \{ `filter`: `any`; `status`: `string`; `userId`: `string`; \}; \}; \}; \} \| \{ `error`: `Error`; `request`: \{ `query`: `DocumentNode`; `variables`: \{ `id`: `string`; `status`: `string`; `where`: `undefined`; \}; \}; \})[] + +Defined in: [src/screens/UserPortal/Volunteer/Invitations/Invitations.mocks.ts:209](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/screens/UserPortal/Volunteer/Invitations/Invitations.mocks.ts#L209) diff --git a/docs/docs/auto-docs/screens/UserPortal/Volunteer/Invitations/Invitations.mocks/variables/MOCKS.md b/docs/docs/auto-docs/screens/UserPortal/Volunteer/Invitations/Invitations.mocks/variables/MOCKS.md new file mode 100644 index 0000000000..e5692ba270 --- /dev/null +++ b/docs/docs/auto-docs/screens/UserPortal/Volunteer/Invitations/Invitations.mocks/variables/MOCKS.md @@ -0,0 +1,9 @@ +[Admin Docs](/) + +*** + +# Variable: MOCKS + +> `const` **MOCKS**: (\{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `id`: `undefined`; `orderBy`: `undefined`; `status`: `undefined`; `where`: \{ `eventTitle`: `undefined`; `filter`: `any`; `status`: `string`; `userId`: `string`; \}; \}; \}; `result`: \{ `data`: \{ `getVolunteerMembership`: (\{ `_id`: `string`; `createdAt`: `string`; `event`: \{ `_id`: `string`; `startDate`: `string`; `title`: `string`; \}; `group`: `any`; `status`: `string`; `volunteer`: \{ `_id`: `string`; `user`: \{ `_id`: `string`; `firstName`: `string`; `image`: `string`; `lastName`: `string`; \}; \}; \} \| \{ `_id`: `string`; `createdAt`: `string`; `event`: \{ `_id`: `string`; `startDate`: `string`; `title`: `string`; \}; `group`: \{ `_id`: `string`; `name`: `string`; \}; `status`: `string`; `volunteer`: \{ `_id`: `string`; `user`: \{ `_id`: `string`; `firstName`: `string`; `image`: `any`; `lastName`: `string`; \}; \}; \})[]; `updateVolunteerMembership`: `undefined`; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `id`: `undefined`; `orderBy`: `string`; `status`: `undefined`; `where`: \{ `eventTitle`: `undefined`; `filter`: `any`; `status`: `string`; `userId`: `string`; \}; \}; \}; `result`: \{ `data`: \{ `getVolunteerMembership`: (\{ `_id`: `string`; `createdAt`: `string`; `event`: \{ `_id`: `string`; `startDate`: `string`; `title`: `string`; \}; `group`: `any`; `status`: `string`; `volunteer`: \{ `_id`: `string`; `user`: \{ `_id`: `string`; `firstName`: `string`; `image`: `string`; `lastName`: `string`; \}; \}; \} \| \{ `_id`: `string`; `createdAt`: `string`; `event`: \{ `_id`: `string`; `startDate`: `string`; `title`: `string`; \}; `group`: \{ `_id`: `string`; `name`: `string`; \}; `status`: `string`; `volunteer`: \{ `_id`: `string`; `user`: \{ `_id`: `string`; `firstName`: `string`; `image`: `any`; `lastName`: `string`; \}; \}; \})[]; `updateVolunteerMembership`: `undefined`; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `id`: `undefined`; `orderBy`: `undefined`; `status`: `undefined`; `where`: \{ `eventTitle`: `undefined`; `filter`: `string`; `status`: `string`; `userId`: `string`; \}; \}; \}; `result`: \{ `data`: \{ `getVolunteerMembership`: `object`[]; `updateVolunteerMembership`: `undefined`; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `id`: `undefined`; `orderBy`: `undefined`; `status`: `undefined`; `where`: \{ `eventTitle`: `undefined`; `filter`: `string`; `status`: `string`; `userId`: `string`; \}; \}; \}; `result`: \{ `data`: \{ `getVolunteerMembership`: `object`[]; `updateVolunteerMembership`: `undefined`; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `id`: `undefined`; `orderBy`: `undefined`; `status`: `undefined`; `where`: \{ `eventTitle`: `string`; `filter`: `any`; `status`: `string`; `userId`: `string`; \}; \}; \}; `result`: \{ `data`: \{ `getVolunteerMembership`: `object`[]; `updateVolunteerMembership`: `undefined`; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `id`: `string`; `orderBy`: `undefined`; `status`: `string`; `where`: `undefined`; \}; \}; `result`: \{ `data`: \{ `getVolunteerMembership`: `undefined`; `updateVolunteerMembership`: \{ `_id`: `string`; \}; \}; \}; \})[] + +Defined in: [src/screens/UserPortal/Volunteer/Invitations/Invitations.mocks.ts:49](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/screens/UserPortal/Volunteer/Invitations/Invitations.mocks.ts#L49) diff --git a/docs/docs/auto-docs/screens/UserPortal/Volunteer/Invitations/Invitations.mocks/variables/UPDATE_ERROR_MOCKS.md b/docs/docs/auto-docs/screens/UserPortal/Volunteer/Invitations/Invitations.mocks/variables/UPDATE_ERROR_MOCKS.md new file mode 100644 index 0000000000..2d4404abe2 --- /dev/null +++ b/docs/docs/auto-docs/screens/UserPortal/Volunteer/Invitations/Invitations.mocks/variables/UPDATE_ERROR_MOCKS.md @@ -0,0 +1,9 @@ +[Admin Docs](/) + +*** + +# Variable: UPDATE\_ERROR\_MOCKS + +> `const` **UPDATE\_ERROR\_MOCKS**: (\{ `error`: `undefined`; `request`: \{ `query`: `DocumentNode`; `variables`: \{ `id`: `undefined`; `status`: `undefined`; `where`: \{ `filter`: `any`; `status`: `string`; `userId`: `string`; \}; \}; \}; `result`: \{ `data`: \{ `getVolunteerMembership`: (\{ `_id`: `string`; `createdAt`: `string`; `event`: \{ `_id`: `string`; `startDate`: `string`; `title`: `string`; \}; `group`: `any`; `status`: `string`; `volunteer`: \{ `_id`: `string`; `user`: \{ `_id`: `string`; `firstName`: `string`; `image`: `string`; `lastName`: `string`; \}; \}; \} \| \{ `_id`: `string`; `createdAt`: `string`; `event`: \{ `_id`: `string`; `startDate`: `string`; `title`: `string`; \}; `group`: \{ `_id`: `string`; `name`: `string`; \}; `status`: `string`; `volunteer`: \{ `_id`: `string`; `user`: \{ `_id`: `string`; `firstName`: `string`; `image`: `any`; `lastName`: `string`; \}; \}; \})[]; \}; \}; \} \| \{ `error`: `Error`; `request`: \{ `query`: `DocumentNode`; `variables`: \{ `id`: `string`; `status`: `string`; `where`: `undefined`; \}; \}; `result`: `undefined`; \})[] + +Defined in: [src/screens/UserPortal/Volunteer/Invitations/Invitations.mocks.ts:235](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/screens/UserPortal/Volunteer/Invitations/Invitations.mocks.ts#L235) diff --git a/docs/docs/auto-docs/screens/UserPortal/Volunteer/Invitations/Invitations/functions/default.md b/docs/docs/auto-docs/screens/UserPortal/Volunteer/Invitations/Invitations/functions/default.md new file mode 100644 index 0000000000..c53ad59b3d --- /dev/null +++ b/docs/docs/auto-docs/screens/UserPortal/Volunteer/Invitations/Invitations/functions/default.md @@ -0,0 +1,18 @@ +[Admin Docs](/) + +*** + +# Function: default() + +> **default**(): `Element` + +Defined in: [src/screens/UserPortal/Volunteer/Invitations/Invitations.tsx:32](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/screens/UserPortal/Volunteer/Invitations/Invitations.tsx#L32) + +The `Invitations` component displays list of invites for the user to volunteer. +It allows the user to search, sort, and accept/reject invites. + +## Returns + +`Element` + +The rendered component displaying the upcoming events. diff --git a/docs/docs/auto-docs/screens/UserPortal/Volunteer/UpcomingEvents/UpcomingEvents.mocks/variables/CREATE_ERROR_MOCKS.md b/docs/docs/auto-docs/screens/UserPortal/Volunteer/UpcomingEvents/UpcomingEvents.mocks/variables/CREATE_ERROR_MOCKS.md new file mode 100644 index 0000000000..f919152366 --- /dev/null +++ b/docs/docs/auto-docs/screens/UserPortal/Volunteer/UpcomingEvents/UpcomingEvents.mocks/variables/CREATE_ERROR_MOCKS.md @@ -0,0 +1,9 @@ +[Admin Docs](/) + +*** + +# Variable: CREATE\_ERROR\_MOCKS + +> `const` **CREATE\_ERROR\_MOCKS**: (\{ `error`: `undefined`; `request`: \{ `query`: `DocumentNode`; `variables`: \{ `data`: `undefined`; `first`: `any`; `location_contains`: `string`; `organization_id`: `string`; `skip`: `any`; `title_contains`: `string`; `upcomingOnly`: `boolean`; \}; \}; `result`: \{ `data`: \{ `eventsByOrganizationConnection`: `object`[]; \}; \}; \} \| \{ `error`: `Error`; `request`: \{ `query`: `DocumentNode`; `variables`: \{ `data`: \{ `event`: `string`; `group`: `any`; `status`: `string`; `userId`: `string`; \}; `first`: `undefined`; `location_contains`: `undefined`; `organization_id`: `undefined`; `skip`: `undefined`; `title_contains`: `undefined`; `upcomingOnly`: `undefined`; \}; \}; `result`: `undefined`; \})[] + +Defined in: [src/screens/UserPortal/Volunteer/UpcomingEvents/UpcomingEvents.mocks.ts:248](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/screens/UserPortal/Volunteer/UpcomingEvents/UpcomingEvents.mocks.ts#L248) diff --git a/docs/docs/auto-docs/screens/UserPortal/Volunteer/UpcomingEvents/UpcomingEvents.mocks/variables/EMPTY_MOCKS.md b/docs/docs/auto-docs/screens/UserPortal/Volunteer/UpcomingEvents/UpcomingEvents.mocks/variables/EMPTY_MOCKS.md new file mode 100644 index 0000000000..a90dba4da4 --- /dev/null +++ b/docs/docs/auto-docs/screens/UserPortal/Volunteer/UpcomingEvents/UpcomingEvents.mocks/variables/EMPTY_MOCKS.md @@ -0,0 +1,59 @@ +[Admin Docs](/) + +*** + +# Variable: EMPTY\_MOCKS + +> `const` **EMPTY\_MOCKS**: `object`[] + +Defined in: [src/screens/UserPortal/Volunteer/UpcomingEvents/UpcomingEvents.mocks.ts:210](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/screens/UserPortal/Volunteer/UpcomingEvents/UpcomingEvents.mocks.ts#L210) + +## Type declaration + +### request + +> **request**: `object` + +#### request.query + +> **query**: `DocumentNode` = `USER_EVENTS_VOLUNTEER` + +#### request.variables + +> **variables**: `object` + +#### request.variables.first + +> **first**: `any` = `null` + +#### request.variables.location\_contains + +> **location\_contains**: `string` = `''` + +#### request.variables.organization\_id + +> **organization\_id**: `string` = `'orgId'` + +#### request.variables.skip + +> **skip**: `any` = `null` + +#### request.variables.title\_contains + +> **title\_contains**: `string` = `''` + +#### request.variables.upcomingOnly + +> **upcomingOnly**: `boolean` = `true` + +### result + +> **result**: `object` + +#### result.data + +> **data**: `object` + +#### result.data.eventsByOrganizationConnection + +> **eventsByOrganizationConnection**: `any`[] = `[]` diff --git a/docs/docs/auto-docs/screens/UserPortal/Volunteer/UpcomingEvents/UpcomingEvents.mocks/variables/ERROR_MOCKS.md b/docs/docs/auto-docs/screens/UserPortal/Volunteer/UpcomingEvents/UpcomingEvents.mocks/variables/ERROR_MOCKS.md new file mode 100644 index 0000000000..3ccbdb4c0a --- /dev/null +++ b/docs/docs/auto-docs/screens/UserPortal/Volunteer/UpcomingEvents/UpcomingEvents.mocks/variables/ERROR_MOCKS.md @@ -0,0 +1,51 @@ +[Admin Docs](/) + +*** + +# Variable: ERROR\_MOCKS + +> `const` **ERROR\_MOCKS**: `object`[] + +Defined in: [src/screens/UserPortal/Volunteer/UpcomingEvents/UpcomingEvents.mocks.ts:231](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/screens/UserPortal/Volunteer/UpcomingEvents/UpcomingEvents.mocks.ts#L231) + +## Type declaration + +### error + +> **error**: `Error` + +### request + +> **request**: `object` + +#### request.query + +> **query**: `DocumentNode` = `USER_EVENTS_VOLUNTEER` + +#### request.variables + +> **variables**: `object` + +#### request.variables.first + +> **first**: `any` = `null` + +#### request.variables.location\_contains + +> **location\_contains**: `string` = `''` + +#### request.variables.organization\_id + +> **organization\_id**: `string` = `'orgId'` + +#### request.variables.skip + +> **skip**: `any` = `null` + +#### request.variables.title\_contains + +> **title\_contains**: `string` = `''` + +#### request.variables.upcomingOnly + +> **upcomingOnly**: `boolean` = `true` diff --git a/docs/docs/auto-docs/screens/UserPortal/Volunteer/UpcomingEvents/UpcomingEvents.mocks/variables/MOCKS.md b/docs/docs/auto-docs/screens/UserPortal/Volunteer/UpcomingEvents/UpcomingEvents.mocks/variables/MOCKS.md new file mode 100644 index 0000000000..8c66dd3f2b --- /dev/null +++ b/docs/docs/auto-docs/screens/UserPortal/Volunteer/UpcomingEvents/UpcomingEvents.mocks/variables/MOCKS.md @@ -0,0 +1,9 @@ +[Admin Docs](/) + +*** + +# Variable: MOCKS + +> `const` **MOCKS**: (\{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `data`: `undefined`; `first`: `any`; `location_contains`: `string`; `organization_id`: `string`; `skip`: `any`; `title_contains`: `string`; `upcomingOnly`: `boolean`; \}; \}; `result`: \{ `data`: \{ `createVolunteerMembership`: `undefined`; `eventsByOrganizationConnection`: `object`[]; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `data`: \{ `event`: `string`; `group`: `string`; `status`: `string`; `userId`: `string`; \}; `first`: `undefined`; `location_contains`: `undefined`; `organization_id`: `undefined`; `skip`: `undefined`; `title_contains`: `undefined`; `upcomingOnly`: `undefined`; \}; \}; `result`: \{ `data`: \{ `createVolunteerMembership`: \{ `_id`: `string`; \}; `eventsByOrganizationConnection`: `undefined`; \}; \}; \})[] + +Defined in: [src/screens/UserPortal/Volunteer/UpcomingEvents/UpcomingEvents.mocks.ts:113](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/screens/UserPortal/Volunteer/UpcomingEvents/UpcomingEvents.mocks.ts#L113) diff --git a/docs/docs/auto-docs/screens/UserPortal/Volunteer/UpcomingEvents/UpcomingEvents/functions/default.md b/docs/docs/auto-docs/screens/UserPortal/Volunteer/UpcomingEvents/UpcomingEvents/functions/default.md new file mode 100644 index 0000000000..7839f95b6b --- /dev/null +++ b/docs/docs/auto-docs/screens/UserPortal/Volunteer/UpcomingEvents/UpcomingEvents/functions/default.md @@ -0,0 +1,18 @@ +[Admin Docs](/) + +*** + +# Function: default() + +> **default**(): `Element` + +Defined in: [src/screens/UserPortal/Volunteer/UpcomingEvents/UpcomingEvents.tsx:42](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/screens/UserPortal/Volunteer/UpcomingEvents/UpcomingEvents.tsx#L42) + +The `UpcomingEvents` component displays list of upcoming events for the user to volunteer. +It allows the user to search, sort, and volunteer for events/volunteer groups. + +## Returns + +`Element` + +The rendered component displaying the upcoming events. diff --git a/docs/docs/auto-docs/screens/UserPortal/Volunteer/VolunteerManagement/functions/default.md b/docs/docs/auto-docs/screens/UserPortal/Volunteer/VolunteerManagement/functions/default.md new file mode 100644 index 0000000000..97e911cab4 --- /dev/null +++ b/docs/docs/auto-docs/screens/UserPortal/Volunteer/VolunteerManagement/functions/default.md @@ -0,0 +1,23 @@ +[Admin Docs](/) + +*** + +# Function: default() + +> **default**(): `Element` + +Defined in: [src/screens/UserPortal/Volunteer/VolunteerManagement.tsx:58](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/screens/UserPortal/Volunteer/VolunteerManagement.tsx#L58) + +`VolunteerManagement` component handles the display and navigation of different event management sections. + +It provides a tabbed interface for: +- Viewing upcoming events to volunteer +- Managing volunteer requests +- Managing volunteer invitations +- Managing volunteer groups + +## Returns + +`Element` + +JSX.Element - The `VolunteerManagement` component. diff --git a/docs/docs/auto-docs/screens/Users/Users/functions/default.md b/docs/docs/auto-docs/screens/Users/Users/functions/default.md new file mode 100644 index 0000000000..9fa02e7fde --- /dev/null +++ b/docs/docs/auto-docs/screens/Users/Users/functions/default.md @@ -0,0 +1,53 @@ +[Admin Docs](/) + +*** + +# Function: default() + +> **default**(): `Element` + +Defined in: [src/screens/Users/Users.tsx:64](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/screens/Users/Users.tsx#L64) + +The `Users` component is responsible for displaying a list of users in a paginated and sortable format. +It supports search functionality, filtering, and sorting of users. The component integrates with GraphQL +for fetching and managing user data and displays results with infinite scrolling. + +## Features: +- **Search:** Allows users to search for users by their first name. +- **Sorting:** Provides options to sort users by creation date (newest or oldest). +- **Filtering:** Enables filtering users based on their roles (admin, superadmin, user, etc.). +- **Pagination:** Utilizes infinite scrolling to load more users as the user scrolls down. + +## GraphQL Queries: +- `USER_LIST`: Fetches a list of users with specified search, sorting, and pagination parameters. +- `ORGANIZATION_CONNECTION_LIST`: Fetches a list of organizations to verify organization existence. + +## Component State: +- `isLoading`: Indicates whether the component is currently loading data. +- `hasMore`: Indicates if there are more users to load. +- `isLoadingMore`: Indicates if more users are currently being loaded. +- `searchByName`: The current search query for user names. +- `sortingOption`: The current sorting option (newest or oldest). +- `filteringOption`: The current filtering option (admin, superadmin, user, cancel). +- `displayedUsers`: The list of users currently displayed, filtered and sorted. + +## Event Handlers: +- `handleSearch`: Handles searching users by name and refetches the user list. +- `handleSearchByEnter`: Handles search input when the Enter key is pressed. +- `handleSearchByBtnClick`: Handles search input when the search button is clicked. +- `resetAndRefetch`: Resets search and refetches the user list with default parameters. +- `loadMoreUsers`: Loads more users when scrolling reaches the end of the list. +- `handleSorting`: Updates sorting option and refetches the user list. +- `handleFiltering`: Updates filtering option and refetches the user list. + +## Rendering: +- Displays a search input and button for searching users. +- Provides dropdowns for sorting and filtering users. +- Renders a table of users with infinite scrolling support. +- Shows appropriate messages when no users are found or when search yields no results. + +## Returns + +`Element` + +The rendered `Users` component. diff --git a/docs/docs/auto-docs/screens/Users/UsersMocks/variables/EMPTY_MOCKS.md b/docs/docs/auto-docs/screens/Users/UsersMocks/variables/EMPTY_MOCKS.md new file mode 100644 index 0000000000..a1235a6067 --- /dev/null +++ b/docs/docs/auto-docs/screens/Users/UsersMocks/variables/EMPTY_MOCKS.md @@ -0,0 +1,9 @@ +[Admin Docs](/) + +*** + +# Variable: EMPTY\_MOCKS + +> `const` **EMPTY\_MOCKS**: (\{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `first`: `number`; `firstName_contains`: `string`; `lastName_contains`: `string`; `skip`: `number`; \}; \}; `result`: \{ `data`: \{ `organizationsConnection`: `undefined`; `users`: `any`[]; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: `undefined`; \}; `result`: \{ `data`: \{ `organizationsConnection`: `any`[]; `users`: `undefined`; \}; \}; \})[] + +Defined in: [src/screens/Users/UsersMocks.ts:477](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/screens/Users/UsersMocks.ts#L477) diff --git a/docs/docs/auto-docs/screens/Users/UsersMocks/variables/MOCKS.md b/docs/docs/auto-docs/screens/Users/UsersMocks/variables/MOCKS.md new file mode 100644 index 0000000000..863846093d --- /dev/null +++ b/docs/docs/auto-docs/screens/Users/UsersMocks/variables/MOCKS.md @@ -0,0 +1,9 @@ +[Admin Docs](/) + +*** + +# Variable: MOCKS + +> `const` **MOCKS**: (\{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `first`: `undefined`; `firstName_contains`: `undefined`; `id`: `string`; `lastName_contains`: `undefined`; `skip`: `undefined`; \}; \}; `result`: \{ `data`: \{ `organizationsConnection`: `undefined`; `user`: \{ `email`: `string`; `firstName`: `string`; `image`: `string`; `lastName`: `string`; \}; `users`: `undefined`; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `first`: `number`; `firstName_contains`: `string`; `id`: `undefined`; `lastName_contains`: `string`; `skip`: `number`; \}; \}; `result`: \{ `data`: \{ `organizationsConnection`: `undefined`; `user`: `undefined`; `users`: `object`[]; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: `undefined`; \}; `result`: \{ `data`: \{ `organizationsConnection`: `object`[]; `user`: `undefined`; `users`: `undefined`; \}; \}; \})[] + +Defined in: [src/screens/Users/UsersMocks.ts:7](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/screens/Users/UsersMocks.ts#L7) diff --git a/docs/docs/auto-docs/screens/Users/UsersMocks/variables/MOCKS2.md b/docs/docs/auto-docs/screens/Users/UsersMocks/variables/MOCKS2.md new file mode 100644 index 0000000000..319bf12c87 --- /dev/null +++ b/docs/docs/auto-docs/screens/Users/UsersMocks/variables/MOCKS2.md @@ -0,0 +1,9 @@ +[Admin Docs](/) + +*** + +# Variable: MOCKS2 + +> `const` **MOCKS2**: (\{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `first`: `undefined`; `firstName_contains`: `undefined`; `id`: `string`; `lastName_contains`: `undefined`; `skip`: `undefined`; \}; \}; `result`: \{ `data`: \{ `organizationsConnection`: `undefined`; `user`: \{ `email`: `string`; `firstName`: `string`; `image`: `string`; `lastName`: `string`; \}; `users`: `undefined`; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `first`: `number`; `firstName_contains`: `string`; `id`: `undefined`; `lastName_contains`: `string`; `skip`: `number`; \}; \}; `result`: \{ `data`: \{ `organizationsConnection`: `undefined`; `user`: `undefined`; `users`: `object`[]; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: `undefined`; \}; `result`: \{ `data`: \{ `organizationsConnection`: `object`[]; `user`: `undefined`; `users`: `undefined`; \}; \}; \})[] + +Defined in: [src/screens/Users/UsersMocks.ts:242](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/screens/Users/UsersMocks.ts#L242) diff --git a/docs/docs/auto-docs/setup/askAndSetDockerOption/askAndSetDockerOption/functions/default.md b/docs/docs/auto-docs/setup/askAndSetDockerOption/askAndSetDockerOption/functions/default.md new file mode 100644 index 0000000000..e21d1b2752 --- /dev/null +++ b/docs/docs/auto-docs/setup/askAndSetDockerOption/askAndSetDockerOption/functions/default.md @@ -0,0 +1,13 @@ +[Admin Docs](/) + +*** + +# Function: default() + +> **default**(): `Promise`\<`void`\> + +Defined in: [src/setup/askAndSetDockerOption/askAndSetDockerOption.ts:6](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/setup/askAndSetDockerOption/askAndSetDockerOption.ts#L6) + +## Returns + +`Promise`\<`void`\> diff --git a/docs/docs/auto-docs/setup/askAndUpdatePort/askAndUpdatePort/functions/default.md b/docs/docs/auto-docs/setup/askAndUpdatePort/askAndUpdatePort/functions/default.md new file mode 100644 index 0000000000..228f527211 --- /dev/null +++ b/docs/docs/auto-docs/setup/askAndUpdatePort/askAndUpdatePort/functions/default.md @@ -0,0 +1,13 @@ +[Admin Docs](/) + +*** + +# Function: default() + +> **default**(): `Promise`\<`void`\> + +Defined in: [src/setup/askAndUpdatePort/askAndUpdatePort.ts:6](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/setup/askAndUpdatePort/askAndUpdatePort.ts#L6) + +## Returns + +`Promise`\<`void`\> diff --git a/docs/docs/auto-docs/setup/askForCustomPort/askForCustomPort/functions/askForCustomPort.md b/docs/docs/auto-docs/setup/askForCustomPort/askForCustomPort/functions/askForCustomPort.md new file mode 100644 index 0000000000..f0aa0646e2 --- /dev/null +++ b/docs/docs/auto-docs/setup/askForCustomPort/askForCustomPort/functions/askForCustomPort.md @@ -0,0 +1,13 @@ +[Admin Docs](/) + +*** + +# Function: askForCustomPort() + +> **askForCustomPort**(): `Promise`\<`number`\> + +Defined in: [src/setup/askForCustomPort/askForCustomPort.ts:32](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/setup/askForCustomPort/askForCustomPort.ts#L32) + +## Returns + +`Promise`\<`number`\> diff --git a/docs/docs/auto-docs/setup/askForCustomPort/askForCustomPort/functions/reservedPortWarning.md b/docs/docs/auto-docs/setup/askForCustomPort/askForCustomPort/functions/reservedPortWarning.md new file mode 100644 index 0000000000..c6f375b9aa --- /dev/null +++ b/docs/docs/auto-docs/setup/askForCustomPort/askForCustomPort/functions/reservedPortWarning.md @@ -0,0 +1,19 @@ +[Admin Docs](/) + +*** + +# Function: reservedPortWarning() + +> **reservedPortWarning**(`port`): `Promise`\<`boolean`\> + +Defined in: [src/setup/askForCustomPort/askForCustomPort.ts:19](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/setup/askForCustomPort/askForCustomPort.ts#L19) + +## Parameters + +### port + +`number` + +## Returns + +`Promise`\<`boolean`\> diff --git a/docs/docs/auto-docs/setup/askForCustomPort/askForCustomPort/functions/validatePort.md b/docs/docs/auto-docs/setup/askForCustomPort/askForCustomPort/functions/validatePort.md new file mode 100644 index 0000000000..560a1e7151 --- /dev/null +++ b/docs/docs/auto-docs/setup/askForCustomPort/askForCustomPort/functions/validatePort.md @@ -0,0 +1,19 @@ +[Admin Docs](/) + +*** + +# Function: validatePort() + +> **validatePort**(`input`): `string` \| `boolean` + +Defined in: [src/setup/askForCustomPort/askForCustomPort.ts:6](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/setup/askForCustomPort/askForCustomPort.ts#L6) + +## Parameters + +### input + +`string` + +## Returns + +`string` \| `boolean` diff --git a/docs/docs/auto-docs/setup/askForDocker/askForDocker/functions/askAndUpdateTalawaApiUrl.md b/docs/docs/auto-docs/setup/askForDocker/askForDocker/functions/askAndUpdateTalawaApiUrl.md new file mode 100644 index 0000000000..60cd226184 --- /dev/null +++ b/docs/docs/auto-docs/setup/askForDocker/askForDocker/functions/askAndUpdateTalawaApiUrl.md @@ -0,0 +1,13 @@ +[Admin Docs](/) + +*** + +# Function: askAndUpdateTalawaApiUrl() + +> **askAndUpdateTalawaApiUrl**(): `Promise`\<`void`\> + +Defined in: [src/setup/askForDocker/askForDocker.ts:33](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/setup/askForDocker/askForDocker.ts#L33) + +## Returns + +`Promise`\<`void`\> diff --git a/docs/docs/auto-docs/setup/askForDocker/askForDocker/functions/askForDocker.md b/docs/docs/auto-docs/setup/askForDocker/askForDocker/functions/askForDocker.md new file mode 100644 index 0000000000..be25905bc0 --- /dev/null +++ b/docs/docs/auto-docs/setup/askForDocker/askForDocker/functions/askForDocker.md @@ -0,0 +1,13 @@ +[Admin Docs](/) + +*** + +# Function: askForDocker() + +> **askForDocker**(): `Promise`\<`string`\> + +Defined in: [src/setup/askForDocker/askForDocker.ts:12](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/setup/askForDocker/askForDocker.ts#L12) + +## Returns + +`Promise`\<`string`\> diff --git a/docs/docs/auto-docs/setup/askForTalawaApiUrl/askForTalawaApiUrl/functions/askForTalawaApiUrl.md b/docs/docs/auto-docs/setup/askForTalawaApiUrl/askForTalawaApiUrl/functions/askForTalawaApiUrl.md new file mode 100644 index 0000000000..f88a4f25c9 --- /dev/null +++ b/docs/docs/auto-docs/setup/askForTalawaApiUrl/askForTalawaApiUrl/functions/askForTalawaApiUrl.md @@ -0,0 +1,13 @@ +[Admin Docs](/) + +*** + +# Function: askForTalawaApiUrl() + +> **askForTalawaApiUrl**(): `Promise`\<`string`\> + +Defined in: [src/setup/askForTalawaApiUrl/askForTalawaApiUrl.ts:3](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/setup/askForTalawaApiUrl/askForTalawaApiUrl.ts#L3) + +## Returns + +`Promise`\<`string`\> diff --git a/docs/docs/auto-docs/setup/checkConnection/checkConnection/functions/checkConnection.md b/docs/docs/auto-docs/setup/checkConnection/checkConnection/functions/checkConnection.md new file mode 100644 index 0000000000..cd0c7cdb32 --- /dev/null +++ b/docs/docs/auto-docs/setup/checkConnection/checkConnection/functions/checkConnection.md @@ -0,0 +1,19 @@ +[Admin Docs](/) + +*** + +# Function: checkConnection() + +> **checkConnection**(`url`): `Promise`\<`any`\> + +Defined in: [src/setup/checkConnection/checkConnection.ts:1](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/setup/checkConnection/checkConnection.ts#L1) + +## Parameters + +### url + +`string` + +## Returns + +`Promise`\<`any`\> diff --git a/docs/docs/auto-docs/setup/checkEnvFile/checkEnvFile/functions/checkEnvFile.md b/docs/docs/auto-docs/setup/checkEnvFile/checkEnvFile/functions/checkEnvFile.md new file mode 100644 index 0000000000..0489637fa1 --- /dev/null +++ b/docs/docs/auto-docs/setup/checkEnvFile/checkEnvFile/functions/checkEnvFile.md @@ -0,0 +1,13 @@ +[Admin Docs](/) + +*** + +# Function: checkEnvFile() + +> **checkEnvFile**(): `void` + +Defined in: [src/setup/checkEnvFile/checkEnvFile.ts:6](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/setup/checkEnvFile/checkEnvFile.ts#L6) + +## Returns + +`void` diff --git a/docs/docs/auto-docs/setup/updateEnvFile/updateEnvFile/functions/default.md b/docs/docs/auto-docs/setup/updateEnvFile/updateEnvFile/functions/default.md new file mode 100644 index 0000000000..5496c3dd38 --- /dev/null +++ b/docs/docs/auto-docs/setup/updateEnvFile/updateEnvFile/functions/default.md @@ -0,0 +1,23 @@ +[Admin Docs](/) + +*** + +# Function: default() + +> **default**(`key`, `value`): `void` + +Defined in: [src/setup/updateEnvFile/updateEnvFile.ts:3](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/setup/updateEnvFile/updateEnvFile.ts#L3) + +## Parameters + +### key + +`string` + +### value + +`string` + +## Returns + +`void` diff --git a/docs/docs/auto-docs/setup/validateRecaptcha/validateRecaptcha/functions/validateRecaptcha.md b/docs/docs/auto-docs/setup/validateRecaptcha/validateRecaptcha/functions/validateRecaptcha.md new file mode 100644 index 0000000000..30a801a41d --- /dev/null +++ b/docs/docs/auto-docs/setup/validateRecaptcha/validateRecaptcha/functions/validateRecaptcha.md @@ -0,0 +1,19 @@ +[Admin Docs](/) + +*** + +# Function: validateRecaptcha() + +> **validateRecaptcha**(`string`): `boolean` + +Defined in: [src/setup/validateRecaptcha/validateRecaptcha.ts:1](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/setup/validateRecaptcha/validateRecaptcha.ts#L1) + +## Parameters + +### string + +`string` + +## Returns + +`boolean` diff --git a/docs/docs/auto-docs/state/action-creators/functions/installPlugin.md b/docs/docs/auto-docs/state/action-creators/functions/installPlugin.md new file mode 100644 index 0000000000..9a755eca11 --- /dev/null +++ b/docs/docs/auto-docs/state/action-creators/functions/installPlugin.md @@ -0,0 +1,29 @@ +[Admin Docs](/) + +*** + +# Function: installPlugin() + +> **installPlugin**(`plugin`): (`dispatch`) => `void` + +Defined in: [src/state/action-creators/index.ts:10](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/state/action-creators/index.ts#L10) + +## Parameters + +### plugin + +`any` + +## Returns + +`Function` + +### Parameters + +#### dispatch + +`any` + +### Returns + +`void` diff --git a/docs/docs/auto-docs/state/action-creators/functions/removePlugin.md b/docs/docs/auto-docs/state/action-creators/functions/removePlugin.md new file mode 100644 index 0000000000..2ddf6602a3 --- /dev/null +++ b/docs/docs/auto-docs/state/action-creators/functions/removePlugin.md @@ -0,0 +1,29 @@ +[Admin Docs](/) + +*** + +# Function: removePlugin() + +> **removePlugin**(`plugin`): (`dispatch`) => `void` + +Defined in: [src/state/action-creators/index.ts:19](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/state/action-creators/index.ts#L19) + +## Parameters + +### plugin + +`any` + +## Returns + +`Function` + +### Parameters + +#### dispatch + +`any` + +### Returns + +`void` diff --git a/docs/docs/auto-docs/state/action-creators/functions/updateInstalled.md b/docs/docs/auto-docs/state/action-creators/functions/updateInstalled.md new file mode 100644 index 0000000000..f4424fa78c --- /dev/null +++ b/docs/docs/auto-docs/state/action-creators/functions/updateInstalled.md @@ -0,0 +1,29 @@ +[Admin Docs](/) + +*** + +# Function: updateInstalled() + +> **updateInstalled**(`plugin`): (`dispatch`) => `void` + +Defined in: [src/state/action-creators/index.ts:1](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/state/action-creators/index.ts#L1) + +## Parameters + +### plugin + +`any` + +## Returns + +`Function` + +### Parameters + +#### dispatch + +`any` + +### Returns + +`void` diff --git a/docs/docs/auto-docs/state/action-creators/functions/updatePluginLinks.md b/docs/docs/auto-docs/state/action-creators/functions/updatePluginLinks.md new file mode 100644 index 0000000000..7dcfc4a211 --- /dev/null +++ b/docs/docs/auto-docs/state/action-creators/functions/updatePluginLinks.md @@ -0,0 +1,29 @@ +[Admin Docs](/) + +*** + +# Function: updatePluginLinks() + +> **updatePluginLinks**(`plugins`): (`dispatch`) => `void` + +Defined in: [src/state/action-creators/index.ts:28](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/state/action-creators/index.ts#L28) + +## Parameters + +### plugins + +`any` + +## Returns + +`Function` + +### Parameters + +#### dispatch + +`any` + +### Returns + +`void` diff --git a/docs/docs/auto-docs/state/action-creators/functions/updateTargets.md b/docs/docs/auto-docs/state/action-creators/functions/updateTargets.md new file mode 100644 index 0000000000..5f594b5626 --- /dev/null +++ b/docs/docs/auto-docs/state/action-creators/functions/updateTargets.md @@ -0,0 +1,29 @@ +[Admin Docs](/) + +*** + +# Function: updateTargets() + +> **updateTargets**(`orgId`): (`dispatch`) => `void` + +Defined in: [src/state/action-creators/index.ts:37](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/state/action-creators/index.ts#L37) + +## Parameters + +### orgId + +`string` + +## Returns + +`Function` + +### Parameters + +#### dispatch + +`any` + +### Returns + +`void` diff --git a/docs/docs/auto-docs/state/helpers/Action/interfaces/InterfaceAction.md b/docs/docs/auto-docs/state/helpers/Action/interfaces/InterfaceAction.md new file mode 100644 index 0000000000..fd0d9b154d --- /dev/null +++ b/docs/docs/auto-docs/state/helpers/Action/interfaces/InterfaceAction.md @@ -0,0 +1,23 @@ +[Admin Docs](/) + +*** + +# Interface: InterfaceAction + +Defined in: [src/state/helpers/Action.ts:1](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/state/helpers/Action.ts#L1) + +## Properties + +### payload + +> **payload**: `any` + +Defined in: [src/state/helpers/Action.ts:3](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/state/helpers/Action.ts#L3) + +*** + +### type + +> **type**: `string` + +Defined in: [src/state/helpers/Action.ts:2](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/state/helpers/Action.ts#L2) diff --git a/docs/docs/auto-docs/state/hooks/functions/useAppDispatch.md b/docs/docs/auto-docs/state/hooks/functions/useAppDispatch.md new file mode 100644 index 0000000000..a8433e4601 --- /dev/null +++ b/docs/docs/auto-docs/state/hooks/functions/useAppDispatch.md @@ -0,0 +1,23 @@ +[Admin Docs](/) + +*** + +# Function: useAppDispatch() + +> **useAppDispatch**\<`AppDispatch`\>(): `AppDispatch` + +Defined in: [src/state/hooks.ts:5](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/state/hooks.ts#L5) + +Returns the dispatch function from the Redux store. + +## Type Parameters + +• **AppDispatch** *extends* `ThunkDispatch`\<\{ `appRoutes`: \{ `components`: [`ComponentType`](../../reducers/routesReducer/type-aliases/ComponentType.md)[]; `targets`: [`TargetsType`](../../reducers/routesReducer/type-aliases/TargetsType.md)[]; \}; `plugins`: `any`; `userRoutes`: \{ `components`: [`ComponentType`](../../reducers/userRoutesReducer/type-aliases/ComponentType.md)[]; `targets`: [`TargetsType`](../../reducers/userRoutesReducer/type-aliases/TargetsType.md)[]; \}; \}, `undefined`, `UnknownAction`\> & `Dispatch`\<[`InterfaceAction`](../../helpers/Action/interfaces/InterfaceAction.md)\> = `ThunkDispatch`\<\{ `appRoutes`: \{ `components`: [`ComponentType`](../../reducers/routesReducer/type-aliases/ComponentType.md)[]; `targets`: [`TargetsType`](../../reducers/routesReducer/type-aliases/TargetsType.md)[]; \}; `plugins`: `any`; `userRoutes`: \{ `components`: [`ComponentType`](../../reducers/userRoutesReducer/type-aliases/ComponentType.md)[]; `targets`: [`TargetsType`](../../reducers/userRoutesReducer/type-aliases/TargetsType.md)[]; \}; \}, `undefined`, `UnknownAction`\> & `Dispatch`\<[`InterfaceAction`](../../helpers/Action/interfaces/InterfaceAction.md)\> + +The specific type of the dispatch function. + +## Returns + +`AppDispatch` + +The dispatch function from the Redux store. diff --git a/docs/docs/auto-docs/state/reducers/functions/reducers.md b/docs/docs/auto-docs/state/reducers/functions/reducers.md new file mode 100644 index 0000000000..905cf80491 --- /dev/null +++ b/docs/docs/auto-docs/state/reducers/functions/reducers.md @@ -0,0 +1,51 @@ +[Admin Docs](/) + +*** + +# Function: reducers() + +> **reducers**(`state`, `action`): `object` + +Defined in: [src/state/reducers/index.ts:6](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/state/reducers/index.ts#L6) + +## Parameters + +### state + +\{ `appRoutes`: \{ `components`: [`ComponentType`](../routesReducer/type-aliases/ComponentType.md)[]; `targets`: [`TargetsType`](../routesReducer/type-aliases/TargetsType.md)[]; \}; `plugins`: `any`; `userRoutes`: \{ `components`: [`ComponentType`](../userRoutesReducer/type-aliases/ComponentType.md)[]; `targets`: [`TargetsType`](../userRoutesReducer/type-aliases/TargetsType.md)[]; \}; \} | `Partial`\<\{ `appRoutes`: `never`; `plugins`: `never`; `userRoutes`: `never`; \}\> + +### action + +[`InterfaceAction`](../../helpers/Action/interfaces/InterfaceAction.md) + +## Returns + +`object` + +### appRoutes + +> **appRoutes**: `object` = `routesReducer` + +#### appRoutes.components + +> **components**: [`ComponentType`](../routesReducer/type-aliases/ComponentType.md)[] + +#### appRoutes.targets + +> **targets**: [`TargetsType`](../routesReducer/type-aliases/TargetsType.md)[] + +### plugins + +> **plugins**: `any` = `pluginReducer` + +### userRoutes + +> **userRoutes**: `object` = `userRoutesReducer` + +#### userRoutes.components + +> **components**: [`ComponentType`](../userRoutesReducer/type-aliases/ComponentType.md)[] + +#### userRoutes.targets + +> **targets**: [`TargetsType`](../userRoutesReducer/type-aliases/TargetsType.md)[] diff --git a/docs/docs/auto-docs/state/reducers/pluginReducer/functions/default.md b/docs/docs/auto-docs/state/reducers/pluginReducer/functions/default.md new file mode 100644 index 0000000000..70463e30e1 --- /dev/null +++ b/docs/docs/auto-docs/state/reducers/pluginReducer/functions/default.md @@ -0,0 +1,23 @@ +[Admin Docs](/) + +*** + +# Function: default() + +> **default**(`state`, `action`): `any` + +Defined in: [src/state/reducers/pluginReducer.ts:3](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/state/reducers/pluginReducer.ts#L3) + +## Parameters + +### state + +`any` = `INITIAL_STATE` + +### action + +[`InterfaceAction`](../../../helpers/Action/interfaces/InterfaceAction.md) + +## Returns + +`any` diff --git a/docs/docs/auto-docs/state/reducers/routesReducer/functions/default.md b/docs/docs/auto-docs/state/reducers/routesReducer/functions/default.md new file mode 100644 index 0000000000..cac048256a --- /dev/null +++ b/docs/docs/auto-docs/state/reducers/routesReducer/functions/default.md @@ -0,0 +1,37 @@ +[Admin Docs](/) + +*** + +# Function: default() + +> **default**(`state`, `action`): `object` + +Defined in: [src/state/reducers/routesReducer.ts:16](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/state/reducers/routesReducer.ts#L16) + +## Parameters + +### state + +#### components + +[`ComponentType`](../type-aliases/ComponentType.md)[] + +#### targets + +[`TargetsType`](../type-aliases/TargetsType.md)[] = `...` + +### action + +[`InterfaceAction`](../../../helpers/Action/interfaces/InterfaceAction.md) + +## Returns + +`object` + +### components + +> **components**: [`ComponentType`](../type-aliases/ComponentType.md)[] + +### targets + +> **targets**: [`TargetsType`](../type-aliases/TargetsType.md)[] diff --git a/docs/docs/auto-docs/state/reducers/routesReducer/type-aliases/ComponentType.md b/docs/docs/auto-docs/state/reducers/routesReducer/type-aliases/ComponentType.md new file mode 100644 index 0000000000..de5e78e7a0 --- /dev/null +++ b/docs/docs/auto-docs/state/reducers/routesReducer/type-aliases/ComponentType.md @@ -0,0 +1,27 @@ +[Admin Docs](/) + +*** + +# Type Alias: ComponentType + +> **ComponentType**: `object` + +Defined in: [src/state/reducers/routesReducer.ts:55](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/state/reducers/routesReducer.ts#L55) + +## Type declaration + +### comp\_id + +> **comp\_id**: `string` \| `null` + +### component + +> **component**: `string` \| `null` + +### name + +> **name**: `string` + +### subTargets? + +> `optional` **subTargets**: `object`[] diff --git a/docs/docs/auto-docs/state/reducers/routesReducer/type-aliases/SubTargetType.md b/docs/docs/auto-docs/state/reducers/routesReducer/type-aliases/SubTargetType.md new file mode 100644 index 0000000000..6b651708e1 --- /dev/null +++ b/docs/docs/auto-docs/state/reducers/routesReducer/type-aliases/SubTargetType.md @@ -0,0 +1,27 @@ +[Admin Docs](/) + +*** + +# Type Alias: SubTargetType + +> **SubTargetType**: `object` + +Defined in: [src/state/reducers/routesReducer.ts:9](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/state/reducers/routesReducer.ts#L9) + +## Type declaration + +### comp\_id? + +> `optional` **comp\_id**: `string` + +### icon? + +> `optional` **icon**: `string` + +### name? + +> `optional` **name**: `string` + +### url + +> **url**: `string` diff --git a/docs/docs/auto-docs/state/reducers/routesReducer/type-aliases/TargetsType.md b/docs/docs/auto-docs/state/reducers/routesReducer/type-aliases/TargetsType.md new file mode 100644 index 0000000000..9329755276 --- /dev/null +++ b/docs/docs/auto-docs/state/reducers/routesReducer/type-aliases/TargetsType.md @@ -0,0 +1,23 @@ +[Admin Docs](/) + +*** + +# Type Alias: TargetsType + +> **TargetsType**: `object` + +Defined in: [src/state/reducers/routesReducer.ts:3](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/state/reducers/routesReducer.ts#L3) + +## Type declaration + +### name + +> **name**: `string` + +### subTargets? + +> `optional` **subTargets**: [`SubTargetType`](SubTargetType.md)[] + +### url? + +> `optional` **url**: `string` diff --git a/docs/docs/auto-docs/state/reducers/type-aliases/RootState.md b/docs/docs/auto-docs/state/reducers/type-aliases/RootState.md new file mode 100644 index 0000000000..79ba800c99 --- /dev/null +++ b/docs/docs/auto-docs/state/reducers/type-aliases/RootState.md @@ -0,0 +1,9 @@ +[Admin Docs](/) + +*** + +# Type Alias: RootState + +> **RootState**: `ReturnType`\<*typeof* [`reducers`](../functions/reducers.md)\> + +Defined in: [src/state/reducers/index.ts:12](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/state/reducers/index.ts#L12) diff --git a/docs/docs/auto-docs/state/reducers/userRoutesReducer/functions/default.md b/docs/docs/auto-docs/state/reducers/userRoutesReducer/functions/default.md new file mode 100644 index 0000000000..8205bd5f27 --- /dev/null +++ b/docs/docs/auto-docs/state/reducers/userRoutesReducer/functions/default.md @@ -0,0 +1,37 @@ +[Admin Docs](/) + +*** + +# Function: default() + +> **default**(`state`, `action`): `object` + +Defined in: [src/state/reducers/userRoutesReducer.ts:16](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/state/reducers/userRoutesReducer.ts#L16) + +## Parameters + +### state + +#### components + +[`ComponentType`](../type-aliases/ComponentType.md)[] + +#### targets + +[`TargetsType`](../type-aliases/TargetsType.md)[] = `...` + +### action + +[`InterfaceAction`](../../../helpers/Action/interfaces/InterfaceAction.md) + +## Returns + +`object` + +### components + +> **components**: [`ComponentType`](../type-aliases/ComponentType.md)[] + +### targets + +> **targets**: [`TargetsType`](../type-aliases/TargetsType.md)[] diff --git a/docs/docs/auto-docs/state/reducers/userRoutesReducer/type-aliases/ComponentType.md b/docs/docs/auto-docs/state/reducers/userRoutesReducer/type-aliases/ComponentType.md new file mode 100644 index 0000000000..92430bb5ba --- /dev/null +++ b/docs/docs/auto-docs/state/reducers/userRoutesReducer/type-aliases/ComponentType.md @@ -0,0 +1,27 @@ +[Admin Docs](/) + +*** + +# Type Alias: ComponentType + +> **ComponentType**: `object` + +Defined in: [src/state/reducers/userRoutesReducer.ts:32](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/state/reducers/userRoutesReducer.ts#L32) + +## Type declaration + +### comp\_id + +> **comp\_id**: `string` \| `null` + +### component + +> **component**: `string` \| `null` + +### name + +> **name**: `string` + +### subTargets? + +> `optional` **subTargets**: `object`[] diff --git a/docs/docs/auto-docs/state/reducers/userRoutesReducer/type-aliases/SubTargetType.md b/docs/docs/auto-docs/state/reducers/userRoutesReducer/type-aliases/SubTargetType.md new file mode 100644 index 0000000000..3b0872a579 --- /dev/null +++ b/docs/docs/auto-docs/state/reducers/userRoutesReducer/type-aliases/SubTargetType.md @@ -0,0 +1,27 @@ +[Admin Docs](/) + +*** + +# Type Alias: SubTargetType + +> **SubTargetType**: `object` + +Defined in: [src/state/reducers/userRoutesReducer.ts:9](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/state/reducers/userRoutesReducer.ts#L9) + +## Type declaration + +### comp\_id? + +> `optional` **comp\_id**: `string` + +### icon? + +> `optional` **icon**: `string` + +### name? + +> `optional` **name**: `string` + +### url + +> **url**: `string` diff --git a/docs/docs/auto-docs/state/reducers/userRoutesReducer/type-aliases/TargetsType.md b/docs/docs/auto-docs/state/reducers/userRoutesReducer/type-aliases/TargetsType.md new file mode 100644 index 0000000000..13cbde7fa4 --- /dev/null +++ b/docs/docs/auto-docs/state/reducers/userRoutesReducer/type-aliases/TargetsType.md @@ -0,0 +1,23 @@ +[Admin Docs](/) + +*** + +# Type Alias: TargetsType + +> **TargetsType**: `object` + +Defined in: [src/state/reducers/userRoutesReducer.ts:3](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/state/reducers/userRoutesReducer.ts#L3) + +## Type declaration + +### name + +> **name**: `string` + +### subTargets? + +> `optional` **subTargets**: [`SubTargetType`](SubTargetType.md)[] + +### url? + +> `optional` **url**: `string` diff --git a/docs/docs/auto-docs/state/store/type-aliases/AppDispatch.md b/docs/docs/auto-docs/state/store/type-aliases/AppDispatch.md new file mode 100644 index 0000000000..457c6b2bca --- /dev/null +++ b/docs/docs/auto-docs/state/store/type-aliases/AppDispatch.md @@ -0,0 +1,9 @@ +[Admin Docs](/) + +*** + +# Type Alias: AppDispatch + +> **AppDispatch**: *typeof* `store.dispatch` + +Defined in: [src/state/store.ts:8](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/state/store.ts#L8) diff --git a/docs/docs/auto-docs/state/store/variables/store.md b/docs/docs/auto-docs/state/store/variables/store.md new file mode 100644 index 0000000000..fe20ab3af3 --- /dev/null +++ b/docs/docs/auto-docs/state/store/variables/store.md @@ -0,0 +1,9 @@ +[Admin Docs](/) + +*** + +# Variable: store + +> `const` **store**: `EnhancedStore`\<\{ `appRoutes`: \{ `components`: [`ComponentType`](../../reducers/routesReducer/type-aliases/ComponentType.md)[]; `targets`: [`TargetsType`](../../reducers/routesReducer/type-aliases/TargetsType.md)[]; \}; `plugins`: `any`; `userRoutes`: \{ `components`: [`ComponentType`](../../reducers/userRoutesReducer/type-aliases/ComponentType.md)[]; `targets`: [`TargetsType`](../../reducers/userRoutesReducer/type-aliases/TargetsType.md)[]; \}; \}, [`InterfaceAction`](../../helpers/Action/interfaces/InterfaceAction.md), `Tuple`\<\[`StoreEnhancer`\<\{\}\>, `StoreEnhancer`\]\>\> + +Defined in: [src/state/store.ts:4](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/state/store.ts#L4) diff --git a/docs/docs/auto-docs/subComponents/SortingButton/functions/default.md b/docs/docs/auto-docs/subComponents/SortingButton/functions/default.md new file mode 100644 index 0000000000..c5208214cb --- /dev/null +++ b/docs/docs/auto-docs/subComponents/SortingButton/functions/default.md @@ -0,0 +1,36 @@ +[Admin Docs](/) + +*** + +# Function: default() + +> **default**(`props`, `deprecatedLegacyContext`?): `ReactNode` + +Defined in: [src/subComponents/SortingButton.tsx:43](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/subComponents/SortingButton.tsx#L43) + +SortingButton component renders a Dropdown with sorting options. +It allows users to select a sorting option and triggers a callback on selection. + +## Parameters + +### props + +`InterfaceSortingButtonProps` + +The properties for the SortingButton component. + +### deprecatedLegacyContext? + +`any` + +**Deprecated** + +**See** + +[React Docs](https://legacy.reactjs.org/docs/legacy-context.html#referencing-context-in-lifecycle-methods) + +## Returns + +`ReactNode` + +The rendered SortingButton component. diff --git a/docs/docs/auto-docs/utils/StaticMockLink/classes/StaticMockLink.md b/docs/docs/auto-docs/utils/StaticMockLink/classes/StaticMockLink.md new file mode 100644 index 0000000000..e141ea6491 --- /dev/null +++ b/docs/docs/auto-docs/utils/StaticMockLink/classes/StaticMockLink.md @@ -0,0 +1,96 @@ +[Admin Docs](/) + +*** + +# Class: StaticMockLink + +Defined in: [src/utils/StaticMockLink.ts:30](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/utils/StaticMockLink.ts#L30) + +Similar to the standard Apollo MockLink, but doesn't consume a mock +when it is used allowing it to be used in places like Storybook. + +## Extends + +- `ApolloLink` + +## Constructors + +### new StaticMockLink() + +> **new StaticMockLink**(`mockedResponses`, `addTypename`): [`StaticMockLink`](StaticMockLink.md) + +Defined in: [src/utils/StaticMockLink.ts:35](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/utils/StaticMockLink.ts#L35) + +#### Parameters + +##### mockedResponses + +readonly `MockedResponse`[] + +##### addTypename + +`boolean` = `true` + +#### Returns + +[`StaticMockLink`](StaticMockLink.md) + +#### Overrides + +`ApolloLink.constructor` + +## Properties + +### addTypename + +> **addTypename**: `boolean` = `true` + +Defined in: [src/utils/StaticMockLink.ts:32](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/utils/StaticMockLink.ts#L32) + +*** + +### operation? + +> `optional` **operation**: `Operation` + +Defined in: [src/utils/StaticMockLink.ts:31](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/utils/StaticMockLink.ts#L31) + +## Methods + +### addMockedResponse() + +> **addMockedResponse**(`mockedResponse`): `void` + +Defined in: [src/utils/StaticMockLink.ts:45](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/utils/StaticMockLink.ts#L45) + +#### Parameters + +##### mockedResponse + +`MockedResponse` + +#### Returns + +`void` + +*** + +### request() + +> **request**(`operation`): `Observable`\<`FetchResult`\> + +Defined in: [src/utils/StaticMockLink.ts:60](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/utils/StaticMockLink.ts#L60) + +#### Parameters + +##### operation + +`any` + +#### Returns + +`Observable`\<`FetchResult`\> + +#### Overrides + +`ApolloLink.request` diff --git a/docs/docs/auto-docs/utils/StaticMockLink/functions/mockSingleLink.md b/docs/docs/auto-docs/utils/StaticMockLink/functions/mockSingleLink.md new file mode 100644 index 0000000000..2122664fc9 --- /dev/null +++ b/docs/docs/auto-docs/utils/StaticMockLink/functions/mockSingleLink.md @@ -0,0 +1,19 @@ +[Admin Docs](/) + +*** + +# Function: mockSingleLink() + +> **mockSingleLink**(...`mockedResponses`): [`InterfaceMockApolloLink`](../interfaces/InterfaceMockApolloLink.md) + +Defined in: [src/utils/StaticMockLink.ts:164](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/utils/StaticMockLink.ts#L164) + +## Parameters + +### mockedResponses + +...`any`[] + +## Returns + +[`InterfaceMockApolloLink`](../interfaces/InterfaceMockApolloLink.md) diff --git a/docs/docs/auto-docs/utils/StaticMockLink/interfaces/InterfaceMockApolloLink.md b/docs/docs/auto-docs/utils/StaticMockLink/interfaces/InterfaceMockApolloLink.md new file mode 100644 index 0000000000..cef7d42b37 --- /dev/null +++ b/docs/docs/auto-docs/utils/StaticMockLink/interfaces/InterfaceMockApolloLink.md @@ -0,0 +1,19 @@ +[Admin Docs](/) + +*** + +# Interface: InterfaceMockApolloLink + +Defined in: [src/utils/StaticMockLink.ts:157](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/utils/StaticMockLink.ts#L157) + +## Extends + +- `ApolloLink` + +## Properties + +### operation? + +> `optional` **operation**: `Operation` + +Defined in: [src/utils/StaticMockLink.ts:158](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/utils/StaticMockLink.ts#L158) diff --git a/docs/docs/auto-docs/utils/chartToPdf/functions/exportDemographicsToCSV.md b/docs/docs/auto-docs/utils/chartToPdf/functions/exportDemographicsToCSV.md new file mode 100644 index 0000000000..d329c1c156 --- /dev/null +++ b/docs/docs/auto-docs/utils/chartToPdf/functions/exportDemographicsToCSV.md @@ -0,0 +1,27 @@ +[Admin Docs](/) + +*** + +# Function: exportDemographicsToCSV() + +> **exportDemographicsToCSV**(`selectedCategory`, `categoryLabels`, `categoryData`): `void` + +Defined in: [src/utils/chartToPdf.ts:80](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/utils/chartToPdf.ts#L80) + +## Parameters + +### selectedCategory + +`string` + +### categoryLabels + +`string`[] + +### categoryData + +`number`[] + +## Returns + +`void` diff --git a/docs/docs/auto-docs/utils/chartToPdf/functions/exportToCSV.md b/docs/docs/auto-docs/utils/chartToPdf/functions/exportToCSV.md new file mode 100644 index 0000000000..7baff0cfee --- /dev/null +++ b/docs/docs/auto-docs/utils/chartToPdf/functions/exportToCSV.md @@ -0,0 +1,23 @@ +[Admin Docs](/) + +*** + +# Function: exportToCSV() + +> **exportToCSV**(`data`, `filename`): `void` + +Defined in: [src/utils/chartToPdf.ts:3](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/utils/chartToPdf.ts#L3) + +## Parameters + +### data + +`CSVData` + +### filename + +`string` + +## Returns + +`void` diff --git a/docs/docs/auto-docs/utils/chartToPdf/functions/exportTrendsToCSV.md b/docs/docs/auto-docs/utils/chartToPdf/functions/exportTrendsToCSV.md new file mode 100644 index 0000000000..8d59c35b7f --- /dev/null +++ b/docs/docs/auto-docs/utils/chartToPdf/functions/exportTrendsToCSV.md @@ -0,0 +1,35 @@ +[Admin Docs](/) + +*** + +# Function: exportTrendsToCSV() + +> **exportTrendsToCSV**(`eventLabels`, `attendeeCounts`, `maleCounts`, `femaleCounts`, `otherCounts`): `void` + +Defined in: [src/utils/chartToPdf.ts:50](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/utils/chartToPdf.ts#L50) + +## Parameters + +### eventLabels + +`string`[] + +### attendeeCounts + +`number`[] + +### maleCounts + +`number`[] + +### femaleCounts + +`number`[] + +### otherCounts + +`number`[] + +## Returns + +`void` diff --git a/docs/docs/auto-docs/utils/convertToBase64/functions/default.md b/docs/docs/auto-docs/utils/convertToBase64/functions/default.md new file mode 100644 index 0000000000..3dafde69a8 --- /dev/null +++ b/docs/docs/auto-docs/utils/convertToBase64/functions/default.md @@ -0,0 +1,19 @@ +[Admin Docs](/) + +*** + +# Function: default() + +> **default**(`file`): `Promise`\<`string`\> + +Defined in: [src/utils/convertToBase64.ts:1](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/utils/convertToBase64.ts#L1) + +## Parameters + +### file + +`File` + +## Returns + +`Promise`\<`string`\> diff --git a/docs/docs/auto-docs/utils/currency/variables/currencyOptions.md b/docs/docs/auto-docs/utils/currency/variables/currencyOptions.md new file mode 100644 index 0000000000..0899912184 --- /dev/null +++ b/docs/docs/auto-docs/utils/currency/variables/currencyOptions.md @@ -0,0 +1,19 @@ +[Admin Docs](/) + +*** + +# Variable: currencyOptions + +> `const` **currencyOptions**: `object`[] + +Defined in: [src/utils/currency.ts:1](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/utils/currency.ts#L1) + +## Type declaration + +### label + +> **label**: `string` = `'AED'` + +### value + +> **value**: `string` = `'AED'` diff --git a/docs/docs/auto-docs/utils/currency/variables/currencySymbols.md b/docs/docs/auto-docs/utils/currency/variables/currencySymbols.md new file mode 100644 index 0000000000..c8ac372d70 --- /dev/null +++ b/docs/docs/auto-docs/utils/currency/variables/currencySymbols.md @@ -0,0 +1,13 @@ +[Admin Docs](/) + +*** + +# Variable: currencySymbols + +> `const` **currencySymbols**: `object` + +Defined in: [src/utils/currency.ts:166](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/utils/currency.ts#L166) + +## Index Signature + +\[`key`: `string`\]: `string` diff --git a/docs/docs/auto-docs/utils/dateFormatter/functions/formatDate.md b/docs/docs/auto-docs/utils/dateFormatter/functions/formatDate.md new file mode 100644 index 0000000000..13d03f1589 --- /dev/null +++ b/docs/docs/auto-docs/utils/dateFormatter/functions/formatDate.md @@ -0,0 +1,19 @@ +[Admin Docs](/) + +*** + +# Function: formatDate() + +> **formatDate**(`dateString`): `string` + +Defined in: [src/utils/dateFormatter.ts:1](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/utils/dateFormatter.ts#L1) + +## Parameters + +### dateString + +`string` + +## Returns + +`string` diff --git a/docs/docs/auto-docs/utils/errorHandler/functions/errorHandler.md b/docs/docs/auto-docs/utils/errorHandler/functions/errorHandler.md new file mode 100644 index 0000000000..acb762e26b --- /dev/null +++ b/docs/docs/auto-docs/utils/errorHandler/functions/errorHandler.md @@ -0,0 +1,27 @@ +[Admin Docs](/) + +*** + +# Function: errorHandler() + +> **errorHandler**(`a`, `error`): `void` + +Defined in: [src/utils/errorHandler.tsx:10](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/utils/errorHandler.tsx#L10) + +This function is used to handle api errors in the application. +It takes in the error object and displays the error message to the user. +If the error is due to the Talawa API being unavailable, it displays a custom message. And for other error cases, it is using regular expression (case-insensitive) to match and show valid messages + +## Parameters + +### a + +`unknown` + +### error + +`unknown` + +## Returns + +`void` diff --git a/docs/docs/auto-docs/utils/fieldTypes/variables/default.md b/docs/docs/auto-docs/utils/fieldTypes/variables/default.md new file mode 100644 index 0000000000..ab22b42451 --- /dev/null +++ b/docs/docs/auto-docs/utils/fieldTypes/variables/default.md @@ -0,0 +1,9 @@ +[Admin Docs](/) + +*** + +# Variable: default + +> `const` **default**: `string`[] + +Defined in: [src/utils/fieldTypes.ts:1](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/utils/fieldTypes.ts#L1) diff --git a/docs/docs/auto-docs/utils/formEnumFields/variables/countryOptions.md b/docs/docs/auto-docs/utils/formEnumFields/variables/countryOptions.md new file mode 100644 index 0000000000..cd8aeae290 --- /dev/null +++ b/docs/docs/auto-docs/utils/formEnumFields/variables/countryOptions.md @@ -0,0 +1,19 @@ +[Admin Docs](/) + +*** + +# Variable: countryOptions + +> `const` **countryOptions**: `object`[] + +Defined in: [src/utils/formEnumFields.ts:1](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/utils/formEnumFields.ts#L1) + +## Type declaration + +### label + +> **label**: `string` = `'Afghanistan'` + +### value + +> **value**: `string` = `'af'` diff --git a/docs/docs/auto-docs/utils/formEnumFields/variables/educationGradeEnum.md b/docs/docs/auto-docs/utils/formEnumFields/variables/educationGradeEnum.md new file mode 100644 index 0000000000..9767e5baf9 --- /dev/null +++ b/docs/docs/auto-docs/utils/formEnumFields/variables/educationGradeEnum.md @@ -0,0 +1,19 @@ +[Admin Docs](/) + +*** + +# Variable: educationGradeEnum + +> `const` **educationGradeEnum**: `object`[] + +Defined in: [src/utils/formEnumFields.ts:202](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/utils/formEnumFields.ts#L202) + +## Type declaration + +### label + +> **label**: `string` = `'No-Grade'` + +### value + +> **value**: `string` = `'NO_GRADE'` diff --git a/docs/docs/auto-docs/utils/formEnumFields/variables/employmentStatusEnum.md b/docs/docs/auto-docs/utils/formEnumFields/variables/employmentStatusEnum.md new file mode 100644 index 0000000000..45ec233b9e --- /dev/null +++ b/docs/docs/auto-docs/utils/formEnumFields/variables/employmentStatusEnum.md @@ -0,0 +1,19 @@ +[Admin Docs](/) + +*** + +# Variable: employmentStatusEnum + +> `const` **employmentStatusEnum**: `object`[] + +Defined in: [src/utils/formEnumFields.ts:311](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/utils/formEnumFields.ts#L311) + +## Type declaration + +### label + +> **label**: `string` = `'Full-Time'` + +### value + +> **value**: `string` = `'FULL_TIME'` diff --git a/docs/docs/auto-docs/utils/formEnumFields/variables/genderEnum.md b/docs/docs/auto-docs/utils/formEnumFields/variables/genderEnum.md new file mode 100644 index 0000000000..a39216c4e8 --- /dev/null +++ b/docs/docs/auto-docs/utils/formEnumFields/variables/genderEnum.md @@ -0,0 +1,19 @@ +[Admin Docs](/) + +*** + +# Variable: genderEnum + +> `const` **genderEnum**: `object`[] + +Defined in: [src/utils/formEnumFields.ts:296](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/utils/formEnumFields.ts#L296) + +## Type declaration + +### label + +> **label**: `string` = `'Male'` + +### value + +> **value**: `string` = `'MALE'` diff --git a/docs/docs/auto-docs/utils/formEnumFields/variables/maritalStatusEnum.md b/docs/docs/auto-docs/utils/formEnumFields/variables/maritalStatusEnum.md new file mode 100644 index 0000000000..7a68edb4bf --- /dev/null +++ b/docs/docs/auto-docs/utils/formEnumFields/variables/maritalStatusEnum.md @@ -0,0 +1,19 @@ +[Admin Docs](/) + +*** + +# Variable: maritalStatusEnum + +> `const` **maritalStatusEnum**: `object`[] + +Defined in: [src/utils/formEnumFields.ts:269](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/utils/formEnumFields.ts#L269) + +## Type declaration + +### label + +> **label**: `string` = `'Single'` + +### value + +> **value**: `string` = `'SINGLE'` diff --git a/docs/docs/auto-docs/utils/formEnumFields/variables/userRoleEnum.md b/docs/docs/auto-docs/utils/formEnumFields/variables/userRoleEnum.md new file mode 100644 index 0000000000..c240d890e7 --- /dev/null +++ b/docs/docs/auto-docs/utils/formEnumFields/variables/userRoleEnum.md @@ -0,0 +1,19 @@ +[Admin Docs](/) + +*** + +# Variable: userRoleEnum + +> `const` **userRoleEnum**: `object`[] + +Defined in: [src/utils/formEnumFields.ts:326](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/utils/formEnumFields.ts#L326) + +## Type declaration + +### label + +> **label**: `string` = `'User'` + +### value + +> **value**: `string` = `'USER'` diff --git a/docs/docs/auto-docs/utils/getOrganizationId/functions/default.md b/docs/docs/auto-docs/utils/getOrganizationId/functions/default.md new file mode 100644 index 0000000000..0f13402d89 --- /dev/null +++ b/docs/docs/auto-docs/utils/getOrganizationId/functions/default.md @@ -0,0 +1,19 @@ +[Admin Docs](/) + +*** + +# Function: default() + +> **default**(`url`): `string` + +Defined in: [src/utils/getOrganizationId.ts:2](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/utils/getOrganizationId.ts#L2) + +## Parameters + +### url + +`string` + +## Returns + +`string` diff --git a/docs/docs/auto-docs/utils/getRefreshToken/functions/refreshToken.md b/docs/docs/auto-docs/utils/getRefreshToken/functions/refreshToken.md new file mode 100644 index 0000000000..1ce9ab6342 --- /dev/null +++ b/docs/docs/auto-docs/utils/getRefreshToken/functions/refreshToken.md @@ -0,0 +1,13 @@ +[Admin Docs](/) + +*** + +# Function: refreshToken() + +> **refreshToken**(): `Promise`\<`boolean`\> + +Defined in: [src/utils/getRefreshToken.ts:6](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/utils/getRefreshToken.ts#L6) + +## Returns + +`Promise`\<`boolean`\> diff --git a/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceActionItemCategoryInfo.md b/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceActionItemCategoryInfo.md new file mode 100644 index 0000000000..7bd94ed2a3 --- /dev/null +++ b/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceActionItemCategoryInfo.md @@ -0,0 +1,59 @@ +[Admin Docs](/) + +*** + +# Interface: InterfaceActionItemCategoryInfo + +Defined in: [src/utils/interfaces.ts:31](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/utils/interfaces.ts#L31) + +## Properties + +### \_id + +> **\_id**: `string` + +Defined in: [src/utils/interfaces.ts:32](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/utils/interfaces.ts#L32) + +*** + +### createdAt + +> **createdAt**: `string` + +Defined in: [src/utils/interfaces.ts:35](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/utils/interfaces.ts#L35) + +*** + +### creator + +> **creator**: `object` + +Defined in: [src/utils/interfaces.ts:36](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/utils/interfaces.ts#L36) + +#### \_id + +> **\_id**: `string` + +#### firstName + +> **firstName**: `string` + +#### lastName + +> **lastName**: `string` + +*** + +### isDisabled + +> **isDisabled**: `boolean` + +Defined in: [src/utils/interfaces.ts:34](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/utils/interfaces.ts#L34) + +*** + +### name + +> **name**: `string` + +Defined in: [src/utils/interfaces.ts:33](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/utils/interfaces.ts#L33) diff --git a/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceActionItemCategoryList.md b/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceActionItemCategoryList.md new file mode 100644 index 0000000000..556d3740bd --- /dev/null +++ b/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceActionItemCategoryList.md @@ -0,0 +1,15 @@ +[Admin Docs](/) + +*** + +# Interface: InterfaceActionItemCategoryList + +Defined in: [src/utils/interfaces.ts:39](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/utils/interfaces.ts#L39) + +## Properties + +### actionItemCategoriesByOrganization + +> **actionItemCategoriesByOrganization**: [`InterfaceActionItemCategoryInfo`](InterfaceActionItemCategoryInfo.md)[] + +Defined in: [src/utils/interfaces.ts:40](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/utils/interfaces.ts#L40) diff --git a/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceActionItemInfo.md b/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceActionItemInfo.md new file mode 100644 index 0000000000..891dcd0e14 --- /dev/null +++ b/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceActionItemInfo.md @@ -0,0 +1,151 @@ +[Admin Docs](/) + +*** + +# Interface: InterfaceActionItemInfo + +Defined in: [src/utils/interfaces.ts:43](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/utils/interfaces.ts#L43) + +## Properties + +### \_id + +> **\_id**: `string` + +Defined in: [src/utils/interfaces.ts:44](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/utils/interfaces.ts#L44) + +*** + +### actionItemCategory + +> **actionItemCategory**: `object` + +Defined in: [src/utils/interfaces.ts:50](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/utils/interfaces.ts#L50) + +#### \_id + +> **\_id**: `string` + +#### name + +> **name**: `string` + +*** + +### allottedHours + +> **allottedHours**: `number` + +Defined in: [src/utils/interfaces.ts:65](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/utils/interfaces.ts#L65) + +*** + +### assignee + +> **assignee**: [`InterfaceEventVolunteerInfo`](InterfaceEventVolunteerInfo.md) + +Defined in: [src/utils/interfaces.ts:46](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/utils/interfaces.ts#L46) + +*** + +### assigneeGroup + +> **assigneeGroup**: [`InterfaceVolunteerGroupInfo`](InterfaceVolunteerGroupInfo.md) + +Defined in: [src/utils/interfaces.ts:47](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/utils/interfaces.ts#L47) + +*** + +### assigneeType + +> **assigneeType**: `"User"` \| `"EventVolunteerGroup"` \| `"EventVolunteer"` + +Defined in: [src/utils/interfaces.ts:45](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/utils/interfaces.ts#L45) + +*** + +### assigneeUser + +> **assigneeUser**: [`InterfaceUserInfo`](InterfaceUserInfo.md) + +Defined in: [src/utils/interfaces.ts:48](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/utils/interfaces.ts#L48) + +*** + +### assigner + +> **assigner**: [`InterfaceUserInfo`](InterfaceUserInfo.md) + +Defined in: [src/utils/interfaces.ts:49](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/utils/interfaces.ts#L49) + +*** + +### assignmentDate + +> **assignmentDate**: `Date` + +Defined in: [src/utils/interfaces.ts:56](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/utils/interfaces.ts#L56) + +*** + +### completionDate + +> **completionDate**: `Date` + +Defined in: [src/utils/interfaces.ts:58](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/utils/interfaces.ts#L58) + +*** + +### creator + +> **creator**: [`InterfaceUserInfo`](InterfaceUserInfo.md) + +Defined in: [src/utils/interfaces.ts:64](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/utils/interfaces.ts#L64) + +*** + +### dueDate + +> **dueDate**: `Date` + +Defined in: [src/utils/interfaces.ts:57](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/utils/interfaces.ts#L57) + +*** + +### event + +> **event**: `object` + +Defined in: [src/utils/interfaces.ts:60](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/utils/interfaces.ts#L60) + +#### \_id + +> **\_id**: `string` + +#### title + +> **title**: `string` + +*** + +### isCompleted + +> **isCompleted**: `boolean` + +Defined in: [src/utils/interfaces.ts:59](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/utils/interfaces.ts#L59) + +*** + +### postCompletionNotes + +> **postCompletionNotes**: `string` + +Defined in: [src/utils/interfaces.ts:55](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/utils/interfaces.ts#L55) + +*** + +### preCompletionNotes + +> **preCompletionNotes**: `string` + +Defined in: [src/utils/interfaces.ts:54](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/utils/interfaces.ts#L54) diff --git a/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceActionItemList.md b/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceActionItemList.md new file mode 100644 index 0000000000..13eb018979 --- /dev/null +++ b/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceActionItemList.md @@ -0,0 +1,15 @@ +[Admin Docs](/) + +*** + +# Interface: InterfaceActionItemList + +Defined in: [src/utils/interfaces.ts:68](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/utils/interfaces.ts#L68) + +## Properties + +### actionItemsByOrganization + +> **actionItemsByOrganization**: [`InterfaceActionItemInfo`](InterfaceActionItemInfo.md)[] + +Defined in: [src/utils/interfaces.ts:69](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/utils/interfaces.ts#L69) diff --git a/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceAddOnSpotAttendeeProps.md b/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceAddOnSpotAttendeeProps.md new file mode 100644 index 0000000000..b6081abd80 --- /dev/null +++ b/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceAddOnSpotAttendeeProps.md @@ -0,0 +1,39 @@ +[Admin Docs](/) + +*** + +# Interface: InterfaceAddOnSpotAttendeeProps + +Defined in: [src/utils/interfaces.ts:546](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/utils/interfaces.ts#L546) + +## Properties + +### handleClose() + +> **handleClose**: () => `void` + +Defined in: [src/utils/interfaces.ts:548](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/utils/interfaces.ts#L548) + +#### Returns + +`void` + +*** + +### reloadMembers() + +> **reloadMembers**: () => `void` + +Defined in: [src/utils/interfaces.ts:549](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/utils/interfaces.ts#L549) + +#### Returns + +`void` + +*** + +### show + +> **show**: `boolean` + +Defined in: [src/utils/interfaces.ts:547](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/utils/interfaces.ts#L547) diff --git a/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceAddress.md b/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceAddress.md new file mode 100644 index 0000000000..5fcaf447ac --- /dev/null +++ b/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceAddress.md @@ -0,0 +1,71 @@ +[Admin Docs](/) + +*** + +# Interface: InterfaceAddress + +Defined in: [src/utils/interfaces.ts:453](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/utils/interfaces.ts#L453) + +## Properties + +### city + +> **city**: `string` + +Defined in: [src/utils/interfaces.ts:454](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/utils/interfaces.ts#L454) + +*** + +### countryCode + +> **countryCode**: `string` + +Defined in: [src/utils/interfaces.ts:455](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/utils/interfaces.ts#L455) + +*** + +### dependentLocality + +> **dependentLocality**: `string` + +Defined in: [src/utils/interfaces.ts:456](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/utils/interfaces.ts#L456) + +*** + +### line1 + +> **line1**: `string` + +Defined in: [src/utils/interfaces.ts:457](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/utils/interfaces.ts#L457) + +*** + +### line2 + +> **line2**: `string` + +Defined in: [src/utils/interfaces.ts:458](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/utils/interfaces.ts#L458) + +*** + +### postalCode + +> **postalCode**: `string` + +Defined in: [src/utils/interfaces.ts:459](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/utils/interfaces.ts#L459) + +*** + +### sortingCode + +> **sortingCode**: `string` + +Defined in: [src/utils/interfaces.ts:460](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/utils/interfaces.ts#L460) + +*** + +### state + +> **state**: `string` + +Defined in: [src/utils/interfaces.ts:461](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/utils/interfaces.ts#L461) diff --git a/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceAgendaItemCategoryInfo.md b/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceAgendaItemCategoryInfo.md new file mode 100644 index 0000000000..c5083d23af --- /dev/null +++ b/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceAgendaItemCategoryInfo.md @@ -0,0 +1,51 @@ +[Admin Docs](/) + +*** + +# Interface: InterfaceAgendaItemCategoryInfo + +Defined in: [src/utils/interfaces.ts:531](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/utils/interfaces.ts#L531) + +## Properties + +### \_id + +> **\_id**: `string` + +Defined in: [src/utils/interfaces.ts:532](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/utils/interfaces.ts#L532) + +*** + +### createdBy + +> **createdBy**: `object` + +Defined in: [src/utils/interfaces.ts:535](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/utils/interfaces.ts#L535) + +#### \_id + +> **\_id**: `string` + +#### firstName + +> **firstName**: `string` + +#### lastName + +> **lastName**: `string` + +*** + +### description + +> **description**: `string` + +Defined in: [src/utils/interfaces.ts:534](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/utils/interfaces.ts#L534) + +*** + +### name + +> **name**: `string` + +Defined in: [src/utils/interfaces.ts:533](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/utils/interfaces.ts#L533) diff --git a/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceAgendaItemCategoryList.md b/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceAgendaItemCategoryList.md new file mode 100644 index 0000000000..1af1e92005 --- /dev/null +++ b/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceAgendaItemCategoryList.md @@ -0,0 +1,15 @@ +[Admin Docs](/) + +*** + +# Interface: InterfaceAgendaItemCategoryList + +Defined in: [src/utils/interfaces.ts:542](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/utils/interfaces.ts#L542) + +## Properties + +### agendaItemCategoriesByOrganization + +> **agendaItemCategoriesByOrganization**: [`InterfaceAgendaItemCategoryInfo`](InterfaceAgendaItemCategoryInfo.md)[] + +Defined in: [src/utils/interfaces.ts:543](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/utils/interfaces.ts#L543) diff --git a/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceAgendaItemInfo.md b/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceAgendaItemInfo.md new file mode 100644 index 0000000000..4daa8d51cf --- /dev/null +++ b/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceAgendaItemInfo.md @@ -0,0 +1,151 @@ +[Admin Docs](/) + +*** + +# Interface: InterfaceAgendaItemInfo + +Defined in: [src/utils/interfaces.ts:560](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/utils/interfaces.ts#L560) + +## Properties + +### \_id + +> **\_id**: `string` + +Defined in: [src/utils/interfaces.ts:561](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/utils/interfaces.ts#L561) + +*** + +### attachments + +> **attachments**: `string`[] + +Defined in: [src/utils/interfaces.ts:565](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/utils/interfaces.ts#L565) + +*** + +### categories + +> **categories**: `object`[] + +Defined in: [src/utils/interfaces.ts:578](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/utils/interfaces.ts#L578) + +#### \_id + +> **\_id**: `string` + +#### name + +> **name**: `string` + +*** + +### createdBy + +> **createdBy**: `object` + +Defined in: [src/utils/interfaces.ts:566](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/utils/interfaces.ts#L566) + +#### \_id + +> **\_id**: `string` + +#### firstName + +> **firstName**: `string` + +#### lastName + +> **lastName**: `string` + +*** + +### description + +> **description**: `string` + +Defined in: [src/utils/interfaces.ts:563](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/utils/interfaces.ts#L563) + +*** + +### duration + +> **duration**: `string` + +Defined in: [src/utils/interfaces.ts:564](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/utils/interfaces.ts#L564) + +*** + +### organization + +> **organization**: `object` + +Defined in: [src/utils/interfaces.ts:582](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/utils/interfaces.ts#L582) + +#### \_id + +> **\_id**: `string` + +#### name + +> **name**: `string` + +*** + +### relatedEvent + +> **relatedEvent**: `object` + +Defined in: [src/utils/interfaces.ts:586](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/utils/interfaces.ts#L586) + +#### \_id + +> **\_id**: `string` + +#### title + +> **title**: `string` + +*** + +### sequence + +> **sequence**: `number` + +Defined in: [src/utils/interfaces.ts:577](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/utils/interfaces.ts#L577) + +*** + +### title + +> **title**: `string` + +Defined in: [src/utils/interfaces.ts:562](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/utils/interfaces.ts#L562) + +*** + +### urls + +> **urls**: `string`[] + +Defined in: [src/utils/interfaces.ts:571](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/utils/interfaces.ts#L571) + +*** + +### users + +> **users**: `object`[] + +Defined in: [src/utils/interfaces.ts:572](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/utils/interfaces.ts#L572) + +#### \_id + +> **\_id**: `string` + +#### firstName + +> **firstName**: `string` + +#### lastName + +> **lastName**: `string` diff --git a/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceAgendaItemList.md b/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceAgendaItemList.md new file mode 100644 index 0000000000..6c1c0c2fc1 --- /dev/null +++ b/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceAgendaItemList.md @@ -0,0 +1,15 @@ +[Admin Docs](/) + +*** + +# Interface: InterfaceAgendaItemList + +Defined in: [src/utils/interfaces.ts:592](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/utils/interfaces.ts#L592) + +## Properties + +### agendaItemByEvent + +> **agendaItemByEvent**: [`InterfaceAgendaItemInfo`](InterfaceAgendaItemInfo.md)[] + +Defined in: [src/utils/interfaces.ts:593](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/utils/interfaces.ts#L593) diff --git a/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceBaseEvent.md b/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceBaseEvent.md new file mode 100644 index 0000000000..dc5b5c463a --- /dev/null +++ b/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceBaseEvent.md @@ -0,0 +1,92 @@ +[Admin Docs](/) + +*** + +# Interface: InterfaceBaseEvent + +Defined in: [src/utils/interfaces.ts:18](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/utils/interfaces.ts#L18) + +## Extended by + +- [`InterfaceQueryOrganizationEventListItem`](InterfaceQueryOrganizationEventListItem.md) +- [`InterfaceUserEvents`](InterfaceUserEvents.md) + +## Properties + +### \_id + +> **\_id**: `string` + +Defined in: [src/utils/interfaces.ts:19](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/utils/interfaces.ts#L19) + +*** + +### allDay + +> **allDay**: `boolean` + +Defined in: [src/utils/interfaces.ts:27](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/utils/interfaces.ts#L27) + +*** + +### description + +> **description**: `string` + +Defined in: [src/utils/interfaces.ts:21](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/utils/interfaces.ts#L21) + +*** + +### endDate + +> **endDate**: `string` + +Defined in: [src/utils/interfaces.ts:23](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/utils/interfaces.ts#L23) + +*** + +### endTime + +> **endTime**: `string` + +Defined in: [src/utils/interfaces.ts:26](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/utils/interfaces.ts#L26) + +*** + +### location + +> **location**: `string` + +Defined in: [src/utils/interfaces.ts:24](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/utils/interfaces.ts#L24) + +*** + +### recurring + +> **recurring**: `boolean` + +Defined in: [src/utils/interfaces.ts:28](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/utils/interfaces.ts#L28) + +*** + +### startDate + +> **startDate**: `string` + +Defined in: [src/utils/interfaces.ts:22](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/utils/interfaces.ts#L22) + +*** + +### startTime + +> **startTime**: `string` + +Defined in: [src/utils/interfaces.ts:25](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/utils/interfaces.ts#L25) + +*** + +### title + +> **title**: `string` + +Defined in: [src/utils/interfaces.ts:20](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/utils/interfaces.ts#L20) diff --git a/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceCampaignInfo.md b/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceCampaignInfo.md new file mode 100644 index 0000000000..57d1dc7deb --- /dev/null +++ b/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceCampaignInfo.md @@ -0,0 +1,63 @@ +[Admin Docs](/) + +*** + +# Interface: InterfaceCampaignInfo + +Defined in: [src/utils/interfaces.ts:362](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/utils/interfaces.ts#L362) + +## Properties + +### \_id + +> **\_id**: `string` + +Defined in: [src/utils/interfaces.ts:363](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/utils/interfaces.ts#L363) + +*** + +### createdAt + +> **createdAt**: `string` + +Defined in: [src/utils/interfaces.ts:368](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/utils/interfaces.ts#L368) + +*** + +### currency + +> **currency**: `string` + +Defined in: [src/utils/interfaces.ts:369](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/utils/interfaces.ts#L369) + +*** + +### endDate + +> **endDate**: `Date` + +Defined in: [src/utils/interfaces.ts:367](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/utils/interfaces.ts#L367) + +*** + +### fundingGoal + +> **fundingGoal**: `number` + +Defined in: [src/utils/interfaces.ts:365](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/utils/interfaces.ts#L365) + +*** + +### name + +> **name**: `string` + +Defined in: [src/utils/interfaces.ts:364](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/utils/interfaces.ts#L364) + +*** + +### startDate + +> **startDate**: `Date` + +Defined in: [src/utils/interfaces.ts:366](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/utils/interfaces.ts#L366) diff --git a/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceCreateFund.md b/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceCreateFund.md new file mode 100644 index 0000000000..577a24c8a6 --- /dev/null +++ b/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceCreateFund.md @@ -0,0 +1,47 @@ +[Admin Docs](/) + +*** + +# Interface: InterfaceCreateFund + +Defined in: [src/utils/interfaces.ts:463](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/utils/interfaces.ts#L463) + +## Properties + +### fundName + +> **fundName**: `string` + +Defined in: [src/utils/interfaces.ts:464](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/utils/interfaces.ts#L464) + +*** + +### fundRef + +> **fundRef**: `string` + +Defined in: [src/utils/interfaces.ts:465](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/utils/interfaces.ts#L465) + +*** + +### isArchived + +> **isArchived**: `boolean` + +Defined in: [src/utils/interfaces.ts:467](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/utils/interfaces.ts#L467) + +*** + +### isDefault + +> **isDefault**: `boolean` + +Defined in: [src/utils/interfaces.ts:466](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/utils/interfaces.ts#L466) + +*** + +### taxDeductible + +> **taxDeductible**: `boolean` + +Defined in: [src/utils/interfaces.ts:468](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/utils/interfaces.ts#L468) diff --git a/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceCreatePledge.md b/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceCreatePledge.md new file mode 100644 index 0000000000..6fdcd8eba2 --- /dev/null +++ b/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceCreatePledge.md @@ -0,0 +1,47 @@ +[Admin Docs](/) + +*** + +# Interface: InterfaceCreatePledge + +Defined in: [src/utils/interfaces.ts:508](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/utils/interfaces.ts#L508) + +## Properties + +### pledgeAmount + +> **pledgeAmount**: `number` + +Defined in: [src/utils/interfaces.ts:510](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/utils/interfaces.ts#L510) + +*** + +### pledgeCurrency + +> **pledgeCurrency**: `string` + +Defined in: [src/utils/interfaces.ts:511](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/utils/interfaces.ts#L511) + +*** + +### pledgeEndDate + +> **pledgeEndDate**: `Date` + +Defined in: [src/utils/interfaces.ts:513](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/utils/interfaces.ts#L513) + +*** + +### pledgeStartDate + +> **pledgeStartDate**: `Date` + +Defined in: [src/utils/interfaces.ts:512](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/utils/interfaces.ts#L512) + +*** + +### pledgeUsers + +> **pledgeUsers**: [`InterfaceUserInfo`](InterfaceUserInfo.md)[] + +Defined in: [src/utils/interfaces.ts:509](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/utils/interfaces.ts#L509) diff --git a/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceCreateVolunteerGroup.md b/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceCreateVolunteerGroup.md new file mode 100644 index 0000000000..53e953ba4d --- /dev/null +++ b/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceCreateVolunteerGroup.md @@ -0,0 +1,47 @@ +[Admin Docs](/) + +*** + +# Interface: InterfaceCreateVolunteerGroup + +Defined in: [src/utils/interfaces.ts:648](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/utils/interfaces.ts#L648) + +## Properties + +### description + +> **description**: `string` + +Defined in: [src/utils/interfaces.ts:650](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/utils/interfaces.ts#L650) + +*** + +### leader + +> **leader**: [`InterfaceUserInfo`](InterfaceUserInfo.md) + +Defined in: [src/utils/interfaces.ts:651](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/utils/interfaces.ts#L651) + +*** + +### name + +> **name**: `string` + +Defined in: [src/utils/interfaces.ts:649](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/utils/interfaces.ts#L649) + +*** + +### volunteersRequired + +> **volunteersRequired**: `number` + +Defined in: [src/utils/interfaces.ts:652](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/utils/interfaces.ts#L652) + +*** + +### volunteerUsers + +> **volunteerUsers**: [`InterfaceUserInfo`](InterfaceUserInfo.md)[] + +Defined in: [src/utils/interfaces.ts:653](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/utils/interfaces.ts#L653) diff --git a/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceCustomFieldData.md b/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceCustomFieldData.md new file mode 100644 index 0000000000..ef125c1bff --- /dev/null +++ b/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceCustomFieldData.md @@ -0,0 +1,23 @@ +[Admin Docs](/) + +*** + +# Interface: InterfaceCustomFieldData + +Defined in: [src/utils/interfaces.ts:600](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/utils/interfaces.ts#L600) + +## Properties + +### name + +> **name**: `string` + +Defined in: [src/utils/interfaces.ts:602](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/utils/interfaces.ts#L602) + +*** + +### type + +> **type**: `string` + +Defined in: [src/utils/interfaces.ts:601](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/utils/interfaces.ts#L601) diff --git a/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceEventVolunteerInfo.md b/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceEventVolunteerInfo.md new file mode 100644 index 0000000000..52ac9a20b8 --- /dev/null +++ b/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceEventVolunteerInfo.md @@ -0,0 +1,71 @@ +[Admin Docs](/) + +*** + +# Interface: InterfaceEventVolunteerInfo + +Defined in: [src/utils/interfaces.ts:605](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/utils/interfaces.ts#L605) + +## Properties + +### \_id + +> **\_id**: `string` + +Defined in: [src/utils/interfaces.ts:606](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/utils/interfaces.ts#L606) + +*** + +### assignments + +> **assignments**: `object`[] + +Defined in: [src/utils/interfaces.ts:610](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/utils/interfaces.ts#L610) + +#### \_id + +> **\_id**: `string` + +*** + +### groups + +> **groups**: `object`[] + +Defined in: [src/utils/interfaces.ts:613](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/utils/interfaces.ts#L613) + +#### \_id + +> **\_id**: `string` + +#### name + +> **name**: `string` + +#### volunteers + +> **volunteers**: `object`[] + +*** + +### hasAccepted + +> **hasAccepted**: `boolean` + +Defined in: [src/utils/interfaces.ts:607](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/utils/interfaces.ts#L607) + +*** + +### hoursVolunteered + +> **hoursVolunteered**: `number` + +Defined in: [src/utils/interfaces.ts:608](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/utils/interfaces.ts#L608) + +*** + +### user + +> **user**: [`InterfaceUserInfo`](InterfaceUserInfo.md) + +Defined in: [src/utils/interfaces.ts:609](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/utils/interfaces.ts#L609) diff --git a/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceFormData.md b/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceFormData.md new file mode 100644 index 0000000000..2d7523c85a --- /dev/null +++ b/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceFormData.md @@ -0,0 +1,47 @@ +[Admin Docs](/) + +*** + +# Interface: InterfaceFormData + +Defined in: [src/utils/interfaces.ts:552](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/utils/interfaces.ts#L552) + +## Properties + +### email + +> **email**: `string` + +Defined in: [src/utils/interfaces.ts:555](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/utils/interfaces.ts#L555) + +*** + +### firstName + +> **firstName**: `string` + +Defined in: [src/utils/interfaces.ts:553](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/utils/interfaces.ts#L553) + +*** + +### gender + +> **gender**: `string` + +Defined in: [src/utils/interfaces.ts:557](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/utils/interfaces.ts#L557) + +*** + +### lastName + +> **lastName**: `string` + +Defined in: [src/utils/interfaces.ts:554](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/utils/interfaces.ts#L554) + +*** + +### phoneNo + +> **phoneNo**: `string` + +Defined in: [src/utils/interfaces.ts:556](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/utils/interfaces.ts#L556) diff --git a/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceFundInfo.md b/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceFundInfo.md new file mode 100644 index 0000000000..5e310a5aa9 --- /dev/null +++ b/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceFundInfo.md @@ -0,0 +1,91 @@ +[Admin Docs](/) + +*** + +# Interface: InterfaceFundInfo + +Defined in: [src/utils/interfaces.ts:351](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/utils/interfaces.ts#L351) + +## Properties + +### \_id + +> **\_id**: `string` + +Defined in: [src/utils/interfaces.ts:352](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/utils/interfaces.ts#L352) + +*** + +### createdAt + +> **createdAt**: `string` + +Defined in: [src/utils/interfaces.ts:358](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/utils/interfaces.ts#L358) + +*** + +### creator + +> **creator**: `object` + +Defined in: [src/utils/interfaces.ts:360](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/utils/interfaces.ts#L360) + +#### \_id + +> **\_id**: `string` + +#### firstName + +> **firstName**: `string` + +#### lastName + +> **lastName**: `string` + +*** + +### isArchived + +> **isArchived**: `boolean` + +Defined in: [src/utils/interfaces.ts:356](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/utils/interfaces.ts#L356) + +*** + +### isDefault + +> **isDefault**: `boolean` + +Defined in: [src/utils/interfaces.ts:357](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/utils/interfaces.ts#L357) + +*** + +### name + +> **name**: `string` + +Defined in: [src/utils/interfaces.ts:353](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/utils/interfaces.ts#L353) + +*** + +### organizationId + +> **organizationId**: `string` + +Defined in: [src/utils/interfaces.ts:359](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/utils/interfaces.ts#L359) + +*** + +### refrenceNumber + +> **refrenceNumber**: `string` + +Defined in: [src/utils/interfaces.ts:354](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/utils/interfaces.ts#L354) + +*** + +### taxDeductible + +> **taxDeductible**: `boolean` + +Defined in: [src/utils/interfaces.ts:355](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/utils/interfaces.ts#L355) diff --git a/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceMapType.md b/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceMapType.md new file mode 100644 index 0000000000..3cede01781 --- /dev/null +++ b/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceMapType.md @@ -0,0 +1,11 @@ +[Admin Docs](/) + +*** + +# Interface: InterfaceMapType + +Defined in: [src/utils/interfaces.ts:596](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/utils/interfaces.ts#L596) + +## Indexable + +\[`key`: `string`\]: `string` diff --git a/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceMemberInfo.md b/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceMemberInfo.md new file mode 100644 index 0000000000..07d2839336 --- /dev/null +++ b/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceMemberInfo.md @@ -0,0 +1,67 @@ +[Admin Docs](/) + +*** + +# Interface: InterfaceMemberInfo + +Defined in: [src/utils/interfaces.ts:79](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/utils/interfaces.ts#L79) + +## Properties + +### \_id + +> **\_id**: `string` + +Defined in: [src/utils/interfaces.ts:80](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/utils/interfaces.ts#L80) + +*** + +### createdAt + +> **createdAt**: `string` + +Defined in: [src/utils/interfaces.ts:85](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/utils/interfaces.ts#L85) + +*** + +### email + +> **email**: `string` + +Defined in: [src/utils/interfaces.ts:83](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/utils/interfaces.ts#L83) + +*** + +### firstName + +> **firstName**: `string` + +Defined in: [src/utils/interfaces.ts:81](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/utils/interfaces.ts#L81) + +*** + +### image + +> **image**: `string` + +Defined in: [src/utils/interfaces.ts:84](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/utils/interfaces.ts#L84) + +*** + +### lastName + +> **lastName**: `string` + +Defined in: [src/utils/interfaces.ts:82](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/utils/interfaces.ts#L82) + +*** + +### organizationsBlockedBy + +> **organizationsBlockedBy**: `object`[] + +Defined in: [src/utils/interfaces.ts:86](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/utils/interfaces.ts#L86) + +#### \_id + +> **\_id**: `string` diff --git a/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceMembersList.md b/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceMembersList.md new file mode 100644 index 0000000000..18b0bc4c1a --- /dev/null +++ b/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceMembersList.md @@ -0,0 +1,23 @@ +[Admin Docs](/) + +*** + +# Interface: InterfaceMembersList + +Defined in: [src/utils/interfaces.ts:72](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/utils/interfaces.ts#L72) + +## Properties + +### organizations + +> **organizations**: `object`[] + +Defined in: [src/utils/interfaces.ts:73](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/utils/interfaces.ts#L73) + +#### \_id + +> **\_id**: `string` + +#### members + +> **members**: [`InterfaceMemberInfo`](InterfaceMemberInfo.md)[] diff --git a/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceOrgConnectionInfoType.md b/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceOrgConnectionInfoType.md new file mode 100644 index 0000000000..f3ceadc488 --- /dev/null +++ b/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceOrgConnectionInfoType.md @@ -0,0 +1,91 @@ +[Admin Docs](/) + +*** + +# Interface: InterfaceOrgConnectionInfoType + +Defined in: [src/utils/interfaces.ts:91](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/utils/interfaces.ts#L91) + +## Properties + +### \_id + +> **\_id**: `string` + +Defined in: [src/utils/interfaces.ts:92](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/utils/interfaces.ts#L92) + +*** + +### address + +> **address**: [`InterfaceAddress`](InterfaceAddress.md) + +Defined in: [src/utils/interfaces.ts:107](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/utils/interfaces.ts#L107) + +*** + +### admins + +> **admins**: `object`[] + +Defined in: [src/utils/interfaces.ts:103](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/utils/interfaces.ts#L103) + +#### \_id + +> **\_id**: `string` + +*** + +### createdAt + +> **createdAt**: `string` + +Defined in: [src/utils/interfaces.ts:106](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/utils/interfaces.ts#L106) + +*** + +### creator + +> **creator**: `object` + +Defined in: [src/utils/interfaces.ts:94](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/utils/interfaces.ts#L94) + +#### \_id + +> **\_id**: `string` + +#### firstName + +> **firstName**: `string` + +#### lastName + +> **lastName**: `string` + +*** + +### image + +> **image**: `string` + +Defined in: [src/utils/interfaces.ts:93](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/utils/interfaces.ts#L93) + +*** + +### members + +> **members**: `object`[] + +Defined in: [src/utils/interfaces.ts:100](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/utils/interfaces.ts#L100) + +#### \_id + +> **\_id**: `string` + +*** + +### name + +> **name**: `string` + +Defined in: [src/utils/interfaces.ts:99](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/utils/interfaces.ts#L99) diff --git a/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceOrgConnectionType.md b/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceOrgConnectionType.md new file mode 100644 index 0000000000..01ad47948e --- /dev/null +++ b/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceOrgConnectionType.md @@ -0,0 +1,15 @@ +[Admin Docs](/) + +*** + +# Interface: InterfaceOrgConnectionType + +Defined in: [src/utils/interfaces.ts:109](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/utils/interfaces.ts#L109) + +## Properties + +### organizationsConnection + +> **organizationsConnection**: [`InterfaceOrgConnectionInfoType`](InterfaceOrgConnectionInfoType.md)[] + +Defined in: [src/utils/interfaces.ts:110](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/utils/interfaces.ts#L110) diff --git a/docs/docs/auto-docs/utils/interfaces/interfaces/InterfacePledgeInfo.md b/docs/docs/auto-docs/utils/interfaces/interfaces/InterfacePledgeInfo.md new file mode 100644 index 0000000000..bf4ed5e69d --- /dev/null +++ b/docs/docs/auto-docs/utils/interfaces/interfaces/InterfacePledgeInfo.md @@ -0,0 +1,75 @@ +[Admin Docs](/) + +*** + +# Interface: InterfacePledgeInfo + +Defined in: [src/utils/interfaces.ts:371](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/utils/interfaces.ts#L371) + +## Properties + +### \_id + +> **\_id**: `string` + +Defined in: [src/utils/interfaces.ts:372](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/utils/interfaces.ts#L372) + +*** + +### amount + +> **amount**: `number` + +Defined in: [src/utils/interfaces.ts:374](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/utils/interfaces.ts#L374) + +*** + +### campaign? + +> `optional` **campaign**: `object` + +Defined in: [src/utils/interfaces.ts:373](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/utils/interfaces.ts#L373) + +#### \_id + +> **\_id**: `string` + +#### endDate + +> **endDate**: `Date` + +#### name + +> **name**: `string` + +*** + +### currency + +> **currency**: `string` + +Defined in: [src/utils/interfaces.ts:375](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/utils/interfaces.ts#L375) + +*** + +### endDate + +> **endDate**: `string` + +Defined in: [src/utils/interfaces.ts:376](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/utils/interfaces.ts#L376) + +*** + +### startDate + +> **startDate**: `string` + +Defined in: [src/utils/interfaces.ts:377](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/utils/interfaces.ts#L377) + +*** + +### users + +> **users**: [`InterfaceUserInfo`](InterfaceUserInfo.md)[] + +Defined in: [src/utils/interfaces.ts:378](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/utils/interfaces.ts#L378) diff --git a/docs/docs/auto-docs/utils/interfaces/interfaces/InterfacePostCard.md b/docs/docs/auto-docs/utils/interfaces/interfaces/InterfacePostCard.md new file mode 100644 index 0000000000..0e934f3c3d --- /dev/null +++ b/docs/docs/auto-docs/utils/interfaces/interfaces/InterfacePostCard.md @@ -0,0 +1,171 @@ +[Admin Docs](/) + +*** + +# Interface: InterfacePostCard + +Defined in: [src/utils/interfaces.ts:471](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/utils/interfaces.ts#L471) + +## Properties + +### commentCount + +> **commentCount**: `number` + +Defined in: [src/utils/interfaces.ts:485](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/utils/interfaces.ts#L485) + +*** + +### comments + +> **comments**: `object`[] + +Defined in: [src/utils/interfaces.ts:486](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/utils/interfaces.ts#L486) + +#### creator + +> **creator**: `object` + +##### creator.email + +> **email**: `string` + +##### creator.firstName + +> **firstName**: `string` + +##### creator.id + +> **id**: `string` + +##### creator.lastName + +> **lastName**: `string` + +#### id + +> **id**: `string` + +#### likeCount + +> **likeCount**: `number` + +#### likedBy + +> **likedBy**: `object`[] + +#### text + +> **text**: `string` + +*** + +### creator + +> **creator**: `object` + +Defined in: [src/utils/interfaces.ts:473](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/utils/interfaces.ts#L473) + +#### email + +> **email**: `string` + +#### firstName + +> **firstName**: `string` + +#### id + +> **id**: `string` + +#### lastName + +> **lastName**: `string` + +*** + +### fetchPosts() + +> **fetchPosts**: () => `void` + +Defined in: [src/utils/interfaces.ts:505](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/utils/interfaces.ts#L505) + +#### Returns + +`void` + +*** + +### id + +> **id**: `string` + +Defined in: [src/utils/interfaces.ts:472](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/utils/interfaces.ts#L472) + +*** + +### image + +> **image**: `string` + +Defined in: [src/utils/interfaces.ts:480](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/utils/interfaces.ts#L480) + +*** + +### likeCount + +> **likeCount**: `number` + +Defined in: [src/utils/interfaces.ts:484](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/utils/interfaces.ts#L484) + +*** + +### likedBy + +> **likedBy**: `object`[] + +Defined in: [src/utils/interfaces.ts:500](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/utils/interfaces.ts#L500) + +#### firstName + +> **firstName**: `string` + +#### id + +> **id**: `string` + +#### lastName + +> **lastName**: `string` + +*** + +### postedAt + +> **postedAt**: `string` + +Defined in: [src/utils/interfaces.ts:479](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/utils/interfaces.ts#L479) + +*** + +### text + +> **text**: `string` + +Defined in: [src/utils/interfaces.ts:482](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/utils/interfaces.ts#L482) + +*** + +### title + +> **title**: `string` + +Defined in: [src/utils/interfaces.ts:483](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/utils/interfaces.ts#L483) + +*** + +### video + +> **video**: `string` + +Defined in: [src/utils/interfaces.ts:481](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/utils/interfaces.ts#L481) diff --git a/docs/docs/auto-docs/utils/interfaces/interfaces/InterfacePostForm.md b/docs/docs/auto-docs/utils/interfaces/interfaces/InterfacePostForm.md new file mode 100644 index 0000000000..c5388811a0 --- /dev/null +++ b/docs/docs/auto-docs/utils/interfaces/interfaces/InterfacePostForm.md @@ -0,0 +1,47 @@ +[Admin Docs](/) + +*** + +# Interface: InterfacePostForm + +Defined in: [src/utils/interfaces.ts:173](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/utils/interfaces.ts#L173) + +## Properties + +### pinned + +> **pinned**: `boolean` + +Defined in: [src/utils/interfaces.ts:178](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/utils/interfaces.ts#L178) + +*** + +### postinfo + +> **postinfo**: `string` + +Defined in: [src/utils/interfaces.ts:175](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/utils/interfaces.ts#L175) + +*** + +### postphoto + +> **postphoto**: `string` + +Defined in: [src/utils/interfaces.ts:176](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/utils/interfaces.ts#L176) + +*** + +### posttitle + +> **posttitle**: `string` + +Defined in: [src/utils/interfaces.ts:174](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/utils/interfaces.ts#L174) + +*** + +### postvideo + +> **postvideo**: `string` + +Defined in: [src/utils/interfaces.ts:177](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/utils/interfaces.ts#L177) diff --git a/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceQueryBlockPageMemberListItem.md b/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceQueryBlockPageMemberListItem.md new file mode 100644 index 0000000000..0cc99e351a --- /dev/null +++ b/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceQueryBlockPageMemberListItem.md @@ -0,0 +1,51 @@ +[Admin Docs](/) + +*** + +# Interface: InterfaceQueryBlockPageMemberListItem + +Defined in: [src/utils/interfaces.ts:386](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/utils/interfaces.ts#L386) + +## Properties + +### \_id + +> **\_id**: `string` + +Defined in: [src/utils/interfaces.ts:387](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/utils/interfaces.ts#L387) + +*** + +### email + +> **email**: `string` + +Defined in: [src/utils/interfaces.ts:390](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/utils/interfaces.ts#L390) + +*** + +### firstName + +> **firstName**: `string` + +Defined in: [src/utils/interfaces.ts:388](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/utils/interfaces.ts#L388) + +*** + +### lastName + +> **lastName**: `string` + +Defined in: [src/utils/interfaces.ts:389](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/utils/interfaces.ts#L389) + +*** + +### organizationsBlockedBy + +> **organizationsBlockedBy**: `object`[] + +Defined in: [src/utils/interfaces.ts:391](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/utils/interfaces.ts#L391) + +#### \_id + +> **\_id**: `string` diff --git a/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceQueryFundCampaignsPledges.md b/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceQueryFundCampaignsPledges.md new file mode 100644 index 0000000000..a93a284643 --- /dev/null +++ b/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceQueryFundCampaignsPledges.md @@ -0,0 +1,67 @@ +[Admin Docs](/) + +*** + +# Interface: InterfaceQueryFundCampaignsPledges + +Defined in: [src/utils/interfaces.ts:340](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/utils/interfaces.ts#L340) + +## Properties + +### currency + +> **currency**: `string` + +Defined in: [src/utils/interfaces.ts:346](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/utils/interfaces.ts#L346) + +*** + +### endDate + +> **endDate**: `Date` + +Defined in: [src/utils/interfaces.ts:348](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/utils/interfaces.ts#L348) + +*** + +### fundId + +> **fundId**: `object` + +Defined in: [src/utils/interfaces.ts:341](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/utils/interfaces.ts#L341) + +#### name + +> **name**: `string` + +*** + +### fundingGoal + +> **fundingGoal**: `number` + +Defined in: [src/utils/interfaces.ts:345](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/utils/interfaces.ts#L345) + +*** + +### name + +> **name**: `string` + +Defined in: [src/utils/interfaces.ts:344](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/utils/interfaces.ts#L344) + +*** + +### pledges + +> **pledges**: [`InterfacePledgeInfo`](InterfacePledgeInfo.md)[] + +Defined in: [src/utils/interfaces.ts:349](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/utils/interfaces.ts#L349) + +*** + +### startDate + +> **startDate**: `Date` + +Defined in: [src/utils/interfaces.ts:347](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/utils/interfaces.ts#L347) diff --git a/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceQueryMembershipRequestsListItem.md b/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceQueryMembershipRequestsListItem.md new file mode 100644 index 0000000000..e54fe67a59 --- /dev/null +++ b/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceQueryMembershipRequestsListItem.md @@ -0,0 +1,23 @@ +[Admin Docs](/) + +*** + +# Interface: InterfaceQueryMembershipRequestsListItem + +Defined in: [src/utils/interfaces.ts:516](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/utils/interfaces.ts#L516) + +## Properties + +### organizations + +> **organizations**: `object`[] + +Defined in: [src/utils/interfaces.ts:517](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/utils/interfaces.ts#L517) + +#### \_id + +> **\_id**: `string` + +#### membershipRequests + +> **membershipRequests**: `object`[] diff --git a/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceQueryOrganizationAdvertisementListItem.md b/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceQueryOrganizationAdvertisementListItem.md new file mode 100644 index 0000000000..e41676fce2 --- /dev/null +++ b/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceQueryOrganizationAdvertisementListItem.md @@ -0,0 +1,43 @@ +[Admin Docs](/) + +*** + +# Interface: InterfaceQueryOrganizationAdvertisementListItem + +Defined in: [src/utils/interfaces.ts:296](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/utils/interfaces.ts#L296) + +## Properties + +### advertisements + +> **advertisements**: `object` + +Defined in: [src/utils/interfaces.ts:297](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/utils/interfaces.ts#L297) + +#### edges + +> **edges**: `object`[] + +#### pageInfo + +> **pageInfo**: `object` + +##### pageInfo.endCursor + +> **endCursor**: `string` + +##### pageInfo.hasNextPage + +> **hasNextPage**: `boolean` + +##### pageInfo.hasPreviousPage + +> **hasPreviousPage**: `boolean` + +##### pageInfo.startCursor + +> **startCursor**: `string` + +#### totalCount + +> **totalCount**: `number` diff --git a/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceQueryOrganizationEventListItem.md b/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceQueryOrganizationEventListItem.md new file mode 100644 index 0000000000..c6381ef05d --- /dev/null +++ b/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceQueryOrganizationEventListItem.md @@ -0,0 +1,147 @@ +[Admin Docs](/) + +*** + +# Interface: InterfaceQueryOrganizationEventListItem + +Defined in: [src/utils/interfaces.ts:380](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/utils/interfaces.ts#L380) + +## Extends + +- [`InterfaceBaseEvent`](InterfaceBaseEvent.md) + +## Properties + +### \_id + +> **\_id**: `string` + +Defined in: [src/utils/interfaces.ts:19](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/utils/interfaces.ts#L19) + +#### Inherited from + +[`InterfaceBaseEvent`](InterfaceBaseEvent.md).[`_id`](InterfaceBaseEvent.md#_id) + +*** + +### allDay + +> **allDay**: `boolean` + +Defined in: [src/utils/interfaces.ts:27](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/utils/interfaces.ts#L27) + +#### Inherited from + +[`InterfaceBaseEvent`](InterfaceBaseEvent.md).[`allDay`](InterfaceBaseEvent.md#allday) + +*** + +### description + +> **description**: `string` + +Defined in: [src/utils/interfaces.ts:21](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/utils/interfaces.ts#L21) + +#### Inherited from + +[`InterfaceBaseEvent`](InterfaceBaseEvent.md).[`description`](InterfaceBaseEvent.md#description) + +*** + +### endDate + +> **endDate**: `string` + +Defined in: [src/utils/interfaces.ts:23](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/utils/interfaces.ts#L23) + +#### Inherited from + +[`InterfaceBaseEvent`](InterfaceBaseEvent.md).[`endDate`](InterfaceBaseEvent.md#enddate) + +*** + +### endTime + +> **endTime**: `string` + +Defined in: [src/utils/interfaces.ts:26](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/utils/interfaces.ts#L26) + +#### Inherited from + +[`InterfaceBaseEvent`](InterfaceBaseEvent.md).[`endTime`](InterfaceBaseEvent.md#endtime) + +*** + +### isPublic + +> **isPublic**: `boolean` + +Defined in: [src/utils/interfaces.ts:382](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/utils/interfaces.ts#L382) + +*** + +### isRegisterable + +> **isRegisterable**: `boolean` + +Defined in: [src/utils/interfaces.ts:383](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/utils/interfaces.ts#L383) + +*** + +### location + +> **location**: `string` + +Defined in: [src/utils/interfaces.ts:24](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/utils/interfaces.ts#L24) + +#### Inherited from + +[`InterfaceBaseEvent`](InterfaceBaseEvent.md).[`location`](InterfaceBaseEvent.md#location) + +*** + +### recurring + +> **recurring**: `boolean` + +Defined in: [src/utils/interfaces.ts:28](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/utils/interfaces.ts#L28) + +#### Inherited from + +[`InterfaceBaseEvent`](InterfaceBaseEvent.md).[`recurring`](InterfaceBaseEvent.md#recurring) + +*** + +### startDate + +> **startDate**: `string` + +Defined in: [src/utils/interfaces.ts:22](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/utils/interfaces.ts#L22) + +#### Inherited from + +[`InterfaceBaseEvent`](InterfaceBaseEvent.md).[`startDate`](InterfaceBaseEvent.md#startdate) + +*** + +### startTime + +> **startTime**: `string` + +Defined in: [src/utils/interfaces.ts:25](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/utils/interfaces.ts#L25) + +#### Inherited from + +[`InterfaceBaseEvent`](InterfaceBaseEvent.md).[`startTime`](InterfaceBaseEvent.md#starttime) + +*** + +### title + +> **title**: `string` + +Defined in: [src/utils/interfaces.ts:20](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/utils/interfaces.ts#L20) + +#### Inherited from + +[`InterfaceBaseEvent`](InterfaceBaseEvent.md).[`title`](InterfaceBaseEvent.md#title) diff --git a/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceQueryOrganizationFundCampaigns.md b/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceQueryOrganizationFundCampaigns.md new file mode 100644 index 0000000000..49ae5ba59d --- /dev/null +++ b/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceQueryOrganizationFundCampaigns.md @@ -0,0 +1,59 @@ +[Admin Docs](/) + +*** + +# Interface: InterfaceQueryOrganizationFundCampaigns + +Defined in: [src/utils/interfaces.ts:319](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/utils/interfaces.ts#L319) + +## Properties + +### campaigns + +> **campaigns**: `object`[] + +Defined in: [src/utils/interfaces.ts:322](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/utils/interfaces.ts#L322) + +#### \_id + +> **\_id**: `string` + +#### createdAt + +> **createdAt**: `string` + +#### currency + +> **currency**: `string` + +#### endDate + +> **endDate**: `Date` + +#### fundingGoal + +> **fundingGoal**: `number` + +#### name + +> **name**: `string` + +#### startDate + +> **startDate**: `Date` + +*** + +### isArchived + +> **isArchived**: `boolean` + +Defined in: [src/utils/interfaces.ts:321](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/utils/interfaces.ts#L321) + +*** + +### name + +> **name**: `string` + +Defined in: [src/utils/interfaces.ts:320](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/utils/interfaces.ts#L320) diff --git a/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceQueryOrganizationListObject.md b/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceQueryOrganizationListObject.md new file mode 100644 index 0000000000..fea0f52f7f --- /dev/null +++ b/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceQueryOrganizationListObject.md @@ -0,0 +1,87 @@ +[Admin Docs](/) + +*** + +# Interface: InterfaceQueryOrganizationListObject + +Defined in: [src/utils/interfaces.ts:155](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/utils/interfaces.ts#L155) + +## Properties + +### \_id + +> **\_id**: `string` + +Defined in: [src/utils/interfaces.ts:156](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/utils/interfaces.ts#L156) + +*** + +### address + +> **address**: [`InterfaceAddress`](InterfaceAddress.md) + +Defined in: [src/utils/interfaces.ts:170](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/utils/interfaces.ts#L170) + +*** + +### admins + +> **admins**: `object`[] + +Defined in: [src/utils/interfaces.ts:166](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/utils/interfaces.ts#L166) + +#### \_id + +> **\_id**: `string` + +*** + +### createdAt + +> **createdAt**: `string` + +Defined in: [src/utils/interfaces.ts:169](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/utils/interfaces.ts#L169) + +*** + +### creator + +> **creator**: `object` + +Defined in: [src/utils/interfaces.ts:158](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/utils/interfaces.ts#L158) + +#### firstName + +> **firstName**: `string` + +#### lastName + +> **lastName**: `string` + +*** + +### image + +> **image**: `string` + +Defined in: [src/utils/interfaces.ts:157](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/utils/interfaces.ts#L157) + +*** + +### members + +> **members**: `object`[] + +Defined in: [src/utils/interfaces.ts:163](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/utils/interfaces.ts#L163) + +#### \_id + +> **\_id**: `string` + +*** + +### name + +> **name**: `string` + +Defined in: [src/utils/interfaces.ts:162](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/utils/interfaces.ts#L162) diff --git a/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceQueryOrganizationPostListItem.md b/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceQueryOrganizationPostListItem.md new file mode 100644 index 0000000000..4ebd1898bb --- /dev/null +++ b/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceQueryOrganizationPostListItem.md @@ -0,0 +1,43 @@ +[Admin Docs](/) + +*** + +# Interface: InterfaceQueryOrganizationPostListItem + +Defined in: [src/utils/interfaces.ts:180](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/utils/interfaces.ts#L180) + +## Properties + +### posts + +> **posts**: `object` + +Defined in: [src/utils/interfaces.ts:181](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/utils/interfaces.ts#L181) + +#### edges + +> **edges**: `object`[] + +#### pageInfo + +> **pageInfo**: `object` + +##### pageInfo.endCursor + +> **endCursor**: `string` + +##### pageInfo.hasNextPage + +> **hasNextPage**: `boolean` + +##### pageInfo.hasPreviousPage + +> **hasPreviousPage**: `boolean` + +##### pageInfo.startCursor + +> **startCursor**: `string` + +#### totalCount + +> **totalCount**: `number` diff --git a/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceQueryOrganizationUserTags.md b/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceQueryOrganizationUserTags.md new file mode 100644 index 0000000000..3455d51dd2 --- /dev/null +++ b/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceQueryOrganizationUserTags.md @@ -0,0 +1,15 @@ +[Admin Docs](/) + +*** + +# Interface: InterfaceQueryOrganizationUserTags + +Defined in: [src/utils/interfaces.ts:269](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/utils/interfaces.ts#L269) + +## Properties + +### userTags + +> **userTags**: `InterfaceTagNodeData` + +Defined in: [src/utils/interfaces.ts:270](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/utils/interfaces.ts#L270) diff --git a/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceQueryOrganizationsListObject.md b/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceQueryOrganizationsListObject.md new file mode 100644 index 0000000000..1fcc7894fb --- /dev/null +++ b/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceQueryOrganizationsListObject.md @@ -0,0 +1,187 @@ +[Admin Docs](/) + +*** + +# Interface: InterfaceQueryOrganizationsListObject + +Defined in: [src/utils/interfaces.ts:113](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/utils/interfaces.ts#L113) + +## Properties + +### \_id + +> **\_id**: `string` + +Defined in: [src/utils/interfaces.ts:114](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/utils/interfaces.ts#L114) + +*** + +### address + +> **address**: [`InterfaceAddress`](InterfaceAddress.md) + +Defined in: [src/utils/interfaces.ts:123](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/utils/interfaces.ts#L123) + +*** + +### admins + +> **admins**: `object`[] + +Defined in: [src/utils/interfaces.ts:132](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/utils/interfaces.ts#L132) + +#### \_id + +> **\_id**: `string` + +#### createdAt + +> **createdAt**: `string` + +#### email + +> **email**: `string` + +#### firstName + +> **firstName**: `string` + +#### lastName + +> **lastName**: `string` + +*** + +### blockedUsers + +> **blockedUsers**: `object`[] + +Defined in: [src/utils/interfaces.ts:147](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/utils/interfaces.ts#L147) + +#### \_id + +> **\_id**: `string` + +#### email + +> **email**: `string` + +#### firstName + +> **firstName**: `string` + +#### lastName + +> **lastName**: `string` + +*** + +### creator + +> **creator**: `object` + +Defined in: [src/utils/interfaces.ts:116](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/utils/interfaces.ts#L116) + +#### email + +> **email**: `string` + +#### firstName + +> **firstName**: `string` + +#### lastName + +> **lastName**: `string` + +*** + +### description + +> **description**: `string` + +Defined in: [src/utils/interfaces.ts:122](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/utils/interfaces.ts#L122) + +*** + +### image + +> **image**: `string` + +Defined in: [src/utils/interfaces.ts:115](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/utils/interfaces.ts#L115) + +*** + +### members + +> **members**: `object`[] + +Defined in: [src/utils/interfaces.ts:126](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/utils/interfaces.ts#L126) + +#### \_id + +> **\_id**: `string` + +#### email + +> **email**: `string` + +#### firstName + +> **firstName**: `string` + +#### lastName + +> **lastName**: `string` + +*** + +### membershipRequests + +> **membershipRequests**: `object`[] + +Defined in: [src/utils/interfaces.ts:139](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/utils/interfaces.ts#L139) + +#### \_id + +> **\_id**: `string` + +#### user + +> **user**: `object` + +##### user.email + +> **email**: `string` + +##### user.firstName + +> **firstName**: `string` + +##### user.lastName + +> **lastName**: `string` + +*** + +### name + +> **name**: `string` + +Defined in: [src/utils/interfaces.ts:121](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/utils/interfaces.ts#L121) + +*** + +### userRegistrationRequired + +> **userRegistrationRequired**: `boolean` + +Defined in: [src/utils/interfaces.ts:124](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/utils/interfaces.ts#L124) + +*** + +### visibleInSearch + +> **visibleInSearch**: `boolean` + +Defined in: [src/utils/interfaces.ts:125](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/utils/interfaces.ts#L125) diff --git a/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceQueryUserListItem.md b/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceQueryUserListItem.md new file mode 100644 index 0000000000..2c0b06c64e --- /dev/null +++ b/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceQueryUserListItem.md @@ -0,0 +1,87 @@ +[Admin Docs](/) + +*** + +# Interface: InterfaceQueryUserListItem + +Defined in: [src/utils/interfaces.ts:396](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/utils/interfaces.ts#L396) + +## Properties + +### appUserProfile + +> **appUserProfile**: `object` + +Defined in: [src/utils/interfaces.ts:435](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/utils/interfaces.ts#L435) + +#### \_id + +> **\_id**: `string` + +#### adminFor + +> **adminFor**: `object`[] + +#### createdEvents + +> **createdEvents**: `object`[] + +#### createdOrganizations + +> **createdOrganizations**: `object`[] + +#### eventAdmin + +> **eventAdmin**: `object`[] + +#### isSuperAdmin + +> **isSuperAdmin**: `boolean` + +*** + +### user + +> **user**: `object` + +Defined in: [src/utils/interfaces.ts:397](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/utils/interfaces.ts#L397) + +#### \_id + +> **\_id**: `string` + +#### createdAt + +> **createdAt**: `string` + +#### email + +> **email**: `string` + +#### firstName + +> **firstName**: `string` + +#### image + +> **image**: `string` + +#### joinedOrganizations + +> **joinedOrganizations**: `object`[] + +#### lastName + +> **lastName**: `string` + +#### membershipRequests + +> **membershipRequests**: `object`[] + +#### organizationsBlockedBy + +> **organizationsBlockedBy**: `object`[] + +#### registeredEvents + +> **registeredEvents**: `object`[] diff --git a/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceQueryUserTagChildTags.md b/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceQueryUserTagChildTags.md new file mode 100644 index 0000000000..17e9153ad4 --- /dev/null +++ b/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceQueryUserTagChildTags.md @@ -0,0 +1,39 @@ +[Admin Docs](/) + +*** + +# Interface: InterfaceQueryUserTagChildTags + +Defined in: [src/utils/interfaces.ts:273](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/utils/interfaces.ts#L273) + +## Properties + +### ancestorTags + +> **ancestorTags**: `object`[] + +Defined in: [src/utils/interfaces.ts:276](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/utils/interfaces.ts#L276) + +#### \_id + +> **\_id**: `string` + +#### name + +> **name**: `string` + +*** + +### childTags + +> **childTags**: `InterfaceTagNodeData` + +Defined in: [src/utils/interfaces.ts:275](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/utils/interfaces.ts#L275) + +*** + +### name + +> **name**: `string` + +Defined in: [src/utils/interfaces.ts:274](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/utils/interfaces.ts#L274) diff --git a/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceQueryUserTagsAssignedMembers.md b/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceQueryUserTagsAssignedMembers.md new file mode 100644 index 0000000000..2d488a1d13 --- /dev/null +++ b/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceQueryUserTagsAssignedMembers.md @@ -0,0 +1,39 @@ +[Admin Docs](/) + +*** + +# Interface: InterfaceQueryUserTagsAssignedMembers + +Defined in: [src/utils/interfaces.ts:282](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/utils/interfaces.ts#L282) + +## Properties + +### ancestorTags + +> **ancestorTags**: `object`[] + +Defined in: [src/utils/interfaces.ts:285](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/utils/interfaces.ts#L285) + +#### \_id + +> **\_id**: `string` + +#### name + +> **name**: `string` + +*** + +### name + +> **name**: `string` + +Defined in: [src/utils/interfaces.ts:283](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/utils/interfaces.ts#L283) + +*** + +### usersAssignedTo + +> **usersAssignedTo**: `InterfaceTagMembersData` + +Defined in: [src/utils/interfaces.ts:284](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/utils/interfaces.ts#L284) diff --git a/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceQueryUserTagsMembersToAssignTo.md b/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceQueryUserTagsMembersToAssignTo.md new file mode 100644 index 0000000000..d27947a097 --- /dev/null +++ b/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceQueryUserTagsMembersToAssignTo.md @@ -0,0 +1,23 @@ +[Admin Docs](/) + +*** + +# Interface: InterfaceQueryUserTagsMembersToAssignTo + +Defined in: [src/utils/interfaces.ts:291](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/utils/interfaces.ts#L291) + +## Properties + +### name + +> **name**: `string` + +Defined in: [src/utils/interfaces.ts:292](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/utils/interfaces.ts#L292) + +*** + +### usersToAssignTo + +> **usersToAssignTo**: `InterfaceTagMembersData` + +Defined in: [src/utils/interfaces.ts:293](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/utils/interfaces.ts#L293) diff --git a/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceQueryVenueListItem.md b/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceQueryVenueListItem.md new file mode 100644 index 0000000000..087cda8926 --- /dev/null +++ b/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceQueryVenueListItem.md @@ -0,0 +1,47 @@ +[Admin Docs](/) + +*** + +# Interface: InterfaceQueryVenueListItem + +Defined in: [src/utils/interfaces.ts:445](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/utils/interfaces.ts#L445) + +## Properties + +### \_id + +> **\_id**: `string` + +Defined in: [src/utils/interfaces.ts:446](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/utils/interfaces.ts#L446) + +*** + +### capacity + +> **capacity**: `string` + +Defined in: [src/utils/interfaces.ts:450](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/utils/interfaces.ts#L450) + +*** + +### description + +> **description**: `string` + +Defined in: [src/utils/interfaces.ts:448](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/utils/interfaces.ts#L448) + +*** + +### image + +> **image**: `string` + +Defined in: [src/utils/interfaces.ts:449](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/utils/interfaces.ts#L449) + +*** + +### name + +> **name**: `string` + +Defined in: [src/utils/interfaces.ts:447](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/utils/interfaces.ts#L447) diff --git a/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceTagData.md b/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceTagData.md new file mode 100644 index 0000000000..a9e037fc1a --- /dev/null +++ b/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceTagData.md @@ -0,0 +1,75 @@ +[Admin Docs](/) + +*** + +# Interface: InterfaceTagData + +Defined in: [src/utils/interfaces.ts:222](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/utils/interfaces.ts#L222) + +## Properties + +### \_id + +> **\_id**: `string` + +Defined in: [src/utils/interfaces.ts:223](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/utils/interfaces.ts#L223) + +*** + +### ancestorTags + +> **ancestorTags**: `object`[] + +Defined in: [src/utils/interfaces.ts:232](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/utils/interfaces.ts#L232) + +#### \_id + +> **\_id**: `string` + +#### name + +> **name**: `string` + +*** + +### childTags + +> **childTags**: `object` + +Defined in: [src/utils/interfaces.ts:229](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/utils/interfaces.ts#L229) + +#### totalCount + +> **totalCount**: `number` + +*** + +### name + +> **name**: `string` + +Defined in: [src/utils/interfaces.ts:224](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/utils/interfaces.ts#L224) + +*** + +### parentTag + +> **parentTag**: `object` + +Defined in: [src/utils/interfaces.ts:225](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/utils/interfaces.ts#L225) + +#### \_id + +> **\_id**: `string` + +*** + +### usersAssignedTo + +> **usersAssignedTo**: `object` + +Defined in: [src/utils/interfaces.ts:226](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/utils/interfaces.ts#L226) + +#### totalCount + +> **totalCount**: `number` diff --git a/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceUserCampaign.md b/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceUserCampaign.md new file mode 100644 index 0000000000..61c61c8777 --- /dev/null +++ b/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceUserCampaign.md @@ -0,0 +1,55 @@ +[Admin Docs](/) + +*** + +# Interface: InterfaceUserCampaign + +Defined in: [src/utils/interfaces.ts:332](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/utils/interfaces.ts#L332) + +## Properties + +### \_id + +> **\_id**: `string` + +Defined in: [src/utils/interfaces.ts:333](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/utils/interfaces.ts#L333) + +*** + +### currency + +> **currency**: `string` + +Defined in: [src/utils/interfaces.ts:338](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/utils/interfaces.ts#L338) + +*** + +### endDate + +> **endDate**: `Date` + +Defined in: [src/utils/interfaces.ts:337](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/utils/interfaces.ts#L337) + +*** + +### fundingGoal + +> **fundingGoal**: `number` + +Defined in: [src/utils/interfaces.ts:335](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/utils/interfaces.ts#L335) + +*** + +### name + +> **name**: `string` + +Defined in: [src/utils/interfaces.ts:334](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/utils/interfaces.ts#L334) + +*** + +### startDate + +> **startDate**: `Date` + +Defined in: [src/utils/interfaces.ts:336](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/utils/interfaces.ts#L336) diff --git a/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceUserEvents.md b/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceUserEvents.md new file mode 100644 index 0000000000..64542caae3 --- /dev/null +++ b/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceUserEvents.md @@ -0,0 +1,179 @@ +[Admin Docs](/) + +*** + +# Interface: InterfaceUserEvents + +Defined in: [src/utils/interfaces.ts:656](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/utils/interfaces.ts#L656) + +## Extends + +- [`InterfaceBaseEvent`](InterfaceBaseEvent.md) + +## Properties + +### \_id + +> **\_id**: `string` + +Defined in: [src/utils/interfaces.ts:19](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/utils/interfaces.ts#L19) + +#### Inherited from + +[`InterfaceBaseEvent`](InterfaceBaseEvent.md).[`_id`](InterfaceBaseEvent.md#_id) + +*** + +### allDay + +> **allDay**: `boolean` + +Defined in: [src/utils/interfaces.ts:27](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/utils/interfaces.ts#L27) + +#### Inherited from + +[`InterfaceBaseEvent`](InterfaceBaseEvent.md).[`allDay`](InterfaceBaseEvent.md#allday) + +*** + +### description + +> **description**: `string` + +Defined in: [src/utils/interfaces.ts:21](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/utils/interfaces.ts#L21) + +#### Inherited from + +[`InterfaceBaseEvent`](InterfaceBaseEvent.md).[`description`](InterfaceBaseEvent.md#description) + +*** + +### endDate + +> **endDate**: `string` + +Defined in: [src/utils/interfaces.ts:23](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/utils/interfaces.ts#L23) + +#### Inherited from + +[`InterfaceBaseEvent`](InterfaceBaseEvent.md).[`endDate`](InterfaceBaseEvent.md#enddate) + +*** + +### endTime + +> **endTime**: `string` + +Defined in: [src/utils/interfaces.ts:26](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/utils/interfaces.ts#L26) + +#### Inherited from + +[`InterfaceBaseEvent`](InterfaceBaseEvent.md).[`endTime`](InterfaceBaseEvent.md#endtime) + +*** + +### location + +> **location**: `string` + +Defined in: [src/utils/interfaces.ts:24](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/utils/interfaces.ts#L24) + +#### Inherited from + +[`InterfaceBaseEvent`](InterfaceBaseEvent.md).[`location`](InterfaceBaseEvent.md#location) + +*** + +### recurring + +> **recurring**: `boolean` + +Defined in: [src/utils/interfaces.ts:28](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/utils/interfaces.ts#L28) + +#### Inherited from + +[`InterfaceBaseEvent`](InterfaceBaseEvent.md).[`recurring`](InterfaceBaseEvent.md#recurring) + +*** + +### startDate + +> **startDate**: `string` + +Defined in: [src/utils/interfaces.ts:22](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/utils/interfaces.ts#L22) + +#### Inherited from + +[`InterfaceBaseEvent`](InterfaceBaseEvent.md).[`startDate`](InterfaceBaseEvent.md#startdate) + +*** + +### startTime + +> **startTime**: `string` + +Defined in: [src/utils/interfaces.ts:25](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/utils/interfaces.ts#L25) + +#### Inherited from + +[`InterfaceBaseEvent`](InterfaceBaseEvent.md).[`startTime`](InterfaceBaseEvent.md#starttime) + +*** + +### title + +> **title**: `string` + +Defined in: [src/utils/interfaces.ts:20](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/utils/interfaces.ts#L20) + +#### Inherited from + +[`InterfaceBaseEvent`](InterfaceBaseEvent.md).[`title`](InterfaceBaseEvent.md#title) + +*** + +### volunteerGroups + +> **volunteerGroups**: `object`[] + +Defined in: [src/utils/interfaces.ts:657](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/utils/interfaces.ts#L657) + +#### \_id + +> **\_id**: `string` + +#### description + +> **description**: `string` + +#### name + +> **name**: `string` + +#### volunteers + +> **volunteers**: `object`[] + +#### volunteersRequired + +> **volunteersRequired**: `number` + +*** + +### volunteers + +> **volunteers**: `object`[] + +Defined in: [src/utils/interfaces.ts:664](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/utils/interfaces.ts#L664) + +#### \_id + +> **\_id**: `string` + +#### user + +> **user**: `object` + +##### user.\_id + +> **\_id**: `string` diff --git a/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceUserInfo.md b/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceUserInfo.md new file mode 100644 index 0000000000..b5c7fe6bbc --- /dev/null +++ b/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceUserInfo.md @@ -0,0 +1,39 @@ +[Admin Docs](/) + +*** + +# Interface: InterfaceUserInfo + +Defined in: [src/utils/interfaces.ts:10](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/utils/interfaces.ts#L10) + +## Properties + +### \_id + +> **\_id**: `string` + +Defined in: [src/utils/interfaces.ts:11](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/utils/interfaces.ts#L11) + +*** + +### firstName + +> **firstName**: `string` + +Defined in: [src/utils/interfaces.ts:12](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/utils/interfaces.ts#L12) + +*** + +### image? + +> `optional` **image**: `string` + +Defined in: [src/utils/interfaces.ts:14](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/utils/interfaces.ts#L14) + +*** + +### lastName + +> **lastName**: `string` + +Defined in: [src/utils/interfaces.ts:13](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/utils/interfaces.ts#L13) diff --git a/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceUserType.md b/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceUserType.md new file mode 100644 index 0000000000..d0f4652b77 --- /dev/null +++ b/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceUserType.md @@ -0,0 +1,31 @@ +[Admin Docs](/) + +*** + +# Interface: InterfaceUserType + +Defined in: [src/utils/interfaces.ts:1](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/utils/interfaces.ts#L1) + +## Properties + +### user + +> **user**: `object` + +Defined in: [src/utils/interfaces.ts:2](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/utils/interfaces.ts#L2) + +#### email + +> **email**: `string` + +#### firstName + +> **firstName**: `string` + +#### image + +> **image**: `string` + +#### lastName + +> **lastName**: `string` diff --git a/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceVolunteerGroupInfo.md b/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceVolunteerGroupInfo.md new file mode 100644 index 0000000000..569a9562d7 --- /dev/null +++ b/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceVolunteerGroupInfo.md @@ -0,0 +1,123 @@ +[Admin Docs](/) + +*** + +# Interface: InterfaceVolunteerGroupInfo + +Defined in: [src/utils/interfaces.ts:622](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/utils/interfaces.ts#L622) + +## Properties + +### \_id + +> **\_id**: `string` + +Defined in: [src/utils/interfaces.ts:623](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/utils/interfaces.ts#L623) + +*** + +### assignments + +> **assignments**: `object`[] + +Defined in: [src/utils/interfaces.ts:637](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/utils/interfaces.ts#L637) + +#### \_id + +> **\_id**: `string` + +#### actionItemCategory + +> **actionItemCategory**: `object` + +##### actionItemCategory.\_id + +> **\_id**: `string` + +##### actionItemCategory.name + +> **name**: `string` + +#### allottedHours + +> **allottedHours**: `number` + +#### isCompleted + +> **isCompleted**: `boolean` + +*** + +### createdAt + +> **createdAt**: `string` + +Defined in: [src/utils/interfaces.ts:630](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/utils/interfaces.ts#L630) + +*** + +### creator + +> **creator**: [`InterfaceUserInfo`](InterfaceUserInfo.md) + +Defined in: [src/utils/interfaces.ts:631](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/utils/interfaces.ts#L631) + +*** + +### description + +> **description**: `string` + +Defined in: [src/utils/interfaces.ts:625](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/utils/interfaces.ts#L625) + +*** + +### event + +> **event**: `object` + +Defined in: [src/utils/interfaces.ts:626](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/utils/interfaces.ts#L626) + +#### \_id + +> **\_id**: `string` + +*** + +### leader + +> **leader**: [`InterfaceUserInfo`](InterfaceUserInfo.md) + +Defined in: [src/utils/interfaces.ts:632](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/utils/interfaces.ts#L632) + +*** + +### name + +> **name**: `string` + +Defined in: [src/utils/interfaces.ts:624](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/utils/interfaces.ts#L624) + +*** + +### volunteers + +> **volunteers**: `object`[] + +Defined in: [src/utils/interfaces.ts:633](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/utils/interfaces.ts#L633) + +#### \_id + +> **\_id**: `string` + +#### user + +> **user**: [`InterfaceUserInfo`](InterfaceUserInfo.md) + +*** + +### volunteersRequired + +> **volunteersRequired**: `number` + +Defined in: [src/utils/interfaces.ts:629](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/utils/interfaces.ts#L629) diff --git a/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceVolunteerMembership.md b/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceVolunteerMembership.md new file mode 100644 index 0000000000..f4f8189880 --- /dev/null +++ b/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceVolunteerMembership.md @@ -0,0 +1,83 @@ +[Admin Docs](/) + +*** + +# Interface: InterfaceVolunteerMembership + +Defined in: [src/utils/interfaces.ts:672](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/utils/interfaces.ts#L672) + +## Properties + +### \_id + +> **\_id**: `string` + +Defined in: [src/utils/interfaces.ts:673](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/utils/interfaces.ts#L673) + +*** + +### createdAt + +> **createdAt**: `string` + +Defined in: [src/utils/interfaces.ts:675](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/utils/interfaces.ts#L675) + +*** + +### event + +> **event**: `object` + +Defined in: [src/utils/interfaces.ts:676](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/utils/interfaces.ts#L676) + +#### \_id + +> **\_id**: `string` + +#### startDate + +> **startDate**: `string` + +#### title + +> **title**: `string` + +*** + +### group + +> **group**: `object` + +Defined in: [src/utils/interfaces.ts:685](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/utils/interfaces.ts#L685) + +#### \_id + +> **\_id**: `string` + +#### name + +> **name**: `string` + +*** + +### status + +> **status**: `string` + +Defined in: [src/utils/interfaces.ts:674](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/utils/interfaces.ts#L674) + +*** + +### volunteer + +> **volunteer**: `object` + +Defined in: [src/utils/interfaces.ts:681](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/utils/interfaces.ts#L681) + +#### \_id + +> **\_id**: `string` + +#### user + +> **user**: [`InterfaceUserInfo`](InterfaceUserInfo.md) diff --git a/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceVolunteerRank.md b/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceVolunteerRank.md new file mode 100644 index 0000000000..3eeb636121 --- /dev/null +++ b/docs/docs/auto-docs/utils/interfaces/interfaces/InterfaceVolunteerRank.md @@ -0,0 +1,51 @@ +[Admin Docs](/) + +*** + +# Interface: InterfaceVolunteerRank + +Defined in: [src/utils/interfaces.ts:691](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/utils/interfaces.ts#L691) + +## Properties + +### hoursVolunteered + +> **hoursVolunteered**: `number` + +Defined in: [src/utils/interfaces.ts:693](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/utils/interfaces.ts#L693) + +*** + +### rank + +> **rank**: `number` + +Defined in: [src/utils/interfaces.ts:692](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/utils/interfaces.ts#L692) + +*** + +### user + +> **user**: `object` + +Defined in: [src/utils/interfaces.ts:694](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/utils/interfaces.ts#L694) + +#### \_id + +> **\_id**: `string` + +#### email + +> **email**: `string` + +#### firstName + +> **firstName**: `string` + +#### image + +> **image**: `string` + +#### lastName + +> **lastName**: `string` diff --git a/docs/docs/auto-docs/utils/languages/variables/languageArray.md b/docs/docs/auto-docs/utils/languages/variables/languageArray.md new file mode 100644 index 0000000000..95811d2bab --- /dev/null +++ b/docs/docs/auto-docs/utils/languages/variables/languageArray.md @@ -0,0 +1,9 @@ +[Admin Docs](/) + +*** + +# Variable: languageArray + +> `const` **languageArray**: `string`[] + +Defined in: [src/utils/languages.ts:1](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/utils/languages.ts#L1) diff --git a/docs/docs/auto-docs/utils/languages/variables/languages.md b/docs/docs/auto-docs/utils/languages/variables/languages.md new file mode 100644 index 0000000000..eba424e8a5 --- /dev/null +++ b/docs/docs/auto-docs/utils/languages/variables/languages.md @@ -0,0 +1,23 @@ +[Admin Docs](/) + +*** + +# Variable: languages + +> `const` **languages**: `object`[] + +Defined in: [src/utils/languages.ts:3](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/utils/languages.ts#L3) + +## Type declaration + +### code + +> **code**: `string` = `'en'` + +### country\_code + +> **country\_code**: `string` = `'gb'` + +### name + +> **name**: `string` = `'English'` diff --git a/docs/docs/auto-docs/utils/linkValidator/functions/isValidLink.md b/docs/docs/auto-docs/utils/linkValidator/functions/isValidLink.md new file mode 100644 index 0000000000..570964962b --- /dev/null +++ b/docs/docs/auto-docs/utils/linkValidator/functions/isValidLink.md @@ -0,0 +1,19 @@ +[Admin Docs](/) + +*** + +# Function: isValidLink() + +> **isValidLink**(`link`): `boolean` + +Defined in: [src/utils/linkValidator.ts:1](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/utils/linkValidator.ts#L1) + +## Parameters + +### link + +`string` + +## Returns + +`boolean` diff --git a/docs/docs/auto-docs/utils/organizationTagsUtils/interfaces/InterfaceOrganizationSubTagsQuery.md b/docs/docs/auto-docs/utils/organizationTagsUtils/interfaces/InterfaceOrganizationSubTagsQuery.md new file mode 100644 index 0000000000..c8fe36287b --- /dev/null +++ b/docs/docs/auto-docs/utils/organizationTagsUtils/interfaces/InterfaceOrganizationSubTagsQuery.md @@ -0,0 +1,81 @@ +[Admin Docs](/) + +*** + +# Interface: InterfaceOrganizationSubTagsQuery + +Defined in: [src/utils/organizationTagsUtils.ts:89](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/utils/organizationTagsUtils.ts#L89) + +## Extends + +- `InterfaceBaseQueryResult` + +## Properties + +### data? + +> `optional` **data**: `object` + +Defined in: [src/utils/organizationTagsUtils.ts:91](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/utils/organizationTagsUtils.ts#L91) + +#### getChildTags + +> **getChildTags**: [`InterfaceQueryUserTagChildTags`](../../interfaces/interfaces/InterfaceQueryUserTagChildTags.md) + +*** + +### error? + +> `optional` **error**: `ApolloError` + +Defined in: [src/utils/organizationTagsUtils.ts:60](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/utils/organizationTagsUtils.ts#L60) + +#### Inherited from + +`InterfaceBaseQueryResult.error` + +*** + +### fetchMore() + +> **fetchMore**: (`options`) => `void` + +Defined in: [src/utils/organizationTagsUtils.ts:94](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/utils/organizationTagsUtils.ts#L94) + +#### Parameters + +##### options + +`InterfaceBaseFetchMoreOptions`\<\{ `getChildTags`: [`InterfaceQueryUserTagChildTags`](../../interfaces/interfaces/InterfaceQueryUserTagChildTags.md); \}\> + +#### Returns + +`void` + +*** + +### loading + +> **loading**: `boolean` + +Defined in: [src/utils/organizationTagsUtils.ts:59](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/utils/organizationTagsUtils.ts#L59) + +#### Inherited from + +`InterfaceBaseQueryResult.loading` + +*** + +### refetch()? + +> `optional` **refetch**: () => `void` + +Defined in: [src/utils/organizationTagsUtils.ts:61](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/utils/organizationTagsUtils.ts#L61) + +#### Returns + +`void` + +#### Inherited from + +`InterfaceBaseQueryResult.refetch` diff --git a/docs/docs/auto-docs/utils/organizationTagsUtils/interfaces/InterfaceOrganizationTagsQuery.md b/docs/docs/auto-docs/utils/organizationTagsUtils/interfaces/InterfaceOrganizationTagsQuery.md new file mode 100644 index 0000000000..0249046287 --- /dev/null +++ b/docs/docs/auto-docs/utils/organizationTagsUtils/interfaces/InterfaceOrganizationTagsQuery.md @@ -0,0 +1,81 @@ +[Admin Docs](/) + +*** + +# Interface: InterfaceOrganizationTagsQuery + +Defined in: [src/utils/organizationTagsUtils.ts:77](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/utils/organizationTagsUtils.ts#L77) + +## Extends + +- `InterfaceBaseQueryResult` + +## Properties + +### data? + +> `optional` **data**: `object` + +Defined in: [src/utils/organizationTagsUtils.ts:79](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/utils/organizationTagsUtils.ts#L79) + +#### organizations + +> **organizations**: [`InterfaceQueryOrganizationUserTags`](../../interfaces/interfaces/InterfaceQueryOrganizationUserTags.md)[] + +*** + +### error? + +> `optional` **error**: `ApolloError` + +Defined in: [src/utils/organizationTagsUtils.ts:60](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/utils/organizationTagsUtils.ts#L60) + +#### Inherited from + +`InterfaceBaseQueryResult.error` + +*** + +### fetchMore() + +> **fetchMore**: (`options`) => `void` + +Defined in: [src/utils/organizationTagsUtils.ts:82](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/utils/organizationTagsUtils.ts#L82) + +#### Parameters + +##### options + +`InterfaceBaseFetchMoreOptions`\<\{ `organizations`: [`InterfaceQueryOrganizationUserTags`](../../interfaces/interfaces/InterfaceQueryOrganizationUserTags.md)[]; \}\> + +#### Returns + +`void` + +*** + +### loading + +> **loading**: `boolean` + +Defined in: [src/utils/organizationTagsUtils.ts:59](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/utils/organizationTagsUtils.ts#L59) + +#### Inherited from + +`InterfaceBaseQueryResult.loading` + +*** + +### refetch()? + +> `optional` **refetch**: () => `void` + +Defined in: [src/utils/organizationTagsUtils.ts:61](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/utils/organizationTagsUtils.ts#L61) + +#### Returns + +`void` + +#### Inherited from + +`InterfaceBaseQueryResult.refetch` diff --git a/docs/docs/auto-docs/utils/organizationTagsUtils/interfaces/InterfaceTagAssignedMembersQuery.md b/docs/docs/auto-docs/utils/organizationTagsUtils/interfaces/InterfaceTagAssignedMembersQuery.md new file mode 100644 index 0000000000..520b4d1a98 --- /dev/null +++ b/docs/docs/auto-docs/utils/organizationTagsUtils/interfaces/InterfaceTagAssignedMembersQuery.md @@ -0,0 +1,81 @@ +[Admin Docs](/) + +*** + +# Interface: InterfaceTagAssignedMembersQuery + +Defined in: [src/utils/organizationTagsUtils.ts:101](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/utils/organizationTagsUtils.ts#L101) + +## Extends + +- `InterfaceBaseQueryResult` + +## Properties + +### data? + +> `optional` **data**: `object` + +Defined in: [src/utils/organizationTagsUtils.ts:103](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/utils/organizationTagsUtils.ts#L103) + +#### getAssignedUsers + +> **getAssignedUsers**: [`InterfaceQueryUserTagsAssignedMembers`](../../interfaces/interfaces/InterfaceQueryUserTagsAssignedMembers.md) + +*** + +### error? + +> `optional` **error**: `ApolloError` + +Defined in: [src/utils/organizationTagsUtils.ts:60](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/utils/organizationTagsUtils.ts#L60) + +#### Inherited from + +`InterfaceBaseQueryResult.error` + +*** + +### fetchMore() + +> **fetchMore**: (`options`) => `void` + +Defined in: [src/utils/organizationTagsUtils.ts:106](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/utils/organizationTagsUtils.ts#L106) + +#### Parameters + +##### options + +`InterfaceBaseFetchMoreOptions`\<\{ `getAssignedUsers`: [`InterfaceQueryUserTagsAssignedMembers`](../../interfaces/interfaces/InterfaceQueryUserTagsAssignedMembers.md); \}\> + +#### Returns + +`void` + +*** + +### loading + +> **loading**: `boolean` + +Defined in: [src/utils/organizationTagsUtils.ts:59](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/utils/organizationTagsUtils.ts#L59) + +#### Inherited from + +`InterfaceBaseQueryResult.loading` + +*** + +### refetch()? + +> `optional` **refetch**: () => `void` + +Defined in: [src/utils/organizationTagsUtils.ts:61](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/utils/organizationTagsUtils.ts#L61) + +#### Returns + +`void` + +#### Inherited from + +`InterfaceBaseQueryResult.refetch` diff --git a/docs/docs/auto-docs/utils/organizationTagsUtils/interfaces/InterfaceTagUsersToAssignToQuery.md b/docs/docs/auto-docs/utils/organizationTagsUtils/interfaces/InterfaceTagUsersToAssignToQuery.md new file mode 100644 index 0000000000..38d22a7b86 --- /dev/null +++ b/docs/docs/auto-docs/utils/organizationTagsUtils/interfaces/InterfaceTagUsersToAssignToQuery.md @@ -0,0 +1,81 @@ +[Admin Docs](/) + +*** + +# Interface: InterfaceTagUsersToAssignToQuery + +Defined in: [src/utils/organizationTagsUtils.ts:113](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/utils/organizationTagsUtils.ts#L113) + +## Extends + +- `InterfaceBaseQueryResult` + +## Properties + +### data? + +> `optional` **data**: `object` + +Defined in: [src/utils/organizationTagsUtils.ts:115](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/utils/organizationTagsUtils.ts#L115) + +#### getUsersToAssignTo + +> **getUsersToAssignTo**: [`InterfaceQueryUserTagsMembersToAssignTo`](../../interfaces/interfaces/InterfaceQueryUserTagsMembersToAssignTo.md) + +*** + +### error? + +> `optional` **error**: `ApolloError` + +Defined in: [src/utils/organizationTagsUtils.ts:60](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/utils/organizationTagsUtils.ts#L60) + +#### Inherited from + +`InterfaceBaseQueryResult.error` + +*** + +### fetchMore() + +> **fetchMore**: (`options`) => `void` + +Defined in: [src/utils/organizationTagsUtils.ts:118](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/utils/organizationTagsUtils.ts#L118) + +#### Parameters + +##### options + +`InterfaceBaseFetchMoreOptions`\<\{ `getUsersToAssignTo`: [`InterfaceQueryUserTagsMembersToAssignTo`](../../interfaces/interfaces/InterfaceQueryUserTagsMembersToAssignTo.md); \}\> + +#### Returns + +`void` + +*** + +### loading + +> **loading**: `boolean` + +Defined in: [src/utils/organizationTagsUtils.ts:59](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/utils/organizationTagsUtils.ts#L59) + +#### Inherited from + +`InterfaceBaseQueryResult.loading` + +*** + +### refetch()? + +> `optional` **refetch**: () => `void` + +Defined in: [src/utils/organizationTagsUtils.ts:61](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/utils/organizationTagsUtils.ts#L61) + +#### Returns + +`void` + +#### Inherited from + +`InterfaceBaseQueryResult.refetch` diff --git a/docs/docs/auto-docs/utils/organizationTagsUtils/type-aliases/SortedByType.md b/docs/docs/auto-docs/utils/organizationTagsUtils/type-aliases/SortedByType.md new file mode 100644 index 0000000000..379b1db34b --- /dev/null +++ b/docs/docs/auto-docs/utils/organizationTagsUtils/type-aliases/SortedByType.md @@ -0,0 +1,9 @@ +[Admin Docs](/) + +*** + +# Type Alias: SortedByType + +> **SortedByType**: `"ASCENDING"` \| `"DESCENDING"` + +Defined in: [src/utils/organizationTagsUtils.ts:54](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/utils/organizationTagsUtils.ts#L54) diff --git a/docs/docs/auto-docs/utils/organizationTagsUtils/type-aliases/TagActionType.md b/docs/docs/auto-docs/utils/organizationTagsUtils/type-aliases/TagActionType.md new file mode 100644 index 0000000000..7f665d63e1 --- /dev/null +++ b/docs/docs/auto-docs/utils/organizationTagsUtils/type-aliases/TagActionType.md @@ -0,0 +1,9 @@ +[Admin Docs](/) + +*** + +# Type Alias: TagActionType + +> **TagActionType**: `"assignToTags"` \| `"removeFromTags"` + +Defined in: [src/utils/organizationTagsUtils.ts:51](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/utils/organizationTagsUtils.ts#L51) diff --git a/docs/docs/auto-docs/utils/organizationTagsUtils/variables/TAGS_QUERY_DATA_CHUNK_SIZE.md b/docs/docs/auto-docs/utils/organizationTagsUtils/variables/TAGS_QUERY_DATA_CHUNK_SIZE.md new file mode 100644 index 0000000000..85ea0a38a3 --- /dev/null +++ b/docs/docs/auto-docs/utils/organizationTagsUtils/variables/TAGS_QUERY_DATA_CHUNK_SIZE.md @@ -0,0 +1,9 @@ +[Admin Docs](/) + +*** + +# Variable: TAGS\_QUERY\_DATA\_CHUNK\_SIZE + +> `const` **TAGS\_QUERY\_DATA\_CHUNK\_SIZE**: `10` = `10` + +Defined in: [src/utils/organizationTagsUtils.ts:48](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/utils/organizationTagsUtils.ts#L48) diff --git a/docs/docs/auto-docs/utils/organizationTagsUtils/variables/dataGridStyle.md b/docs/docs/auto-docs/utils/organizationTagsUtils/variables/dataGridStyle.md new file mode 100644 index 0000000000..4a81cfed79 --- /dev/null +++ b/docs/docs/auto-docs/utils/organizationTagsUtils/variables/dataGridStyle.md @@ -0,0 +1,103 @@ +[Admin Docs](/) + +*** + +# Variable: dataGridStyle + +> `const` **dataGridStyle**: `object` + +Defined in: [src/utils/organizationTagsUtils.ts:12](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/utils/organizationTagsUtils.ts#L12) + +## Type declaration + +#### & .MuiDataGrid-cell:focus + +> **MuiDataGrid-cell:focus**: `object` + +#### & .MuiDataGrid-cell:focus.outline + +> **outline**: `string` = `'2px solid #000'` + +#### & .MuiDataGrid-cell:focus.outlineOffset + +> **outlineOffset**: `string` = `'-2px'` + +#### & .MuiDataGrid-main + +> **MuiDataGrid-main**: `object` + +#### & .MuiDataGrid-main.borderRadius + +> **borderRadius**: `string` = `'0.1rem'` + +#### & .MuiDataGrid-root + +> **MuiDataGrid-root**: `object` + +#### & .MuiDataGrid-root.borderRadius + +> **borderRadius**: `string` = `'0.1rem'` + +#### & .MuiDataGrid-row:hover + +> **MuiDataGrid-row:hover**: `object` + +#### & .MuiDataGrid-row:hover.backgroundColor + +> **backgroundColor**: `string` = `'transparent'` + +#### & .MuiDataGrid-row:hover.boxShadow + +> **boxShadow**: `string` = `'0 0 0 1px rgba(0, 0, 0, 0.1)'` + +#### & .MuiDataGrid-row.Mui-hovered + +> **Mui-hovered**: `object` + +#### & .MuiDataGrid-row.Mui-hovered.backgroundColor + +> **backgroundColor**: `string` = `'transparent'` + +#### & .MuiDataGrid-row.Mui-hovered.boxShadow + +> **boxShadow**: `string` = `'0 0 0 1px rgba(0, 0, 0, 0.1)'` + +#### & .MuiDataGrid-topContainer + +> **MuiDataGrid-topContainer**: `object` + +#### & .MuiDataGrid-topContainer.position + +> **position**: `string` = `'fixed'` + +#### & .MuiDataGrid-topContainer.top + +> **top**: `number` = `290` + +#### & .MuiDataGrid-topContainer.zIndex + +> **zIndex**: `number` = `1` + +#### & .MuiDataGrid-virtualScrollerContent + +> **MuiDataGrid-virtualScrollerContent**: `object` + +#### & .MuiDataGrid-virtualScrollerContent.marginTop + +> **marginTop**: `number` = `6.5` + +#### &.MuiDataGrid-root .MuiDataGrid-cell:focus-within + +> **MuiDataGrid-cell:focus-within**: `object` + +#### &.MuiDataGrid-root .MuiDataGrid-cell:focus-within.outline + +> **outline**: `string` = `'none !important'` + +#### &.MuiDataGrid-root .MuiDataGrid-columnHeader:focus-within + +> **MuiDataGrid-columnHeader:focus-within**: `object` + +#### &.MuiDataGrid-root .MuiDataGrid-columnHeader:focus-within.outline + +> **outline**: `string` = `'none'` diff --git a/docs/docs/auto-docs/utils/recurrenceUtils/recurrenceConstants/variables/Days.md b/docs/docs/auto-docs/utils/recurrenceUtils/recurrenceConstants/variables/Days.md new file mode 100644 index 0000000000..ebdfb92c6e --- /dev/null +++ b/docs/docs/auto-docs/utils/recurrenceUtils/recurrenceConstants/variables/Days.md @@ -0,0 +1,9 @@ +[Admin Docs](/) + +*** + +# Variable: Days + +> `const` **Days**: [`WeekDays`](../../recurrenceTypes/enumerations/WeekDays.md)[] + +Defined in: [src/utils/recurrenceUtils/recurrenceConstants.ts:24](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/utils/recurrenceUtils/recurrenceConstants.ts#L24) diff --git a/docs/docs/auto-docs/utils/recurrenceUtils/recurrenceConstants/variables/allInstances.md b/docs/docs/auto-docs/utils/recurrenceUtils/recurrenceConstants/variables/allInstances.md new file mode 100644 index 0000000000..b3ffecf507 --- /dev/null +++ b/docs/docs/auto-docs/utils/recurrenceUtils/recurrenceConstants/variables/allInstances.md @@ -0,0 +1,9 @@ +[Admin Docs](/) + +*** + +# Variable: allInstances + +> `const` **allInstances**: [`allInstances`](../../recurrenceTypes/enumerations/RecurringEventMutationType.md#allinstances) = `RecurringEventMutationType.allInstances` + +Defined in: [src/utils/recurrenceUtils/recurrenceConstants.ts:46](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/utils/recurrenceUtils/recurrenceConstants.ts#L46) diff --git a/docs/docs/auto-docs/utils/recurrenceUtils/recurrenceConstants/variables/dayNames.md b/docs/docs/auto-docs/utils/recurrenceUtils/recurrenceConstants/variables/dayNames.md new file mode 100644 index 0000000000..9bcc2a763b --- /dev/null +++ b/docs/docs/auto-docs/utils/recurrenceUtils/recurrenceConstants/variables/dayNames.md @@ -0,0 +1,39 @@ +[Admin Docs](/) + +*** + +# Variable: dayNames + +> `const` **dayNames**: `object` + +Defined in: [src/utils/recurrenceUtils/recurrenceConstants.ts:60](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/utils/recurrenceUtils/recurrenceConstants.ts#L60) + +## Type declaration + +### FRIDAY + +> **FRIDAY**: `string` = `'Friday'` + +### MONDAY + +> **MONDAY**: `string` = `'Monday'` + +### SATURDAY + +> **SATURDAY**: `string` = `'Saturday'` + +### SUNDAY + +> **SUNDAY**: `string` = `'Sunday'` + +### THURSDAY + +> **THURSDAY**: `string` = `'Thursday'` + +### TUESDAY + +> **TUESDAY**: `string` = `'Tuesday'` + +### WEDNESDAY + +> **WEDNESDAY**: `string` = `'Wednesday'` diff --git a/docs/docs/auto-docs/utils/recurrenceUtils/recurrenceConstants/variables/daysOptions.md b/docs/docs/auto-docs/utils/recurrenceUtils/recurrenceConstants/variables/daysOptions.md new file mode 100644 index 0000000000..fd189e16ac --- /dev/null +++ b/docs/docs/auto-docs/utils/recurrenceUtils/recurrenceConstants/variables/daysOptions.md @@ -0,0 +1,9 @@ +[Admin Docs](/) + +*** + +# Variable: daysOptions + +> `const` **daysOptions**: `string`[] + +Defined in: [src/utils/recurrenceUtils/recurrenceConstants.ts:21](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/utils/recurrenceUtils/recurrenceConstants.ts#L21) diff --git a/docs/docs/auto-docs/utils/recurrenceUtils/recurrenceConstants/variables/endsAfter.md b/docs/docs/auto-docs/utils/recurrenceUtils/recurrenceConstants/variables/endsAfter.md new file mode 100644 index 0000000000..5005189911 --- /dev/null +++ b/docs/docs/auto-docs/utils/recurrenceUtils/recurrenceConstants/variables/endsAfter.md @@ -0,0 +1,9 @@ +[Admin Docs](/) + +*** + +# Variable: endsAfter + +> `const` **endsAfter**: [`after`](../../recurrenceTypes/enumerations/RecurrenceEndOption.md#after) = `RecurrenceEndOption.after` + +Defined in: [src/utils/recurrenceUtils/recurrenceConstants.ts:37](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/utils/recurrenceUtils/recurrenceConstants.ts#L37) diff --git a/docs/docs/auto-docs/utils/recurrenceUtils/recurrenceConstants/variables/endsNever.md b/docs/docs/auto-docs/utils/recurrenceUtils/recurrenceConstants/variables/endsNever.md new file mode 100644 index 0000000000..54f0743aeb --- /dev/null +++ b/docs/docs/auto-docs/utils/recurrenceUtils/recurrenceConstants/variables/endsNever.md @@ -0,0 +1,9 @@ +[Admin Docs](/) + +*** + +# Variable: endsNever + +> `const` **endsNever**: [`never`](../../recurrenceTypes/enumerations/RecurrenceEndOption.md#never) = `RecurrenceEndOption.never` + +Defined in: [src/utils/recurrenceUtils/recurrenceConstants.ts:35](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/utils/recurrenceUtils/recurrenceConstants.ts#L35) diff --git a/docs/docs/auto-docs/utils/recurrenceUtils/recurrenceConstants/variables/endsOn.md b/docs/docs/auto-docs/utils/recurrenceUtils/recurrenceConstants/variables/endsOn.md new file mode 100644 index 0000000000..8dedc711c2 --- /dev/null +++ b/docs/docs/auto-docs/utils/recurrenceUtils/recurrenceConstants/variables/endsOn.md @@ -0,0 +1,9 @@ +[Admin Docs](/) + +*** + +# Variable: endsOn + +> `const` **endsOn**: [`on`](../../recurrenceTypes/enumerations/RecurrenceEndOption.md#on) = `RecurrenceEndOption.on` + +Defined in: [src/utils/recurrenceUtils/recurrenceConstants.ts:36](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/utils/recurrenceUtils/recurrenceConstants.ts#L36) diff --git a/docs/docs/auto-docs/utils/recurrenceUtils/recurrenceConstants/variables/frequencies.md b/docs/docs/auto-docs/utils/recurrenceUtils/recurrenceConstants/variables/frequencies.md new file mode 100644 index 0000000000..08007d6966 --- /dev/null +++ b/docs/docs/auto-docs/utils/recurrenceUtils/recurrenceConstants/variables/frequencies.md @@ -0,0 +1,27 @@ +[Admin Docs](/) + +*** + +# Variable: frequencies + +> `const` **frequencies**: `object` + +Defined in: [src/utils/recurrenceUtils/recurrenceConstants.ts:13](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/utils/recurrenceUtils/recurrenceConstants.ts#L13) + +## Type declaration + +### DAILY + +> **DAILY**: `string` = `'Day'` + +### MONTHLY + +> **MONTHLY**: `string` = `'Month'` + +### WEEKLY + +> **WEEKLY**: `string` = `'Week'` + +### YEARLY + +> **YEARLY**: `string` = `'Year'` diff --git a/docs/docs/auto-docs/utils/recurrenceUtils/recurrenceConstants/variables/mondayToFriday.md b/docs/docs/auto-docs/utils/recurrenceUtils/recurrenceConstants/variables/mondayToFriday.md new file mode 100644 index 0000000000..18294f095e --- /dev/null +++ b/docs/docs/auto-docs/utils/recurrenceUtils/recurrenceConstants/variables/mondayToFriday.md @@ -0,0 +1,9 @@ +[Admin Docs](/) + +*** + +# Variable: mondayToFriday + +> `const` **mondayToFriday**: ([`MONDAY`](../../recurrenceTypes/enumerations/WeekDays.md#monday) \| [`TUESDAY`](../../recurrenceTypes/enumerations/WeekDays.md#tuesday) \| [`WEDNESDAY`](../../recurrenceTypes/enumerations/WeekDays.md#wednesday) \| [`THURSDAY`](../../recurrenceTypes/enumerations/WeekDays.md#thursday) \| [`FRIDAY`](../../recurrenceTypes/enumerations/WeekDays.md#friday))[] + +Defined in: [src/utils/recurrenceUtils/recurrenceConstants.ts:55](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/utils/recurrenceUtils/recurrenceConstants.ts#L55) diff --git a/docs/docs/auto-docs/utils/recurrenceUtils/recurrenceConstants/variables/monthNames.md b/docs/docs/auto-docs/utils/recurrenceUtils/recurrenceConstants/variables/monthNames.md new file mode 100644 index 0000000000..b2d348e133 --- /dev/null +++ b/docs/docs/auto-docs/utils/recurrenceUtils/recurrenceConstants/variables/monthNames.md @@ -0,0 +1,9 @@ +[Admin Docs](/) + +*** + +# Variable: monthNames + +> `const` **monthNames**: `string`[] + +Defined in: [src/utils/recurrenceUtils/recurrenceConstants.ts:71](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/utils/recurrenceUtils/recurrenceConstants.ts#L71) diff --git a/docs/docs/auto-docs/utils/recurrenceUtils/recurrenceConstants/variables/recurrenceEndOptions.md b/docs/docs/auto-docs/utils/recurrenceUtils/recurrenceConstants/variables/recurrenceEndOptions.md new file mode 100644 index 0000000000..65d463409b --- /dev/null +++ b/docs/docs/auto-docs/utils/recurrenceUtils/recurrenceConstants/variables/recurrenceEndOptions.md @@ -0,0 +1,9 @@ +[Admin Docs](/) + +*** + +# Variable: recurrenceEndOptions + +> `const` **recurrenceEndOptions**: [`RecurrenceEndOption`](../../recurrenceTypes/enumerations/RecurrenceEndOption.md)[] + +Defined in: [src/utils/recurrenceUtils/recurrenceConstants.ts:40](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/utils/recurrenceUtils/recurrenceConstants.ts#L40) diff --git a/docs/docs/auto-docs/utils/recurrenceUtils/recurrenceConstants/variables/recurringEventMutationOptions.md b/docs/docs/auto-docs/utils/recurrenceUtils/recurrenceConstants/variables/recurringEventMutationOptions.md new file mode 100644 index 0000000000..b0e0e84656 --- /dev/null +++ b/docs/docs/auto-docs/utils/recurrenceUtils/recurrenceConstants/variables/recurringEventMutationOptions.md @@ -0,0 +1,9 @@ +[Admin Docs](/) + +*** + +# Variable: recurringEventMutationOptions + +> `const` **recurringEventMutationOptions**: [`RecurringEventMutationType`](../../recurrenceTypes/enumerations/RecurringEventMutationType.md)[] + +Defined in: [src/utils/recurrenceUtils/recurrenceConstants.ts:48](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/utils/recurrenceUtils/recurrenceConstants.ts#L48) diff --git a/docs/docs/auto-docs/utils/recurrenceUtils/recurrenceConstants/variables/thisAndFollowingInstances.md b/docs/docs/auto-docs/utils/recurrenceUtils/recurrenceConstants/variables/thisAndFollowingInstances.md new file mode 100644 index 0000000000..c770cffe4e --- /dev/null +++ b/docs/docs/auto-docs/utils/recurrenceUtils/recurrenceConstants/variables/thisAndFollowingInstances.md @@ -0,0 +1,9 @@ +[Admin Docs](/) + +*** + +# Variable: thisAndFollowingInstances + +> `const` **thisAndFollowingInstances**: [`thisAndFollowingInstances`](../../recurrenceTypes/enumerations/RecurringEventMutationType.md#thisandfollowinginstances) = `RecurringEventMutationType.thisAndFollowingInstances` + +Defined in: [src/utils/recurrenceUtils/recurrenceConstants.ts:44](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/utils/recurrenceUtils/recurrenceConstants.ts#L44) diff --git a/docs/docs/auto-docs/utils/recurrenceUtils/recurrenceConstants/variables/thisInstance.md b/docs/docs/auto-docs/utils/recurrenceUtils/recurrenceConstants/variables/thisInstance.md new file mode 100644 index 0000000000..c941509d35 --- /dev/null +++ b/docs/docs/auto-docs/utils/recurrenceUtils/recurrenceConstants/variables/thisInstance.md @@ -0,0 +1,9 @@ +[Admin Docs](/) + +*** + +# Variable: thisInstance + +> `const` **thisInstance**: [`thisInstance`](../../recurrenceTypes/enumerations/RecurringEventMutationType.md#thisinstance) = `RecurringEventMutationType.thisInstance` + +Defined in: [src/utils/recurrenceUtils/recurrenceConstants.ts:43](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/utils/recurrenceUtils/recurrenceConstants.ts#L43) diff --git a/docs/docs/auto-docs/utils/recurrenceUtils/recurrenceConstants/variables/weekDayOccurences.md b/docs/docs/auto-docs/utils/recurrenceUtils/recurrenceConstants/variables/weekDayOccurences.md new file mode 100644 index 0000000000..847f4db5bb --- /dev/null +++ b/docs/docs/auto-docs/utils/recurrenceUtils/recurrenceConstants/variables/weekDayOccurences.md @@ -0,0 +1,9 @@ +[Admin Docs](/) + +*** + +# Variable: weekDayOccurences + +> `const` **weekDayOccurences**: `string`[] + +Defined in: [src/utils/recurrenceUtils/recurrenceConstants.ts:87](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/utils/recurrenceUtils/recurrenceConstants.ts#L87) diff --git a/docs/docs/auto-docs/utils/recurrenceUtils/recurrenceTypes/enumerations/Frequency.md b/docs/docs/auto-docs/utils/recurrenceUtils/recurrenceTypes/enumerations/Frequency.md new file mode 100644 index 0000000000..ab58479e2c --- /dev/null +++ b/docs/docs/auto-docs/utils/recurrenceUtils/recurrenceTypes/enumerations/Frequency.md @@ -0,0 +1,39 @@ +[Admin Docs](/) + +*** + +# Enumeration: Frequency + +Defined in: [src/utils/recurrenceUtils/recurrenceTypes.ts:28](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/utils/recurrenceUtils/recurrenceTypes.ts#L28) + +## Enumeration Members + +### DAILY + +> **DAILY**: `"DAILY"` + +Defined in: [src/utils/recurrenceUtils/recurrenceTypes.ts:29](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/utils/recurrenceUtils/recurrenceTypes.ts#L29) + +*** + +### MONTHLY + +> **MONTHLY**: `"MONTHLY"` + +Defined in: [src/utils/recurrenceUtils/recurrenceTypes.ts:31](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/utils/recurrenceUtils/recurrenceTypes.ts#L31) + +*** + +### WEEKLY + +> **WEEKLY**: `"WEEKLY"` + +Defined in: [src/utils/recurrenceUtils/recurrenceTypes.ts:30](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/utils/recurrenceUtils/recurrenceTypes.ts#L30) + +*** + +### YEARLY + +> **YEARLY**: `"YEARLY"` + +Defined in: [src/utils/recurrenceUtils/recurrenceTypes.ts:32](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/utils/recurrenceUtils/recurrenceTypes.ts#L32) diff --git a/docs/docs/auto-docs/utils/recurrenceUtils/recurrenceTypes/enumerations/RecurrenceEndOption.md b/docs/docs/auto-docs/utils/recurrenceUtils/recurrenceTypes/enumerations/RecurrenceEndOption.md new file mode 100644 index 0000000000..de563b3c74 --- /dev/null +++ b/docs/docs/auto-docs/utils/recurrenceUtils/recurrenceTypes/enumerations/RecurrenceEndOption.md @@ -0,0 +1,31 @@ +[Admin Docs](/) + +*** + +# Enumeration: RecurrenceEndOption + +Defined in: [src/utils/recurrenceUtils/recurrenceTypes.ts:48](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/utils/recurrenceUtils/recurrenceTypes.ts#L48) + +## Enumeration Members + +### after + +> **after**: `"after"` + +Defined in: [src/utils/recurrenceUtils/recurrenceTypes.ts:51](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/utils/recurrenceUtils/recurrenceTypes.ts#L51) + +*** + +### never + +> **never**: `"never"` + +Defined in: [src/utils/recurrenceUtils/recurrenceTypes.ts:49](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/utils/recurrenceUtils/recurrenceTypes.ts#L49) + +*** + +### on + +> **on**: `"on"` + +Defined in: [src/utils/recurrenceUtils/recurrenceTypes.ts:50](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/utils/recurrenceUtils/recurrenceTypes.ts#L50) diff --git a/docs/docs/auto-docs/utils/recurrenceUtils/recurrenceTypes/enumerations/RecurringEventMutationType.md b/docs/docs/auto-docs/utils/recurrenceUtils/recurrenceTypes/enumerations/RecurringEventMutationType.md new file mode 100644 index 0000000000..b063ba4b91 --- /dev/null +++ b/docs/docs/auto-docs/utils/recurrenceUtils/recurrenceTypes/enumerations/RecurringEventMutationType.md @@ -0,0 +1,31 @@ +[Admin Docs](/) + +*** + +# Enumeration: RecurringEventMutationType + +Defined in: [src/utils/recurrenceUtils/recurrenceTypes.ts:55](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/utils/recurrenceUtils/recurrenceTypes.ts#L55) + +## Enumeration Members + +### allInstances + +> **allInstances**: `"allInstances"` + +Defined in: [src/utils/recurrenceUtils/recurrenceTypes.ts:58](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/utils/recurrenceUtils/recurrenceTypes.ts#L58) + +*** + +### thisAndFollowingInstances + +> **thisAndFollowingInstances**: `"thisAndFollowingInstances"` + +Defined in: [src/utils/recurrenceUtils/recurrenceTypes.ts:57](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/utils/recurrenceUtils/recurrenceTypes.ts#L57) + +*** + +### thisInstance + +> **thisInstance**: `"thisInstance"` + +Defined in: [src/utils/recurrenceUtils/recurrenceTypes.ts:56](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/utils/recurrenceUtils/recurrenceTypes.ts#L56) diff --git a/docs/docs/auto-docs/utils/recurrenceUtils/recurrenceTypes/enumerations/WeekDays.md b/docs/docs/auto-docs/utils/recurrenceUtils/recurrenceTypes/enumerations/WeekDays.md new file mode 100644 index 0000000000..66cbfd631c --- /dev/null +++ b/docs/docs/auto-docs/utils/recurrenceUtils/recurrenceTypes/enumerations/WeekDays.md @@ -0,0 +1,63 @@ +[Admin Docs](/) + +*** + +# Enumeration: WeekDays + +Defined in: [src/utils/recurrenceUtils/recurrenceTypes.ts:36](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/utils/recurrenceUtils/recurrenceTypes.ts#L36) + +## Enumeration Members + +### FRIDAY + +> **FRIDAY**: `"FRIDAY"` + +Defined in: [src/utils/recurrenceUtils/recurrenceTypes.ts:42](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/utils/recurrenceUtils/recurrenceTypes.ts#L42) + +*** + +### MONDAY + +> **MONDAY**: `"MONDAY"` + +Defined in: [src/utils/recurrenceUtils/recurrenceTypes.ts:38](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/utils/recurrenceUtils/recurrenceTypes.ts#L38) + +*** + +### SATURDAY + +> **SATURDAY**: `"SATURDAY"` + +Defined in: [src/utils/recurrenceUtils/recurrenceTypes.ts:43](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/utils/recurrenceUtils/recurrenceTypes.ts#L43) + +*** + +### SUNDAY + +> **SUNDAY**: `"SUNDAY"` + +Defined in: [src/utils/recurrenceUtils/recurrenceTypes.ts:37](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/utils/recurrenceUtils/recurrenceTypes.ts#L37) + +*** + +### THURSDAY + +> **THURSDAY**: `"THURSDAY"` + +Defined in: [src/utils/recurrenceUtils/recurrenceTypes.ts:41](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/utils/recurrenceUtils/recurrenceTypes.ts#L41) + +*** + +### TUESDAY + +> **TUESDAY**: `"TUESDAY"` + +Defined in: [src/utils/recurrenceUtils/recurrenceTypes.ts:39](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/utils/recurrenceUtils/recurrenceTypes.ts#L39) + +*** + +### WEDNESDAY + +> **WEDNESDAY**: `"WEDNESDAY"` + +Defined in: [src/utils/recurrenceUtils/recurrenceTypes.ts:40](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/utils/recurrenceUtils/recurrenceTypes.ts#L40) diff --git a/docs/docs/auto-docs/utils/recurrenceUtils/recurrenceTypes/interfaces/InterfaceRecurrenceRule.md b/docs/docs/auto-docs/utils/recurrenceUtils/recurrenceTypes/interfaces/InterfaceRecurrenceRule.md new file mode 100644 index 0000000000..5d3fb1fc31 --- /dev/null +++ b/docs/docs/auto-docs/utils/recurrenceUtils/recurrenceTypes/interfaces/InterfaceRecurrenceRule.md @@ -0,0 +1,63 @@ +[Admin Docs](/) + +*** + +# Interface: InterfaceRecurrenceRule + +Defined in: [src/utils/recurrenceUtils/recurrenceTypes.ts:17](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/utils/recurrenceUtils/recurrenceTypes.ts#L17) + +## Properties + +### count + +> **count**: `number` + +Defined in: [src/utils/recurrenceUtils/recurrenceTypes.ts:23](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/utils/recurrenceUtils/recurrenceTypes.ts#L23) + +*** + +### frequency + +> **frequency**: [`Frequency`](../enumerations/Frequency.md) + +Defined in: [src/utils/recurrenceUtils/recurrenceTypes.ts:20](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/utils/recurrenceUtils/recurrenceTypes.ts#L20) + +*** + +### interval + +> **interval**: `number` + +Defined in: [src/utils/recurrenceUtils/recurrenceTypes.ts:22](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/utils/recurrenceUtils/recurrenceTypes.ts#L22) + +*** + +### recurrenceEndDate + +> **recurrenceEndDate**: `string` + +Defined in: [src/utils/recurrenceUtils/recurrenceTypes.ts:19](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/utils/recurrenceUtils/recurrenceTypes.ts#L19) + +*** + +### recurrenceStartDate + +> **recurrenceStartDate**: `string` + +Defined in: [src/utils/recurrenceUtils/recurrenceTypes.ts:18](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/utils/recurrenceUtils/recurrenceTypes.ts#L18) + +*** + +### weekDayOccurenceInMonth + +> **weekDayOccurenceInMonth**: `number` + +Defined in: [src/utils/recurrenceUtils/recurrenceTypes.ts:24](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/utils/recurrenceUtils/recurrenceTypes.ts#L24) + +*** + +### weekDays + +> **weekDays**: [`WeekDays`](../enumerations/WeekDays.md)[] + +Defined in: [src/utils/recurrenceUtils/recurrenceTypes.ts:21](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/utils/recurrenceUtils/recurrenceTypes.ts#L21) diff --git a/docs/docs/auto-docs/utils/recurrenceUtils/recurrenceTypes/interfaces/InterfaceRecurrenceRuleState.md b/docs/docs/auto-docs/utils/recurrenceUtils/recurrenceTypes/interfaces/InterfaceRecurrenceRuleState.md new file mode 100644 index 0000000000..1486fec191 --- /dev/null +++ b/docs/docs/auto-docs/utils/recurrenceUtils/recurrenceTypes/interfaces/InterfaceRecurrenceRuleState.md @@ -0,0 +1,63 @@ +[Admin Docs](/) + +*** + +# Interface: InterfaceRecurrenceRuleState + +Defined in: [src/utils/recurrenceUtils/recurrenceTypes.ts:6](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/utils/recurrenceUtils/recurrenceTypes.ts#L6) + +## Properties + +### count + +> **count**: `number` + +Defined in: [src/utils/recurrenceUtils/recurrenceTypes.ts:12](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/utils/recurrenceUtils/recurrenceTypes.ts#L12) + +*** + +### frequency + +> **frequency**: [`Frequency`](../enumerations/Frequency.md) + +Defined in: [src/utils/recurrenceUtils/recurrenceTypes.ts:9](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/utils/recurrenceUtils/recurrenceTypes.ts#L9) + +*** + +### interval + +> **interval**: `number` + +Defined in: [src/utils/recurrenceUtils/recurrenceTypes.ts:11](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/utils/recurrenceUtils/recurrenceTypes.ts#L11) + +*** + +### recurrenceEndDate + +> **recurrenceEndDate**: `Date` + +Defined in: [src/utils/recurrenceUtils/recurrenceTypes.ts:8](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/utils/recurrenceUtils/recurrenceTypes.ts#L8) + +*** + +### recurrenceStartDate + +> **recurrenceStartDate**: `Date` + +Defined in: [src/utils/recurrenceUtils/recurrenceTypes.ts:7](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/utils/recurrenceUtils/recurrenceTypes.ts#L7) + +*** + +### weekDayOccurenceInMonth + +> **weekDayOccurenceInMonth**: `number` + +Defined in: [src/utils/recurrenceUtils/recurrenceTypes.ts:13](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/utils/recurrenceUtils/recurrenceTypes.ts#L13) + +*** + +### weekDays + +> **weekDays**: [`WeekDays`](../enumerations/WeekDays.md)[] + +Defined in: [src/utils/recurrenceUtils/recurrenceTypes.ts:10](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/utils/recurrenceUtils/recurrenceTypes.ts#L10) diff --git a/docs/docs/auto-docs/utils/recurrenceUtils/recurrenceUtilityFunctions/functions/getRecurrenceRuleText.md b/docs/docs/auto-docs/utils/recurrenceUtils/recurrenceUtilityFunctions/functions/getRecurrenceRuleText.md new file mode 100644 index 0000000000..630f73b91e --- /dev/null +++ b/docs/docs/auto-docs/utils/recurrenceUtils/recurrenceUtilityFunctions/functions/getRecurrenceRuleText.md @@ -0,0 +1,19 @@ +[Admin Docs](/) + +*** + +# Function: getRecurrenceRuleText() + +> **getRecurrenceRuleText**(`recurrenceRuleState`): `string` + +Defined in: [src/utils/recurrenceUtils/recurrenceUtilityFunctions.ts:22](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/utils/recurrenceUtils/recurrenceUtilityFunctions.ts#L22) + +## Parameters + +### recurrenceRuleState + +[`InterfaceRecurrenceRuleState`](../../recurrenceTypes/interfaces/InterfaceRecurrenceRuleState.md) + +## Returns + +`string` diff --git a/docs/docs/auto-docs/utils/recurrenceUtils/recurrenceUtilityFunctions/functions/getWeekDayOccurenceInMonth.md b/docs/docs/auto-docs/utils/recurrenceUtils/recurrenceUtilityFunctions/functions/getWeekDayOccurenceInMonth.md new file mode 100644 index 0000000000..0b5adc3522 --- /dev/null +++ b/docs/docs/auto-docs/utils/recurrenceUtils/recurrenceUtilityFunctions/functions/getWeekDayOccurenceInMonth.md @@ -0,0 +1,19 @@ +[Admin Docs](/) + +*** + +# Function: getWeekDayOccurenceInMonth() + +> **getWeekDayOccurenceInMonth**(`date`): `number` + +Defined in: [src/utils/recurrenceUtils/recurrenceUtilityFunctions.ts:126](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/utils/recurrenceUtils/recurrenceUtilityFunctions.ts#L126) + +## Parameters + +### date + +`Date` + +## Returns + +`number` diff --git a/docs/docs/auto-docs/utils/recurrenceUtils/recurrenceUtilityFunctions/functions/hasRecurrenceRuleChanged.md b/docs/docs/auto-docs/utils/recurrenceUtils/recurrenceUtilityFunctions/functions/hasRecurrenceRuleChanged.md new file mode 100644 index 0000000000..75cf820723 --- /dev/null +++ b/docs/docs/auto-docs/utils/recurrenceUtils/recurrenceUtilityFunctions/functions/hasRecurrenceRuleChanged.md @@ -0,0 +1,23 @@ +[Admin Docs](/) + +*** + +# Function: hasRecurrenceRuleChanged() + +> **hasRecurrenceRuleChanged**(`originalRecurrencerule`, `recurrenceRuleState`): `boolean` + +Defined in: [src/utils/recurrenceUtils/recurrenceUtilityFunctions.ts:167](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/utils/recurrenceUtils/recurrenceUtilityFunctions.ts#L167) + +## Parameters + +### originalRecurrencerule + +[`InterfaceRecurrenceRule`](../../recurrenceTypes/interfaces/InterfaceRecurrenceRule.md) + +### recurrenceRuleState + +[`InterfaceRecurrenceRuleState`](../../recurrenceTypes/interfaces/InterfaceRecurrenceRuleState.md) + +## Returns + +`boolean` diff --git a/docs/docs/auto-docs/utils/recurrenceUtils/recurrenceUtilityFunctions/functions/haveInstanceDatesChanged.md b/docs/docs/auto-docs/utils/recurrenceUtils/recurrenceUtilityFunctions/functions/haveInstanceDatesChanged.md new file mode 100644 index 0000000000..bbd03c9eac --- /dev/null +++ b/docs/docs/auto-docs/utils/recurrenceUtils/recurrenceUtilityFunctions/functions/haveInstanceDatesChanged.md @@ -0,0 +1,31 @@ +[Admin Docs](/) + +*** + +# Function: haveInstanceDatesChanged() + +> **haveInstanceDatesChanged**(`instanceOriginalStartDate`, `instanceOriginalEndDate`, `instanceNewStartDate`, `instanceNewEndDate`): `boolean` + +Defined in: [src/utils/recurrenceUtils/recurrenceUtilityFunctions.ts:154](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/utils/recurrenceUtils/recurrenceUtilityFunctions.ts#L154) + +## Parameters + +### instanceOriginalStartDate + +`string` + +### instanceOriginalEndDate + +`string` + +### instanceNewStartDate + +`string` + +### instanceNewEndDate + +`string` + +## Returns + +`boolean` diff --git a/docs/docs/auto-docs/utils/recurrenceUtils/recurrenceUtilityFunctions/functions/isLastOccurenceOfWeekDay.md b/docs/docs/auto-docs/utils/recurrenceUtils/recurrenceUtilityFunctions/functions/isLastOccurenceOfWeekDay.md new file mode 100644 index 0000000000..986fd82408 --- /dev/null +++ b/docs/docs/auto-docs/utils/recurrenceUtils/recurrenceUtilityFunctions/functions/isLastOccurenceOfWeekDay.md @@ -0,0 +1,19 @@ +[Admin Docs](/) + +*** + +# Function: isLastOccurenceOfWeekDay() + +> **isLastOccurenceOfWeekDay**(`date`): `boolean` + +Defined in: [src/utils/recurrenceUtils/recurrenceUtilityFunctions.ts:136](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/utils/recurrenceUtils/recurrenceUtilityFunctions.ts#L136) + +## Parameters + +### date + +`Date` + +## Returns + +`boolean` diff --git a/docs/docs/auto-docs/utils/timezoneUtils/dateTimeConfig/variables/dateTimeFields.md b/docs/docs/auto-docs/utils/timezoneUtils/dateTimeConfig/variables/dateTimeFields.md new file mode 100644 index 0000000000..ded32954d0 --- /dev/null +++ b/docs/docs/auto-docs/utils/timezoneUtils/dateTimeConfig/variables/dateTimeFields.md @@ -0,0 +1,19 @@ +[Admin Docs](/) + +*** + +# Variable: dateTimeFields + +> `const` **dateTimeFields**: `object` + +Defined in: [src/utils/timezoneUtils/dateTimeConfig.ts:3](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/utils/timezoneUtils/dateTimeConfig.ts#L3) + +## Type declaration + +### directFields + +> **directFields**: `string`[] + +### pairedFields + +> **pairedFields**: `object`[] diff --git a/docs/docs/auto-docs/utils/timezoneUtils/dateTimeMiddleware/variables/requestMiddleware.md b/docs/docs/auto-docs/utils/timezoneUtils/dateTimeMiddleware/variables/requestMiddleware.md new file mode 100644 index 0000000000..fdeb5d0398 --- /dev/null +++ b/docs/docs/auto-docs/utils/timezoneUtils/dateTimeMiddleware/variables/requestMiddleware.md @@ -0,0 +1,9 @@ +[Admin Docs](/) + +*** + +# Variable: requestMiddleware + +> `const` **requestMiddleware**: `ApolloLink` + +Defined in: [src/utils/timezoneUtils/dateTimeMiddleware.ts:84](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/utils/timezoneUtils/dateTimeMiddleware.ts#L84) diff --git a/docs/docs/auto-docs/utils/timezoneUtils/dateTimeMiddleware/variables/responseMiddleware.md b/docs/docs/auto-docs/utils/timezoneUtils/dateTimeMiddleware/variables/responseMiddleware.md new file mode 100644 index 0000000000..9ba781bd8e --- /dev/null +++ b/docs/docs/auto-docs/utils/timezoneUtils/dateTimeMiddleware/variables/responseMiddleware.md @@ -0,0 +1,9 @@ +[Admin Docs](/) + +*** + +# Variable: responseMiddleware + +> `const` **responseMiddleware**: `ApolloLink` + +Defined in: [src/utils/timezoneUtils/dateTimeMiddleware.ts:94](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/utils/timezoneUtils/dateTimeMiddleware.ts#L94) diff --git a/docs/docs/auto-docs/utils/useLocalstorage/functions/getItem.md b/docs/docs/auto-docs/utils/useLocalstorage/functions/getItem.md new file mode 100644 index 0000000000..c038ee7031 --- /dev/null +++ b/docs/docs/auto-docs/utils/useLocalstorage/functions/getItem.md @@ -0,0 +1,31 @@ +[Admin Docs](/) + +*** + +# Function: getItem() + +> **getItem**(`prefix`, `key`): `any` + +Defined in: [src/utils/useLocalstorage.ts:29](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/utils/useLocalstorage.ts#L29) + +Retrieves the stored value for the given key from local storage. + +## Parameters + +### prefix + +`string` + +Prefix to be added to the key, common for all keys. + +### key + +`string` + +The unique name identifying the value. + +## Returns + +`any` + +- The stored value for the given key from local storage. diff --git a/docs/docs/auto-docs/utils/useLocalstorage/functions/getStorageKey.md b/docs/docs/auto-docs/utils/useLocalstorage/functions/getStorageKey.md new file mode 100644 index 0000000000..73fd0bcec3 --- /dev/null +++ b/docs/docs/auto-docs/utils/useLocalstorage/functions/getStorageKey.md @@ -0,0 +1,31 @@ +[Admin Docs](/) + +*** + +# Function: getStorageKey() + +> **getStorageKey**(`prefix`, `key`): `string` + +Defined in: [src/utils/useLocalstorage.ts:19](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/utils/useLocalstorage.ts#L19) + +Generates the prefixed key for storage. + +## Parameters + +### prefix + +`string` + +Prefix to be added to the key, common for all keys. + +### key + +`string` + +The unique name identifying the value. + +## Returns + +`string` + +- Prefixed key. diff --git a/docs/docs/auto-docs/utils/useLocalstorage/functions/removeItem.md b/docs/docs/auto-docs/utils/useLocalstorage/functions/removeItem.md new file mode 100644 index 0000000000..a110363f60 --- /dev/null +++ b/docs/docs/auto-docs/utils/useLocalstorage/functions/removeItem.md @@ -0,0 +1,29 @@ +[Admin Docs](/) + +*** + +# Function: removeItem() + +> **removeItem**(`prefix`, `key`): `void` + +Defined in: [src/utils/useLocalstorage.ts:51](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/utils/useLocalstorage.ts#L51) + +Removes the value associated with the given key from local storage. + +## Parameters + +### prefix + +`string` + +Prefix to be added to the key, common for all keys. + +### key + +`string` + +The unique name identifying the value. + +## Returns + +`void` diff --git a/docs/docs/auto-docs/utils/useLocalstorage/functions/setItem.md b/docs/docs/auto-docs/utils/useLocalstorage/functions/setItem.md new file mode 100644 index 0000000000..2471d31679 --- /dev/null +++ b/docs/docs/auto-docs/utils/useLocalstorage/functions/setItem.md @@ -0,0 +1,35 @@ +[Admin Docs](/) + +*** + +# Function: setItem() + +> **setItem**(`prefix`, `key`, `value`): `void` + +Defined in: [src/utils/useLocalstorage.ts:41](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/utils/useLocalstorage.ts#L41) + +Sets the value for the given key in local storage. + +## Parameters + +### prefix + +`string` + +Prefix to be added to the key, common for all keys. + +### key + +`string` + +The unique name identifying the value. + +### value + +`any` + +The value for the key. + +## Returns + +`void` diff --git a/docs/docs/auto-docs/utils/useLocalstorage/functions/useLocalStorage.md b/docs/docs/auto-docs/utils/useLocalstorage/functions/useLocalStorage.md new file mode 100644 index 0000000000..ed841c1ee5 --- /dev/null +++ b/docs/docs/auto-docs/utils/useLocalstorage/functions/useLocalStorage.md @@ -0,0 +1,25 @@ +[Admin Docs](/) + +*** + +# Function: useLocalStorage() + +> **useLocalStorage**(`prefix`): `InterfaceStorageHelper` + +Defined in: [src/utils/useLocalstorage.ts:61](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/utils/useLocalstorage.ts#L61) + +Custom hook for simplified localStorage operations. + +## Parameters + +### prefix + +`string` = `PREFIX` + +Prefix to be added to the key, common for all keys. Default is 'Talawa-admin'. + +## Returns + +`InterfaceStorageHelper` + +- Functions to getItem, setItem, removeItem, and getStorageKey. diff --git a/docs/docs/auto-docs/utils/useSession/functions/default.md b/docs/docs/auto-docs/utils/useSession/functions/default.md new file mode 100644 index 0000000000..25a1c4dd47 --- /dev/null +++ b/docs/docs/auto-docs/utils/useSession/functions/default.md @@ -0,0 +1,24 @@ +[Admin Docs](/) + +*** + +# Function: default() + +> **default**(): `UseSessionReturnType` + +Defined in: [src/utils/useSession.tsx:30](https://github.com/gautam-divyanshu/talawa-admin/blob/69cd9f147d3701d1db7821366b2c564d1fb49f77/src/utils/useSession.tsx#L30) + +Custom hook for managing user session timeouts in a React application. + +This hook handles: +- Starting and ending the user session. +- Displaying a warning toast at half of the session timeout duration. +- Logging the user out and displaying a session expiration toast when the session times out. +- Automatically resetting the timers when user activity is detected. +- Pausing session timers when the tab is inactive and resuming them when it becomes active again. + +## Returns + +`UseSessionReturnType` + +UseSessionReturnType - An object with methods to start and end the session, and to handle logout. diff --git a/fix-readme-links.js b/fix-readme-links.js new file mode 100644 index 0000000000..d9930cd7c7 --- /dev/null +++ b/fix-readme-links.js @@ -0,0 +1,25 @@ +import fs from 'fs'; +import path from 'path'; + +const docsDir = path.resolve('./docs/docs/auto-docs'); + +function replaceLinks(dir) { + const files = fs.readdirSync(dir); + files.forEach((file) => { + const filePath = path.join(dir, file); + if (fs.lstatSync(filePath).isDirectory()) { + replaceLinks(filePath); + } else if (file.endsWith('.md')) { + let content = fs.readFileSync(filePath, 'utf8'); + + // Replace any README.md links with root directory ("/") + content = content.replace(/\[.*?\]\((.*?)README\.md\)/g, (match) => { + return '[Admin Docs](/)'; // Redirect broken links to the root + }); + + fs.writeFileSync(filePath, content, 'utf8'); + } + }); +} + +replaceLinks(docsDir); diff --git a/package-lock.json b/package-lock.json index 2738624102..5ba3800d20 100644 --- a/package-lock.json +++ b/package-lock.json @@ -66,8 +66,6 @@ "redux": "^5.0.1", "redux-thunk": "^3.1.0", "sanitize-html": "^2.13.0", - "typedoc": "^0.26.10", - "typedoc-plugin-markdown": "^4.2.10", "typescript": "^5.6.3", "vite": "^5.4.8", "vite-plugin-environment": "^1.1.3", @@ -117,7 +115,10 @@ "lint-staged": "^15.3.0", "postcss-modules": "^6.0.1", "sass": "^1.80.7", + "shiki": "^1.26.1", "tsx": "^4.19.1", + "typedoc": "^0.27.6", + "typedoc-plugin-markdown": "^4.4.1", "vite-plugin-svgr": "^4.2.0", "vitest": "^2.1.5", "whatwg-fetch": "^3.6.20" @@ -3257,6 +3258,18 @@ "resolved": "https://registry.npmjs.org/@floating-ui/utils/-/utils-0.2.8.tgz", "integrity": "sha512-kym7SodPp8/wloecOpcmSnWJsK7M0E5Wg8UcFA+uO4B9s5d0ywXOEro/8HM9x0rW+TljRzul/14UYz3TleT3ig==" }, + "node_modules/@gerrit0/mini-shiki": { + "version": "1.27.0", + "resolved": "https://registry.npmjs.org/@gerrit0/mini-shiki/-/mini-shiki-1.27.0.tgz", + "integrity": "sha512-nFZkbq4/wU+GxkyJVrXeMIS9SEcHI1HzJtK3EDtMQy16nNs1LNaI0dZTLAP2EuK/QSTYLo/Zaabm6Phxlmra1A==", + "dev": true, + "license": "MIT", + "dependencies": { + "@shikijs/engine-oniguruma": "^1.27.0", + "@shikijs/types": "^1.27.0", + "@shikijs/vscode-textmate": "^10.0.1" + } + }, "node_modules/@graphql-typed-document-node/core": { "version": "3.2.0", "resolved": "https://registry.npmjs.org/@graphql-typed-document-node/core/-/core-3.2.0.tgz", @@ -5563,49 +5576,80 @@ "dev": true }, "node_modules/@shikijs/core": { - "version": "1.17.6", - "resolved": "https://registry.npmjs.org/@shikijs/core/-/core-1.17.6.tgz", - "integrity": "sha512-9ztslig6/YmCg/XwESAXbKjAjOhaq6HVced9NY6qcbDz1X5g/S90Wco2vMjBNX/6V71ASkzri76JewSGPa7kiQ==", - "dependencies": { - "@shikijs/engine-javascript": "1.17.6", - "@shikijs/engine-oniguruma": "1.17.6", - "@shikijs/types": "1.17.6", - "@shikijs/vscode-textmate": "^9.2.2", + "version": "1.27.2", + "resolved": "https://registry.npmjs.org/@shikijs/core/-/core-1.27.2.tgz", + "integrity": "sha512-ns1dokDr0KE1lQ9mWd4rqaBkhSApk0qGCK1+lOqwnkQSkVZ08UGqXj1Ef8dAcTMZNFkN6PSNjkL5TYNX7pyPbQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@shikijs/engine-javascript": "1.27.2", + "@shikijs/engine-oniguruma": "1.27.2", + "@shikijs/types": "1.27.2", + "@shikijs/vscode-textmate": "^10.0.1", "@types/hast": "^3.0.4", - "hast-util-to-html": "^9.0.2" + "hast-util-to-html": "^9.0.4" } }, "node_modules/@shikijs/engine-javascript": { - "version": "1.17.6", - "resolved": "https://registry.npmjs.org/@shikijs/engine-javascript/-/engine-javascript-1.17.6.tgz", - "integrity": "sha512-5EEZj8tVcierNxm4V0UMS2PVoflb0UJPalWWV8l9rRg+oOfnr5VivqBJbkyq5grltVPvByIXvVbY8GSM/356jQ==", + "version": "1.27.2", + "resolved": "https://registry.npmjs.org/@shikijs/engine-javascript/-/engine-javascript-1.27.2.tgz", + "integrity": "sha512-0JB7U5vJc16NShBdxv9hSSJYSKX79+32O7F4oXIxJLdYfomyFvx4B982ackUI9ftO9T3WwagkiiD3nOxOOLiGA==", + "dev": true, + "license": "MIT", "dependencies": { - "@shikijs/types": "1.17.6", - "oniguruma-to-js": "0.4.3" + "@shikijs/types": "1.27.2", + "@shikijs/vscode-textmate": "^10.0.1", + "oniguruma-to-es": "^2.0.0" } }, "node_modules/@shikijs/engine-oniguruma": { - "version": "1.17.6", - "resolved": "https://registry.npmjs.org/@shikijs/engine-oniguruma/-/engine-oniguruma-1.17.6.tgz", - "integrity": "sha512-NLfWDMXFYe0nDHFbEoyZdz89aIIey3bTfF3zLYSUNTXks5s4uinZVmuPOFf1HfTeGqIn8uErJSBc3VnpJO7Alw==", + "version": "1.27.2", + "resolved": "https://registry.npmjs.org/@shikijs/engine-oniguruma/-/engine-oniguruma-1.27.2.tgz", + "integrity": "sha512-FZYKD1KN7srvpkz4lbGLOYWlyDU4Rd+2RtuKfABTkafAPOFr+J6umfIwY/TzOQqfNtWjL7SAwPAO0dcOraRLaQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@shikijs/types": "1.27.2", + "@shikijs/vscode-textmate": "^10.0.1" + } + }, + "node_modules/@shikijs/langs": { + "version": "1.27.2", + "resolved": "https://registry.npmjs.org/@shikijs/langs/-/langs-1.27.2.tgz", + "integrity": "sha512-MSrknKL0DbeXvhtSigMLIzjPOOQfvK7fsbcRv2NUUB0EvuTTomY8/U+lAkczYrXY2+dygKOapJKk8ScFYbtoNw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@shikijs/types": "1.27.2" + } + }, + "node_modules/@shikijs/themes": { + "version": "1.27.2", + "resolved": "https://registry.npmjs.org/@shikijs/themes/-/themes-1.27.2.tgz", + "integrity": "sha512-Yw/uV7EijjWavIIZLoWneTAohcbBqEKj6XMX1bfMqO3llqTKsyXukPp1evf8qPqzUHY7ibauqEaQchhfi857mg==", + "dev": true, + "license": "MIT", "dependencies": { - "@shikijs/types": "1.17.6", - "@shikijs/vscode-textmate": "^9.2.2" + "@shikijs/types": "1.27.2" } }, "node_modules/@shikijs/types": { - "version": "1.17.6", - "resolved": "https://registry.npmjs.org/@shikijs/types/-/types-1.17.6.tgz", - "integrity": "sha512-ndTFa2TJi2w51ddKQDn3Jy8f6K4E5Q2x3dA3Hmsd3+YmxDQ10UWHjcw7VbVbKzv3VcUvYPLy+z9neqytSzUMUg==", + "version": "1.27.2", + "resolved": "https://registry.npmjs.org/@shikijs/types/-/types-1.27.2.tgz", + "integrity": "sha512-DM9OWUyjmdYdnKDpaGB/GEn9XkToyK1tqxuqbmc5PV+5K8WjjwfygL3+cIvbkSw2v1ySwHDgqATq/+98pJ4Kyg==", + "dev": true, + "license": "MIT", "dependencies": { - "@shikijs/vscode-textmate": "^9.2.2", + "@shikijs/vscode-textmate": "^10.0.1", "@types/hast": "^3.0.4" } }, "node_modules/@shikijs/vscode-textmate": { - "version": "9.2.2", - "resolved": "https://registry.npmjs.org/@shikijs/vscode-textmate/-/vscode-textmate-9.2.2.tgz", - "integrity": "sha512-TMp15K+GGYrWlZM8+Lnj9EaHEFmOen0WJBrfa17hF7taDOYthuPPV0GWzfd/9iMij0akS/8Yw2ikquH7uVi/fg==" + "version": "10.0.1", + "resolved": "https://registry.npmjs.org/@shikijs/vscode-textmate/-/vscode-textmate-10.0.1.tgz", + "integrity": "sha512-fTIQwLF+Qhuws31iw7Ncl1R3HUDtGwIipiJ9iU+UsDUwMhegFcQKQHd51nZjb7CArq0MvON8rbgCGQYWHUKAdg==", + "dev": true, + "license": "MIT" }, "node_modules/@sindresorhus/is": { "version": "0.14.0", @@ -6131,6 +6175,8 @@ "version": "3.0.4", "resolved": "https://registry.npmjs.org/@types/hast/-/hast-3.0.4.tgz", "integrity": "sha512-WPs+bbQw5aCj+x6laNGWLH3wviHtoCv/P3+otBhbOhJgG8qtpdAMlTCxLtsTWA7LH1Oh/bFCHsBn0TPS5m30EQ==", + "dev": true, + "license": "MIT", "dependencies": { "@types/unist": "*" } @@ -6215,6 +6261,8 @@ "version": "4.0.4", "resolved": "https://registry.npmjs.org/@types/mdast/-/mdast-4.0.4.tgz", "integrity": "sha512-kGaNbPh1k7AFzgpud/gMdvIm5xuECykRR+JnWKQno9TAXVa6WIVCGTPvYGekIDL4uwCZQSYbUxNBSb1aUo79oA==", + "dev": true, + "license": "MIT", "dependencies": { "@types/unist": "*" } @@ -6396,7 +6444,9 @@ "node_modules/@types/unist": { "version": "3.0.3", "resolved": "https://registry.npmjs.org/@types/unist/-/unist-3.0.3.tgz", - "integrity": "sha512-ko/gIFJRv177XgZsZcBwnqJN5x/Gien8qNOn0D5bQU/zAzVf9Zt3BlcUiLqhV9y4ARk0GbT3tnUiPNgnTXzc/Q==" + "integrity": "sha512-ko/gIFJRv177XgZsZcBwnqJN5x/Gien8qNOn0D5bQU/zAzVf9Zt3BlcUiLqhV9y4ARk0GbT3tnUiPNgnTXzc/Q==", + "dev": true, + "license": "MIT" }, "node_modules/@types/use-sync-external-store": { "version": "0.0.3", @@ -6745,6 +6795,7 @@ "version": "1.2.0", "resolved": "https://registry.npmjs.org/@ungap/structured-clone/-/structured-clone-1.2.0.tgz", "integrity": "sha512-zuVdFrMJiuCDQUMCzQaD6KL28MjnqqN8XnAqiEq9PNm/hCPTSGfrXCOfwj1ow4LFb/tNymJPwsNbVePc1xFqrQ==", + "dev": true, "license": "ISC" }, "node_modules/@vitejs/plugin-react": { @@ -7963,7 +8014,8 @@ "node_modules/balanced-match": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", - "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==" + "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==", + "dev": true }, "node_modules/base64-js": { "version": "1.5.1", @@ -8444,6 +8496,8 @@ "version": "2.0.1", "resolved": "https://registry.npmjs.org/ccount/-/ccount-2.0.1.tgz", "integrity": "sha512-eyrF0jiFpY+3drT6383f1qhkbGsLSifNAjA61IUjZjmLCWjItY6LB9ft9YhoDgwfmclB2zhu51Lc7+95b8NRAg==", + "dev": true, + "license": "MIT", "funding": { "type": "github", "url": "https://github.com/sponsors/wooorm" @@ -8492,6 +8546,8 @@ "version": "2.1.0", "resolved": "https://registry.npmjs.org/character-entities-html4/-/character-entities-html4-2.1.0.tgz", "integrity": "sha512-1v7fgQRj6hnSwFpq1Eu0ynr/CDEw0rXo2B61qXrLNdHZmPKgb7fqS1a2JwF0rISo9q77jDI8VMEHoApn8qDoZA==", + "dev": true, + "license": "MIT", "funding": { "type": "github", "url": "https://github.com/sponsors/wooorm" @@ -8501,6 +8557,8 @@ "version": "3.0.0", "resolved": "https://registry.npmjs.org/character-entities-legacy/-/character-entities-legacy-3.0.0.tgz", "integrity": "sha512-RpPp0asT/6ufRm//AJVwpViZbGM/MkjQFxJccQRHmISF/22NBtsHqAWmL+/pmkPWoIUJdWyeVleTl1wydHATVQ==", + "dev": true, + "license": "MIT", "funding": { "type": "github", "url": "https://github.com/sponsors/wooorm" @@ -8830,6 +8888,8 @@ "version": "2.0.3", "resolved": "https://registry.npmjs.org/comma-separated-tokens/-/comma-separated-tokens-2.0.3.tgz", "integrity": "sha512-Fu4hJdvzeylCfQPp9SGWidpzrMs7tTrlu6Vb8XGaRGck8QSNZJJp538Wrb60Lax4fPwR64ViY468OIUTbRlGZg==", + "dev": true, + "license": "MIT", "funding": { "type": "github", "url": "https://github.com/sponsors/wooorm" @@ -9619,6 +9679,8 @@ "version": "1.1.0", "resolved": "https://registry.npmjs.org/devlop/-/devlop-1.1.0.tgz", "integrity": "sha512-RWmIqhcFf1lRYBvNmr7qTNuyCt/7/ns2jbpp1+PalgE/rDQcBT0fioSMUpJ93irlUhC5hrg4cYqe6U+0ImW0rA==", + "dev": true, + "license": "MIT", "dependencies": { "dequal": "^2.0.0" }, @@ -9873,6 +9935,13 @@ "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==" }, + "node_modules/emoji-regex-xs": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/emoji-regex-xs/-/emoji-regex-xs-1.0.0.tgz", + "integrity": "sha512-LRlerrMYoIDrT6jgpeZ2YYl/L8EulRTt5hQcYjy5AInh7HWXKimpqx68aknBFpGL2+/IcogTcaydJEgaTmOpDg==", + "dev": true, + "license": "MIT" + }, "node_modules/encodeurl": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/encodeurl/-/encodeurl-1.0.2.tgz", @@ -11889,9 +11958,11 @@ } }, "node_modules/hast-util-to-html": { - "version": "9.0.2", - "resolved": "https://registry.npmjs.org/hast-util-to-html/-/hast-util-to-html-9.0.2.tgz", - "integrity": "sha512-RP5wNpj5nm1Z8cloDv4Sl4RS8jH5HYa0v93YB6Wb4poEzgMo/dAAL0KcT4974dCjcNG5pkLqTImeFHHCwwfY3g==", + "version": "9.0.4", + "resolved": "https://registry.npmjs.org/hast-util-to-html/-/hast-util-to-html-9.0.4.tgz", + "integrity": "sha512-wxQzXtdbhiwGAUKrnQJXlOPmHnEehzphwkK7aluUPQ+lEc1xefC8pblMgpp2w5ldBTEfveRIrADcrhGIWrlTDA==", + "dev": true, + "license": "MIT", "dependencies": { "@types/hast": "^3.0.0", "@types/unist": "^3.0.0", @@ -11914,6 +11985,8 @@ "version": "3.0.0", "resolved": "https://registry.npmjs.org/hast-util-whitespace/-/hast-util-whitespace-3.0.0.tgz", "integrity": "sha512-88JUN06ipLwsnv+dVn+OIYOvAuvBMy/Qoi6O7mQHxdPXpjy+Cd6xRkWwux7DKO+4sYILtLBRIKgsdpS2gQc7qw==", + "dev": true, + "license": "MIT", "dependencies": { "@types/hast": "^3.0.0" }, @@ -12010,6 +12083,8 @@ "version": "3.0.0", "resolved": "https://registry.npmjs.org/html-void-elements/-/html-void-elements-3.0.0.tgz", "integrity": "sha512-bEqo66MRXsUGxWHV5IP0PUiAWwoEjba4VCzg0LjFJBpchPaTfyfCKTG6bc5F8ucKec3q5y6qOdGyYTSBEvhCrg==", + "dev": true, + "license": "MIT", "funding": { "type": "github", "url": "https://github.com/sponsors/wooorm" @@ -14779,6 +14854,7 @@ "version": "5.0.0", "resolved": "https://registry.npmjs.org/linkify-it/-/linkify-it-5.0.0.tgz", "integrity": "sha512-5aHCbzQRADcdP+ATqnDuhhJ/MRIqDkZX5pyjFHRRysS8vZ5AbqGEoFIb6pYHPZ+L/OC2Lc+xT8uHVVR5CAK/wQ==", + "dev": true, "dependencies": { "uc.micro": "^2.0.0" } @@ -15409,7 +15485,8 @@ "node_modules/lunr": { "version": "2.3.9", "resolved": "https://registry.npmjs.org/lunr/-/lunr-2.3.9.tgz", - "integrity": "sha512-zTU3DaZaF3Rt9rhN3uBMGQD3dD2/vFQqnvZCDv4dl5iOzq2IZQqTxu90r4E5J+nP70J3ilqVCrbho2eWaeW8Ow==" + "integrity": "sha512-zTU3DaZaF3Rt9rhN3uBMGQD3dD2/vFQqnvZCDv4dl5iOzq2IZQqTxu90r4E5J+nP70J3ilqVCrbho2eWaeW8Ow==", + "dev": true }, "node_modules/lz-string": { "version": "1.5.0", @@ -15482,6 +15559,7 @@ "version": "14.1.0", "resolved": "https://registry.npmjs.org/markdown-it/-/markdown-it-14.1.0.tgz", "integrity": "sha512-a54IwgWPaeBCAAsv13YgmALOF1elABB08FxO9i+r4VFk5Vl4pKokRPeX8u5TCgSsPi6ec1otfLjdOpVcgbpshg==", + "dev": true, "dependencies": { "argparse": "^2.0.1", "entities": "^4.4.0", @@ -15497,7 +15575,8 @@ "node_modules/markdown-it/node_modules/argparse": { "version": "2.0.1", "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", - "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==" + "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==", + "dev": true }, "node_modules/markdown-link": { "version": "0.1.1", @@ -15551,6 +15630,8 @@ "version": "13.2.0", "resolved": "https://registry.npmjs.org/mdast-util-to-hast/-/mdast-util-to-hast-13.2.0.tgz", "integrity": "sha512-QGYKEuUsYT9ykKBCMOEDLsU5JRObWQusAolFMeko/tYPufNkRffBAQjIE+99jbA87xv6FgmjLtwjh9wBWajwAA==", + "dev": true, + "license": "MIT", "dependencies": { "@types/hast": "^3.0.0", "@types/mdast": "^4.0.0", @@ -15570,7 +15651,8 @@ "node_modules/mdurl": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/mdurl/-/mdurl-2.0.0.tgz", - "integrity": "sha512-Lf+9+2r+Tdp5wXDXC4PcIBjTDtq4UKjCPMQhKIuzpJNW0b96kVqSwW0bT7FhRSfmAiFYgP+SCRvdrDozfh0U5w==" + "integrity": "sha512-Lf+9+2r+Tdp5wXDXC4PcIBjTDtq4UKjCPMQhKIuzpJNW0b96kVqSwW0bT7FhRSfmAiFYgP+SCRvdrDozfh0U5w==", + "dev": true }, "node_modules/memoize-one": { "version": "5.2.1", @@ -15598,9 +15680,10 @@ } }, "node_modules/micromark-util-character": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/micromark-util-character/-/micromark-util-character-2.1.0.tgz", - "integrity": "sha512-KvOVV+X1yLBfs9dCBSopq/+G1PcgT3lAK07mC4BzXi5E7ahzMAF8oIupDDJ6mievI6F+lAATkbQQlQixJfT3aQ==", + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/micromark-util-character/-/micromark-util-character-2.1.1.tgz", + "integrity": "sha512-wv8tdUTJ3thSFFFJKtpYKOYiGP2+v96Hvk4Tu8KpCAsTMs6yi+nVmGh1syvSCsaxz45J6Jbw+9DD6g97+NV67Q==", + "dev": true, "funding": [ { "type": "GitHub Sponsors", @@ -15611,15 +15694,17 @@ "url": "https://opencollective.com/unified" } ], + "license": "MIT", "dependencies": { "micromark-util-symbol": "^2.0.0", "micromark-util-types": "^2.0.0" } }, "node_modules/micromark-util-encode": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/micromark-util-encode/-/micromark-util-encode-2.0.0.tgz", - "integrity": "sha512-pS+ROfCXAGLWCOc8egcBvT0kf27GoWMqtdarNfDcjb6YLuV5cM3ioG45Ys2qOVqeqSbjaKg72vU+Wby3eddPsA==", + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/micromark-util-encode/-/micromark-util-encode-2.0.1.tgz", + "integrity": "sha512-c3cVx2y4KqUnwopcO9b/SCdo2O67LwJJ/UyqGfbigahfegL9myoEFoDYZgkT7f36T0bLrM9hZTAaAyH+PCAXjw==", + "dev": true, "funding": [ { "type": "GitHub Sponsors", @@ -15629,12 +15714,14 @@ "type": "OpenCollective", "url": "https://opencollective.com/unified" } - ] + ], + "license": "MIT" }, "node_modules/micromark-util-sanitize-uri": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/micromark-util-sanitize-uri/-/micromark-util-sanitize-uri-2.0.0.tgz", - "integrity": "sha512-WhYv5UEcZrbAtlsnPuChHUAsu/iBPOVaEVsntLBIdpibO0ddy8OzavZz3iL2xVvBZOpolujSliP65Kq0/7KIYw==", + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/micromark-util-sanitize-uri/-/micromark-util-sanitize-uri-2.0.1.tgz", + "integrity": "sha512-9N9IomZ/YuGGZZmQec1MbgxtlgougxTodVwDzzEouPKo3qFWvymFHWcnDi2vzV1ff6kas9ucW+o3yzJK9YB1AQ==", + "dev": true, "funding": [ { "type": "GitHub Sponsors", @@ -15645,6 +15732,7 @@ "url": "https://opencollective.com/unified" } ], + "license": "MIT", "dependencies": { "micromark-util-character": "^2.0.0", "micromark-util-encode": "^2.0.0", @@ -15652,9 +15740,10 @@ } }, "node_modules/micromark-util-symbol": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/micromark-util-symbol/-/micromark-util-symbol-2.0.0.tgz", - "integrity": "sha512-8JZt9ElZ5kyTnO94muPxIGS8oyElRJaiJO8EzV6ZSyGQ1Is8xwl4Q45qU5UOg+bGH4AikWziz0iN4sFLWs8PGw==", + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/micromark-util-symbol/-/micromark-util-symbol-2.0.1.tgz", + "integrity": "sha512-vs5t8Apaud9N28kgCrRUdEed4UJ+wWNvicHLPxCa9ENlYuAY31M0ETy5y1vA33YoNPDFTghEbnh6efaE8h4x0Q==", + "dev": true, "funding": [ { "type": "GitHub Sponsors", @@ -15664,12 +15753,14 @@ "type": "OpenCollective", "url": "https://opencollective.com/unified" } - ] + ], + "license": "MIT" }, "node_modules/micromark-util-types": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/micromark-util-types/-/micromark-util-types-2.0.0.tgz", - "integrity": "sha512-oNh6S2WMHWRZrmutsRmDDfkzKtxF+bc2VxLC9dvtrDIRFln627VsFP6fLMgTryGDljgLPjkrzQSDcPrjPyDJ5w==", + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/micromark-util-types/-/micromark-util-types-2.0.1.tgz", + "integrity": "sha512-534m2WhVTddrcKVepwmVEVnUAmtrx9bfIjNoQHRqfnvdaHQiFytEhJoTgpWJvDEXCO5gLTQh3wYC1PgOJA4NSQ==", + "dev": true, "funding": [ { "type": "GitHub Sponsors", @@ -15679,7 +15770,8 @@ "type": "OpenCollective", "url": "https://opencollective.com/unified" } - ] + ], + "license": "MIT" }, "node_modules/micromatch": { "version": "4.0.8", @@ -16267,15 +16359,16 @@ "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/oniguruma-to-js": { - "version": "0.4.3", - "resolved": "https://registry.npmjs.org/oniguruma-to-js/-/oniguruma-to-js-0.4.3.tgz", - "integrity": "sha512-X0jWUcAlxORhOqqBREgPMgnshB7ZGYszBNspP+tS9hPD3l13CdaXcHbgImoHUHlrvGx/7AvFEkTRhAGYh+jzjQ==", + "node_modules/oniguruma-to-es": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/oniguruma-to-es/-/oniguruma-to-es-2.0.0.tgz", + "integrity": "sha512-pE7+9jQgomy10aK6BJKRNHj1Nth0YLOzb3iRuhlz4gRzNSBSd7hga6U8BE6o0SoSuSkqv+PPtt511Msd1Hkl0w==", + "dev": true, + "license": "MIT", "dependencies": { - "regex": "^4.3.2" - }, - "funding": { - "url": "https://github.com/sponsors/antfu" + "emoji-regex-xs": "^1.0.0", + "regex": "^5.1.1", + "regex-recursion": "^5.1.1" } }, "node_modules/open": { @@ -17013,6 +17106,8 @@ "version": "6.5.0", "resolved": "https://registry.npmjs.org/property-information/-/property-information-6.5.0.tgz", "integrity": "sha512-PgTgs/BlvHxOu8QuEN7wi5A0OmXaBcHpmCSTehcs6Uuu9IkDIEo13Hy7n898RHfrQ49vKCoGeWZSaAK01nwVig==", + "dev": true, + "license": "MIT", "funding": { "type": "github", "url": "https://github.com/sponsors/wooorm" @@ -17065,6 +17160,7 @@ "version": "2.3.1", "resolved": "https://registry.npmjs.org/punycode.js/-/punycode.js-2.3.1.tgz", "integrity": "sha512-uxFIHU0YlHYhDQtV4R9J6a52SLx28BCjT+4ieh7IGbgwVJWO+km431c4yRlREUAsAmt/uMjQUyQHNEPf0M39CA==", + "dev": true, "engines": { "node": ">=6" } @@ -18392,9 +18488,32 @@ } }, "node_modules/regex": { - "version": "4.3.2", - "resolved": "https://registry.npmjs.org/regex/-/regex-4.3.2.tgz", - "integrity": "sha512-kK/AA3A9K6q2js89+VMymcboLOlF5lZRCYJv3gzszXFHBr6kO6qLGzbm+UIugBEV8SMMKCTR59txoY6ctRHYVw==" + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/regex/-/regex-5.1.1.tgz", + "integrity": "sha512-dN5I359AVGPnwzJm2jN1k0W9LPZ+ePvoOeVMMfqIMFz53sSwXkxaJoxr50ptnsC771lK95BnTrVSZxq0b9yCGw==", + "dev": true, + "license": "MIT", + "dependencies": { + "regex-utilities": "^2.3.0" + } + }, + "node_modules/regex-recursion": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/regex-recursion/-/regex-recursion-5.1.1.tgz", + "integrity": "sha512-ae7SBCbzVNrIjgSbh7wMznPcQel1DNlDtzensnFxpiNpXt1U2ju/bHugH422r+4LAVS1FpW1YCwilmnNsjum9w==", + "dev": true, + "license": "MIT", + "dependencies": { + "regex": "^5.1.1", + "regex-utilities": "^2.3.0" + } + }, + "node_modules/regex-utilities": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/regex-utilities/-/regex-utilities-2.3.0.tgz", + "integrity": "sha512-8VhliFJAWRaUiVvREIiW2NXXTmHs4vMNnSzuJVhscgmGav3g9VDxLrQndI3dZZVVdp0ZO/5v0xmX516/7M9cng==", + "dev": true, + "license": "MIT" }, "node_modules/regexp.prototype.flags": { "version": "1.5.2", @@ -19161,15 +19280,19 @@ } }, "node_modules/shiki": { - "version": "1.17.6", - "resolved": "https://registry.npmjs.org/shiki/-/shiki-1.17.6.tgz", - "integrity": "sha512-RejGugKpDM75vh6YtF9R771acxHRDikC/01kxsUGW+Pnaz3pTY+c8aZB5CnD7p0vuFPs1HaoAIU/4E+NCfS+mQ==", - "dependencies": { - "@shikijs/core": "1.17.6", - "@shikijs/engine-javascript": "1.17.6", - "@shikijs/engine-oniguruma": "1.17.6", - "@shikijs/types": "1.17.6", - "@shikijs/vscode-textmate": "^9.2.2", + "version": "1.27.2", + "resolved": "https://registry.npmjs.org/shiki/-/shiki-1.27.2.tgz", + "integrity": "sha512-QtA1C41oEVixKog+V8I3ia7jjGls7oCZ8Yul8vdHrVBga5uPoyTtMvFF4lMMXIyAZo5A5QbXq91bot2vA6Q+eQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@shikijs/core": "1.27.2", + "@shikijs/engine-javascript": "1.27.2", + "@shikijs/engine-oniguruma": "1.27.2", + "@shikijs/langs": "1.27.2", + "@shikijs/themes": "1.27.2", + "@shikijs/types": "1.27.2", + "@shikijs/vscode-textmate": "^10.0.1", "@types/hast": "^3.0.4" } }, @@ -19335,6 +19458,8 @@ "version": "2.0.2", "resolved": "https://registry.npmjs.org/space-separated-tokens/-/space-separated-tokens-2.0.2.tgz", "integrity": "sha512-PEGlAwrG8yXGXRjW32fGbg66JAlOAwbObuqVoJpv/mRgoWDQfgH1wDPvtzWyUSNAXBGSk8h755YDbbcEy3SH2Q==", + "dev": true, + "license": "MIT", "funding": { "type": "github", "url": "https://github.com/sponsors/wooorm" @@ -19567,6 +19692,8 @@ "version": "4.0.4", "resolved": "https://registry.npmjs.org/stringify-entities/-/stringify-entities-4.0.4.tgz", "integrity": "sha512-IwfBptatlO+QCJUo19AqvrPNqlVMpW9YEL2LIVY+Rpv2qsjCGxaDLNRgeGsQWJhfItebuJhsGSLjaBbNSQ+ieg==", + "dev": true, + "license": "MIT", "dependencies": { "character-entities-html4": "^2.0.0", "character-entities-legacy": "^3.0.0" @@ -20018,6 +20145,8 @@ "version": "3.0.1", "resolved": "https://registry.npmjs.org/trim-lines/-/trim-lines-3.0.1.tgz", "integrity": "sha512-kRj8B+YHZCc9kQYdWfJB2/oUl9rA99qbowYYBtr4ui4mZyAQ2JpvVBd/6U2YloATfqBhBTSMhTpgBHtU0Mf3Rg==", + "dev": true, + "license": "MIT", "funding": { "type": "github", "url": "https://github.com/sponsors/wooorm" @@ -20636,15 +20765,17 @@ } }, "node_modules/typedoc": { - "version": "0.26.10", - "resolved": "https://registry.npmjs.org/typedoc/-/typedoc-0.26.10.tgz", - "integrity": "sha512-xLmVKJ8S21t+JeuQLNueebEuTVphx6IrP06CdV7+0WVflUSW3SPmR+h1fnWVdAR/FQePEgsSWCUHXqKKjzuUAw==", + "version": "0.27.6", + "resolved": "https://registry.npmjs.org/typedoc/-/typedoc-0.27.6.tgz", + "integrity": "sha512-oBFRoh2Px6jFx366db0lLlihcalq/JzyCVp7Vaq1yphL/tbgx2e+bkpkCgJPunaPvPwoTOXSwasfklWHm7GfAw==", + "dev": true, + "license": "Apache-2.0", "dependencies": { + "@gerrit0/mini-shiki": "^1.24.0", "lunr": "^2.3.9", "markdown-it": "^14.1.0", "minimatch": "^9.0.5", - "shiki": "^1.16.2", - "yaml": "^2.5.1" + "yaml": "^2.6.1" }, "bin": { "typedoc": "bin/typedoc" @@ -20653,24 +20784,27 @@ "node": ">= 18" }, "peerDependencies": { - "typescript": "4.6.x || 4.7.x || 4.8.x || 4.9.x || 5.0.x || 5.1.x || 5.2.x || 5.3.x || 5.4.x || 5.5.x || 5.6.x" + "typescript": "5.0.x || 5.1.x || 5.2.x || 5.3.x || 5.4.x || 5.5.x || 5.6.x || 5.7.x" } }, "node_modules/typedoc-plugin-markdown": { - "version": "4.2.10", - "resolved": "https://registry.npmjs.org/typedoc-plugin-markdown/-/typedoc-plugin-markdown-4.2.10.tgz", - "integrity": "sha512-PLX3pc1/7z13UJm4TDE9vo9jWGcClFUErXXtd5LdnoLjV6mynPpqZLU992DwMGFSRqJFZeKbVyqlNNeNHnk2tQ==", + "version": "4.4.1", + "resolved": "https://registry.npmjs.org/typedoc-plugin-markdown/-/typedoc-plugin-markdown-4.4.1.tgz", + "integrity": "sha512-fx23nSCvewI9IR8lzIYtzDphETcgTDuxKcmHKGD4lo36oexC+B1k4NaCOY58Snqb4OlE8OXDAGVcQXYYuLRCNw==", + "dev": true, + "license": "MIT", "engines": { "node": ">= 18" }, "peerDependencies": { - "typedoc": "0.26.x" + "typedoc": "0.27.x" } }, "node_modules/typedoc/node_modules/brace-expansion": { "version": "2.0.1", "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==", + "dev": true, "dependencies": { "balanced-match": "^1.0.0" } @@ -20679,6 +20813,7 @@ "version": "9.0.5", "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.5.tgz", "integrity": "sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow==", + "dev": true, "dependencies": { "brace-expansion": "^2.0.1" }, @@ -20690,9 +20825,11 @@ } }, "node_modules/typedoc/node_modules/yaml": { - "version": "2.5.1", - "resolved": "https://registry.npmjs.org/yaml/-/yaml-2.5.1.tgz", - "integrity": "sha512-bLQOjaX/ADgQ20isPJRvF0iRUHIxVhYvr53Of7wGcWlO2jvtUlH5m87DsmulFVxRpNLOnI4tB6p/oh8D7kpn9Q==", + "version": "2.7.0", + "resolved": "https://registry.npmjs.org/yaml/-/yaml-2.7.0.tgz", + "integrity": "sha512-+hSoy/QHluxmC9kCIJyL/uyFmLmc+e5CFR5Wa+bpIhIj85LVb9ZH2nVnqrHoSvKogwODv0ClqZkmiSSaIH5LTA==", + "dev": true, + "license": "ISC", "bin": { "yaml": "bin.mjs" }, @@ -20715,7 +20852,8 @@ "node_modules/uc.micro": { "version": "2.1.0", "resolved": "https://registry.npmjs.org/uc.micro/-/uc.micro-2.1.0.tgz", - "integrity": "sha512-ARDJmphmdvUk6Glw7y9DQ2bFkKBHwQHLi2lsaH6PPmz/Ka9sFOBsBluozhDltWmnv9u/cF6Rt87znRTPV+yp/A==" + "integrity": "sha512-ARDJmphmdvUk6Glw7y9DQ2bFkKBHwQHLi2lsaH6PPmz/Ka9sFOBsBluozhDltWmnv9u/cF6Rt87znRTPV+yp/A==", + "dev": true }, "node_modules/unbox-primitive": { "version": "1.0.2", @@ -20830,6 +20968,8 @@ "version": "6.0.0", "resolved": "https://registry.npmjs.org/unist-util-is/-/unist-util-is-6.0.0.tgz", "integrity": "sha512-2qCTHimwdxLfz+YzdGfkqNlH0tLi9xjTnHddPmJwtIG9MGsdbutfTc4P+haPD7l7Cjxf/WZj+we5qfVPvvxfYw==", + "dev": true, + "license": "MIT", "dependencies": { "@types/unist": "^3.0.0" }, @@ -20842,6 +20982,8 @@ "version": "5.0.0", "resolved": "https://registry.npmjs.org/unist-util-position/-/unist-util-position-5.0.0.tgz", "integrity": "sha512-fucsC7HjXvkB5R3kTCO7kUjRdrS0BJt3M/FPxmHMBOm8JQi2BsHAHFsy27E0EolP8rp0NzXsJ+jNPyDWvOJZPA==", + "dev": true, + "license": "MIT", "dependencies": { "@types/unist": "^3.0.0" }, @@ -20854,6 +20996,8 @@ "version": "4.0.0", "resolved": "https://registry.npmjs.org/unist-util-stringify-position/-/unist-util-stringify-position-4.0.0.tgz", "integrity": "sha512-0ASV06AAoKCDkS2+xw5RXJywruurpbC4JZSm7nr7MOt1ojAzvyyaO+UxZf18j8FCF6kmzCZKcAgN/yu2gm2XgQ==", + "dev": true, + "license": "MIT", "dependencies": { "@types/unist": "^3.0.0" }, @@ -20866,6 +21010,8 @@ "version": "5.0.0", "resolved": "https://registry.npmjs.org/unist-util-visit/-/unist-util-visit-5.0.0.tgz", "integrity": "sha512-MR04uvD+07cwl/yhVuVWAtw+3GOR/knlL55Nd/wAdblk27GCVt3lqpTivy/tkJcZoNPzTwS1Y+KMojlLDhoTzg==", + "dev": true, + "license": "MIT", "dependencies": { "@types/unist": "^3.0.0", "unist-util-is": "^6.0.0", @@ -20880,6 +21026,8 @@ "version": "6.0.1", "resolved": "https://registry.npmjs.org/unist-util-visit-parents/-/unist-util-visit-parents-6.0.1.tgz", "integrity": "sha512-L/PqWzfTP9lzzEa6CKs0k2nARxTdZduw3zyh8d2NVBnsyvHjSX4TWse388YrrQKbvI8w20fGjGlhgT96WwKykw==", + "dev": true, + "license": "MIT", "dependencies": { "@types/unist": "^3.0.0", "unist-util-is": "^6.0.0" @@ -21088,6 +21236,8 @@ "version": "6.0.3", "resolved": "https://registry.npmjs.org/vfile/-/vfile-6.0.3.tgz", "integrity": "sha512-KzIbH/9tXat2u30jf+smMwFCsno4wHVdNmzFyL+T/L3UGqqk6JKfVqOFOZEpZSHADH1k40ab6NUIXZq422ov3Q==", + "dev": true, + "license": "MIT", "dependencies": { "@types/unist": "^3.0.0", "vfile-message": "^4.0.0" @@ -21101,6 +21251,8 @@ "version": "4.0.2", "resolved": "https://registry.npmjs.org/vfile-message/-/vfile-message-4.0.2.tgz", "integrity": "sha512-jRDZ1IMLttGj41KcZvlrYAaI3CfqpLpfpf+Mfig13viT6NKvRzWZ+lXz0Y5D60w6uJIBAOGq9mSHf0gktF0duw==", + "dev": true, + "license": "MIT", "dependencies": { "@types/unist": "^3.0.0", "unist-util-stringify-position": "^4.0.0" @@ -22039,6 +22191,8 @@ "version": "2.0.4", "resolved": "https://registry.npmjs.org/zwitch/-/zwitch-2.0.4.tgz", "integrity": "sha512-bXE4cR/kVZhKZX/RjPEflHaKVhUVl85noU3v6b8apfQEc1x4A+zBxjZ4lN8LqGd6WZ3dl98pY4o717VFmoPp+A==", + "dev": true, + "license": "MIT", "funding": { "type": "github", "url": "https://github.com/sponsors/wooorm" diff --git a/package.json b/package.json index 6d8e9bce21..5ce42d2c73 100644 --- a/package.json +++ b/package.json @@ -63,8 +63,6 @@ "redux": "^5.0.1", "redux-thunk": "^3.1.0", "sanitize-html": "^2.13.0", - "typedoc": "^0.26.10", - "typedoc-plugin-markdown": "^4.2.10", "typescript": "^5.6.3", "vite": "^5.4.8", "vite-plugin-environment": "^1.1.3", @@ -92,7 +90,9 @@ "update:toc": "node scripts/githooks/update-toc.js", "lint-staged": "lint-staged --concurrent false", "setup": "tsx setup.ts", - "check-localstorage": "node scripts/githooks/check-localstorage-usage.js" + "check-localstorage": "node scripts/githooks/check-localstorage-usage.js", + "postgenerate-docs": "find docs/docs/auto-docs -name 'README.md' -delete", + "generate-docs": "typedoc && npm run postgenerate-docs && node fix-readme-links.js" }, "eslintConfig": { "extends": [ @@ -154,7 +154,10 @@ "lint-staged": "^15.3.0", "postcss-modules": "^6.0.1", "sass": "^1.80.7", + "shiki": "^1.26.1", "tsx": "^4.19.1", + "typedoc": "^0.27.6", + "typedoc-plugin-markdown": "^4.4.1", "vite-plugin-svgr": "^4.2.0", "vitest": "^2.1.5", "whatwg-fetch": "^3.6.20" diff --git a/talawa-admin-docs/.nojekyll b/talawa-admin-docs/.nojekyll deleted file mode 100644 index e2ac6616ad..0000000000 --- a/talawa-admin-docs/.nojekyll +++ /dev/null @@ -1 +0,0 @@ -TypeDoc added this file to prevent GitHub Pages from using Jekyll. You can turn off this behavior by setting the `githubPages` option to false. \ No newline at end of file diff --git a/talawa-admin-docs/Dockerfile b/talawa-admin-docs/Dockerfile deleted file mode 100644 index e69de29bb2..0000000000 diff --git a/talawa-admin-docs/README.md b/talawa-admin-docs/README.md deleted file mode 100644 index 82dc89754c..0000000000 --- a/talawa-admin-docs/README.md +++ /dev/null @@ -1,52 +0,0 @@ -talawa-admin / [Modules](modules.md) - -# Talawa Admin -💬 Join the community on Slack. The link can be found in the `Talawa` [README.md](https://github.com/PalisadoesFoundation/talawa) file. - -![talawa-logo-lite-200x200](https://github.com/PalisadoesFoundation/talawa-admin/assets/16875803/26291ec5-d3c1-4135-8bc7-80885dff613d) - -[![License: GPL v3](https://img.shields.io/badge/License-GPLv3-blue.svg)](https://www.gnu.org/licenses/gpl-3.0) -[![GitHub stars](https://img.shields.io/github/stars/PalisadoesFoundation/talawa-admin.svg?style=social&label=Star&maxAge=2592000)](https://github.com/PalisadoesFoundation/talawa-admin) -[![GitHub forks](https://img.shields.io/github/forks/PalisadoesFoundation/talawa-admin.svg?style=social&label=Fork&maxAge=2592000)](https://github.com/PalisadoesFoundation/talawa-admin) -[![codecov](https://codecov.io/gh/PalisadoesFoundation/talawa-admin/branch/develop/graph/badge.svg?token=II0R0RREES)](https://codecov.io/gh/PalisadoesFoundation/talawa-admin) - -Talawa is a modular open source project to manage group activities of both non-profit organizations and businesses. - -Core features include: - -1. Membership management -2. Groups management -3. Event registrations -4. Recurring meetings -5. Facilities registrations - -`talawa` is based on the original `quito` code created by the [Palisadoes Foundation][pfd] as part of its annual Calico Challenge program. Calico provides paid summer internships for Jamaican university students to work on selected open source projects. They are mentored by software professionals and receive stipends based on the completion of predefined milestones. Calico was started in 2015. Visit [The Palisadoes Foundation's website](http://www.palisadoes.org/) for more details on its origin and activities. - -# Table of Contents - -\ + +## Plugin + +A Plugin is a feature in Talawa Mobile App that is controlled by the Admins of that organization. By having the control admins can decide the accessibility of that feature for the organization members. + +Programmatically the logic of this Plugin is stored in the mobile app but it's inaccessible to the users until the admin of the organization installs that plugin. + +You first have to be register the Plugins from the `Plugin store` in order to install them from the Talawa Admin. + +## High Level Overview of Plugin Architecture + +Let's discuss the role of the different apps to make the plugin architecture work. + +### Talawa Admin + +Admin Provides `Plugin Store` where has the following functionalities: + +- Ability to install or uninstall the plugins. +- Ability to Toggle list of installed and available plugins. +- Ability to Search the plugin using SearchBar (provided on the right) . + +#### Example + +![Plugin Store Sample Image](/img/docs/plugin/store.PNG) + +### Talawa API + +It is a nodeJS API that is used to interface with the database containing list of the plugins with their different attributes. + +A sample Plugin Model can have the below properties. + +```js +Plugin : { + pluginName: String, // plugin name + pluginCreatedBy: String, // name of the creator + pluginDesc : String, // description + pluginInstallStatus : Boolean, // TRUE if installed otherwise FALSE + installedOrgs : [ID] // a list containing ID of the organization who have installed the plugin +} +``` + +### Talawa + +Plugin in the mobile App are mainly focused for the features on the navbar.but other functionalities can also be implemented as plugins using the `TalawaPluginProvider` Flutter Widget. +![Talawa Mobile App ](/img/docs/plugin/talawa.PNG) + +## Plugin Store + +## Installing and Uninstalling Plugins + +The Following video showcases process of installing the plugin. We are uninstalling `Events` feature from the talawa app. + +:::note + +Admin portal and Talawa app must be of same organizations + +::: + + diff --git a/docs/docs/intro.md b/docs/docs/intro.md deleted file mode 100644 index 45e8604c8b..0000000000 --- a/docs/docs/intro.md +++ /dev/null @@ -1,47 +0,0 @@ ---- -sidebar_position: 1 ---- - -# Tutorial Intro - -Let's discover **Docusaurus in less than 5 minutes**. - -## Getting Started - -Get started by **creating a new site**. - -Or **try Docusaurus immediately** with **[docusaurus.new](https://docusaurus.new)**. - -### What you'll need - -- [Node.js](https://nodejs.org/en/download/) version 18.0 or above: - - When installing Node.js, you are recommended to check all checkboxes related to dependencies. - -## Generate a new site - -Generate a new Docusaurus site using the **classic template**. - -The classic template will automatically be added to your project after you run the command: - -```bash -npm init docusaurus@latest my-website classic -``` - -You can type this command into Command Prompt, Powershell, Terminal, or any other integrated terminal of your code editor. - -The command also installs all necessary dependencies you need to run Docusaurus. - -## Start your site - -Run the development server: - -```bash -cd my-website -npm run start -``` - -The `cd` command changes the directory you're working with. In order to work with your newly created Docusaurus site, you'll need to navigate the terminal there. - -The `npm run start` command builds your website locally and serves it through a development server, ready for you to view at http://localhost:3000/. - -Open `docs/intro.md` (this page) and edit some lines: the site **reloads automatically** and displays your changes. diff --git a/docs/docs/tutorial-basics/_category_.json b/docs/docs/tutorial-basics/_category_.json deleted file mode 100644 index 2e6db55b1e..0000000000 --- a/docs/docs/tutorial-basics/_category_.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "label": "Tutorial - Basics", - "position": 2, - "link": { - "type": "generated-index", - "description": "5 minutes to learn the most important Docusaurus concepts." - } -} diff --git a/docs/docs/tutorial-basics/congratulations.md b/docs/docs/tutorial-basics/congratulations.md deleted file mode 100644 index 04771a00b7..0000000000 --- a/docs/docs/tutorial-basics/congratulations.md +++ /dev/null @@ -1,23 +0,0 @@ ---- -sidebar_position: 6 ---- - -# Congratulations! - -You have just learned the **basics of Docusaurus** and made some changes to the **initial template**. - -Docusaurus has **much more to offer**! - -Have **5 more minutes**? Take a look at **[versioning](../tutorial-extras/manage-docs-versions.md)** and **[i18n](../tutorial-extras/translate-your-site.md)**. - -Anything **unclear** or **buggy** in this tutorial? [Please report it!](https://github.com/facebook/docusaurus/discussions/4610) - -## What's next? - -- Read the [official documentation](https://docusaurus.io/) -- Modify your site configuration with [`docusaurus.config.js`](https://docusaurus.io/docs/api/docusaurus-config) -- Add navbar and footer items with [`themeConfig`](https://docusaurus.io/docs/api/themes/configuration) -- Add a custom [Design and Layout](https://docusaurus.io/docs/styling-layout) -- Add a [search bar](https://docusaurus.io/docs/search) -- Find inspirations in the [Docusaurus showcase](https://docusaurus.io/showcase) -- Get involved in the [Docusaurus Community](https://docusaurus.io/community/support) diff --git a/docs/docs/tutorial-basics/create-a-blog-post.md b/docs/docs/tutorial-basics/create-a-blog-post.md deleted file mode 100644 index 550ae17ee1..0000000000 --- a/docs/docs/tutorial-basics/create-a-blog-post.md +++ /dev/null @@ -1,34 +0,0 @@ ---- -sidebar_position: 3 ---- - -# Create a Blog Post - -Docusaurus creates a **page for each blog post**, but also a **blog index page**, a **tag system**, an **RSS** feed... - -## Create your first Post - -Create a file at `blog/2021-02-28-greetings.md`: - -```md title="blog/2021-02-28-greetings.md" ---- -slug: greetings -title: Greetings! -authors: - - name: Joel Marcey - title: Co-creator of Docusaurus 1 - url: https://github.com/JoelMarcey - image_url: https://github.com/JoelMarcey.png - - name: Sébastien Lorber - title: Docusaurus maintainer - url: https://sebastienlorber.com - image_url: https://github.com/slorber.png -tags: [greetings] ---- - -Congratulations, you have made your first post! - -Feel free to play around and edit this post as much as you like. -``` - -A new blog post is now available at [http://localhost:3000/blog/greetings](http://localhost:3000/blog/greetings). diff --git a/docs/docs/tutorial-basics/create-a-document.md b/docs/docs/tutorial-basics/create-a-document.md deleted file mode 100644 index c22fe29446..0000000000 --- a/docs/docs/tutorial-basics/create-a-document.md +++ /dev/null @@ -1,57 +0,0 @@ ---- -sidebar_position: 2 ---- - -# Create a Document - -Documents are **groups of pages** connected through: - -- a **sidebar** -- **previous/next navigation** -- **versioning** - -## Create your first Doc - -Create a Markdown file at `docs/hello.md`: - -```md title="docs/hello.md" -# Hello - -This is my **first Docusaurus document**! -``` - -A new document is now available at [http://localhost:3000/docs/hello](http://localhost:3000/docs/hello). - -## Configure the Sidebar - -Docusaurus automatically **creates a sidebar** from the `docs` folder. - -Add metadata to customize the sidebar label and position: - -```md title="docs/hello.md" {1-4} ---- -sidebar_label: 'Hi!' -sidebar_position: 3 ---- - -# Hello - -This is my **first Docusaurus document**! -``` - -It is also possible to create your sidebar explicitly in `sidebars.js`: - -```js title="sidebars.js" -export default { - tutorialSidebar: [ - 'intro', - // highlight-next-line - 'hello', - { - type: 'category', - label: 'Tutorial', - items: ['tutorial-basics/create-a-document'], - }, - ], -}; -``` diff --git a/docs/docs/tutorial-basics/create-a-page.md b/docs/docs/tutorial-basics/create-a-page.md deleted file mode 100644 index 20e2ac3005..0000000000 --- a/docs/docs/tutorial-basics/create-a-page.md +++ /dev/null @@ -1,43 +0,0 @@ ---- -sidebar_position: 1 ---- - -# Create a Page - -Add **Markdown or React** files to `src/pages` to create a **standalone page**: - -- `src/pages/index.js` → `localhost:3000/` -- `src/pages/foo.md` → `localhost:3000/foo` -- `src/pages/foo/bar.js` → `localhost:3000/foo/bar` - -## Create your first React Page - -Create a file at `src/pages/my-react-page.js`: - -```jsx title="src/pages/my-react-page.js" -import React from 'react'; -import Layout from '@theme/Layout'; - -export default function MyReactPage() { - return ( - -

My React page

-

This is a React page

-
- ); -} -``` - -A new page is now available at [http://localhost:3000/my-react-page](http://localhost:3000/my-react-page). - -## Create your first Markdown Page - -Create a file at `src/pages/my-markdown-page.md`: - -```mdx title="src/pages/my-markdown-page.md" -# My Markdown page - -This is a Markdown page -``` - -A new page is now available at [http://localhost:3000/my-markdown-page](http://localhost:3000/my-markdown-page). diff --git a/docs/docs/tutorial-basics/deploy-your-site.md b/docs/docs/tutorial-basics/deploy-your-site.md deleted file mode 100644 index 1c50ee063e..0000000000 --- a/docs/docs/tutorial-basics/deploy-your-site.md +++ /dev/null @@ -1,31 +0,0 @@ ---- -sidebar_position: 5 ---- - -# Deploy your site - -Docusaurus is a **static-site-generator** (also called **[Jamstack](https://jamstack.org/)**). - -It builds your site as simple **static HTML, JavaScript and CSS files**. - -## Build your site - -Build your site **for production**: - -```bash -npm run build -``` - -The static files are generated in the `build` folder. - -## Deploy your site - -Test your production build locally: - -```bash -npm run serve -``` - -The `build` folder is now served at [http://localhost:3000/](http://localhost:3000/). - -You can now deploy the `build` folder **almost anywhere** easily, **for free** or very small cost (read the **[Deployment Guide](https://docusaurus.io/docs/deployment)**). diff --git a/docs/docs/tutorial-basics/markdown-features.mdx b/docs/docs/tutorial-basics/markdown-features.mdx deleted file mode 100644 index 35e00825ed..0000000000 --- a/docs/docs/tutorial-basics/markdown-features.mdx +++ /dev/null @@ -1,152 +0,0 @@ ---- -sidebar_position: 4 ---- - -# Markdown Features - -Docusaurus supports **[Markdown](https://daringfireball.net/projects/markdown/syntax)** and a few **additional features**. - -## Front Matter - -Markdown documents have metadata at the top called [Front Matter](https://jekyllrb.com/docs/front-matter/): - -```text title="my-doc.md" -// highlight-start ---- -id: my-doc-id -title: My document title -description: My document description -slug: /my-custom-url ---- -// highlight-end - -## Markdown heading - -Markdown text with [links](./hello.md) -``` - -## Links - -Regular Markdown links are supported, using url paths or relative file paths. - -```md -Let's see how to [Create a page](/create-a-page). -``` - -```md -Let's see how to [Create a page](./create-a-page.md). -``` - -**Result:** Let's see how to [Create a page](./create-a-page.md). - -## Images - -Regular Markdown images are supported. - -You can use absolute paths to reference images in the static directory (`static/img/docusaurus.png`): - -```md -![Docusaurus logo](/img/docusaurus.png) -``` - -![Docusaurus logo](/img/docusaurus.png) - -You can reference images relative to the current file as well. This is particularly useful to colocate images close to the Markdown files using them: - -```md -![Docusaurus logo](./img/docusaurus.png) -``` - -## Code Blocks - -Markdown code blocks are supported with Syntax highlighting. - -````md -```jsx title="src/components/HelloDocusaurus.js" -function HelloDocusaurus() { - return

Hello, Docusaurus!

; -} -``` -```` - -```jsx title="src/components/HelloDocusaurus.js" -function HelloDocusaurus() { - return

Hello, Docusaurus!

; -} -``` - -## Admonitions - -Docusaurus has a special syntax to create admonitions and callouts: - -```md -:::tip My tip - -Use this awesome feature option - -::: - -:::danger Take care - -This action is dangerous - -::: -``` - -:::tip My tip - -Use this awesome feature option - -::: - -:::danger Take care - -This action is dangerous - -::: - -## MDX and React Components - -[MDX](https://mdxjs.com/) can make your documentation more **interactive** and allows using any **React components inside Markdown**: - -```jsx -export const Highlight = ({children, color}) => ( - { - alert(`You clicked the color ${color} with label ${children}`) - }}> - {children} - -); - -This is Docusaurus green ! - -This is Facebook blue ! -``` - -export const Highlight = ({children, color}) => ( - { - alert(`You clicked the color ${color} with label ${children}`); - }}> - {children} - -); - -This is Docusaurus green ! - -This is Facebook blue ! diff --git a/docs/docs/tutorial-extras/_category_.json b/docs/docs/tutorial-extras/_category_.json deleted file mode 100644 index a8ffcc1930..0000000000 --- a/docs/docs/tutorial-extras/_category_.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "label": "Tutorial - Extras", - "position": 3, - "link": { - "type": "generated-index" - } -} diff --git a/docs/docs/tutorial-extras/img/docsVersionDropdown.png b/docs/docs/tutorial-extras/img/docsVersionDropdown.png deleted file mode 100644 index 97e4164618b5f8beda34cfa699720aba0ad2e342..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 25427 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 diff --git a/docs/docs/tutorial-extras/img/localeDropdown.png b/docs/docs/tutorial-extras/img/localeDropdown.png deleted file mode 100644 index e257edc1f932985396bf59584c7ccfaddf955779..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 27841 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 JrC|B>e*nH7H{}2T diff --git a/docs/docs/tutorial-extras/manage-docs-versions.md b/docs/docs/tutorial-extras/manage-docs-versions.md deleted file mode 100644 index ccda0b9076..0000000000 --- a/docs/docs/tutorial-extras/manage-docs-versions.md +++ /dev/null @@ -1,55 +0,0 @@ ---- -sidebar_position: 1 ---- - -# Manage Docs Versions - -Docusaurus can manage multiple versions of your docs. - -## Create a docs version - -Release a version 1.0 of your project: - -```bash -npm run docusaurus docs:version 1.0 -``` - -The `docs` folder is copied into `versioned_docs/version-1.0` and `versions.json` is created. - -Your docs now have 2 versions: - -- `1.0` at `http://localhost:3000/docs/` for the version 1.0 docs -- `current` at `http://localhost:3000/docs/next/` for the **upcoming, unreleased docs** - -## Add a Version Dropdown - -To navigate seamlessly across versions, add a version dropdown. - -Modify the `docusaurus.config.js` file: - -```js title="docusaurus.config.js" -export default { - themeConfig: { - navbar: { - items: [ - // highlight-start - { - type: 'docsVersionDropdown', - }, - // highlight-end - ], - }, - }, -}; -``` - -The docs version dropdown appears in your navbar: - -![Docs Version Dropdown](./img/docsVersionDropdown.png) - -## Update an existing version - -It is possible to edit versioned docs in their respective folder: - -- `versioned_docs/version-1.0/hello.md` updates `http://localhost:3000/docs/hello` -- `docs/hello.md` updates `http://localhost:3000/docs/next/hello` diff --git a/docs/docs/tutorial-extras/translate-your-site.md b/docs/docs/tutorial-extras/translate-your-site.md deleted file mode 100644 index b5a644abdf..0000000000 --- a/docs/docs/tutorial-extras/translate-your-site.md +++ /dev/null @@ -1,88 +0,0 @@ ---- -sidebar_position: 2 ---- - -# Translate your site - -Let's translate `docs/intro.md` to French. - -## Configure i18n - -Modify `docusaurus.config.js` to add support for the `fr` locale: - -```js title="docusaurus.config.js" -export default { - i18n: { - defaultLocale: 'en', - locales: ['en', 'fr'], - }, -}; -``` - -## Translate a doc - -Copy the `docs/intro.md` file to the `i18n/fr` folder: - -```bash -mkdir -p i18n/fr/docusaurus-plugin-content-docs/current/ - -cp docs/intro.md i18n/fr/docusaurus-plugin-content-docs/current/intro.md -``` - -Translate `i18n/fr/docusaurus-plugin-content-docs/current/intro.md` in French. - -## Start your localized site - -Start your site on the French locale: - -```bash -npm run start -- --locale fr -``` - -Your localized site is accessible at [http://localhost:3000/fr/](http://localhost:3000/fr/) and the `Getting Started` page is translated. - -:::caution - -In development, you can only use one locale at a time. - -::: - -## Add a Locale Dropdown - -To navigate seamlessly across languages, add a locale dropdown. - -Modify the `docusaurus.config.js` file: - -```js title="docusaurus.config.js" -export default { - themeConfig: { - navbar: { - items: [ - // highlight-start - { - type: 'localeDropdown', - }, - // highlight-end - ], - }, - }, -}; -``` - -The locale dropdown now appears in your navbar: - -![Locale Dropdown](./img/localeDropdown.png) - -## Build your localized site - -Build your site for a specific locale: - -```bash -npm run build -- --locale fr -``` - -Or build your site to include all the locales at once: - -```bash -npm run build -``` diff --git a/docs/docusaurus.config.ts b/docs/docusaurus.config.ts index 2622ca65b9..c108b849bc 100644 --- a/docs/docusaurus.config.ts +++ b/docs/docusaurus.config.ts @@ -62,27 +62,27 @@ const config: Config = { }, items: [ { - type: 'docSidebar', - sidebarId: 'tutorialSidebar', label: 'General', position: 'left', + href: 'https://docs.talawa.io/docs', + target: '_self', }, { label: 'Mobile Guide', position: 'left', - href: 'https://docs-mobile.talawa.io/', + href: 'https://docs-mobile.talawa.io/docs', target: '_self', }, { label: 'Admin Guide', position: 'left', - href: 'https://docs-admin.talawa.io/', + href: 'https://docs-admin.talawa.io/docs', target: '_self', }, { label: 'API Guide', position: 'left', - href: 'https://docs-api.talawa.io/', + href: 'https://docs-api.talawa.io/docs', target: '_self', }, diff --git a/docs/sidebars.ts b/docs/sidebars.ts index 68d3ae97bc..ff0f3b91a5 100644 --- a/docs/sidebars.ts +++ b/docs/sidebars.ts @@ -14,7 +14,20 @@ import type { SidebarsConfig } from '@docusaurus/plugin-content-docs'; */ const sidebars: SidebarsConfig = { // By default, Docusaurus generates a sidebar from the docs folder structure - tutorialSidebar: [{ type: 'autogenerated', dirName: '.' }], + tutorialSidebar: [ + 'docs/introduction', + { + type: 'category', + label: 'Plugins', + items: [{ type: 'autogenerated', dirName: 'docs/plugins' }], + }, + + { + type: 'category', + label: 'Code Documentation', + items: [{ type: 'autogenerated', dirName: 'auto-docs' }], + }, + ], // But you can create a sidebar manually /* diff --git a/docs/static/img/docs/plugin/plugin-store-navbar.PNG b/docs/static/img/docs/plugin/plugin-store-navbar.PNG new file mode 100644 index 0000000000000000000000000000000000000000..f71cee7bb54a99675b1cba494ca58aedb546b00a GIT binary patch literal 11433 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 H%j5q8!|;Cm literal 0 HcmV?d00001 diff --git a/docs/static/img/docs/plugin/plugin-types.PNG b/docs/static/img/docs/plugin/plugin-types.PNG new file mode 100644 index 0000000000000000000000000000000000000000..120434c88cd6e1daf8d7b68ac42b6ec032028877 GIT binary patch literal 46950 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 literal 0 HcmV?d00001 diff --git a/docs/static/img/docs/plugin/store.PNG b/docs/static/img/docs/plugin/store.PNG new file mode 100644 index 0000000000000000000000000000000000000000..9d8621cf89e521fd0bfd500474cb7ff8162f2ed4 GIT binary patch literal 242532 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

?9)K^9%b8&LtDs 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�)az;&ln#NFnYPRP$y>k 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 z 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⊤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%0DP5z7bU53l8clW=ia!7h7Z+C6qvWT5i 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 z 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 JPDHLkV1j$D&+-5O literal 0 HcmV?d00001 From d338d65ff2bc0418a8eb823d9321f8cf9b5abfa9 Mon Sep 17 00:00:00 2001 From: Peter Harrison <16875803+palisadoes@users.noreply.github.com> Date: Sun, 19 Jan 2025 22:03:04 -0800 Subject: [PATCH 33/42] Update push-deploy-website.yml --- .github/workflows/push-deploy-website.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/push-deploy-website.yml b/.github/workflows/push-deploy-website.yml index 5af7c90094..e03dab9840 100644 --- a/.github/workflows/push-deploy-website.yml +++ b/.github/workflows/push-deploy-website.yml @@ -24,7 +24,7 @@ jobs: name: Deploy https://docs-admin.talawa.io website runs-on: ubuntu-latest # Run only if the develop-postgres branch and not dependabot - if: ${{ github.actor != 'dependabot[bot]' && github.event.pull_request.base.ref == 'develop-postgres' }} + if: ${{ github.actor != 'dependabot[bot]' }} environment: # This "name" has to be the repos' branch that contains # the current active website. There must be an entry for From 0c0fc8e1d54e2ef61a81dd93e93d1afca438df84 Mon Sep 17 00:00:00 2001 From: Peter Harrison <16875803+palisadoes@users.noreply.github.com> Date: Sun, 19 Jan 2025 22:28:36 -0800 Subject: [PATCH 34/42] Minor edit to trigger website updates (#3361) * Updated documentation layout * Removed outdated sidebar * Minor change to test website deployment --- docs/sidebars.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/sidebars.ts b/docs/sidebars.ts index ff0f3b91a5..3e594b841c 100644 --- a/docs/sidebars.ts +++ b/docs/sidebars.ts @@ -29,7 +29,7 @@ const sidebars: SidebarsConfig = { }, ], - // But you can create a sidebar manually + // But you can create a sidebar manually like this /* tutorialSidebar: [ 'intro', From f026c00e13cb10e25d76a439092864c345332684 Mon Sep 17 00:00:00 2001 From: TASNEEM KOUSHAR Date: Mon, 20 Jan 2025 22:10:01 +0530 Subject: [PATCH 35/42] Update push-deploy-website.yml --- .github/workflows/push-deploy-website.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/push-deploy-website.yml b/.github/workflows/push-deploy-website.yml index e03dab9840..b34e8157de 100644 --- a/.github/workflows/push-deploy-website.yml +++ b/.github/workflows/push-deploy-website.yml @@ -38,7 +38,7 @@ jobs: - uses: actions/checkout@v4 - uses: actions/setup-node@v4 with: - node-version: 22 + node-version: 20 cache: yarn cache-dependency-path: 'docs/' - uses: webfactory/ssh-agent@v0.9.0 From ca806cc99324174364d0d67506fd3a91b36e771a Mon Sep 17 00:00:00 2001 From: Divyanshu gautam Date: Mon, 20 Jan 2025 22:14:38 +0530 Subject: [PATCH 36/42] push-deploy-website.yml updated (#3364) --- .github/workflows/push-deploy-website.yml | 11 ++-- .../variables/MOCKS_EMPTY.md | 63 +++++++++++++++++++ .../variables/MOCKS_ERROR.md | 4 +- .../variables/MOCKS_ERROR_ERROR_TAG.md | 35 +++++++++++ .../variables/MOCKS_NO_MORE_PAGES.md | 9 +++ .../variables/MOCKS_NULL_END_CURSOR.md | 9 +++ .../variables/MOCKS_UNDEFINED_USER_TAGS.md | 63 +++++++++++++++++++ 7 files changed, 186 insertions(+), 8 deletions(-) create mode 100644 docs/docs/auto-docs/screens/OrganizationTags/OrganizationTagsMocks/variables/MOCKS_EMPTY.md create mode 100644 docs/docs/auto-docs/screens/OrganizationTags/OrganizationTagsMocks/variables/MOCKS_ERROR_ERROR_TAG.md create mode 100644 docs/docs/auto-docs/screens/OrganizationTags/OrganizationTagsMocks/variables/MOCKS_NO_MORE_PAGES.md create mode 100644 docs/docs/auto-docs/screens/OrganizationTags/OrganizationTagsMocks/variables/MOCKS_NULL_END_CURSOR.md create mode 100644 docs/docs/auto-docs/screens/OrganizationTags/OrganizationTagsMocks/variables/MOCKS_UNDEFINED_USER_TAGS.md diff --git a/.github/workflows/push-deploy-website.yml b/.github/workflows/push-deploy-website.yml index b34e8157de..984ae31e51 100644 --- a/.github/workflows/push-deploy-website.yml +++ b/.github/workflows/push-deploy-website.yml @@ -38,9 +38,9 @@ jobs: - uses: actions/checkout@v4 - uses: actions/setup-node@v4 with: - node-version: 20 - cache: yarn - cache-dependency-path: 'docs/' + node-version: '20.x' + + - uses: webfactory/ssh-agent@v0.9.0 with: ssh-private-key: ${{ secrets.DEPLOY_GITHUB_PAGES }} @@ -52,6 +52,5 @@ jobs: run: | git config --global user.email "actions@github.com" git config --global user.name "gh-actions" - yarn install --frozen-lockfile - yarn deploy - + npm ci + npm run deploy \ No newline at end of file diff --git a/docs/docs/auto-docs/screens/OrganizationTags/OrganizationTagsMocks/variables/MOCKS_EMPTY.md b/docs/docs/auto-docs/screens/OrganizationTags/OrganizationTagsMocks/variables/MOCKS_EMPTY.md new file mode 100644 index 0000000000..d56cf22f94 --- /dev/null +++ b/docs/docs/auto-docs/screens/OrganizationTags/OrganizationTagsMocks/variables/MOCKS_EMPTY.md @@ -0,0 +1,63 @@ +[Admin Docs](/) + +*** + +# Variable: MOCKS\_EMPTY + +> `const` **MOCKS\_EMPTY**: `object`[] + +Defined in: [src/screens/OrganizationTags/OrganizationTagsMocks.ts:344](https://github.com/PalisadoesFoundation/talawa-admin/blob/main/src/screens/OrganizationTags/OrganizationTagsMocks.ts#L344) + +## Type declaration + +### request + +> **request**: `object` + +#### request.query + +> **query**: `DocumentNode` = `ORGANIZATION_USER_TAGS_LIST` + +#### request.variables + +> **variables**: `object` + +#### request.variables.first + +> **first**: `number` = `TAGS_QUERY_DATA_CHUNK_SIZE` + +#### request.variables.id + +> **id**: `string` = `'orgId'` + +#### request.variables.sortedBy + +> **sortedBy**: `object` + +#### request.variables.sortedBy.id + +> **id**: `string` = `'DESCENDING'` + +#### request.variables.where + +> **where**: `object` + +#### request.variables.where.name + +> **name**: `object` + +#### request.variables.where.name.starts\_with + +> **starts\_with**: `string` = `''` + +### result + +> **result**: `object` + +#### result.data + +> **data**: `object` + +#### result.data.organizations + +> **organizations**: `object`[] diff --git a/docs/docs/auto-docs/screens/OrganizationTags/OrganizationTagsMocks/variables/MOCKS_ERROR.md b/docs/docs/auto-docs/screens/OrganizationTags/OrganizationTagsMocks/variables/MOCKS_ERROR.md index 8c6c8edf5b..85692fe00e 100644 --- a/docs/docs/auto-docs/screens/OrganizationTags/OrganizationTagsMocks/variables/MOCKS_ERROR.md +++ b/docs/docs/auto-docs/screens/OrganizationTags/OrganizationTagsMocks/variables/MOCKS_ERROR.md @@ -6,7 +6,7 @@ > `const` **MOCKS\_ERROR**: `object`[] -Defined in: [src/screens/OrganizationTags/OrganizationTagsMocks.ts:413](https://github.com/PalisadoesFoundation/talawa-admin/blob/main/src/screens/OrganizationTags/OrganizationTagsMocks.ts#L413) +Defined in: [src/screens/OrganizationTags/OrganizationTagsMocks.ts:319](https://github.com/PalisadoesFoundation/talawa-admin/blob/main/src/screens/OrganizationTags/OrganizationTagsMocks.ts#L319) ## Type declaration @@ -32,7 +32,7 @@ Defined in: [src/screens/OrganizationTags/OrganizationTagsMocks.ts:413](https:// #### request.variables.id -> **id**: `string` = `'orgId'` +> **id**: `string` = `'orgIdError'` #### request.variables.sortedBy diff --git a/docs/docs/auto-docs/screens/OrganizationTags/OrganizationTagsMocks/variables/MOCKS_ERROR_ERROR_TAG.md b/docs/docs/auto-docs/screens/OrganizationTags/OrganizationTagsMocks/variables/MOCKS_ERROR_ERROR_TAG.md new file mode 100644 index 0000000000..823edeaf2d --- /dev/null +++ b/docs/docs/auto-docs/screens/OrganizationTags/OrganizationTagsMocks/variables/MOCKS_ERROR_ERROR_TAG.md @@ -0,0 +1,35 @@ +[Admin Docs](/) + +*** + +# Variable: MOCKS\_ERROR\_ERROR\_TAG + +> `const` **MOCKS\_ERROR\_ERROR\_TAG**: `object`[] + +Defined in: [src/screens/OrganizationTags/OrganizationTagsMocks.ts:334](https://github.com/PalisadoesFoundation/talawa-admin/blob/main/src/screens/OrganizationTags/OrganizationTagsMocks.ts#L334) + +## Type declaration + +### error + +> **error**: `Error` + +### request + +> **request**: `object` + +#### request.query + +> **query**: `DocumentNode` = `CREATE_USER_TAG` + +#### request.variables + +> **variables**: `object` + +#### request.variables.name + +> **name**: `string` = `'userTagE'` + +#### request.variables.organizationId + +> **organizationId**: `string` = `'orgId'` diff --git a/docs/docs/auto-docs/screens/OrganizationTags/OrganizationTagsMocks/variables/MOCKS_NO_MORE_PAGES.md b/docs/docs/auto-docs/screens/OrganizationTags/OrganizationTagsMocks/variables/MOCKS_NO_MORE_PAGES.md new file mode 100644 index 0000000000..0004623929 --- /dev/null +++ b/docs/docs/auto-docs/screens/OrganizationTags/OrganizationTagsMocks/variables/MOCKS_NO_MORE_PAGES.md @@ -0,0 +1,9 @@ +[Admin Docs](/) + +*** + +# Variable: MOCKS\_NO\_MORE\_PAGES + +> `const` **MOCKS\_NO\_MORE\_PAGES**: (\{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `after`: `undefined`; `first`: `number`; `id`: `string`; `sortedBy`: \{ `id`: `string`; \}; `where`: \{ `name`: \{ `starts_with`: `string`; \}; \}; \}; \}; `result`: \{ `data`: \{ `organizations`: `object`[]; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `after`: `string`; `first`: `number`; `id`: `string`; `sortedBy`: \{ `id`: `string`; \}; `where`: \{ `name`: \{ `starts_with`: `string`; \}; \}; \}; \}; `result`: \{ `data`: `any`; \}; \})[] + +Defined in: [src/screens/OrganizationTags/OrganizationTagsMocks.ts:477](https://github.com/PalisadoesFoundation/talawa-admin/blob/main/src/screens/OrganizationTags/OrganizationTagsMocks.ts#L477) diff --git a/docs/docs/auto-docs/screens/OrganizationTags/OrganizationTagsMocks/variables/MOCKS_NULL_END_CURSOR.md b/docs/docs/auto-docs/screens/OrganizationTags/OrganizationTagsMocks/variables/MOCKS_NULL_END_CURSOR.md new file mode 100644 index 0000000000..a4d9a79a7a --- /dev/null +++ b/docs/docs/auto-docs/screens/OrganizationTags/OrganizationTagsMocks/variables/MOCKS_NULL_END_CURSOR.md @@ -0,0 +1,9 @@ +[Admin Docs](/) + +*** + +# Variable: MOCKS\_NULL\_END\_CURSOR + +> `const` **MOCKS\_NULL\_END\_CURSOR**: (\{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `after`: `undefined`; `first`: `number`; `id`: `string`; `sortedBy`: \{ `id`: `string`; \}; `where`: \{ `name`: \{ `starts_with`: `string`; \}; \}; \}; \}; `result`: \{ `data`: \{ `organizations`: `object`[]; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `after`: `any`; `first`: `number`; `id`: `string`; `sortedBy`: \{ `id`: `string`; \}; `where`: \{ `name`: \{ `starts_with`: `string`; \}; \}; \}; \}; `result`: \{ `data`: \{ `organizations`: `object`[]; \}; \}; \})[] + +Defined in: [src/screens/OrganizationTags/OrganizationTagsMocks.ts:391](https://github.com/PalisadoesFoundation/talawa-admin/blob/main/src/screens/OrganizationTags/OrganizationTagsMocks.ts#L391) diff --git a/docs/docs/auto-docs/screens/OrganizationTags/OrganizationTagsMocks/variables/MOCKS_UNDEFINED_USER_TAGS.md b/docs/docs/auto-docs/screens/OrganizationTags/OrganizationTagsMocks/variables/MOCKS_UNDEFINED_USER_TAGS.md new file mode 100644 index 0000000000..f41ce5d255 --- /dev/null +++ b/docs/docs/auto-docs/screens/OrganizationTags/OrganizationTagsMocks/variables/MOCKS_UNDEFINED_USER_TAGS.md @@ -0,0 +1,63 @@ +[Admin Docs](/) + +*** + +# Variable: MOCKS\_UNDEFINED\_USER\_TAGS + +> `const` **MOCKS\_UNDEFINED\_USER\_TAGS**: `object`[] + +Defined in: [src/screens/OrganizationTags/OrganizationTagsMocks.ts:376](https://github.com/PalisadoesFoundation/talawa-admin/blob/main/src/screens/OrganizationTags/OrganizationTagsMocks.ts#L376) + +## Type declaration + +### request + +> **request**: `object` + +#### request.query + +> **query**: `DocumentNode` = `ORGANIZATION_USER_TAGS_LIST` + +#### request.variables + +> **variables**: `object` + +#### request.variables.first + +> **first**: `number` = `TAGS_QUERY_DATA_CHUNK_SIZE` + +#### request.variables.id + +> **id**: `string` = `'orgId'` + +#### request.variables.sortedBy + +> **sortedBy**: `object` + +#### request.variables.sortedBy.id + +> **id**: `string` = `'DESCENDING'` + +#### request.variables.where + +> **where**: `object` + +#### request.variables.where.name + +> **name**: `object` + +#### request.variables.where.name.starts\_with + +> **starts\_with**: `string` = `''` + +### result + +> **result**: `object` + +#### result.data + +> **data**: `object` + +#### result.data.organizations + +> **organizations**: `object`[] From d739938eaf50a2ae6431b56b86618e07806fc322 Mon Sep 17 00:00:00 2001 From: Divyanshu gautam Date: Mon, 20 Jan 2025 22:20:56 +0530 Subject: [PATCH 37/42] Revert "deploy error solved, push-deploy-website.yml updated" (#3365) * Revert "push-deploy-website.yml updated (#3364)" This reverts commit ca806cc99324174364d0d67506fd3a91b36e771a. * Update push-deploy-website.yml --- .github/workflows/push-deploy-website.yml | 7 +-- .../variables/MOCKS_EMPTY.md | 63 ------------------- .../variables/MOCKS_ERROR.md | 4 +- .../variables/MOCKS_ERROR_ERROR_TAG.md | 35 ----------- .../variables/MOCKS_NO_MORE_PAGES.md | 9 --- .../variables/MOCKS_NULL_END_CURSOR.md | 9 --- .../variables/MOCKS_UNDEFINED_USER_TAGS.md | 63 ------------------- 7 files changed, 5 insertions(+), 185 deletions(-) delete mode 100644 docs/docs/auto-docs/screens/OrganizationTags/OrganizationTagsMocks/variables/MOCKS_EMPTY.md delete mode 100644 docs/docs/auto-docs/screens/OrganizationTags/OrganizationTagsMocks/variables/MOCKS_ERROR_ERROR_TAG.md delete mode 100644 docs/docs/auto-docs/screens/OrganizationTags/OrganizationTagsMocks/variables/MOCKS_NO_MORE_PAGES.md delete mode 100644 docs/docs/auto-docs/screens/OrganizationTags/OrganizationTagsMocks/variables/MOCKS_NULL_END_CURSOR.md delete mode 100644 docs/docs/auto-docs/screens/OrganizationTags/OrganizationTagsMocks/variables/MOCKS_UNDEFINED_USER_TAGS.md diff --git a/.github/workflows/push-deploy-website.yml b/.github/workflows/push-deploy-website.yml index 984ae31e51..b90927503f 100644 --- a/.github/workflows/push-deploy-website.yml +++ b/.github/workflows/push-deploy-website.yml @@ -39,8 +39,6 @@ jobs: - uses: actions/setup-node@v4 with: node-version: '20.x' - - - uses: webfactory/ssh-agent@v0.9.0 with: ssh-private-key: ${{ secrets.DEPLOY_GITHUB_PAGES }} @@ -52,5 +50,6 @@ jobs: run: | git config --global user.email "actions@github.com" git config --global user.name "gh-actions" - npm ci - npm run deploy \ No newline at end of file + yarn install --frozen-lockfile + yarn deploy + diff --git a/docs/docs/auto-docs/screens/OrganizationTags/OrganizationTagsMocks/variables/MOCKS_EMPTY.md b/docs/docs/auto-docs/screens/OrganizationTags/OrganizationTagsMocks/variables/MOCKS_EMPTY.md deleted file mode 100644 index d56cf22f94..0000000000 --- a/docs/docs/auto-docs/screens/OrganizationTags/OrganizationTagsMocks/variables/MOCKS_EMPTY.md +++ /dev/null @@ -1,63 +0,0 @@ -[Admin Docs](/) - -*** - -# Variable: MOCKS\_EMPTY - -> `const` **MOCKS\_EMPTY**: `object`[] - -Defined in: [src/screens/OrganizationTags/OrganizationTagsMocks.ts:344](https://github.com/PalisadoesFoundation/talawa-admin/blob/main/src/screens/OrganizationTags/OrganizationTagsMocks.ts#L344) - -## Type declaration - -### request - -> **request**: `object` - -#### request.query - -> **query**: `DocumentNode` = `ORGANIZATION_USER_TAGS_LIST` - -#### request.variables - -> **variables**: `object` - -#### request.variables.first - -> **first**: `number` = `TAGS_QUERY_DATA_CHUNK_SIZE` - -#### request.variables.id - -> **id**: `string` = `'orgId'` - -#### request.variables.sortedBy - -> **sortedBy**: `object` - -#### request.variables.sortedBy.id - -> **id**: `string` = `'DESCENDING'` - -#### request.variables.where - -> **where**: `object` - -#### request.variables.where.name - -> **name**: `object` - -#### request.variables.where.name.starts\_with - -> **starts\_with**: `string` = `''` - -### result - -> **result**: `object` - -#### result.data - -> **data**: `object` - -#### result.data.organizations - -> **organizations**: `object`[] diff --git a/docs/docs/auto-docs/screens/OrganizationTags/OrganizationTagsMocks/variables/MOCKS_ERROR.md b/docs/docs/auto-docs/screens/OrganizationTags/OrganizationTagsMocks/variables/MOCKS_ERROR.md index 85692fe00e..8c6c8edf5b 100644 --- a/docs/docs/auto-docs/screens/OrganizationTags/OrganizationTagsMocks/variables/MOCKS_ERROR.md +++ b/docs/docs/auto-docs/screens/OrganizationTags/OrganizationTagsMocks/variables/MOCKS_ERROR.md @@ -6,7 +6,7 @@ > `const` **MOCKS\_ERROR**: `object`[] -Defined in: [src/screens/OrganizationTags/OrganizationTagsMocks.ts:319](https://github.com/PalisadoesFoundation/talawa-admin/blob/main/src/screens/OrganizationTags/OrganizationTagsMocks.ts#L319) +Defined in: [src/screens/OrganizationTags/OrganizationTagsMocks.ts:413](https://github.com/PalisadoesFoundation/talawa-admin/blob/main/src/screens/OrganizationTags/OrganizationTagsMocks.ts#L413) ## Type declaration @@ -32,7 +32,7 @@ Defined in: [src/screens/OrganizationTags/OrganizationTagsMocks.ts:319](https:// #### request.variables.id -> **id**: `string` = `'orgIdError'` +> **id**: `string` = `'orgId'` #### request.variables.sortedBy diff --git a/docs/docs/auto-docs/screens/OrganizationTags/OrganizationTagsMocks/variables/MOCKS_ERROR_ERROR_TAG.md b/docs/docs/auto-docs/screens/OrganizationTags/OrganizationTagsMocks/variables/MOCKS_ERROR_ERROR_TAG.md deleted file mode 100644 index 823edeaf2d..0000000000 --- a/docs/docs/auto-docs/screens/OrganizationTags/OrganizationTagsMocks/variables/MOCKS_ERROR_ERROR_TAG.md +++ /dev/null @@ -1,35 +0,0 @@ -[Admin Docs](/) - -*** - -# Variable: MOCKS\_ERROR\_ERROR\_TAG - -> `const` **MOCKS\_ERROR\_ERROR\_TAG**: `object`[] - -Defined in: [src/screens/OrganizationTags/OrganizationTagsMocks.ts:334](https://github.com/PalisadoesFoundation/talawa-admin/blob/main/src/screens/OrganizationTags/OrganizationTagsMocks.ts#L334) - -## Type declaration - -### error - -> **error**: `Error` - -### request - -> **request**: `object` - -#### request.query - -> **query**: `DocumentNode` = `CREATE_USER_TAG` - -#### request.variables - -> **variables**: `object` - -#### request.variables.name - -> **name**: `string` = `'userTagE'` - -#### request.variables.organizationId - -> **organizationId**: `string` = `'orgId'` diff --git a/docs/docs/auto-docs/screens/OrganizationTags/OrganizationTagsMocks/variables/MOCKS_NO_MORE_PAGES.md b/docs/docs/auto-docs/screens/OrganizationTags/OrganizationTagsMocks/variables/MOCKS_NO_MORE_PAGES.md deleted file mode 100644 index 0004623929..0000000000 --- a/docs/docs/auto-docs/screens/OrganizationTags/OrganizationTagsMocks/variables/MOCKS_NO_MORE_PAGES.md +++ /dev/null @@ -1,9 +0,0 @@ -[Admin Docs](/) - -*** - -# Variable: MOCKS\_NO\_MORE\_PAGES - -> `const` **MOCKS\_NO\_MORE\_PAGES**: (\{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `after`: `undefined`; `first`: `number`; `id`: `string`; `sortedBy`: \{ `id`: `string`; \}; `where`: \{ `name`: \{ `starts_with`: `string`; \}; \}; \}; \}; `result`: \{ `data`: \{ `organizations`: `object`[]; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `after`: `string`; `first`: `number`; `id`: `string`; `sortedBy`: \{ `id`: `string`; \}; `where`: \{ `name`: \{ `starts_with`: `string`; \}; \}; \}; \}; `result`: \{ `data`: `any`; \}; \})[] - -Defined in: [src/screens/OrganizationTags/OrganizationTagsMocks.ts:477](https://github.com/PalisadoesFoundation/talawa-admin/blob/main/src/screens/OrganizationTags/OrganizationTagsMocks.ts#L477) diff --git a/docs/docs/auto-docs/screens/OrganizationTags/OrganizationTagsMocks/variables/MOCKS_NULL_END_CURSOR.md b/docs/docs/auto-docs/screens/OrganizationTags/OrganizationTagsMocks/variables/MOCKS_NULL_END_CURSOR.md deleted file mode 100644 index a4d9a79a7a..0000000000 --- a/docs/docs/auto-docs/screens/OrganizationTags/OrganizationTagsMocks/variables/MOCKS_NULL_END_CURSOR.md +++ /dev/null @@ -1,9 +0,0 @@ -[Admin Docs](/) - -*** - -# Variable: MOCKS\_NULL\_END\_CURSOR - -> `const` **MOCKS\_NULL\_END\_CURSOR**: (\{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `after`: `undefined`; `first`: `number`; `id`: `string`; `sortedBy`: \{ `id`: `string`; \}; `where`: \{ `name`: \{ `starts_with`: `string`; \}; \}; \}; \}; `result`: \{ `data`: \{ `organizations`: `object`[]; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `after`: `any`; `first`: `number`; `id`: `string`; `sortedBy`: \{ `id`: `string`; \}; `where`: \{ `name`: \{ `starts_with`: `string`; \}; \}; \}; \}; `result`: \{ `data`: \{ `organizations`: `object`[]; \}; \}; \})[] - -Defined in: [src/screens/OrganizationTags/OrganizationTagsMocks.ts:391](https://github.com/PalisadoesFoundation/talawa-admin/blob/main/src/screens/OrganizationTags/OrganizationTagsMocks.ts#L391) diff --git a/docs/docs/auto-docs/screens/OrganizationTags/OrganizationTagsMocks/variables/MOCKS_UNDEFINED_USER_TAGS.md b/docs/docs/auto-docs/screens/OrganizationTags/OrganizationTagsMocks/variables/MOCKS_UNDEFINED_USER_TAGS.md deleted file mode 100644 index f41ce5d255..0000000000 --- a/docs/docs/auto-docs/screens/OrganizationTags/OrganizationTagsMocks/variables/MOCKS_UNDEFINED_USER_TAGS.md +++ /dev/null @@ -1,63 +0,0 @@ -[Admin Docs](/) - -*** - -# Variable: MOCKS\_UNDEFINED\_USER\_TAGS - -> `const` **MOCKS\_UNDEFINED\_USER\_TAGS**: `object`[] - -Defined in: [src/screens/OrganizationTags/OrganizationTagsMocks.ts:376](https://github.com/PalisadoesFoundation/talawa-admin/blob/main/src/screens/OrganizationTags/OrganizationTagsMocks.ts#L376) - -## Type declaration - -### request - -> **request**: `object` - -#### request.query - -> **query**: `DocumentNode` = `ORGANIZATION_USER_TAGS_LIST` - -#### request.variables - -> **variables**: `object` - -#### request.variables.first - -> **first**: `number` = `TAGS_QUERY_DATA_CHUNK_SIZE` - -#### request.variables.id - -> **id**: `string` = `'orgId'` - -#### request.variables.sortedBy - -> **sortedBy**: `object` - -#### request.variables.sortedBy.id - -> **id**: `string` = `'DESCENDING'` - -#### request.variables.where - -> **where**: `object` - -#### request.variables.where.name - -> **name**: `object` - -#### request.variables.where.name.starts\_with - -> **starts\_with**: `string` = `''` - -### result - -> **result**: `object` - -#### result.data - -> **data**: `object` - -#### result.data.organizations - -> **organizations**: `object`[] From 0185646fd275e6885c7a7509a1f858c2aef10257 Mon Sep 17 00:00:00 2001 From: Syed Ali Ul Hasan Date: Mon, 20 Jan 2025 23:18:17 +0530 Subject: [PATCH 38/42] refactored src/screens/UserPortal/Campaigns/PledgeModal.test.tsx from jest to vitest (#3355) --- ...dgeModal.test.tsx => PledgeModal.spec.tsx} | 39 +++++++++++-------- 1 file changed, 22 insertions(+), 17 deletions(-) rename src/screens/UserPortal/Campaigns/{PledgeModal.test.tsx => PledgeModal.spec.tsx} (92%) diff --git a/src/screens/UserPortal/Campaigns/PledgeModal.test.tsx b/src/screens/UserPortal/Campaigns/PledgeModal.spec.tsx similarity index 92% rename from src/screens/UserPortal/Campaigns/PledgeModal.test.tsx rename to src/screens/UserPortal/Campaigns/PledgeModal.spec.tsx index b9fd7a7d4d..c4829d46b7 100644 --- a/src/screens/UserPortal/Campaigns/PledgeModal.test.tsx +++ b/src/screens/UserPortal/Campaigns/PledgeModal.spec.tsx @@ -22,26 +22,28 @@ import PledgeModal from './PledgeModal'; import React from 'react'; import { USER_DETAILS } from 'GraphQl/Queries/Queries'; import { CREATE_PlEDGE, UPDATE_PLEDGE } from 'GraphQl/Mutations/PledgeMutation'; +import { vi } from 'vitest'; -jest.mock('react-toastify', () => ({ +vi.mock('react-toastify', () => ({ toast: { - success: jest.fn(), - error: jest.fn(), + success: vi.fn(), + error: vi.fn(), }, })); -jest.mock('@mui/x-date-pickers/DateTimePicker', () => { +vi.mock('@mui/x-date-pickers/DateTimePicker', async () => { + const { DesktopDateTimePicker } = await vi.importActual( + '@mui/x-date-pickers/DesktopDateTimePicker', + ); return { - DateTimePicker: jest.requireActual( - '@mui/x-date-pickers/DesktopDateTimePicker', - ).DesktopDateTimePicker, + DateTimePicker: DesktopDateTimePicker, }; }); const pledgeProps: InterfacePledgeModal[] = [ { isOpen: true, - hide: jest.fn(), + hide: vi.fn(), pledge: { _id: '1', amount: 100, @@ -57,7 +59,7 @@ const pledgeProps: InterfacePledgeModal[] = [ }, ], }, - refetchPledge: jest.fn(), + refetchPledge: vi.fn(), campaignId: 'campaignId', userId: 'userId', endDate: new Date(), @@ -65,7 +67,7 @@ const pledgeProps: InterfacePledgeModal[] = [ }, { isOpen: true, - hide: jest.fn(), + hide: vi.fn(), pledge: { _id: '1', amount: 100, @@ -81,7 +83,7 @@ const pledgeProps: InterfacePledgeModal[] = [ }, ], }, - refetchPledge: jest.fn(), + refetchPledge: vi.fn(), campaignId: 'campaignId', userId: 'userId', endDate: new Date(), @@ -210,14 +212,18 @@ const renderPledgeModal = ( describe('PledgeModal', () => { beforeAll(() => { - jest.mock('react-router-dom', () => ({ - ...jest.requireActual('react-router-dom'), - useParams: () => ({ orgId: 'orgId', fundCampaignId: 'fundCampaignId' }), - })); + vi.mock('react-router-dom', async () => { + const actual = await vi.importActual('react-router-dom'); + return { + ...actual, + useParams: () => ({ orgId: 'orgId', fundCampaignId: 'fundCampaignId' }), + useNavigate: vi.fn(), + }; + }); }); afterAll(() => { - jest.clearAllMocks(); + vi.clearAllMocks(); }); afterEach(() => { @@ -300,7 +306,6 @@ describe('PledgeModal', () => { expect(screen.getByTestId('submitPledgeBtn')).toBeInTheDocument(); fireEvent.click(screen.getByTestId('submitPledgeBtn')); - await waitFor(() => { expect(toast.success).toHaveBeenCalled(); expect(pledgeProps[0].refetchPledge).toHaveBeenCalled(); From e843b36336600b85c5371716223fa6a6df941310 Mon Sep 17 00:00:00 2001 From: Yugal Sadhwani Date: Mon, 20 Jan 2025 23:19:46 +0530 Subject: [PATCH 39/42] Added equal padding on active ads and completed ads section and added proper casing to completed ads section (#3362) --- src/components/Advertisements/Advertisements.tsx | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/src/components/Advertisements/Advertisements.tsx b/src/components/Advertisements/Advertisements.tsx index f428b569a0..b7ae934c5d 100644 --- a/src/components/Advertisements/Advertisements.tsx +++ b/src/components/Advertisements/Advertisements.tsx @@ -184,7 +184,11 @@ export default function advertisements(): JSX.Element { )} - + new Date(ad.endDate) < new Date(), ).length !== 0 && (

) } From a218d866c2a27fcf7ac9de3b7102bbfc1e48d42a Mon Sep 17 00:00:00 2001 From: Nikhil Raj <125121367+hustlernik@users.noreply.github.com> Date: Tue, 21 Jan 2025 01:54:08 +0530 Subject: [PATCH 40/42] [FIX] User Portal: People Page Violates The Figma Style Guide (#3310) * ui fix * fix * css fix * Update src/screens/UserPortal/People/People.tsx Co-authored-by: coderabbitai[bot] <136622811+coderabbitai[bot]@users.noreply.github.com> * fix * fix * Update src/style/app.module.css Co-authored-by: coderabbitai[bot] <136622811+coderabbitai[bot]@users.noreply.github.com> * add test and ui fix * fix * ui fix * fix * ui fix * ui fix --------- Co-authored-by: coderabbitai[bot] <136622811+coderabbitai[bot]@users.noreply.github.com> --- .../variables/MOCKS_EMPTY.md | 63 ++++++ .../variables/MOCKS_ERROR.md | 4 +- .../variables/MOCKS_ERROR_ERROR_TAG.md | 35 +++ .../variables/MOCKS_NO_MORE_PAGES.md | 9 + .../variables/MOCKS_NULL_END_CURSOR.md | 9 + .../variables/MOCKS_UNDEFINED_USER_TAGS.md | 63 ++++++ .../People/People/functions/default.md | 2 +- .../PeopleCard/PeopleCard.module.css | 33 --- .../UserPortal/PeopleCard/PeopleCard.tsx | 20 +- .../UserPortal/People/People.module.css | 78 ------- src/screens/UserPortal/People/People.tsx | 210 +++++++++--------- src/style/app.module.css | 178 +++++++++++++-- 12 files changed, 448 insertions(+), 256 deletions(-) create mode 100644 docs/docs/auto-docs/screens/OrganizationTags/OrganizationTagsMocks/variables/MOCKS_EMPTY.md create mode 100644 docs/docs/auto-docs/screens/OrganizationTags/OrganizationTagsMocks/variables/MOCKS_ERROR_ERROR_TAG.md create mode 100644 docs/docs/auto-docs/screens/OrganizationTags/OrganizationTagsMocks/variables/MOCKS_NO_MORE_PAGES.md create mode 100644 docs/docs/auto-docs/screens/OrganizationTags/OrganizationTagsMocks/variables/MOCKS_NULL_END_CURSOR.md create mode 100644 docs/docs/auto-docs/screens/OrganizationTags/OrganizationTagsMocks/variables/MOCKS_UNDEFINED_USER_TAGS.md delete mode 100644 src/components/UserPortal/PeopleCard/PeopleCard.module.css delete mode 100644 src/screens/UserPortal/People/People.module.css diff --git a/docs/docs/auto-docs/screens/OrganizationTags/OrganizationTagsMocks/variables/MOCKS_EMPTY.md b/docs/docs/auto-docs/screens/OrganizationTags/OrganizationTagsMocks/variables/MOCKS_EMPTY.md new file mode 100644 index 0000000000..d56cf22f94 --- /dev/null +++ b/docs/docs/auto-docs/screens/OrganizationTags/OrganizationTagsMocks/variables/MOCKS_EMPTY.md @@ -0,0 +1,63 @@ +[Admin Docs](/) + +*** + +# Variable: MOCKS\_EMPTY + +> `const` **MOCKS\_EMPTY**: `object`[] + +Defined in: [src/screens/OrganizationTags/OrganizationTagsMocks.ts:344](https://github.com/PalisadoesFoundation/talawa-admin/blob/main/src/screens/OrganizationTags/OrganizationTagsMocks.ts#L344) + +## Type declaration + +### request + +> **request**: `object` + +#### request.query + +> **query**: `DocumentNode` = `ORGANIZATION_USER_TAGS_LIST` + +#### request.variables + +> **variables**: `object` + +#### request.variables.first + +> **first**: `number` = `TAGS_QUERY_DATA_CHUNK_SIZE` + +#### request.variables.id + +> **id**: `string` = `'orgId'` + +#### request.variables.sortedBy + +> **sortedBy**: `object` + +#### request.variables.sortedBy.id + +> **id**: `string` = `'DESCENDING'` + +#### request.variables.where + +> **where**: `object` + +#### request.variables.where.name + +> **name**: `object` + +#### request.variables.where.name.starts\_with + +> **starts\_with**: `string` = `''` + +### result + +> **result**: `object` + +#### result.data + +> **data**: `object` + +#### result.data.organizations + +> **organizations**: `object`[] diff --git a/docs/docs/auto-docs/screens/OrganizationTags/OrganizationTagsMocks/variables/MOCKS_ERROR.md b/docs/docs/auto-docs/screens/OrganizationTags/OrganizationTagsMocks/variables/MOCKS_ERROR.md index 8c6c8edf5b..85692fe00e 100644 --- a/docs/docs/auto-docs/screens/OrganizationTags/OrganizationTagsMocks/variables/MOCKS_ERROR.md +++ b/docs/docs/auto-docs/screens/OrganizationTags/OrganizationTagsMocks/variables/MOCKS_ERROR.md @@ -6,7 +6,7 @@ > `const` **MOCKS\_ERROR**: `object`[] -Defined in: [src/screens/OrganizationTags/OrganizationTagsMocks.ts:413](https://github.com/PalisadoesFoundation/talawa-admin/blob/main/src/screens/OrganizationTags/OrganizationTagsMocks.ts#L413) +Defined in: [src/screens/OrganizationTags/OrganizationTagsMocks.ts:319](https://github.com/PalisadoesFoundation/talawa-admin/blob/main/src/screens/OrganizationTags/OrganizationTagsMocks.ts#L319) ## Type declaration @@ -32,7 +32,7 @@ Defined in: [src/screens/OrganizationTags/OrganizationTagsMocks.ts:413](https:// #### request.variables.id -> **id**: `string` = `'orgId'` +> **id**: `string` = `'orgIdError'` #### request.variables.sortedBy diff --git a/docs/docs/auto-docs/screens/OrganizationTags/OrganizationTagsMocks/variables/MOCKS_ERROR_ERROR_TAG.md b/docs/docs/auto-docs/screens/OrganizationTags/OrganizationTagsMocks/variables/MOCKS_ERROR_ERROR_TAG.md new file mode 100644 index 0000000000..823edeaf2d --- /dev/null +++ b/docs/docs/auto-docs/screens/OrganizationTags/OrganizationTagsMocks/variables/MOCKS_ERROR_ERROR_TAG.md @@ -0,0 +1,35 @@ +[Admin Docs](/) + +*** + +# Variable: MOCKS\_ERROR\_ERROR\_TAG + +> `const` **MOCKS\_ERROR\_ERROR\_TAG**: `object`[] + +Defined in: [src/screens/OrganizationTags/OrganizationTagsMocks.ts:334](https://github.com/PalisadoesFoundation/talawa-admin/blob/main/src/screens/OrganizationTags/OrganizationTagsMocks.ts#L334) + +## Type declaration + +### error + +> **error**: `Error` + +### request + +> **request**: `object` + +#### request.query + +> **query**: `DocumentNode` = `CREATE_USER_TAG` + +#### request.variables + +> **variables**: `object` + +#### request.variables.name + +> **name**: `string` = `'userTagE'` + +#### request.variables.organizationId + +> **organizationId**: `string` = `'orgId'` diff --git a/docs/docs/auto-docs/screens/OrganizationTags/OrganizationTagsMocks/variables/MOCKS_NO_MORE_PAGES.md b/docs/docs/auto-docs/screens/OrganizationTags/OrganizationTagsMocks/variables/MOCKS_NO_MORE_PAGES.md new file mode 100644 index 0000000000..0004623929 --- /dev/null +++ b/docs/docs/auto-docs/screens/OrganizationTags/OrganizationTagsMocks/variables/MOCKS_NO_MORE_PAGES.md @@ -0,0 +1,9 @@ +[Admin Docs](/) + +*** + +# Variable: MOCKS\_NO\_MORE\_PAGES + +> `const` **MOCKS\_NO\_MORE\_PAGES**: (\{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `after`: `undefined`; `first`: `number`; `id`: `string`; `sortedBy`: \{ `id`: `string`; \}; `where`: \{ `name`: \{ `starts_with`: `string`; \}; \}; \}; \}; `result`: \{ `data`: \{ `organizations`: `object`[]; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `after`: `string`; `first`: `number`; `id`: `string`; `sortedBy`: \{ `id`: `string`; \}; `where`: \{ `name`: \{ `starts_with`: `string`; \}; \}; \}; \}; `result`: \{ `data`: `any`; \}; \})[] + +Defined in: [src/screens/OrganizationTags/OrganizationTagsMocks.ts:477](https://github.com/PalisadoesFoundation/talawa-admin/blob/main/src/screens/OrganizationTags/OrganizationTagsMocks.ts#L477) diff --git a/docs/docs/auto-docs/screens/OrganizationTags/OrganizationTagsMocks/variables/MOCKS_NULL_END_CURSOR.md b/docs/docs/auto-docs/screens/OrganizationTags/OrganizationTagsMocks/variables/MOCKS_NULL_END_CURSOR.md new file mode 100644 index 0000000000..a4d9a79a7a --- /dev/null +++ b/docs/docs/auto-docs/screens/OrganizationTags/OrganizationTagsMocks/variables/MOCKS_NULL_END_CURSOR.md @@ -0,0 +1,9 @@ +[Admin Docs](/) + +*** + +# Variable: MOCKS\_NULL\_END\_CURSOR + +> `const` **MOCKS\_NULL\_END\_CURSOR**: (\{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `after`: `undefined`; `first`: `number`; `id`: `string`; `sortedBy`: \{ `id`: `string`; \}; `where`: \{ `name`: \{ `starts_with`: `string`; \}; \}; \}; \}; `result`: \{ `data`: \{ `organizations`: `object`[]; \}; \}; \} \| \{ `request`: \{ `query`: `DocumentNode`; `variables`: \{ `after`: `any`; `first`: `number`; `id`: `string`; `sortedBy`: \{ `id`: `string`; \}; `where`: \{ `name`: \{ `starts_with`: `string`; \}; \}; \}; \}; `result`: \{ `data`: \{ `organizations`: `object`[]; \}; \}; \})[] + +Defined in: [src/screens/OrganizationTags/OrganizationTagsMocks.ts:391](https://github.com/PalisadoesFoundation/talawa-admin/blob/main/src/screens/OrganizationTags/OrganizationTagsMocks.ts#L391) diff --git a/docs/docs/auto-docs/screens/OrganizationTags/OrganizationTagsMocks/variables/MOCKS_UNDEFINED_USER_TAGS.md b/docs/docs/auto-docs/screens/OrganizationTags/OrganizationTagsMocks/variables/MOCKS_UNDEFINED_USER_TAGS.md new file mode 100644 index 0000000000..f41ce5d255 --- /dev/null +++ b/docs/docs/auto-docs/screens/OrganizationTags/OrganizationTagsMocks/variables/MOCKS_UNDEFINED_USER_TAGS.md @@ -0,0 +1,63 @@ +[Admin Docs](/) + +*** + +# Variable: MOCKS\_UNDEFINED\_USER\_TAGS + +> `const` **MOCKS\_UNDEFINED\_USER\_TAGS**: `object`[] + +Defined in: [src/screens/OrganizationTags/OrganizationTagsMocks.ts:376](https://github.com/PalisadoesFoundation/talawa-admin/blob/main/src/screens/OrganizationTags/OrganizationTagsMocks.ts#L376) + +## Type declaration + +### request + +> **request**: `object` + +#### request.query + +> **query**: `DocumentNode` = `ORGANIZATION_USER_TAGS_LIST` + +#### request.variables + +> **variables**: `object` + +#### request.variables.first + +> **first**: `number` = `TAGS_QUERY_DATA_CHUNK_SIZE` + +#### request.variables.id + +> **id**: `string` = `'orgId'` + +#### request.variables.sortedBy + +> **sortedBy**: `object` + +#### request.variables.sortedBy.id + +> **id**: `string` = `'DESCENDING'` + +#### request.variables.where + +> **where**: `object` + +#### request.variables.where.name + +> **name**: `object` + +#### request.variables.where.name.starts\_with + +> **starts\_with**: `string` = `''` + +### result + +> **result**: `object` + +#### result.data + +> **data**: `object` + +#### result.data.organizations + +> **organizations**: `object`[] diff --git a/docs/docs/auto-docs/screens/UserPortal/People/People/functions/default.md b/docs/docs/auto-docs/screens/UserPortal/People/People/functions/default.md index 6208a41794..f8d6aa3e1c 100644 --- a/docs/docs/auto-docs/screens/UserPortal/People/People/functions/default.md +++ b/docs/docs/auto-docs/screens/UserPortal/People/People/functions/default.md @@ -6,7 +6,7 @@ > **default**(): `JSX.Element` -Defined in: [src/screens/UserPortal/People/People.tsx:39](https://github.com/PalisadoesFoundation/talawa-admin/blob/main/src/screens/UserPortal/People/People.tsx#L39) +Defined in: [src/screens/UserPortal/People/People.tsx:40](https://github.com/PalisadoesFoundation/talawa-admin/blob/main/src/screens/UserPortal/People/People.tsx#L40) `People` component displays a list of people associated with an organization. It allows users to filter between all members and admins, search for members by their first name, diff --git a/src/components/UserPortal/PeopleCard/PeopleCard.module.css b/src/components/UserPortal/PeopleCard/PeopleCard.module.css deleted file mode 100644 index fe9fc3bcbd..0000000000 --- a/src/components/UserPortal/PeopleCard/PeopleCard.module.css +++ /dev/null @@ -1,33 +0,0 @@ -.mainContainer { - width: 100%; - display: flex; - flex-direction: row; - padding: 10px; - cursor: pointer; - background-color: white; - border-radius: 10px; - box-shadow: 2px 2px 8px 0px #c8c8c8; - overflow: hidden; -} - -.personDetails { - display: flex; - flex-direction: column; - justify-content: center; -} - -.personImage { - border-radius: 50%; - margin-right: 20px; - max-width: 70px; -} - -.borderBox { - border: 1px solid #dddddd; - box-shadow: 5px 5px 4px 0px #31bb6b1f; - border-radius: 4px; -} - -.greenText { - color: #31bb6b; -} diff --git a/src/components/UserPortal/PeopleCard/PeopleCard.tsx b/src/components/UserPortal/PeopleCard/PeopleCard.tsx index e6b6088801..b6d1ff5d2c 100644 --- a/src/components/UserPortal/PeopleCard/PeopleCard.tsx +++ b/src/components/UserPortal/PeopleCard/PeopleCard.tsx @@ -1,6 +1,6 @@ import React from 'react'; import aboutImg from 'assets/images/defaultImg.png'; -import styles from './PeopleCard.module.css'; +import styles from './../../../style/app.module.css'; /** * Props interface for the PeopleCard component. @@ -32,11 +32,11 @@ function peopleCard(props: InterfaceOrganizationCardProps): JSX.Element { const imageUrl = props.image ? props.image : aboutImg; return ( -
+
{/* Container for serial number and image */} - + {/* Serial number */} - + {props.sno} {/* Person's image */} @@ -45,22 +45,22 @@ function peopleCard(props: InterfaceOrganizationCardProps): JSX.Element { src={imageUrl} width="80px" height="auto" - className={`${styles.personImage}`} + className={styles.personImage_peoplecard} /> {/* Person's name */} - + {props.name} {/* Person's email */} - + {props.email} {/* Person's role with additional styling */} -
-
- {props.role} +
+
+ {props.role}
diff --git a/src/screens/UserPortal/People/People.module.css b/src/screens/UserPortal/People/People.module.css deleted file mode 100644 index a87a03f3d8..0000000000 --- a/src/screens/UserPortal/People/People.module.css +++ /dev/null @@ -1,78 +0,0 @@ -.borderNone { - border: none; -} -.borderBox { - border: 1px solid #dddddd; -} - -.borderRounded5 { - border-radius: 5px; -} - -.borderRounded8 { - border-radius: 8px; -} - -.borderRounded24 { - border-radius: 24px; -} - -.topRadius { - border-top-left-radius: 24px; - border-top-right-radius: 24px; -} - -.bottomRadius { - border-bottom-left-radius: 24px; - border-bottom-right-radius: 24px; -} - -.shadow { - box-shadow: 5px 5px 4px 0px #31bb6b1f; -} - -.colorWhite { - color: white; -} - -.colorGreen { - color: #31bb6b; -} - -.backgroundWhite { - background-color: white; -} - -.maxWidth { - max-width: 600px; -} - -.mainContainer { - width: 50%; - flex-grow: 3; -} - -.content { - height: fit-content; - min-height: calc(100% - 40px); -} - -.gap { - gap: 20px; -} - -.colorPrimary { - background: #31bb6b; -} - -.greenBorder { - border: 1px solid #31bb6b; -} - -.semiBold { - font-weight: 500; -} - -.placeholderColor::placeholder { - color: #737373; -} diff --git a/src/screens/UserPortal/People/People.tsx b/src/screens/UserPortal/People/People.tsx index a16123c544..6894152742 100644 --- a/src/screens/UserPortal/People/People.tsx +++ b/src/screens/UserPortal/People/People.tsx @@ -1,14 +1,15 @@ import React, { useEffect, useState } from 'react'; import PeopleCard from 'components/UserPortal/PeopleCard/PeopleCard'; -import { Dropdown, Form, InputGroup } from 'react-bootstrap'; +import { Dropdown, Form, Button } from 'react-bootstrap'; import PaginationList from 'components/PaginationList/PaginationList'; import { ORGANIZATIONS_MEMBER_CONNECTION_LIST, ORGANIZATION_ADMINS_LIST, } from 'GraphQl/Queries/Queries'; import { useQuery } from '@apollo/client'; -import { FilterAltOutlined, SearchOutlined } from '@mui/icons-material'; -import styles from './People.module.css'; +import SearchOutlinedIcon from '@mui/icons-material/SearchOutlined'; +import { FilterAltOutlined } from '@mui/icons-material'; +import styles from '../../../style/app.module.css'; import { useTranslation } from 'react-i18next'; import HourglassBottomIcon from '@mui/icons-material/HourglassBottom'; import { useParams } from 'react-router-dom'; @@ -145,117 +146,110 @@ export default function people(): JSX.Element { return ( <> -
-
-
- - - - - - - - - - {tCommon('filter').toUpperCase()} - - - {modes.map((value, index) => { - return ( - setMode(index)} - > - {value} - - ); - })} - - -
-
-
+
+
+ + +
+ + +
-
+ - {loading ? ( -
- Loading... -
- ) : ( - <> - {members && members.length > 0 ? ( - (rowsPerPage > 0 - ? members.slice( - page * rowsPerPage, - page * rowsPerPage + rowsPerPage, - ) - : members - ).map((member: InterfaceMember, index) => { - const name = `${member.firstName} ${member.lastName}`; + + {tCommon('filter')} +
+ + {modes.map((value, index) => { + return ( + setMode(index)} + > + {value} + + ); + })} + + +
+
+
+ + S.No + Avatar + + Name + Email + Role +
+ +
+ {loading ? ( +
+ Loading... +
+ ) : ( + <> + {members && members.length > 0 ? ( + (rowsPerPage > 0 + ? members.slice( + page * rowsPerPage, + page * rowsPerPage + rowsPerPage, + ) + : members + ).map((member: InterfaceMember, index) => { + const name = `${member.firstName} ${member.lastName}`; - const cardProps: InterfaceOrganizationCardProps = { - name, - image: member.image, - id: member._id, - email: member.email, - role: member.userType, - sno: (index + 1).toString(), - }; - return ; - }) - ) : ( - {t('nothingToShow')} - )} - - )} -
- - - - - - -
+ const cardProps: InterfaceOrganizationCardProps = { + name, + image: member.image, + id: member._id, + email: member.email, + role: member.userType, + sno: (index + 1).toString(), + }; + return ; + }) + ) : ( + {t('nothingToShow')} + )} + + )}
+
- {/* */}
); diff --git a/src/style/app.module.css b/src/style/app.module.css index 4b0b1f90b6..7fa5e19d50 100644 --- a/src/style/app.module.css +++ b/src/style/app.module.css @@ -1,18 +1,18 @@ /** * CSS Methodology for Common Styles: - * + * * This project aims to reduce CSS duplication by merging similar styles across components * into reusable global classes. This ensures consistency and simplifies maintenance. - * + * * Steps for contributors: * 1. Identify duplicate or similar styles in different components (e.g., buttons, modals). * 2. Create a global class with a clear, descriptive name (e.g., .addButton, .removeButton). * 3. Use the new global class in all components requiring that style. - * + * * Naming Convention: * - Use lowercase, descriptive names for global classes (e.g., .addButton, .removeButton). * - Keep names generic enough for reuse but clear in their purpose. - * + * * Example: * Instead of component-specific classes like: * `.greenregbtnOrganizationFundCampaign`, `.greenregbtnPledge` (used in two different components for same functionality) @@ -94,6 +94,7 @@ --black: black; --rating-star-filled: #ff6d75; --rating-star-hover: #ff3d47; + /* Background and Border */ --table-bg: #eaebef; --tablerow-bg: #eff1f7; @@ -102,6 +103,20 @@ --tablerow-bg-color: #ffffff; --row-background: var(--bs-white, var(--bs-white)); --modal-background: rgba(0, 0, 0, 0.7); + --input-field-border: var(--dimp-white); + --input-field-bg: #fff; + --input-field-shadow: var(--black-shadow-color); + --search-button-shadow: #0000001a; + --people-card-header-bg: #eaebef; + --people-card-header-border: #e8e5e5; + --people-role-border: #dee2e6; + --shadow: #d9d9d9; + --placeholder-color: #737373; + --people-card-container-border: #eaebef; + --people-card-container-bg: #fff; + --background-color: #fff; + --dropdown-shadow: #0000004c; + --dropdown-color: #555555; /* Font Sizes */ --font-size-header: 16px; @@ -320,13 +335,13 @@ .dropdown { background-color: var(--bs-white) !important; + min-width: 150px; border: 1px solid var(--brown-color); color: var(--brown-color) !important; position: relative; display: inline-block; margin-top: 10px; margin-bottom: 10px; - box-shadow: 2.5px 2.5px 2.5px rgba(0, 0, 0, 0.3); } .dropdown:is( @@ -338,9 +353,9 @@ :disabled, :checked ) { - background-color: transparent !important; - border: 1px solid var(--brown-color); - color: var(--brown-color) !important; + box-shadow: 2.5px 2.5px 2.5px var(--dropdown-shadow); + border: 1px solid var(--brown-color) !important; + color: var(--dropdown-color) !important; } .dropdown:is(:focus, :focus-visible) { @@ -354,12 +369,6 @@ color: var(--brown-color) !important; } -/* .dropdown:disabled { - background-color: transparent !important; - border: 1px solid var(--brown-color); - color: var(--brown-color) !important; -} */ - .dropdownItem { background-color: var(--bs-white) !important; color: var(--brown-color) !important; @@ -498,7 +507,11 @@ } .inputField:focus { - box-shadow: 0 0 0 0.25rem var(--light-blue); + border: 0.1px solid var(--input-field-border) !important; + background-color: var(--input-field-bg) !important; + box-shadow: 4px 4px 8px var(--input-field-shadow); + outline: none; + transition: box-shadow 0.2s ease; } .inputFieldModal { @@ -514,8 +527,8 @@ .searchButton { margin-bottom: 10px; - background-color: var(--search-button-bg); - border-color: var(--search-button-bg); + background-color: var(--search-button-bg) !important; + border-color: var(--search-button-bg) !important; position: absolute; z-index: 10; bottom: 0; @@ -523,17 +536,26 @@ display: flex; justify-content: center; align-items: center; + transition: + box-shadow 0.2s ease, + transform 0.2s ease; } .searchButton:hover { - background-color: var(--search-button-hover-bg, var(--light-blue-color)); - border-color: var(--search-button-hover-bg, var(--light-blue-color)); + background-color: var(--search-button-bg) !important; + border-color: var(--search-button-bg) !important; + box-shadow: 0px 4px 10px var(--search-button-shadow); } .searchButton:active { - transform: scale(0.95); - background-color: var(--search-button-hover-bg, #286fe0) !important; - border-color: transparent !important; + background-color: var(--search-button-bg) !important; + border-color: var(--search-button-bg) !important; + transform: scale(0.98); +} + +.searchButton:focus { + outline: none !important; + box-shadow: 0px 4px 10px var(--search-button-shadow); } .addButton { @@ -2618,7 +2640,12 @@ input[type='radio']:checked + label:hover { color: var(--grey-bg-color-dark); } -.topRadius { +.people_card_header { + background-color: var(--people-card-header-bg); + display: flex; + border: 1px solid var(--people-card-header-border); + padding: 1rem 1.5rem; + margin-top: 1.5rem; border-top-left-radius: 16px; border-top-right-radius: 16px; } @@ -4456,7 +4483,16 @@ button[data-testid='createPostBtn'] { .mainContainer { margin-top: 2rem; width: 100%; - max-width: 800px; + /* max-width: 800px; */ + flex-grow: 3; + max-height: 90vh; + overflow: auto; + padding: 0 1rem; +} + +.mainContainer_people { + margin-top: 2rem; + width: 100%; flex-grow: 3; max-height: 90vh; overflow: auto; @@ -6390,3 +6426,97 @@ button[data-testid='createPostBtn'] { font-weight: bold; color: var(--black-color); } + +/* people card */ +.personImage_peoplecard { + border-radius: 50%; + margin-right: 25px; + max-width: 70px; +} + +.people_card_container { + display: flex; +} + +.display_flex { + display: flex; +} + +.align_center { + align-self: center; +} + +.people_role { + width: 75%; + border: 1px solid var(--people-role-border); + padding-top: 0.5rem; + padding-bottom: 0.5rem; + padding-left: 1rem; + padding-right: 1rem; + border-radius: 0.25rem; +} + +/* People.tsx */ + +.borderRounded8 { + border-radius: 8px; +} + +.bottomRadius { + border-bottom-left-radius: 24px; + border-bottom-right-radius: 24px; +} + +.shadow { + box-shadow: 5px 5px 4px 0px var(--shadow); +} + +.backgroundWhite { + background-color: var(--background-color); +} + +.people_content { + display: flex; + flex-direction: column; + height: fit-content; + min-height: calc(100% - 40px); +} + +.gap { + gap: 20px; +} + +.semiBold { + font-weight: 500; +} + +.placeholderColor::placeholder { + color: var(--placeholder-color); +} + +.people__header { + display: flex; + align-items: center; + justify-content: space-between; + margin-right: 50px; +} + +.people_card_main_container { + display: flex; + flex-direction: column; + border: 1px solid var(--people-card-container-border); + padding: 1rem; + padding-left: 1.5rem; + padding-right: 1.5rem; + margin-top: 0; + gap: var(--spacing-lg, 1.25rem); + border-bottom-left-radius: 24px; + border-bottom-right-radius: 24px; + background-color: var(--people-card-container-bg); +} + +.custom_row_center { + display: flex; + flex-direction: row; + justify-content: center; +} From 5b4983b0aacfdff2645bae210f8335f6831a849f Mon Sep 17 00:00:00 2001 From: Peter Harrison <16875803+palisadoes@users.noreply.github.com> Date: Mon, 20 Jan 2025 12:47:27 -0800 Subject: [PATCH 41/42] Update pull-request.yml --- .github/workflows/pull-request.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/pull-request.yml b/.github/workflows/pull-request.yml index 3165850c74..b36292d53f 100644 --- a/.github/workflows/pull-request.yml +++ b/.github/workflows/pull-request.yml @@ -38,7 +38,7 @@ jobs: - name: Count number of lines run: | chmod +x ./.github/workflows/scripts/countline.py - ./.github/workflows/scripts/countline.py --lines 600 --exclude_files src/screens/LoginPage/LoginPage.tsx src/GraphQl/Queries/Queries.ts src/screens/OrgList/OrgList.tsx src/GraphQl/Mutations/mutations.ts src/components/EventListCard/EventListCardModals.tsx src/components/TagActions/TagActionsMocks.ts src/utils/interfaces.ts src/screens/MemberDetail/MemberDetail.tsx src/components/OrgPostCard/OrgPostCard.tsx + ./.github/workflows/scripts/countline.py --lines 600 --exclude_files src/screens/LoginPage/LoginPage.tsx src/GraphQl/Queries/Queries.ts src/screens/OrgList/OrgList.tsx src/GraphQl/Mutations/mutations.ts src/components/EventListCard/EventListCardModals.tsx src/components/TagActions/TagActionsMocks.ts src/utils/interfaces.ts src/screens/MemberDetail/MemberDetail.tsx src/components/OrgPostCard/OrgPostCard.tsx /src/components/UsersTableItem/UsersTableItem.tsx - name: Get changed TypeScript files id: changed-files @@ -519,4 +519,4 @@ jobs: - name: Run docstring compliance check run: | source venv/bin/activate - python .github/workflows/scripts/check_docstrings.py --directories .github \ No newline at end of file + python .github/workflows/scripts/check_docstrings.py --directories .github From d531cf3269ff5028cc7852a006637b3223b80073 Mon Sep 17 00:00:00 2001 From: Rukh-Khan Date: Mon, 20 Jan 2025 21:40:08 +0530 Subject: [PATCH 42/42] feat: homepage-sidebar-fixation --- docs/docs/CONFIGURING.md | 1 + docs/docs/INSTALLATION.md | 1 + .../StaticMockLink/classes/StaticMockLink.md | 10 +- .../interfaces/InterfaceMockApolloLink.md | 2 +- .../variables/requestMiddleware.md | 2 +- .../variables/responseMiddleware.md | 2 +- docs/sidebars.ts | 5 + docs/src/components/GuideCards/GuideCards.css | 85 ++++++++++++++++ docs/src/components/GuideCards/GuideCards.tsx | 97 +++++++++++++++++++ docs/src/components/HeroImage/HeroSection.css | 31 ++++++ docs/src/components/HeroImage/HeroSection.tsx | 31 ++++++ .../src/components/HomepageFeatures/index.tsx | 70 ------------- .../HomepageFeatures/styles.module.css | 11 --- docs/src/css/custom.css | 79 +++++++++++++-- docs/src/pages/index.module.css | 6 -- docs/src/pages/index.tsx | 26 ++--- docs/src/pages/markdown-page.md | 7 -- 17 files changed, 343 insertions(+), 123 deletions(-) create mode 100644 docs/docs/CONFIGURING.md create mode 100644 docs/docs/INSTALLATION.md create mode 100644 docs/src/components/GuideCards/GuideCards.css create mode 100644 docs/src/components/GuideCards/GuideCards.tsx create mode 100644 docs/src/components/HeroImage/HeroSection.css create mode 100644 docs/src/components/HeroImage/HeroSection.tsx delete mode 100644 docs/src/components/HomepageFeatures/index.tsx delete mode 100644 docs/src/components/HomepageFeatures/styles.module.css delete mode 100644 docs/src/pages/markdown-page.md diff --git a/docs/docs/CONFIGURING.md b/docs/docs/CONFIGURING.md new file mode 100644 index 0000000000..e8a147f722 --- /dev/null +++ b/docs/docs/CONFIGURING.md @@ -0,0 +1 @@ +CONFIGURING GUIDE FOR DEVELOPERS diff --git a/docs/docs/INSTALLATION.md b/docs/docs/INSTALLATION.md new file mode 100644 index 0000000000..c3b2484c8b --- /dev/null +++ b/docs/docs/INSTALLATION.md @@ -0,0 +1 @@ +INSTALLATION GUIDE FOR USERS diff --git a/docs/docs/auto-docs/utils/StaticMockLink/classes/StaticMockLink.md b/docs/docs/auto-docs/utils/StaticMockLink/classes/StaticMockLink.md index a7ae5d0ead..67cc112757 100644 --- a/docs/docs/auto-docs/utils/StaticMockLink/classes/StaticMockLink.md +++ b/docs/docs/auto-docs/utils/StaticMockLink/classes/StaticMockLink.md @@ -11,7 +11,7 @@ when it is used allowing it to be used in places like Storybook. ## Extends -- `ApolloLink` +- `unknown` ## Constructors @@ -77,7 +77,7 @@ Defined in: [src/utils/StaticMockLink.ts:45](https://github.com/PalisadoesFounda ### request() -> **request**(`operation`): `Observable`\<`FetchResult`\> +> **request**(`operation`): `any` Defined in: [src/utils/StaticMockLink.ts:60](https://github.com/PalisadoesFoundation/talawa-admin/blob/main/src/utils/StaticMockLink.ts#L60) @@ -89,8 +89,4 @@ Defined in: [src/utils/StaticMockLink.ts:60](https://github.com/PalisadoesFounda #### Returns -`Observable`\<`FetchResult`\> - -#### Overrides - -`ApolloLink.request` +`any` diff --git a/docs/docs/auto-docs/utils/StaticMockLink/interfaces/InterfaceMockApolloLink.md b/docs/docs/auto-docs/utils/StaticMockLink/interfaces/InterfaceMockApolloLink.md index f1504daa57..212d21bcf1 100644 --- a/docs/docs/auto-docs/utils/StaticMockLink/interfaces/InterfaceMockApolloLink.md +++ b/docs/docs/auto-docs/utils/StaticMockLink/interfaces/InterfaceMockApolloLink.md @@ -8,7 +8,7 @@ Defined in: [src/utils/StaticMockLink.ts:157](https://github.com/PalisadoesFound ## Extends -- `ApolloLink` +- `unknown` ## Properties diff --git a/docs/docs/auto-docs/utils/timezoneUtils/dateTimeMiddleware/variables/requestMiddleware.md b/docs/docs/auto-docs/utils/timezoneUtils/dateTimeMiddleware/variables/requestMiddleware.md index 0ecb7755a3..f4a32a7b8d 100644 --- a/docs/docs/auto-docs/utils/timezoneUtils/dateTimeMiddleware/variables/requestMiddleware.md +++ b/docs/docs/auto-docs/utils/timezoneUtils/dateTimeMiddleware/variables/requestMiddleware.md @@ -4,6 +4,6 @@ # Variable: requestMiddleware -> `const` **requestMiddleware**: `ApolloLink` +> `const` **requestMiddleware**: `any` Defined in: [src/utils/timezoneUtils/dateTimeMiddleware.ts:84](https://github.com/PalisadoesFoundation/talawa-admin/blob/main/src/utils/timezoneUtils/dateTimeMiddleware.ts#L84) diff --git a/docs/docs/auto-docs/utils/timezoneUtils/dateTimeMiddleware/variables/responseMiddleware.md b/docs/docs/auto-docs/utils/timezoneUtils/dateTimeMiddleware/variables/responseMiddleware.md index e48d51515e..fcf6ace30c 100644 --- a/docs/docs/auto-docs/utils/timezoneUtils/dateTimeMiddleware/variables/responseMiddleware.md +++ b/docs/docs/auto-docs/utils/timezoneUtils/dateTimeMiddleware/variables/responseMiddleware.md @@ -4,6 +4,6 @@ # Variable: responseMiddleware -> `const` **responseMiddleware**: `ApolloLink` +> `const` **responseMiddleware**: `any` Defined in: [src/utils/timezoneUtils/dateTimeMiddleware.ts:94](https://github.com/PalisadoesFoundation/talawa-admin/blob/main/src/utils/timezoneUtils/dateTimeMiddleware.ts#L94) diff --git a/docs/sidebars.ts b/docs/sidebars.ts index 3e594b841c..f5225082b5 100644 --- a/docs/sidebars.ts +++ b/docs/sidebars.ts @@ -16,6 +16,11 @@ const sidebars: SidebarsConfig = { // By default, Docusaurus generates a sidebar from the docs folder structure tutorialSidebar: [ 'docs/introduction', + { + type: 'category', + label: 'Manual', + items: ['INSTALLATION', 'CONFIGURING'], + }, { type: 'category', label: 'Plugins', diff --git a/docs/src/components/GuideCards/GuideCards.css b/docs/src/components/GuideCards/GuideCards.css new file mode 100644 index 0000000000..af7ab4940d --- /dev/null +++ b/docs/src/components/GuideCards/GuideCards.css @@ -0,0 +1,85 @@ +.card-grid { + display: grid; + grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); + gap: 4rem; + padding: 20px; + height: fit-content; +} + +.card { + background-color: var(--ifm-color-emphasis-100); + box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); + padding: 20px; + text-align: left; + transition: + transform 0.2s ease-in-out, + box-shadow 0.2s ease-in-out; + display: flex; + flex-direction: column; + height: 100%; + width: 100%; + border-radius: 10px; +} + +.guide-header { + display: inline-flex; + align-items: baseline; + gap: 15px; + margin-bottom: 20px; +} + +.svg-icon { + width: 35px; + height: 24px; + fill: currentColor; + flex-shrink: 0; + margin-left: 1rem; +} + +.card-item { + display: flex; + align-items: center; + justify-content: space-between; + padding: 0 1rem; + margin: 0.5rem 0; + border-radius: 12px; + text-decoration: none; + color: inherit; + transition: background-color 0.2s; +} + +.card-item:hover { + background-color: var(--ifm-color-emphasis-200); + text-decoration: none; + cursor: pointer; +} + +.card h3 { + color: var(--secondary-blue-900); + font-size: 1.1rem; + margin-bottom: 0.5rem; +} + +.card p { + color: var(--primary-neutral-600); + line-height: 1.5; + padding: 0; + margin-bottom: 20px; +} + +.card:hover { + border: 1px solid var(--ifm-color-emphasis-200); + transform: translateY(-5px); +} + +@media (max-width: 768px) { + .card-grid { + grid-template-columns: 1fr; + height: fit-content; + } + + .card { + justify-content: center; + height: 300px; + } +} diff --git a/docs/src/components/GuideCards/GuideCards.tsx b/docs/src/components/GuideCards/GuideCards.tsx new file mode 100644 index 0000000000..becdcca381 --- /dev/null +++ b/docs/src/components/GuideCards/GuideCards.tsx @@ -0,0 +1,97 @@ +import './GuideCards.css'; + +const GuideCards = () => { + const ChevronRightArrowIcon = () => ( + + + + ); + + const DeveloperGuideIcon = () => ( + + + + ); + + const UserGuideIcon = () => ( + + + + ); + const Guides = [ + { + title: 'Developer Guides', + icon: , + items: [ + { + title: 'Manual Documentation', + description: + 'Setup guides, best practices, and contribution guidelines', + href: '/docs/INSTALLATION', + }, + { + title: 'Plugins Documentation', + description: 'Explore Talawa Plugins documentation Guide', + href: '/docs/docs/plugins/implementing-plugins-example', + }, + { + title: 'Code Documentation', + description: 'Explore API references and component documentation', + href: '/docs/INSTALLATION', + }, + ], + }, + { + title: 'User Guides', + icon: , + items: [ + { + title: 'Getting Started', + description: 'Learn the basics of using Talawa', + }, + { + title: 'Advanced Features', + description: 'Detailed guides for power users', + }, + ], + }, + ]; + + return ( +
+ ); +}; + +export default GuideCards; diff --git a/docs/src/components/HeroImage/HeroSection.css b/docs/src/components/HeroImage/HeroSection.css new file mode 100644 index 0000000000..116455d4d4 --- /dev/null +++ b/docs/src/components/HeroImage/HeroSection.css @@ -0,0 +1,31 @@ +.heroBanner_qdFl { + background-color: transparent; +} + +.header-image { + max-height: 60vh; + margin: auto; + padding: 0; +} + +.Hero, +.heroBanner_qdFl { + padding-bottom: 0 !important; +} + +.hero-image-section { + display: flex; + justify-content: center; + padding-top: 2rem; +} + +.hero-image { + height: 100%; +} + +@media (min-width: 480px) { + .hero-image-section { + min-height: 600px; + max-height: 950px; + } +} diff --git a/docs/src/components/HeroImage/HeroSection.tsx b/docs/src/components/HeroImage/HeroSection.tsx new file mode 100644 index 0000000000..ccc6b1f08b --- /dev/null +++ b/docs/src/components/HeroImage/HeroSection.tsx @@ -0,0 +1,31 @@ +import './HeroSection.css'; +import React, { useEffect } from 'react'; + +export default function HeroSection() { + useEffect(() => { + const script = document.createElement('script'); + script.src = + 'https://unpkg.com/@lottiefiles/lottie-player@2.0.8/dist/lottie-player.js'; + script.async = true; + document.body.appendChild(script); + return () => { + document.body.removeChild(script); + }; + }, []); + + return ( +
+
+ {/* React.createElement is used to suppress TypeScript errors as VS code throws an error for lottie-player othe */} + {React.createElement('lottie-player', { + src: 'https://lottie.host/c3d8ee59-5c73-46f7-8c4e-a66763f5eba3/80bnwExY98.json', + background: 'transparent', + speed: '1', + loop: true, + autoplay: true, + style: { height: '100%' }, + })} +
+
+ ); +} diff --git a/docs/src/components/HomepageFeatures/index.tsx b/docs/src/components/HomepageFeatures/index.tsx deleted file mode 100644 index 7e72738d82..0000000000 --- a/docs/src/components/HomepageFeatures/index.tsx +++ /dev/null @@ -1,70 +0,0 @@ -import clsx from 'clsx'; -import Heading from '@theme/Heading'; -import styles from './styles.module.css'; - -type FeatureItem = { - title: string; - Svg: React.ComponentType>; - description: JSX.Element; -}; - -const FeatureList: FeatureItem[] = [ - { - title: 'Easy to Use', - Svg: require('@site/static/img/undraw_docusaurus_mountain.svg').default, - description: ( - <> - Docusaurus was designed from the ground up to be easily installed and - used to get your website up and running quickly. - - ), - }, - { - title: 'Focus on What Matters', - Svg: require('@site/static/img/undraw_docusaurus_tree.svg').default, - description: ( - <> - Docusaurus lets you focus on your docs, and we'll do the chores. Go - ahead and move your docs into the docs directory. - - ), - }, - { - title: 'Powered by React', - Svg: require('@site/static/img/undraw_docusaurus_react.svg').default, - description: ( - <> - Extend or customize your website layout by reusing React. Docusaurus can - be extended while reusing the same header and footer. - - ), - }, -]; - -function Feature({ title, Svg, description }: FeatureItem) { - return ( -
-
- -
-
- {title} -

{description}

-
-
- ); -} - -export default function HomepageFeatures(): JSX.Element { - return ( -
-
-
- {FeatureList.map((props, idx) => ( - - ))} -
-
-
- ); -} diff --git a/docs/src/components/HomepageFeatures/styles.module.css b/docs/src/components/HomepageFeatures/styles.module.css deleted file mode 100644 index b248eb2e5d..0000000000 --- a/docs/src/components/HomepageFeatures/styles.module.css +++ /dev/null @@ -1,11 +0,0 @@ -.features { - display: flex; - align-items: center; - padding: 2rem 0; - width: 100%; -} - -.featureSvg { - height: 200px; - width: 200px; -} diff --git a/docs/src/css/custom.css b/docs/src/css/custom.css index f0f927b720..65d34bb862 100644 --- a/docs/src/css/custom.css +++ b/docs/src/css/custom.css @@ -25,7 +25,7 @@ --ifm-color-emphasis-0: #fff; --ifm-color-primary: #1e56e3; --ifm-background-surface-color: var(--ifm-color-white); - --ifm-menu-color: var(--ifm-color-gray-600); + /* --ifm-menu-color: var(--ifm-color-gray-600); */ --ifm-toc-link-color: var(--ifm-color-gray-600); --ifm-code-font-size: 95%; --ifm-toc-border-color: transparent; @@ -46,7 +46,7 @@ Consolas, 'Liberation Mono', 'Courier New', monospace; } -/* Dak mode css */ +/* Dark mode css */ html[data-theme='dark'] { --ifm-background-color: #111927; @@ -98,8 +98,7 @@ h1.docTitle_node_modules-\@docusaurus-theme-classic-src-theme-DocItem- { .menu__link, .menu * { line-height: 1.5; - font-size: 0.7rem; - padding-left: 0.5rem; + font-size: 0.72rem; padding-bottom: 0; text-transform: uppercase; font-weight: 700; @@ -110,9 +109,39 @@ h1.docTitle_node_modules-\@docusaurus-theme-classic-src-theme-DocItem- { border-bottom: 1px solid var(--next-prev-border-color); } -.menu__list ul { - margin-left: 15px; - margin-right: 15px; +/* Target specifically the link text */ +.menu__link { + white-space: normal !important; + word-break: break-word !important; + overflow-wrap: break-word !important; + width: 100% !important; + max-width: 100% !important; + line-height: 1.2 !important; + padding-right: 1rem !important; +} + +/* Target the container of menu items */ +.menu__list-item { + width: 100% !important; + padding-right: 0 !important; +} + +/* Ensure the menu itself has proper width */ +.menu__list { + width: 100% !important; +} + +/* Target the entire menu container */ +.theme-doc-sidebar-menu { + width: 100% !important; + max-width: 100% !important; +} + +@media (min-width: 997px) { + .menu_SIkG { + flex-grow: 1; + padding: 1rem !important; + } } .markdown > h2 { @@ -164,6 +193,14 @@ h1.docTitle_node_modules-\@docusaurus-theme-classic-src-theme-DocItem- { color: var(--ifm-navbar-link-color); } +.markdown { + --ifm-h1-vertical-rhythm-top: 3; + --ifm-h2-vertical-rhythm-top: 4.5; + --ifm-h3-vertical-rhythm-top: 2.5; + --ifm-heading-vertical-rhythm-top: 1.25; + --ifm-h1-vertical-rhythm-bottom: 1.25; +} + .header-github-link:hover { opacity: 0.7; } @@ -321,6 +358,22 @@ html[data-theme='dark'] .header-youtube-link:before { background: url(/img/icons/youtube-white.svg) no-repeat; } +.markdown > button { + background: linear-gradient(90deg, #ff3600 0%, #ff8100 100%); + border: none; + border-radius: 5px; + padding: 16.8px 32px; + color: #fff; + font-weight: bold; + cursor: pointer; + transition: 0.8s; + font-size: 16px; +} + +.markdown > button:hover { + background: linear-gradient(90deg, #ff3600 30%, #ff8100 78%); +} + @media (max-width: 996px) { .navbar__item.github-button { display: none; @@ -423,3 +476,15 @@ a:hover { .iconExternalLink_nPIU { display: none !important; } + +.section-container { + max-width: 1200px; + margin: 0 auto; + padding: 20px; + width: 100%; + box-sizing: border-box; +} + +.hero__subtitle { + line-height: 1.4; +} diff --git a/docs/src/pages/index.module.css b/docs/src/pages/index.module.css index 9f71a5da77..25907e2d69 100644 --- a/docs/src/pages/index.module.css +++ b/docs/src/pages/index.module.css @@ -15,9 +15,3 @@ padding: 2rem; } } - -.buttons { - display: flex; - align-items: center; - justify-content: center; -} diff --git a/docs/src/pages/index.tsx b/docs/src/pages/index.tsx index 300781adf2..5bef4776f3 100644 --- a/docs/src/pages/index.tsx +++ b/docs/src/pages/index.tsx @@ -2,35 +2,37 @@ import clsx from 'clsx'; import Link from '@docusaurus/Link'; import useDocusaurusContext from '@docusaurus/useDocusaurusContext'; import Layout from '@theme/Layout'; -import HomepageFeatures from '@site/src/components/HomepageFeatures'; import Heading from '@theme/Heading'; +import HeroSection from '@site/src/components/HeroImage/HeroSection'; import styles from './index.module.css'; +import GuideCards from '../components/GuideCards/GuideCards'; function HomepageHeader() { const { siteConfig } = useDocusaurusContext(); return ( -
-
- - {siteConfig.title} - -

{siteConfig.tagline}

-
-
+
+
+
+

{siteConfig.title}

+

{siteConfig.tagline}

+
+
+
); } -export default function Home(): JSX.Element { +export default function Home() { const { siteConfig } = useDocusaurusContext(); return (
- + +
); diff --git a/docs/src/pages/markdown-page.md b/docs/src/pages/markdown-page.md deleted file mode 100644 index 9756c5b668..0000000000 --- a/docs/src/pages/markdown-page.md +++ /dev/null @@ -1,7 +0,0 @@ ---- -title: Markdown page example ---- - -# Markdown page example - -You don't need React to write simple standalone pages.