forked from charbelrami/grid-element
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathgrid-element.html
More file actions
141 lines (140 loc) · 4.15 KB
/
Copy pathgrid-element.html
File metadata and controls
141 lines (140 loc) · 4.15 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
<!--
@license
Copyright (c) 2015 Charbel Rami. All rights reserved.
MIT
-->
<link rel="import" href="../polymer/polymer.html">
<link rel="import" href="../iron-media-query/iron-media-query.html">
<link rel="import" href="grid-col.html">
<dom-module id="grid-element">
<template>
<style include="style-element"></style>
<style>
:host {
--grid-gutter: 10px;
display: -webkit-box;
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-webkit-flex-direction: column;
-ms-flex-direction: column;
flex-direction: column;
}
:host([gho]) {
padding-left: var(--grid-gutter-ho, --grid-gutter);
padding-right: var(--grid-gutter-ho, --grid-gutter);
}
:host([gvo]) {
padding-top: var(--grid-gutter-vo, --grid-gutter);
padding-bottom: var(--grid-gutter-vo, --grid-gutter);
}
:host([match]) {
-webkit-box-orient: horizontal;
-webkit-box-direction: normal;
-webkit-flex-direction: row;
-ms-flex-direction: row;
flex-direction: row;
-webkit-flex-wrap: nowrap;
-ms-flex-wrap: nowrap;
flex-wrap: nowrap;
}
:host([center][match]) {
-webkit-box-align: center;
-webkit-align-items: center;
-ms-flex-align: center;
-ms-grid-row-align: center;
align-items: center;
}
:host([start][match]) {
-webkit-box-align: start;
-webkit-align-items: flex-start;
-ms-flex-align: start;
-ms-grid-row-align: flex-start;
align-items: flex-start;
}
:host([end][match]) {
-webkit-box-align: end;
-webkit-align-items: flex-end;
-ms-flex-align: end;
-ms-grid-row-align: flex-end;
align-items: flex-end;
}
:host([ghi][match]) > ::content > grid-col {
margin-left: var(--grid-gutter-hi, --grid-gutter);
}
:host([ghi][match]) > ::content > .first {
margin-left: 0 !important;
}
:host([gvi]:not([match])) > ::content > grid-col {
margin-top: var(--grid-gutter-vi, --grid-gutter);
}
:host([gvi]:not([match])) > ::content > .first {
margin-top: 0 !important;
}
</style>
<iron-media-query query="{{mq}}" query-matches="{{match}}"></iron-media-query>
<content></content>
</template>
<script>
Polymer({
is: 'grid-element',
properties: {
/** all gutters. Equivalent to `gho gvo ghi gvi`*/
ga: {
type: String,
observer: '_allGutters'
},
/** gutter size */
gs: String,
/** outer horizontal gutter size */
gho: String,
/** outer vertical gutter size */
gvo: String,
/** inner horizontal gutter size */
ghi: String,
/** inner vertical gutter size */
gvi: String,
/** media query boolean */
match: {
type: Boolean,
notify: true,
reflectToAttribute: true,
observer: '_isMatch'
},
/**
* media query
*
* @default '(min-width: 48em)'
*/
mq: {
type: String,
value: '(min-width: 48em)'
}
},
ready: function() {
this.customStyle['--grid-gutter'] = this.gs;
this.customStyle['--grid-gutter-ho'] = this.gho;
this.customStyle['--grid-gutter-vo'] = this.gvo;
this.customStyle['--grid-gutter-hi'] = this.ghi;
this.customStyle['--grid-gutter-vi'] = this.gvi;
this.updateStyles();
Polymer.dom(this).firstElementChild.classList.add('first');
},
attached: function() {
this._isMatch();
},
_isMatch: function() {
this.match ? this.fire('mq-match', {match: true}) : this.fire('mq-match', {match: false});
},
_allGutters: function() {
this.toggleAttribute('gho');
this.toggleAttribute('gvo');
this.toggleAttribute('ghi');
this.toggleAttribute('gvi');
this.gs = this.ga;
}
});
</script>
</dom-module>