-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1192 from wakmusic/1189-log-missing-and-changes
๐ :: (#1189) ๋๋ฝ ๋ก๊ทธ ๋ฐ ์์ ,์ถ๊ฐ๋ ๋ก๊ทธ ์์
- Loading branch information
Showing
53 changed files
with
503 additions
and
58 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
5 changes: 5 additions & 0 deletions
5
Projects/Features/MainTabFeature/Sources/Analytics/NoticePopupAnalyticsLog.swift
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
import LogManager | ||
|
||
enum NoticePopupAnalyticsLog: AnalyticsLogType { | ||
case clickNoticeItem(id: String, location: String = "notice_popup") | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
6 changes: 6 additions & 0 deletions
6
Projects/Features/MyInfoFeature/Sources/Analytics/FAQAnalyticsLog.swift
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
import LogManager | ||
|
||
enum FAQAnalyticsLog: AnalyticsLogType { | ||
case selectFaqCategory(category: String) | ||
case clickFaqItem(title: String) | ||
} |
33 changes: 33 additions & 0 deletions
33
Projects/Features/MyInfoFeature/Sources/Analytics/InquiryAnalyticsLog.swift
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
import LogManager | ||
|
||
enum InquiryAnalyticsLog: AnalyticsLogType { | ||
case clickInquirySubmitButton(type: LogInquiryType) | ||
|
||
enum LogInquiryType: String, AnalyticsLogEnumParametable { | ||
case bug = "๋ฒ๊ทธ ์ ๋ณด" | ||
case feature = "๊ธฐ๋ฅ ์ ์" | ||
case addSong = "๋ ธ๋ ์ถ๊ฐ" | ||
case modifySong = "๋ ธ๋ ์์ " | ||
case weeklyChart = "์ฃผ๊ฐ์ฐจํธ ์์" | ||
case credit = "์ฐธ์ฌ ์ ๋ณด" | ||
|
||
init(mailSource: InquiryType) { | ||
switch mailSource { | ||
case .reportBug: | ||
self = .bug | ||
case .suggestFunction: | ||
self = .feature | ||
case .addSong: | ||
self = .addSong | ||
case .modifySong: | ||
self = .modifySong | ||
case .weeklyChart: | ||
self = .weeklyChart | ||
case .credit: | ||
self = .credit | ||
case .unknown: | ||
self = .bug | ||
} | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
5 changes: 5 additions & 0 deletions
5
Projects/Features/MyInfoFeature/Sources/Analytics/NoticeAnalyticsLog.swift
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
import LogManager | ||
|
||
enum NoticeAnalyticsLog: AnalyticsLogType { | ||
case clickNoticeItem(id: String, location: String = "notice") | ||
} |
Oops, something went wrong.