Glitch info for pets w/ OFFICIAL_SVG_IS_INCORRECT
This commit is contained in:
parent
a66fa02f15
commit
db8e7848d7
2 changed files with 36 additions and 6 deletions
src/app
|
@ -348,6 +348,24 @@ function OutfitKnownGlitchesBadge({ appearance }) {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Check whether the pet has OFFICIAL_SVG_IS_INCORRECT.
|
||||||
|
const petLayers = petAppearance?.layers || [];
|
||||||
|
for (const layer of petLayers) {
|
||||||
|
const layerHasOfficialSvgIsIncorrect = (layer.knownGlitches || []).includes(
|
||||||
|
"OFFICIAL_SVG_IS_INCORRECT"
|
||||||
|
);
|
||||||
|
if (layerHasOfficialSvgIsIncorrect) {
|
||||||
|
glitchMessages.push(
|
||||||
|
<Box key={`official-svg-is-incorrect-for-pet-layer-${layer.id}`}>
|
||||||
|
There's a glitch in the art for this pet's <i>{layer.zone.label}</i>{" "}
|
||||||
|
zone that prevents us from showing the full-scale SVG version of the
|
||||||
|
image. Instead, we're showing a PNG, which might look a bit blurry on
|
||||||
|
larger screens.
|
||||||
|
</Box>
|
||||||
|
);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
if (glitchMessages.length === 0) {
|
if (glitchMessages.length === 0) {
|
||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
|
|
|
@ -207,16 +207,26 @@ export const itemAppearanceFragmentForGetVisibleLayers = gql`
|
||||||
export const appearanceLayerFragment = gql`
|
export const appearanceLayerFragment = gql`
|
||||||
fragment AppearanceLayerForOutfitPreview on AppearanceLayer {
|
fragment AppearanceLayerForOutfitPreview on AppearanceLayer {
|
||||||
id
|
id
|
||||||
remoteId # HACK: This is for Support tools, but other views don't need it
|
|
||||||
svgUrl
|
svgUrl
|
||||||
canvasMovieLibraryUrl
|
canvasMovieLibraryUrl
|
||||||
imageUrl(size: SIZE_600)
|
imageUrl(size: SIZE_600)
|
||||||
swfUrl # HACK: This is for Support tools, but other views don't need it
|
|
||||||
knownGlitches # HACK: This is for Support tools, but other views don't need it
|
|
||||||
bodyId
|
bodyId
|
||||||
|
knownGlitches
|
||||||
zone {
|
zone {
|
||||||
id
|
id
|
||||||
depth @client
|
depth @client
|
||||||
|
label @client
|
||||||
|
}
|
||||||
|
}
|
||||||
|
`;
|
||||||
|
|
||||||
|
const appearanceLayerFragmentForSupport = gql`
|
||||||
|
fragment AppearanceLayerForSupport on AppearanceLayer {
|
||||||
|
id
|
||||||
|
remoteId # HACK: This is for Support tools, but other views don't need it
|
||||||
|
swfUrl # HACK: This is for Support tools, but other views don't need it
|
||||||
|
zone {
|
||||||
|
id
|
||||||
label @client # HACK: This is for Support tools, but other views don't need it
|
label @client # HACK: This is for Support tools, but other views don't need it
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -226,12 +236,15 @@ export const itemAppearanceFragment = gql`
|
||||||
fragment ItemAppearanceForOutfitPreview on ItemAppearance {
|
fragment ItemAppearanceForOutfitPreview on ItemAppearance {
|
||||||
id
|
id
|
||||||
layers {
|
layers {
|
||||||
|
id
|
||||||
...AppearanceLayerForOutfitPreview
|
...AppearanceLayerForOutfitPreview
|
||||||
|
...AppearanceLayerForSupport # HACK: Most users don't need this!
|
||||||
}
|
}
|
||||||
...ItemAppearanceForGetVisibleLayers
|
...ItemAppearanceForGetVisibleLayers
|
||||||
}
|
}
|
||||||
|
|
||||||
${appearanceLayerFragment}
|
${appearanceLayerFragment}
|
||||||
|
${appearanceLayerFragmentForSupport}
|
||||||
${itemAppearanceFragmentForGetVisibleLayers}
|
${itemAppearanceFragmentForGetVisibleLayers}
|
||||||
`;
|
`;
|
||||||
|
|
||||||
|
@ -257,12 +270,11 @@ export const petAppearanceFragment = gql`
|
||||||
bodyId
|
bodyId
|
||||||
layers {
|
layers {
|
||||||
id
|
id
|
||||||
svgUrl
|
...AppearanceLayerForOutfitPreview
|
||||||
canvasMovieLibraryUrl
|
|
||||||
imageUrl(size: SIZE_600)
|
|
||||||
}
|
}
|
||||||
...PetAppearanceForGetVisibleLayers
|
...PetAppearanceForGetVisibleLayers
|
||||||
}
|
}
|
||||||
|
|
||||||
|
${appearanceLayerFragment}
|
||||||
${petAppearanceFragmentForGetVisibleLayers}
|
${petAppearanceFragmentForGetVisibleLayers}
|
||||||
`;
|
`;
|
||||||
|
|
Loading…
Reference in a new issue