-
Notifications
You must be signed in to change notification settings - Fork 17
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
AudioPlayerAgent 1.9 -> 1.10 업데이트 (#1153)
## Summary - AudioPlayerAgent 버전 1.9 -> 1.10 업데이트 - BadgeButton관련 템플릿 값 추가 - BadgeButton관련 이벤트 값 추가
- Loading branch information
1 parent
bd3571f
commit 9ef853c
Showing
5 changed files
with
118 additions
and
1 deletion.
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
62 changes: 62 additions & 0 deletions
62
...Agents/Sources/CapabilityAgents/AudioPlayer/Event/AudioPlayerAgent+BadgeButtonEvent.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,62 @@ | ||
// | ||
// AudioPlayerAgent+BadgeButtonEvent.swift | ||
// NuguAgents | ||
// | ||
// Copyright © 2024 SK Telecom Co., Ltd. All rights reserved. | ||
// | ||
// Licensed under the Apache License, Version 2.0 (the "License"); | ||
// you may not use this file except in compliance with the License. | ||
// You may obtain a copy of the License at | ||
// | ||
// http://www.apache.org/licenses/LICENSE-2.0 | ||
// | ||
// Unless required by applicable law or agreed to in writing, software | ||
// distributed under the License is distributed on an "AS IS" BASIS, | ||
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
// See the License for the specific language governing permissions and | ||
// limitations under the License. | ||
// | ||
|
||
import Foundation | ||
|
||
// MARK: - Event | ||
|
||
extension AudioPlayerAgent { | ||
struct BadgeButtonEvent { | ||
let typeInfo: TypeInfo | ||
let playServiceId: String? | ||
|
||
enum TypeInfo { | ||
case badgeButtonSelected(token: String, postback: [String: AnyHashable]) | ||
} | ||
} | ||
} | ||
|
||
// MARK: - Eventable | ||
|
||
extension AudioPlayerAgent.BadgeButtonEvent: Eventable { | ||
var payload: [String: AnyHashable] { | ||
var eventPayload: [String: AnyHashable] = [ | ||
"playServiceId": playServiceId | ||
] | ||
|
||
switch typeInfo { | ||
case .badgeButtonSelected(token: let playlistItemToken, postback: let postback): | ||
eventPayload["token"] = playlistItemToken | ||
eventPayload["postback"] = postback | ||
|
||
if playServiceId == nil { | ||
eventPayload["playServiceId"] = postback["playServiceId"] | ||
} | ||
} | ||
|
||
return eventPayload | ||
} | ||
|
||
var name: String { | ||
switch typeInfo { | ||
case .badgeButtonSelected: | ||
return "ElementSelected" | ||
} | ||
} | ||
} |
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