opnform-host-nginx/client
Chirag Chhatrala 35efd6711d
Remove old code related to notifications (#363)
* Integrations Refactoring - WIP

* integrations list & edit - WIP

* Fix integration store binding issue

* integrations refactor - WIP

* Form integration - WIP

* Form integration Edit - WIP

* Integration Refactor - Slack - WIP

* Integration Refactor - Discord - WIP

* Integration Refactor - Webhook - WIP

* Integration Refactor - Send Submission Confirmation - WIP

* Integration Refactor - Backend handler - WIP

* Form Integration Status field

* Integration Refactor - Backend SubmissionConfirmation - WIP

* IntegrationMigration Command

* skip confirmation email test case

* Small refactoring

* FormIntegration status active/inactive

* formIntegrationData to integrationData

* Rename file name with Integration suffix for integration realted files

* Loader on form integrations

* WIP

* form integration test case

* WIP

* Added Integration card - working on refactoring

* change location for IntegrationCard and update package file

* Form Integration Create/Edit in single Modal

* Remove integration extra pages

* crisp_help_page_slug for integration json

* integration logic as collapse

* UI improvements

* WIP

* Trying to debug vue devtools

* WIP for integrations

* getIntegrationHandler change namespace name

* useForm for integration fields + validation structure

* Integration Test case & apply validation rules

* Apply useform changes to integration other files

* validation rules for FormNotificationsMessageActions fields

* Zapier integration as coming soon

* Update FormCleaner

* set default settings for confirmation integration

* WIP

* Finish validation for all integrations

* Updated purify, added integration formatData

* Fix testcase

* Ran pint; working on integration errors

* Handle integration events

* Remove old code related to notifications

* command for Delete Old Integration Events

* Display Past Events in Modal

* on Integration event create with status error send email to form creator

* Polish styling

* Minor improvements

* Finish badge and integration status

* Fix tests and add an integration event test

* Run linters

---------

Co-authored-by: Forms Dev <chirag+new@notionforms.io>
Co-authored-by: Julien Nahum <julien@nahum.net>
2024-03-28 18:46:29 +01:00
..
components Remove old code related to notifications (#363) 2024-03-28 18:46:29 +01:00
composables Remove old code related to notifications (#363) 2024-03-28 18:46:29 +01:00
data Notification & Integrations refactoring (#346) 2024-03-28 18:14:30 +01:00
layouts Revert "product hunt launch 🚀" 2024-02-23 12:20:49 +01:00
lib fix: opt in to `import.meta.*` properties (#364) 2024-03-28 17:59:41 +01:00
middleware fix: opt in to `import.meta.*` properties (#364) 2024-03-28 17:59:41 +01:00
mixins/forms remove extra file (#297) 2024-01-29 11:42:24 +01:00
pages Remove old code related to notifications (#363) 2024-03-28 18:46:29 +01:00
plugins fix: opt in to `import.meta.*` properties (#364) 2024-03-28 17:59:41 +01:00
public Auto-resize iframes, fix custom code, fix create form initial properties 2024-02-01 18:21:30 +01:00
scss Hide featurebase on public form pages 2024-03-12 16:13:00 +01:00
server Fix form show page - clean code 2024-01-16 11:46:03 +01:00
stores Notification & Integrations refactoring (#346) 2024-03-28 18:14:30 +01:00
.env.docker remove nuxtimg (#347) 2024-03-19 17:59:10 +01:00
.env.example update env example (#322) 2024-02-16 17:08:51 +01:00
.gitignore Reworked docker scripts for new nuxt infrastructure (#285) 2024-01-18 16:35:45 +01:00
README.md Work in progress 2023-12-09 15:47:03 +01:00
app.config.ts Notification & Integrations refactoring (#346) 2024-03-28 18:14:30 +01:00
app.vue Added featurebase (#344) 2024-03-12 12:43:17 +01:00
error.vue remove nuxtimg (#347) 2024-03-19 17:59:10 +01:00
nuxt.config.ts Notification & Integrations refactoring (#346) 2024-03-28 18:14:30 +01:00
opnform.config.js Added featurebase (#344) 2024-03-12 12:43:17 +01:00
package-lock.json Notification & Integrations refactoring (#346) 2024-03-28 18:14:30 +01:00
package.json Notification & Integrations refactoring (#346) 2024-03-28 18:14:30 +01:00
runtimeConfig.js remove nuxtimg (#347) 2024-03-19 17:59:10 +01:00
sitemap.js Fix sitemap source URL 2024-01-15 13:00:18 +01:00
tailwind.config.js include form-themes in tailwind config (#314) 2024-02-07 09:53:43 +01:00
tsconfig.json Work in progress 2023-12-09 15:47:03 +01:00

README.md

Nuxt 3 Minimal Starter

Look at the Nuxt 3 documentation to learn more.

Setup

Make sure to install the dependencies:

# npm
npm install

# pnpm
pnpm install

# yarn
yarn install

# bun
bun install

Development Server

Start the development server on http://localhost:3000:

# npm
npm run dev

# pnpm
pnpm run dev

# yarn
yarn dev

# bun
bun run dev

Production

Build the application for production:

# npm
npm run build

# pnpm
pnpm run build

# yarn
yarn build

# bun
bun run build

Locally preview production build:

# npm
npm run preview

# pnpm
pnpm run preview

# yarn
yarn preview

# bun
bun run preview

Check out the deployment documentation for more information.