Ex 8

문제

/*

Intro:

    Project grew and we ended up in a situation with
    some users starting to have more influence.
    Therefore, we decided to create a new person type
    called PowerUser which is supposed to combine
    everything User and Admin have.

Exercise:

    Define type PowerUser which should have all fields
    from both User and Admin (except for type),
    and also have type 'powerUser' without duplicating
    all the fields in the code.

*/

interface User {
    type: 'user';
    name: string;
    age: number;
    occupation: string;
}

interface Admin {
    type: 'admin';
    name: string;
    age: number;
    role: string;
}

type PowerUser = unknown;

export type Person = User | Admin | PowerUser;

export const persons: Person[] = [
    { type: 'user', name: 'Max Mustermann', age: 25, occupation: 'Chimney sweep' },
    { type: 'admin', name: 'Jane Doe', age: 32, role: 'Administrator' },
    { type: 'user', name: 'Kate MΓΌller', age: 23, occupation: 'Astronaut' },
    { type: 'admin', name: 'Bruce Willis', age: 64, role: 'World saver' },
    {
        type: 'powerUser',
        name: 'Nikki Stone',
        age: 45,
        role: 'Moderator',
        occupation: 'Cat groomer'
    }
];

function isAdmin(person: Person): person is Admin {
    return person.type === 'admin';
}

function isUser(person: Person): person is User {
    return person.type === 'user';
}

function isPowerUser(person: Person): person is PowerUser {
    return person.type === 'powerUser';
}

export function logPerson(person: Person) {
    let additionalInformation: string = '';
    if (isAdmin(person)) {
        additionalInformation = person.role;
    }
    if (isUser(person)) {
        additionalInformation = person.occupation;
    }
    if (isPowerUser(person)) {
        additionalInformation = `${person.role}, ${person.occupation}`;
    }
    console.log(`${person.name}, ${person.age}, ${additionalInformation}`);
}

console.log('Admins:');
persons.filter(isAdmin).forEach(logPerson);

console.log();

console.log('Users:');
persons.filter(isUser).forEach(logPerson);

console.log();

console.log('Power users:');
persons.filter(isPowerUser).forEach(logPerson);

// In case you are stuck:
// https://www.typescriptlang.org/docs/handbook/utility-types.html
// https://www.typescriptlang.org/docs/handbook/2/objects.html#intersection-types

풀이

User와 Admin νƒ€μž…μ„ ν•©μΉœ PowerUser νƒ€μž…μ„ 생성해 μ •μ˜ν•΄μ•Ό ν•œλ‹€.

μ²˜μŒμ—λŠ” &λ₯Ό ν™œμš©ν•΄λ΄€λŠ”λ°

νƒ€μž… PowerUser의 ν”„λ‘œνΌν‹°μΈ type = "powerUser"μ—¬μ•Ό ν–ˆκΈ°μ— μ‹€νŒ¨ν–ˆλ‹€.

κ·Έλž˜μ„œ λ‹€μŒκ³Ό 같이 type을 μ„€μ •ν•˜κ³ , Pick을 ν™œμš©ν•΄ User와 Adminμ—μ„œ ν•„μš”ν•œ ν”„λ‘œνΌν‹°λ₯Ό 가져와 ν•©μ„±ν–ˆλ‹€.

**

정닡을 λ³΄λ‹ˆ Pick으둜 μ“Έ ν”„λ‘œνΌν‹°λ₯Ό κ°€μ Έμ˜€λŠ”κ²Œ μ•„λ‹ˆλΌ μ•ˆ μ“°λŠ” ν”„λ‘œνΌν‹°λ₯Ό μ§€μš°λŠ” 방법을 μ‚¬μš©ν–ˆλ‹€.

이 방법이 더 κΉ”λ”ν•œ λ°©λ²•μ΄μ—ˆλ‹€.

μ°Έκ³ 

Pick<Type, 'property'> - νƒ€μž…μ—μ„œ νŠΉμ • ν”„λ‘œνΌν‹°λ₯Ό 뽑아 νƒ€μž…μ„ κ΅¬μ„±ν•œλ‹€.

Omit<Type, 'property'> - νƒ€μž…μ—μ„œ νŠΉμ • ν”„λ‘œνΌν‹°λ₯Ό μ§€μš΄ νƒ€μž…μ„ κ΅¬μ„±ν•œλ‹€.

μ°Έκ³ arrow-up-right

Last updated