mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
Bug 1069962: fix the ui-showcase to load assets using relative paths. r=Standard8
This commit is contained in:
parent
6039fe8105
commit
c68f11d7f1
@ -52,9 +52,10 @@
|
||||
<script src="../content/js/roomViews.js"></script>
|
||||
<script src="../content/js/conversationViews.js"></script>
|
||||
<script src="../content/js/client.js"></script>
|
||||
<script src="../content/js/fxOSMarketplace.js"></script>
|
||||
<script src="../content/js/webapp.js"></script>
|
||||
<script src="../content/js/standaloneRoomViews.js"></script>
|
||||
<script src="../standalone/content/js/multiplexGum.js"></script>
|
||||
<script src="../standalone/content/js/webapp.js"></script>
|
||||
<script src="../standalone/content/js/standaloneRoomViews.js"></script>
|
||||
<script src="../standalone/content/js/fxOSMarketplace.js"></script>
|
||||
<script type="text/javascript;version=1.8" src="../content/js/contacts.js"></script>
|
||||
<script>
|
||||
if (!loop.contacts) {
|
||||
|
@ -170,9 +170,20 @@
|
||||
|
||||
/* SVG icons showcase */
|
||||
|
||||
.svg-icons h3 {
|
||||
clear: left;
|
||||
}
|
||||
|
||||
.svg-icon-list {
|
||||
display: block;
|
||||
margin: .5rem 0;
|
||||
clear: left;
|
||||
}
|
||||
|
||||
.svg-icon-entry {
|
||||
width: 180px;
|
||||
float: left;
|
||||
background-color: rgba(255,0,255,.1)
|
||||
}
|
||||
|
||||
.svg-icon-entry > p {
|
||||
@ -184,6 +195,7 @@
|
||||
display: inline-block;
|
||||
width: 16px;
|
||||
height: 16px;
|
||||
margin-left: .5rem;
|
||||
background-repeat: no-repeat;
|
||||
background-size: 16px 16px;
|
||||
background-position: center;
|
||||
|
@ -124,35 +124,54 @@
|
||||
|
||||
var SVGIcon = React.createClass({displayName: "SVGIcon",
|
||||
render: function() {
|
||||
var sizeUnit = this.props.size.split("x")[0] + "px";
|
||||
return (
|
||||
React.createElement("span", {className: "svg-icon", style: {
|
||||
"background-image": "url(/content/shared/img/icons-16x16.svg#" + this.props.shapeId + ")"
|
||||
"backgroundImage": "url(../content/shared/img/icons-" + this.props.size +
|
||||
".svg#" + this.props.shapeId + ")",
|
||||
"backgroundSize": sizeUnit + " " + sizeUnit
|
||||
}})
|
||||
);
|
||||
}
|
||||
});
|
||||
|
||||
var SVGIcons = React.createClass({displayName: "SVGIcons",
|
||||
shapes: [
|
||||
"audio", "audio-hover", "audio-active", "block",
|
||||
"block-red", "block-hover", "block-active", "contacts", "contacts-hover",
|
||||
"contacts-active", "copy", "checkmark", "google", "google-hover",
|
||||
"google-active", "history", "history-hover", "history-active", "leave",
|
||||
"precall", "precall-hover", "precall-active", "settings", "settings-hover",
|
||||
"settings-active", "tag", "tag-hover", "tag-active", "trash", "unblock",
|
||||
"unblock-hover", "unblock-active", "video", "video-hover", "video-active"
|
||||
],
|
||||
shapes: {
|
||||
"10x10": ["close", "close-active", "close-disabled", "dropdown",
|
||||
"dropdown-white", "dropdown-active", "dropdown-disabled", "expand",
|
||||
"expand-active", "expand-disabled", "minimize", "minimize-active",
|
||||
"minimize-disabled"
|
||||
],
|
||||
"14x14": ["audio", "audio-active", "audio-disabled", "facemute",
|
||||
"facemute-active", "facemute-disabled", "hangup", "hangup-active",
|
||||
"hangup-disabled", "incoming", "incoming-active", "incoming-disabled",
|
||||
"link", "link-active", "link-disabled", "mute", "mute-active",
|
||||
"mute-disabled", "pause", "pause-active", "pause-disabled", "video",
|
||||
"video-white", "video-active", "video-disabled", "volume", "volume-active",
|
||||
"volume-disabled"
|
||||
],
|
||||
"16x16": ["audio", "audio-hover", "audio-active", "block", "block-red",
|
||||
"block-hover", "block-active", "contacts", "contacts-hover", "contacts-active",
|
||||
"copy", "checkmark", "google", "google-hover", "google-active", "history",
|
||||
"history-hover", "history-active", "leave", "precall", "precall-hover",
|
||||
"precall-active", "screen-white", "screenmute-white", "settings",
|
||||
"settings-hover", "settings-active", "tag", "tag-hover", "tag-active",
|
||||
"trash", "unblock", "unblock-hover", "unblock-active", "video", "video-hover",
|
||||
"video-active", "tour"
|
||||
]
|
||||
},
|
||||
|
||||
render: function() {
|
||||
var icons = this.shapes[this.props.size].map(function(shapeId, i) {
|
||||
return (
|
||||
React.createElement("li", {key: this.props.size + "-" + i, className: "svg-icon-entry"},
|
||||
React.createElement("p", null, React.createElement(SVGIcon, {shapeId: shapeId, size: this.props.size})),
|
||||
React.createElement("p", null, shapeId)
|
||||
)
|
||||
);
|
||||
}, this);
|
||||
return (
|
||||
React.createElement("div", {className: "svg-icon-list"},
|
||||
this.shapes.map(function(shapeId, i) {
|
||||
return React.createElement("div", {key: i, className: "svg-icon-entry"},
|
||||
React.createElement("p", null, React.createElement(SVGIcon, {shapeId: shapeId})),
|
||||
React.createElement("p", null, shapeId)
|
||||
);
|
||||
}, this)
|
||||
)
|
||||
React.createElement("ul", {className: "svg-icon-list"}, icons)
|
||||
);
|
||||
}
|
||||
});
|
||||
@ -171,7 +190,7 @@
|
||||
React.createElement("a", {href: this.makeId("#")}, " ¶")
|
||||
),
|
||||
React.createElement("div", {className: cx({comp: true, dashed: this.props.dashed}),
|
||||
style: this.props.style || {}},
|
||||
style: this.props.style},
|
||||
this.props.children
|
||||
)
|
||||
)
|
||||
@ -182,7 +201,7 @@
|
||||
var Section = React.createClass({displayName: "Section",
|
||||
render: function() {
|
||||
return (
|
||||
React.createElement("section", {id: this.props.name},
|
||||
React.createElement("section", {id: this.props.name, className: this.props.className},
|
||||
React.createElement("h1", null, this.props.name),
|
||||
this.props.children
|
||||
)
|
||||
@ -657,9 +676,15 @@
|
||||
)
|
||||
),
|
||||
|
||||
React.createElement(Section, {name: "SVG icons preview"},
|
||||
React.createElement(Section, {name: "SVG icons preview", className: "svg-icons"},
|
||||
React.createElement(Example, {summary: "10x10"},
|
||||
React.createElement(SVGIcons, {size: "10x10"})
|
||||
),
|
||||
React.createElement(Example, {summary: "14x14"},
|
||||
React.createElement(SVGIcons, {size: "14x14"})
|
||||
),
|
||||
React.createElement(Example, {summary: "16x16"},
|
||||
React.createElement(SVGIcons, null)
|
||||
React.createElement(SVGIcons, {size: "16x16"})
|
||||
)
|
||||
)
|
||||
|
||||
|
@ -124,35 +124,54 @@
|
||||
|
||||
var SVGIcon = React.createClass({
|
||||
render: function() {
|
||||
var sizeUnit = this.props.size.split("x")[0] + "px";
|
||||
return (
|
||||
<span className="svg-icon" style={{
|
||||
"background-image": "url(/content/shared/img/icons-16x16.svg#" + this.props.shapeId + ")"
|
||||
"backgroundImage": "url(../content/shared/img/icons-" + this.props.size +
|
||||
".svg#" + this.props.shapeId + ")",
|
||||
"backgroundSize": sizeUnit + " " + sizeUnit
|
||||
}} />
|
||||
);
|
||||
}
|
||||
});
|
||||
|
||||
var SVGIcons = React.createClass({
|
||||
shapes: [
|
||||
"audio", "audio-hover", "audio-active", "block",
|
||||
"block-red", "block-hover", "block-active", "contacts", "contacts-hover",
|
||||
"contacts-active", "copy", "checkmark", "google", "google-hover",
|
||||
"google-active", "history", "history-hover", "history-active", "leave",
|
||||
"precall", "precall-hover", "precall-active", "settings", "settings-hover",
|
||||
"settings-active", "tag", "tag-hover", "tag-active", "trash", "unblock",
|
||||
"unblock-hover", "unblock-active", "video", "video-hover", "video-active"
|
||||
],
|
||||
shapes: {
|
||||
"10x10": ["close", "close-active", "close-disabled", "dropdown",
|
||||
"dropdown-white", "dropdown-active", "dropdown-disabled", "expand",
|
||||
"expand-active", "expand-disabled", "minimize", "minimize-active",
|
||||
"minimize-disabled"
|
||||
],
|
||||
"14x14": ["audio", "audio-active", "audio-disabled", "facemute",
|
||||
"facemute-active", "facemute-disabled", "hangup", "hangup-active",
|
||||
"hangup-disabled", "incoming", "incoming-active", "incoming-disabled",
|
||||
"link", "link-active", "link-disabled", "mute", "mute-active",
|
||||
"mute-disabled", "pause", "pause-active", "pause-disabled", "video",
|
||||
"video-white", "video-active", "video-disabled", "volume", "volume-active",
|
||||
"volume-disabled"
|
||||
],
|
||||
"16x16": ["audio", "audio-hover", "audio-active", "block", "block-red",
|
||||
"block-hover", "block-active", "contacts", "contacts-hover", "contacts-active",
|
||||
"copy", "checkmark", "google", "google-hover", "google-active", "history",
|
||||
"history-hover", "history-active", "leave", "precall", "precall-hover",
|
||||
"precall-active", "screen-white", "screenmute-white", "settings",
|
||||
"settings-hover", "settings-active", "tag", "tag-hover", "tag-active",
|
||||
"trash", "unblock", "unblock-hover", "unblock-active", "video", "video-hover",
|
||||
"video-active", "tour"
|
||||
]
|
||||
},
|
||||
|
||||
render: function() {
|
||||
var icons = this.shapes[this.props.size].map(function(shapeId, i) {
|
||||
return (
|
||||
<li key={this.props.size + "-" + i} className="svg-icon-entry">
|
||||
<p><SVGIcon shapeId={shapeId} size={this.props.size} /></p>
|
||||
<p>{shapeId}</p>
|
||||
</li>
|
||||
);
|
||||
}, this);
|
||||
return (
|
||||
<div className="svg-icon-list">{
|
||||
this.shapes.map(function(shapeId, i) {
|
||||
return <div key={i} className="svg-icon-entry">
|
||||
<p><SVGIcon shapeId={shapeId} /></p>
|
||||
<p>{shapeId}</p>
|
||||
</div>;
|
||||
}, this)
|
||||
}</div>
|
||||
<ul className="svg-icon-list">{icons}</ul>
|
||||
);
|
||||
}
|
||||
});
|
||||
@ -171,7 +190,7 @@
|
||||
<a href={this.makeId("#")}> ¶</a>
|
||||
</h3>
|
||||
<div className={cx({comp: true, dashed: this.props.dashed})}
|
||||
style={this.props.style || {}}>
|
||||
style={this.props.style}>
|
||||
{this.props.children}
|
||||
</div>
|
||||
</div>
|
||||
@ -182,7 +201,7 @@
|
||||
var Section = React.createClass({
|
||||
render: function() {
|
||||
return (
|
||||
<section id={this.props.name}>
|
||||
<section id={this.props.name} className={this.props.className}>
|
||||
<h1>{this.props.name}</h1>
|
||||
{this.props.children}
|
||||
</section>
|
||||
@ -657,9 +676,15 @@
|
||||
</Example>
|
||||
</Section>
|
||||
|
||||
<Section name="SVG icons preview">
|
||||
<Section name="SVG icons preview" className="svg-icons">
|
||||
<Example summary="10x10">
|
||||
<SVGIcons size="10x10"/>
|
||||
</Example>
|
||||
<Example summary="14x14">
|
||||
<SVGIcons size="14x14" />
|
||||
</Example>
|
||||
<Example summary="16x16">
|
||||
<SVGIcons />
|
||||
<SVGIcons size="16x16"/>
|
||||
</Example>
|
||||
</Section>
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user