johndeu / ams-rocks

Azure Media Services Rocks portal

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Azure Media Services demo and samples site

Last Updated: 11/22/2022

This project is using the following technologies:

  • Next.js
  • React
  • Typescript
  • Azure Static Web Sites
  • Azure Functions
  • Azure Media Services
  • Shaka player

Install Requirements

  1. Azure CLI – Install the Azure CLI for Windows
  2. Typescript - TypeScript: How to set up TypeScript (typescriptlang.org
  3. Azure Static Web sites emulator - Set up local development for Azure Static Web Apps | Microsoft Learn
  4. Azure Functions extensions for VS code - Azure Functions - Visual Studio Marketplace
  5. Azure Tools for VS Code
  6. Next.js for VS Code

Starting the local application and API

  1. In order to debug both client and API at the same time, open two separate instances of VS Code. This is because we need to run the web site on port 3000, and the functions app on port 7071. We will have a proxy to the API going through port 4280.

  2. In one instance of VS Code bash terminal, open the root folder.

    Run the following command to launch the Next.js Website

    npm run dev
  3. You should see next start up with a "ready" started server on http://localhost:3000

  4. At this point, I like to rename the terminal to "Next dev"" so I know what it is.

  5. Open a second VS code bash terminal instance, change directory to the /api folder

    Run the following command to launch the API functions application. This is an Azure Functions project.

    npm run start
  6. Rename this terminal window to be "API" or "Functions"

  7. You should see Azure Functions app start up successfully and list the available functions in the console. Look for hello: [GET,POST] http://localhost:7071/api/hello for example. You can click this and see a response JSON message to make sure it is working.

  8. You should now be able to navigate to http://localhost:3000, and the Functions app should be available on http://localhost:7071/api. You can test it by hitting the "hello" function on http://localhost:7071/api/hello

  9. Each function has a .http file that you can use to setup and test the function while building it out. This acts as a simple REST API query tool for GET, PUT, etc. You need the REST Client extension to use this feature in VS Code.

  10. Finally, we will start up the Azure Static Web site emulator, which will create a proxy to the web site and API on port 4280. Open a 3rd Bash terminal, change to the root directory and start the proxy:

    npm run start-swa
  11. Rename this 3rd terminal window to be "SWA" or "Static Web App".

The Static Web Site emulator will launch and the Next.js application is now available on both port 3000 and on port 4280 (with a proxy to the API).

Now use port 4280 when you want to use the simulated Azure Static Web app hosted environment. This allows you to see both the API and the Next.js application on the same port similar to how it will be deployed to Azure Static Web Apps publicly. You can now debug and test your app and functions locally.

How to start both the Next.js app and the API with the CLI

Run the frontend app and API together by starting the app with the Static Web Apps CLI. Running the two parts of your application this way allows the CLI to serve your frontend's build output from a folder, and makes the API accessible to the running app.

  1. A simpler solution is to just use the CLI to serve the static "/out" folder along with the API. You can use the Static Web Apps CLI with the start command. In the root folder, call the start command. Downside of this, is that it only serves the static content, so you need to re-build to see updates in the "out" folder.
    swa start out --api-location api

How to use Azure Static Web Apps

For detailed instructions and a complete How-to on building an Azure Static Web App with an API, see the article Build a new Static Web App on Azure with Node.js

Routing and fallback paths in Static Web Apps

This site uses the staticwebapp.config.json file to configure the routes and fallback paths for 400 and 404 responses. The file staticwebapp.config.json at the root of the site contains fallback routes. Without this file, the default routes in the Next.js application will not work, and you will end up with a generic Microsoft 404 response page when users request pages that do not exist, or try to reach the site on locales that are not supported yet.

Using Azure Functions as the API

This web site uses Azure Functions hosted in the Azure Static web apps environment to provide an API. For details on using Azure Functions as an API see the article:

Adding and API to Static Web Apps

Getting data from the API in a React component

In order to get data from an Azure Functions API in a React Component in this project, follow the details here:

Connecting the client to API

Locales and Localization with i18next library

This project uses the i18next library to provide translations and localization support in the Next.js application. The folder /locales contains the translations used throughout the application. All new pages should use the i18next library to localize content.

To configure the i18next library, see the i18n/config.js and i18n/init.js files for details.

Complete documentation for i18next can be found at https://www.i18next.com/

IndexNow

This site has an API key .txt file for IndexNow configured See https://www.bing.com/indexnow#implementation

Usage of the NextJS Material Kit in this site

This web site is using a fork of version of the NextJS Material UI Kit.

license GitHub issues open GitHub issues closed

NextJS Material Kit is a Free Material-UI Kit with a fresh, new design inspired by Google's material design and is was developed using NextJS, starting from this starter project by Material-UI and Material Kit React by Creative Tim. You asked for it, so we built it. It's a great pleasure to introduce to you the material concepts in an easy to use and beautiful set of components. Along with the restyling of the Material-UI elements, you will find three fully-coded example pages, to help you design your NextJS project.

NextJS Material Kit makes use of light, surface and movement. It uses a deliberate color choice, edge-to-edge imagery and large scale typography. The general layout resembles sheets of paper following multiple different layers, so that the depth and order is obvious. The navigation stays mainly on the left and the actions on the right.

NextJS Material Kit was built with the help of nextjs and it uses a framework built by our friends from Material-UI, who did an amazing job creating the backbone for the material effects, animations, ripples and transitions. Big thanks to this team for the effort and forward thinking they put into it.

Quick start if you would like to use the same NextJS Material Kit in your projects

NextJS Material Kit Documentation

The documentation for the NextJS Material Kit is hosted at our website.

File Structure of the NextJS Material base site

Within the site you'll find the following directories and files:

nextjs-web-site
.
├── CHANGELOG.md
├── ISSUE_TEMPLATE.md
├── LICENSE.md
├── README.md
├── next.config.js
├── package.json
├── Documentation
│   ├── assets
│   └── tutorial-components.html
├── assets
│   ├── css
│   ├── img
│   │   ├── examples
│   │   └── faces
│   ├── jss
│   │   ├── nextjs-material-kit
│   │   │   ├── components
│   │   │   └── pages
│   │   │       ├── componentsSections
│   │   │       └── landingPageSections
│   │   └── nextjs-material-kit.js
│   └── scss
│       ├── core
│       │   ├── mixins
│       │   └── variables
│       ├── plugins
│       └── nextjs-material-kit.scss
├── pages
│   ├── _app.js
│   ├── _document.js
│   ├── _error.js
│   ├── components.js
│   ├── index.js
│   ├── landingpage.js
│   ├── loginpage.js
│   └── profilepage.js
├── components
│   ├── Badge
│   │   └── Badge.js
│   ├── Card
│   │   ├── Card.js
│   │   ├── CardBody.js
│   │   ├── CardFooter.js
│   │   └── CardHeader.js
│   ├── Clearfix
│   │   └── Clearfix.js
│   ├── CustomButtons
│   │   └── Button.js
│   ├── CustomDropdown
│   │   └── CustomDropdown.js
│   ├── CustomInput
│   │   └── CustomInput.js
│   ├── CustomLinearProgress
│   │   └── CustomLinearProgress.js
│   ├── CustomTabs
│   │   └── CustomTabs.js
│   ├── Footer
│   │   └── Footer.js
│   ├── Grid
│   │   ├── GridContainer.js
│   │   └── GridItem.js
│   ├── Header
│   │   ├── Header.js
│   │   └── HeaderLinks.js
│   ├── InfoArea
│   │   └── InfoArea.js
│   ├── NavPills
│   │   └── NavPills.js
│   ├── PageChange
│   │   └── PageChange.js
│   ├── Pagination
│   │   └── Pagination.js
│   ├── Parallax
│   │   └── Parallax.js
│   ├── Snackbar
│   │   └── SnackbarContent.js
│   └── Typography
│       ├── Danger.js
│       ├── Info.js
│       ├── Muted.js
│       ├── Primary.js
│       ├── Quote.js
│       ├── Small.js
│       ├── Success.js
│       └── Warning.js
└── pages-sections
    ├── Components-Sections
    │   ├── SectionBasics.js
    │   ├── SectionCarousel.js
    │   ├── SectionCompletedExamples.js
    │   ├── SectionDownload.js
    │   ├── SectionExamples.js
    │   ├── SectionJavascript.js
    │   ├── SectionLogin.js
    │   ├── SectionNavbars.js
    │   ├── SectionNotifications.js
    │   ├── SectionPills.js
    │   ├── SectionTabs.js
    │   └── SectionTypography.js
    └── LandingPage-Sections
        ├── ProductSection.js
        ├── TeamSection.js
        └── WorkSection.js

API Location

This project has an /api folder that contains a set of Azure Functions. Due to the limits of hosting Azure Functions "managed" in an Azure Static Web app project, I chose to move this to "Bring your own functions" to Azure Static Web Apps instead. The reason being, I needed to support a TimedTrigger function which is currently not supported in Azure Static Web Apps. I also wanted to have access to better monitoring and logging to troubleshoot issues that I hit during "managed" deployment.

See this article for details - https://docs.microsoft.com/en-us/azure/static-web-apps/functions-bring-your-own

To change from managed to "bring your own" - you first need to set the value of the API setting to "" in the workfow configuration file for Github Actions. See the file in .github/workflows.

Change this value from "api" to an empty string "" and redeploy so that you can link you static web app to an existing Azure function deployment.

 api_location: "" # Api source code path - optional - set this to api if you use managed functions, but for this project I am using hosted functions

Also, I followed the steps in this article to setup GitHub actions to deploy my Azure Function app. You will need to deploy the function app in the /api folder and link it in the Static Web App project in the portal https://docs.microsoft.com/en-us/azure/azure-functions/functions-deployment-technologies

Licensing

About

Azure Media Services Rocks portal

License:MIT License


Languages

Language:JavaScript 71.4%Language:SCSS 17.2%Language:TypeScript 6.1%Language:CSS 5.2%Language:Dockerfile 0.1%Language:HTML 0.0%