SlideShare ist ein Scribd-Unternehmen logo
1 von 46
1
A HEADED GOAL FOR
SSE AIRTRICITY LEAGUE
WITH HEADLESS DRUPAL!
Our Headless Journey
Daniel Walsh
Solution Architect
Archie Vasyatkin
Drupal Developer
Ross McHugh
Angular Developer
ABOUT LEAGUE OF IRELAND
PROJECT BACKGROUND
Promote, Enhance, Attendances, Interest
Digital Vision & Roadmap
• FAI strategic implementation of a Football
Management System (FMS) built by the
German FA
• Roadmap to onboard SSE Airtricity League,
Continental Women’s National League and
Third Level Football and develop websites
• Roadmap to create mobile apps in the future
Key Challenges
•Aggressive Deadline
•Parallel Development
•Expertise Challenge
•Content Challenge
•Logistics Challenge
WHAT IS HEADLESS?
Why Headless for LOI?
•Multiple data sources
•Unique frontend
•Responsiveness and Real Time
•Scalability for traffic peaks
•Roadmap & Reusability
Digital Roadmap
Architecture
Infrastructure
Football Management
System
- Competitions
- Clubs
- Teams
- Players
- Officials
- Matches
- Statistics
- Tables
Multiple data sources
Content Management
System
- News
- Videos
- Pages
- Instagram
- Match Previews
- Match Reports
FMS Web Services - Analysis
• data.service::getAmateurTable
• data.service::getAmateurTables
• data.service::getClubFixtures
• data.service::getClubTeamsByClubId1
• data.service::getClubsBySearch1
• data.service::getCompetitionsByTeam
• data.service::getFairPlayTable
• data.service::getGroupsAndRoundsOfTournament1
• data.service::getMasterData
• data.service::getMatchById1
• data.service::getMatchDaysAndMatchesByMatchday2
• data.service::getMatchReportAndTickerInfos2
• data.service::getMatchesForLeaguesAll
• data.service::getMatchesForRoundOrGroup1
• data.service::getPlayerProfile
• data.service::getPreviouseXAndNextYMatchesOfTeam1
• data.service::getScorerTable
• data.service::getSubscribedCompetitions
• data.service::getTeamFixtures1
• data.service::getTeamProfileBase
• data.service::getTeamSquadForSeason
• data.service::getTicker
Interface Design
“Potentially” set UI designers &
front-end developers free!
AngularJS - What & Why
A JavaScript MVC Framework used to
create single page, data driven applications.
● Multiple Data Sources
● Live Match Centre
● Mobile App
Some AngularJS Features
● MVC
● Routing
● Services
● Templates - <h1>{{$scope.pageTitle}}</h1>
● Data-binding
● Directives
● Filters
● Dependency Injection
● Modular
AngularUI Bootstrap
● Bootstrap components written in pure AngularJS
by the AngularUI Team.
<html ng-app="loi">
<head>
...
<script src="//cdn.com/../angular.js"></script>
<script src="/lib/../angular-route.js"></script>
</head>
<body ng-controller="mainController">
<header ng-include="'/partials/header.html'"></header>
<input ng-model="yourName" />
<h1>{{yourName}}</h1>
</body>
</html>
Sample Code
GETTING STARTED...
var loi = angular.module('loi', ['ngRoute']);
loi.controller("compCtr", function($scope,
$routeParams){
$scope.compName = $routeParams.seoName;
$scope.compId = $routeParams.compId;
});
. . . .
<span>{{$scope.compId}}</span>
Sample Code
GETTING STARTED...
loi.config(function($routeProvider, $locationProvider) {
$routeProvider
.when('/', {
templateUrl: '/view/home.html',
controller: 'homeController'
})
.when('/competition/:seoName/id-:compId', {
templateUrl: 'views/comp.html',
controller: 'compCtrl'
})
.otherwise({
redirectTo: '/'
});
}]);
Sample Code
ROUTING...
<div ng-repeat="item in items">
<img ng-if="item.imgUrl" src="{{item.imgUrl}}"
alt="{{item.title}}">
</div>
<matches-table matches-data="compCtrl.matches"
fixtures="true" results="true"
full-table="true"></matches-table>
Sample Code
DIRECTIVES
Common AngularJS Gotchas...
● CORS - enable-cors.org
● Dependency Injection & code minification
app.controller("MyCtrl", function($scope){...
app.controller("MyCtrl", ['$scope', function($scope){...
● Pretty URLs
http://example.com/#/about
Common AngularJS Gotchas
● Using jQuery?
● SEO & Social Sharing
prerender.io
github.com/prerender/prerender
● Aggressive browser caching - deployments
example.com/assets/template.html?1030201017
Headless Drupal
Standard Content Management Capabilities
News, Videos, Pages, Instagram, Match Previews & Reports
● CMS Editing
● ACL, Users & Authentication
Why Drupal for Service Driven
Applications
Benefits
● One of the best solutions for content management on
market.
● All required features coming out of the box.
● Doesn’t require any programming skills for simple
sites.
● Easily adjustable for multiple purposes.
● Can be easily converted into full site.
● Built-in cache.
How to configure Headless
Drupal
● Create needed content types.
● Enable core “RESTful Web Services” module.
● Create view and view display of type “REST Export”.
● Create needed view exposed filters.
● Configure permissions.
CMS REST Services
● Retrieving Data
● Retrieving Aggregated Data
● Content create/update/delete
1. Gets rows properly if rendering view programmatically.
$view->execute();
foreach ($view->result as $row_index => $row) {
$view->row_index = $row_index;
$rows[] = $view->rowPlugin->render($row);
}
2. Returns JSON formatted response
$content['relatedNews'] = loi_page_controllers_get_view(
'news',
'rest_export_2',
[implode('+', $related_news_ids)],
3,
0);
return new JsonResponse($content);
3. Sets redirect back to angular on node submission.
if (isset($form['#back_to_angular_url'])) {
$response = new TrustedRedirectResponse($form['#back_to_angular_url']);
$form_state->setResponse($response);
}
Sample Code
Common Headless
Drupal Gotchas
● Use views cache.
● Filter (whitelist) any parameters you accepting with
GET requests.
● Properly configure access to site sections.
● Aggregate results together where possible.
● Unify where possible.
● Create documentations.
● Use front-end links for linking CMS and Front-end.
Useful links
● https://www.drupal.org/docs/8/core/modules/rest/over
view
THE END RESULT
32
HOMEPAGE
33
COMPETITIONS
34
COMPETITIONS
35
LIVE MATCH CENTRE
36
COMPETITIONS
37
LIVE MATCH CENTRE
38
LIVE MATCH CENTRE
39
NEWS
40
VIDEO
SITE ADMINISTRATION
42
ADMIN
43
ADMIN
Results
• Site went live on schedule ahead of first game of
season
• In the 6 months since the site launched, there have
been over 2 million unique pageviews and
consistently strong engagement with content
across premier and first division leagues.
•High traffic peaks during games for live scores
Headless Architecture Learnings
• Headless for the right scenario
• Same level of effort, different problems!
•Relationships between foreign entities an
architectural challenge
• Cache is key
46
ANY QUESTIONS?

Weitere ähnliche Inhalte

Was ist angesagt?

Sql Saturday Jacksonville- Power BI Report Server Enterprise Architecture, to...
Sql Saturday Jacksonville- Power BI Report Server Enterprise Architecture, to...Sql Saturday Jacksonville- Power BI Report Server Enterprise Architecture, to...
Sql Saturday Jacksonville- Power BI Report Server Enterprise Architecture, to...Vishal Pawar
 
Platform as a Service for Your App Development
Platform as a Service for Your App DevelopmentPlatform as a Service for Your App Development
Platform as a Service for Your App DevelopmentPuja Pramudya
 
20071204 Arc Ready Office As A Platform
20071204 Arc Ready Office As A Platform20071204 Arc Ready Office As A Platform
20071204 Arc Ready Office As A PlatformDavid Chou
 
Evolución de MS Dynamics AX 2012 R3 a Dynamics 365 Finance and Operations
Evolución de MS Dynamics AX 2012 R3 a Dynamics 365 Finance and OperationsEvolución de MS Dynamics AX 2012 R3 a Dynamics 365 Finance and Operations
Evolución de MS Dynamics AX 2012 R3 a Dynamics 365 Finance and OperationsJuan Fabian
 
SharePoint architecture-site
SharePoint architecture-siteSharePoint architecture-site
SharePoint architecture-siteKunzhong Gao
 
Extending Power BI with your own custom visual
Extending Power BI with your own custom visualExtending Power BI with your own custom visual
Extending Power BI with your own custom visualJan Pieter Posthuma
 
Developing with SharePoint Framework (SPFx) on-premises
Developing with SharePoint Framework (SPFx) on-premisesDeveloping with SharePoint Framework (SPFx) on-premises
Developing with SharePoint Framework (SPFx) on-premisesDragan Panjkov
 
Arquitectura de Solución en Azure: Sitio Simple de Marketing
Arquitectura de Solución en Azure: Sitio Simple de MarketingArquitectura de Solución en Azure: Sitio Simple de Marketing
Arquitectura de Solución en Azure: Sitio Simple de MarketingFernando Mejía
 
Tuga IT - Power BI for Developers
Tuga IT - Power BI for DevelopersTuga IT - Power BI for Developers
Tuga IT - Power BI for DevelopersRui Romano
 
WSO2 Use Case - API Facade Pattern
WSO2 Use Case - API  Facade PatternWSO2 Use Case - API  Facade Pattern
WSO2 Use Case - API Facade PatternWSO2
 
RScarborough Resume 2014 General
RScarborough Resume 2014 GeneralRScarborough Resume 2014 General
RScarborough Resume 2014 GeneralRandy Scarborough
 
Build intelligent solutions using ms azure
Build intelligent solutions using ms azureBuild intelligent solutions using ms azure
Build intelligent solutions using ms azureMostafa
 
Products for SAP NetWeaver
Products for SAP NetWeaverProducts for SAP NetWeaver
Products for SAP NetWeaverChristoph Schulz
 
MIUG 21-09-2017 Azure iPaaS
MIUG 21-09-2017 Azure iPaaSMIUG 21-09-2017 Azure iPaaS
MIUG 21-09-2017 Azure iPaaSEmiel Kool
 
South Florida SQL Saturday - Power BI Report Server Enterprise Architecture, ...
South Florida SQL Saturday - Power BI Report Server Enterprise Architecture, ...South Florida SQL Saturday - Power BI Report Server Enterprise Architecture, ...
South Florida SQL Saturday - Power BI Report Server Enterprise Architecture, ...Vishal Pawar
 
ADF in Action - getting (re)acquainted with Oracle’s premier application deve...
ADF in Action - getting (re)acquainted with Oracle’s premier application deve...ADF in Action - getting (re)acquainted with Oracle’s premier application deve...
ADF in Action - getting (re)acquainted with Oracle’s premier application deve...Lucas Jellema
 
Shift Remote FRONTEND: Optimizing Content Management with the Headless CMS - ...
Shift Remote FRONTEND: Optimizing Content Management with the Headless CMS - ...Shift Remote FRONTEND: Optimizing Content Management with the Headless CMS - ...
Shift Remote FRONTEND: Optimizing Content Management with the Headless CMS - ...Shift Conference
 
PUGML06 - Power BI Tips & Tricks from the Trenches
PUGML06 - Power BI Tips & Tricks from the TrenchesPUGML06 - Power BI Tips & Tricks from the Trenches
PUGML06 - Power BI Tips & Tricks from the TrenchesRui Romano
 
Syncfusion Dashboard Platform SDK
Syncfusion Dashboard  Platform SDKSyncfusion Dashboard  Platform SDK
Syncfusion Dashboard Platform SDKDavis Jebaraj
 

Was ist angesagt? (20)

Sql Saturday Jacksonville- Power BI Report Server Enterprise Architecture, to...
Sql Saturday Jacksonville- Power BI Report Server Enterprise Architecture, to...Sql Saturday Jacksonville- Power BI Report Server Enterprise Architecture, to...
Sql Saturday Jacksonville- Power BI Report Server Enterprise Architecture, to...
 
Platform as a Service for Your App Development
Platform as a Service for Your App DevelopmentPlatform as a Service for Your App Development
Platform as a Service for Your App Development
 
20071204 Arc Ready Office As A Platform
20071204 Arc Ready Office As A Platform20071204 Arc Ready Office As A Platform
20071204 Arc Ready Office As A Platform
 
Evolución de MS Dynamics AX 2012 R3 a Dynamics 365 Finance and Operations
Evolución de MS Dynamics AX 2012 R3 a Dynamics 365 Finance and OperationsEvolución de MS Dynamics AX 2012 R3 a Dynamics 365 Finance and Operations
Evolución de MS Dynamics AX 2012 R3 a Dynamics 365 Finance and Operations
 
SharePoint architecture-site
SharePoint architecture-siteSharePoint architecture-site
SharePoint architecture-site
 
Extending Power BI with your own custom visual
Extending Power BI with your own custom visualExtending Power BI with your own custom visual
Extending Power BI with your own custom visual
 
Developing with SharePoint Framework (SPFx) on-premises
Developing with SharePoint Framework (SPFx) on-premisesDeveloping with SharePoint Framework (SPFx) on-premises
Developing with SharePoint Framework (SPFx) on-premises
 
Arquitectura de Solución en Azure: Sitio Simple de Marketing
Arquitectura de Solución en Azure: Sitio Simple de MarketingArquitectura de Solución en Azure: Sitio Simple de Marketing
Arquitectura de Solución en Azure: Sitio Simple de Marketing
 
Tuga IT - Power BI for Developers
Tuga IT - Power BI for DevelopersTuga IT - Power BI for Developers
Tuga IT - Power BI for Developers
 
WSO2 Use Case - API Facade Pattern
WSO2 Use Case - API  Facade PatternWSO2 Use Case - API  Facade Pattern
WSO2 Use Case - API Facade Pattern
 
RScarborough Resume 2014 General
RScarborough Resume 2014 GeneralRScarborough Resume 2014 General
RScarborough Resume 2014 General
 
Build intelligent solutions using ms azure
Build intelligent solutions using ms azureBuild intelligent solutions using ms azure
Build intelligent solutions using ms azure
 
Power BI in Office 365
Power BI in Office 365Power BI in Office 365
Power BI in Office 365
 
Products for SAP NetWeaver
Products for SAP NetWeaverProducts for SAP NetWeaver
Products for SAP NetWeaver
 
MIUG 21-09-2017 Azure iPaaS
MIUG 21-09-2017 Azure iPaaSMIUG 21-09-2017 Azure iPaaS
MIUG 21-09-2017 Azure iPaaS
 
South Florida SQL Saturday - Power BI Report Server Enterprise Architecture, ...
South Florida SQL Saturday - Power BI Report Server Enterprise Architecture, ...South Florida SQL Saturday - Power BI Report Server Enterprise Architecture, ...
South Florida SQL Saturday - Power BI Report Server Enterprise Architecture, ...
 
ADF in Action - getting (re)acquainted with Oracle’s premier application deve...
ADF in Action - getting (re)acquainted with Oracle’s premier application deve...ADF in Action - getting (re)acquainted with Oracle’s premier application deve...
ADF in Action - getting (re)acquainted with Oracle’s premier application deve...
 
Shift Remote FRONTEND: Optimizing Content Management with the Headless CMS - ...
Shift Remote FRONTEND: Optimizing Content Management with the Headless CMS - ...Shift Remote FRONTEND: Optimizing Content Management with the Headless CMS - ...
Shift Remote FRONTEND: Optimizing Content Management with the Headless CMS - ...
 
PUGML06 - Power BI Tips & Tricks from the Trenches
PUGML06 - Power BI Tips & Tricks from the TrenchesPUGML06 - Power BI Tips & Tricks from the Trenches
PUGML06 - Power BI Tips & Tricks from the Trenches
 
Syncfusion Dashboard Platform SDK
Syncfusion Dashboard  Platform SDKSyncfusion Dashboard  Platform SDK
Syncfusion Dashboard Platform SDK
 

Ähnlich wie 'A Headed goal for SSE Airtricity League with Headless Drupal' - Monsoon Consulting

Marlabs Capability Overview: Web Development, Usability Engineering Services
Marlabs Capability Overview: Web Development, Usability Engineering ServicesMarlabs Capability Overview: Web Development, Usability Engineering Services
Marlabs Capability Overview: Web Development, Usability Engineering ServicesMarlabs
 
Entrepreneurship Tips With HTML5 & App Engine Startup Weekend (June 2012)
Entrepreneurship Tips With HTML5 & App Engine Startup Weekend (June 2012)Entrepreneurship Tips With HTML5 & App Engine Startup Weekend (June 2012)
Entrepreneurship Tips With HTML5 & App Engine Startup Weekend (June 2012)Ido Green
 
(Updated) SharePoint & jQuery Guide
(Updated) SharePoint & jQuery Guide(Updated) SharePoint & jQuery Guide
(Updated) SharePoint & jQuery GuideMark Rackley
 
InfoSphere BigInsights - Analytics power for Hadoop - field experience
InfoSphere BigInsights - Analytics power for Hadoop - field experienceInfoSphere BigInsights - Analytics power for Hadoop - field experience
InfoSphere BigInsights - Analytics power for Hadoop - field experienceWilfried Hoge
 
Running Data Platforms Like Products
Running Data Platforms Like ProductsRunning Data Platforms Like Products
Running Data Platforms Like ProductsVMware Tanzu
 
Dave_Charlton_TTC_Mar2016v2
Dave_Charlton_TTC_Mar2016v2Dave_Charlton_TTC_Mar2016v2
Dave_Charlton_TTC_Mar2016v2David Charlton
 
Why and How SmartNews uses SaaS?
Why and How SmartNews uses SaaS?Why and How SmartNews uses SaaS?
Why and How SmartNews uses SaaS?Takumi Sakamoto
 
Digital Group Corporate Brochure
Digital Group Corporate BrochureDigital Group Corporate Brochure
Digital Group Corporate BrochureMustafabalsara
 
Best oracle adf online training institute india
Best oracle adf online training institute indiaBest oracle adf online training institute india
Best oracle adf online training institute indiamagnifics
 
Best oracle adf online training institute india
Best oracle adf online training institute indiaBest oracle adf online training institute india
Best oracle adf online training institute indiamagnificsmile
 
Best oracle adf online training institute india
Best oracle adf online training institute indiaBest oracle adf online training institute india
Best oracle adf online training institute indiamagnificbsr
 
Best oracle adf online training institute india
Best oracle adf online training institute indiaBest oracle adf online training institute india
Best oracle adf online training institute indiamagnificsmily
 
Best oracle adf online training institute india
Best oracle adf online training institute indiaBest oracle adf online training institute india
Best oracle adf online training institute indiamagnificsmile
 
Best oracle adf online training institute india
Best oracle adf online training institute indiaBest oracle adf online training institute india
Best oracle adf online training institute indiababymagnific
 
Hector Hungria P - CV2016 Last Updated Long
Hector Hungria P - CV2016 Last Updated LongHector Hungria P - CV2016 Last Updated Long
Hector Hungria P - CV2016 Last Updated LongHector Hungria
 

Ähnlich wie 'A Headed goal for SSE Airtricity League with Headless Drupal' - Monsoon Consulting (20)

Marlabs Capability Overview: Web Development, Usability Engineering Services
Marlabs Capability Overview: Web Development, Usability Engineering ServicesMarlabs Capability Overview: Web Development, Usability Engineering Services
Marlabs Capability Overview: Web Development, Usability Engineering Services
 
Entrepreneurship Tips With HTML5 & App Engine Startup Weekend (June 2012)
Entrepreneurship Tips With HTML5 & App Engine Startup Weekend (June 2012)Entrepreneurship Tips With HTML5 & App Engine Startup Weekend (June 2012)
Entrepreneurship Tips With HTML5 & App Engine Startup Weekend (June 2012)
 
KhajavaliShaik
KhajavaliShaikKhajavaliShaik
KhajavaliShaik
 
(Updated) SharePoint & jQuery Guide
(Updated) SharePoint & jQuery Guide(Updated) SharePoint & jQuery Guide
(Updated) SharePoint & jQuery Guide
 
Mstr meetup
Mstr meetupMstr meetup
Mstr meetup
 
InfoSphere BigInsights - Analytics power for Hadoop - field experience
InfoSphere BigInsights - Analytics power for Hadoop - field experienceInfoSphere BigInsights - Analytics power for Hadoop - field experience
InfoSphere BigInsights - Analytics power for Hadoop - field experience
 
Running Data Platforms Like Products
Running Data Platforms Like ProductsRunning Data Platforms Like Products
Running Data Platforms Like Products
 
AhmedWasfi2015
AhmedWasfi2015AhmedWasfi2015
AhmedWasfi2015
 
FAISAL SULEMAN_CV
FAISAL SULEMAN_CVFAISAL SULEMAN_CV
FAISAL SULEMAN_CV
 
Dave_Charlton_TTC_Mar2016v2
Dave_Charlton_TTC_Mar2016v2Dave_Charlton_TTC_Mar2016v2
Dave_Charlton_TTC_Mar2016v2
 
Why and How SmartNews uses SaaS?
Why and How SmartNews uses SaaS?Why and How SmartNews uses SaaS?
Why and How SmartNews uses SaaS?
 
Digital Group Corporate Brochure
Digital Group Corporate BrochureDigital Group Corporate Brochure
Digital Group Corporate Brochure
 
Best oracle adf online training institute india
Best oracle adf online training institute indiaBest oracle adf online training institute india
Best oracle adf online training institute india
 
Best oracle adf online training institute india
Best oracle adf online training institute indiaBest oracle adf online training institute india
Best oracle adf online training institute india
 
Best oracle adf online training institute india
Best oracle adf online training institute indiaBest oracle adf online training institute india
Best oracle adf online training institute india
 
Best oracle adf online training institute india
Best oracle adf online training institute indiaBest oracle adf online training institute india
Best oracle adf online training institute india
 
Best oracle adf online training institute india
Best oracle adf online training institute indiaBest oracle adf online training institute india
Best oracle adf online training institute india
 
Best oracle adf online training institute india
Best oracle adf online training institute indiaBest oracle adf online training institute india
Best oracle adf online training institute india
 
Hector Hungria P - CV2016 Last Updated Long
Hector Hungria P - CV2016 Last Updated LongHector Hungria P - CV2016 Last Updated Long
Hector Hungria P - CV2016 Last Updated Long
 
DS_Sreeram_7
DS_Sreeram_7DS_Sreeram_7
DS_Sreeram_7
 

Kürzlich hochgeladen

Horngren’s Cost Accounting A Managerial Emphasis, Canadian 9th edition soluti...
Horngren’s Cost Accounting A Managerial Emphasis, Canadian 9th edition soluti...Horngren’s Cost Accounting A Managerial Emphasis, Canadian 9th edition soluti...
Horngren’s Cost Accounting A Managerial Emphasis, Canadian 9th edition soluti...ssuserf63bd7
 
The Abortion pills for sale in Qatar@Doha [+27737758557] []Deira Dubai Kuwait
The Abortion pills for sale in Qatar@Doha [+27737758557] []Deira Dubai KuwaitThe Abortion pills for sale in Qatar@Doha [+27737758557] []Deira Dubai Kuwait
The Abortion pills for sale in Qatar@Doha [+27737758557] []Deira Dubai Kuwaitdaisycvs
 
Mifepristone Available in Muscat +918761049707^^ €€ Buy Abortion Pills in Oman
Mifepristone Available in Muscat +918761049707^^ €€ Buy Abortion Pills in OmanMifepristone Available in Muscat +918761049707^^ €€ Buy Abortion Pills in Oman
Mifepristone Available in Muscat +918761049707^^ €€ Buy Abortion Pills in Omaninstagramfab782445
 
Jual Obat Aborsi ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan Cytotec
Jual Obat Aborsi ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan CytotecJual Obat Aborsi ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan Cytotec
Jual Obat Aborsi ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan CytotecZurliaSoop
 
Quick Doctor In Kuwait +2773`7758`557 Kuwait Doha Qatar Dubai Abu Dhabi Sharj...
Quick Doctor In Kuwait +2773`7758`557 Kuwait Doha Qatar Dubai Abu Dhabi Sharj...Quick Doctor In Kuwait +2773`7758`557 Kuwait Doha Qatar Dubai Abu Dhabi Sharj...
Quick Doctor In Kuwait +2773`7758`557 Kuwait Doha Qatar Dubai Abu Dhabi Sharj...daisycvs
 
Call 7737669865 Vadodara Call Girls Service at your Door Step Available All Time
Call 7737669865 Vadodara Call Girls Service at your Door Step Available All TimeCall 7737669865 Vadodara Call Girls Service at your Door Step Available All Time
Call 7737669865 Vadodara Call Girls Service at your Door Step Available All Timegargpaaro
 
Marel Q1 2024 Investor Presentation from May 8, 2024
Marel Q1 2024 Investor Presentation from May 8, 2024Marel Q1 2024 Investor Presentation from May 8, 2024
Marel Q1 2024 Investor Presentation from May 8, 2024Marel
 
Dr. Admir Softic_ presentation_Green Club_ENG.pdf
Dr. Admir Softic_ presentation_Green Club_ENG.pdfDr. Admir Softic_ presentation_Green Club_ENG.pdf
Dr. Admir Softic_ presentation_Green Club_ENG.pdfAdmir Softic
 
Cannabis Legalization World Map: 2024 Updated
Cannabis Legalization World Map: 2024 UpdatedCannabis Legalization World Map: 2024 Updated
Cannabis Legalization World Map: 2024 UpdatedCannaBusinessPlans
 
Over the Top (OTT) Market Size & Growth Outlook 2024-2030
Over the Top (OTT) Market Size & Growth Outlook 2024-2030Over the Top (OTT) Market Size & Growth Outlook 2024-2030
Over the Top (OTT) Market Size & Growth Outlook 2024-2030tarushabhavsar
 
SEO Case Study: How I Increased SEO Traffic & Ranking by 50-60% in 6 Months
SEO Case Study: How I Increased SEO Traffic & Ranking by 50-60%  in 6 MonthsSEO Case Study: How I Increased SEO Traffic & Ranking by 50-60%  in 6 Months
SEO Case Study: How I Increased SEO Traffic & Ranking by 50-60% in 6 MonthsIndeedSEO
 
Mckinsey foundation level Handbook for Viewing
Mckinsey foundation level Handbook for ViewingMckinsey foundation level Handbook for Viewing
Mckinsey foundation level Handbook for ViewingNauman Safdar
 
Arti Languages Pre Seed Teaser Deck 2024.pdf
Arti Languages Pre Seed Teaser Deck 2024.pdfArti Languages Pre Seed Teaser Deck 2024.pdf
Arti Languages Pre Seed Teaser Deck 2024.pdfwill854175
 
Falcon Invoice Discounting: Empowering Your Business Growth
Falcon Invoice Discounting: Empowering Your Business GrowthFalcon Invoice Discounting: Empowering Your Business Growth
Falcon Invoice Discounting: Empowering Your Business GrowthFalcon investment
 
Cracking the 'Career Pathing' Slideshare
Cracking the 'Career Pathing' SlideshareCracking the 'Career Pathing' Slideshare
Cracking the 'Career Pathing' SlideshareWorkforce Group
 
Structuring and Writing DRL Mckinsey (1).pdf
Structuring and Writing DRL Mckinsey (1).pdfStructuring and Writing DRL Mckinsey (1).pdf
Structuring and Writing DRL Mckinsey (1).pdflaloo_007
 
Al Mizhar Dubai Escorts +971561403006 Escorts Service In Al Mizhar
Al Mizhar Dubai Escorts +971561403006 Escorts Service In Al MizharAl Mizhar Dubai Escorts +971561403006 Escorts Service In Al Mizhar
Al Mizhar Dubai Escorts +971561403006 Escorts Service In Al Mizharallensay1
 
Unveiling Falcon Invoice Discounting: Leading the Way as India's Premier Bill...
Unveiling Falcon Invoice Discounting: Leading the Way as India's Premier Bill...Unveiling Falcon Invoice Discounting: Leading the Way as India's Premier Bill...
Unveiling Falcon Invoice Discounting: Leading the Way as India's Premier Bill...Falcon Invoice Discounting
 
joint cost.pptx COST ACCOUNTING Sixteenth Edition ...
joint cost.pptx  COST ACCOUNTING  Sixteenth Edition                          ...joint cost.pptx  COST ACCOUNTING  Sixteenth Edition                          ...
joint cost.pptx COST ACCOUNTING Sixteenth Edition ...NadhimTaha
 

Kürzlich hochgeladen (20)

Horngren’s Cost Accounting A Managerial Emphasis, Canadian 9th edition soluti...
Horngren’s Cost Accounting A Managerial Emphasis, Canadian 9th edition soluti...Horngren’s Cost Accounting A Managerial Emphasis, Canadian 9th edition soluti...
Horngren’s Cost Accounting A Managerial Emphasis, Canadian 9th edition soluti...
 
The Abortion pills for sale in Qatar@Doha [+27737758557] []Deira Dubai Kuwait
The Abortion pills for sale in Qatar@Doha [+27737758557] []Deira Dubai KuwaitThe Abortion pills for sale in Qatar@Doha [+27737758557] []Deira Dubai Kuwait
The Abortion pills for sale in Qatar@Doha [+27737758557] []Deira Dubai Kuwait
 
Mifepristone Available in Muscat +918761049707^^ €€ Buy Abortion Pills in Oman
Mifepristone Available in Muscat +918761049707^^ €€ Buy Abortion Pills in OmanMifepristone Available in Muscat +918761049707^^ €€ Buy Abortion Pills in Oman
Mifepristone Available in Muscat +918761049707^^ €€ Buy Abortion Pills in Oman
 
Jual Obat Aborsi ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan Cytotec
Jual Obat Aborsi ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan CytotecJual Obat Aborsi ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan Cytotec
Jual Obat Aborsi ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan Cytotec
 
Quick Doctor In Kuwait +2773`7758`557 Kuwait Doha Qatar Dubai Abu Dhabi Sharj...
Quick Doctor In Kuwait +2773`7758`557 Kuwait Doha Qatar Dubai Abu Dhabi Sharj...Quick Doctor In Kuwait +2773`7758`557 Kuwait Doha Qatar Dubai Abu Dhabi Sharj...
Quick Doctor In Kuwait +2773`7758`557 Kuwait Doha Qatar Dubai Abu Dhabi Sharj...
 
!~+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUD...
!~+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUD...!~+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUD...
!~+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUD...
 
Call 7737669865 Vadodara Call Girls Service at your Door Step Available All Time
Call 7737669865 Vadodara Call Girls Service at your Door Step Available All TimeCall 7737669865 Vadodara Call Girls Service at your Door Step Available All Time
Call 7737669865 Vadodara Call Girls Service at your Door Step Available All Time
 
Marel Q1 2024 Investor Presentation from May 8, 2024
Marel Q1 2024 Investor Presentation from May 8, 2024Marel Q1 2024 Investor Presentation from May 8, 2024
Marel Q1 2024 Investor Presentation from May 8, 2024
 
Dr. Admir Softic_ presentation_Green Club_ENG.pdf
Dr. Admir Softic_ presentation_Green Club_ENG.pdfDr. Admir Softic_ presentation_Green Club_ENG.pdf
Dr. Admir Softic_ presentation_Green Club_ENG.pdf
 
Cannabis Legalization World Map: 2024 Updated
Cannabis Legalization World Map: 2024 UpdatedCannabis Legalization World Map: 2024 Updated
Cannabis Legalization World Map: 2024 Updated
 
Over the Top (OTT) Market Size & Growth Outlook 2024-2030
Over the Top (OTT) Market Size & Growth Outlook 2024-2030Over the Top (OTT) Market Size & Growth Outlook 2024-2030
Over the Top (OTT) Market Size & Growth Outlook 2024-2030
 
SEO Case Study: How I Increased SEO Traffic & Ranking by 50-60% in 6 Months
SEO Case Study: How I Increased SEO Traffic & Ranking by 50-60%  in 6 MonthsSEO Case Study: How I Increased SEO Traffic & Ranking by 50-60%  in 6 Months
SEO Case Study: How I Increased SEO Traffic & Ranking by 50-60% in 6 Months
 
Mckinsey foundation level Handbook for Viewing
Mckinsey foundation level Handbook for ViewingMckinsey foundation level Handbook for Viewing
Mckinsey foundation level Handbook for Viewing
 
Arti Languages Pre Seed Teaser Deck 2024.pdf
Arti Languages Pre Seed Teaser Deck 2024.pdfArti Languages Pre Seed Teaser Deck 2024.pdf
Arti Languages Pre Seed Teaser Deck 2024.pdf
 
Falcon Invoice Discounting: Empowering Your Business Growth
Falcon Invoice Discounting: Empowering Your Business GrowthFalcon Invoice Discounting: Empowering Your Business Growth
Falcon Invoice Discounting: Empowering Your Business Growth
 
Cracking the 'Career Pathing' Slideshare
Cracking the 'Career Pathing' SlideshareCracking the 'Career Pathing' Slideshare
Cracking the 'Career Pathing' Slideshare
 
Structuring and Writing DRL Mckinsey (1).pdf
Structuring and Writing DRL Mckinsey (1).pdfStructuring and Writing DRL Mckinsey (1).pdf
Structuring and Writing DRL Mckinsey (1).pdf
 
Al Mizhar Dubai Escorts +971561403006 Escorts Service In Al Mizhar
Al Mizhar Dubai Escorts +971561403006 Escorts Service In Al MizharAl Mizhar Dubai Escorts +971561403006 Escorts Service In Al Mizhar
Al Mizhar Dubai Escorts +971561403006 Escorts Service In Al Mizhar
 
Unveiling Falcon Invoice Discounting: Leading the Way as India's Premier Bill...
Unveiling Falcon Invoice Discounting: Leading the Way as India's Premier Bill...Unveiling Falcon Invoice Discounting: Leading the Way as India's Premier Bill...
Unveiling Falcon Invoice Discounting: Leading the Way as India's Premier Bill...
 
joint cost.pptx COST ACCOUNTING Sixteenth Edition ...
joint cost.pptx  COST ACCOUNTING  Sixteenth Edition                          ...joint cost.pptx  COST ACCOUNTING  Sixteenth Edition                          ...
joint cost.pptx COST ACCOUNTING Sixteenth Edition ...
 

'A Headed goal for SSE Airtricity League with Headless Drupal' - Monsoon Consulting

  • 1. 1 A HEADED GOAL FOR SSE AIRTRICITY LEAGUE WITH HEADLESS DRUPAL!
  • 2. Our Headless Journey Daniel Walsh Solution Architect Archie Vasyatkin Drupal Developer Ross McHugh Angular Developer
  • 3. ABOUT LEAGUE OF IRELAND
  • 4. PROJECT BACKGROUND Promote, Enhance, Attendances, Interest
  • 5. Digital Vision & Roadmap • FAI strategic implementation of a Football Management System (FMS) built by the German FA • Roadmap to onboard SSE Airtricity League, Continental Women’s National League and Third Level Football and develop websites • Roadmap to create mobile apps in the future
  • 6. Key Challenges •Aggressive Deadline •Parallel Development •Expertise Challenge •Content Challenge •Logistics Challenge
  • 8. Why Headless for LOI? •Multiple data sources •Unique frontend •Responsiveness and Real Time •Scalability for traffic peaks •Roadmap & Reusability
  • 12. Football Management System - Competitions - Clubs - Teams - Players - Officials - Matches - Statistics - Tables Multiple data sources Content Management System - News - Videos - Pages - Instagram - Match Previews - Match Reports
  • 13. FMS Web Services - Analysis • data.service::getAmateurTable • data.service::getAmateurTables • data.service::getClubFixtures • data.service::getClubTeamsByClubId1 • data.service::getClubsBySearch1 • data.service::getCompetitionsByTeam • data.service::getFairPlayTable • data.service::getGroupsAndRoundsOfTournament1 • data.service::getMasterData • data.service::getMatchById1 • data.service::getMatchDaysAndMatchesByMatchday2 • data.service::getMatchReportAndTickerInfos2 • data.service::getMatchesForLeaguesAll • data.service::getMatchesForRoundOrGroup1 • data.service::getPlayerProfile • data.service::getPreviouseXAndNextYMatchesOfTeam1 • data.service::getScorerTable • data.service::getSubscribedCompetitions • data.service::getTeamFixtures1 • data.service::getTeamProfileBase • data.service::getTeamSquadForSeason • data.service::getTicker
  • 14. Interface Design “Potentially” set UI designers & front-end developers free!
  • 15. AngularJS - What & Why A JavaScript MVC Framework used to create single page, data driven applications. ● Multiple Data Sources ● Live Match Centre ● Mobile App
  • 16. Some AngularJS Features ● MVC ● Routing ● Services ● Templates - <h1>{{$scope.pageTitle}}</h1> ● Data-binding ● Directives ● Filters ● Dependency Injection ● Modular
  • 17. AngularUI Bootstrap ● Bootstrap components written in pure AngularJS by the AngularUI Team.
  • 18. <html ng-app="loi"> <head> ... <script src="//cdn.com/../angular.js"></script> <script src="/lib/../angular-route.js"></script> </head> <body ng-controller="mainController"> <header ng-include="'/partials/header.html'"></header> <input ng-model="yourName" /> <h1>{{yourName}}</h1> </body> </html> Sample Code GETTING STARTED...
  • 19. var loi = angular.module('loi', ['ngRoute']); loi.controller("compCtr", function($scope, $routeParams){ $scope.compName = $routeParams.seoName; $scope.compId = $routeParams.compId; }); . . . . <span>{{$scope.compId}}</span> Sample Code GETTING STARTED...
  • 20. loi.config(function($routeProvider, $locationProvider) { $routeProvider .when('/', { templateUrl: '/view/home.html', controller: 'homeController' }) .when('/competition/:seoName/id-:compId', { templateUrl: 'views/comp.html', controller: 'compCtrl' }) .otherwise({ redirectTo: '/' }); }]); Sample Code ROUTING...
  • 21. <div ng-repeat="item in items"> <img ng-if="item.imgUrl" src="{{item.imgUrl}}" alt="{{item.title}}"> </div> <matches-table matches-data="compCtrl.matches" fixtures="true" results="true" full-table="true"></matches-table> Sample Code DIRECTIVES
  • 22. Common AngularJS Gotchas... ● CORS - enable-cors.org ● Dependency Injection & code minification app.controller("MyCtrl", function($scope){... app.controller("MyCtrl", ['$scope', function($scope){... ● Pretty URLs http://example.com/#/about
  • 23. Common AngularJS Gotchas ● Using jQuery? ● SEO & Social Sharing prerender.io github.com/prerender/prerender ● Aggressive browser caching - deployments example.com/assets/template.html?1030201017
  • 24. Headless Drupal Standard Content Management Capabilities News, Videos, Pages, Instagram, Match Previews & Reports ● CMS Editing ● ACL, Users & Authentication
  • 25. Why Drupal for Service Driven Applications Benefits ● One of the best solutions for content management on market. ● All required features coming out of the box. ● Doesn’t require any programming skills for simple sites. ● Easily adjustable for multiple purposes. ● Can be easily converted into full site. ● Built-in cache.
  • 26. How to configure Headless Drupal ● Create needed content types. ● Enable core “RESTful Web Services” module. ● Create view and view display of type “REST Export”. ● Create needed view exposed filters. ● Configure permissions.
  • 27. CMS REST Services ● Retrieving Data ● Retrieving Aggregated Data ● Content create/update/delete
  • 28. 1. Gets rows properly if rendering view programmatically. $view->execute(); foreach ($view->result as $row_index => $row) { $view->row_index = $row_index; $rows[] = $view->rowPlugin->render($row); } 2. Returns JSON formatted response $content['relatedNews'] = loi_page_controllers_get_view( 'news', 'rest_export_2', [implode('+', $related_news_ids)], 3, 0); return new JsonResponse($content); 3. Sets redirect back to angular on node submission. if (isset($form['#back_to_angular_url'])) { $response = new TrustedRedirectResponse($form['#back_to_angular_url']); $form_state->setResponse($response); } Sample Code
  • 29. Common Headless Drupal Gotchas ● Use views cache. ● Filter (whitelist) any parameters you accepting with GET requests. ● Properly configure access to site sections. ● Aggregate results together where possible. ● Unify where possible. ● Create documentations. ● Use front-end links for linking CMS and Front-end.
  • 44. Results • Site went live on schedule ahead of first game of season • In the 6 months since the site launched, there have been over 2 million unique pageviews and consistently strong engagement with content across premier and first division leagues. •High traffic peaks during games for live scores
  • 45. Headless Architecture Learnings • Headless for the right scenario • Same level of effort, different problems! •Relationships between foreign entities an architectural challenge • Cache is key