Show More
@@ -6,5 +6,5 b'' | |||||
6 | } |
|
6 | } | |
7 | }] |
|
7 | }] | |
8 | ], |
|
8 | ], | |
9 |
|
|
9 | "plugins": ["transform-object-rest-spread"] | |
10 | } |
|
10 | } |
@@ -16,7 +16,7 b'' | |||||
16 | "main": { |
|
16 | "main": { | |
17 | "expand": true, |
|
17 | "expand": true, | |
18 | "cwd": "bower_components", |
|
18 | "cwd": "bower_components", | |
19 |
"src": "webcomponentsjs/ |
|
19 | "src": "webcomponentsjs/*.*", | |
20 | "dest": "<%= dirs.js.dest %>/vendors" |
|
20 | "dest": "<%= dirs.js.dest %>/vendors" | |
21 | } |
|
21 | } | |
22 | }, |
|
22 | }, |
@@ -17,9 +17,14 b'' | |||||
17 | var ccLog = Logger.get('RhodeCodeApp'); |
|
17 | var ccLog = Logger.get('RhodeCodeApp'); | |
18 | ccLog.setLevel(Logger.OFF); |
|
18 | ccLog.setLevel(Logger.OFF); | |
19 |
|
19 | |||
20 |
|
|
20 | class RhodecodeApp extends Polymer.Element { | |
21 | is: 'rhodecode-app', |
|
21 | ||
22 |
|
|
22 | static get is() { | |
|
23 | return 'rhodecode-app'; | |||
|
24 | } | |||
|
25 | ||||
|
26 | connectedCallback() { | |||
|
27 | super.connectedCallback(); | |||
23 | ccLog.debug('rhodeCodeApp created'); |
|
28 | ccLog.debug('rhodeCodeApp created'); | |
24 | $.Topic('/notifications').subscribe(this.handleNotifications.bind(this)); |
|
29 | $.Topic('/notifications').subscribe(this.handleNotifications.bind(this)); | |
25 | $.Topic('/favicon/update').subscribe(this.faviconUpdate.bind(this)); |
|
30 | $.Topic('/favicon/update').subscribe(this.faviconUpdate.bind(this)); | |
@@ -37,46 +42,47 b'' | |||||
37 | $(document).ready(function () { |
|
42 | $(document).ready(function () { | |
38 | this.kickoffChannelstreamPlugin(); |
|
43 | this.kickoffChannelstreamPlugin(); | |
39 | }.bind(this)); |
|
44 | }.bind(this)); | |
40 |
} |
|
45 | } | |
41 |
|
46 | |||
42 |
initPlugins |
|
47 | initPlugins() { | |
43 | for (var i = 0; i < window.APPLICATION_PLUGINS.length; i++) { |
|
48 | for (var i = 0; i < window.APPLICATION_PLUGINS.length; i++) { | |
44 | var pluginDef = window.APPLICATION_PLUGINS[i]; |
|
49 | var pluginDef = window.APPLICATION_PLUGINS[i]; | |
45 | if (pluginDef.component){ |
|
50 | if (pluginDef.component) { | |
46 | var pluginElem = document.createElement(pluginDef.component); |
|
51 | var pluginElem = document.createElement(pluginDef.component); | |
47 | this.shadowRoot.appendChild(pluginElem); |
|
52 | this.shadowRoot.appendChild(pluginElem); | |
48 | if (typeof pluginElem.init !== 'undefined'){ |
|
53 | if (typeof pluginElem.init !== 'undefined') { | |
49 | pluginElem.init(); |
|
54 | pluginElem.init(); | |
50 | } |
|
55 | } | |
51 | } |
|
56 | } | |
52 | } |
|
57 | } | |
53 |
} |
|
58 | } | |
|
59 | ||||
54 | /** proxy to channelstream connection */ |
|
60 | /** proxy to channelstream connection */ | |
55 |
getChannelStreamConnection |
|
61 | getChannelStreamConnection() { | |
56 | return this.$['channelstream-connection']; |
|
62 | return this.$['channelstream-connection']; | |
57 |
} |
|
63 | } | |
58 |
|
64 | |||
59 |
handleNotifications |
|
65 | handleNotifications(data) { | |
60 | var elem = document.getElementById('notifications'); |
|
66 | var elem = document.getElementById('notifications'); | |
61 | if(elem){ |
|
67 | if (elem) { | |
62 | elem.handleNotification(data); |
|
68 | elem.handleNotification(data); | |
63 | } |
|
69 | } | |
64 |
|
70 | |||
65 |
} |
|
71 | } | |
66 |
|
72 | |||
67 |
faviconUpdate |
|
73 | faviconUpdate(data) { | |
68 | this.shadowRoot.querySelector('rhodecode-favicon').counter = data.count; |
|
74 | this.shadowRoot.querySelector('rhodecode-favicon').counter = data.count; | |
69 |
} |
|
75 | } | |
70 |
|
76 | |||
71 | /** opens connection to ws server */ |
|
77 | /** opens connection to ws server */ | |
72 |
kickoffChannelstreamPlugin |
|
78 | kickoffChannelstreamPlugin(data) { | |
73 | ccLog.debug('kickoffChannelstreamPlugin'); |
|
79 | ccLog.debug('kickoffChannelstreamPlugin'); | |
74 | var channels = ['broadcast']; |
|
80 | var channels = ['broadcast']; | |
75 | var addChannels = this.checkViewChannels(); |
|
81 | var addChannels = this.checkViewChannels(); | |
76 | for (var i = 0; i < addChannels.length; i++) { |
|
82 | for (var i = 0; i < addChannels.length; i++) { | |
77 | channels.push(addChannels[i]); |
|
83 | channels.push(addChannels[i]); | |
78 | } |
|
84 | } | |
79 | if (window.CHANNELSTREAM_SETTINGS && CHANNELSTREAM_SETTINGS.enabled){ |
|
85 | if (window.CHANNELSTREAM_SETTINGS && CHANNELSTREAM_SETTINGS.enabled) { | |
80 | var channelstreamConnection = this.getChannelStreamConnection(); |
|
86 | var channelstreamConnection = this.getChannelStreamConnection(); | |
81 | channelstreamConnection.connectUrl = CHANNELSTREAM_URLS.connect; |
|
87 | channelstreamConnection.connectUrl = CHANNELSTREAM_URLS.connect; | |
82 | channelstreamConnection.subscribeUrl = CHANNELSTREAM_URLS.subscribe; |
|
88 | channelstreamConnection.subscribeUrl = CHANNELSTREAM_URLS.subscribe; | |
@@ -90,9 +96,9 b'' | |||||
90 | $.Topic('/connection_controller/subscribe').processPrepared(); |
|
96 | $.Topic('/connection_controller/subscribe').processPrepared(); | |
91 | channelstreamConnection.connect(); |
|
97 | channelstreamConnection.connect(); | |
92 | } |
|
98 | } | |
93 |
} |
|
99 | } | |
94 |
|
100 | |||
95 |
checkViewChannels |
|
101 | checkViewChannels() { | |
96 | // subscribe to different channels data is sent. |
|
102 | // subscribe to different channels data is sent. | |
97 |
|
103 | |||
98 | var channels = []; |
|
104 | var channels = []; | |
@@ -110,10 +116,10 b'' | |||||
110 | } |
|
116 | } | |
111 |
|
117 | |||
112 | return channels; |
|
118 | return channels; | |
113 |
} |
|
119 | } | |
114 |
|
120 | |||
115 | /** subscribes users from channels in channelstream */ |
|
121 | /** subscribes users from channels in channelstream */ | |
116 |
subscribeToChannelTopic |
|
122 | subscribeToChannelTopic(channels) { | |
117 | var channelstreamConnection = this.getChannelStreamConnection(); |
|
123 | var channelstreamConnection = this.getChannelStreamConnection(); | |
118 | var toSubscribe = channelstreamConnection.calculateSubscribe(channels); |
|
124 | var toSubscribe = channelstreamConnection.calculateSubscribe(channels); | |
119 | ccLog.debug('subscribeToChannelTopic', toSubscribe); |
|
125 | ccLog.debug('subscribeToChannelTopic', toSubscribe); | |
@@ -129,34 +135,35 b'' | |||||
129 | } |
|
135 | } | |
130 | } |
|
136 | } | |
131 | } |
|
137 | } | |
132 |
} |
|
138 | } | |
133 |
|
139 | |||
134 | /** publish received messages into correct topic */ |
|
140 | /** publish received messages into correct topic */ | |
135 |
receivedMessage |
|
141 | receivedMessage(event) { | |
136 | for (var i = 0; i < event.detail.length; i++) { |
|
142 | for (var i = 0; i < event.detail.length; i++) { | |
137 | var message = event.detail[i]; |
|
143 | var message = event.detail[i]; | |
138 | if (message.message.topic) { |
|
144 | if (message.message.topic) { | |
139 | ccLog.debug('publishing', message.message.topic); |
|
145 | ccLog.debug('publishing', message.message.topic); | |
140 | $.Topic(message.message.topic).publish(message); |
|
146 | $.Topic(message.message.topic).publish(message); | |
141 | } |
|
147 | } | |
142 | else if (message.type === 'presence'){ |
|
148 | else if (message.type === 'presence') { | |
143 | $.Topic('/connection_controller/presence').publish(message); |
|
149 | $.Topic('/connection_controller/presence').publish(message); | |
144 | } |
|
150 | } | |
145 | else { |
|
151 | else { | |
146 | ccLog.warn('unhandled message', message); |
|
152 | ccLog.warn('unhandled message', message); | |
147 | } |
|
153 | } | |
148 | } |
|
154 | } | |
149 |
} |
|
155 | } | |
150 |
|
156 | |||
151 |
handleConnected |
|
157 | handleConnected(event) { | |
152 | var channelstreamConnection = this.getChannelStreamConnection(); |
|
158 | var channelstreamConnection = this.getChannelStreamConnection(); | |
153 | channelstreamConnection.set('channelsState', |
|
159 | channelstreamConnection.set('channelsState', | |
154 | event.detail.channels_info); |
|
160 | event.detail.channels_info); | |
155 | channelstreamConnection.set('userState', event.detail.state); |
|
161 | channelstreamConnection.set('userState', event.detail.state); | |
156 | channelstreamConnection.set('channels', event.detail.channels); |
|
162 | channelstreamConnection.set('channels', event.detail.channels); | |
157 | this.propagageChannelsState(); |
|
163 | this.propagageChannelsState(); | |
158 |
} |
|
164 | } | |
159 | handleSubscribed: function (event) { |
|
165 | ||
|
166 | handleSubscribed(event) { | |||
160 | var channelstreamConnection = this.getChannelStreamConnection(); |
|
167 | var channelstreamConnection = this.getChannelStreamConnection(); | |
161 | var channelInfo = event.detail.channels_info; |
|
168 | var channelInfo = event.detail.channels_info; | |
162 | var channelKeys = Object.keys(event.detail.channels_info); |
|
169 | var channelKeys = Object.keys(event.detail.channels_info); | |
@@ -166,9 +173,10 b'' | |||||
166 | } |
|
173 | } | |
167 | channelstreamConnection.set('channels', event.detail.channels); |
|
174 | channelstreamConnection.set('channels', event.detail.channels); | |
168 | this.propagageChannelsState(); |
|
175 | this.propagageChannelsState(); | |
169 |
} |
|
176 | } | |
|
177 | ||||
170 | /** propagates channel states on topics */ |
|
178 | /** propagates channel states on topics */ | |
171 |
propagageChannelsState |
|
179 | propagageChannelsState(event) { | |
172 | var channelstreamConnection = this.getChannelStreamConnection(); |
|
180 | var channelstreamConnection = this.getChannelStreamConnection(); | |
173 | var channel_data = channelstreamConnection.channelsState; |
|
181 | var channel_data = channelstreamConnection.channelsState; | |
174 | var channels = channelstreamConnection.channels; |
|
182 | var channels = channelstreamConnection.channels; | |
@@ -179,7 +187,9 b'' | |||||
179 | ); |
|
187 | ); | |
180 | } |
|
188 | } | |
181 | } |
|
189 | } | |
182 | }); |
|
|||
183 |
|
190 | |||
|
191 | } | |||
|
192 | ||||
|
193 | customElements.define(RhodecodeApp.is, RhodecodeApp); | |||
184 | </script> |
|
194 | </script> | |
185 | </dom-module> |
|
195 | </dom-module> |
@@ -4,26 +4,35 b'' | |||||
4 | <template> |
|
4 | <template> | |
5 | </template> |
|
5 | </template> | |
6 | <script> |
|
6 | <script> | |
7 | Polymer({ |
|
7 | class RhodecodeFavicon extends Polymer.Element { | |
8 | is: 'rhodecode-favicon', |
|
8 | ||
9 | properties: { |
|
9 | static get is() { return 'rhodecode-favicon'; } | |
10 | favicon: Object, |
|
10 | ||
11 |
|
|
11 | static get properties() { | |
12 | type: Number, |
|
12 | return { | |
13 |
|
|
13 | favicon: Object, | |
|
14 | counter: { | |||
|
15 | type: Number, | |||
|
16 | observer: '_handleCounter' | |||
|
17 | } | |||
14 | } |
|
18 | } | |
15 |
} |
|
19 | } | |
16 |
|
20 | |||
17 | ready: function () { |
|
21 | connectedCallback() { | |
|
22 | super.connectedCallback(); | |||
18 | this.favicon = new Favico({ |
|
23 | this.favicon = new Favico({ | |
19 | type: 'rectangle', |
|
24 | type: 'rectangle', | |
20 | animation: 'none' |
|
25 | animation: 'none' | |
21 | }); |
|
26 | }); | |
22 |
} |
|
27 | } | |
23 | _handleCounter: function (newVal, oldVal) { |
|
28 | ||
|
29 | _handleCounter(newVal, oldVal) { | |||
24 | this.favicon.badge(this.counter); |
|
30 | this.favicon.badge(this.counter); | |
25 | } |
|
31 | } | |
26 | }); |
|
32 | ||
|
33 | } | |||
|
34 | customElements.define(RhodecodeFavicon.is, RhodecodeFavicon); | |||
|
35 | ||||
27 |
|
36 | |||
28 | </script> |
|
37 | </script> | |
29 | </dom-module> |
|
38 | </dom-module> |
@@ -1,5 +1,6 b'' | |||||
1 | <link rel="import" href="../../../../../../bower_components/paper-button/paper-button.html"> |
|
1 | <link rel="import" href="../../../../../../bower_components/paper-button/paper-button.html"> | |
2 | <link rel="import" href="../../../../../../bower_components/iron-a11y-keys-behavior/iron-a11y-keys-behavior.html"> |
|
2 | <link rel="import" | |
|
3 | href="../../../../../../bower_components/iron-a11y-keys-behavior/iron-a11y-keys-behavior.html"> | |||
3 | <link rel="import" href="../rhodecode-unsafe-html/rhodecode-unsafe-html.html"> |
|
4 | <link rel="import" href="../rhodecode-unsafe-html/rhodecode-unsafe-html.html"> | |
4 | <dom-module id="rhodecode-toast"> |
|
5 | <dom-module id="rhodecode-toast"> | |
5 | <template> |
|
6 | <template> | |
@@ -19,57 +20,69 b'' | |||||
19 | bottom: 0; |
|
20 | bottom: 0; | |
20 | right: 0; |
|
21 | right: 0; | |
21 | } |
|
22 | } | |
|
23 | ||||
22 | .top-left-rounded-corner { |
|
24 | .top-left-rounded-corner { | |
23 | -webkit-border-top-left-radius: 2px; |
|
25 | -webkit-border-top-left-radius: 2px; | |
24 | -khtml-border-radius-topleft: 2px; |
|
26 | -khtml-border-radius-topleft: 2px; | |
25 | border-top-left-radius: 2px; |
|
27 | border-top-left-radius: 2px; | |
26 | } |
|
28 | } | |
|
29 | ||||
27 | .top-right-rounded-corner { |
|
30 | .top-right-rounded-corner { | |
28 | -webkit-border-top-right-radius: 2px; |
|
31 | -webkit-border-top-right-radius: 2px; | |
29 | -khtml-border-radius-topright: 2px; |
|
32 | -khtml-border-radius-topright: 2px; | |
30 | border-top-right-radius: 2px; |
|
33 | border-top-right-radius: 2px; | |
31 | } |
|
34 | } | |
|
35 | ||||
32 | .bottom-left-rounded-corner { |
|
36 | .bottom-left-rounded-corner { | |
33 | -webkit-border-bottom-left-radius: 2px; |
|
37 | -webkit-border-bottom-left-radius: 2px; | |
34 | -khtml-border-radius-bottomleft: 2px; |
|
38 | -khtml-border-radius-bottomleft: 2px; | |
35 | border-bottom-left-radius: 2px; |
|
39 | border-bottom-left-radius: 2px; | |
36 | } |
|
40 | } | |
|
41 | ||||
37 | .bottom-right-rounded-corner { |
|
42 | .bottom-right-rounded-corner { | |
38 | -webkit-border-bottom-right-radius: 2px; |
|
43 | -webkit-border-bottom-right-radius: 2px; | |
39 | -khtml-border-radius-bottomright: 2px; |
|
44 | -khtml-border-radius-bottomright: 2px; | |
40 | border-bottom-right-radius: 2px; |
|
45 | border-bottom-right-radius: 2px; | |
41 | } |
|
46 | } | |
|
47 | ||||
42 | .top-left-rounded-corner-mid { |
|
48 | .top-left-rounded-corner-mid { | |
43 | -webkit-border-top-left-radius: 2px; |
|
49 | -webkit-border-top-left-radius: 2px; | |
44 | -khtml-border-radius-topleft: 2px; |
|
50 | -khtml-border-radius-topleft: 2px; | |
45 | border-top-left-radius: 2px; |
|
51 | border-top-left-radius: 2px; | |
46 | } |
|
52 | } | |
|
53 | ||||
47 | .top-right-rounded-corner-mid { |
|
54 | .top-right-rounded-corner-mid { | |
48 | -webkit-border-top-right-radius: 2px; |
|
55 | -webkit-border-top-right-radius: 2px; | |
49 | -khtml-border-radius-topright: 2px; |
|
56 | -khtml-border-radius-topright: 2px; | |
50 | border-top-right-radius: 2px; |
|
57 | border-top-right-radius: 2px; | |
51 | } |
|
58 | } | |
|
59 | ||||
52 | .bottom-left-rounded-corner-mid { |
|
60 | .bottom-left-rounded-corner-mid { | |
53 | -webkit-border-bottom-left-radius: 2px; |
|
61 | -webkit-border-bottom-left-radius: 2px; | |
54 | -khtml-border-radius-bottomleft: 2px; |
|
62 | -khtml-border-radius-bottomleft: 2px; | |
55 | border-bottom-left-radius: 2px; |
|
63 | border-bottom-left-radius: 2px; | |
56 | } |
|
64 | } | |
|
65 | ||||
57 | .bottom-right-rounded-corner-mid { |
|
66 | .bottom-right-rounded-corner-mid { | |
58 | -webkit-border-bottom-right-radius: 2px; |
|
67 | -webkit-border-bottom-right-radius: 2px; | |
59 | -khtml-border-radius-bottomright: 2px; |
|
68 | -khtml-border-radius-bottomright: 2px; | |
60 | border-bottom-right-radius: 2px; |
|
69 | border-bottom-right-radius: 2px; | |
61 | } |
|
70 | } | |
|
71 | ||||
62 | .alert { |
|
72 | .alert { | |
63 | margin: 10px 0; |
|
73 | margin: 10px 0; | |
64 | } |
|
74 | } | |
|
75 | ||||
65 | .toast-close { |
|
76 | .toast-close { | |
66 | margin: 0; |
|
77 | margin: 0; | |
67 | float: right; |
|
78 | float: right; | |
68 | cursor: pointer; |
|
79 | cursor: pointer; | |
69 | } |
|
80 | } | |
|
81 | ||||
70 | .toast-message-holder { |
|
82 | .toast-message-holder { | |
71 | background: rgba(255, 255, 255, 0.25); |
|
83 | background: rgba(255, 255, 255, 0.25); | |
72 | } |
|
84 | } | |
|
85 | ||||
73 | .toast-message-holder.fixed { |
|
86 | .toast-message-holder.fixed { | |
74 | position: fixed; |
|
87 | position: fixed; | |
75 | padding: 10px 0; |
|
88 | padding: 10px 0; | |
@@ -86,7 +99,7 b'' | |||||
86 | <div class$="container toast-message-holder [[conditionalClass(isFixed)]]"> |
|
99 | <div class$="container toast-message-holder [[conditionalClass(isFixed)]]"> | |
87 | <template is="dom-repeat" items="[[toasts]]"> |
|
100 | <template is="dom-repeat" items="[[toasts]]"> | |
88 | <div class$="alert alert-[[item.level]]"> |
|
101 | <div class$="alert alert-[[item.level]]"> | |
89 |
<div on- |
|
102 | <div on-click="dismissNotification" class="toast-close" index-pos="[[index]]"> | |
90 | <span>[[_gettext('Close')]]</span> |
|
103 | <span>[[_gettext('Close')]]</span> | |
91 | </div> |
|
104 | </div> | |
92 | <rhodecode-unsafe-html text="[[item.message]]"></rhodecode-unsafe-html> |
|
105 | <rhodecode-unsafe-html text="[[item.message]]"></rhodecode-unsafe-html> | |
@@ -97,104 +110,124 b'' | |||||
97 | </template> |
|
110 | </template> | |
98 |
|
111 | |||
99 | <script> |
|
112 | <script> | |
100 | Polymer({ |
|
113 | ||
101 | is: 'rhodecode-toast', |
|
114 | class RhodecodeToast extends Polymer.mixinBehaviors([Polymer.IronA11yKeysBehavior], Polymer.Element) { | |
102 | properties: { |
|
115 | ||
103 |
|
|
116 | static get is() { | |
104 | type: Array, |
|
117 | return 'rhodecode-toast'; | |
105 | value: function(){ |
|
118 | } | |
106 | return [] |
|
119 | ||
107 | } |
|
120 | static get properties() { | |
108 |
|
|
121 | return { | |
109 |
|
|
122 | toasts: { | |
110 |
type: |
|
123 | type: Array, | |
111 |
value |
|
124 | value() { | |
112 | }, |
|
125 | return [] | |
113 |
|
|
126 | } | |
114 |
|
|
127 | }, | |
115 | computed: '_computeHasToasts(toasts.*)' |
|
128 | isFixed: { | |
116 |
|
|
129 | type: Boolean, | |
117 | keyEventTarget: { |
|
130 | value: false | |
118 |
|
|
131 | }, | |
119 |
|
|
132 | hasToasts: { | |
120 |
|
|
133 | type: Boolean, | |
|
134 | computed: '_computeHasToasts(toasts.*)' | |||
|
135 | }, | |||
|
136 | keyEventTarget: { | |||
|
137 | type: Object, | |||
|
138 | value() { | |||
|
139 | return document.body; | |||
|
140 | } | |||
121 | } |
|
141 | } | |
122 | } |
|
142 | } | |
123 |
} |
|
143 | } | |
124 | behaviors: [ |
|
144 | ||
125 | Polymer.IronA11yKeysBehavior |
|
145 | get keyBindings() { | |
126 |
|
|
146 | return { | |
127 | observers: [ |
|
147 | 'esc:keyup': '_hideOnEsc' | |
128 | '_changedToasts(toasts.splices)' |
|
148 | } | |
129 |
|
|
149 | } | |
130 |
|
150 | |||
131 | keyBindings: { |
|
151 | static get observers() { | |
132 | 'esc:keyup': '_hideOnEsc' |
|
152 | return [ | |
133 | }, |
|
153 | '_changedToasts(toasts.splices)' | |
|
154 | ] | |||
|
155 | } | |||
134 |
|
156 | |||
135 |
_hideOnEsc |
|
157 | _hideOnEsc(event) { | |
136 | return this.dismissNotifications(); |
|
158 | return this.dismissNotifications(); | |
137 |
} |
|
159 | } | |
138 |
|
160 | |||
139 |
_computeHasToasts |
|
161 | _computeHasToasts() { | |
140 | return this.toasts.length > 0; |
|
162 | return this.toasts.length > 0; | |
141 |
} |
|
163 | } | |
142 |
|
164 | |||
143 |
_debouncedCalc |
|
165 | _debouncedCalc() { | |
144 | // calculate once in a while |
|
166 | // calculate once in a while | |
145 | this.debounce('debouncedCalc', this.toastInWindow, 25); |
|
167 | this.debounce('debouncedCalc', this.toastInWindow, 25); | |
146 |
} |
|
168 | } | |
147 |
|
169 | |||
148 |
conditionalClass |
|
170 | conditionalClass() { | |
149 | return this.isFixed ? 'fixed': ''; |
|
171 | return this.isFixed ? 'fixed' : ''; | |
150 |
} |
|
172 | } | |
151 |
|
173 | |||
152 |
toastInWindow |
|
174 | toastInWindow() { | |
153 | if (!this._headerNode){ |
|
175 | if (!this._headerNode) { | |
154 | return true |
|
176 | return true | |
155 | } |
|
177 | } | |
156 | var headerHeight = this._headerNode.offsetHeight; |
|
178 | var headerHeight = this._headerNode.offsetHeight; | |
157 | var scrollPosition = window.scrollY; |
|
179 | var scrollPosition = window.scrollY; | |
158 |
|
180 | |||
159 | if (this.isFixed){ |
|
181 | if (this.isFixed) { | |
160 | this.isFixed = 1 <= scrollPosition; |
|
182 | this.isFixed = 1 <= scrollPosition; | |
161 | } |
|
183 | } | |
162 | else{ |
|
184 | else { | |
163 | this.isFixed = headerHeight <= scrollPosition; |
|
185 | this.isFixed = headerHeight <= scrollPosition; | |
164 | } |
|
186 | } | |
165 |
} |
|
187 | } | |
166 |
|
188 | |||
167 | attached: function(){ |
|
189 | connectedCallback() { | |
|
190 | super.connectedCallback(); | |||
168 | this._headerNode = document.querySelector('.header', document); |
|
191 | this._headerNode = document.querySelector('.header', document); | |
169 | this.listen(window,'scroll', '_debouncedCalc'); |
|
192 | this.listen(window, 'scroll', '_debouncedCalc'); | |
170 | this.listen(window,'resize', '_debouncedCalc'); |
|
193 | this.listen(window, 'resize', '_debouncedCalc'); | |
171 | this._debouncedCalc(); |
|
194 | this._debouncedCalc(); | |
172 |
} |
|
195 | } | |
173 | _changedToasts: function(newValue, oldValue){ |
|
196 | ||
|
197 | _changedToasts(newValue, oldValue) { | |||
174 | $.Topic('/favicon/update').publish({count: this.toasts.length}); |
|
198 | $.Topic('/favicon/update').publish({count: this.toasts.length}); | |
175 |
} |
|
199 | } | |
176 | dismissNotification: function(e) { |
|
200 | ||
177 | $.Topic('/favicon/update').publish({count: this.toasts.length-1}); |
|
201 | dismissNotification(e) { | |
|
202 | $.Topic('/favicon/update').publish({count: this.toasts.length - 1}); | |||
178 | var idx = e.target.parentNode.indexPos |
|
203 | var idx = e.target.parentNode.indexPos | |
179 | this.splice('toasts', idx, 1); |
|
204 | this.splice('toasts', idx, 1); | |
180 |
|
205 | |||
181 |
} |
|
206 | } | |
182 | dismissNotifications: function(){ |
|
207 | ||
|
208 | dismissNotifications() { | |||
183 | $.Topic('/favicon/update').publish({count: 0}); |
|
209 | $.Topic('/favicon/update').publish({count: 0}); | |
184 | this.splice('toasts', 0); |
|
210 | this.splice('toasts', 0); | |
185 |
} |
|
211 | } | |
186 | handleNotification: function(data){ |
|
212 | ||
|
213 | handleNotification(data) { | |||
187 | if (!templateContext.rhodecode_user.notification_status && !data.message.force) { |
|
214 | if (!templateContext.rhodecode_user.notification_status && !data.message.force) { | |
188 | // do not act if notifications are disabled |
|
215 | // do not act if notifications are disabled | |
189 | return |
|
216 | return | |
190 | } |
|
217 | } | |
191 | this.push('toasts',{ |
|
218 | this.push('toasts', { | |
192 | level: data.message.level, |
|
219 | level: data.message.level, | |
193 | message: data.message.message |
|
220 | message: data.message.message | |
194 | }); |
|
221 | }); | |
195 |
} |
|
222 | } | |
196 | _gettext: _gettext |
|
223 | ||
197 | }); |
|
224 | _gettext(x){ | |
|
225 | return _gettext(x) | |||
|
226 | } | |||
|
227 | ||||
|
228 | } | |||
|
229 | ||||
|
230 | customElements.define(RhodecodeToast.is, RhodecodeToast); | |||
198 |
|
231 | |||
199 | </script> |
|
232 | </script> | |
200 | </dom-module> |
|
233 | </dom-module> |
@@ -1,4 +1,5 b'' | |||||
1 | <link rel="import" href="../../../../../../bower_components/paper-toggle-button/paper-toggle-button.html"> |
|
1 | <link rel="import" | |
|
2 | href="../../../../../../bower_components/paper-toggle-button/paper-toggle-button.html"> | |||
2 | <link rel="import" href="../../../../../../bower_components/paper-spinner/paper-spinner.html"> |
|
3 | <link rel="import" href="../../../../../../bower_components/paper-spinner/paper-spinner.html"> | |
3 | <link rel="import" href="../../../../../../bower_components/paper-tooltip/paper-tooltip.html"> |
|
4 | <link rel="import" href="../../../../../../bower_components/paper-tooltip/paper-tooltip.html"> | |
4 |
|
5 | |||
@@ -9,6 +10,7 b'' | |||||
9 | float: left; |
|
10 | float: left; | |
10 | position: relative; |
|
11 | position: relative; | |
11 | } |
|
12 | } | |
|
13 | ||||
12 | .rc-toggle paper-spinner { |
|
14 | .rc-toggle paper-spinner { | |
13 | position: absolute; |
|
15 | position: absolute; | |
14 | top: 0; |
|
16 | top: 0; | |
@@ -29,20 +31,31 b'' | |||||
29 | </template> |
|
31 | </template> | |
30 |
|
32 | |||
31 | <script> |
|
33 | <script> | |
32 | Polymer({ |
|
34 | ||
33 | is: 'rhodecode-toggle', |
|
35 | class RhodecodeToggle extends Polymer.Element { | |
34 | properties: { |
|
36 | ||
35 | noSpinner: { type: Boolean, value: false, reflectToAttribute:true}, |
|
37 | static get is() { | |
36 | tooltipText: { type: String, value: "Click to toggle", reflectToAttribute:true}, |
|
38 | return 'rhodecode-toggle'; | |
37 | checked: { type: Boolean, value: false, reflectToAttribute:true}, |
|
39 | } | |
38 | active: { type: Boolean, value: false, reflectToAttribute:true, notify:true} |
|
40 | ||
39 | }, |
|
41 | static get properties() { | |
40 | shouldShow: function(){ |
|
42 | return { | |
|
43 | noSpinner: {type: Boolean, value: false, reflectToAttribute: true}, | |||
|
44 | tooltipText: {type: String, value: "Click to toggle", reflectToAttribute: true}, | |||
|
45 | checked: {type: Boolean, value: false, reflectToAttribute: true}, | |||
|
46 | active: {type: Boolean, value: false, reflectToAttribute: true, notify: true} | |||
|
47 | } | |||
|
48 | } | |||
|
49 | ||||
|
50 | shouldShow() { | |||
41 | return !this.noSpinner |
|
51 | return !this.noSpinner | |
42 | }, |
|
|||
43 | labelStatus: function(isActive){ |
|
|||
44 | return this.checked? 'Enabled' : "Disabled" |
|
|||
45 | } |
|
52 | } | |
46 | }); |
|
53 | ||
|
54 | labelStatus(isActive) { | |||
|
55 | return this.checked ? 'Enabled' : "Disabled" | |||
|
56 | } | |||
|
57 | } | |||
|
58 | ||||
|
59 | customElements.define(RhodecodeToggle.is, RhodecodeToggle); | |||
47 | </script> |
|
60 | </script> | |
48 | </dom-module> |
|
61 | </dom-module> |
@@ -1,4 +1,4 b'' | |||||
1 | <link rel="import" href="../../../../../../bower_components/polymer/polymer.html"> |
|
1 | <link rel="import" href="../../../../../../bower_components/polymer/polymer-element.html"> | |
2 |
|
2 | |||
3 | <dom-module id="rhodecode-unsafe-html"> |
|
3 | <dom-module id="rhodecode-unsafe-html"> | |
4 | <template> |
|
4 | <template> | |
@@ -6,18 +6,26 b'' | |||||
6 | <slot></slot> |
|
6 | <slot></slot> | |
7 | </template> |
|
7 | </template> | |
8 | <script> |
|
8 | <script> | |
9 | Polymer({ |
|
9 | class RhodecodeUnsafeHtml extends Polymer.Element { | |
10 | is: 'rhodecode-unsafe-html', |
|
10 | ||
11 |
|
|
11 | static get is() { | |
12 | text: { |
|
12 | return 'rhodecode-unsafe-html'; | |
13 | type: String, |
|
13 | } | |
14 | observer: '_handleText' |
|
14 | ||
|
15 | static get properties() { | |||
|
16 | return { | |||
|
17 | text: { | |||
|
18 | type: String, | |||
|
19 | observer: '_handleText' | |||
|
20 | } | |||
15 | } |
|
21 | } | |
16 |
} |
|
22 | } | |
17 | _handleText: function(newVal, oldVal){ |
|
23 | ||
|
24 | _handleText(newVal, oldVal) { | |||
18 | this.innerHTML = this.text; |
|
25 | this.innerHTML = this.text; | |
19 | } |
|
26 | } | |
20 |
} |
|
27 | } | |
21 |
|
28 | |||
|
29 | customElements.define(RhodecodeUnsafeHtml.is, RhodecodeUnsafeHtml); | |||
22 | </script> |
|
30 | </script> | |
23 | </dom-module> |
|
31 | </dom-module> |
@@ -27,6 +27,8 b" c.template_context['default_user'] = {" | |||||
27 | %> |
|
27 | %> | |
28 | <html xmlns="http://www.w3.org/1999/xhtml"> |
|
28 | <html xmlns="http://www.w3.org/1999/xhtml"> | |
29 | <head> |
|
29 | <head> | |
|
30 | ||||
|
31 | <script src="${h.asset('js/vendors/webcomponentsjs/custom-elements-es5-adapter.js', ver=c.rhodecode_version_hash)}"></script> | |||
30 | <script src="${h.asset('js/vendors/webcomponentsjs/webcomponents-lite.js', ver=c.rhodecode_version_hash)}"></script> |
|
32 | <script src="${h.asset('js/vendors/webcomponentsjs/webcomponents-lite.js', ver=c.rhodecode_version_hash)}"></script> | |
31 | <title>${self.title()}</title> |
|
33 | <title>${self.title()}</title> | |
32 | <meta http-equiv="Content-Type" content="text/html;charset=utf-8" /> |
|
34 | <meta http-equiv="Content-Type" content="text/html;charset=utf-8" /> |
@@ -10,6 +10,18 b' if (process.env.RC_STATIC_DIR) {' | |||||
10 | destinationDirectory = process.env.RC_STATIC_DIR; |
|
10 | destinationDirectory = process.env.RC_STATIC_DIR; | |
11 | } |
|
11 | } | |
12 |
|
12 | |||
|
13 | // doing it this way because it seems that plugin via grunt does not pick up .babelrc | |||
|
14 | let babelRCOptions = { | |||
|
15 | "presets": [ | |||
|
16 | ["env", { | |||
|
17 | "targets": { | |||
|
18 | "browsers": ["last 2 versions"] | |||
|
19 | } | |||
|
20 | }] | |||
|
21 | ], | |||
|
22 | "plugins": ["transform-object-rest-spread"] | |||
|
23 | } | |||
|
24 | ||||
13 | module.exports = { |
|
25 | module.exports = { | |
14 | // Tell Webpack which file kicks off our app. |
|
26 | // Tell Webpack which file kicks off our app. | |
15 | entry: { |
|
27 | entry: { | |
@@ -42,7 +54,8 b' module.exports = {' | |||||
42 | // polymer-webpack-loader, and hand the output to |
|
54 | // polymer-webpack-loader, and hand the output to | |
43 | // babel-loader. This let's us transpile JS in our `<script>` elements. |
|
55 | // babel-loader. This let's us transpile JS in our `<script>` elements. | |
44 | use: [ |
|
56 | use: [ | |
45 |
{loader: 'babel-loader' |
|
57 | {loader: 'babel-loader', | |
|
58 | options: babelRCOptions}, | |||
46 | {loader: 'polymer-webpack-loader', |
|
59 | {loader: 'polymer-webpack-loader', | |
47 | options: { |
|
60 | options: { | |
48 | processStyleLinks: true, |
|
61 | processStyleLinks: true, | |
@@ -53,7 +66,7 b' module.exports = {' | |||||
53 | { |
|
66 | { | |
54 | // If you see a file that ends in .js, just send it to the babel-loader. |
|
67 | // If you see a file that ends in .js, just send it to the babel-loader. | |
55 | test: /\.js$/, |
|
68 | test: /\.js$/, | |
56 | use: 'babel-loader' |
|
69 | use: {loader: 'babel-loader', options: babelRCOptions} | |
57 | // Optionally exclude node_modules from transpilation except for polymer-webpack-loader: |
|
70 | // Optionally exclude node_modules from transpilation except for polymer-webpack-loader: | |
58 | // exclude: /node_modules\/(?!polymer-webpack-loader\/).*/ |
|
71 | // exclude: /node_modules\/(?!polymer-webpack-loader\/).*/ | |
59 | }, |
|
72 | }, |
General Comments 0
You need to be logged in to leave comments.
Login now