blob: 1cdfe4b586b5c3e1eabd6dbe72d04b4683905c3d [file] [log] [blame]
// Copyright 2018 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
Polymer({
is: 'app-management-item',
behaviors: [
app_management.StoreClient,
],
properties: {
/** @type {App} */
app: {
type: Object,
},
},
listeners: {
'click': 'onClick_',
},
/**
* @private
*/
onClick_: function() {
this.dispatch(
app_management.actions.changePage(PageType.DETAIL, this.app.id));
},
/**
* @param {App} app
* @return {string}
* @private
*/
iconUrlFromId_: function(app) {
return app_management.util.getAppIcon(app);
},
});