12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 |
- const Mn = require('backbone.marionette');
- const moment = require('moment');
- const App = require('../../../main');
- const template = require('./item.ejs');
- const dns_providers = require('../../../../../../global/certbot-dns-plugins')
- module.exports = Mn.View.extend({
- template: template,
- tagName: 'tr',
- ui: {
- host_link: '.host-link',
- renew: 'a.renew',
- delete: 'a.delete',
- download: 'a.download'
- },
- events: {
- 'click @ui.renew': function (e) {
- e.preventDefault();
- App.Controller.showNginxCertificateRenew(this.model);
- },
- 'click @ui.delete': function (e) {
- e.preventDefault();
- App.Controller.showNginxCertificateDeleteConfirm(this.model);
- },
- 'click @ui.host_link': function (e) {
- e.preventDefault();
- let win = window.open($(e.currentTarget).attr('rel'), '_blank');
- win.focus();
- },
-
- 'click @ui.download': function (e) {
- e.preventDefault();
- App.Api.Nginx.Certificates.download(this.model.get('id'))
- }
- },
- templateContext: {
- canManage: App.Cache.User.canManage('certificates'),
- isExpired: function () {
- return moment(this.expires_on).isBefore(moment());
- },
- dns_providers: dns_providers
- },
- initialize: function () {
- this.listenTo(this.model, 'change', this.render);
- }
- });
|