📦 EqualifyEverything / raci

📄 data.js · 136 lines
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136export const people = [
    { id: 'blake', name: 'Blake' },
    { id: 'gemma', name: 'Jemma' },
    { id: 'stefin', name: 'Stefin' },
    { id: 'trey', name: 'Trey' },
    { id: 'amanda', name: 'Amanda' },
    { id: 'helen', name: 'Helen' },
    { id: 'chris', name: 'Chris' },
    { id: 'brother_j', name: 'Brother J' },
    { id: 'ck', name: 'CK' },
    { id: 'michelle', name: 'Michelle' },
    { id: 'michael', name: 'Michael' },
];

export const areas = [
    {
        id: 'fundraising',
        label: 'Fundraising',
        r: ['blake'],
        a: ['gemma'],
        c: ['stefin', 'trey', 'amanda'],
        i: ['chris', 'brother_j', 'ck', 'helen', 'michelle', 'michael']
    },
    {
        id: 'support',
        label: 'Support',
        r: ['michael'],
        a: ['helen'],
        c: ['trey', 'gemma', 'blake', 'amanda'],
        i: ['chris', 'stefin', 'brother_j', 'ck', 'michelle']
    },
    {
        id: 'training',
        label: 'Training',
        r: ['amanda'],
        a: ['blake'],
        c: ['trey', 'gemma', 'helen'],
        i: ['chris', 'brother_j', 'ck', 'stefin', 'michelle', 'michael']
    },
    {
        id: 'feature_buildout',
        label: 'Feature Buildout',
        r: ['trey'],
        a: ['blake'],
        c: ['chris', 'stefin', 'gemma', 'ck', 'amanda'],
        i: ['helen', 'brother_j', 'michelle', 'michael']
    },
    {
        id: 'fixes',
        label: 'Fixes',
        r: ['trey'],
        a: ['blake'],
        c: ['michael', 'chris', 'ck', 'amanda', 'helen'],
        i: ['gemma', 'stefin', 'brother_j', 'michelle']
    },
    {
        id: 'project_management',
        label: 'Project Management',
        r: ['stefin'],
        a: ['blake'],
        c: ['gemma', 'trey', 'amanda'],
        i: ['chris', 'brother_j', 'ck', 'helen', 'michelle', 'michael']
    },
    {
        id: 'accessibility',
        label: 'Accessibility',
        r: ['ck'],
        a: ['blake'],
        c: ['helen', 'brother_j', 'trey'],
        i: ['chris', 'gemma', 'stefin', 'amanda', 'michelle', 'michael']
    },
    {
        id: 'budget',
        label: 'Budget',
        r: ['blake'],
        a: ['gemma'],
        c: ['stefin', 'trey', 'amanda'],
        i: ['chris', 'brother_j', 'ck', 'helen', 'michelle', 'michael']
    },
    {
        id: 'release',
        label: 'Release',
        r: ['amanda'],
        a: ['blake'],
        c: ['gemma', 'trey', 'helen', 'stefin'],
        i: ['chris', 'brother_j', 'ck', 'michelle', 'michael']
    },
    {
        id: 'community',
        label: 'Community',
        r: ['stefin'],
        a: ['blake'],
        c: ['gemma', 'trey', 'amanda'],
        i: ['chris', 'brother_j', 'ck', 'helen', 'michelle', 'michael']
    },
    {
        id: 'milestones',
        label: 'Milestones',
        r: ['blake'],
        a: ['gemma'],
        c: ['stefin', 'trey', 'amanda'],
        i: ['chris', 'brother_j', 'ck', 'helen', 'michelle', 'michael']
    },
    {
        id: 'operations',
        label: 'Operations',
        r: ['michelle'],
        a: ['blake'],
        c: ['stefin', 'gemma', 'helen'],
        i: ['trey', 'amanda', 'chris', 'brother_j', 'ck', 'michael']
    }
];

export const roleDefinitions = {
    R: {
        title: 'Responsible',
        description: 'The person who performs the work or completes the task.',
        color: '#10b981'
    },
    A: {
        title: 'Accountable',
        description: 'The person who is ultimately answerable for the correct and thorough completion of the task.',
        color: '#f59e0b'
    },
    C: {
        title: 'Consulted',
        description: 'Those whose opinions are sought, typically subject-matter experts.',
        color: '#3b82f6'
    },
    I: {
        title: 'Informed',
        description: 'Those who are kept up-to-date on progress or completion.',
        color: '#6b7280'
    }
};