]> git.mxchange.org Git - friendica.git/blob - view/theme/frio/templates/theme_settings.tpl
Implemented parsing share string
[friendica.git] / view / theme / frio / templates / theme_settings.tpl
1
2 <link rel="stylesheet" href="{{$baseurl}}/view/theme/frio/frameworks/jRange/jquery.range.css" type="text/css" media="screen" />
3 <script src="{{$baseurl}}/view/theme/quattro/jquery.tools.min.js"></script>
4 <script src="{{$baseurl}}/view/theme/frio/frameworks/jRange/jquery.range.js"></script>
5 <script type="text/javascript" src="{{$baseurl}}/view/js/ajaxupload.js" ></script>
6
7 {{include file="field_select.tpl" field=$scheme}}
8
9 {{if $nav_bg}}{{include file="field_input.tpl" field=$share_string}}{{/if}}
10 {{if $nav_bg}}{{include file="field_colorinput.tpl" field=$nav_bg}}{{/if}}
11 {{if $nav_icon_color}}{{include file="field_colorinput.tpl" field=$nav_icon_color}}{{/if}}
12 {{if $link_color}}{{include file="field_colorinput.tpl" field=$link_color}}{{/if}}
13
14 {{if $background_color}}{{include file="field_colorinput.tpl" field=$background_color}}{{/if}}
15
16 {{* The slider for the content opacity - We use no template for this since it is only used at this page *}}
17 {{if $contentbg_transp}}
18 <div class="form-group field input color">
19         <label for="id_{{$contentbg_transp.0}}" id="label_{{$contentbg_transp.0}}">{{$contentbg_transp.1}}</label>
20         <input type="hidden" class="form-control color slider-input" name="{{$contentbg_transp.0}}" id="{{$contentbg_transp.0}}" type="text" value="{{$contentbg_transp.2}}" aria-describedby="{{$contentbg_transp.0}}_tip">
21         <span id="{{$contentbg_transp.0}}_tip" class="help-block" role="tooltip">{{$contentbg_transp.3}}</span>
22         <div id="end_{{$contentbg_transp.0}}" class="field_end"></div>
23 </div>
24 {{/if}}
25
26 {{if $background_image}}{{include file="field_fileinput.tpl" field=$background_image}}{{/if}}
27
28 <div id="frio_bg_image_options" style="display: none;">
29         <label>{{$bg_image_options_title}}:</label>
30 {{foreach $bg_image_options as $options}}
31         {{include file="field_radio.tpl" field=$options}}
32 {{/foreach}}
33 </div>
34
35 {{if $login_bg_image}}{{include file="field_fileinput.tpl" field=$login_bg_image}}{{/if}}
36 {{if $login_bg_color}}{{include file="field_colorinput.tpl" field=$login_bg_color}}{{/if}}
37
38 <script type="text/javascript">
39         $(document).ready(function() {
40
41                 function GenerateShareString() {
42                         var theme = {};
43                         // Parse initial share_string
44                         if ($("#id_frio_nav_bg").length) {
45                                 theme.nav_bg = $("#id_frio_nav_bg").val();
46                         }
47
48                         if ($("#id_frio_nav_icon_color").length) {
49                                 theme.nav_icon_color = $("#id_frio_nav_icon_color").val();
50                         }
51
52                         if ($("#id_frio_link_color").length) {
53                                 theme.link_color = $("#id_frio_link_color").val();
54                         }
55
56                         if ($("#id_frio_background_color").length) {
57                                 theme.background_color = $("#id_frio_background_color").val();
58                         }
59
60                         if ($("#frio_contentbg_transp").length) {
61                                 theme.contentbg_transp = $("#frio_contentbg_transp").val();
62                         }
63
64                         if ($("#id_frio_login_bg_image").length) {
65                                 theme.login_bg_image = $("#id_frio_login_bg_image").val();
66                         }
67
68                         if ($("#id_frio_login_bg_color").length) {
69                                 theme.login_bg_color = $("#id_frio_login_bg_color").val();
70                         }
71
72                         var share_string = JSON.stringify(theme);
73                         $("#id_frio_share_string").val(share_string);
74                 }
75
76                 // interval because jquery.val does not trigger events
77                 window.setInterval(GenerateShareString, 500);
78                 GenerateShareString();
79
80                 $(document).on("keyup", "#id_frio_share_string", function() {
81                         theme = JSON.parse($("#id_frio_share_string").val());
82
83                         if ($("#id_frio_nav_bg").length) {
84                                 $("#id_frio_nav_bg").val(theme.nav_bg);
85                         }
86
87                         if ($("#id_frio_nav_icon_color").length) {
88                                 $("#id_frio_nav_icon_color").val(theme.nav_icon_color);
89                         }
90
91                         if ($("#id_frio_link_color").length) {
92                                  $("#id_frio_link_color").val(theme.link_color);
93                         }
94
95                         if ($("#id_frio_background_color").length) {
96                                 $("#id_frio_background_color").val(theme.background_color);
97                         }
98
99                         if ($("#frio_contentbg_transp").length) {
100                                 $("#frio_contentbg_transp").val(theme.contentbg_transp);
101                         }
102
103                         if ($("#id_frio_login_bg_image").length) {
104                                 $("#id_frio_login_bg_image").val(theme.login_bg_image);
105                         }
106
107                         if ($("#id_frio_login_bg_color").length) {
108                                 $("#id_frio_login_bg_color").val(theme.login_bg_color);
109                         }
110                 });
111                 // Create colorpickers
112                 $("#frio_nav_bg, #frio_nav_icon_color, #frio_background_color, #frio_link_color, #frio_login_bg_color").colorpicker({format: 'hex', align: 'left'});
113
114                 // show image options when user user starts to type the address of the image
115                 $("#id_frio_background_image").keyup(function(){
116                         var elText = $(this).val();
117                         if(elText.length !== 0) {
118                                 $("#frio_bg_image_options").show();
119                         } else {
120                                 $("#frio_bg_image_options").hide();
121                         }
122                 });
123
124                 // show the image options is there is allready an image
125                 if($("#id_frio_background_image").val().length != 0) {
126                                 $("#frio_bg_image_options").show();
127                 }
128
129                 $('.slider-input').jRange({
130                         from: 0,
131                         to: 100,
132                         step: 1,
133                         scale: [0,10,20,30,40,50,60,70,80,90,100],
134                         format: '%s',
135                         width: '100%',
136                         showLabels: true,
137                         theme: 'theme-frio',
138                 });
139
140                 // The position of the slider is wrong calculated on hidden elements.
141                 // So set an event listener toggle and update the jRange value.
142                 $(document).on('click', '#custom-settings-title a', function() {
143                         var bgTransp = $('#frio_contentbg_transp').val();
144                         $('.slider-input').jRange('setValue', bgTransp);
145                 });
146
147         });
148 </script>
149
150 <div class="settings-submit-wrapper form-group pull-right">
151         <button type="submit" value="{{$submit}}" class="settings-submit btn btn-primary" name="frio-settings-submit">{{$submit}}</button>
152 </div>
153 <div class="clearfix"></div>
154
155 <script type="text/javascript">
156         $(".inputRange").rangeinput();
157 </script>