-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
10 changed files
with
474 additions
and
93 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,264 @@ | ||
import { ProjectItem } from '@/app/domain/entities/project.entity' | ||
import { ProjectType } from '@/app/domain/enums/project.enum' | ||
import { ProjectRepository } from '@/app/domain/repositories/project.repo' | ||
|
||
export class ProjectRepositoryImpl implements ProjectRepository { | ||
private readonly mockData: ProjectItem[] = [ | ||
{ | ||
title: '오초이스', | ||
description: '오초이스 설명 입니다', | ||
period: '2024.01 ~ 2024.12', | ||
image: 'https://github.com/jaemin-s/jaemin-s/raw/refs/heads/main/image/portfolio/netflix.webp', | ||
type: ProjectType.WORK, | ||
features: [ | ||
{ | ||
title: '주요 기능 이름', | ||
description: '기술 설명입니다.', | ||
}, | ||
], | ||
company: '(주)홈초이스', | ||
links: { demo: 'https://www.netflix.com/kr/', github: '' }, | ||
stackBadges: ['React', 'TypeScript'], | ||
previewUrls: [ | ||
'https://github.com/jaemin-s/jaemin-s/raw/refs/heads/main/image/portfolio/netflix.webp', | ||
'https://github.com/jaemin-s/jaemin-s/raw/refs/heads/main/image/portfolio/tving.webp', | ||
], | ||
stackCategories: [ | ||
{ | ||
title: '상태 관리', | ||
stacks: ['Redux', 'React Query'], | ||
}, | ||
{ title: '스타일링', stacks: ['Tailwind CSS'] }, | ||
{ title: '테스팅', stacks: ['Jest'] }, | ||
{ title: '개발 도구', stacks: ['ESLint', 'Prettier'] }, | ||
{ title: '빌드 도구', stacks: ['Next.js'] }, | ||
], | ||
functions: [ | ||
{ | ||
title: '주요 기술 1', | ||
description: ['기술 설명입니다', '도입 이유입니다'], | ||
comment: '추가적인 코멘트 자리입니다', | ||
}, | ||
{ | ||
title: '주요 기술 2', | ||
description: ['기술 설명입니다', '도입 이유입니다'], | ||
comment: '추가적인 코멘트 자리입니다', | ||
}, | ||
], | ||
}, | ||
{ | ||
title: '오초이스', | ||
description: '오초이스 설명 입니다', | ||
period: '2024.01 ~ 2024.12', | ||
image: 'https://github.com/jaemin-s/jaemin-s/raw/refs/heads/main/image/portfolio/tving.webp', | ||
type: ProjectType.PERSONAL, | ||
features: [ | ||
{ | ||
title: '주요 기능 이름', | ||
description: '기술 설명입니다.', | ||
}, | ||
], | ||
company: '(주)홈초이스', | ||
links: { demo: 'https://www.netflix.com/kr/', github: '' }, | ||
stackBadges: ['React', 'TypeScript'], | ||
previewUrls: [ | ||
'https://github.com/jaemin-s/jaemin-s/raw/refs/heads/main/image/portfolio/netflix.webp', | ||
'https://github.com/jaemin-s/jaemin-s/raw/refs/heads/main/image/portfolio/tving.webp', | ||
], | ||
stackCategories: [ | ||
{ | ||
title: '상태 관리', | ||
stacks: ['Redux', 'React Query'], | ||
}, | ||
{ title: '스타일링', stacks: ['Tailwind CSS'] }, | ||
{ title: '테스팅', stacks: ['Jest'] }, | ||
{ title: '개발 도구', stacks: ['ESLint', 'Prettier'] }, | ||
{ title: '빌드 도구', stacks: ['Next.js'] }, | ||
], | ||
functions: [ | ||
{ | ||
title: '주요 기술 1', | ||
description: ['기술 설명입니다', '도입 이유입니다'], | ||
comment: '추가적인 코멘트 자리입니다', | ||
}, | ||
{ | ||
title: '주요 기술 2', | ||
description: ['기술 설명입니다', '도입 이유입니다'], | ||
comment: '추가적인 코멘트 자리입니다', | ||
}, | ||
], | ||
}, | ||
{ | ||
title: '오초이스', | ||
description: '오초이스 설명 입니다', | ||
period: '2024.01 ~ 2024.12', | ||
image: 'https://github.com/jaemin-s/jaemin-s/raw/refs/heads/main/image/portfolio/netflix.webp', | ||
type: ProjectType.PERSONAL, | ||
features: [ | ||
{ | ||
title: '주요 기능 이름', | ||
description: '기술 설명입니다.', | ||
}, | ||
], | ||
company: '(주)홈초이스', | ||
links: { demo: 'https://www.netflix.com/kr/', github: '' }, | ||
stackBadges: ['React', 'TypeScript'], | ||
previewUrls: [ | ||
'https://github.com/jaemin-s/jaemin-s/raw/refs/heads/main/image/portfolio/netflix.webp', | ||
'https://github.com/jaemin-s/jaemin-s/raw/refs/heads/main/image/portfolio/tving.webp', | ||
], | ||
stackCategories: [ | ||
{ | ||
title: '상태 관리', | ||
stacks: ['Redux', 'React Query'], | ||
}, | ||
{ title: '스타일링', stacks: ['Tailwind CSS'] }, | ||
{ title: '테스팅', stacks: ['Jest'] }, | ||
{ title: '개발 도구', stacks: ['ESLint', 'Prettier'] }, | ||
{ title: '빌드 도구', stacks: ['Next.js'] }, | ||
], | ||
functions: [ | ||
{ | ||
title: '주요 기술 1', | ||
description: ['기술 설명입니다', '도입 이유입니다'], | ||
comment: '추가적인 코멘트 자리입니다', | ||
}, | ||
{ | ||
title: '주요 기술 2', | ||
description: ['기술 설명입니다', '도입 이유입니다'], | ||
comment: '추가적인 코멘트 자리입니다', | ||
}, | ||
], | ||
}, | ||
{ | ||
title: '오초이스', | ||
description: '오초이스 설명 입니다', | ||
period: '2024.01 ~ 2024.12', | ||
image: 'https://github.com/jaemin-s/jaemin-s/raw/refs/heads/main/image/portfolio/tving.webp', | ||
type: ProjectType.WORK, | ||
features: [ | ||
{ | ||
title: '주요 기능 이름', | ||
description: '기술 설명입니다.', | ||
}, | ||
], | ||
company: '(주)홈초이스', | ||
links: { demo: 'https://www.netflix.com/kr/', github: '' }, | ||
stackBadges: ['React', 'TypeScript'], | ||
previewUrls: [ | ||
'https://github.com/jaemin-s/jaemin-s/raw/refs/heads/main/image/portfolio/netflix.webp', | ||
'https://github.com/jaemin-s/jaemin-s/raw/refs/heads/main/image/portfolio/tving.webp', | ||
], | ||
stackCategories: [ | ||
{ | ||
title: '상태 관리', | ||
stacks: ['Redux', 'React Query'], | ||
}, | ||
{ title: '스타일링', stacks: ['Tailwind CSS'] }, | ||
{ title: '테스팅', stacks: ['Jest'] }, | ||
{ title: '개발 도구', stacks: ['ESLint', 'Prettier'] }, | ||
{ title: '빌드 도구', stacks: ['Next.js'] }, | ||
], | ||
functions: [ | ||
{ | ||
title: '주요 기술 1', | ||
description: ['기술 설명입니다', '도입 이유입니다'], | ||
comment: '추가적인 코멘트 자리입니다', | ||
}, | ||
{ | ||
title: '주요 기술 2', | ||
description: ['기술 설명입니다', '도입 이유입니다'], | ||
comment: '추가적인 코멘트 자리입니다', | ||
}, | ||
], | ||
}, | ||
{ | ||
title: '오초이스', | ||
description: '오초이스 설명 입니다', | ||
period: '2024.01 ~ 2024.12', | ||
image: 'https://github.com/jaemin-s/jaemin-s/raw/refs/heads/main/image/portfolio/netflix.webp', | ||
type: ProjectType.WORK, | ||
features: [ | ||
{ | ||
title: '주요 기능 이름', | ||
description: '기술 설명입니다.', | ||
}, | ||
], | ||
company: '(주)홈초이스', | ||
links: { demo: 'https://www.netflix.com/kr/', github: '' }, | ||
stackBadges: ['React', 'TypeScript'], | ||
previewUrls: [ | ||
'https://github.com/jaemin-s/jaemin-s/raw/refs/heads/main/image/portfolio/netflix.webp', | ||
'https://github.com/jaemin-s/jaemin-s/raw/refs/heads/main/image/portfolio/tving.webp', | ||
], | ||
stackCategories: [ | ||
{ | ||
title: '상태 관리', | ||
stacks: ['Redux', 'React Query'], | ||
}, | ||
{ title: '스타일링', stacks: ['Tailwind CSS'] }, | ||
{ title: '테스팅', stacks: ['Jest'] }, | ||
{ title: '개발 도구', stacks: ['ESLint', 'Prettier'] }, | ||
{ title: '빌드 도구', stacks: ['Next.js'] }, | ||
], | ||
functions: [ | ||
{ | ||
title: '주요 기술 1', | ||
description: ['기술 설명입니다', '도입 이유입니다'], | ||
comment: '추가적인 코멘트 자리입니다', | ||
}, | ||
{ | ||
title: '주요 기술 2', | ||
description: ['기술 설명입니다', '도입 이유입니다'], | ||
comment: '추가적인 코멘트 자리입니다', | ||
}, | ||
], | ||
}, | ||
{ | ||
title: '오초이스', | ||
description: '오초이스 설명 입니다', | ||
period: '2024.01 ~ 2024.12', | ||
image: 'https://github.com/jaemin-s/jaemin-s/raw/refs/heads/main/image/portfolio/netflix.webp', | ||
type: ProjectType.WORK, | ||
features: [ | ||
{ | ||
title: '주요 기능 이름', | ||
description: '기술 설명입니다.', | ||
}, | ||
], | ||
company: '(주)홈초이스', | ||
links: { demo: '', github: '' }, | ||
stackBadges: ['React', 'TypeScript'], | ||
previewUrls: [ | ||
'https://github.com/jaemin-s/jaemin-s/raw/refs/heads/main/image/portfolio/netflix.webp', | ||
'https://github.com/jaemin-s/jaemin-s/raw/refs/heads/main/image/portfolio/tving.webp', | ||
], | ||
stackCategories: [ | ||
{ | ||
title: '상태 관리', | ||
stacks: ['Redux', 'React Query'], | ||
}, | ||
{ title: '스타일링', stacks: ['Tailwind CSS'] }, | ||
{ title: '테스팅', stacks: ['Jest'] }, | ||
{ title: '개발 도구', stacks: ['ESLint', 'Prettier'] }, | ||
{ title: '빌드 도구', stacks: ['Next.js'] }, | ||
], | ||
functions: [ | ||
{ | ||
title: '주요 기술 1', | ||
description: ['기술 설명입니다', '도입 이유입니다'], | ||
comment: '추가적인 코멘트 자리입니다', | ||
}, | ||
{ | ||
title: '주요 기술 2', | ||
description: ['기술 설명입니다', '도입 이유입니다'], | ||
comment: '추가적인 코멘트 자리입니다', | ||
}, | ||
], | ||
}, | ||
] | ||
|
||
getProjectList(): ProjectItem[] { | ||
return this.mockData | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,7 @@ | ||
import { CareerRepositoryImpl } from './CareerRepositoryImpl' | ||
import { ProjectRepositoryImpl } from './ProjectRepositoryImpl' | ||
import { SkillRepositoryImpl } from './SkillRepositoryImpl' | ||
|
||
export const skillRepository = new SkillRepositoryImpl() | ||
export const CareerRepository = new CareerRepositoryImpl() | ||
export const ProjectRepository = new ProjectRepositoryImpl() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
import { ProjectItem } from '../entities/project.entity' | ||
|
||
export interface ProjectRepository { | ||
getProjectList(): ProjectItem[] | ||
} |
Oops, something went wrong.