-
Notifications
You must be signed in to change notification settings - Fork 0
/
project_config.ios.js
executable file
·428 lines (407 loc) · 11.4 KB
/
project_config.ios.js
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
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
import React, { Component } from "react";
import {
Modal,
ScrollView,
StyleSheet,
Text,
TextInput,
TouchableHighlight,
TouchableOpacity,
View,
} from "react-native";
import { ModalWindow } from "./modal.js";
import { incSuffix } from "./suffix.js";
class Category extends Component {
render() {
return (
<View style={styles.category}>
<View style={styles.categoryLabel}>
<Text style={styles.categoryLabelText}>{this.props.label}</Text>
</View>
{this.props.children}
</View>
)
}
}
class Item extends Component {
render() {
return (
<View style={styles.item}>
<View style={styles.itemLabel}>
<Text style={styles.itemLabelText}>{this.props.label}</Text>
</View>
<View style={styles.itemContainer}>
{this.props.children}
</View>
</View>
)
}
}
export class ProjectConfigScreen extends Component {
constructor(props) {
super(props);
this.state = {
name: "",
crankIn: "",
crankOut: "",
contacts: { // 사전처럼 사용한다.
"director": {
name: "",
number: "",
},
"supervisor": {
name: "",
number: "",
},
"assistant": {
name: "",
number: "",
},
"scripter": {
name: "",
number: "",
},
"scripter": {
name: "",
number: "",
},
"pd": {
name: "",
number: "",
},
"pm": {
name: "",
number: "",
},
},
cameras: [],
lenses: [],
outputResolution: "",
outputAspectRatio: "",
modalVisible: false,
deleteProjectName: "",
};
this.ContactInput.bind(this);
this.setModalVisible = this.setModalVisible.bind(this);
}
static navigationOptions = ({navigation}) => ({
title: `${navigation.state.params.project} 설정`,
});
ContactInput(roll) {
return (
<TouchableOpacity style={{flex:1, flexDirection:"row"}}>
<TextInput
style={styles.contactNameTextInput}
placeholder="이름"
value={this.state.contacts[roll].name}
onChangeText={(name) => {
var {contacts} = this.state;
contacts[roll].name = name;
this.setState({contacts});
}}
/>
<TextInput
keyboardType="phone-pad"
style={styles.contactNumberTextInput}
placeholder="전화번호"
value={this.state.contacts[roll].number}
onChangeText={(number) => {
var {contacts} = this.state;
contacts[roll].number = number;
this.setState({contacts});
}}
/>
</TouchableOpacity>
)
}
setModalVisible(visible) {
this.setState({modalVisible:visible});
}
componentDidMount() {
this.props.navigation.setParams({handleSetModalVisible: this.setModalVisible});
}
render() {
const { navigate } = this.props.navigation;
let CameraItems = this.state.cameras.map((v, i) => {
return (
<Item key={i} label={v.label}>
<TextInput
style={styles.itemTextInput}
value={this.state.cameras[i].name}
onChangeText={(name) => {
var {cameras} = this.state;
cameras[i].name = name
this.setState({cameras})
}}
/>
</Item>
)
});
let LensItems = this.state.lenses.map((v, i) => {
return (
<Item key={i} label={v.label}>
<TextInput
style={[styles.itemTextInput, {flex:1}]}
placeholder="이름"
value={this.state.lenses[i].name}
onChangeText={(name) => {
var {lenses} = this.state;
lenses[i].name = name
this.setState({lenses})
}}
/>
<TextInput
style={[styles.itemTextInput, {flex:2}]}
placeholder="시리얼 넘버"
value={this.state.lenses[i].serial}
onChangeText={(serial) => {
var {lenses} = this.state;
lenses[i].serial = serial
this.setState({lenses})
}}
/>
</Item>
)
});
return (
<View style={{flex:1}}>
<ModalWindow
visible={this.state.modalVisible}
contextStyle={{backgroundColor:"black"}}
windowStyle={{backgroundColor:"#770000"}}
title="프로젝트 삭제"
titleStyle={{backgroundColor:"#aa1111"}}
onPressCancel={() => {
this.setState({deleteProjectName: ""})
this.setModalVisible(false);
}}
onPressOK={() => {
var {deleteProjectName} = this.state;
if (deleteProjectName == this.state.projectName) {
// 할일: 프로젝트 지우기
}
this.setState({deleteProjectName: ""})
this.setModalVisible(false);
}}
>
<Text style={{fontSize:25, color:"white", marginBottom:10}}>주의: 프로젝트를 지우면 되살릴 수 없습니다.</Text>
<Text style={{fontSize:25, color:"white"}}>이 프로젝트를 정말로 지우려면 프로젝트 이름을 쓰고 확인 버튼을 눌러주세요.</Text>
<TextInput
value={this.state.deleteProjectName}
style={{fontSize:30, height:50, marginTop:40, borderRadius:2, backgroundColor:"white"}}
onChangeText={(deleteProjectName) => this.setState({deleteProjectName})}
/>
</ModalWindow>
<ScrollView style={styles.root}>
<Category label="기본 정보">
<Item label="이름">
<TextInput
style={styles.itemTextInput}
value={this.state.name}
onChangeText={(name) => {
this.setState({name})
}}
/>
</Item>
<Item label="크랭크 인">
<TextInput
style={styles.itemTextInput}
value={this.state.crankIn}
onChangeText={(crankIn) => {
this.setState({crankIn})
}}
/>
</Item>
<Item label="크랭크 아웃">
<TextInput
style={styles.itemTextInput}
value={this.state.crankOut}
onChangeText={(crankOut) => {
this.setState({crankOut})
}}
/>
</Item>
</Category>
<Category label="연락처">
<Item label="감독">
{this.ContactInput("director")}
</Item>
<Item label="슈퍼바이저">
{this.ContactInput("supervisor")}
</Item>
<Item label="어시스턴트">
{this.ContactInput("assistant")}
</Item>
<Item label="스크립터">
{this.ContactInput("scripter")}
</Item>
<Item label="PD">
{this.ContactInput("pd")}
</Item>
<Item label="PM">
{this.ContactInput("pm")}
</Item>
</Category>
<Category label="카메라">
{CameraItems}
<TouchableHighlight
style={styles.addItemButton}
onPress={() => {
var {cameras} = this.state;
if (cameras.length == 0) {
cameras.push({label:"카메라1", name:""});
this.setState({cameras});
return;
}
var last = cameras[cameras.length - 1];
var newLabel = incSuffix(last.label);
cameras.push({label:newLabel, name:""});
this.setState({cameras});
}}
>
<Text style={{color:"yellow", fontSize:25}}>+</Text>
</TouchableHighlight>
</Category>
<Category label="렌즈">
{LensItems}
<TouchableHighlight
style={styles.addItemButton}
onPress={() => {
var {lenses} = this.state;
if (lenses.length == 0) {
lenses.push({label:"렌즈1", name:"", serial:""});
this.setState({lenses});
return;
}
var last = lenses[lenses.length - 1];
var newLabel = incSuffix(last.label);
lenses.push({label:newLabel, name:"", serial:""});
this.setState({lenses});
}}
>
<Text style={{color:"yellow", fontSize:25}}>+</Text>
</TouchableHighlight>
</Category>
<Category label="아웃풋">
<Item label="해상도">
<TextInput
style={styles.itemTextInput}
value={this.state.outputResolution}
onChangeText={(outputResolution) => {
this.setState({outputResolution})
}}
/>
</Item>
<Item label="화면 비율">
<TextInput
style={styles.itemTextInput}
value={this.state.outputAspectRatio}
onChangeText={(outputAspectRatio) => {
this.setState({outputAspectRatio})
}}
/>
</Item>
</Category>
<Category label="삭제">
<View style={{flex:1, flexDirection:"row", justifyContent:"flex-end"}}>
<TouchableHighlight
style={[styles.deleteProjectButton, {width:150}]}
onPress={() => {
this.setModalVisible(true)
}}
>
<Text style={styles.text}>지우기</Text>
</TouchableHighlight>
</View>
</Category>
</ScrollView>
</View>
)
}
}
const styles = StyleSheet.create({
text: {
fontSize: 23,
color: "white",
},
root: {
flex: 1,
backgroundColor:"#141822",
},
category: {
paddingBottom:40,
},
categoryLabel: {
backgroundColor:"#112233",
flexDirection: "row",
padding: 10,
paddingTop:20,
marginBottom:6,
},
categoryLabelText: {
fontSize: 30,
color: "white",
},
item: {
height:60,
margin:10,
marginTop:20,
borderRadius:5,
borderColor:"black",
borderWidth:1,
flexDirection:"row",
},
itemLabel: {
width:150,
padding:10,
backgroundColor:"#112233",
justifyContent:"center"
},
itemLabelText: {
fontSize:23,
color:"white",
},
itemContainer: {
flex:1,
padding:10,
backgroundColor:"#334455",
flexDirection: "row",
},
itemTextInput: {
flex:1,
color:"white",
fontSize:23,
},
contactNameTextInput: {
flex:1,
color:"white",
fontSize:23,
},
contactNumberTextInput: {
flex:2,
color:"white",
fontSize:23,
},
addItemButton: {
height:60,
margin:10,
marginTop:20,
borderRadius:5,
backgroundColor: "transparent",
borderColor:"yellow",
borderWidth:1,
justifyContent:"center",
alignItems:"center",
},
deleteProjectButton: {
height:60,
margin:10,
marginTop:20,
borderRadius:5,
backgroundColor: "red",
borderColor:"black",
borderWidth:1,
justifyContent:"center",
alignItems:"center",
},
})