Skip to content

Drug Development Platform Frontend 🧬¢

Overview 🎯¢

Frontend for the Drug Development Platform, built with Next.js and React. Features a modern UI for molecular analysis, literature search, and clinical trial monitoring.

Key Features 🌟¢

  • πŸ”¬ Molecular Analysis: Interactive 3D molecule viewer using 3Dmol.js
  • πŸ“š Literature Search: AI-powered scientific literature analysis
  • πŸ“Š Clinical Trial Analysis: Data visualization and analysis tools
  • 🎨 Theme Support: Light/dark mode with next-themes
  • 🎯 Responsive Design: Mobile-first approach using Tailwind CSS

Tech Stack πŸ’»ΒΆ

  • πŸš€ Next.js: React framework for production
  • 🎨 Tailwind CSS: Utility-first CSS framework
  • πŸ“Š Recharts: Composable charting library
  • 🎯 Radix UI: Accessible component primitives
  • πŸ”„ Zustand: State management
  • 🎭 Lucide: Beautiful icons
  • πŸ§ͺ 3Dmol.js: Molecular visualization

Getting Started πŸš€ΒΆ

  1. Clone and Install Dependencies:

    cd frontend
    npm install
    
  2. Environment Setup: Create a .env.local file:

    # Backend API URL
    NEXT_PUBLIC_API_URL=http://localhost:8000
    
    # Default theme (light/dark)
    NEXT_PUBLIC_DEFAULT_THEME=dark
    
  3. Development Server:

    npm run dev
    
    Visit http://localhost:3000
  4. Build for Production:

    npm run build
    npm run start
    

Project Structure πŸ“ΒΆ

frontend/
β”œβ”€β”€ src/
β”‚   β”œβ”€β”€ app/                 # Next.js app router
β”‚   β”œβ”€β”€ components/         
β”‚   β”‚   β”œβ”€β”€ ui/             # Reusable UI components
β”‚   β”‚   └── molecule-viewer  # 3D molecule visualization
β”‚   β”œβ”€β”€ lib/
β”‚   β”‚   β”œβ”€β”€ store/          # Zustand state management
β”‚   β”‚   └── utils/          # Utility functions
β”‚   └── styles/             # Global styles
β”œβ”€β”€ public/                 # Static assets
└── package.json           # Dependencies and scripts

Key Components πŸ”§ΒΆ

Molecule ViewerΒΆ

<MoleculeViewer
  smiles="CC1=CC=C(C=C1)NC(=O)C2=CC=C(Cl)C=C2"
  width="100%"
  height="400px"
/>
<LiteratureSearch
  onSearch={async (query) => {
    const results = await searchLiterature(query);
    // Handle results...
  }}
/>

Clinical Trial AnalysisΒΆ

<TrialAnalysis
  data={trialData}
  onAnalyze={async (data) => {
    const analysis = await analyzeTrialData(data);
    // Handle analysis...
  }}
/>

API Integration πŸ”ŒΒΆ

The frontend communicates with the backend through RESTful endpoints:

// Example API call
const searchLiterature = async (query: string) => {
  const response = await fetch(`${API_URL}/agents/literature-search`, {
    method: 'POST',
    headers: { 'Content-Type': 'application/json' },
    body: JSON.stringify({ query })
  });
  return response.json();
};

State Management πŸ”„ΒΆ

Using Zustand for global state management:

const useDrugDiscoveryStore = create((set) => ({
  literatureResults: null,
  moleculeAnalysis: null,
  trialAnalysis: null,
  // ... actions and state updates
}));

Contributing 🀝¢

  1. Fork the repository
  2. Create a feature branch
  3. Submit a Pull Request

Learn More πŸ“šΒΆ

Security πŸ”’ΒΆ

  • All API calls use HTTPS
  • Environment variables for sensitive data
  • CSP headers for security
  • Input sanitization and validation

Deployment with Azure Developer CLI (azd) πŸš€ΒΆ

  1. Install Azure Developer CLI:

    curl -fsSL https://aka.ms/install-azd.sh | bash
    
  2. Login to Azure:

    azd auth login
    
  3. Deploy from Root Directory: From the root of "3-e2e-drug-discovery-sample/", run:

    azd init
    azd up
    

This will: - Create Azure Static Web App for the frontend - Configure environment variables - Deploy the frontend application - Output the public URL for your site

After deployment: - Access your site at the provided Static Web App URL - The backend API URL will be automatically configured

License πŸ“„ΒΆ

This project is licensed under the MIT License - see the LICENSE file for details.