You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

62 lines
1.9 KiB

  1. /**********************************************************************************
  2. *
  3. * Copyright (C) 2017 MuK IT GmbH
  4. *
  5. * This program is free software: you can redistribute it and/or modify
  6. * it under the terms of the GNU Affero General Public License as
  7. * published by the Free Software Foundation, either version 3 of the
  8. * License, or (at your option) any later version.
  9. *
  10. * This program is distributed in the hope that it will be useful,
  11. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  12. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  13. * GNU Affero General Public License for more details.
  14. *
  15. * You should have received a copy of the GNU Affero General Public License
  16. * along with this program. If not, see <http://www.gnu.org/licenses/>.
  17. *
  18. **********************************************************************************/
  19. odoo.define('muk_preview.AbstractPreviewContent', function (require) {
  20. "use strict";
  21. var core = require('web.core');
  22. var ajax = require('web.ajax');
  23. var utils = require('web.utils');
  24. var session = require('web.session');
  25. var Widget = require('web.Widget');
  26. var QWeb = core.qweb;
  27. var _t = core._t;
  28. var AbstractPreviewContent = Widget.extend({
  29. init: function(parent, url, mimetype, filename) {
  30. this._super.apply(this, arguments);
  31. this.mimetype = mimetype || "application/octet-stream";
  32. this.filename = filename || "Unknown";
  33. this.url = url;
  34. },
  35. willStart: function() {
  36. return $.when(
  37. this._super.apply(this, arguments),
  38. ajax.loadLibs(this)
  39. );
  40. },
  41. start: function () {
  42. return $.when(
  43. this._super.apply(this, arguments),
  44. this.renderPreviewContent(),
  45. );
  46. },
  47. renderPreviewContent: function() {
  48. return $.when();
  49. },
  50. printable: false,
  51. downloadable: false,
  52. contentActions: function() {
  53. return [];
  54. },
  55. });
  56. return AbstractPreviewContent;
  57. });