SlideShare a Scribd company logo
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?

More Related Content

What's hot

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 Development
Puja 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 Platform
David 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 Operations
Juan Fabian
 
SharePoint architecture-site
SharePoint architecture-siteSharePoint architecture-site
SharePoint architecture-site
Kunzhong 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 visual
Jan 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-premises
Dragan 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 Marketing
Fernando Mejía
 
Tuga IT - Power BI for Developers
Tuga IT - Power BI for DevelopersTuga IT - Power BI for Developers
Tuga IT - Power BI for Developers
Rui Romano
 
WSO2 Use Case - API Facade Pattern
WSO2 Use Case - API  Facade PatternWSO2 Use Case - API  Facade Pattern
WSO2 Use Case - API Facade Pattern
WSO2
 
RScarborough Resume 2014 General
RScarborough Resume 2014 GeneralRScarborough Resume 2014 General
RScarborough Resume 2014 General
Randy Scarborough
 
Build intelligent solutions using ms azure
Build intelligent solutions using ms azureBuild intelligent solutions using ms azure
Build intelligent solutions using ms azure
Mostafa
 
Power BI in Office 365
Power BI in Office 365Power BI in Office 365
Power BI in Office 365
Bhavik Merchant
 
Products for SAP NetWeaver
Products for SAP NetWeaverProducts for SAP NetWeaver
Products for SAP NetWeaver
Christoph Schulz
 
MIUG 21-09-2017 Azure iPaaS
MIUG 21-09-2017 Azure iPaaSMIUG 21-09-2017 Azure iPaaS
MIUG 21-09-2017 Azure iPaaS
Emiel 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 Trenches
Rui Romano
 
Syncfusion Dashboard Platform SDK
Syncfusion Dashboard  Platform SDKSyncfusion Dashboard  Platform SDK
Syncfusion Dashboard Platform SDK
Davis Jebaraj
 

What's hot (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
 

Similar to '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 Services
Marlabs
 
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
 
KhajavaliShaik
KhajavaliShaikKhajavaliShaik
KhajavaliShaik
khajavali shaik
 
(Updated) SharePoint & jQuery Guide
(Updated) SharePoint & jQuery Guide(Updated) SharePoint & jQuery Guide
(Updated) SharePoint & jQuery Guide
Mark Rackley
 
Mstr meetup
Mstr meetupMstr meetup
Mstr meetup
Bhavani Akunuri
 
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
Wilfried Hoge
 
Running Data Platforms Like Products
Running Data Platforms Like ProductsRunning Data Platforms Like Products
Running Data Platforms Like Products
VMware Tanzu
 
AhmedWasfi2015
AhmedWasfi2015AhmedWasfi2015
AhmedWasfi2015
Ahmed Arafa
 
FAISAL SULEMAN_CV
FAISAL SULEMAN_CVFAISAL SULEMAN_CV
FAISAL SULEMAN_CV
faisal suleman
 
Dave_Charlton_TTC_Mar2016v2
Dave_Charlton_TTC_Mar2016v2Dave_Charlton_TTC_Mar2016v2
Dave_Charlton_TTC_Mar2016v2
David 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 Brochure
Mustafabalsara
 
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
magnificsmile
 
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
babymagnific
 
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
magnifics
 
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
magnificsmile
 
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
magnificbsr
 
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
magnificsmily
 
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
Hector Hungria
 
DS_Sreeram_7
DS_Sreeram_7DS_Sreeram_7
DS_Sreeram_7
sreerampratap
 

Similar to '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
 

Recently uploaded

Satta Matka Dpboss Kalyan Matka Results Kalyan Chart
Satta Matka Dpboss Kalyan Matka Results Kalyan ChartSatta Matka Dpboss Kalyan Matka Results Kalyan Chart
Satta Matka Dpboss Kalyan Matka Results Kalyan Chart
Satta Matka Dpboss Kalyan Matka Results
 
❽❽❻❼❼❻❻❸❾❻ DPBOSS NET SPBOSS SATTA MATKA RESULT KALYAN MATKA GUESSING FREE KA...
❽❽❻❼❼❻❻❸❾❻ DPBOSS NET SPBOSS SATTA MATKA RESULT KALYAN MATKA GUESSING FREE KA...❽❽❻❼❼❻❻❸❾❻ DPBOSS NET SPBOSS SATTA MATKA RESULT KALYAN MATKA GUESSING FREE KA...
❽❽❻❼❼❻❻❸❾❻ DPBOSS NET SPBOSS SATTA MATKA RESULT KALYAN MATKA GUESSING FREE KA...
essorprof62
 
Satta Matka Dpboss Kalyan Matka Results Kalyan Chart
Satta Matka Dpboss Kalyan Matka Results Kalyan ChartSatta Matka Dpboss Kalyan Matka Results Kalyan Chart
Satta Matka Dpboss Kalyan Matka Results Kalyan Chart
Satta Matka Dpboss Kalyan Matka Results
 
deft. 2024 pricing guide for onboarding
deft.  2024 pricing guide for onboardingdeft.  2024 pricing guide for onboarding
deft. 2024 pricing guide for onboarding
hello960827
 
Pro Tips for Effortless Contract Management
Pro Tips for Effortless Contract ManagementPro Tips for Effortless Contract Management
Pro Tips for Effortless Contract Management
Eternity Paralegal Services
 
Adani Group's Active Interest In Increasing Its Presence in the Cement Manufa...
Adani Group's Active Interest In Increasing Its Presence in the Cement Manufa...Adani Group's Active Interest In Increasing Its Presence in the Cement Manufa...
Adani Group's Active Interest In Increasing Its Presence in the Cement Manufa...
Adani case
 
➒➌➎➏➑➐➋➑➐➐ Satta Matta Matka Dpboss Matka Guessing Kalyan panel Chart
➒➌➎➏➑➐➋➑➐➐ Satta Matta Matka Dpboss Matka Guessing Kalyan panel Chart➒➌➎➏➑➐➋➑➐➐ Satta Matta Matka Dpboss Matka Guessing Kalyan panel Chart
➒➌➎➏➑➐➋➑➐➐ Satta Matta Matka Dpboss Matka Guessing Kalyan panel Chart
➒➌➎➏➑➐➋➑➐➐Dpboss Matka Guessing Satta Matka Kalyan Chart Indian Matka
 
2024.06 CPMN Cambridge - Beyond Now-Next-Later.pdf
2024.06 CPMN Cambridge - Beyond Now-Next-Later.pdf2024.06 CPMN Cambridge - Beyond Now-Next-Later.pdf
2024.06 CPMN Cambridge - Beyond Now-Next-Later.pdf
Cambridge Product Management Network
 
Kirill Klip GEM Royalty TNR Gold Copper Presentation
Kirill Klip GEM Royalty TNR Gold Copper PresentationKirill Klip GEM Royalty TNR Gold Copper Presentation
Kirill Klip GEM Royalty TNR Gold Copper Presentation
Kirill Klip
 
Satta Matka Dpboss Kalyan Matka Results Kalyan Chart
Satta Matka Dpboss Kalyan Matka Results Kalyan ChartSatta Matka Dpboss Kalyan Matka Results Kalyan Chart
Satta Matka Dpboss Kalyan Matka Results Kalyan Chart
Satta Matka Dpboss Kalyan Matka Results
 
Satta Matka Dpboss Kalyan Matka Results Kalyan Chart
Satta Matka Dpboss Kalyan Matka Results Kalyan ChartSatta Matka Dpboss Kalyan Matka Results Kalyan Chart
Satta Matka Dpboss Kalyan Matka Results Kalyan Chart
Satta Matka Dpboss Kalyan Matka Results
 
Lukas Rycek - GreenChemForCE - project structure.pptx
Lukas Rycek - GreenChemForCE - project structure.pptxLukas Rycek - GreenChemForCE - project structure.pptx
Lukas Rycek - GreenChemForCE - project structure.pptx
pavelborek
 
一比一原版(lbs毕业证书)英国伦敦商学院毕业证如何办理
一比一原版(lbs毕业证书)英国伦敦商学院毕业证如何办理一比一原版(lbs毕业证书)英国伦敦商学院毕业证如何办理
一比一原版(lbs毕业证书)英国伦敦商学院毕业证如何办理
eaqmokn
 
Adani Group Requests For Additional Land For Its Dharavi Redevelopment Projec...
Adani Group Requests For Additional Land For Its Dharavi Redevelopment Projec...Adani Group Requests For Additional Land For Its Dharavi Redevelopment Projec...
Adani Group Requests For Additional Land For Its Dharavi Redevelopment Projec...
Adani case
 
PDT 99 - $3.5M - Seed - Feel Therapeutics.pdf
PDT 99 - $3.5M - Seed - Feel Therapeutics.pdfPDT 99 - $3.5M - Seed - Feel Therapeutics.pdf
PDT 99 - $3.5M - Seed - Feel Therapeutics.pdf
HajeJanKamps
 
Enhancing Adoption of AI in Agri-food: Introduction
Enhancing Adoption of AI in Agri-food: IntroductionEnhancing Adoption of AI in Agri-food: Introduction
Enhancing Adoption of AI in Agri-food: Introduction
Cor Verdouw
 
Satta Matka Dpboss Kalyan Matka Results Kalyan Chart
Satta Matka Dpboss Kalyan Matka Results Kalyan ChartSatta Matka Dpboss Kalyan Matka Results Kalyan Chart
Satta Matka Dpboss Kalyan Matka Results Kalyan Chart
Satta Matka Dpboss Kalyan Matka Results
 
Satta Matka Dpboss Kalyan Matka Results Kalyan Chart
Satta Matka Dpboss Kalyan Matka Results Kalyan ChartSatta Matka Dpboss Kalyan Matka Results Kalyan Chart
Satta Matka Dpboss Kalyan Matka Results Kalyan Chart
Satta Matka Dpboss Kalyan Matka Results
 
➒➌➎➏➑➐➋➑➐➐ Satta Matka Dpboss Matka Guessing Indian Matka
➒➌➎➏➑➐➋➑➐➐ Satta Matka Dpboss Matka Guessing Indian Matka➒➌➎➏➑➐➋➑➐➐ Satta Matka Dpboss Matka Guessing Indian Matka
➒➌➎➏➑➐➋➑➐➐ Satta Matka Dpboss Matka Guessing Indian Matka
➒➌➎➏➑➐➋➑➐➐Dpboss Matka Guessing Satta Matka Kalyan Chart Indian Matka
 
Satta Matka Dpboss Kalyan Matka Results Kalyan Chart
Satta Matka Dpboss Kalyan Matka Results Kalyan ChartSatta Matka Dpboss Kalyan Matka Results Kalyan Chart
Satta Matka Dpboss Kalyan Matka Results Kalyan Chart
Satta Matka Dpboss Kalyan Matka Results
 

Recently uploaded (20)

Satta Matka Dpboss Kalyan Matka Results Kalyan Chart
Satta Matka Dpboss Kalyan Matka Results Kalyan ChartSatta Matka Dpboss Kalyan Matka Results Kalyan Chart
Satta Matka Dpboss Kalyan Matka Results Kalyan Chart
 
❽❽❻❼❼❻❻❸❾❻ DPBOSS NET SPBOSS SATTA MATKA RESULT KALYAN MATKA GUESSING FREE KA...
❽❽❻❼❼❻❻❸❾❻ DPBOSS NET SPBOSS SATTA MATKA RESULT KALYAN MATKA GUESSING FREE KA...❽❽❻❼❼❻❻❸❾❻ DPBOSS NET SPBOSS SATTA MATKA RESULT KALYAN MATKA GUESSING FREE KA...
❽❽❻❼❼❻❻❸❾❻ DPBOSS NET SPBOSS SATTA MATKA RESULT KALYAN MATKA GUESSING FREE KA...
 
Satta Matka Dpboss Kalyan Matka Results Kalyan Chart
Satta Matka Dpboss Kalyan Matka Results Kalyan ChartSatta Matka Dpboss Kalyan Matka Results Kalyan Chart
Satta Matka Dpboss Kalyan Matka Results Kalyan Chart
 
deft. 2024 pricing guide for onboarding
deft.  2024 pricing guide for onboardingdeft.  2024 pricing guide for onboarding
deft. 2024 pricing guide for onboarding
 
Pro Tips for Effortless Contract Management
Pro Tips for Effortless Contract ManagementPro Tips for Effortless Contract Management
Pro Tips for Effortless Contract Management
 
Adani Group's Active Interest In Increasing Its Presence in the Cement Manufa...
Adani Group's Active Interest In Increasing Its Presence in the Cement Manufa...Adani Group's Active Interest In Increasing Its Presence in the Cement Manufa...
Adani Group's Active Interest In Increasing Its Presence in the Cement Manufa...
 
➒➌➎➏➑➐➋➑➐➐ Satta Matta Matka Dpboss Matka Guessing Kalyan panel Chart
➒➌➎➏➑➐➋➑➐➐ Satta Matta Matka Dpboss Matka Guessing Kalyan panel Chart➒➌➎➏➑➐➋➑➐➐ Satta Matta Matka Dpboss Matka Guessing Kalyan panel Chart
➒➌➎➏➑➐➋➑➐➐ Satta Matta Matka Dpboss Matka Guessing Kalyan panel Chart
 
2024.06 CPMN Cambridge - Beyond Now-Next-Later.pdf
2024.06 CPMN Cambridge - Beyond Now-Next-Later.pdf2024.06 CPMN Cambridge - Beyond Now-Next-Later.pdf
2024.06 CPMN Cambridge - Beyond Now-Next-Later.pdf
 
Kirill Klip GEM Royalty TNR Gold Copper Presentation
Kirill Klip GEM Royalty TNR Gold Copper PresentationKirill Klip GEM Royalty TNR Gold Copper Presentation
Kirill Klip GEM Royalty TNR Gold Copper Presentation
 
Satta Matka Dpboss Kalyan Matka Results Kalyan Chart
Satta Matka Dpboss Kalyan Matka Results Kalyan ChartSatta Matka Dpboss Kalyan Matka Results Kalyan Chart
Satta Matka Dpboss Kalyan Matka Results Kalyan Chart
 
Satta Matka Dpboss Kalyan Matka Results Kalyan Chart
Satta Matka Dpboss Kalyan Matka Results Kalyan ChartSatta Matka Dpboss Kalyan Matka Results Kalyan Chart
Satta Matka Dpboss Kalyan Matka Results Kalyan Chart
 
Lukas Rycek - GreenChemForCE - project structure.pptx
Lukas Rycek - GreenChemForCE - project structure.pptxLukas Rycek - GreenChemForCE - project structure.pptx
Lukas Rycek - GreenChemForCE - project structure.pptx
 
一比一原版(lbs毕业证书)英国伦敦商学院毕业证如何办理
一比一原版(lbs毕业证书)英国伦敦商学院毕业证如何办理一比一原版(lbs毕业证书)英国伦敦商学院毕业证如何办理
一比一原版(lbs毕业证书)英国伦敦商学院毕业证如何办理
 
Adani Group Requests For Additional Land For Its Dharavi Redevelopment Projec...
Adani Group Requests For Additional Land For Its Dharavi Redevelopment Projec...Adani Group Requests For Additional Land For Its Dharavi Redevelopment Projec...
Adani Group Requests For Additional Land For Its Dharavi Redevelopment Projec...
 
PDT 99 - $3.5M - Seed - Feel Therapeutics.pdf
PDT 99 - $3.5M - Seed - Feel Therapeutics.pdfPDT 99 - $3.5M - Seed - Feel Therapeutics.pdf
PDT 99 - $3.5M - Seed - Feel Therapeutics.pdf
 
Enhancing Adoption of AI in Agri-food: Introduction
Enhancing Adoption of AI in Agri-food: IntroductionEnhancing Adoption of AI in Agri-food: Introduction
Enhancing Adoption of AI in Agri-food: Introduction
 
Satta Matka Dpboss Kalyan Matka Results Kalyan Chart
Satta Matka Dpboss Kalyan Matka Results Kalyan ChartSatta Matka Dpboss Kalyan Matka Results Kalyan Chart
Satta Matka Dpboss Kalyan Matka Results Kalyan Chart
 
Satta Matka Dpboss Kalyan Matka Results Kalyan Chart
Satta Matka Dpboss Kalyan Matka Results Kalyan ChartSatta Matka Dpboss Kalyan Matka Results Kalyan Chart
Satta Matka Dpboss Kalyan Matka Results Kalyan Chart
 
➒➌➎➏➑➐➋➑➐➐ Satta Matka Dpboss Matka Guessing Indian Matka
➒➌➎➏➑➐➋➑➐➐ Satta Matka Dpboss Matka Guessing Indian Matka➒➌➎➏➑➐➋➑➐➐ Satta Matka Dpboss Matka Guessing Indian Matka
➒➌➎➏➑➐➋➑➐➐ Satta Matka Dpboss Matka Guessing Indian Matka
 
Satta Matka Dpboss Kalyan Matka Results Kalyan Chart
Satta Matka Dpboss Kalyan Matka Results Kalyan ChartSatta Matka Dpboss Kalyan Matka Results Kalyan Chart
Satta Matka Dpboss Kalyan Matka Results Kalyan Chart
 

'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