mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/Popups
synced 2024-11-15 11:46:55 +00:00
83a28d177f
Storybook.js provides a framework for viewing and working with UI components. https://storybook.js.org/ This patch adds the Storybook.js UI library to Popups for the purposes of viewing multiple previews at once. This enables viewing page previews in the following states: - with thumbnails - without thumbnails - with SVG thumbnails - with narrow thumbnails - with white background thumbnails - in RTL languages - in non-latin languages - disambiguation popups Storybook also allows users to change the image or text of a popup through a GUI. This patch sets up Storybook as a "mini" repo inside the.storybook folder with a seperate package.json file to avoid incompatibilities with the current webpack/babel (or even Node) versions used in the Popups repo. Storybook requires at least Node v8.3 to run. (an .nvmrc file with 11.3.0 has been added to the .stories dir). To start: `cd .storybook && npm install && npm run start`. Bug: T205989 Change-Id: I041e46c4f0cf173950015067e2dce81c023d3fdd
76 lines
1.4 KiB
JavaScript
76 lines
1.4 KiB
JavaScript
const path = require("path");
|
|
const webpack = require('webpack');
|
|
|
|
module.exports = {
|
|
module: {
|
|
rules: [ {
|
|
test: /\.less$/,
|
|
use: [{
|
|
loader: 'style-loader'
|
|
}, {
|
|
loader: 'css-loader'
|
|
}, {
|
|
loader: 'less-loader',
|
|
options: {
|
|
paths: [
|
|
/**
|
|
* Less files are resolved to this path,
|
|
* which contain less files that essentially
|
|
* just reach into mediawiki core fo the
|
|
* appropriate files.
|
|
*/
|
|
path.resolve(__dirname, './mocks/less')
|
|
]
|
|
}
|
|
}],
|
|
},
|
|
{
|
|
test: /\.svg$/,
|
|
issuer: /\.less$/,
|
|
loader: 'url-loader'
|
|
},
|
|
{
|
|
test: /\.svg$/,
|
|
loader: 'svg-inline-loader',
|
|
issuer: /\.js$/,
|
|
options: {
|
|
removeSVGTagAttrs: false // Keep width and height attributes.
|
|
}
|
|
},
|
|
{
|
|
test: require.resolve('jquery'),
|
|
use: [{
|
|
loader: 'expose-loader',
|
|
options: 'jQuery'
|
|
}, {
|
|
loader: 'expose-loader',
|
|
options: '$'
|
|
}]
|
|
},
|
|
{
|
|
test: require.resolve('./mocks/js/mockMediaWiki.js'),
|
|
use: [{
|
|
loader: 'expose-loader',
|
|
options: 'mw'
|
|
}, {
|
|
loader: 'expose-loader',
|
|
options: 'mediaWiki'
|
|
}]
|
|
}
|
|
]
|
|
},
|
|
resolve: {
|
|
alias: {
|
|
'mediaWiki': require.resolve('./mocks/js/mockMediaWiki.js'),
|
|
'mw': require.resolve('./mocks/js/mockMediaWiki.js')
|
|
},
|
|
extensions: [ '.js' ]
|
|
},
|
|
plugins: [
|
|
new webpack.ProvidePlugin({
|
|
mw: 'mw',
|
|
mediaWiki: 'mediaWiki'
|
|
} )
|
|
]
|
|
};
|