Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: Display OBJKTs that were flagged by the Teia content moderation team as NSFW or photosensitive. #378

Merged
merged 6 commits into from
Feb 25, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions src/atoms/token-collection/index.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ import {
} from '@constants'
import { IconCache } from '@utils/with-icon'
import { shallow } from 'zustand/shallow'
import { useUserStore } from '@context/userStore'

/**
* Single view, vertical feed
Expand Down Expand Up @@ -100,6 +101,7 @@ function TokenCollection({
)
},
}) {
const [user_address] = useUserStore((state) => [state.address])
const [searchParams, setSearchParams] = useSearchParams()
const { walletBlockMap, nsfwMap, photosensitiveMap, objktBlockMap } =
useSettings()
Expand Down Expand Up @@ -188,6 +190,11 @@ function TokenCollection({
token.teia_meta?.accessibility?.hazards.includes(
METADATA_ACCESSIBILITY_HAZARDS_PHOTOSENS
)),

isModerated:
(photosensitiveMap.get(token.token_id) === 1 ||
nsfwMap.get(token.token_id) === 1) &&
token.artist_address === user_address, // true (testing it in dev is not trivial)
}
})

Expand Down
61 changes: 61 additions & 0 deletions src/components/feed-item/index.module.scss
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,67 @@
pointer-events: none;
}

.moderated {
background: repeating-linear-gradient(
45deg,
#f43d00,
#ef0000 10px,
#621307 10px,
#d9240c 20px
);
}

.moderation_corner {
position: absolute;
right: -5px;
top: -5px;
z-index: 1;
overflow: hidden;
width: 75px;
height: 75px;
text-align: right;
z-index: 300;
}
.moderation_corner span {
font-size: $font-xsmall;
font-weight: bold;
color: #fff;
text-transform: uppercase;
text-align: center;
line-height: 20px;
transform: rotate(45deg);
-webkit-transform: rotate(45deg);
width: 100px;
display: block;
background: linear-gradient(#f70505 0%, #8f0808 100%);
box-shadow: 0 3px 10px -5px rgba(0, 0, 0, 0.5);
position: absolute;
top: 19px;
right: -21px;
}
.moderation_corner span::before {
content: '';
position: absolute;
left: 0px;
top: 100%;
z-index: -1;
border-left: 3px solid #8f0808;
border-right: 3px solid transparent;
border-bottom: 3px solid transparent;
border-top: 3px solid #8f0808;
}
.moderation_corner span::after {
content: '';
position: absolute;
right: 0px;
top: 100%;
z-index: -1;
border-left: 3px solid transparent;
border-right: 3px solid #8f0808;
border-bottom: 3px solid transparent;
border-top: 3px solid #8f0808;
}

.container {
position: relative;
max-width: 600px;
Expand Down
6 changes: 6 additions & 0 deletions src/components/feed-item/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,7 @@ export const FeedItem = ({ nft }: { nft: NFT }) => {
[styles.blur]: nft.isNSFW && !nsfwFriendly,
[styles.photo_protect]: nft.isPhotosensitive && !photosensitiveFriendly,
[styles.masonry]: viewMode === 'masonry',
[styles.moderated]: nft.isModerated,
})

return (
Expand All @@ -69,6 +70,11 @@ export const FeedItem = ({ nft }: { nft: NFT }) => {
// onMouseLeave={() => setHover(false)}
className={containerClasses}
>
{nft.isModerated && (
<div className={styles.moderation_corner}>
<span>MODERATED</span>
</div>
)}
{nft.mime_type?.startsWith('audio') ? (
<RenderMediaType
details={<TokenHover nft={nft} visible={hover && !zen} />}
Expand Down
10 changes: 8 additions & 2 deletions src/pages/objkt-display/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -89,21 +89,27 @@ export const ObjktDisplay = () => {
)
}

const isNSFW = (nsfwMap.get(objkt.token_id) === 1)
const isPhotosensitive = (photosensitiveMap.get(objkt.token_id) === 1)
if (
nsfwMap.get(objkt.token_id) === 1 ||
isNSFW ||
objkt.teia_meta?.content_rating === METADATA_CONTENT_RATING_MATURE
) {
objkt.isNSFW = true
}
if (
photosensitiveMap.get(objkt.token_id) === 1 ||
isPhotosensitive ||
objkt.teia_meta?.accessibility?.hazards.includes(
METADATA_ACCESSIBILITY_HAZARDS_PHOTOSENS
)
) {
objkt.isPhotosensitive = true
}

if(isNSFW || isPhotosensitive) {
objkt.isModerated = true
}

objkt.restricted = walletBlockMap.get(objkt.artist_address) === 1
objkt.underReview = underReviewMap.get(objkt.artist_address) === 1

Expand Down
8 changes: 8 additions & 0 deletions src/pages/objkt-display/tabs/Info.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,14 @@ export const Info = () => {
value={'Photo Sensitive'}
/>
)}
{nft.isModerated && nft.artist_address === viewer_address && (
<Attribute
label="Moderation"
value={
'The TEIA content moderation team has overridden the NSFW or Photosensitive attributes on this token'
}
/>
)}

<div className={styles.info_attributes}>
Rights:
Expand Down
1 change: 1 addition & 0 deletions src/types.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -214,6 +214,7 @@ export interface TxWithIndex extends Tx {
export type NFTFiltered = {
isNSFW?: boolean
isPhotosensitive?: boolean
isModerated?: boolean
}

export type NFT = NFTBase &
Expand Down
Loading