Files
cv-site/templates/partials/sections/experience.html
T
juanatsap 2ca13a218e feat: Extend skeleton loaders to all 13 CV sections with structural fidelity
Implemented comprehensive skeleton loaders for the entire CV curriculum,
providing smooth loading animations during language transitions across
all sections.

**Sections Implemented (13 total):**
- Header (title-badges + personal info)
- Education
- Skills Summary
- Experience (with company logos, descriptions, responsibilities)
- Awards (with logos, issuers, descriptions)
- Projects (with icons, descriptions, tech stacks)
- Courses (with icons, institutions, dates)
- Languages
- References
- Other Information
- Skills Sidebars (left and right)
- Footer

**Key Features:**
- Structural fidelity: Skeletons mirror exact HTML structure of actual content
- Each section has realistic placeholders (e.g., 3 experience items, 2 projects)
- Smooth CSS transitions with shimmer animations
- Zero layout shift
- Component-level architecture allows independent loading states

**Technical Implementation:**
- Modified all section templates in templates/partials/sections/
- Added .component-wrapper with .actual-content + .skeleton-content structure
- Extended skeleton.css with structural skeleton classes
- JavaScript event handlers in main.js already handle all sections via CSS cascade

**Testing:**
- Manual Playwright test: 13/13 component wrappers verified
- Automated test: 7/7 tests passing
- All skeleton loaders show during language switches
- No stuck loading states

**Documentation:**
- Updated tests/TEST-SUMMARY.md with all 13 sections
- Updated doc/2-MODERN-WEB-TECHNIQUES.md with comprehensive details
- Added structural fidelity table showing skeleton elements for each section

Files modified: 14 templates + CSS + 2 docs
2025-11-18 20:18:28 +00:00

90 lines
4.4 KiB
HTML

{{define "section-experience"}}
<!-- Experience -->
<section id="experience" class="cv-section component-wrapper">
<!-- Actual Content -->
<div class="actual-content">
<details open>
<summary>
<h3 class="section-title">
<iconify-icon icon="mdi:office-building" width="24" height="24" class="section-icon"></iconify-icon>
{{if eq .Lang "es"}}Experiencia{{else}}Experience{{end}}
</h3>
</summary>
{{range .CV.Experience}}
<div class="experience-item">
<div class="company-logo">
{{if .CompanyLogo}}
<img src="/static/images/companies/{{.CompanyLogo}}" alt="{{.Company}} logo" onerror="this.parentElement.innerHTML='<iconify-icon icon=\'mdi:office-building\' width=\'60\' height=\'60\' class=\'default-company-icon\'></iconify-icon>'">
{{else}}
<iconify-icon icon="mdi:office-building" width="60" height="60" class="default-company-icon"></iconify-icon>
{{end}}
</div>
<div class="experience-content">
<strong>{{.Position}}{{if .Company}} - {{if .CompanyURL}}<a href="{{.CompanyURL}}" target="_blank" rel="noopener noreferrer">{{.Company}}</a>{{else}}{{.Company}}{{end}}{{if .Duration}} - <span class="duration-text">{{.Duration}}</span>{{end}}{{end}}</strong>
{{if .Current}}<span class="current-badge">{{if eq $.Lang "es"}}ACTUAL{{else}}CURRENT{{end}}</span>{{end}}
{{if .Expired}}<span class="expired-badge">{{if eq $.Lang "es"}}EXPIRADO{{else}}EXPIRED{{end}}</span>{{end}}
<br>
<small>{{.StartDate}} / {{if .Current}}{{if eq $.Lang "es"}}presente{{else}}now{{end}}{{else}}{{.EndDate}}{{end}} - ({{.Location}})</small>
{{if .ShortDescription}}
<p class="experience-desc short-desc">{{.ShortDescription | safeHTML}}</p>
{{end}}
{{if .Responsibilities}}
<ul class="responsibilities long-only">
{{range .Responsibilities}}
<li>{{. | safeHTML}}</li>
{{end}}
</ul>
{{end}}
</div>
</div>
{{end}}
</details>
</div>
<!-- Skeleton Content -->
<div class="skeleton-content">
<div class="skeleton-section">
<div class="skeleton skeleton-section-title"></div>
<!-- Experience Item 1 - Full structure -->
<div class="skeleton-experience-item">
<div class="skeleton skeleton-company-logo"></div>
<div class="skeleton-experience-content">
<div class="skeleton skeleton-position-line"></div>
<div class="skeleton skeleton-date-line"></div>
<div class="skeleton skeleton-description-line"></div>
<div class="skeleton skeleton-responsibility-line"></div>
<div class="skeleton skeleton-responsibility-line" style="width: 95%;"></div>
<div class="skeleton skeleton-responsibility-line" style="width: 90%;"></div>
</div>
</div>
<!-- Experience Item 2 - Full structure -->
<div class="skeleton-experience-item">
<div class="skeleton skeleton-company-logo"></div>
<div class="skeleton-experience-content">
<div class="skeleton skeleton-position-line"></div>
<div class="skeleton skeleton-date-line"></div>
<div class="skeleton skeleton-description-line"></div>
<div class="skeleton skeleton-responsibility-line"></div>
<div class="skeleton skeleton-responsibility-line" style="width: 92%;"></div>
</div>
</div>
<!-- Experience Item 3 - Shorter -->
<div class="skeleton-experience-item">
<div class="skeleton skeleton-company-logo"></div>
<div class="skeleton-experience-content">
<div class="skeleton skeleton-position-line"></div>
<div class="skeleton skeleton-date-line"></div>
<div class="skeleton skeleton-description-line" style="width: 85%;"></div>
</div>
</div>
</div>
</div>
</section>
{{end}}