Skip to content

Commit

Permalink
feat: add github avatar to the 300 (#314)
Browse files Browse the repository at this point in the history
  • Loading branch information
tomalaforge committed Jun 17, 2024
1 parent bb0a1e4 commit 412db2f
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 9 deletions.
24 changes: 16 additions & 8 deletions apps/app/src/app/pages/(home)/components/th-item.component.ts
Original file line number Diff line number Diff line change
@@ -1,23 +1,31 @@
import { Component, Input } from '@angular/core';
import { SpartanLogoComponent } from '@spartan-ng/app/app/shared/spartan-logo.component';
import { NgOptimizedImage } from '@angular/common';
import { Component, computed, input } from '@angular/core';

@Component({
selector: 'spartan-th-item',
standalone: true,
imports: [SpartanLogoComponent],
imports: [NgOptimizedImage],
host: {
class: 'inline-flex flex-col justify-center items-center',
},
template: `
<a class="flex flex-col items-center" [href]="href" target="_blank">
<spartan-logo class="p-1 rounded-full bg-primary h-9 w-9 -rotate-90" />
<a class="flex flex-col items-center" [href]="href()" target="_blank">
<img
loading="lazy"
[ngSrc]="src()"
width="40"
height="40"
[alt]=contributor()
class="rounded-full"
/>
<span class="mt-1 inline-block whitespace-nowrap text-[.7rem] font-medium hover:underline">
<ng-content />
{{contributor()}}
</span>
</a>
`,
})
export class ThreeHundredItemComponent {
@Input()
href = '';
contributor = input.required<string>();
href = computed(() => `https://github.com/${this.contributor()}`)
src = computed(() => `${this.href()}.png?size=80`)
}
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import { ThreeHundredItemComponent } from './th-item.component';
},
template: `
@for (contributor of _contributors; track $index) {
<spartan-th-item class="mb-2" [href]="'https://github.com/' + contributor">{{ contributor }}</spartan-th-item>
<spartan-th-item class="mb-2" [contributor]="contributor"/>
}
@for (item of _rest; track $index) {
<spartan-th-item-placeholder class="mb-2" />
Expand Down

0 comments on commit 412db2f

Please sign in to comment.