[gnome-maps/wip/mlundblad/place-thumbnails: 8/8] WIP: placeBubble: Fetch Wikipedia thumbnails for place
- From: Marcus Lundblad <mlundblad src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gnome-maps/wip/mlundblad/place-thumbnails: 8/8] WIP: placeBubble: Fetch Wikipedia thumbnails for place
- Date: Mon, 6 Mar 2017 20:10:19 +0000 (UTC)
commit 9b06c49d8f58791db30f1e77fe1ad138bf576327
Author: Marcus Lundblad <ml update uu se>
Date: Mon Feb 27 23:22:57 2017 +0100
WIP: placeBubble: Fetch Wikipedia thumbnails for place
data/ui/map-bubble.ui | 31 ++++++++++++++++++++++++++-----
src/mapBubble.js | 12 ++++++++++++
src/placeBubble.js | 16 ++++++++++++++++
3 files changed, 54 insertions(+), 5 deletions(-)
---
diff --git a/data/ui/map-bubble.ui b/data/ui/map-bubble.ui
index 3f7d961..c655a7f 100644
--- a/data/ui/map-bubble.ui
+++ b/data/ui/map-bubble.ui
@@ -11,12 +11,33 @@
<property name="margin_bottom">10</property>
<property name="orientation">vertical</property>
<child>
- <object class="GtkImage" id="bubble-image">
+ <object class="GtkStack" id="bubble-icon-stack">
<property name="visible">True</property>
- <property name="can_focus">False</property>
- <property name="valign">start</property>
- <property name="pixel_size">0</property>
- <property name="icon_size">16</property>
+ <property name="transition-type">GTK_STACK_TRANSITION_TYPE_CROSSFADE</property>
+ <child>
+ <object class="GtkImage" id="bubble-image">
+ <property name="visible">True</property>
+ <property name="can_focus">False</property>
+ <property name="valign">start</property>
+ <property name="pixel_size">0</property>
+ <property name="icon_size">16</property>
+ </object>
+ <packing>
+ <property name="name">icon</property>
+ </packing>
+ </child>
+ <child>
+ <object class="GtkImage" id="bubble-thumbnail">
+ <property name="visible">True</property>
+ <property name="can_focus">False</property>
+ <property name="valign">start</property>
+ <property name="pixel_size">0</property>
+ <property name="icon_size">16</property>
+ </object>
+ <packing>
+ <property name="name">thumbnail</property>
+ </packing>
+ </child>
</object>
<packing>
<property name="left_attach">0</property>
diff --git a/src/mapBubble.js b/src/mapBubble.js
index 6dc6d0b..28aae2a 100644
--- a/src/mapBubble.js
+++ b/src/mapBubble.js
@@ -70,6 +70,8 @@ const MapBubble = new Lang.Class({
this.parent(params);
let ui = Utils.getUIObject('map-bubble', [ 'bubble-main-grid',
'bubble-image',
+ 'bubble-thumbnail',
+ 'bubble-icon-stack',
'bubble-content-area',
'bubble-button-area',
'bubble-route-button',
@@ -78,6 +80,8 @@ const MapBubble = new Lang.Class({
'bubble-check-in-button',
'bubble-favorite-button-image']);
this._image = ui.bubbleImage;
+ this._thumbnail = ui.bubbleThumbnail;
+ this._iconStack = ui.bubbleIconStack;
this._content = ui.bubbleContentArea;
if (!buttonFlags)
@@ -100,6 +104,14 @@ const MapBubble = new Lang.Class({
return this._image;
},
+ get thumbnail() {
+ return this._thumbnail;
+ },
+
+ get iconStack() {
+ return this._iconStack;
+ },
+
get place() {
return this._place;
},
diff --git a/src/placeBubble.js b/src/placeBubble.js
index b437e2d..46a43b3 100644
--- a/src/placeBubble.js
+++ b/src/placeBubble.js
@@ -35,6 +35,7 @@ const Place = imports.place;
const PlaceFormatter = imports.placeFormatter;
const PlaceStore = imports.placeStore;
const Utils = imports.utils;
+const Wikipedia = imports.wikipedia;
const PlaceBubble = new Lang.Class({
Name: 'PlaceBubble',
@@ -231,6 +232,21 @@ const PlaceBubble = new Lang.Class({
this._title.label = formatter.title;
this._expandButton.visible = expandedContent.length > 0;
this._stack.visible_child = this._gridContent;
+
+ if (place.wiki)
+ this._requestWikipediaThumbnail(place.wiki);
+ },
+
+ _requestWikipediaThumbnail: function(wiki) {
+ Wikipedia.fetchArticleThumbnail(wiki, 128,
+ this._onThumbnailComplete.bind(this));
+ },
+
+ _onThumbnailComplete: function(thumbnail) {
+ if (thumbnail) {
+ this.thumbnail.pixbuf = thumbnail;
+ this.iconStack.visible_child_name = 'thumbnail';
+ }
},
// clear the view widgets to be able to re-populate an updated place
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]