|
| 1 | +import DeputyLanguage from './DeputyLanguage'; |
| 2 | +import deputyAnnouncementsEnglish from '../i18n/announcements/en.json'; |
| 3 | +import deputySharedEnglish from '../i18n/shared/en.json'; |
| 4 | +import UserConfiguration from './config/UserConfiguration'; |
| 5 | +import DeputyMessageWidget from './ui/shared/DeputyMessageWidget'; |
| 6 | +import unwrapWidget from './util/unwrapWidget'; |
| 7 | + |
| 8 | +/** |
| 9 | + * An announcement. The "Dismiss" option will always be pre-added. |
| 10 | + * |
| 11 | + * Title, description, and action labels are automatically loaded from |
| 12 | + * `i18n/announcements/<lang>.json`. Ensure that the relevant message |
| 13 | + * keys are available. |
| 14 | + */ |
| 15 | +interface Announcement { |
| 16 | + actions: { id: string, flags?: string[], action: () => void }[]; |
| 17 | +} |
| 18 | + |
| 19 | +/** |
| 20 | + * |
| 21 | + * Deputy announcements |
| 22 | + * |
| 23 | + * This will be loaded on all standalone modules and on main Deputy. |
| 24 | + * Be conservative with what you load! |
| 25 | + * |
| 26 | + */ |
| 27 | +export default class DeputyAnnouncements { |
| 28 | + |
| 29 | + static knownAnnouncements: Record<string, Announcement> = { |
| 30 | + 'ues-06-2023': { |
| 31 | + actions: [ |
| 32 | + { |
| 33 | + id: 'survey', |
| 34 | + flags: [ 'primary', 'progressive' ], |
| 35 | + action: () => { |
| 36 | + open( |
| 37 | + 'https://hourglass.limesurvey.net/188262', |
| 38 | + '_blank' |
| 39 | + ); |
| 40 | + } |
| 41 | + }, |
| 42 | + { |
| 43 | + id: 'learn', |
| 44 | + flags: [ 'primary' ], |
| 45 | + action: () => { |
| 46 | + open( |
| 47 | + 'https://meta.wikimedia.org/wiki/Deputy/Research/Surveys/06-2023', |
| 48 | + '_blank' |
| 49 | + ); |
| 50 | + } |
| 51 | + } |
| 52 | + ] |
| 53 | + } |
| 54 | + }; |
| 55 | + |
| 56 | + /** |
| 57 | + * Initialize announcements. |
| 58 | + * @param config |
| 59 | + */ |
| 60 | + static async init( config: UserConfiguration ) { |
| 61 | + await Promise.all( [ |
| 62 | + DeputyLanguage.load( 'shared', deputySharedEnglish ), |
| 63 | + DeputyLanguage.load( 'announcements', deputyAnnouncementsEnglish ) |
| 64 | + ] ); |
| 65 | + mw.util.addCSS( '#siteNotice .deputy { text-align: left; }' ); |
| 66 | + for ( const [ id, announcements ] of Object.entries( this.knownAnnouncements ) ) { |
| 67 | + if ( config.core.seenAnnouncements.get().includes( id ) ) { |
| 68 | + continue; |
| 69 | + } |
| 70 | + |
| 71 | + this.showAnnouncement( config, id, announcements ); |
| 72 | + } |
| 73 | + } |
| 74 | + |
| 75 | + /** |
| 76 | + * |
| 77 | + * @param config |
| 78 | + * @param announcementId |
| 79 | + * @param announcement |
| 80 | + */ |
| 81 | + static showAnnouncement( |
| 82 | + config: UserConfiguration, |
| 83 | + announcementId: string, |
| 84 | + announcement: Announcement |
| 85 | + ) { |
| 86 | + mw.loader.using( [ |
| 87 | + 'oojs-ui-core', |
| 88 | + 'oojs-ui.styles.icons-interactions' |
| 89 | + ], () => { |
| 90 | + const messageWidget = DeputyMessageWidget( { |
| 91 | + classes: [ 'deputy' ], |
| 92 | + icon: 'feedback', |
| 93 | + // Messages that can be used here: |
| 94 | + // * deputy.announcement.<id>.title |
| 95 | + title: mw.msg( `deputy.announcement.${announcementId}.title` ), |
| 96 | + // Messages that can be used here: |
| 97 | + // * deputy.announcement.<id>.message |
| 98 | + message: mw.msg( `deputy.announcement.${announcementId}.message` ), |
| 99 | + closable: true, |
| 100 | + actions: announcement.actions.map( action => { |
| 101 | + const button = new OO.ui.ButtonWidget( { |
| 102 | + // Messages that can be used here: |
| 103 | + // * deputy.announcement.<id>.<action id>.message |
| 104 | + label: mw.msg( |
| 105 | + `deputy.announcement.${announcementId}.${action.id}.label` |
| 106 | + ), |
| 107 | + // Messages that can be used here: |
| 108 | + // * deputy.announcement.<id>.<action id>.title |
| 109 | + title: mw.msg( |
| 110 | + `deputy.announcement.${announcementId}.${action.id}.title` |
| 111 | + ), |
| 112 | + flags: action.flags ?? [] |
| 113 | + } ); |
| 114 | + button.on( 'click', action.action ); |
| 115 | + return button; |
| 116 | + } ) |
| 117 | + } ); |
| 118 | + messageWidget.on( 'close', () => { |
| 119 | + config.core.seenAnnouncements.set( |
| 120 | + [ ...config.core.seenAnnouncements.get(), announcementId ] |
| 121 | + ); |
| 122 | + config.save(); |
| 123 | + } ); |
| 124 | + document.getElementById( 'siteNotice' ).appendChild( |
| 125 | + unwrapWidget( messageWidget ) |
| 126 | + ); |
| 127 | + } ); |
| 128 | + } |
| 129 | + |
| 130 | +} |
0 commit comments