143 |
delphine |
1 |
<h1>Fiche</h1>
|
201 |
gduche |
2 |
<style>
|
|
|
3 |
#zone_contenu_fiche {
|
203 |
gduche |
4 |
border:solid 1px #DDD;
|
|
|
5 |
border-width:0px 1px 1px 1px;
|
201 |
gduche |
6 |
width:100%;
|
|
|
7 |
min-height:400px;
|
203 |
gduche |
8 |
clear:left;
|
|
|
9 |
|
201 |
gduche |
10 |
}
|
|
|
11 |
|
|
|
12 |
.module {margin: 0 1em 1em 0;}
|
|
|
13 |
.module .titre{ margin: 0.3em; padding-bottom: 4px; padding-left: 0.2em; cursor:pointer;}
|
|
|
14 |
.module .titre .ui-icon { float: right; }
|
|
|
15 |
.module .contenu { padding: 0.4em; }
|
|
|
16 |
|
|
|
17 |
.colonne {float:left; padding-bottom:100px; width:30%}
|
|
|
18 |
|
|
|
19 |
.ui-sortable-placeholder { border: 1px dotted black; visibility: visible !important; height: 50px !important; }
|
|
|
20 |
.ui-sortable-placeholder * { visibility: hidden; }
|
|
|
21 |
|
|
|
22 |
#zone_onglets ul li {list-style:none}
|
|
|
23 |
.lienToggle {cursor:pointer}
|
|
|
24 |
|
|
|
25 |
|
|
|
26 |
#dialog label, #dialog input { display:block; }
|
|
|
27 |
#dialog label { margin-top: 0.5em; }
|
|
|
28 |
#dialog input, #dialog textarea { width: 95%; }
|
203 |
gduche |
29 |
#zone_onglets { margin-top: 1em; border-width: 1px 1px 0 1px; border-radius:0; width:99%; font-size:12px}
|
|
|
30 |
#zone_onglets li {float:left}
|
201 |
gduche |
31 |
#zone_onglets li .ui-icon-close { float: left; margin: 0.4em 0.2em 0 0; cursor: pointer; }
|
|
|
32 |
#add_tab { cursor: pointer; }
|
|
|
33 |
</style>
|
|
|
34 |
|
203 |
gduche |
35 |
<div id="zone_onglets" class="ui-tabs ui-widget ui-widget-content ui-corner-all">
|
|
|
36 |
<ul class="ui-tabs-nav ui-helper-reset ui-helper-clearfix ui-widget-header ui-corner-all">
|
|
|
37 |
<li class="ui-state-default ui-corner-top ui-tabs-selected ui-state-active"><a href="#fiche">Accueil</a></li>
|
|
|
38 |
<li class="ui-state-default ui-corner-top"><a href="#fiche">Illustrations</a></li>
|
|
|
39 |
<li class="ui-state-default ui-corner-top"><a href="#fiche">Répartition</a></li>
|
|
|
40 |
<li class="ui-state-default ui-corner-top"><a href="#fiche">Wiki</a></li>
|
|
|
41 |
</ul>
|
|
|
42 |
</div>
|
|
|
43 |
|
201 |
gduche |
44 |
<div id="zone_contenu_fiche">
|
203 |
gduche |
45 |
<div class="colonne">
|
|
|
46 |
<div id="illustrations" class="module ui-widget ui-widget-content ui-helper-clearfix ui-corner-all">
|
|
|
47 |
<h3 class="titre ui-widget-header ui-corner-all" id="titre-0">Illustrations</h3>
|
|
|
48 |
<span id="contenu-0" class="contenu">contenu-0</span>
|
|
|
49 |
</div>
|
|
|
50 |
|
|
|
51 |
<div id="repartition" class="module ui-widget ui-widget-content ui-helper-clearfix ui-corner-all">
|
|
|
52 |
<h3 class="titre ui-widget-header ui-corner-all" id="titre-0">Répartition</h3>
|
|
|
53 |
<span id="contenu-0" class="contenu">contenu-0</span>
|
|
|
54 |
</div>
|
|
|
55 |
|
|
|
56 |
<div id="wiki" class="module ui-widget ui-widget-content ui-helper-clearfix ui-corner-all">
|
|
|
57 |
<h3 class="titre ui-widget-header ui-corner-all" id="titre-0">Wiki<span class="lienToggle"></span></h3>
|
|
|
58 |
<span id="contenu-0" class="contenu">contenu-0</span>
|
|
|
59 |
</div>
|
|
|
60 |
|
|
|
61 |
|
|
|
62 |
</div>
|
201 |
gduche |
63 |
<div class="colonne"></div>
|
|
|
64 |
<div class="colonne"></div>
|
|
|
65 |
|
|
|
66 |
<br style="clear:left" />
|
|
|
67 |
</div>
|
|
|
68 |
|
|
|
69 |
<script type="text/Javascript">
|
|
|
70 |
var modules = Array();
|
|
|
71 |
|
|
|
72 |
/** Classe Module
|
|
|
73 |
* Définit un module de type portlet
|
|
|
74 |
**/
|
203 |
gduche |
75 |
function Module(id, module, onglet, statique) {
|
201 |
gduche |
76 |
|
|
|
77 |
// Variables de classe : identifiant, titre, et le HTML du résumé à afficher dans le contenu
|
|
|
78 |
this.id = id;
|
203 |
gduche |
79 |
this.titre;
|
|
|
80 |
this.htmlResume;
|
201 |
gduche |
81 |
this.statique = statique;
|
|
|
82 |
|
|
|
83 |
// Les objets Portlet et Onglet que l'ont garde en mémoire pour pouvoir y accéder facilement
|
203 |
gduche |
84 |
this.portlet = module;
|
201 |
gduche |
85 |
this.onglet;
|
|
|
86 |
|
|
|
87 |
// creerPortlet
|
|
|
88 |
// Créer l'objet Portlet HTML à afficher et le stocker dans les variables de classe
|
|
|
89 |
this.creerPortlet = function() {
|
|
|
90 |
var objet = this;
|
|
|
91 |
|
203 |
gduche |
92 |
var titre = $(module).children('.titre');
|
201 |
gduche |
93 |
titre.className = 'titre ui-widget-header ui-corner-all';
|
|
|
94 |
titre.id = 'titre-' + this.id;
|
|
|
95 |
|
203 |
gduche |
96 |
var contenu = $(module).children('.contenu');
|
201 |
gduche |
97 |
contenu.id = 'contenu-' + this.id;
|
|
|
98 |
contenu.className ='contenu';
|
|
|
99 |
|
|
|
100 |
var lienToggle = document.createElement('span');
|
|
|
101 |
lienToggle.className = 'lienToggle ui-icon ui-icon-minusthick';
|
203 |
gduche |
102 |
$(titre).append(lienToggle);
|
201 |
gduche |
103 |
$(lienToggle).click(function() {
|
|
|
104 |
$(contenu).toggle();
|
203 |
gduche |
105 |
|
201 |
gduche |
106 |
$(objet.onglet).toggle()
|
|
|
107 |
});
|
|
|
108 |
|
|
|
109 |
this.portlet = module;
|
|
|
110 |
return module;
|
|
|
111 |
}
|
|
|
112 |
|
|
|
113 |
// creerOnglet
|
|
|
114 |
// Créer l'objet Onglet HTML
|
|
|
115 |
this.creerOnglet = function() {
|
|
|
116 |
var objet = this;
|
|
|
117 |
|
203 |
gduche |
118 |
var a = $(onglet).find("a");
|
201 |
gduche |
119 |
|
|
|
120 |
// Gestion du clic sur le lien
|
|
|
121 |
// Comme les liens sont mis en place par jqueryui tabs, il faut ajouter une surcouche pour
|
|
|
122 |
// déplacer vers la page du module
|
|
|
123 |
$(a).click(function() {
|
|
|
124 |
// TODO : Changer l'url par celle du module.
|
|
|
125 |
//$(location).attr('href',"http://www.google.fr");
|
|
|
126 |
});
|
|
|
127 |
|
|
|
128 |
if (!statique) {
|
|
|
129 |
var span = document.createElement('span');
|
|
|
130 |
span.className = "ui-icon ui-icon-close";
|
|
|
131 |
|
|
|
132 |
// Gestion de la fermeture de l'onglet
|
|
|
133 |
$(span).live( "click", function() {
|
|
|
134 |
$(span).parent().toggle();
|
|
|
135 |
$(objet.portlet).find(".contenu").toggle(false);
|
|
|
136 |
});
|
|
|
137 |
|
203 |
gduche |
138 |
$(onglet).append(span);
|
201 |
gduche |
139 |
}
|
|
|
140 |
|
203 |
gduche |
141 |
this.onglet = onglet;
|
201 |
gduche |
142 |
}
|
|
|
143 |
|
|
|
144 |
// Initialisation de l'objet
|
|
|
145 |
this.creerPortlet();
|
|
|
146 |
this.creerOnglet();
|
|
|
147 |
|
|
|
148 |
// Accesseurs de la classe
|
|
|
149 |
this.getOnglet = function() {
|
|
|
150 |
return this.onglet;
|
|
|
151 |
}
|
|
|
152 |
|
|
|
153 |
this.getPortlet = function() {
|
|
|
154 |
|
|
|
155 |
return this.portlet;
|
|
|
156 |
}
|
|
|
157 |
}
|
|
|
158 |
|
203 |
gduche |
159 |
//Initialisation
|
201 |
gduche |
160 |
$(document).ready(function() {
|
203 |
gduche |
161 |
i = 1;
|
201 |
gduche |
162 |
|
203 |
gduche |
163 |
//Parcourir la totalité des modules générés et les lier grâce à la classe Module
|
|
|
164 |
$(".module").each(function () {
|
201 |
gduche |
165 |
i++;
|
203 |
gduche |
166 |
identifiantOnglet = "#zone_onglets>ul>li:nth-child(" + i +")";
|
|
|
167 |
var module = new Module(i, this, $(identifiantOnglet));
|
201 |
gduche |
168 |
|
203 |
gduche |
169 |
});
|
201 |
gduche |
170 |
|
|
|
171 |
$( ".colonne" ).sortable({
|
|
|
172 |
connectWith: ".colonne"
|
|
|
173 |
});
|
|
|
174 |
|
|
|
175 |
$( ".colonne" ).disableSelection();
|
|
|
176 |
$('#zone_onglets').tabs();
|
|
|
177 |
});
|
|
|
178 |
</script>
|