@@ -8,8 +8,10 @@ import AutoCompletion from "./AutoCompletion";
8
8
9
9
function Text ( props ) {
10
10
//const colormap = file.colormap
11
+ const bracketClosed = [ ")" , "}" , "]" , '"' , "'" , "`" ] ;
11
12
const [ textSplit , setTextSplit ] = useState ( [ ] ) ;
12
13
const [ themeColor , setThemeColor ] = useState ( "" ) ;
14
+ const [ quotePositions , setQuotePositions ] = useState ( [ ] ) ; // 짝수 번째 따옴표 위치 기록
13
15
let wrong = 0 ,
14
16
correct = 0 ,
15
17
space = 0 ;
@@ -26,6 +28,45 @@ function Text(props) {
26
28
// eslint-disable-next-line react-hooks/exhaustive-deps
27
29
} , [ textSplit ] ) ;
28
30
31
+ useEffect ( ( ) => {
32
+ const content = getFilecontents ( props . file ) . content ;
33
+ setTextSplit ( content ) ;
34
+
35
+ // 따옴표 위치 미리 계산
36
+ const positions = [ ] ;
37
+ let quoteCount = 0 ;
38
+ for ( let i = 0 ; i < content . length ; i ++ ) {
39
+ if ( [ '"' , "'" , "`" ] . includes ( content [ i ] ) ) {
40
+ quoteCount ++ ;
41
+ if ( quoteCount % 2 === 0 ) {
42
+ positions . push ( i ) ; // 짝수 번째 따옴표 위치 기록
43
+ }
44
+ }
45
+ }
46
+ setQuotePositions ( positions ) ;
47
+ } , [ props . file ] ) ;
48
+
49
+ // 자동 괄호 입력 로직
50
+ useEffect ( ( ) => {
51
+ if ( props . deletionMode ) return ; // 삭제 모드인 경우 실행하지 않음
52
+
53
+ const currentIndex = user . length ;
54
+ const nextChar = textSplit [ currentIndex ] ; // 다음에 입력할 위치의 문자
55
+
56
+ if ( bracketClosed . includes ( nextChar ) ) {
57
+ // 닫히는 괄호인 경우
58
+ if ( [ '"' , "'" , "`" ] . includes ( nextChar ) ) {
59
+ // 따옴표인 경우, 짝수 번째 위치인지 확인
60
+ if ( quotePositions . includes ( currentIndex ) ) {
61
+ props . setUserInput ( user + nextChar ) ;
62
+ }
63
+ } else {
64
+ // 다른 닫히는 괄호인 경우 자동으로 입력
65
+ props . setUserInput ( user + nextChar ) ;
66
+ }
67
+ }
68
+ } , [ user , textSplit , quotePositions ] ) ; // user, textSplit, quotePositions가 변경될 때마다 실행
69
+
29
70
useEffect ( ( ) => {
30
71
if ( props . daynight % 2 === 1 ) setThemeColor ( "#585858" ) ;
31
72
else setThemeColor ( "#BEBEBE" ) ;
0 commit comments