From 2680d21402d8ac51146bf03be3c0fd63ab49cada Mon Sep 17 00:00:00 2001 From: Petr Vobornik Date: Mon, 11 Nov 2013 15:40:11 +0100 Subject: webui: facet container A widget which servers as container for facets. FacetContainer is a base class. App is specialization. Doing this abstraction will allow us to implement various facet containers. https://fedorahosted.org/freeipa/ticket/3903 Reviewed-By: Adam Misnyovszki --- install/ui/src/freeipa/widgets/FacetContainer.js | 88 ++++++++++++++++++++++++ 1 file changed, 88 insertions(+) create mode 100644 install/ui/src/freeipa/widgets/FacetContainer.js (limited to 'install/ui/src/freeipa/widgets/FacetContainer.js') diff --git a/install/ui/src/freeipa/widgets/FacetContainer.js b/install/ui/src/freeipa/widgets/FacetContainer.js new file mode 100644 index 000000000..d5e6add74 --- /dev/null +++ b/install/ui/src/freeipa/widgets/FacetContainer.js @@ -0,0 +1,88 @@ +/* Authors: + * Petr Vobornik + * + * Copyright (C) 2013 Red Hat + * see file 'COPYING' for use and warranty information + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . +*/ + +define(['dojo/_base/declare', + 'dojo/_base/lang', + 'dojo/dom-construct', + 'dojo/dom-style', + 'dojo/Evented', + 'dojo/Stateful', + 'dojo/NodeList-dom' + ], + function(declare, lang, construct, dom_style, + Evented, Stateful) { + + /** + * Container for standalone facets + * + * Main feature is that this container doesn't produce any + * surroundings. Therefore facets can occupy the entire page. + * + * @class widgets.FacetContainer + */ + var FacetContainer = declare([Stateful, Evented], { + + id: 'simple-container', + + //nodes: + dom_node: null, + + container_node: null, + + content_node: null, + + render: function() { + + this.dom_node = construct.create('div', { + id: this.id, + 'class': 'app-container' + }); + + if (this.container_node) { + construct.place(this.dom_node, this.container_node); + } + + this.content_node = construct.create('div', { + 'class': 'content' + }, this.dom_node); + + return this.dom_node; + }, + + show: function() { + if (!this.dom_node) return; + + dom_style.set(this.dom_node, 'display', ''); + }, + + hide: function() { + if (!this.dom_node) return; + + dom_style.set(this.dom_node, 'display', 'none'); + }, + + constructor: function(spec) { + spec = spec || {}; + declare.safeMixin(this, spec); + } + }); + + return FacetContainer; +}); \ No newline at end of file -- cgit