corrad-bp/doc/FORM_BUILDER_TECHNICAL_APPENDIX.md
Md Afiq Iskandar 668e08884e Enhance Form and Process Builder Documentation
- Updated the Form Builder documentation to include integration details with the Process Builder, outlining how to connect forms to processes and manage form data.
- Added a new section on Process Builder integration, detailing API endpoints for form selection and loading forms by URL parameters.
- Improved the Process Builder documentation with instructions for adding form tasks, selecting forms, and handling form data within processes.
- Updated last modified dates for documentation files to reflect recent changes.
2025-05-15 10:42:58 +08:00

12 KiB

Form Builder Technical Appendix

This document provides technical implementation details for developers working with the Form Builder system.

For user documentation and usage guidelines, please refer to Form Builder Documentation

Architecture Overview

Technology Stack

  • Frontend Framework: Nuxt 3 / Vue 3
  • State Management: Pinia
  • Form Library: FormKit
  • UI Framework: Tailwind CSS
  • Icons: Material Design Icons
  • Drag & Drop: vuedraggable

Key Dependencies

{
  "@formkit/nuxt": "^1.0.0",
  "@pinia/nuxt": "^0.4.11",
  "vuedraggable": "^4.1.0",
  "@vueuse/core": "^10.1.2",
  "tailwindcss": "^3.3.2"
}

Project Structure

pages/
├── form-builder/
│   ├── index.vue          # Main builder interface
│   └── manage.vue         # Form management
components/
├── FormBuilderComponents.vue  # Component library
├── FormBuilderCanvas.vue      # Form canvas
├── FormBuilderConfiguration.vue # Component config
└── ComponentPreview.vue       # Preview renderer
stores/
└── formBuilder.js        # State management
composables/
└── useToast.js          # Toast notifications
types/
└── form-builder.d.ts    # TypeScript definitions
server/
└── api/
    └── forms/
        ├── index.js     # Form API endpoints
        └── [id].js      # Form by ID endpoints

Component Architecture

Core Components

  1. FormBuilderComponents.vue
<script setup>
const emit = defineEmits(['add-component']);
const searchQuery = ref('');

// Component categories and definitions
const availableComponents = [
  {
    type: 'text',
    name: 'Text Field',
    category: 'Basic Inputs',
    icon: 'material-symbols:text-fields',
    defaultProps: {
      type: 'text',
      placeholder: '',
      validation: ''
    }
  },
  // ... other components
];

// Search and filtering logic
const filteredComponents = computed(() => {
  if (!searchQuery.value) return availableComponents;
  return availableComponents.filter(component => 
    component.name.toLowerCase().includes(searchQuery.value.toLowerCase())
  );
});

// Drag handlers
const onDragStart = (event, component) => {
  event.dataTransfer.effectAllowed = 'copy';
  event.dataTransfer.setData('component', JSON.stringify(component));
};
</script>
  1. FormBuilderCanvas.vue
<script setup>
const props = defineProps({
  components: {
    type: Array,
    required: true
  }
});

// Drag and drop configuration
const dragOptions = {
  animation: 300,
  group: 'form-components',
  ghostClass: 'ghost',
  handle: '.drag-handle'
};

// Component selection
const selectComponent = (id) => {
  formStore.selectComponent(id);
};

// Grid system implementation
const calculateGridPosition = (index) => {
  return {
    gridColumn: `span ${component.width || 12} / span ${component.width || 12}`,
    order: index
  };
};
</script>

State Management

Pinia Store Structure

interface FormState {
  formComponents: FormComponent[];
  selectedComponentId: string | null;
  formName: string;
  formDescription: string;
  formId: string | null;
  formUUID: string | null;
  isDraggingOver: boolean;
  savedForms: SavedForm[];
}

export const useFormBuilderStore = defineStore('formBuilder', {
  state: (): FormState => ({
    formComponents: [],
    selectedComponentId: null,
    formName: 'New Form',
    formDescription: '',
    formId: null,
    formUUID: null,
    isDraggingOver: false,
    savedForms: []
  }),
  
  getters: {
    selectedComponent: (state) => {
      if (!state.selectedComponentId) return null;
      return state.formComponents.find(c => c.id === state.selectedComponentId);
    },
    
    formConfig: (state) => {
      return {
        id: state.formId,
        uuid: state.formUUID,
        name: state.formName,
        description: state.formDescription,
        components: state.formComponents
      };
    }
  },
  
  actions: {
    addComponent(component: FormComponent) {
      this.formComponents.push({
        ...component,
        id: component.id || uuidv4()
      });
    },
    
    updateComponent(id: string, updates: Partial<FormComponent>) {
      const index = this.formComponents.findIndex(c => c.id === id);
      if (index !== -1) {
        this.formComponents[index] = {
          ...this.formComponents[index],
          ...updates
        };
      }
    },
    
    deleteComponent(id: string) {
      const index = this.formComponents.findIndex(c => c.id === id);
      if (index !== -1) {
        this.formComponents.splice(index, 1);
        if (this.selectedComponentId === id) {
          this.selectedComponentId = null;
        }
      }
    },
    
    moveComponent(oldIndex: number, newIndex: number) {
      if (oldIndex === newIndex) return;
      const component = this.formComponents.splice(oldIndex, 1)[0];
      this.formComponents.splice(newIndex, 0, component);
    },
    
    saveForm() {
      return fetch('/api/forms', {
        method: this.formId ? 'PUT' : 'POST',
        headers: { 'Content-Type': 'application/json' },
        body: JSON.stringify(this.formConfig)
      })
      .then(response => response.json())
      .then(data => {
        this.formId = data.formID;
        this.formUUID = data.formUUID;
        return data;
      });
    },
    
    loadForm(id: string) {
      return fetch(`/api/forms/${id}`)
        .then(response => response.json())
        .then(data => {
          this.formId = data.formID;
          this.formUUID = data.formUUID;
          this.formName = data.formName;
          this.formDescription = data.formDescription;
          this.formComponents = data.components;
          return data;
        });
    }
  }
});

Form Component Types

Type Definitions

interface BaseComponent {
  id: string;
  type: string;
  name: string;
  category: ComponentCategory;
  icon: string;
  props: BaseComponentProps;
}

interface BaseComponentProps {
  name: string;
  label: string;
  help?: string;
  validation?: string;
  width?: number;
}

interface InputComponent extends BaseComponent {
  props: InputComponentProps;
}

interface SelectComponent extends BaseComponent {
  props: SelectComponentProps;
}

// Additional type definitions...

Validation System

Implementation

const validationRules = {
  required: 'Value is required',
  email: 'Invalid email format',
  min: (min: number) => `Minimum value is ${min}`,
  max: (max: number) => `Maximum value is ${max}`,
  between: (min: number, max: number) => 
    `Value must be between ${min} and ${max}`,
  pattern: (pattern: string) => 
    `Value must match pattern: ${pattern}`
};

const validateField = (value: any, rules: string) => {
  // Validation implementation
};

Grid System

Implementation

const gridSystem = {
  columns: 12,
  breakpoints: {
    sm: 640,
    md: 768,
    lg: 1024,
    xl: 1280
  },
  calculateSpan: (width: number) => 
    Math.min(Math.max(1, Math.round(width * 12)), 12)
};

Process Builder Integration

API Endpoints for Form Selection

// server/api/forms/index.js
export default defineEventHandler(async (event) => {
  try {
    // Get all forms for selection in Process Builder
    const forms = await prisma.form.findMany({
      select: {
        formID: true,
        formUUID: true,
        formName: true,
        formDescription: true,
        createdAt: true,
        updatedAt: true
      },
      orderBy: {
        updatedAt: 'desc'
      }
    });
    
    return { forms };
  } catch (error) {
    console.error('Error fetching forms:', error);
    throw createError({
      statusCode: 500,
      statusMessage: 'Failed to fetch forms'
    });
  }
});

Form Loading by URL Parameter

// pages/form-builder/index.vue
const route = useRoute();
const formStore = useFormBuilderStore();

// Check for formId parameter to load a specific form
onMounted(async () => {
  const formId = route.query.formId;
  if (formId) {
    try {
      await formStore.loadForm(formId);
    } catch (error) {
      console.error('Error loading form:', error);
      useToast().error('Failed to load form');
    }
  }
});

Form Selection Component

<!-- components/process-flow/FormSelector.vue -->
<template>
  <div class="form-selector">
    <h4 class="text-sm font-medium mb-2">Select Form</h4>
    
    <div v-if="loading" class="text-center py-4">
      <span class="loading"></span>
    </div>
    
    <div v-else-if="error" class="text-center py-4 text-red-500">
      {{ error }}
    </div>
    
    <div v-else-if="forms.length === 0" class="text-center py-4 text-gray-500">
      No forms available
    </div>
    
    <div v-else class="space-y-2">
      <div
        v-for="form in forms"
        :key="form.formID"
        class="form-item p-2 border rounded hover:bg-gray-50 cursor-pointer"
        :class="{ 'border-blue-400 bg-blue-50': modelValue === form.formID }"
        @click="selectForm(form)"
      >
        <div class="font-medium">{{ form.formName }}</div>
        <div class="text-xs text-gray-500">{{ form.formDescription }}</div>
      </div>
    </div>
    
    <div class="mt-4">
      <button
        v-if="modelValue"
        @click="clearSelection"
        class="text-sm text-red-500 hover:underline"
      >
        Clear Selection
      </button>
    </div>
  </div>
</template>

Event Handling

Component Events

const componentEvents = {
  onAdd: (event: DragEvent) => void;
  onUpdate: (event: UpdateEvent) => void;
  onSelect: (id: string) => void;
  onDelete: (id: string) => void;
  onDuplicate: (id: string) => void;
  onValidate: (component: FormComponent) => ValidationResult;
};

Performance Optimization

Implementation Details

  1. Component Lazy Loading
const ComponentPreview = defineAsyncComponent(() => 
  import('./ComponentPreview.vue')
);
  1. Virtual Scrolling
const virtualScroller = {
  itemSize: 50,
  minItemsPerPage: 10,
  maxBufferPx: 200
};
  1. Debounced Updates
const debouncedSave = useDebounceFn(() => {
  saveFormToStorage();
}, 500);

Development Guidelines

Component Development

  1. Follow Vue 3 Composition API patterns
  2. Implement proper TypeScript types
  3. Use props validation
  4. Emit typed events
  5. Document component API

State Management

  1. Use Pinia for global state
  2. Implement proper actions and getters
  3. Use computed properties for derived state
  4. Handle side effects in actions

Styling

  1. Use Tailwind utility classes
  2. Follow BEM for custom CSS
  3. Implement responsive design
  4. Use CSS variables for theming

Testing

  1. Write unit tests for components
  2. Test store actions and mutations
  3. Implement E2E tests for critical paths
  4. Test responsive behavior

Error Handling

Implementation

const errorHandler = {
  handleValidationError: (error: ValidationError) => {
    // Handle validation errors
  },
  handleDragError: (error: DragError) => {
    // Handle drag and drop errors
  },
  handleStateError: (error: StateError) => {
    // Handle state management errors
  }
};

Security Considerations

  1. Input Sanitization
const sanitizeInput = (input: string): string => {
  // Sanitization implementation
};
  1. Form Validation
const validateForm = async (form: FormData): Promise<ValidationResult> => {
  // Validation implementation
};

Build and Deployment

Build Configuration

// nuxt.config.ts
export default defineNuxtConfig({
  // Configuration details
});

Development Setup

# Installation
npm install

# Development
npm run dev

# Build
npm run build

# Preview
npm run preview

For user documentation and usage guidelines, please refer to Form Builder Documentation.

Last updated: June 10, 2024