Use of this software is subject to important terms and conditions as set forth in the License file
This repo contains a scaffold to help developers build apps for Zendesk products.
cd
) into the app_scaffold
directoryyarn install
You can use either yarn
or npm
as package manager and run the scripts with the corresponding commands.
To run your app locally in Zendesk, you need the latest Zendesk Apps Tools (ZAT).
To serve the app to your Zendesk instance with ?zat=true
, run
yarn run watch
zat server -p dist
The App Scaffold includes many features to help you maintain and scale your app. Some of the features provided by the App Scaffold are listed below. However, you don't need prior experience in any of these to be able to use the scaffold successfully.
ECMAScript 6, also known as ECMAScript 2015, is the latest version of the ECMAScript standard. The App Scaffold includes the Babel compiler to transpile your code to ES5. This allows you to use ES6 features, such as classes, arrow functions and template strings even in browsers that haven't fully implemented these features.
Collection of React components for Zendesk products. You’ll find components built to respond to a range of user input devices, tuned to handle right-to-left layouts, and finessed with just the right touch of subtle animation.
Webpack is a module bundler, we use it to bundle up Javascript modules for use as web applications, also to perform tasks like transforming and transpiling, etc.
PostCSS transforms stylesheets with JS plugins. These plugins can lint your CSS, support variables and mixins, transpile future CSS syntax, inline images, and more.
StandardJS is a Javascript style guide, it helps catching style issues or code errors, and automatically formats code for you.
Jest is bundled with JSDom and built on top of Jasmine. It's more than just a ReactJS testing framework. In the Zendesk Apps team, we use it for unit and integration testing of the Official Apps. It also includes a good test coverage toolset out of the box.
The folder and file structure of the App Scaffold is as follows:
Name | Description |
---|---|
.github/ |
The folder to store PULL_REQUEST_TEMPLATE.md, ISSUE_TEMPLATE.md and CONTRIBUTING.md, etc |
dist/ |
The folder in which webpack packages the built version of your app |
spec/ |
The folder in which all of your test files live |
src/ |
The folder in which all of your source JavaScript, CSS, templates and translation files live |
webpack/ |
translations-loader and translations-plugin to support i18n in the application |
.babelrc |
Configuration file for Babel.js |
.browserslistrc |
Configuration file for browserslist |
jest.config.js |
Configuration file for Jest |
package.json |
Configuration file for Project metadata, dependencies and build scripts |
postcss.config.js |
Configuration file for PostCSS |
webpack.config.js |
Configuration file that webpack uses to build your app |
The dist directory is created when you run the app building scripts. You will need to package this folder when submitting your app to the Zendesk Apps Marketplace, It is also the folder you will have to serve when using ZAT. It includes your app's manifest.json file, an assets folder with all your compiled JavaScript and CSS as well as HTML and images.
The spec directory is where all your tests and test helpers live. Tests are not required to submit/upload your app to Zendesk and your test files are not included in your app's package, however it is good practice to write tests to document functionality and prevent bugs.
The src directory is where your raw source code lives. The App Scaffold includes different directories for JavaScript, stylesheets, templates, images and translations. Most of your additions will be in here (and spec, of course!).
This directory contains custom tooling to process translations at build time:
.babelrc is the configuration file for babel compiler.
.browserslistrc is a configuration file to specify browsers supported by your application, some develop/build tools read info from this file if it exists in your project root. At present, our scaffolding doesn't reply on this file, default browserslist query is used by Babel and PostCSS
jest.config.js is the configuration file for Jest
package.json is the configuration file for Yarn, which is a package manager for JavaScript. This file includes information about your project and its dependencies. For more information on how to configure this file, see Yarn package.json.
postcss.config.js is the configuration file for PostCSS
webpack.config.js is a configuration file for webpack. Webpack is a JavaScript module bundler. For more information about webpack and how to configure it, see What is webpack.
The App Scaffold provides some helper functions in /src/javascripts/lib/helpers.js
to help building apps.
The I18n (internationalization) module in /src/javascripts/lib/i18n.js
provides a t
method to look up translations based on a key. For more information, see Using the I18n module.
If you need to test your app with a parameters
section in dist/manifest.json
, foreman might crash with a message like:
Would have prompted for a value interactively, but zat is not listening to keyboard input.
To resolve this problem, set default values for parameters or create a settings.yml
file in the root directory of your app scaffold-based project, and populate it with your parameter names and test values. For example, using a parameters section like:
{
"parameters": [
{
"name": "myParameter"
}
]
}
create a settings.yml
containing:
myParameter: 'some value!'
The App Scaffold is currently setup for testing with Jest. To run specs, run
yarn test
Specs live under the spec
directory.
To check that your app will pass the server-side validation check, run
zat validate --path=dist
If validation is successful, you can upload the app into your Zendesk account by running
zat create --path=dist
To update your app after it has been created in your account, run
zat update --path=dist
Or, to create a zip archive for manual upload, run
zat package --path=dist
taking note of the created filename.
For more information on the Zendesk Apps Tools please see the documentation.
External dependencies are defined in webpack.config.js. This ensures these dependencies are included in your app's index.html
.
Submit Issues via GitHub or email support@zendesk.com.
Links to maintaining team, confluence pages, Datadog dashboard, Kibana logs, etc
Copyright 2018 Zendesk
Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License.
You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.