{mainTitle}
{subtitle}
-
{project.items.map((it, i) => (
- • {it} ))}
// DepartmentDetail.jsx import React, { useState, useEffect, useRef, useCallback } from "react"; import { motion, AnimatePresence } from "framer-motion"; import d1 from "../../../../src/assets/Images/d1.jpeg"; import d2 from "../../../../src/assets/Images/d2.jpeg"; import d3 from "../../../../src/assets/Images/d3.jpeg"; import d4 from "../../../../src/assets/Images/d4.jpeg"; function ProjectsTimeline({ projects, mainTitle = "المشاريع المنفذة", subtitle = "خط زمني شامل للأعمال والإنجازات", plain = false, }) { const wrapperRef = useRef(null); const scrollRef = useRef(null); const svgRef = useRef(null); const [itemsRefs, setItemsRefs] = useState([]); const [currentIndex, setCurrentIndex] = useState(0); useEffect(() => { setItemsRefs((r) => { const arr = Array(projects.length) .fill() .map((_, i) => r[i] || React.createRef()); return arr; }); }, [projects.length]); const drawCurvedLines = useCallback(() => { const svgEl = svgRef.current; const wrapper = wrapperRef.current; if (!svgEl || !wrapper) return; while (svgEl.firstChild) svgEl.removeChild(svgEl.firstChild); svgEl.setAttribute("width", wrapper.scrollWidth); svgEl.setAttribute("height", wrapper.offsetHeight); if (!itemsRefs || itemsRefs.length < 2) return; const svgNS = "http://www.w3.org/2000/svg"; const defs = document.createElementNS(svgNS, "defs"); const gradient = document.createElementNS(svgNS, "linearGradient"); gradient.setAttribute("id", "timeline-gradient"); gradient.setAttribute("x1", "0%"); gradient.setAttribute("y1", "0%"); gradient.setAttribute("x2", "100%"); gradient.setAttribute("y2", "0%"); const stop1 = document.createElementNS(svgNS, "stop"); stop1.setAttribute("offset", "0%"); stop1.setAttribute("style", "stop-color:#ea580c;stop-opacity:1"); const stop2 = document.createElementNS(svgNS, "stop"); stop2.setAttribute("offset", "50%"); stop2.setAttribute("style", "stop-color:#dc2626;stop-opacity:1"); const stop3 = document.createElementNS(svgNS, "stop"); stop3.setAttribute("offset", "100%"); stop3.setAttribute("style", "stop-color:#b91c1c;stop-opacity:1"); gradient.appendChild(stop1); gradient.appendChild(stop2); gradient.appendChild(stop3); defs.appendChild(gradient); svgEl.appendChild(defs); for (let i = 0; i < itemsRefs.length - 1; i++) { const item1 = itemsRefs[i].current; const item2 = itemsRefs[i + 1].current; if (!item1 || !item2) continue; const circle1 = item1.querySelector(".year-circle"); const circle2 = item2.querySelector(".year-circle"); if (!circle1 || !circle2) continue; const rect1 = circle1.getBoundingClientRect(); const rect2 = circle2.getBoundingClientRect(); const wrapperRect = wrapper.getBoundingClientRect(); const x1 = rect1.left - wrapperRect.left + rect1.width / 2; const y1 = rect1.top - wrapperRect.top + rect1.height / 2; const x2 = rect2.left - wrapperRect.left + rect2.width / 2; const y2 = rect2.top - wrapperRect.top + rect2.height / 2; const controlPointOffset = Math.abs(x2 - x1) * 0.4; const cx1 = x1 - controlPointOffset; const cy1 = y1 - 40; const cx2 = x2 + controlPointOffset; const cy2 = y2 - 40; const path = document.createElementNS(svgNS, "path"); const d = `M ${x1} ${y1} C ${cx1} ${cy1}, ${cx2} ${cy2}, ${x2} ${y2}`; path.setAttribute("d", d); path.setAttribute("stroke", "url(#timeline-gradient)"); path.setAttribute("stroke-width", "4"); path.setAttribute("fill", "none"); path.setAttribute("stroke-linecap", "round"); path.style.filter = "drop-shadow(0 2px 8px rgba(251, 191, 36, 0.3))"; svgEl.appendChild(path); } }, [itemsRefs]); const setActiveItem = useCallback( (index) => { setCurrentIndex(index); itemsRefs.forEach((ref, i) => { const el = ref.current; if (!el) return; if (i === index) el.classList.add("active"); else el.classList.remove("active"); }); }, [itemsRefs] ); const scrollToItem = useCallback( (index) => { if (index < 0 || index >= itemsRefs.length) return; const scrollContainer = scrollRef.current; const item = itemsRefs[index].current; if (!scrollContainer || !item) return; const itemRect = item.getBoundingClientRect(); const containerRect = scrollContainer.getBoundingClientRect(); const scrollLeft = scrollContainer.scrollLeft; const targetScroll = scrollLeft + itemRect.left - containerRect.left - containerRect.width / 2 + itemRect.width / 2; scrollContainer.scrollTo({ left: targetScroll, behavior: "smooth" }); setActiveItem(index); }, [itemsRefs, setActiveItem] ); const onPrev = () => { if (currentIndex > 0) scrollToItem(currentIndex - 1); }; const onNext = () => { if (currentIndex < itemsRefs.length - 1) scrollToItem(currentIndex + 1); }; useEffect(() => { const t = setTimeout(() => { drawCurvedLines(); setActiveItem(0); }, 100); const scrollContainer = scrollRef.current; let scrollTimeout = null; const onScroll = () => { clearTimeout(scrollTimeout); scrollTimeout = setTimeout(() => { const containerRect = scrollContainer.getBoundingClientRect(); const containerCenter = containerRect.left + containerRect.width / 2; let closestIndex = 0; let closestDistance = Infinity; itemsRefs.forEach((ref, index) => { const el = ref.current; if (!el) return; const itemRect = el.getBoundingClientRect(); const itemCenter = itemRect.left + itemRect.width / 2; const distance = Math.abs(containerCenter - itemCenter); if (distance < closestDistance) { closestDistance = distance; closestIndex = index; } }); if (closestIndex !== currentIndex) { setActiveItem(closestIndex); } }, 150); }; if (scrollContainer) scrollContainer.addEventListener("scroll", onScroll); const onResize = () => setTimeout(drawCurvedLines, 120); window.addEventListener("resize", onResize); return () => { clearTimeout(t); if (scrollContainer) scrollContainer.removeEventListener("scroll", onScroll); window.removeEventListener("resize", onResize); }; }, [itemsRefs, drawCurvedLines, setActiveItem]); useEffect(() => { setTimeout(() => drawCurvedLines(), 120); }, [itemsRefs, drawCurvedLines, projects.length]); const css = ` :root{--bg-start:#0f172a;--bg-mid:#1e293b;--bg-end:#334155} .projects-timeline-root { direction: rtl; min-height: 100%; } .timeline-scroll { overflow-x: auto; overflow-y: hidden; scroll-behavior: smooth; -webkit-overflow-scrolling: touch; scrollbar-width: thin; scrollbar-color: rgba(0,0,0,.2) transparent; } .timeline-scroll::-webkit-scrollbar{ height:10px;} .timeline-scroll::-webkit-scrollbar-track{ background: transparent; border-radius:10px; margin:0 8px;} .timeline-scroll::-webkit-scrollbar-thumb{ background: rgba(0,0,0,.12); border-radius:10px; border:2px solid transparent; background-clip:padding-box;} .timeline-wrapper { display:flex; align-items:center; position:relative; padding:clamp(48px,6vw,120px) clamp(12px,4vw,120px); min-width:max-content; } .svg-container { position:absolute; top:0; left:0; width:100%; height:100%; pointer-events:none; z-index:0; } .timeline-item { position:relative; display:flex; flex-direction:column; align-items:center; margin:0 clamp(20px,4vw,60px); transition:all .6s cubic-bezier(.34,1.56,.64,1); z-index:1; } .year-circle { width:clamp(72px,9vw,150px); height:clamp(72px,9vw,150px); border-radius:50%; display:flex; align-items:center; justify-content:center; font-size:clamp(14px,1.6vw,24px); font-weight:700; background:linear-gradient(135deg,#dc2626 0%,#b91c1c 50%,#991b1b 100%); color:white; box-shadow:0 8px 25px rgba(220,38,38,.4); transition:all .6s cubic-bezier(.34,1.56,.64,1); cursor:pointer; border:5px solid rgba(255,255,255,.25); position:relative; z-index:2; backdrop-filter: blur(10px); } .year-circle::after { content: ''; position:absolute; inset:-8px; border-radius:50%; border:2px solid rgba(220,38,38,.3); opacity:0; transition:all .6s ease; } .timeline-item.active .year-circle { width:clamp(110px,14vw,200px); height:clamp(110px,14vw,200px); font-size:clamp(18px,2.2vw,28px); box-shadow:0 15px 50px rgba(220,38,38,.5); border-color: rgba(255,255,255,.5); transform: translateY(-15px) scale(1.05); animation: glow 2s ease-in-out infinite; } .timeline-item.active .year-circle::after { opacity:1; inset:-12px; animation: ripple 2s ease-out infinite; } @keyframes glow { 0%,100%{ filter: brightness(1);} 50%{ filter: brightness(1.15);} } @keyframes ripple { 0%{ transform: scale(1); opacity:.6;} 100%{ transform: scale(1.3); opacity:0;} } .project-card { margin-top:40px; background: #ffffff; border-radius:20px; padding:28px; min-width:320px; max-width:380px; box-shadow:0 8px 30px rgba(0,0,0,.08),0 2px 8px rgba(0,0,0,.04); opacity:.6; transform: scale(.92) translateY(10px); transition:all .6s cubic-bezier(.34,1.56,.64,1); border:1px solid rgba(251,191,36,.1); position:relative; overflow:hidden;} .project-card::before { content:''; position:absolute; top:0; left:0; right:0; height:4px; background: linear-gradient(to left,#dc2626,#b91c1c,#991b1b); opacity:0; transition:opacity .6s ease;} .timeline-item.active .project-card { opacity:1; transform: scale(1) translateY(0); box-shadow:0 20px 60px rgba(0,0,0,.12),0 5px 15px rgba(0,0,0,.06),0 0 0 1px rgba(220,38,38,.15); border-color: rgba(220,38,38,.25); } .timeline-item.active .project-card::before { opacity:1; } .project-text { font-size:15px; line-height:2; color:#1f2937; font-weight:500; } .project-text li { margin-bottom:12px; padding-right:12px; transition:all .3s ease; border-radius:8px; padding:8px 12px; } .timeline-item.active .project-text li:hover { background: rgba(220,38,38,.08); transform: translateX(-4px); } .scroll-indicator { position:absolute; bottom:30px; left:50%; transform: translateX(-50%); display:flex; gap:20px; z-index:10; } .scroll-btn { background: linear-gradient(135deg, rgba(255,255,255,.95) 0%, rgba(255,255,255,.85) 100%); border:none; border-radius:50%; width:56px; height:56px; display:flex; align-items:center; justify-content:center; cursor:pointer; font-size:22px; color:#dc2626; box-shadow:0 6px 20px rgba(0,0,0,.15); transition:all .4s cubic-bezier(.34,1.56,.64,1); backdrop-filter: blur(10px); } .scroll-btn:hover:not(:disabled){ background: linear-gradient(135deg,#fff 0%,#fee2e2 100%); transform: scale(1.15); box-shadow:0 10px 35px rgba(220,38,38,.25); } .scroll-btn:active:not(:disabled){ transform: scale(1.05); } .scroll-btn:disabled { opacity:.4; cursor:not-allowed; } @media (max-width:768px){ .timeline-wrapper { padding:clamp(36px,6vw,80px) 24px; } .timeline-item { margin:0 18px; } .year-circle { width:90px; height:90px; font-size:15px; } .timeline-item.active .year-circle { width:120px; height:120px; font-size:19px; } .project-card { min-width:260px; max-width:300px; padding:20px; } .project-text { font-size:13px; } .scroll-btn { width:48px; height:48px; font-size:20px; } } .projects-timeline-root.plain-bleed .timeline-wrapper { padding:clamp(48px,6vw,120px) 24px; } .projects-timeline-root.plain-bleed .project-card { max-width:420px; } `; const mainStyle = plain ? { background: "#ffffff", paddingBottom: 0 } : { background: "linear-gradient(135deg, var(--bg-start) 0%, var(--bg-mid) 30%, var(--bg-end) 60%, #475569 100%)" }; return (
{subtitle}
يختص هذا القسم بتقديم حلول متكاملة لتنفيذ المنشآت الصناعية وخطوط الانتاج وصيانتها بمختلف أنواعها، ويشمل:
يتضمن هذا القسم خدمات الصيانة الشاملة والدورية للمنشآت الصناعية وخطوط الانتاج، وتشمل:
عرض مشروعاتنا وخط الزمن الخاص بالأعمال المنفذة.
انقر للاطّلاع على التفاصيل
{item.text}