Add manifest & movie buttons to item support modal
Helpful for debugging HTML5 conversion and making sure we're up to date!
This commit is contained in:
parent
197c623426
commit
d5336cafc4
1 changed files with 29 additions and 1 deletions
|
@ -142,6 +142,30 @@ function ItemLayerSupportModal({
|
||||||
<MetadataLabel>Assets:</MetadataLabel>
|
<MetadataLabel>Assets:</MetadataLabel>
|
||||||
<MetadataValue>
|
<MetadataValue>
|
||||||
<HStack spacing="2">
|
<HStack spacing="2">
|
||||||
|
<Button
|
||||||
|
as="a"
|
||||||
|
size="xs"
|
||||||
|
target="_blank"
|
||||||
|
href={getManifestUrlFromSwfUrl(itemLayer.swfUrl)}
|
||||||
|
colorScheme="teal"
|
||||||
|
>
|
||||||
|
Manifest <ExternalLinkIcon ml="1" />
|
||||||
|
</Button>
|
||||||
|
{itemLayer.canvasMovieLibraryUrl ? (
|
||||||
|
<Button
|
||||||
|
as="a"
|
||||||
|
size="xs"
|
||||||
|
target="_blank"
|
||||||
|
href={itemLayer.canvasMovieLibraryUrl}
|
||||||
|
colorScheme="teal"
|
||||||
|
>
|
||||||
|
Movie <ExternalLinkIcon ml="1" />
|
||||||
|
</Button>
|
||||||
|
) : (
|
||||||
|
<Button size="xs" isDisabled>
|
||||||
|
No Movie
|
||||||
|
</Button>
|
||||||
|
)}
|
||||||
{itemLayer.svgUrl ? (
|
{itemLayer.svgUrl ? (
|
||||||
<Button
|
<Button
|
||||||
as="a"
|
as="a"
|
||||||
|
@ -187,7 +211,7 @@ function ItemLayerSupportModal({
|
||||||
colorScheme="gray"
|
colorScheme="gray"
|
||||||
onClick={() => setUploadModalIsOpen(true)}
|
onClick={() => setUploadModalIsOpen(true)}
|
||||||
>
|
>
|
||||||
Upload PNG <ChevronRightIcon />
|
Upload <ChevronRightIcon />
|
||||||
</Button>
|
</Button>
|
||||||
<ItemLayerSupportUploadModal
|
<ItemLayerSupportUploadModal
|
||||||
item={item}
|
item={item}
|
||||||
|
@ -483,4 +507,8 @@ function ItemLayerSupportModalRemoveButton({
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
function getManifestUrlFromSwfUrl(swfUrl) {
|
||||||
|
return swfUrl.replace("/swf/", "/data/").replace(/\.swf$/, "/manifest.json");
|
||||||
|
}
|
||||||
|
|
||||||
export default ItemLayerSupportModal;
|
export default ItemLayerSupportModal;
|
||||||
|
|
Loading…
Reference in a new issue