858a6051ac
- Move template to relevant plugin - Turn ElementView into CustomElement - Use the terminology "Headlines Feed" instead of "Headlines Box" - Break the `converse-headlines` plugin up into multiple files - Fix CSS styling for headlines feeds for the Dracula theme
34 lines
1.1 KiB
JavaScript
34 lines
1.1 KiB
JavaScript
/**
|
|
* @module converse-headlines-view
|
|
* @copyright 2022, the Converse.js contributors
|
|
* @license Mozilla Public License (MPLv2)
|
|
*/
|
|
import '../chatview/index.js';
|
|
import './view.js';
|
|
import { HeadlinesFeedsList } from './feed-list.js';
|
|
import { _converse, converse } from '@converse/headless/core';
|
|
|
|
import './styles/headlines.scss';
|
|
|
|
|
|
converse.plugins.add('converse-headlines-view', {
|
|
/* Plugin dependencies are other plugins which might be
|
|
* overridden or relied upon, and therefore need to be loaded before
|
|
* this plugin.
|
|
*
|
|
* If the setting "strict_plugin_dependencies" is set to true,
|
|
* an error will be raised if the plugin is not found. By default it's
|
|
* false, which means these plugins are only loaded opportunistically.
|
|
*
|
|
* NB: These plugins need to have already been loaded by the bundler
|
|
*/
|
|
dependencies: ['converse-headlines', 'converse-chatview'],
|
|
|
|
initialize () {
|
|
_converse.HeadlinesFeedsList = HeadlinesFeedsList;
|
|
|
|
// Deprecated
|
|
_converse.HeadlinesPanel = HeadlinesFeedsList;
|
|
}
|
|
});
|