@advanced-rest-client/history-menu v3.0.1
<history-menu>
The history menu for Advanced REST Client is accessible list of history items retrieved from local data store.
Usage
Installation
npm install --save @advanced-rest-client/history-menuIn a LitElement
import { LitElement, html } from 'lit-element';
import '@advanced-rest-client/history-menu/history-menu.js';
class SampleElement extends LitElement {
get styles() {
return css`
history-menu {
height: 500px;
}
`;
}
render() {
return html`
<history-menu draggableenabled></history-menu>
`;
}
}
customElements.define('sample-element', SampleElement);List sizing
It is important to set implicit height of the element. It can be static value like 500px, relative value like 100% as long as a parent is sized for height, or a flex value, as long as parent is sized for height.
The list of requests is set to load only portion of the requests from the data store and load more when list scroll is near end. If there's no scroll then the element will load whole data store at initialization time.
Drag and drop
API components related to a request object support drag and drop. Set draggableenabled property to enable the support.
The DataTransfer property of the drag event contains effectAllowed set to copy as this is only allowed operation on a history object. Only targets that allow the same effect will accept the history item.
The same propery contains serialized request data under arc/request-object media type. It contains request ID under arc/history-request and arc-source/history-menu media types.
_dropHandler(e) {
e.preventDefault();
const data = e.dataTransfer.getData('arc/request-object');
const request = JSON.parse(data);
const id = e.dataTransfer.getData('arc/history-request');
console.log(request, id);
}Development
git clone https://github.com/advanced-rest-client/history-list-mixin
cd history-list-mixin
npm installRunning the tests
npm testAPI components
This components is a part of API components ecosystem