summaryrefslogtreecommitdiff
blob: d6963e8f3823a66a4e919431f448e256024822b4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
( function () {
	'use strict';

	/*!
	 * Echo Special:Notifications page initialization
	 */
	$( function () {
		var specialPageContainer,
			limitNotifications = 50,
			links = mw.config.get( 'wgNotificationsSpecialPageLinks' ),
			// FIXME: Use CSS transition
			// eslint-disable-next-line no-jquery/no-global-selector
			$content = $( '#mw-content-text' ),
			echoApi = new mw.echo.api.EchoApi( { limit: limitNotifications } ),
			unreadCounter = new mw.echo.dm.UnreadNotificationCounter( echoApi, [ 'message', 'alert' ], limitNotifications ),
			modelManager = new mw.echo.dm.ModelManager( unreadCounter, {
				type: [ 'message', 'alert' ],
				itemsPerPage: limitNotifications,
				readState: mw.config.get( 'wgEchoReadState' ),
				localCounter: new mw.echo.dm.UnreadNotificationCounter(
					echoApi,
					[ 'message', 'alert' ],
					limitNotifications,
					{
						localOnly: true,
						source: 'local'
					}
				)
			} ),
			controller = new mw.echo.Controller( echoApi, modelManager );

		// Set default max prioritized action links per item.
		// For general purpose we have 2, for mobile only 1
		mw.echo.config.maxPrioritizedActions = mw.config.get( 'skin' ) === 'minerva' ? 1 : 2;

		specialPageContainer = new mw.echo.ui.NotificationsInboxWidget(
			controller,
			modelManager,
			{
				limit: limitNotifications,
				$overlay: mw.echo.ui.$overlay,
				prefLink: links.preferences
			}
		);

		// Overlay
		$( document.body ).append( mw.echo.ui.$overlay );

		// Notifications
		$content.empty().append( specialPageContainer.$element );
	} );
}() );