Ignore:
Timestamp:
06/24/26 16:28:50 (12 days ago)
Author:
kikisrbinoska <srbinoskakristina07@…>
Branches:
main
Children:
a8f4a2d
Parents:
0b502c2
Message:

Fixed writer section and admin management

Location:
chapterx-frontend/src/components
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • chapterx-frontend/src/components/admin/PlatformStats.tsx

    r0b502c2 r99c1e45  
    1 import React from 'react'
    2 import { Users, BookOpen, FileText, Heart, Eye, MessageCircle } from 'lucide-react'
     1import React, { useEffect } from 'react'
     2import { Users, BookOpen, Heart, MessageCircle } from 'lucide-react'
    33import { useAuthStore } from '../../store/authStore'
    44import { useStoryStore } from '../../store/storyStore'
    55
    66export const PlatformStats: React.FC = () => {
    7   const { allUsers } = useAuthStore()
    8   const { stories, comments } = useStoryStore()
     7  const { allUsers, fetchAllUsers } = useAuthStore()
     8  const { stories, fetchStories } = useStoryStore()
    99
    10   const totalViews = stories.reduce((acc, s) => acc + s.total_views, 0)
     10  useEffect(() => { fetchStories(); fetchAllUsers() }, [])
     11
    1112  const totalLikes = stories.reduce((acc, s) => acc + s.total_likes, 0)
     13  const totalComments = stories.reduce((acc, s) => acc + s.total_comments, 0)
    1214  const published = stories.filter(s => s.status === 'published').length
    1315
    1416  const stats = [
    15     { icon: <Users size={24} className="text-blue-300" />, label: 'Total Users', value: allUsers.length, color: 'bg-blue-500/20', change: '+12 this month' },
     17    { icon: <Users size={24} className="text-blue-300" />, label: 'Total Users', value: allUsers.length, color: 'bg-blue-500/20', change: `${allUsers.filter(u => u.role === 'writer').length} writers` },
    1618    { icon: <BookOpen size={24} className="text-violet-300" />, label: 'Total Stories', value: stories.length, color: 'bg-violet-500/20', change: `${published} published` },
    17     { icon: <FileText size={24} className="text-emerald-300" />, label: 'Comments', value: comments.length, color: 'bg-emerald-500/20', change: 'Platform-wide' },
    1819    { icon: <Heart size={24} className="text-rose-300" />, label: 'Total Likes', value: totalLikes.toLocaleString(), color: 'bg-rose-500/20', change: 'Across all stories' },
    19     { icon: <Eye size={24} className="text-amber-300" />, label: 'Total Views', value: totalViews.toLocaleString(), color: 'bg-amber-500/20', change: 'All time' },
    20     { icon: <MessageCircle size={24} className="text-cyan-300" />, label: 'Writers', value: allUsers.filter(u => u.role === 'writer').length, color: 'bg-cyan-500/20', change: 'Active creators' },
     20    { icon: <MessageCircle size={24} className="text-emerald-300" />, label: 'Total Comments', value: totalComments.toLocaleString(), color: 'bg-emerald-500/20', change: 'Platform-wide' },
    2121  ]
    2222
    2323  return (
    24     <div className="grid grid-cols-2 md:grid-cols-3 gap-4">
     24    <div className="grid grid-cols-2 md:grid-cols-4 gap-4">
    2525      {stats.map(stat => (
    2626        <div key={stat.label} className="bg-slate-800 border border-slate-700 rounded-2xl p-6">
  • chapterx-frontend/src/components/admin/UserTable.tsx

    r0b502c2 r99c1e45  
    11import React, { useState } from 'react'
    22import { Search, Shield, UserX, UserCheck } from 'lucide-react'
     3import axios from 'axios'
    34import { useAuthStore } from '../../store/authStore'
    4 import { useNotificationStore } from '../../store/notificationStore'
    55import { useUIStore } from '../../store/uiStore'
    66import { User, UserRole } from '../../types'
     
    1010import { Modal } from '../ui/Modal'
    1111
     12const API = 'https://localhost:7125/api'
     13
    1214export const UserTable: React.FC = () => {
    13   const { allUsers, updateUserRole, currentUser } = useAuthStore()
    14   const { addNotification } = useNotificationStore()
     15  const { allUsers, updateUserRole, currentUser, token } = useAuthStore()
    1516  const { addToast } = useUIStore()
    1617  const [search, setSearch] = useState('')
    1718  const [confirmUser, setConfirmUser] = useState<User | null>(null)
    1819  const [confirmAction, setConfirmAction] = useState<'promote' | 'demote' | null>(null)
     20  const [loading, setLoading] = useState(false)
     21
     22  const authHeaders = token ? { Authorization: `Bearer ${token}` } : {}
    1923
    2024  const filtered = allUsers.filter(
     
    2529  )
    2630
    27   const handlePromote = (user: User) => {
    28     const newRole: UserRole = user.role === 'regular' ? 'writer' : user.role === 'writer' ? 'admin' : 'admin'
    29     updateUserRole(user.user_id, newRole)
    30     addNotification({
    31       user_id: user.user_id,
    32       type: 'system',
    33       title: 'Role Updated',
    34       message: `Your account has been promoted to ${newRole}.`,
    35     })
    36     addToast(`${user.username} promoted to ${newRole}`)
    37     setConfirmUser(null)
     31  const handlePromote = async (user: User) => {
     32    setLoading(true)
     33    try {
     34      await axios.post(`${API}/admins`, { userId: user.user_id }, { headers: authHeaders })
     35      updateUserRole(user.user_id, 'admin')
     36      addToast(`${user.username} promoted to admin`)
     37    } catch (err: any) {
     38      addToast(err?.response?.data?.message || 'Failed to promote user.', 'error')
     39    } finally {
     40      setLoading(false)
     41      setConfirmUser(null)
     42    }
    3843  }
    3944
    40   const handleDemote = (user: User) => {
    41     const newRole: UserRole = user.role === 'admin' ? 'writer' : 'regular'
    42     updateUserRole(user.user_id, newRole)
    43     addToast(`${user.username} role changed to ${newRole}`, 'info')
    44     setConfirmUser(null)
     45  const handleDemote = async (user: User) => {
     46    setLoading(true)
     47    try {
     48      await axios.delete(`${API}/admins/${user.user_id}`, { headers: authHeaders })
     49      updateUserRole(user.user_id, 'writer')
     50      addToast(`${user.username} removed from admin`, 'info')
     51    } catch (err: any) {
     52      addToast(err?.response?.data?.message || 'Failed to demote user.', 'error')
     53    } finally {
     54      setLoading(false)
     55      setConfirmUser(null)
     56    }
    4557  }
    4658
     
    140152                variant={confirmAction === 'promote' ? 'primary' : 'danger'}
    141153                className="flex-1"
     154                loading={loading}
    142155                onClick={() => confirmAction === 'promote' ? handlePromote(confirmUser) : handleDemote(confirmUser)}
    143156              >
  • chapterx-frontend/src/components/story/LikeButton.tsx

    r0b502c2 r99c1e45  
    99const API = 'https://localhost:7125/api'
    1010
    11 function getAuthHeaders() {
    12   try {
    13     const token = JSON.parse(localStorage.getItem('chapterx-auth') || '{}')?.state?.token
    14     return token ? { Authorization: `Bearer ${token}` } : {}
    15   } catch { return {} }
    16 }
    17 
    1811interface LikeButtonProps {
    1912  storyId: number
     
    2518export const LikeButton: React.FC<LikeButtonProps> = ({ storyId, authorUserId, totalLikes, onCountChange }) => {
    2619  const navigate = useNavigate()
    27   const { currentUser } = useAuthStore()
     20  const { currentUser, token } = useAuthStore()
    2821  const { addNotification } = useNotificationStore()
     22  const authHeaders = token ? { Authorization: `Bearer ${token}` } : {}
    2923  const { addToast } = useUIStore()
    3024  const [liked, setLiked] = useState(false)
     
    5549    try {
    5650      if (liked) {
    57         await axios.delete(`${API}/likes/user/${currentUser.user_id}/story/${storyId}`, { headers: getAuthHeaders() })
     51        await axios.delete(`${API}/likes/user/${currentUser.user_id}/story/${storyId}`, { headers: authHeaders })
    5852        setLiked(false)
    5953        setCount(c => { const n = c - 1; onCountChange?.(n); return n })
    6054        addToast('Removed from likes', 'info')
    6155      } else {
    62         await axios.post(`${API}/likes`, { userId: currentUser.user_id, storyId }, { headers: getAuthHeaders() })
     56        await axios.post(`${API}/likes`, { userId: currentUser.user_id, storyId }, { headers: authHeaders })
    6357        setLiked(true)
    6458        setCount(c => { const n = c + 1; onCountChange?.(n); return n })
  • chapterx-frontend/src/components/ui/StoryCard.tsx

    r0b502c2 r99c1e45  
    11import React from 'react'
    22import { useNavigate } from 'react-router-dom'
    3 import { Heart, MessageCircle, Eye, Lock } from 'lucide-react'
     3import { Heart, MessageCircle, Lock } from 'lucide-react'
    44import { Story } from '../../types'
    55import { useAuthStore } from '../../store/authStore'
     
    8686            {story.total_comments}
    8787          </span>
    88           <span className="flex items-center gap-1 ml-auto">
    89             <Eye size={12} />
    90             {story.total_views.toLocaleString()}
    91           </span>
    9288        </div>
    9389      </div>
  • chapterx-frontend/src/components/writer/StoryAnalytics.tsx

    r0b502c2 r99c1e45  
    11import React from 'react'
    22import {
    3   LineChart,
    4   Line,
    53  BarChart,
    64  Bar,
     
    119  ResponsiveContainer,
    1210} from 'recharts'
    13 import { Eye, Heart, MessageCircle, TrendingUp, Clock, BarChart2 } from 'lucide-react'
    14 import { mockAnalytics } from '../../data/mockData'
     11import { Heart, MessageCircle, BookOpen } from 'lucide-react'
     12import { Story } from '../../types'
     13
     14interface Props {
     15  stories: Story[]
     16}
    1517
    1618const StatCard: React.FC<{ icon: React.ReactNode; label: string; value: string | number; color: string }> = ({
    1719  icon, label, value, color,
    1820}) => (
    19   <div className={`p-4 bg-slate-800 rounded-xl border border-slate-700`}>
     21  <div className="p-4 bg-slate-800 rounded-xl border border-slate-700">
    2022    <div className={`w-10 h-10 rounded-xl ${color} flex items-center justify-center mb-3`}>
    2123      {icon}
    2224    </div>
    23     <p className="text-2xl font-bold text-white">{value.toLocaleString()}</p>
     25    <p className="text-2xl font-bold text-white">{typeof value === 'number' ? value.toLocaleString() : value}</p>
    2426    <p className="text-slate-400 text-sm mt-0.5">{label}</p>
    2527  </div>
     
    4244}
    4345
    44 export const StoryAnalytics: React.FC = () => {
    45   const analytics = mockAnalytics
    46   const viewsData = analytics.views_over_time.filter((_, i) => i % 5 === 0)
    47   const likesData = analytics.likes_over_time.filter((_, i) => i % 5 === 0)
     46export const StoryAnalytics: React.FC<Props> = ({ stories }) => {
     47  const published = stories.filter(s => s.status === 'published')
     48
     49  const totalLikes = stories.reduce((a, s) => a + s.total_likes, 0)
     50  const totalComments = stories.reduce((a, s) => a + s.total_comments, 0)
     51  const totalChapters = stories.reduce((a, s) => a + s.total_chapters, 0)
     52
     53  // Likes per story (sorted by created_at)
     54  const likesData = [...published]
     55    .sort((a, b) => new Date(a.created_at).getTime() - new Date(b.created_at).getTime())
     56    .map(s => ({
     57      date: new Date(s.created_at).toLocaleDateString('en-US', { month: 'short', year: '2-digit' }),
     58      likes: s.total_likes,
     59      story: s.title,
     60    }))
     61
     62  if (published.length === 0) {
     63    return (
     64      <div className="text-center py-12 text-slate-500">
     65        <p>No published stories yet — analytics will appear here once you publish.</p>
     66      </div>
     67    )
     68  }
    4869
    4970  return (
    5071    <div className="space-y-6">
    5172      {/* Stat cards */}
    52       <div className="grid grid-cols-2 lg:grid-cols-5 gap-4">
    53         <StatCard icon={<Eye size={18} className="text-blue-300" />} label="Total Views" value={analytics.total_views} color="bg-blue-500/20" />
    54         <StatCard icon={<Heart size={18} className="text-rose-300" />} label="Total Likes" value={analytics.total_likes} color="bg-rose-500/20" />
    55         <StatCard icon={<MessageCircle size={18} className="text-violet-300" />} label="Comments" value={analytics.total_comments} color="bg-violet-500/20" />
    56         <StatCard icon={<Clock size={18} className="text-amber-300" />} label="Avg Read (min)" value={analytics.avg_read_time} color="bg-amber-500/20" />
    57         <StatCard icon={<BarChart2 size={18} className="text-emerald-300" />} label="Completion %" value={`${analytics.completion_rate}%`} color="bg-emerald-500/20" />
    58       </div>
    59 
    60       {/* Views chart */}
    61       <div className="bg-slate-800 border border-slate-700 rounded-2xl p-6">
    62         <div className="flex items-center gap-2 mb-4">
    63           <TrendingUp size={16} className="text-blue-400" />
    64           <h3 className="text-white font-semibold">Views Over Time</h3>
    65         </div>
    66         <ResponsiveContainer width="100%" height={200}>
    67           <LineChart data={viewsData}>
    68             <CartesianGrid strokeDasharray="3 3" stroke="#334155" />
    69             <XAxis dataKey="date" tick={{ fill: '#64748b', fontSize: 11 }} tickLine={false} axisLine={false} />
    70             <YAxis tick={{ fill: '#64748b', fontSize: 11 }} tickLine={false} axisLine={false} />
    71             <Tooltip content={<CustomTooltip />} />
    72             <Line type="monotone" dataKey="views" stroke="#6366f1" strokeWidth={2} dot={false} name="Views" />
    73           </LineChart>
    74         </ResponsiveContainer>
     73      <div className="grid grid-cols-2 lg:grid-cols-3 gap-4">
     74        <StatCard icon={<Heart size={18} className="text-rose-300" />} label="Total Likes" value={totalLikes} color="bg-rose-500/20" />
     75        <StatCard icon={<MessageCircle size={18} className="text-violet-300" />} label="Total Comments" value={totalComments} color="bg-violet-500/20" />
     76        <StatCard icon={<BookOpen size={18} className="text-emerald-300" />} label="Total Chapters" value={totalChapters} color="bg-emerald-500/20" />
    7577      </div>
    7678
     
    7981        <div className="flex items-center gap-2 mb-4">
    8082          <Heart size={16} className="text-rose-400" />
    81           <h3 className="text-white font-semibold">Likes Over Time</h3>
     83          <h3 className="text-white font-semibold">Likes per Story</h3>
    8284        </div>
    83         <ResponsiveContainer width="100%" height={200}>
    84           <BarChart data={likesData}>
    85             <CartesianGrid strokeDasharray="3 3" stroke="#334155" />
    86             <XAxis dataKey="date" tick={{ fill: '#64748b', fontSize: 11 }} tickLine={false} axisLine={false} />
    87             <YAxis tick={{ fill: '#64748b', fontSize: 11 }} tickLine={false} axisLine={false} />
    88             <Tooltip content={<CustomTooltip />} />
    89             <Bar dataKey="likes" fill="#f43f5e" radius={[4, 4, 0, 0]} name="Likes" />
    90           </BarChart>
    91         </ResponsiveContainer>
     85        {likesData.length > 0 ? (
     86          <ResponsiveContainer width="100%" height={200}>
     87            <BarChart data={likesData}>
     88              <CartesianGrid strokeDasharray="3 3" stroke="#334155" />
     89              <XAxis dataKey="date" tick={{ fill: '#64748b', fontSize: 11 }} tickLine={false} axisLine={false} />
     90              <YAxis tick={{ fill: '#64748b', fontSize: 11 }} tickLine={false} axisLine={false} />
     91              <Tooltip content={<CustomTooltip />} />
     92              <Bar dataKey="likes" fill="#f43f5e" radius={[4, 4, 0, 0]} name="Likes" />
     93            </BarChart>
     94          </ResponsiveContainer>
     95        ) : (
     96          <p className="text-slate-500 text-sm text-center py-8">No likes data yet</p>
     97        )}
    9298      </div>
     99
     100      {/* Per-story breakdown */}
     101      {published.length > 1 && (
     102        <div className="bg-slate-800 border border-slate-700 rounded-2xl p-6">
     103          <h3 className="text-white font-semibold mb-4">Story Breakdown</h3>
     104          <div className="space-y-3">
     105            {[...published]
     106              .sort((a, b) => b.total_likes - a.total_likes)
     107              .map(s => (
     108                <div key={s.story_id} className="flex items-center justify-between text-sm">
     109                  <span className="text-slate-300 truncate max-w-xs">{s.title}</span>
     110                  <div className="flex items-center gap-4 text-slate-400 flex-shrink-0">
     111                    <span className="flex items-center gap-1"><Heart size={12} /> {s.total_likes}</span>
     112                    <span className="flex items-center gap-1"><MessageCircle size={12} /> {s.total_comments}</span>
     113                  </div>
     114                </div>
     115              ))}
     116          </div>
     117        </div>
     118      )}
    93119    </div>
    94120  )
Note: See TracChangeset for help on using the changeset viewer.