import './mark-private-orgs.css'; import select from 'select-dom'; import {getUsername} from '../libs/utils'; import features from '../libs/features'; import * as icons from '../libs/icons'; import * as api from '../libs/api'; async function init(): Promise { const orgs = select.all('.avatar-group-item[data-hovercard-type="organization"]'); if (orgs.length === 0) { return false; } let publicOrgs = await api.v3(`users/${getUsername()}/orgs`); publicOrgs = publicOrgs.map((orgData: AnyObject) => `/${orgData.login}`); for (const org of orgs) { if (!publicOrgs.includes(org.pathname)) { org.classList.add('rgh-private-org'); org.append(icons.privateLockFilled()); } } } features.add({ id: __featureName__, description: 'Marks private organizations on your own profile.', screenshot: 'https://user-images.githubusercontent.com/6775216/44633467-d5dcc900-a959-11e8-9116-e6b0ffef66af.png', include: [ features.isOwnUserProfile ], load: features.onAjaxedPages, init });