-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
59 lines (54 loc) · 2.24 KB
/
index.html
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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>SVN 유저 추가 프로그램</title>
</head>
<body>
<div>
<div>
<div>SVN 저장소 URL</div>
<textarea id="repoPath" style="width: 100%; height: 10em;" placeholder="ex) svn://localhost/repo1 svn://localhost/repo2 svn://localhost/repo3 "></textarea>
</div>
<div>
<div>추가할 사용자 목록</div>
<textarea id="userList" style="width: 100%; height: 10em;" placeholder="ex) hansk jungjh jungdw boss 비밀번호는 모두 1234로 초기화 됩니다."></textarea>
</div>
<input type="button" value="만들기" onclick="make()">
<div id="output">상태가 표시되는 곳입니다.</div>
</div>
<script>
const { ipcRenderer } = require('electron');
var repoStartPath='';
ipcRenderer.on('repoStartPath-reply', (event, arg) => {
console.log(arg)
repoStartPath = arg;
document.getElementById('output').innerText = 'svn 경로가 '+arg+'로 설정되었습니다. 아닐시 configure.conf 파일을 수정하고 프로그램 재시작해주세요.';
});
ipcRenderer.on('alert-result', (event, arg) => {
var array = arg.toString().split("\n");
var res = "";
for (let i = 0; i < array.length; i++) {
const element = array[i];
if(array[i].indexOf("작업성공") != -1){
res += "<div>"+array[i]+"</div>";
}else{
res += "<div style='color:red'>"+array[i]+"</div>";
}
}
document.getElementById('output').innerHTML = res;
});
ipcRenderer.send('repoStartPath-check', 'async ping');
function make(){
var repoPath = document.getElementById("repoPath").value;
var userList = document.getElementById("userList").value;
console.log(repoPath);
console.log(userList);
// repoPath : SVN 저장소 URL
// userList : 추가할 사용자 목록
// repoStartPath : SVN 저장소들이 있는 로컬 경로
ipcRenderer.send('addUsers', repoPath+'#$'+userList+'#$'+repoStartPath);
}
</script>
</body>
</html>