-
Notifications
You must be signed in to change notification settings - Fork 0
/
src_app_about_about_module_ts.js
292 lines (249 loc) · 17.4 KB
/
src_app_about_about_module_ts.js
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
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
"use strict";
(self["webpackChunkladybird"] = self["webpackChunkladybird"] || []).push([["src_app_about_about_module_ts"],{
/***/ 8822:
/*!***************************************!*\
!*** ./src/app/about/about.module.ts ***!
\***************************************/
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
__webpack_require__.r(__webpack_exports__);
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
/* harmony export */ AboutModule: () => (/* binding */ AboutModule)
/* harmony export */ });
/* harmony import */ var _angular_common__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! @angular/common */ 6575);
/* harmony import */ var _routing_about_routing__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./routing/about.routing */ 1343);
/* harmony import */ var _app_layout_layout_module__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! @app/layout/layout.module */ 4470);
/* harmony import */ var _app_shared_shared_module__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! @app/shared/shared.module */ 6208);
/* harmony import */ var _views_about_container_about_container_component__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./views/about-container/about-container.component */ 3015);
/* harmony import */ var _views_about_about_component__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ./views/about/about.component */ 180);
/* harmony import */ var _angular_core__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! @angular/core */ 1699);
// import { AboutComponent } from './views';
class AboutModule {
static #_ = this.ɵfac = function AboutModule_Factory(t) {
return new (t || AboutModule)();
};
static #_2 = this.ɵmod = /*@__PURE__*/_angular_core__WEBPACK_IMPORTED_MODULE_5__["ɵɵdefineNgModule"]({
type: AboutModule
});
static #_3 = this.ɵinj = /*@__PURE__*/_angular_core__WEBPACK_IMPORTED_MODULE_5__["ɵɵdefineInjector"]({
imports: [_routing_about_routing__WEBPACK_IMPORTED_MODULE_0__.AboutRoutingModule, _app_layout_layout_module__WEBPACK_IMPORTED_MODULE_1__.LayoutModule, _angular_common__WEBPACK_IMPORTED_MODULE_6__.CommonModule, _app_shared_shared_module__WEBPACK_IMPORTED_MODULE_2__.SharedModule]
});
}
(function () {
(typeof ngJitMode === "undefined" || ngJitMode) && _angular_core__WEBPACK_IMPORTED_MODULE_5__["ɵɵsetNgModuleScope"](AboutModule, {
declarations: [_views_about_about_component__WEBPACK_IMPORTED_MODULE_4__.AboutComponent, _views_about_container_about_container_component__WEBPACK_IMPORTED_MODULE_3__.AboutContainerComponent],
imports: [_routing_about_routing__WEBPACK_IMPORTED_MODULE_0__.AboutRoutingModule, _app_layout_layout_module__WEBPACK_IMPORTED_MODULE_1__.LayoutModule, _angular_common__WEBPACK_IMPORTED_MODULE_6__.CommonModule, _app_shared_shared_module__WEBPACK_IMPORTED_MODULE_2__.SharedModule]
});
})();
/***/ }),
/***/ 269:
/*!***************************************************!*\
!*** ./src/app/about/resolvers/about.resolver.ts ***!
\***************************************************/
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
__webpack_require__.r(__webpack_exports__);
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
/* harmony export */ aboutDataResolver: () => (/* binding */ aboutDataResolver)
/* harmony export */ });
/* harmony import */ var _angular_core__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! @angular/core */ 1699);
/* harmony import */ var _assets_json_organizers_json__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../../../assets/json/organizers.json */ 736);
function aboutDataResolver(route) {
const transferState = (0,_angular_core__WEBPACK_IMPORTED_MODULE_1__.inject)(_angular_core__WEBPACK_IMPORTED_MODULE_1__.TransferState);
const key = (0,_angular_core__WEBPACK_IMPORTED_MODULE_1__.makeStateKey)("about");
const storedData = transferState.get(key, null);
if (storedData) {
return storedData;
} else {
const response = new Promise(resolve => resolve(_assets_json_organizers_json__WEBPACK_IMPORTED_MODULE_0__));
return response.then(data => {
transferState.set(key, data);
return data;
});
}
}
/***/ }),
/***/ 1343:
/*!************************************************!*\
!*** ./src/app/about/routing/about.routing.ts ***!
\************************************************/
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
__webpack_require__.r(__webpack_exports__);
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
/* harmony export */ AboutRoutingModule: () => (/* binding */ AboutRoutingModule)
/* harmony export */ });
/* harmony import */ var _angular_common__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @angular/common */ 6575);
/* harmony import */ var _angular_router__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! @angular/router */ 7947);
/* harmony import */ var _views_about_about_component__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../views/about/about.component */ 180);
/* harmony import */ var _resolvers_about_resolver__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../resolvers/about.resolver */ 269);
/* harmony import */ var _views_about_container_about_container_component__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../views/about-container/about-container.component */ 3015);
/* harmony import */ var _angular_core__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @angular/core */ 1699);
const routes = [{
path: '',
component: _views_about_container_about_container_component__WEBPACK_IMPORTED_MODULE_2__.AboutContainerComponent,
children: [{
path: '',
pathMatch: 'full',
component: _views_about_about_component__WEBPACK_IMPORTED_MODULE_0__.AboutComponent,
resolve: {
about: _resolvers_about_resolver__WEBPACK_IMPORTED_MODULE_1__.aboutDataResolver
}
}]
}];
class AboutRoutingModule {
static #_ = this.ɵfac = function AboutRoutingModule_Factory(t) {
return new (t || AboutRoutingModule)();
};
static #_2 = this.ɵmod = /*@__PURE__*/_angular_core__WEBPACK_IMPORTED_MODULE_3__["ɵɵdefineNgModule"]({
type: AboutRoutingModule
});
static #_3 = this.ɵinj = /*@__PURE__*/_angular_core__WEBPACK_IMPORTED_MODULE_3__["ɵɵdefineInjector"]({
imports: [_angular_common__WEBPACK_IMPORTED_MODULE_4__.CommonModule, _angular_router__WEBPACK_IMPORTED_MODULE_5__.RouterModule.forChild(routes), _angular_router__WEBPACK_IMPORTED_MODULE_5__.RouterModule]
});
}
(function () {
(typeof ngJitMode === "undefined" || ngJitMode) && _angular_core__WEBPACK_IMPORTED_MODULE_3__["ɵɵsetNgModuleScope"](AboutRoutingModule, {
imports: [_angular_common__WEBPACK_IMPORTED_MODULE_4__.CommonModule, _angular_router__WEBPACK_IMPORTED_MODULE_5__.RouterModule],
exports: [_angular_router__WEBPACK_IMPORTED_MODULE_5__.RouterModule]
});
})();
/***/ }),
/***/ 3015:
/*!**************************************************************************!*\
!*** ./src/app/about/views/about-container/about-container.component.ts ***!
\**************************************************************************/
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
__webpack_require__.r(__webpack_exports__);
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
/* harmony export */ AboutContainerComponent: () => (/* binding */ AboutContainerComponent)
/* harmony export */ });
/* harmony import */ var _angular_core__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @angular/core */ 1699);
/* harmony import */ var _angular_router__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! @angular/router */ 7947);
class AboutContainerComponent {
constructor() {}
static #_ = this.ɵfac = function AboutContainerComponent_Factory(t) {
return new (t || AboutContainerComponent)();
};
static #_2 = this.ɵcmp = /*@__PURE__*/_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵdefineComponent"]({
type: AboutContainerComponent,
selectors: [["app-about-container"]],
decls: 1,
vars: 0,
template: function AboutContainerComponent_Template(rf, ctx) {
if (rf & 1) {
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelement"](0, "router-outlet");
}
},
dependencies: [_angular_router__WEBPACK_IMPORTED_MODULE_1__.RouterOutlet],
encapsulation: 2
});
}
/***/ }),
/***/ 180:
/*!******************************************************!*\
!*** ./src/app/about/views/about/about.component.ts ***!
\******************************************************/
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
__webpack_require__.r(__webpack_exports__);
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
/* harmony export */ AboutComponent: () => (/* binding */ AboutComponent)
/* harmony export */ });
/* harmony import */ var _home_runner_work_WebSite_WebSite_browser_node_modules_babel_runtime_helpers_esm_asyncToGenerator_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./node_modules/@babel/runtime/helpers/esm/asyncToGenerator.js */ 1670);
/* harmony import */ var _angular_core__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! @angular/core */ 1699);
/* harmony import */ var _angular_router__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! @angular/router */ 7947);
/* harmony import */ var _layout_components_persona_persona_component__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../../../layout/components/persona/persona.component */ 4489);
/* harmony import */ var _layout_components_underlined_heading_underlined_heading_component__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../../../layout/components/underlined-heading/underlined-heading.component */ 1976);
/* harmony import */ var _layout_components_shell_shell_component__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../../../layout/components/shell/shell.component */ 1279);
/* harmony import */ var _layout_components_header_header_component__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ../../../layout/components/header/header.component */ 8246);
/* harmony import */ var _layout_components_footer_footer_component__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ../../../layout/components/footer/footer.component */ 7114);
/* harmony import */ var _angular_common__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(/*! @angular/common */ 6575);
function AboutComponent_ng_container_35_Template(rf, ctx) {
if (rf & 1) {
_angular_core__WEBPACK_IMPORTED_MODULE_6__["ɵɵelementContainerStart"](0);
_angular_core__WEBPACK_IMPORTED_MODULE_6__["ɵɵelementStart"](1, "li");
_angular_core__WEBPACK_IMPORTED_MODULE_6__["ɵɵelement"](2, "app-persona", 10);
_angular_core__WEBPACK_IMPORTED_MODULE_6__["ɵɵelementEnd"]();
_angular_core__WEBPACK_IMPORTED_MODULE_6__["ɵɵelementContainerEnd"]();
}
if (rf & 2) {
const organizer_r1 = ctx.$implicit;
_angular_core__WEBPACK_IMPORTED_MODULE_6__["ɵɵadvance"](2);
_angular_core__WEBPACK_IMPORTED_MODULE_6__["ɵɵproperty"]("persona", organizer_r1);
}
}
class AboutComponent {
constructor(activatedRoute) {
this.activatedRoute = activatedRoute;
this.organizers = [];
}
ngOnInit() {
var _this = this;
return (0,_home_runner_work_WebSite_WebSite_browser_node_modules_babel_runtime_helpers_esm_asyncToGenerator_js__WEBPACK_IMPORTED_MODULE_0__["default"])(function* () {
_this.organizers = yield _this.activatedRoute.snapshot.data["about"];
})();
}
static #_ = this.ɵfac = function AboutComponent_Factory(t) {
return new (t || AboutComponent)(_angular_core__WEBPACK_IMPORTED_MODULE_6__["ɵɵdirectiveInject"](_angular_router__WEBPACK_IMPORTED_MODULE_7__.ActivatedRoute));
};
static #_2 = this.ɵcmp = /*@__PURE__*/_angular_core__WEBPACK_IMPORTED_MODULE_6__["ɵɵdefineComponent"]({
type: AboutComponent,
selectors: [["app-about"]],
decls: 37,
vars: 2,
consts: [["pageTitle", "About"], [1, "max-w-640", "mx-auto"], [1, "prose", "mb-60"], [1, "mb-16"], ["alignment", "center", "text", "Organizers"], [1, "prose", "mb-48"], ["href", "#", 1, "a", "text-orange", 3, "routerLink"], [1, "max-w-1024", "mx-auto", "mb-60"], [1, "grid", "grid-cols-1", "md:grid-cols-3", "gap-x-32", "gap-y-60"], [4, "ngFor", "ngForOf"], [3, "persona"]],
template: function AboutComponent_Template(rf, ctx) {
if (rf & 1) {
_angular_core__WEBPACK_IMPORTED_MODULE_6__["ɵɵelement"](0, "router-outlet")(1, "app-header");
_angular_core__WEBPACK_IMPORTED_MODULE_6__["ɵɵelementStart"](2, "app-shell", 0)(3, "div", 1)(4, "div", 2)(5, "p");
_angular_core__WEBPACK_IMPORTED_MODULE_6__["ɵɵtext"](6, " Iowa Code Camp is a free, one-day, in-person event for software developers interested in industry-specific topics, such as front-end JavaScript frameworks, IT cloud infrastructure, database architecture, and working with engineering teams. ");
_angular_core__WEBPACK_IMPORTED_MODULE_6__["ɵɵelementEnd"]();
_angular_core__WEBPACK_IMPORTED_MODULE_6__["ɵɵelementStart"](7, "p");
_angular_core__WEBPACK_IMPORTED_MODULE_6__["ɵɵtext"](8, " Iowa Code Camp has been hosting software development conferences since 2008. Attendance at events has grown steadily and now averages 240 attendees at our Des Moines area events. ");
_angular_core__WEBPACK_IMPORTED_MODULE_6__["ɵɵelementEnd"]();
_angular_core__WEBPACK_IMPORTED_MODULE_6__["ɵɵelementStart"](9, "p")(10, "strong");
_angular_core__WEBPACK_IMPORTED_MODULE_6__["ɵɵtext"](11, "Core values:");
_angular_core__WEBPACK_IMPORTED_MODULE_6__["ɵɵelementEnd"]()();
_angular_core__WEBPACK_IMPORTED_MODULE_6__["ɵɵelementStart"](12, "ul")(13, "li");
_angular_core__WEBPACK_IMPORTED_MODULE_6__["ɵɵtext"](14, "By developers for developers");
_angular_core__WEBPACK_IMPORTED_MODULE_6__["ɵɵelementEnd"]();
_angular_core__WEBPACK_IMPORTED_MODULE_6__["ɵɵelementStart"](15, "li");
_angular_core__WEBPACK_IMPORTED_MODULE_6__["ɵɵtext"](16, "Community driven");
_angular_core__WEBPACK_IMPORTED_MODULE_6__["ɵɵelementEnd"]();
_angular_core__WEBPACK_IMPORTED_MODULE_6__["ɵɵelementStart"](17, "li");
_angular_core__WEBPACK_IMPORTED_MODULE_6__["ɵɵtext"](18, "No cost (for attendees)");
_angular_core__WEBPACK_IMPORTED_MODULE_6__["ɵɵelementEnd"]();
_angular_core__WEBPACK_IMPORTED_MODULE_6__["ɵɵelementStart"](19, "li");
_angular_core__WEBPACK_IMPORTED_MODULE_6__["ɵɵtext"](20, "All about the code");
_angular_core__WEBPACK_IMPORTED_MODULE_6__["ɵɵelementEnd"]();
_angular_core__WEBPACK_IMPORTED_MODULE_6__["ɵɵelementStart"](21, "li");
_angular_core__WEBPACK_IMPORTED_MODULE_6__["ɵɵtext"](22, "Never during work hours");
_angular_core__WEBPACK_IMPORTED_MODULE_6__["ɵɵelementEnd"]();
_angular_core__WEBPACK_IMPORTED_MODULE_6__["ɵɵelementStart"](23, "li");
_angular_core__WEBPACK_IMPORTED_MODULE_6__["ɵɵtext"](24, "High quality");
_angular_core__WEBPACK_IMPORTED_MODULE_6__["ɵɵelementEnd"]()()();
_angular_core__WEBPACK_IMPORTED_MODULE_6__["ɵɵelementStart"](25, "div", 3);
_angular_core__WEBPACK_IMPORTED_MODULE_6__["ɵɵelement"](26, "app-underlined-heading", 4);
_angular_core__WEBPACK_IMPORTED_MODULE_6__["ɵɵelementStart"](27, "div", 5)(28, "p");
_angular_core__WEBPACK_IMPORTED_MODULE_6__["ɵɵtext"](29, " Iowa Code Camp is a community-driven event. We are always looking for extra help with setting up and running the event, reaching out to sponsors, and finding speakers. If you're interested in volunteering for Iowa Code Camp, please ");
_angular_core__WEBPACK_IMPORTED_MODULE_6__["ɵɵelementStart"](30, "a", 6);
_angular_core__WEBPACK_IMPORTED_MODULE_6__["ɵɵtext"](31, "contact us");
_angular_core__WEBPACK_IMPORTED_MODULE_6__["ɵɵelementEnd"]();
_angular_core__WEBPACK_IMPORTED_MODULE_6__["ɵɵtext"](32, "! ");
_angular_core__WEBPACK_IMPORTED_MODULE_6__["ɵɵelementEnd"]()()()();
_angular_core__WEBPACK_IMPORTED_MODULE_6__["ɵɵelementStart"](33, "div", 7)(34, "ul", 8);
_angular_core__WEBPACK_IMPORTED_MODULE_6__["ɵɵtemplate"](35, AboutComponent_ng_container_35_Template, 3, 1, "ng-container", 9);
_angular_core__WEBPACK_IMPORTED_MODULE_6__["ɵɵelementEnd"]()()();
_angular_core__WEBPACK_IMPORTED_MODULE_6__["ɵɵelement"](36, "app-footer");
}
if (rf & 2) {
_angular_core__WEBPACK_IMPORTED_MODULE_6__["ɵɵadvance"](30);
_angular_core__WEBPACK_IMPORTED_MODULE_6__["ɵɵproperty"]("routerLink", "/contact");
_angular_core__WEBPACK_IMPORTED_MODULE_6__["ɵɵadvance"](5);
_angular_core__WEBPACK_IMPORTED_MODULE_6__["ɵɵproperty"]("ngForOf", ctx.organizers);
}
},
dependencies: [_angular_router__WEBPACK_IMPORTED_MODULE_7__.RouterOutlet, _angular_router__WEBPACK_IMPORTED_MODULE_7__.RouterLink, _layout_components_persona_persona_component__WEBPACK_IMPORTED_MODULE_1__.PersonaComponent, _layout_components_underlined_heading_underlined_heading_component__WEBPACK_IMPORTED_MODULE_2__.UnderlinedHeadingComponent, _layout_components_shell_shell_component__WEBPACK_IMPORTED_MODULE_3__.ShellComponent, _layout_components_header_header_component__WEBPACK_IMPORTED_MODULE_4__.HeaderComponent, _layout_components_footer_footer_component__WEBPACK_IMPORTED_MODULE_5__.FooterComponent, _angular_common__WEBPACK_IMPORTED_MODULE_8__.NgForOf],
encapsulation: 2
});
}
/***/ })
}]);
//# sourceMappingURL=src_app_about_about_module_ts.js.map