Skip to content

Commit

Permalink
Added typescript component; babel build with ngReact not working
Browse files Browse the repository at this point in the history
  • Loading branch information
kafitz committed Aug 3, 2021
1 parent 45b6461 commit 4e2f853
Show file tree
Hide file tree
Showing 7 changed files with 149 additions and 4 deletions.
71 changes: 71 additions & 0 deletions tsconfig.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,71 @@
{
"compilerOptions": {
/* Visit https://aka.ms/tsconfig.json to read more about this file */

/* Basic Options */
// "incremental": true, /* Enable incremental compilation */
"target": "esnext", /* Specify ECMAScript target version: 'ES3' (default), 'ES5', 'ES2015', 'ES2016', 'ES2017', 'ES2018', 'ES2019', 'ES2020', or 'ESNEXT'. */
"module": "commonjs", /* Specify module code generation: 'none', 'commonjs', 'amd', 'system', 'umd', 'es2015', 'es2020', or 'ESNext'. */
// "lib": [], /* Specify library files to be included in the compilation. */
// "allowJs": true, /* Allow javascript files to be compiled. */
// "checkJs": true, /* Report errors in .js files. */
// "jsx": "preserve", /* Specify JSX code generation: 'preserve', 'react-native', or 'react'. */
"declaration": true, /* Generates corresponding '.d.ts' file. */
// "declarationMap": true, /* Generates a sourcemap for each corresponding '.d.ts' file. */
// "sourceMap": true, /* Generates corresponding '.map' file. */
// "outFile": "./", /* Concatenate and emit output to single file. */
"outDir": "lib", /* Redirect output structure to the directory. */
// "rootDir": "./", /* Specify the root directory of input files. Use to control the output directory structure with --outDir. */
// "composite": true, /* Enable project compilation */
// "tsBuildInfoFile": "./", /* Specify file to store incremental compilation information */
// "removeComments": true, /* Do not emit comments to output. */
// "noEmit": true, /* Do not emit outputs. */
// "importHelpers": true, /* Import emit helpers from 'tslib'. */
// "downlevelIteration": true, /* Provide full support for iterables in 'for-of', spread, and destructuring when targeting 'ES5' or 'ES3'. */
// "isolatedModules": true, /* Transpile each file as a separate module (similar to 'ts.transpileModule'). */

/* Strict Type-Checking Options */
"strict": true, /* Enable all strict type-checking options. */
// "noImplicitAny": true, /* Raise error on expressions and declarations with an implied 'any' type. */
// "strictNullChecks": true, /* Enable strict null checks. */
// "strictFunctionTypes": true, /* Enable strict checking of function types. */
// "strictBindCallApply": true, /* Enable strict 'bind', 'call', and 'apply' methods on functions. */
// "strictPropertyInitialization": true, /* Enable strict checking of property initialization in classes. */
// "noImplicitThis": true, /* Raise error on 'this' expressions with an implied 'any' type. */
// "alwaysStrict": true, /* Parse in strict mode and emit "use strict" for each source file. */

/* Additional Checks */
// "noUnusedLocals": true, /* Report errors on unused locals. */
// "noUnusedParameters": true, /* Report errors on unused parameters. */
// "noImplicitReturns": true, /* Report error when not all code paths in function return a value. */
// "noFallthroughCasesInSwitch": true, /* Report errors for fallthrough cases in switch statement. */
// "noUncheckedIndexedAccess": true, /* Include 'undefined' in index signature results */

/* Module Resolution Options */
// "moduleResolution": "node", /* Specify module resolution strategy: 'node' (Node.js) or 'classic' (TypeScript pre-1.6). */
// "baseUrl": "./", /* Base directory to resolve non-absolute module names. */
// "paths": {}, /* A series of entries which re-map imports to lookup locations relative to the 'baseUrl'. */
// "rootDirs": [], /* List of root folders whose combined content represents the structure of the project at runtime. */
// "typeRoots": [], /* List of folders to include type definitions from. */
// "types": [], /* Type declaration files to be included in compilation. */
"allowSyntheticDefaultImports": true, /* Allow default imports from modules with no default export. This does not affect code emit, just typechecking. */
"esModuleInterop": true, /* Enables emit interoperability between CommonJS and ES Modules via creation of namespace objects for all imports. Implies 'allowSyntheticDefaultImports'. */
// "preserveSymlinks": true, /* Do not resolve the real path of symlinks. */
// "allowUmdGlobalAccess": true, /* Allow accessing UMD globals from modules. */

/* Source Map Options */
// "sourceRoot": "", /* Specify the location where debugger should locate TypeScript files instead of source locations. */
// "mapRoot": "", /* Specify the location where debugger should locate map files instead of generated locations. */
// "inlineSourceMap": true, /* Emit a single file with source maps instead of having a separate file. */
// "inlineSources": true, /* Emit the source alongside the sourcemaps within a single file; requires '--inlineSourceMap' or '--sourceMap' to be set. */

/* Experimental Options */
// "experimentalDecorators": true, /* Enables experimental support for ES7 decorators. */
// "emitDecoratorMetadata": true, /* Enables experimental support for emitting type metadata for decorators. */

/* Advanced Options */
"skipLibCheck": true, /* Skip type checking of declaration files. */
"forceConsistentCasingInFileNames": true, /* Disallow inconsistently-cased references to the same file. */
"jsx": "react",
}
}
45 changes: 45 additions & 0 deletions www/components/itinerum_questionnaire/QuestionLayout.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
/*
* www/itinerum_questionnaire/QuestionStack.tsx
*/
import { StackQuestion } from './questionnaireTypes';



const questionMap: {[key: string]: any} = {
dropdown: undefined,
checkbox: undefined,
number: undefined,
address: undefined,
textBox: undefined,
};


export interface QuestionStackProps {
questions: StackQuestion[];
}

const ItinerumQuestionStack = (props: QuestionStackProps) => {
// const memoizedStack = props.questions.map((question, index) => {
// const Question = questionMap[question.type];

// return (
// <Question
// id={question.id}
// type={question.type}
// title={question.title}
// fieldName={question.fieldName}
// options={question.options}
// />
// );
// });

return (
<div>
{/* { memoizedStack } */}
HELLO WORLD!
</div>
);
}


export default ItinerumQuestionStack;
1 change: 1 addition & 0 deletions www/components/itinerum_questionnaire/compile.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
NODE_ENV=production npx babel www/components/itinerum_questionnaire/ --out-dir www/components/itinerum_questionnaire/ --extensions ".ts,.tsx" --presets @babel/preset-env,@babel/preset-typescript,react-app --plugins @babel/plugin-proposal-class-properties
22 changes: 22 additions & 0 deletions www/components/itinerum_questionnaire/questionnaireTypes.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
/*
* www/itinerum_questionnaire/questionStackTypes.ts
*/

export const QuestionTypes: {[key: string]: string} = {
dropdown: 'DROPDOWN',
checkbox: 'CHECKBOX',
number: 'NUMBER',
address: 'ADDRESS',
textBox: 'TEXTBOX',
};

export type DropdownOption = string;
export type CheckboxOption = string;

export type StackQuestion = {
id: number,
type: keyof typeof QuestionTypes,
title: string,
fieldName: string,
options?: DropdownOption[] | CheckboxOption[],
};
3 changes: 2 additions & 1 deletion www/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,8 @@
<script src="lib/ngReact/ngReact.min.js"></script>

<!-- React components -->
<script src="components/itinerum_tutorial/Tutorial.js"></script>
<!-- <script src="components/itinerum_tutorial/Tutorial.js"></script> -->
<script src="components/itinerum_questionnaire/QuestionLayout.js"></script>

<!-- your app's js -->
<script src="js/app.js"></script>
Expand Down
9 changes: 7 additions & 2 deletions www/js/app.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ angular.module('emission', ['ionic', 'react',
'emission.controllers','emission.services', 'emission.plugin.logger',
'emission.splash.customURLScheme', 'emission.splash.referral',
'emission.splash.updatecheck', 'emission.services.email',
'emission.intro', 'emission.main',
'pascalprecht.translate'])
'emission.intro', 'emission.main',
'pascalprecht.translate'])

.run(function($ionicPlatform, $rootScope, $http, Logger,
CustomURLScheme, ReferralHandler, UpdateCheck) {
Expand Down Expand Up @@ -76,6 +76,11 @@ angular.module('emission', ['ionic', 'react',
return reactDirective(TutorialComponent);
})

.directive('questionnaire', function (reactDirective) {
console.log('\n\n\n', ItinerumQuestionStack, '\n\n\n');
return reactDirective(ItinerumQuestionStack);
})

.config(function($stateProvider, $urlRouterProvider, $translateProvider, $compileProvider) {
console.log("Starting config");
// alert("config");
Expand Down
2 changes: 1 addition & 1 deletion www/templates/intro/survey.html
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<ion-content class="has-footer">
<tutorial/>
<questionnaire/>
</ion-content>
<ion-footer-bar class="no-bgColor" id="intro-footer">
<button class="button button-block button-outline button-positive" ng-click="next()">
Expand Down

0 comments on commit 4e2f853

Please sign in to comment.