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
|
import * as serverData from "../../foundation/json-parsing/server-data";
import { isNothing, isSome } from "@jet/environment";
import { asDictionary } from "@apple-media-services/media-api";
import { artworkFromApiArtwork } from "../content/content";
import { asString } from "../../foundation/json-parsing/server-data";
import { Video } from "../../api/models";
export function getSelectedCustomCreativeId(data) {
if (preprocessor.CARRY_BUILD || preprocessor.DEBUG_BUILD) {
const customCreativeMeta = asDictionary(data, "meta.creativeAttributes");
const selectedCustomCreativeId = asString(customCreativeMeta, "creatives.0");
return selectedCustomCreativeId;
}
return null;
}
/**
* Create a custom creative artwork from the data.
* @param objectGraph Object graph
* @param data that we use to populate custom creative artwork
* @param customCreativeData where we store custom creative data.
* @param cropCode for the artwork
*/
export function customCreativeArtworkFromData(objectGraph, data, customCreativeData, cropCode) {
if (preprocessor.CARRY_BUILD || preprocessor.DEBUG_BUILD) {
const selectedCustomCreativeId = getSelectedCustomCreativeId(data);
if (isNothing(customCreativeData) || isNothing(selectedCustomCreativeId)) {
return null;
}
const creativeAssetArtwork = artworkFromApiArtwork(objectGraph, serverData.asDictionary(customCreativeData, `${selectedCustomCreativeId}.adCreativeArtwork`), {
allowingTransparency: false,
useCase: 4 /* ArtworkUseCase.LockupScreenshots */,
});
if (isSome(cropCode) && isSome(creativeAssetArtwork)) {
creativeAssetArtwork.crop = cropCode;
}
return creativeAssetArtwork;
}
else {
return null;
}
}
/**
* Create a custom creative video from the data.
* @param objectGraph Object graph
* @param data that we use to populate custom creative video and preview.
* @param videoConfiguration for the custom creative video.
* @param customCreativeData where we store custom creative data.
* @param cropCode for the artwork
*/
export function customCreativeVideoFromData(objectGraph, data, customCreativeData, videoConfiguration, cropCode) {
if (preprocessor.CARRY_BUILD || preprocessor.DEBUG_BUILD) {
const selectedCustomCreativeId = getSelectedCustomCreativeId(data);
if (isNothing(selectedCustomCreativeId)) {
return null;
}
const creativeVideoData = serverData.asDictionary(customCreativeData, `${selectedCustomCreativeId}.adCreativeVideo`);
const videoUrl = serverData.asString(creativeVideoData, "video");
const preview = artworkFromApiArtwork(objectGraph, serverData.asDictionary(creativeVideoData, "previewFrame"), {
allowingTransparency: false,
useCase: 4 /* ArtworkUseCase.LockupScreenshots */,
});
if (isNothing(videoUrl) || isNothing(preview)) {
return null;
}
if (isSome(cropCode)) {
preview.crop = cropCode;
}
return new Video(videoUrl, preview, videoConfiguration);
}
return null;
}
//# sourceMappingURL=custom-creative.js.map
|