shopware-typedef
v0.3.1
Published
Shopware 5 Typescript definitions
Downloads
1
Maintainers
Readme
shopware-typedef
Shopware TypeScript typings
This package contains TypeScript type definitions for the Shopware 5 Frontend.
That includes correct types for the StateManager and other globals, jQuery.X
and jQuery.fn.X
extended by Shopware.
The type definitions can be used from TypeScript but also from JavaScript.
Installation
npm install --save-dev @types/[email protected] shopware-typedef
Usage
In TypeScript code it should probably look something like this:
/// <reference types="shopware-typedef"/>
export class ScnFoo extends $.PluginBase implements SwPluginDefinition {
init(){
console.log('hello, world!');
}
}
$.plugin('scnFoo', ScnFoo.prototype);
declare global {
interface JQuery { scnFoo(): JQuery }
interface SwPluginsCollection { scnFoo: ScnFoo }
}
If you use plain JavaScript you can still use the typings in an IDE that supports it (Atom, VS Code, PHPStorm, etc.)
/// <reference types="shopware-typedef"/>
StateManager.addPlugin('.js--foo', 'bar');
You can use annotations in your JavaScript to tell your IDE what type your variables are, for example:
/** @type {SwStateManager} */
var sman;
sman.[...] // intellisense support enabled
$.plugin('scnBar', {
/**
* @typedef {object} ScnBarOptions
* @property {string} name
* @property {number} width
*/
defaults: {
name: 'bar',
width: 100
},
init: function(){
/** @type {SwPluginPrototype} */
var me = this;
me.applyDataAttributes();
/** @type {ScnBarOptions} */
var opts = me.opts;
},
});
Support may vary.
More Info is available in the TypeScript Wiki.
Options
You can pass the type of your plugin options as a generic to $.PluginBase<T>
interface ScnFooOptions {
width: number;
height: number;
}
export class ScnFoo extends $.PluginBase<ScnFooOptions> implements SwPluginDefinition {
defaults: ScnFooOptions = {
width: 100,
height: 200
}
init(){
this.applyDataAttributes();
this.opts.[...] // intellisense now available for opts
}
}
$.plugin('scnFoo', ScnFoo.prototype);
declare global {
interface JQuery { scnFoo(options?: Partial<ScnFooOptions>): JQuery; }
interface SwPluginsCollection { scnFoo: ScnFoo; }
}
And that's about all to do for adding a plugin. Have a look into the example.ts for more help.
If you want to, you can also add a new declaration for the StateManager.addPlugin
call, although it may not always work correctly.
declare global {
interface SwStateManager {
addPlugin(selector: string, pluginName: 'scnFoo', config?: Partial<ScnFooOptions>, viewport?: string[] | string): this;
}
}
StateManager.addPlugin('.js--foo', 'scnFoo', { width: 150 });
Notes
The declare global-block is necessary for all Plugins in order to get typescript to understand, that we've extended window.$
and window.PluginsCollection
Be aware that you can't yet pass $.plugin()
a constructor as a second argument. There's already an issue at shopware for that: #1489
If that gets merged, you can add plugins like this
interface ScnFooOptions {
width: number;
height: number;
}
export class ScnFoo extends $.PluginBase<ScnFooOptions> implements SwPluginDefinition {
init(){
console.log('scnFoo');
}
}
$.plugin('scnFoo', ScnFoo);
declare global {
interface JQuery { scnFoo(): JQuery; }
interface SwPluginsCollection { scnFoo: SwPluginPrototypeConstructor<ScnFoo, Partial<ScnFooOptions>>; }
}
const instance = new PluginsCollection.scnFoo('scnFoo', $el, {
width: 200
});
This does not yet work in Shopware 5.3.7.
The type SwPluginPrototypeConstructor
is a constructor-interface for all classes extending $.PluginBase
accepting a type T
which indicates what you want to return. And a type U
indicating the type of the options if any.
The constructor itself has the signature new(name: string, element: JQuery, options?: U): T
.
Contributions
Always welcome 💙