Go to file
Jdrewniak a458e1dbec Create dark mode launch banner for Vector 2022
Creates a dark mode launch banner, (copied from the MinervaNue skin) to
announce the launch of dark-mode for Vector 2022.

The banner itself is not invoked anywhere by default, but will be
invoked through CentralNotice as a banner as part of a launch campaign.

To invoke the banner manually, execute the following in the dev console:

```
mw.loader.using( 'skins.vector.DarkModeLaunchBanner', function( require ) {
    require( 'skins.vector.DarkModeLaunchBanner')();
} );
```

Bug: T370303
Change-Id: I1ca4aab8c302ef418bc1d12dde0d80c96c3b8d4f
(cherry picked from commit 7b35e6b1e8)
2024-07-24 19:06:42 +00:00
.phan
doc Vector and Vector 2022 no longer share site styles or scripts 2024-06-03 18:13:28 +00:00
i18n Create dark mode launch banner for Vector 2022 2024-07-24 19:06:42 +00:00
includes Merge "Inject service LanguageConverterFactory into VectorComponentVariants" 2024-06-24 18:32:00 +00:00
resources Create dark mode launch banner for Vector 2022 2024-07-24 19:06:42 +00:00
screenshots
skinStyles Update background of insert paragraph slug 2024-06-26 20:24:36 +00:00
tests Show night mode gadget disable message on the correct section 2024-07-11 11:44:56 -07:00
.eslintignore
.eslintrc.json
.gitignore
.gitreview
.nvmrc
.phpcs.xml
.stylelintignore
.stylelintrc.json
.svgo.config.js
bundlesize.config.json Update Vector bundlesize config 2024-07-11 22:16:59 +00:00
CODE_OF_CONDUCT.md
composer.json build: Updating dependencies 2024-05-17 04:29:53 +00:00
COPYING
Doxyfile
jest.config.js Create dark mode launch banner for Vector 2022 2024-07-24 19:06:42 +00:00
jest.setup.js
package-lock.json build: Updating npm dependencies 2024-06-16 16:20:53 +00:00
package.json build: Updating npm dependencies 2024-06-16 16:20:53 +00:00
README.md
skin.json Create dark mode launch banner for Vector 2022 2024-07-24 19:06:42 +00:00
tsconfig.json

Vector Skin

Installation

See https://www.mediawiki.org/wiki/Skin:Vector.

Configuration options

See skin.json.

Also see configuration.md

Development

Node version

It is recommended to use nvm to use the version of node defined in .nvmrc during local development. This ensures consistency amongst development environments.

Coding conventions

We strive for compliance with MediaWiki conventions:

https://www.mediawiki.org/wiki/Manual:Coding_conventions

Additions and deviations from those conventions that are more tailored to this project are noted at:

https://www.mediawiki.org/wiki/Reading/Web/Coding_conventions

Pre-commit tests

A pre-commit hook is installed when executing npm install. By default, it runs npm test which is useful for automatically validating everything that can be in a reasonable amount of time. If you wish to defer these tests to be executed by continuous integration only, set the PRE_COMMIT environment variable to 0:

$ export PRE_COMMIT=0
$ git commit

Or more succinctly:

$ PRE_COMMIT=0 git commit

Skipping the pre-commit tests has no impact on Gerrit change identifier hooks.

Hooks

See hooks.txt.