From 868b4a47c652202b1c8398fe20012fedbacd99c7 Mon Sep 17 00:00:00 2001 From: Nathan Walker Date: Wed, 5 May 2021 15:59:06 -0700 Subject: [PATCH 01/24] chore: cleanup lint and prettier config --- .eslintrc.json | 10 +++++----- packages/core/.eslintrc.json | 2 +- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.eslintrc.json b/.eslintrc.json index 287d5f1cc..a13c55af9 100644 --- a/.eslintrc.json +++ b/.eslintrc.json @@ -1,15 +1,15 @@ { - "extends": ["plugin:prettier/recommended"], + "root": true, "parser": "@typescript-eslint/parser", "parserOptions": { "ecmaVersion": 2018, "sourceType": "module", - "parser": "@typescript-eslint/parser", - "project": "tsconfig.eslint.json", - "warnOnUnsupportedTypeScriptVersion": false + "project": "tsconfig.eslint.json" }, - "plugins": ["prettier", "@nativescript"], + "plugins": ["@nativescript", "prettier"], + "extends": ["plugin:@nativescript/recommended", "prettier"], "rules": { + "prettier/prettier": 2, "@nativescript/no-nativescript-angular-imports": "warn", "@nativescript/no-tns-core-modules-imports": "warn", "@nativescript/no-duplicate-ns-imports": "warn" diff --git a/packages/core/.eslintrc.json b/packages/core/.eslintrc.json index a11f3bf78..510ded291 100644 --- a/packages/core/.eslintrc.json +++ b/packages/core/.eslintrc.json @@ -1,7 +1,7 @@ { "extends": "../../.eslintrc.json", "rules": {}, - "ignorePatterns": ["!**/*", "**/node_modules/**/*", "**/__tests__/**/*"], + "ignorePatterns": ["!**/*", "**/global-types.d.ts", "**/node_modules/**/*", "**/__tests__/**/*"], "overrides": [ { "files": ["*.ts", "*.tsx", "*.js", "*.jsx"], From 342108c1afea17f9b478d9180f459f1ebfd9c5b6 Mon Sep 17 00:00:00 2001 From: Nathan Walker Date: Wed, 5 May 2021 16:28:59 -0700 Subject: [PATCH 02/24] chore(release): @nativescript/core@8.0.4 --- CHANGELOG.md | 14 ++++++++++++++ package.json | 2 +- packages/core/README.md | 11 +++++++++++ packages/core/package.json | 4 ++-- workspace.json | 1 + 5 files changed, 29 insertions(+), 3 deletions(-) create mode 100644 packages/core/README.md diff --git a/CHANGELOG.md b/CHANGELOG.md index eb77b7e75..ec9098451 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,17 @@ +## [8.0.4](https://github.com/NativeScript/NativeScript/compare/8.0.3-core...8.0.4) (2021-05-05) + + +### Bug Fixes + +* **core:** typings for showModal correction ([#9374](https://github.com/NativeScript/NativeScript/issues/9374)) ([9ec4042](https://github.com/NativeScript/NativeScript/commit/9ec404225ef0cff5f82d759fcdc7b85952e65c0d)) + + +### Features + +* add additional android global methods ([#9365](https://github.com/NativeScript/NativeScript/issues/9365)) ([a6cb46d](https://github.com/NativeScript/NativeScript/commit/a6cb46dac2d671221d9c0e972e8db89961b3e7c2)) + + + ## [8.0.3](https://github.com/NativeScript/NativeScript/compare/8.0.2-core...8.0.3) (2021-04-24) diff --git a/package.json b/package.json index ee222d61b..f2efb39bd 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "nativescript", - "version": "8.0.3", + "version": "8.0.4", "license": "MIT", "scripts": { "clean": "git clean -f -X -d --exclude=!.idea/ --exclude=!.vscode/*", diff --git a/packages/core/README.md b/packages/core/README.md new file mode 100644 index 000000000..2d58b4327 --- /dev/null +++ b/packages/core/README.md @@ -0,0 +1,11 @@ +

+ + NativeScript + +

+ +## @nativescript/core + +A JavaScript library providing an easy to use api for interacting with iOS and Android platform APIs. + +[Learn more at docs.nativescript.org](https://docs.nativescript.org/) \ No newline at end of file diff --git a/packages/core/package.json b/packages/core/package.json index fd8d28c59..7ac333f7c 100644 --- a/packages/core/package.json +++ b/packages/core/package.json @@ -2,8 +2,8 @@ "name": "@nativescript/core", "main": "index", "types": "index.d.ts", - "description": "NativeScript Core Modules", - "version": "8.0.3", + "description": "A JavaScript library providing an easy to use api for interacting with iOS and Android platform APIs.", + "version": "8.0.4", "homepage": "https://nativescript.org", "repository": { "type": "git", diff --git a/workspace.json b/workspace.json index 2db98e0e1..5b14b219c 100644 --- a/workspace.json +++ b/workspace.json @@ -132,6 +132,7 @@ "./node_modules/.bin/tsc -p packages/core/tsconfig.lib.json", "./node_modules/.bin/copyfiles -e \"packages/core/__tests__/**/*\" \"packages/core/**/*.d.ts\" dist && ./node_modules/.bin/copyfiles -e \"packages/core/__tests__/**/*\" \"packages/core/js-libs/**/*\" dist && ./node_modules/.bin/copyfiles -e \"packages/core/__tests__/**/*\" \"packages/core/cli-hooks/**/*.js\" dist && ./node_modules/.bin/copyfiles -e \"packages/core/__tests__/**/*\" \"packages/core/platforms/**/*\" dist && ./node_modules/.bin/copyfiles -e \"packages/core/__tests__/**/*\" \"packages/core/fetch/**/*\" dist && ./node_modules/.bin/copyfiles -e \"packages/core/__tests__/**/*\" \"packages/core/css/**/*\" dist && ./node_modules/.bin/copyfiles -e \"packages/core/__tests__/**/*\" \"packages/core/css-value/**/*\" dist", "cp packages/core/package.json dist/packages/core", + "cp packages/core/README.md dist/packages/core", "cp LICENSE dist/packages/core", "cd dist/packages/core && npm pack && mv *.tgz .." ], From 6d91c2a0195e07c182d2fccfb9c6f7d783acc4b7 Mon Sep 17 00:00:00 2001 From: Janos Hrubos <33330538+janoshrubos@users.noreply.github.com> Date: Thu, 6 May 2021 16:49:07 +0200 Subject: [PATCH 03/24] feat(docs): typedoc api reference (#9378) --- package.json | 1 + tools/scripts/api-extractor.json | 675 ++++++++++++++-------------- tools/scripts/build-docs.sh | 28 +- tools/scripts/tsconfig.typedoc.json | 68 ++- 4 files changed, 374 insertions(+), 398 deletions(-) diff --git a/package.json b/package.json index f2efb39bd..4dfa0f1c8 100644 --- a/package.json +++ b/package.json @@ -66,6 +66,7 @@ "ts-node": "9.1.1", "ts-patch": "^1.3.0", "tslint": "6.1.3", + "typedoc": "^0.20.14", "typescript": "4.1.4", "webpack": "~4.44.1", "webpack-cli": "~3.3.12" diff --git a/tools/scripts/api-extractor.json b/tools/scripts/api-extractor.json index 5abc9d315..5d842e880 100644 --- a/tools/scripts/api-extractor.json +++ b/tools/scripts/api-extractor.json @@ -2,367 +2,364 @@ * Config file for API Extractor. For more info, please visit: https://api-extractor.com */ { - "$schema": "https://developer.microsoft.com/json-schemas/api-extractor/v7/api-extractor.schema.json", + "$schema": "https://developer.microsoft.com/json-schemas/api-extractor/v7/api-extractor.schema.json", - /** - * Optionally specifies another JSON config file that this file extends from. This provides a way for - * standard settings to be shared across multiple projects. - * - * If the path starts with "./" or "../", the path is resolved relative to the folder of the file that contains - * the "extends" field. Otherwise, the first path segment is interpreted as an NPM package name, and will be - * resolved using NodeJS require(). - * - * SUPPORTED TOKENS: none - * DEFAULT VALUE: "" - */ - // "extends": "./shared/api-extractor-base.json" - // "extends": "my-package/include/api-extractor-base.json" + /** + * Optionally specifies another JSON config file that this file extends from. This provides a way for + * standard settings to be shared across multiple projects. + * + * If the path starts with "./" or "../", the path is resolved relative to the folder of the file that contains + * the "extends" field. Otherwise, the first path segment is interpreted as an NPM package name, and will be + * resolved using NodeJS require(). + * + * SUPPORTED TOKENS: none + * DEFAULT VALUE: "" + */ + // "extends": "./shared/api-extractor-base.json" + // "extends": "my-package/include/api-extractor-base.json" - /** - * Determines the "" token that can be used with other config file settings. The project folder - * typically contains the tsconfig.json and package.json config files, but the path is user-defined. - * - * The path is resolved relative to the folder of the config file that contains the setting. - * - * The default value for "projectFolder" is the token "", which means the folder is determined by traversing - * parent folders, starting from the folder containing api-extractor.json, and stopping at the first folder - * that contains a tsconfig.json file. If a tsconfig.json file cannot be found in this way, then an error - * will be reported. - * - * SUPPORTED TOKENS: - * DEFAULT VALUE: "" - */ - "projectFolder": "nativescript-core", + /** + * Determines the "" token that can be used with other config file settings. The project folder + * typically contains the tsconfig.json and package.json config files, but the path is user-defined. + * + * The path is resolved relative to the folder of the config file that contains the setting. + * + * The default value for "projectFolder" is the token "", which means the folder is determined by traversing + * parent folders, starting from the folder containing api-extractor.json, and stopping at the first folder + * that contains a tsconfig.json file. If a tsconfig.json file cannot be found in this way, then an error + * will be reported. + * + * SUPPORTED TOKENS: + * DEFAULT VALUE: "" + */ + "projectFolder": "../../packages/core", - /** - * (REQUIRED) Specifies the .d.ts file to be used as the starting point for analysis. API Extractor - * analyzes the symbols exported by this module. - * - * The file extension must be ".d.ts" and not ".ts". - * - * The path is resolved relative to the folder of the config file that contains the setting; to change this, - * prepend a folder token such as "". - * - * SUPPORTED TOKENS: , , - */ - "mainEntryPointFilePath": "/index.d.ts", + /** + * (REQUIRED) Specifies the .d.ts file to be used as the starting point for analysis. API Extractor + * analyzes the symbols exported by this module. + * + * The file extension must be ".d.ts" and not ".ts". + * + * The path is resolved relative to the folder of the config file that contains the setting; to change this, + * prepend a folder token such as "". + * + * SUPPORTED TOKENS: , , + */ + "mainEntryPointFilePath": "/index.d.ts", - /** - * Determines how the TypeScript compiler engine will be invoked by API Extractor. - */ - "compiler": { - /** - * Specifies the path to the tsconfig.json file to be used by API Extractor when analyzing the project. - * - * The path is resolved relative to the folder of the config file that contains the setting; to change this, - * prepend a folder token such as "". - * - * Note: This setting will be ignored if "overrideTsconfig" is used. - * - * SUPPORTED TOKENS: , , - * DEFAULT VALUE: "/tsconfig.json" - */ - "tsconfigFilePath": "/tsconfig.json", + /** + * Determines how the TypeScript compiler engine will be invoked by API Extractor. + */ + "compiler": { + /** + * Specifies the path to the tsconfig.json file to be used by API Extractor when analyzing the project. + * + * The path is resolved relative to the folder of the config file that contains the setting; to change this, + * prepend a folder token such as "". + * + * Note: This setting will be ignored if "overrideTsconfig" is used. + * + * SUPPORTED TOKENS: , , + * DEFAULT VALUE: "/tsconfig.json" + */ + "tsconfigFilePath": "/tsconfig.json" - /** - * Provides a compiler configuration that will be used instead of reading the tsconfig.json file from disk. - * The object must conform to the TypeScript tsconfig schema: - * - * http://json.schemastore.org/tsconfig - * - * If omitted, then the tsconfig.json file will be read from the "projectFolder". - * - * DEFAULT VALUE: no overrideTsconfig section - */ - // "overrideTsconfig": { - // . . . - // } + /** + * Provides a compiler configuration that will be used instead of reading the tsconfig.json file from disk. + * The object must conform to the TypeScript tsconfig schema: + * + * http://json.schemastore.org/tsconfig + * + * If omitted, then the tsconfig.json file will be read from the "projectFolder". + * + * DEFAULT VALUE: no overrideTsconfig section + */ + // "overrideTsconfig": { + // . . . + // } - /** - * This option causes the compiler to be invoked with the --skipLibCheck option. This option is not recommended - * and may cause API Extractor to produce incomplete or incorrect declarations, but it may be required when - * dependencies contain declarations that are incompatible with the TypeScript engine that API Extractor uses - * for its analysis. Where possible, the underlying issue should be fixed rather than relying on skipLibCheck. - * - * DEFAULT VALUE: false - */ - // "skipLibCheck": true, - }, + /** + * This option causes the compiler to be invoked with the --skipLibCheck option. This option is not recommended + * and may cause API Extractor to produce incomplete or incorrect declarations, but it may be required when + * dependencies contain declarations that are incompatible with the TypeScript engine that API Extractor uses + * for its analysis. Where possible, the underlying issue should be fixed rather than relying on skipLibCheck. + * + * DEFAULT VALUE: false + */ + // "skipLibCheck": true, + }, - /** - * Configures how the API report file (*.api.md) will be generated. - */ - "apiReport": { - /** - * (REQUIRED) Whether to generate an API report. - */ - "enabled": true, + /** + * Configures how the API report file (*.api.md) will be generated. + */ + "apiReport": { + /** + * (REQUIRED) Whether to generate an API report. + */ + "enabled": true, - /** - * The filename for the API report files. It will be combined with "reportFolder" or "reportTempFolder" to produce - * a full file path. - * - * The file extension should be ".api.md", and the string should not contain a path separator such as "\" or "/". - * - * SUPPORTED TOKENS: , - * DEFAULT VALUE: ".api.md" - */ - "reportFileName": ".api.md", + /** + * The filename for the API report files. It will be combined with "reportFolder" or "reportTempFolder" to produce + * a full file path. + * + * The file extension should be ".api.md", and the string should not contain a path separator such as "\" or "/". + * + * SUPPORTED TOKENS: , + * DEFAULT VALUE: ".api.md" + */ + "reportFileName": ".api.md", - /** - * Specifies the folder where the API report file is written. The file name portion is determined by - * the "reportFileName" setting. - * - * The API report file is normally tracked by Git. Changes to it can be used to trigger a branch policy, - * e.g. for an API review. - * - * The path is resolved relative to the folder of the config file that contains the setting; to change this, - * prepend a folder token such as "". - * - * SUPPORTED TOKENS: , , - * DEFAULT VALUE: "/etc/" - */ - "reportFolder": "api-reports/", + /** + * Specifies the folder where the API report file is written. The file name portion is determined by + * the "reportFileName" setting. + * + * The API report file is normally tracked by Git. Changes to it can be used to trigger a branch policy, + * e.g. for an API review. + * + * The path is resolved relative to the folder of the config file that contains the setting; to change this, + * prepend a folder token such as "". + * + * SUPPORTED TOKENS: , , + * DEFAULT VALUE: "/etc/" + */ + "reportFolder": "api-reports/" - /** - * Specifies the folder where the temporary report file is written. The file name portion is determined by - * the "reportFileName" setting. - * - * After the temporary file is written to disk, it is compared with the file in the "reportFolder". - * If they are different, a production build will fail. - * - * The path is resolved relative to the folder of the config file that contains the setting; to change this, - * prepend a folder token such as "". - * - * SUPPORTED TOKENS: , , - * DEFAULT VALUE: "/temp/" - */ - // "reportTempFolder": "/temp/" - }, + /** + * Specifies the folder where the temporary report file is written. The file name portion is determined by + * the "reportFileName" setting. + * + * After the temporary file is written to disk, it is compared with the file in the "reportFolder". + * If they are different, a production build will fail. + * + * The path is resolved relative to the folder of the config file that contains the setting; to change this, + * prepend a folder token such as "". + * + * SUPPORTED TOKENS: , , + * DEFAULT VALUE: "/temp/" + */ + // "reportTempFolder": "/temp/" + }, - /** - * Configures how the doc model file (*.api.json) will be generated. - */ - "docModel": { - /** - * (REQUIRED) Whether to generate a doc model file. - */ - "enabled": true, + /** + * Configures how the doc model file (*.api.json) will be generated. + */ + "docModel": { + /** + * (REQUIRED) Whether to generate a doc model file. + */ + "enabled": true - /** - * The output path for the doc model file. The file extension should be ".api.json". - * - * The path is resolved relative to the folder of the config file that contains the setting; to change this, - * prepend a folder token such as "". - * - * SUPPORTED TOKENS: , , - * DEFAULT VALUE: "/temp/.api.json" - */ - // "apiJsonFilePath": "/temp/.api.json" - }, + /** + * The output path for the doc model file. The file extension should be ".api.json". + * + * The path is resolved relative to the folder of the config file that contains the setting; to change this, + * prepend a folder token such as "". + * + * SUPPORTED TOKENS: , , + * DEFAULT VALUE: "/temp/.api.json" + */ + // "apiJsonFilePath": "/temp/.api.json" + }, - /** - * Configures how the .d.ts rollup file will be generated. - */ - "dtsRollup": { - /** - * (REQUIRED) Whether to generate the .d.ts rollup file. - */ - "enabled": true, + /** + * Configures how the .d.ts rollup file will be generated. + */ + "dtsRollup": { + /** + * (REQUIRED) Whether to generate the .d.ts rollup file. + */ + "enabled": true, - /** - * Specifies the output path for a .d.ts rollup file to be generated without any trimming. - * This file will include all declarations that are exported by the main entry point. - * - * If the path is an empty string, then this file will not be written. - * - * The path is resolved relative to the folder of the config file that contains the setting; to change this, - * prepend a folder token such as "". - * - * SUPPORTED TOKENS: , , - * DEFAULT VALUE: "/dist/.d.ts" - */ - "untrimmedFilePath": "/nativescript-core.d.ts", + /** + * Specifies the output path for a .d.ts rollup file to be generated without any trimming. + * This file will include all declarations that are exported by the main entry point. + * + * If the path is an empty string, then this file will not be written. + * + * The path is resolved relative to the folder of the config file that contains the setting; to change this, + * prepend a folder token such as "". + * + * SUPPORTED TOKENS: , , + * DEFAULT VALUE: "/dist/.d.ts" + */ + "untrimmedFilePath": "/nativescript-core.d.ts" - /** - * Specifies the output path for a .d.ts rollup file to be generated with trimming for a "beta" release. - * This file will include only declarations that are marked as "@public" or "@beta". - * - * The path is resolved relative to the folder of the config file that contains the setting; to change this, - * prepend a folder token such as "". - * - * SUPPORTED TOKENS: , , - * DEFAULT VALUE: "" - */ - // "betaTrimmedFilePath": "/dist/-beta.d.ts", + /** + * Specifies the output path for a .d.ts rollup file to be generated with trimming for a "beta" release. + * This file will include only declarations that are marked as "@public" or "@beta". + * + * The path is resolved relative to the folder of the config file that contains the setting; to change this, + * prepend a folder token such as "". + * + * SUPPORTED TOKENS: , , + * DEFAULT VALUE: "" + */ + // "betaTrimmedFilePath": "/dist/-beta.d.ts", + /** + * Specifies the output path for a .d.ts rollup file to be generated with trimming for a "public" release. + * This file will include only declarations that are marked as "@public". + * + * If the path is an empty string, then this file will not be written. + * + * The path is resolved relative to the folder of the config file that contains the setting; to change this, + * prepend a folder token such as "". + * + * SUPPORTED TOKENS: , , + * DEFAULT VALUE: "" + */ + // "publicTrimmedFilePath": "/dist/-public.d.ts", - /** - * Specifies the output path for a .d.ts rollup file to be generated with trimming for a "public" release. - * This file will include only declarations that are marked as "@public". - * - * If the path is an empty string, then this file will not be written. - * - * The path is resolved relative to the folder of the config file that contains the setting; to change this, - * prepend a folder token such as "". - * - * SUPPORTED TOKENS: , , - * DEFAULT VALUE: "" - */ - // "publicTrimmedFilePath": "/dist/-public.d.ts", + /** + * When a declaration is trimmed, by default it will be replaced by a code comment such as + * "Excluded from this release type: exampleMember". Set "omitTrimmingComments" to true to remove the + * declaration completely. + * + * DEFAULT VALUE: false + */ + // "omitTrimmingComments": true + }, - /** - * When a declaration is trimmed, by default it will be replaced by a code comment such as - * "Excluded from this release type: exampleMember". Set "omitTrimmingComments" to true to remove the - * declaration completely. - * - * DEFAULT VALUE: false - */ - // "omitTrimmingComments": true - }, + /** + * Configures how the tsdoc-metadata.json file will be generated. + */ + "tsdocMetadata": { + /** + * Whether to generate the tsdoc-metadata.json file. + * + * DEFAULT VALUE: true + */ + // "enabled": true, + /** + * Specifies where the TSDoc metadata file should be written. + * + * The path is resolved relative to the folder of the config file that contains the setting; to change this, + * prepend a folder token such as "". + * + * The default value is "", which causes the path to be automatically inferred from the "tsdocMetadata", + * "typings" or "main" fields of the project's package.json. If none of these fields are set, the lookup + * falls back to "tsdoc-metadata.json" in the package folder. + * + * SUPPORTED TOKENS: , , + * DEFAULT VALUE: "" + */ + // "tsdocMetadataFilePath": "/dist/tsdoc-metadata.json" + }, - /** - * Configures how the tsdoc-metadata.json file will be generated. - */ - "tsdocMetadata": { - /** - * Whether to generate the tsdoc-metadata.json file. - * - * DEFAULT VALUE: true - */ - // "enabled": true, + /** + * Configures how API Extractor reports error and warning messages produced during analysis. + * + * There are three sources of messages: compiler messages, API Extractor messages, and TSDoc messages. + */ + "messages": { + /** + * Configures handling of diagnostic messages reported by the TypeScript compiler engine while analyzing + * the input .d.ts files. + * + * TypeScript message identifiers start with "TS" followed by an integer. For example: "TS2551" + * + * DEFAULT VALUE: A single "default" entry with logLevel=warning. + */ + "compilerMessageReporting": { + /** + * Configures the default routing for messages that don't match an explicit rule in this table. + */ + "default": { + /** + * Specifies whether the message should be written to the the tool's output log. Note that + * the "addToApiReportFile" property may supersede this option. + * + * Possible values: "error", "warning", "none" + * + * Errors cause the build to fail and return a nonzero exit code. Warnings cause a production build fail + * and return a nonzero exit code. For a non-production build (e.g. when "api-extractor run" includes + * the "--local" option), the warning is displayed but the build will not fail. + * + * DEFAULT VALUE: "warning" + */ + "logLevel": "error" //"warning", - /** - * Specifies where the TSDoc metadata file should be written. - * - * The path is resolved relative to the folder of the config file that contains the setting; to change this, - * prepend a folder token such as "". - * - * The default value is "", which causes the path to be automatically inferred from the "tsdocMetadata", - * "typings" or "main" fields of the project's package.json. If none of these fields are set, the lookup - * falls back to "tsdoc-metadata.json" in the package folder. - * - * SUPPORTED TOKENS: , , - * DEFAULT VALUE: "" - */ - // "tsdocMetadataFilePath": "/dist/tsdoc-metadata.json" - }, + /** + * When addToApiReportFile is true: If API Extractor is configured to write an API report file (.api.md), + * then the message will be written inside that file; otherwise, the message is instead logged according to + * the "logLevel" option. + * + * DEFAULT VALUE: false + */ + // "addToApiReportFile": false + } - /** - * Configures how API Extractor reports error and warning messages produced during analysis. - * - * There are three sources of messages: compiler messages, API Extractor messages, and TSDoc messages. - */ - "messages": { - /** - * Configures handling of diagnostic messages reported by the TypeScript compiler engine while analyzing - * the input .d.ts files. - * - * TypeScript message identifiers start with "TS" followed by an integer. For example: "TS2551" - * - * DEFAULT VALUE: A single "default" entry with logLevel=warning. - */ - "compilerMessageReporting": { - /** - * Configures the default routing for messages that don't match an explicit rule in this table. - */ - "default": { - /** - * Specifies whether the message should be written to the the tool's output log. Note that - * the "addToApiReportFile" property may supersede this option. - * - * Possible values: "error", "warning", "none" - * - * Errors cause the build to fail and return a nonzero exit code. Warnings cause a production build fail - * and return a nonzero exit code. For a non-production build (e.g. when "api-extractor run" includes - * the "--local" option), the warning is displayed but the build will not fail. - * - * DEFAULT VALUE: "warning" - */ - "logLevel": "error", //"warning", + // "TS2551": { + // "logLevel": "warning", + // "addToApiReportFile": true + // }, + // + // . . . + }, - /** - * When addToApiReportFile is true: If API Extractor is configured to write an API report file (.api.md), - * then the message will be written inside that file; otherwise, the message is instead logged according to - * the "logLevel" option. - * - * DEFAULT VALUE: false - */ - // "addToApiReportFile": false - }, + /** + * Configures handling of messages reported by API Extractor during its analysis. + * + * API Extractor message identifiers start with "ae-". For example: "ae-extra-release-tag" + * + * DEFAULT VALUE: See api-extractor-defaults.json for the complete table of extractorMessageReporting mappings + */ + "extractorMessageReporting": { + "default": { + "logLevel": "warning" + // "addToApiReportFile": false + }, + "ae-missing-release-tag": { + "logLevel": "none", + "addToApiReportFile": false + } + // "ae-extra-release-tag": { + // "logLevel": "warning", + // "addToApiReportFile": true + // }, + // + // . . . + }, - // "TS2551": { - // "logLevel": "warning", - // "addToApiReportFile": true - // }, - // - // . . . - }, - - /** - * Configures handling of messages reported by API Extractor during its analysis. - * - * API Extractor message identifiers start with "ae-". For example: "ae-extra-release-tag" - * - * DEFAULT VALUE: See api-extractor-defaults.json for the complete table of extractorMessageReporting mappings - */ - "extractorMessageReporting": { - "default": { - "logLevel": "warning", - // "addToApiReportFile": false - }, - "ae-missing-release-tag": { - "logLevel": "none", - "addToApiReportFile": false - }, - // "ae-extra-release-tag": { - // "logLevel": "warning", - // "addToApiReportFile": true - // }, - // - // . . . - }, - - /** - * Configures handling of messages reported by the TSDoc parser when analyzing code comments. - * - * TSDoc message identifiers start with "tsdoc-". For example: "tsdoc-link-tag-unescaped-text" - * - * DEFAULT VALUE: A single "default" entry with logLevel=warning. - */ - "tsdocMessageReporting": { - "default": { - "logLevel": "warning", - // "addToApiReportFile": false - }, - "tsdoc-param-tag-missing-hyphen": { - "logLevel": "none", - "addToApiReportFile": false - }, - "tsdoc-undefined-tag": { - "logLevel": "none", - "addToApiReportFile": false - }, - "tsdoc-unsupported-tag": { - "logLevel": "none", - "addToApiReportFile": false - }, - "tsdoc-escape-greater-than": { - "logLevel": "none", - "addToApiReportFile": false - }, - "tsdoc-malformed-html-name": { - "logLevel": "none", - "addToApiReportFile": false - }, - - // "tsdoc-link-tag-unescaped-text": { - // "logLevel": "warning", - // "addToApiReportFile": true - // }, - // - // . . . - } - } + /** + * Configures handling of messages reported by the TSDoc parser when analyzing code comments. + * + * TSDoc message identifiers start with "tsdoc-". For example: "tsdoc-link-tag-unescaped-text" + * + * DEFAULT VALUE: A single "default" entry with logLevel=warning. + */ + "tsdocMessageReporting": { + "default": { + "logLevel": "warning" + // "addToApiReportFile": false + }, + "tsdoc-param-tag-missing-hyphen": { + "logLevel": "none", + "addToApiReportFile": false + }, + "tsdoc-undefined-tag": { + "logLevel": "none", + "addToApiReportFile": false + }, + "tsdoc-unsupported-tag": { + "logLevel": "none", + "addToApiReportFile": false + }, + "tsdoc-escape-greater-than": { + "logLevel": "none", + "addToApiReportFile": false + }, + "tsdoc-malformed-html-name": { + "logLevel": "none", + "addToApiReportFile": false + } + // "tsdoc-link-tag-unescaped-text": { + // "logLevel": "warning", + // "addToApiReportFile": true + // }, + // + // . . . + } + } } diff --git a/tools/scripts/build-docs.sh b/tools/scripts/build-docs.sh index dcf6cd329..f537cb619 100755 --- a/tools/scripts/build-docs.sh +++ b/tools/scripts/build-docs.sh @@ -3,7 +3,6 @@ set -e ENV="${ENV:-dev}" DIST_DIR="bin/dist" -TARGET_DIR="$DIST_DIR/snippets" PACKAGE_VERSION="${PACKAGE_VERSION:-0.0.0}" archive_dist_dir() { @@ -13,44 +12,27 @@ archive_dist_dir() { npm_install() { # Don't install modules twice. - MARKER_FILE="./node_modules/installed" if [ ! -f "$MARKER_FILE" ] ; then + # Fixes perm issue while installing + npm i -g npm@^6.13.6 npm install npm install @types/handlebars@4.0.33 touch "$MARKER_FILE" fi } -extract_snippets() { - BIN="./node_modules/markdown-snippet-injector/extract.js" - - npm install markdown-snippet-injector - - for SNIPPET_DIR in {tests/app,apps/app,nativescript-core} ; do - echo "Extracting snippets from: $SNIPPET_DIR" - node "$BIN" --root="$SNIPPET_DIR" --target="$TARGET_DIR" \ - --sourceext=".js|.ts|.xml|.html|.css" - done - - archive_dist_dir "snippets" -} - extract_apiref() { APIREF_DIR="$DIST_DIR/api-reference" rm -rf "$APIREF_DIR" - npm_install - npm run typedoc +# npm_install + npx typedoc --tsconfig tools/scripts/tsconfig.typedoc.json - mv "$DIST_DIR/apiref" "$APIREF_DIR" + mv "dist/apiref" "$APIREF_DIR" archive_dist_dir "api-reference" } -rm -rf "$TARGET_DIR" -mkdir -p "$TARGET_DIR" - if [ "${BASH_SOURCE[0]}" == "$0" ] ; then - extract_snippets extract_apiref fi diff --git a/tools/scripts/tsconfig.typedoc.json b/tools/scripts/tsconfig.typedoc.json index e48c2cea4..710390f31 100644 --- a/tools/scripts/tsconfig.typedoc.json +++ b/tools/scripts/tsconfig.typedoc.json @@ -1,37 +1,33 @@ { - "compilerOptions": { - "noEmitOnError": true, - "noEmitHelpers": true, - "target": "es5", - "module": "commonjs", - "declaration": false, - "noImplicitAny": false, - "noImplicitUseStrict": true, - "experimentalDecorators": true, - "lib": [ - "es6", - "dom" - ] - }, - "include": [ - "nativescript-core/**/*.d.ts" - ], - "exclude": [ - "nativescript-core/index.d.ts", - "nativescript-core/ui/index.d.ts", - "nativescript-core/ui/layouts/index.d.ts", - - "nativescript-core/references.d.ts", - "nativescript-core/node_modules", - "nativescript-core/ui/frame/transition-definitions.android.d.ts", - "nativescript-core/platforms/*" - ], - "typedocOptions": { - "out": "bin/dist/apiref", - "includeDeclarations": true, - "name": "NativeScript", - "theme": "./node_modules/nativescript-typedoc-theme", - "excludeExternals": true, - "externalPattern": "**/+(tns-core-modules|module).d.ts" - } -} \ No newline at end of file + "extends": "../../tsconfig.json", + "compilerOptions": { + "outDir": "../../dist/packages/core", + "target": "es5", + "module": "commonjs", + "declaration": false, + "lib": ["es6", "dom"] + }, + "include": ["../../packages/core/**/*.d.ts"], + "exclude": [ + // "../../packages/core/index.d.ts", + + "../../packages/core/ui/layouts/index.d.ts", + + // "../../packages/core/__tests__", + + "../../packages/core/references.d.ts", + "../../packages/core/node_modules", + "../../node_modules", + "../../packages/core/ui/frame/transition-definitions.android.d.ts", + "../../packages/core/platforms/*" + ], + "typedocOptions": { + "entryPoints": ["../../packages/core/index.d.ts", "../../packages/core"], + "out": "dist/apiref", + "name": "NativeScript", + "theme": "/Users/janoshrubosimac/Code/nativescript-typedoc-theme", + "excludeExternals": true, + "externalPattern": "**/+(tns-core-modules|module).d.ts", + "exclude": ["../../packages/core/__tests__", "../../packages/core/**/*.ts"] + } +} From 879b5f6a221cbcfc3e718206b38bca9fc84d8ed8 Mon Sep 17 00:00:00 2001 From: Janos Hrubos <33330538+janoshrubos@users.noreply.github.com> Date: Thu, 6 May 2021 17:50:27 +0200 Subject: [PATCH 04/24] chore: typedoc api reference theme 1.0.0 (#9379) --- package.json | 1 + tools/scripts/tsconfig.typedoc.json | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/package.json b/package.json index 4dfa0f1c8..ef477e25a 100644 --- a/package.json +++ b/package.json @@ -54,6 +54,7 @@ "mocha-typescript": "^1.1.17", "module-alias": "^2.2.2", "nativescript": "~7.2.0", + "nativescript-typedoc-theme": "1.0.0", "parse-css": "git+https://github.com/tabatkins/parse-css.git", "parserlib": "^1.1.1", "prettier": "~2.2.1", diff --git a/tools/scripts/tsconfig.typedoc.json b/tools/scripts/tsconfig.typedoc.json index 710390f31..b0db2bf83 100644 --- a/tools/scripts/tsconfig.typedoc.json +++ b/tools/scripts/tsconfig.typedoc.json @@ -25,7 +25,7 @@ "entryPoints": ["../../packages/core/index.d.ts", "../../packages/core"], "out": "dist/apiref", "name": "NativeScript", - "theme": "/Users/janoshrubosimac/Code/nativescript-typedoc-theme", + "theme": "../../node_modules/nativescript-typedoc-theme", "excludeExternals": true, "externalPattern": "**/+(tns-core-modules|module).d.ts", "exclude": ["../../packages/core/__tests__", "../../packages/core/**/*.ts"] From f3111514960ada615a69418b906620a638f8f476 Mon Sep 17 00:00:00 2001 From: Osei Fortune Date: Sun, 9 May 2021 22:29:44 -0400 Subject: [PATCH 05/24] fix(android): image asset handling regarding requestLegacyExternalStorage (#9373) --- packages/core/global-types.d.ts | 24 +- packages/core/image-asset/index.android.ts | 79 ++---- .../platforms/android/widgets-release.aar | Bin 219757 -> 227517 bytes .../lib/android/org.nativescript.widgets.d.ts | 36 ++- .../android/widgets/build.gradle | 3 +- .../nativescript/widgets/Image/Fetcher.java | 70 ++++- .../nativescript/widgets/Image/Worker.java | 8 +- .../java/org/nativescript/widgets/Utils.java | 257 +++++++++++++++++- 8 files changed, 380 insertions(+), 97 deletions(-) diff --git a/packages/core/global-types.d.ts b/packages/core/global-types.d.ts index d7f6e4ca9..94aaf956e 100644 --- a/packages/core/global-types.d.ts +++ b/packages/core/global-types.d.ts @@ -349,31 +349,31 @@ declare class WeakRef { } /** -* Create a Java long from a number -*/ + * Create a Java long from a number + */ declare function long(value: number): any; /** -* Create a Java byte from a number -*/ + * Create a Java byte from a number + */ declare function byte(value: number): any; /** -* Create a Java short from a number -*/ + * Create a Java short from a number + */ declare function short(value: number): any; /** -* Create a Java double from a number -*/ + * Create a Java double from a number + */ declare function double(value: number): any; /** -* Create a Java float from a number -*/ + * Create a Java float from a number + */ declare function float(value: number): any; /** -* Create a Java char from a string -*/ + * Create a Java char from a string + */ declare function char(value: string): any; diff --git a/packages/core/image-asset/index.android.ts b/packages/core/image-asset/index.android.ts index 72936fc03..055caeff6 100644 --- a/packages/core/image-asset/index.android.ts +++ b/packages/core/image-asset/index.android.ts @@ -1,6 +1,7 @@ import { ImageAssetBase, getRequestedImageSize } from './image-asset-common'; import { path as fsPath, knownFolders } from '../file-system'; - +import { ad } from '../utils'; +import { Screen } from '../platform'; export * from './image-asset-common'; export class ImageAsset extends ImageAssetBase { @@ -25,66 +26,20 @@ export class ImageAsset extends ImageAssetBase { } public getImageAsync(callback: (image, error) => void) { - const bitmapOptions = new android.graphics.BitmapFactory.Options(); - bitmapOptions.inJustDecodeBounds = true; - // read only the file size - let bitmap = android.graphics.BitmapFactory.decodeFile(this.android, bitmapOptions); - const sourceSize = { - width: bitmapOptions.outWidth, - height: bitmapOptions.outHeight, - }; - const requestedSize = getRequestedImageSize(sourceSize, this.options); - - const sampleSize = org.nativescript.widgets.image.Fetcher.calculateInSampleSize(bitmapOptions.outWidth, bitmapOptions.outHeight, requestedSize.width, requestedSize.height); - - const finalBitmapOptions = new android.graphics.BitmapFactory.Options(); - finalBitmapOptions.inSampleSize = sampleSize; - try { - let error = null; - // read as minimum bitmap as possible (slightly bigger than the requested size) - bitmap = android.graphics.BitmapFactory.decodeFile(this.android, finalBitmapOptions); - - if (bitmap) { - if (requestedSize.width !== bitmap.getWidth() || requestedSize.height !== bitmap.getHeight()) { - // scale to exact size - bitmap = android.graphics.Bitmap.createScaledBitmap(bitmap, requestedSize.width, requestedSize.height, true); - } - - const rotationAngle = calculateAngleFromFile(this.android); - if (rotationAngle !== 0) { - const matrix = new android.graphics.Matrix(); - matrix.postRotate(rotationAngle); - bitmap = android.graphics.Bitmap.createBitmap(bitmap, 0, 0, bitmap.getWidth(), bitmap.getHeight(), matrix, true); - } - } - - if (!bitmap) { - error = "Asset '" + this.android + "' cannot be found."; - } - - callback(bitmap, error); - } catch (ex) { - callback(null, ex); - } + org.nativescript.widgets.Utils.loadImageAsync( + ad.getApplicationContext(), + this.android, + JSON.stringify(this.options || {}), + Screen.mainScreen.widthPixels, + Screen.mainScreen.heightPixels, + new org.nativescript.widgets.Utils.AsyncImageCallback({ + onSuccess(bitmap) { + callback(bitmap, null); + }, + onError(ex) { + callback(null, ex); + }, + }) + ); } } - -function calculateAngleFromFile(filename: string) { - let rotationAngle = 0; - const ei = new android.media.ExifInterface(filename); - const orientation = ei.getAttributeInt(android.media.ExifInterface.TAG_ORIENTATION, android.media.ExifInterface.ORIENTATION_NORMAL); - - switch (orientation) { - case android.media.ExifInterface.ORIENTATION_ROTATE_90: - rotationAngle = 90; - break; - case android.media.ExifInterface.ORIENTATION_ROTATE_180: - rotationAngle = 180; - break; - case android.media.ExifInterface.ORIENTATION_ROTATE_270: - rotationAngle = 270; - break; - } - - return rotationAngle; -} diff --git a/packages/core/platforms/android/widgets-release.aar b/packages/core/platforms/android/widgets-release.aar index 0ece63e2ace464df18bb7497bfc103a2156e3b9a..8d51acb3580704dd29145d78b2195e24427e9750 100644 GIT binary patch delta 75228 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 !>xK$c&1l_wTI@_RI>F!Kh`W=2 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 diff --git a/packages/types-android/src/lib/android/org.nativescript.widgets.d.ts b/packages/types-android/src/lib/android/org.nativescript.widgets.d.ts index cc07acac5..fa1424499 100644 --- a/packages/types-android/src/lib/android/org.nativescript.widgets.d.ts +++ b/packages/types-android/src/lib/android/org.nativescript.widgets.d.ts @@ -1,11 +1,6 @@ declare module org { module nativescript { module widgets { - - export class Utils { - public static drawBoxShadow(view: android.view.View, value: string): void; - } - export class BoxShadowDrawable { public constructor(drawable: android.graphics.drawable.Drawable, value: string); public getWrappedDrawable(): android.graphics.drawable.Drawable; @@ -632,3 +627,34 @@ } } } + +declare module org { + export module nativescript { + export module widgets { + export class Utils { + public static class: java.lang.Class; + public static loadImageAsync(param0: globalAndroid.content.Context, param1: string, param2: string, param3: number, param4: number, param5: org.nativescript.widgets.Utils.AsyncImageCallback): void; + public static drawBoxShadow(param0: globalAndroid.view.View, param1: string): void; + public constructor(); + } + export module Utils { + export class AsyncImageCallback { + public static class: java.lang.Class; + /** + * Constructs a new instance of the org.nativescript.widgets.Utils$AsyncImageCallback interface with the provided implementation. An empty constructor exists calling super() when extending the interface class. + */ + public constructor(implementation: { + onSuccess(param0: globalAndroid.graphics.Bitmap): void; + onError(param0: java.lang.Exception): void; + }); + public constructor(); + public onSuccess(param0: globalAndroid.graphics.Bitmap): void; + public onError(param0: java.lang.Exception): void; + } + export class ImageAssetOptions { + public static class: java.lang.Class; + } + } + } + } +} diff --git a/packages/ui-mobile-base/android/widgets/build.gradle b/packages/ui-mobile-base/android/widgets/build.gradle index f7fcfcde0..a8b2f37b6 100644 --- a/packages/ui-mobile-base/android/widgets/build.gradle +++ b/packages/ui-mobile-base/android/widgets/build.gradle @@ -78,6 +78,7 @@ dependencies { implementation 'androidx.viewpager:viewpager:' + androidxVersion implementation 'androidx.fragment:fragment:' + androidxVersion implementation 'androidx.transition:transition:' + androidxVersion + implementation "androidx.exifinterface:exifinterface:1.3.2" } else { println 'Using support library' implementation 'com.android.support:support-v4:' + computeSupportVersion() @@ -97,4 +98,4 @@ task copyAar << { assemble.dependsOn(cleanBuildDir) copyAar.dependsOn(assemble) -build.dependsOn(copyAar) \ No newline at end of file +build.dependsOn(copyAar) diff --git a/packages/ui-mobile-base/android/widgets/src/main/java/org/nativescript/widgets/Image/Fetcher.java b/packages/ui-mobile-base/android/widgets/src/main/java/org/nativescript/widgets/Image/Fetcher.java index 19878b6e4..d182946e2 100644 --- a/packages/ui-mobile-base/android/widgets/src/main/java/org/nativescript/widgets/Image/Fetcher.java +++ b/packages/ui-mobile-base/android/widgets/src/main/java/org/nativescript/widgets/Image/Fetcher.java @@ -17,13 +17,17 @@ package org.nativescript.widgets.image; import android.annotation.TargetApi; +import android.content.ContentResolver; import android.content.Context; import android.content.res.Resources; import android.graphics.Matrix; import android.graphics.Bitmap; import android.graphics.BitmapFactory; -import android.media.ExifInterface; +import androidx.exifinterface.media.ExifInterface; +import android.net.Uri; import android.os.Build; +import android.os.ParcelFileDescriptor; +import android.os.RemoteException; import android.util.Log; import android.util.TypedValue; @@ -34,6 +38,7 @@ import java.io.ByteArrayOutputStream; import java.io.File; import java.io.FileDescriptor; import java.io.FileInputStream; +import java.io.FileNotFoundException; import java.io.IOException; import java.io.InputStream; import java.io.OutputStream; @@ -257,8 +262,9 @@ public class Fetcher extends Worker { if (debuggable > 0) { Log.v(TAG, "process: " + uri); } - - if (uri.startsWith(FILE_PREFIX)) { + if(uri.startsWith(CONTENT_PREFIX)){ + return decodeSampledBitmapFromContent(uri,mResolver , decodeWidth, decodeHeight, keepAspectRatio, getCache()); + }else if (uri.startsWith(FILE_PREFIX)) { String filename = uri.substring(FILE_PREFIX.length()); return decodeSampledBitmapFromFile(filename, decodeWidth, decodeHeight, keepAspectRatio, getCache()); } else if (uri.startsWith(RESOURCE_PREFIX)) { @@ -474,6 +480,62 @@ public class Fetcher extends Worker { return scaleAndRotateBitmap(bitmap, ei, reqWidth, reqHeight, keepAspectRatio); } + private static void closePfd(ParcelFileDescriptor pfd){ + if(pfd != null){ + try { + pfd.close(); + } catch (IOException ignored) {} + } + } + + /** + * Decode and sample down a bitmap from a file to the requested width and height. + * + * @param content The content uri of the file to decode + * @param reqWidth The requested width of the resulting bitmap + * @param reqHeight The requested height of the resulting bitmap + * @param cache The Cache used to find candidate bitmaps for use with inBitmap + * @return A bitmap sampled down from the original with the same aspect ratio and dimensions + * that are equal to or greater than the requested width and height + */ + public static Bitmap decodeSampledBitmapFromContent(String content, ContentResolver resolver, int reqWidth, int reqHeight, + boolean keepAspectRatio, Cache cache) { + + // First decode with inJustDecodeBounds=true to check dimensions + final BitmapFactory.Options options = new BitmapFactory.Options(); + options.inJustDecodeBounds = true; + + + Uri uri = android.net.Uri.parse(content); + ParcelFileDescriptor pfd = null; + try { + pfd = resolver.openFileDescriptor(uri, "r"); + BitmapFactory.decodeFileDescriptor(pfd.getFileDescriptor(), null, options); + } catch (FileNotFoundException e) { + Log.v(TAG, "File not found " + content); + closePfd(pfd); + return null; + } + + + options.inSampleSize = calculateInSampleSize(options.outWidth, options.outHeight, reqWidth, reqHeight); + + // If we're running on Honeycomb or newer, try to use inBitmap + if (Utils.hasHoneycomb()) { + addInBitmapOptions(options, cache); + } + + // Decode bitmap with inSampleSize set + options.inJustDecodeBounds = false; + + final Bitmap bitmap = BitmapFactory.decodeFileDescriptor(pfd.getFileDescriptor(), null, options); + + ExifInterface ei = getExifInterface(pfd.getFileDescriptor()); + closePfd(pfd); + + return scaleAndRotateBitmap(bitmap, ei, reqWidth, reqHeight, keepAspectRatio); + } + private static Bitmap scaleAndRotateBitmap(Bitmap bitmap, ExifInterface ei, int reqWidth, int reqHeight, boolean keepAspectRatio) { if (bitmap == null) { @@ -669,4 +731,4 @@ public class Fetcher extends Worker { } //END_INCLUDE(add_bitmap_options) } -} \ No newline at end of file +} diff --git a/packages/ui-mobile-base/android/widgets/src/main/java/org/nativescript/widgets/Image/Worker.java b/packages/ui-mobile-base/android/widgets/src/main/java/org/nativescript/widgets/Image/Worker.java index 2d940d597..5d6b214b5 100644 --- a/packages/ui-mobile-base/android/widgets/src/main/java/org/nativescript/widgets/Image/Worker.java +++ b/packages/ui-mobile-base/android/widgets/src/main/java/org/nativescript/widgets/Image/Worker.java @@ -16,6 +16,7 @@ package org.nativescript.widgets.image; +import android.content.ContentResolver; import android.content.Context; import android.content.pm.ApplicationInfo; import android.content.pm.PackageManager; @@ -37,6 +38,7 @@ public abstract class Worker { protected static final String RESOURCE_PREFIX = "res://"; protected static final String FILE_PREFIX = "file:///"; + protected static final String CONTENT_PREFIX = "content://"; static final String TAG = "JS"; private static final int FADE_IN_TIME = 200; @@ -49,7 +51,7 @@ public abstract class Worker { protected boolean mPauseWork = false; protected Resources mResources; - + protected ContentResolver mResolver; private static final int MESSAGE_CLEAR = 0; private static final int MESSAGE_INIT_DISK_CACHE = 1; private static final int MESSAGE_FLUSH = 2; @@ -59,7 +61,7 @@ public abstract class Worker { protected Worker(Context context) { mResources = context.getResources(); - + mResolver = context.getContentResolver(); // Negative means not initialized. if (debuggable < 0) { try { @@ -539,4 +541,4 @@ public abstract class Worker { public void closeCache() { new CacheAsyncTask().execute(MESSAGE_CLOSE); } -} \ No newline at end of file +} diff --git a/packages/ui-mobile-base/android/widgets/src/main/java/org/nativescript/widgets/Utils.java b/packages/ui-mobile-base/android/widgets/src/main/java/org/nativescript/widgets/Utils.java index 924c6099d..43187bd56 100644 --- a/packages/ui-mobile-base/android/widgets/src/main/java/org/nativescript/widgets/Utils.java +++ b/packages/ui-mobile-base/android/widgets/src/main/java/org/nativescript/widgets/Utils.java @@ -1,12 +1,33 @@ package org.nativescript.widgets; +import android.content.ContentResolver; +import android.content.Context; +import android.graphics.Bitmap; +import android.graphics.BitmapFactory; import android.graphics.Color; +import android.graphics.Matrix; import android.graphics.drawable.ColorDrawable; import android.graphics.drawable.Drawable; +import android.net.Uri; +import android.os.Handler; +import android.os.Looper; +import android.os.ParcelFileDescriptor; import android.util.Log; +import android.util.Pair; import android.view.View; import android.view.ViewGroup; +import androidx.exifinterface.media.ExifInterface; + +import org.json.JSONException; +import org.json.JSONObject; + +import java.io.FileDescriptor; +import java.io.FileNotFoundException; +import java.io.IOException; +import java.util.concurrent.Executor; +import java.util.concurrent.Executors; + public class Utils { public static void drawBoxShadow(View view, String value) { if (android.os.Build.VERSION.SDK_INT < android.os.Build.VERSION_CODES.M) { @@ -16,14 +37,14 @@ public class Utils { Drawable currentBg = view.getBackground(); - if(currentBg != null) { + if (currentBg != null) { Log.d("BoxShadowDrawable", "current BG is: " + currentBg.getClass().getName()); } - if(currentBg == null) { + if (currentBg == null) { Log.d("BoxShadowDrawable", "view had no background!"); currentBg = new ColorDrawable(Color.TRANSPARENT); - } else if(currentBg instanceof BoxShadowDrawable) { + } else if (currentBg instanceof BoxShadowDrawable) { currentBg = ((BoxShadowDrawable) view.getBackground()).getWrappedDrawable(); Log.d("BoxShadowDrawable", "already a BoxShadowDrawable, getting wrapped drawable:" + currentBg.getClass().getName()); } @@ -33,21 +54,237 @@ public class Utils { view.setBackground(new BoxShadowDrawable(currentBg, value)); Drawable bg = view.getBackground(); - if(bg != null) { + if (bg != null) { Log.d("BoxShadowDrawable", "new current bg: " + bg.getClass().getName()); } int count = 0; while (view.getParent() != null && view.getParent() instanceof ViewGroup) { - count++; - ViewGroup parent = (ViewGroup) view.getParent(); - parent.setClipChildren(false); - parent.setClipToPadding(false); - // removing clipping from all breaks the ui - if (count == 1) { + count++; + ViewGroup parent = (ViewGroup) view.getParent(); + parent.setClipChildren(false); + parent.setClipToPadding(false); + // removing clipping from all breaks the ui + if (count == 1) { + break; + } + } + } + + public interface AsyncImageCallback { + void onSuccess(Bitmap bitmap); + + void onError(Exception exception); + } + + static class ImageAssetOptions { + int width; + int height; + boolean keepAspectRatio; + boolean autoScaleFactor; + } + + private static final Executor executors = Executors.newCachedThreadPool(); + + + private static Pair getAspectSafeDimensions(float sourceWidth, float sourceHeight, float reqWidth, float reqHeight) { + float widthCoef = sourceWidth / reqWidth; + float heightCoef = sourceHeight / reqHeight; + float aspectCoef = Math.min(widthCoef, heightCoef); + + return new Pair<>((int) Math.floor(sourceWidth / aspectCoef), (int) Math.floor(sourceHeight / aspectCoef)); + } + + + private static Pair getRequestedImageSize(Pair src, Pair maxSize, ImageAssetOptions options) { + int reqWidth = options.width; + if (reqWidth <= 0) { + reqWidth = Math.min(src.first, maxSize.first); + } + int reqHeight = options.height; + if (reqHeight <= 0) { + reqHeight = Math.min(src.second, maxSize.second); + } + + if (options.keepAspectRatio) { + Pair safeAspectSize = getAspectSafeDimensions(src.first, src.second, reqWidth, reqHeight); + reqWidth = safeAspectSize.first; + reqHeight = safeAspectSize.second; + } + + return new Pair<>(reqWidth, reqHeight); + } + + + private static void closePfd(ParcelFileDescriptor pfd) { + if (pfd != null) { + try { + pfd.close(); + } catch (IOException ignored) { + } + } + } + + private static int calculateAngleFromFile(String filename) { + int rotationAngle = 0; + ExifInterface ei; + try { + ei = new ExifInterface(filename); + int orientation = ei.getAttributeInt(ExifInterface.TAG_ORIENTATION, ExifInterface.ORIENTATION_NORMAL); + + switch (orientation) { + case ExifInterface.ORIENTATION_ROTATE_90: + rotationAngle = 90; break; + case ExifInterface.ORIENTATION_ROTATE_180: + rotationAngle = 180; + break; + case ExifInterface.ORIENTATION_ROTATE_270: + rotationAngle = 270; + break; + } + } catch (IOException ignored) { + } + + return rotationAngle; + } + + + private static int calculateAngleFromFileDescriptor(FileDescriptor fd) { + int rotationAngle = 0; + ExifInterface ei; + try { + ei = new ExifInterface(fd); + int orientation = ei.getAttributeInt(ExifInterface.TAG_ORIENTATION, ExifInterface.ORIENTATION_NORMAL); + + switch (orientation) { + case ExifInterface.ORIENTATION_ROTATE_90: + rotationAngle = 90; + break; + case ExifInterface.ORIENTATION_ROTATE_180: + rotationAngle = 180; + break; + case ExifInterface.ORIENTATION_ROTATE_270: + rotationAngle = 270; + break; + } + } catch (IOException ignored) { + } + + return rotationAngle; + } + + private static final Handler mainHandler = new Handler(Looper.getMainLooper()); + + public static void loadImageAsync(final Context context, final String src, final String options, final int maxWidth, final int maxHeight, final AsyncImageCallback callback) { + executors.execute(new Runnable() { + @Override + public void run() { + BitmapFactory.Options bitmapOptions = new BitmapFactory.Options(); + bitmapOptions.inJustDecodeBounds = true; + + try { + Bitmap bitmap; + ParcelFileDescriptor pfd = null; + if (src.startsWith("content://")) { + Uri uri = android.net.Uri.parse(src); + ContentResolver resolver = context.getContentResolver(); + try { + pfd = resolver.openFileDescriptor(uri, "r"); + } catch (final FileNotFoundException e) { + mainHandler.post(new Runnable() { + @Override + public void run() { + callback.onError(e); + } + }); + closePfd(pfd); + return; + } + android.graphics.BitmapFactory.decodeFileDescriptor(pfd.getFileDescriptor(), null, bitmapOptions); + } else { + android.graphics.BitmapFactory.decodeFile(src, bitmapOptions); + } + + ImageAssetOptions opts = new ImageAssetOptions(); + opts.keepAspectRatio = true; + opts.autoScaleFactor = true; + + try { + JSONObject object = new JSONObject(options); + opts.width = object.optInt("width", 0); + opts.height = object.optInt("height", 0); + opts.keepAspectRatio = object.optBoolean("keepAspectRatio", true); + opts.autoScaleFactor = object.optBoolean("autoScaleFactor", true); + } catch (JSONException ignored) { + } + + + Pair sourceSize = new Pair<>(bitmapOptions.outWidth, bitmapOptions.outHeight); + Pair maxSize = new Pair<>(maxWidth, maxHeight); + Pair requestedSize = getRequestedImageSize(sourceSize, maxSize, opts); + int sampleSize = org.nativescript.widgets.image.Fetcher.calculateInSampleSize(bitmapOptions.outWidth, bitmapOptions.outHeight, requestedSize.first, requestedSize.second); + BitmapFactory.Options finalBitmapOptions = new BitmapFactory.Options(); + finalBitmapOptions.inSampleSize = sampleSize; + + + String error = null; + // read as minimum bitmap as possible (slightly bigger than the requested size) + + + if (pfd != null) { + bitmap = BitmapFactory.decodeFileDescriptor(pfd.getFileDescriptor(), null, finalBitmapOptions); + } else { + bitmap = android.graphics.BitmapFactory.decodeFile(src, finalBitmapOptions); + } + + + if (bitmap != null) { + if (requestedSize.first != bitmap.getWidth() || requestedSize.second != bitmap.getHeight()) { + // scale to exact size + bitmap = android.graphics.Bitmap.createScaledBitmap(bitmap, requestedSize.first, requestedSize.second, true); + } + int rotationAngle; + + if (pfd != null) { + rotationAngle = calculateAngleFromFileDescriptor(pfd.getFileDescriptor()); + closePfd(pfd); + } else { + rotationAngle = calculateAngleFromFile(src); + } + + if (rotationAngle != 0) { + Matrix matrix = new android.graphics.Matrix(); + matrix.postRotate(rotationAngle); + bitmap = android.graphics.Bitmap.createBitmap(bitmap, 0, 0, bitmap.getWidth(), bitmap.getHeight(), matrix, true); + } + } + if (bitmap == null) { + error = "Asset '" + src + "' cannot be found."; + } + + final String finalError = error; + final Bitmap finalBitmap = bitmap; + mainHandler.post(new Runnable() { + @Override + public void run() { + if (finalError != null) { + callback.onError(new Exception(finalError)); + } else { + callback.onSuccess(finalBitmap); + } + } + }); + } catch (final Exception ex) { + mainHandler.post(new Runnable() { + @Override + public void run() { + callback.onError(ex); + } + }); } } + }); } // public static void clearBoxShadow(View view) { From 686522d8c6d355b1187fa0590c05b968d5e6ffa1 Mon Sep 17 00:00:00 2001 From: Nathan Walker Date: Sun, 9 May 2021 19:37:30 -0700 Subject: [PATCH 06/24] chore(release): @nativescript/core@8.0.5 --- CHANGELOG.md | 14 ++++++++++++++ package.json | 2 +- packages/core/package.json | 2 +- 3 files changed, 16 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index ec9098451..91dc00205 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,17 @@ +## [8.0.5](https://github.com/NativeScript/NativeScript/compare/8.0.4-core...8.0.5) (2021-05-10) + + +### Bug Fixes + +* **android:** image asset handling regarding requestLegacyExternalStorage ([#9373](https://github.com/NativeScript/NativeScript/issues/9373)) ([f311151](https://github.com/NativeScript/NativeScript/commit/f3111514960ada615a69418b906620a638f8f476)) + + +### Features + +* **docs:** typedoc api reference ([#9378](https://github.com/NativeScript/NativeScript/issues/9378)) ([6d91c2a](https://github.com/NativeScript/NativeScript/commit/6d91c2a0195e07c182d2fccfb9c6f7d783acc4b7)) + + + ## [8.0.4](https://github.com/NativeScript/NativeScript/compare/8.0.3-core...8.0.4) (2021-05-05) diff --git a/package.json b/package.json index ef477e25a..6a0896f2e 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "nativescript", - "version": "8.0.4", + "version": "8.0.5", "license": "MIT", "scripts": { "clean": "git clean -f -X -d --exclude=!.idea/ --exclude=!.vscode/*", diff --git a/packages/core/package.json b/packages/core/package.json index 7ac333f7c..f119b571c 100644 --- a/packages/core/package.json +++ b/packages/core/package.json @@ -3,7 +3,7 @@ "main": "index", "types": "index.d.ts", "description": "A JavaScript library providing an easy to use api for interacting with iOS and Android platform APIs.", - "version": "8.0.4", + "version": "8.0.5", "homepage": "https://nativescript.org", "repository": { "type": "git", From f380782766b7034e4f776ad78e941fd9ac405c0b Mon Sep 17 00:00:00 2001 From: Osei Fortune Date: Mon, 10 May 2021 22:22:08 -0400 Subject: [PATCH 07/24] fix(ios): image with alpha resize (#9386) closes #9385 --- packages/core/image-source/index.ios.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/packages/core/image-source/index.ios.ts b/packages/core/image-source/index.ios.ts index fd5782037..bb3269b92 100644 --- a/packages/core/image-source/index.ios.ts +++ b/packages/core/image-source/index.ios.ts @@ -340,7 +340,8 @@ export class ImageSource implements ImageSourceDefinition { const dim = getScaledDimensions(size.width, size.height, maxSize); const newSize: CGSize = CGSizeMake(dim.width, dim.height); - UIGraphicsBeginImageContextWithOptions(newSize, true, this.ios.scale); + + UIGraphicsBeginImageContextWithOptions(newSize, options?.opaque ?? false, this.ios.scale); this.ios.drawInRect(CGRectMake(0, 0, newSize.width, newSize.height)); const resizedImage = UIGraphicsGetImageFromCurrentImageContext(); From 0b2c190662ceb63524049ac7792643414510858d Mon Sep 17 00:00:00 2001 From: William Juan Date: Wed, 12 May 2021 07:43:56 +0700 Subject: [PATCH 08/24] fix(RootLayout): prevent android touch event to pass through views underneath (#9389) --- .../ui/layouts/root-layout/index.android.ts | 20 +++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/packages/core/ui/layouts/root-layout/index.android.ts b/packages/core/ui/layouts/root-layout/index.android.ts index c810e0166..eb974a606 100644 --- a/packages/core/ui/layouts/root-layout/index.android.ts +++ b/packages/core/ui/layouts/root-layout/index.android.ts @@ -10,6 +10,26 @@ export class RootLayout extends RootLayoutBase { super(); } + insertChild(view: View, atIndex: number): void { + super.insertChild(view, atIndex); + if (!view.hasGestureObservers()) { + // block tap events from going through to layers behind the view + view.nativeViewProtected.setOnTouchListener( + new android.view.View.OnTouchListener({ + onTouch: function (view, event) { + return true; + }, + }) + ); + } + } + removeChild(view: View): void { + if (view.hasGestureObservers()) { + view.nativeViewProtected.setOnTouchListener(null); + } + super.removeChild(view); + } + protected _bringToFront(view: View) { (view.nativeViewProtected).bringToFront(); } From 64adf5ecfce5cae1582cbbf7d704e2ef9b75dd01 Mon Sep 17 00:00:00 2001 From: Osei Fortune Date: Wed, 12 May 2021 11:22:20 -0400 Subject: [PATCH 09/24] feat(text-view): add returnPress (#9390) closes #4882 --- packages/core/ui/text-view/index.android.ts | 4 ++++ packages/core/ui/text-view/index.ios.ts | 4 ++++ packages/core/ui/text-view/text-view-common.ts | 1 + 3 files changed, 9 insertions(+) diff --git a/packages/core/ui/text-view/index.android.ts b/packages/core/ui/text-view/index.android.ts index a6833fdcd..77a5d9352 100644 --- a/packages/core/ui/text-view/index.android.ts +++ b/packages/core/ui/text-view/index.android.ts @@ -28,6 +28,10 @@ export class TextView extends TextViewBaseCommon { this.nativeTextViewProtected.setMaxLines(value); } + + public _onReturnPress() { + this.notify({ eventName: TextView.returnPressEvent, object: this }); + } } TextView.prototype.recycleNativeView = 'auto'; diff --git a/packages/core/ui/text-view/index.ios.ts b/packages/core/ui/text-view/index.ios.ts index 8385e1baf..f587f69cc 100644 --- a/packages/core/ui/text-view/index.ios.ts +++ b/packages/core/ui/text-view/index.ios.ts @@ -167,6 +167,10 @@ export class TextView extends TextViewBaseCommon { } } + if (replacementString === '\n') { + this.notify({ eventName: TextView.returnPressEvent, object: this }); + } + if (this.formattedText) { _updateCharactersInRangeReplacementString(this.formattedText, range.location, range.length, replacementString); } diff --git a/packages/core/ui/text-view/text-view-common.ts b/packages/core/ui/text-view/text-view-common.ts index 380706741..6966db466 100644 --- a/packages/core/ui/text-view/text-view-common.ts +++ b/packages/core/ui/text-view/text-view-common.ts @@ -3,6 +3,7 @@ import { EditableTextBase } from '../editable-text-base'; import { Property } from '../core/properties'; export class TextViewBase extends EditableTextBase implements TextViewDefinition { + public static returnPressEvent = 'returnPress'; public maxLines: number; } From 7e878f83a39478a7a33d89f08579df97db70fe00 Mon Sep 17 00:00:00 2001 From: Osei Fortune Date: Wed, 12 May 2021 12:00:51 -0400 Subject: [PATCH 10/24] feat(web-view): disableZoom property (#9391) --- packages/core/ui/web-view/index.android.ts | 16 ++++- packages/core/ui/web-view/index.ios.ts | 62 +++++++++++++++++++- packages/core/ui/web-view/web-view-common.ts | 6 ++ 3 files changed, 82 insertions(+), 2 deletions(-) diff --git a/packages/core/ui/web-view/index.android.ts b/packages/core/ui/web-view/index.android.ts index e9144cc7b..ccf917fff 100644 --- a/packages/core/ui/web-view/index.android.ts +++ b/packages/core/ui/web-view/index.android.ts @@ -1,4 +1,4 @@ -import { WebViewBase, WebViewClient } from './web-view-common'; +import { disableZoomProperty, WebViewBase, WebViewClient } from './web-view-common'; import { Trace } from '../../trace'; import { knownFolders } from '../../file-system'; @@ -107,6 +107,7 @@ export class WebView extends WebViewBase { const client = new WebViewClient(this); nativeView.setWebViewClient(client); (nativeView).client = client; + this._disableZoom(this.disableZoom); } public disposeNativeView() { @@ -119,6 +120,19 @@ export class WebView extends WebViewBase { super.disposeNativeView(); } + private _disableZoom(value: boolean) { + if (this.nativeView && value) { + const settings = this.nativeView.getSettings(); + settings.setBuiltInZoomControls(false); + settings.setSupportZoom(false); + settings.setDisplayZoomControls(false); + } + } + + [disableZoomProperty.setNative](value: boolean) { + this._disableZoom(value); + } + public _loadUrl(src: string) { const nativeView = this.nativeViewProtected; if (!nativeView) { diff --git a/packages/core/ui/web-view/index.ios.ts b/packages/core/ui/web-view/index.ios.ts index 8dd35dedf..efce12e2c 100644 --- a/packages/core/ui/web-view/index.ios.ts +++ b/packages/core/ui/web-view/index.ios.ts @@ -1,5 +1,5 @@ import { WebViewNavigationType } from '.'; -import { WebViewBase } from './web-view-common'; +import { disableZoomProperty, WebViewBase } from './web-view-common'; import { profile } from '../../profiling'; import { Trace } from '../../trace'; export * from './web-view-common'; @@ -96,9 +96,54 @@ class WKNavigationDelegateImpl extends NSObject implements WKNavigationDelegate } } +@NativeClass +@ObjCClass(UIScrollViewDelegate) +class UIScrollViewDelegateImpl extends NSObject implements UIScrollViewDelegate { + public static initWithOwner(owner: WeakRef): UIScrollViewDelegateImpl { + const handler = UIScrollViewDelegateImpl.new(); + handler._owner = owner; + + return handler; + } + + private _owner: WeakRef; + + private _initCurrentValues(scrollView: UIScrollView) { + const owner = this._owner.get(); + if (owner && (owner._minimumZoomScale === undefined || owner._maximumZoomScale === undefined || owner._zoomScale === undefined)) { + owner._minimumZoomScale = scrollView.minimumZoomScale; + owner._maximumZoomScale = scrollView.maximumZoomScale; + owner._zoomScale = scrollView.zoomScale; + } + } + + private _handleDisableZoom(scrollView: UIScrollView) { + const owner = this._owner.get(); + if (owner.disableZoom) { + this._initCurrentValues(scrollView); + scrollView.maximumZoomScale = 1.0; + scrollView.minimumZoomScale = 1.0; + scrollView.zoomScale = 1.0; + } + } + + scrollViewWillBeginZoomingWithView(scrollView: UIScrollView, view: UIView) { + this._handleDisableZoom(scrollView); + } + + scrollViewDidZoom(scrollView) { + this._handleDisableZoom(scrollView); + } +} + export class WebView extends WebViewBase { nativeViewProtected: WKWebView; private _delegate: any; + private _scrollDelegate: any; + + _maximumZoomScale; + _minimumZoomScale; + _zoomScale; createNativeView() { const jScript = "var meta = document.createElement('meta'); meta.setAttribute('name', 'viewport'); meta.setAttribute('content', 'initial-scale=1.0'); document.getElementsByTagName('head')[0].appendChild(meta);"; @@ -118,7 +163,9 @@ export class WebView extends WebViewBase { initNativeView() { super.initNativeView(); this._delegate = WKNavigationDelegateImpl.initWithOwner(new WeakRef(this)); + this._scrollDelegate = UIScrollViewDelegateImpl.initWithOwner(new WeakRef(this)); this.ios.navigationDelegate = this._delegate; + this.ios.scrollView.delegate = this._scrollDelegate; } @profile @@ -171,4 +218,17 @@ export class WebView extends WebViewBase { public reload() { this.ios.reload(); } + + [disableZoomProperty.setNative](value: boolean) { + if (!value && typeof this._minimumZoomScale === 'number' && typeof this._maximumZoomScale === 'number' && typeof this._zoomScale === 'number') { + if (this.ios.scrollView) { + this.ios.scrollView.minimumZoomScale = this._minimumZoomScale; + this.ios.scrollView.maximumZoomScale = this._maximumZoomScale; + this.ios.scrollView.zoomScale = this._zoomScale; + this._minimumZoomScale = undefined; + this._maximumZoomScale = undefined; + this._zoomScale = undefined; + } + } + } } diff --git a/packages/core/ui/web-view/web-view-common.ts b/packages/core/ui/web-view/web-view-common.ts index 17b213b7b..9c95a6045 100644 --- a/packages/core/ui/web-view/web-view-common.ts +++ b/packages/core/ui/web-view/web-view-common.ts @@ -3,11 +3,14 @@ import { ContainerView, CSSType } from '../core/view'; import { Property } from '../core/properties'; import { EventData } from '../../data/observable'; import { knownFolders } from '../../file-system'; +import { booleanConverter } from '../core/view-base'; export * from './web-view-interfaces'; export const srcProperty = new Property({ name: 'src' }); +export const disableZoomProperty = new Property({ name: 'disableZoom', defaultValue: false, valueConverter: booleanConverter }); + @CSSType('WebView') export abstract class WebViewBase extends ContainerView { public static loadStartedEvent = 'loadStarted'; @@ -15,6 +18,8 @@ export abstract class WebViewBase extends ContainerView { public src: string; + public disableZoom: boolean; + public _onLoadFinished(url: string, error?: string) { const args = { eventName: WebViewBase.loadFinishedEvent, @@ -102,3 +107,4 @@ export interface WebViewBase { } srcProperty.register(WebViewBase); +disableZoomProperty.register(WebViewBase); From 95596e82302bb945e6bf2126f19d9245e358cb79 Mon Sep 17 00:00:00 2001 From: Osei Fortune Date: Wed, 12 May 2021 15:51:35 -0400 Subject: [PATCH 11/24] fix(Device): don't cache device language & region (#9394) closes #6082 --- packages/core/platform/index.android.ts | 14 ++------------ packages/core/platform/index.ios.ts | 15 ++------------- 2 files changed, 4 insertions(+), 25 deletions(-) diff --git a/packages/core/platform/index.android.ts b/packages/core/platform/index.android.ts index e174b7025..547ead8db 100644 --- a/packages/core/platform/index.android.ts +++ b/packages/core/platform/index.android.ts @@ -67,8 +67,6 @@ class DeviceRef { private _sdkVersion: string; private _deviceType: 'Phone' | 'Tablet'; private _uuid: string; - private _language: string; - private _region: string; get manufacturer(): string { if (!this._manufacturer) { @@ -130,19 +128,11 @@ class DeviceRef { } get language(): string { - if (!this._language) { - this._language = java.util.Locale.getDefault().getLanguage().replace('_', '-'); - } - - return this._language; + return java.util.Locale.getDefault().getLanguage().replace('_', '-'); } get region(): string { - if (!this._region) { - this._region = java.util.Locale.getDefault().getCountry(); - } - - return this._region; + return java.util.Locale.getDefault().getCountry(); } } diff --git a/packages/core/platform/index.ios.ts b/packages/core/platform/index.ios.ts index 291896615..e40edf552 100644 --- a/packages/core/platform/index.ios.ts +++ b/packages/core/platform/index.ios.ts @@ -10,8 +10,6 @@ class DeviceRef { private _osVersion: string; private _sdkVersion: string; private _deviceType: 'Phone' | 'Tablet'; - private _language: string; - private _region: string; get manufacturer(): string { return 'Apple'; @@ -72,20 +70,11 @@ class DeviceRef { } get language(): string { - if (!this._language) { - const languages = NSLocale.preferredLanguages; - this._language = languages[0]; - } - - return this._language; + return NSLocale.preferredLanguages[0]; } get region(): string { - if (!this._region) { - this._region = NSLocale.currentLocale.objectForKey(NSLocaleCountryCode); - } - - return this._region; + return NSLocale.currentLocale.objectForKey(NSLocaleCountryCode); } } From 7a92c1646f92f8afb9f8a87306cc90e8d2043e91 Mon Sep 17 00:00:00 2001 From: William Juan Date: Thu, 13 May 2021 22:02:34 +0700 Subject: [PATCH 12/24] fix(a11y): font size (#9395) --- packages/core/accessibility/accessibility-css-helper.ts | 2 +- packages/core/accessibility/font-scale-common.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/core/accessibility/accessibility-css-helper.ts b/packages/core/accessibility/accessibility-css-helper.ts index 2fe70f22c..e029a4fc6 100644 --- a/packages/core/accessibility/accessibility-css-helper.ts +++ b/packages/core/accessibility/accessibility-css-helper.ts @@ -92,7 +92,7 @@ function updateCurrentHelperClasses(): void { const oldActiveFontScaleCategory = currentFontScaleCategory; switch (fontScaleCategory) { case FontScaleCategory.ExtraSmall: { - currentFontScaleCategory = fontScaleMediumCategoryClass; + currentFontScaleCategory = fontScaleExtraSmallCategoryClass; break; } case FontScaleCategory.Medium: { diff --git a/packages/core/accessibility/font-scale-common.ts b/packages/core/accessibility/font-scale-common.ts index 04964431b..b6d29b959 100644 --- a/packages/core/accessibility/font-scale-common.ts +++ b/packages/core/accessibility/font-scale-common.ts @@ -5,7 +5,7 @@ export const VALID_FONT_SCALES = global.isIOS // iOS supports a wider number of export function getClosestValidFontScale(fontScale: number): number { fontScale = Number(fontScale) || 1; - return VALID_FONT_SCALES.sort((a, b) => Math.abs(fontScale - a) - Math.abs(fontScale - b)).shift(); + return VALID_FONT_SCALES.sort((a, b) => Math.abs(fontScale - a) - Math.abs(fontScale - b))[0]; } export enum FontScaleCategory { From dac36c68015512553689f6803d147da92f89cd93 Mon Sep 17 00:00:00 2001 From: William Juan Date: Thu, 13 May 2021 22:42:55 +0700 Subject: [PATCH 13/24] fix(a11y): add missing application event for fontScaleChanged (#9396) --- packages/core/accessibility/font-scale.android.ts | 1 + packages/core/accessibility/font-scale.ios.ts | 1 + packages/core/application/index.d.ts | 12 ++++++++++++ packages/core/index.d.ts | 1 + packages/core/index.ts | 3 ++- 5 files changed, 17 insertions(+), 1 deletion(-) diff --git a/packages/core/accessibility/font-scale.android.ts b/packages/core/accessibility/font-scale.android.ts index 0adec6c75..c8112ba25 100644 --- a/packages/core/accessibility/font-scale.android.ts +++ b/packages/core/accessibility/font-scale.android.ts @@ -11,6 +11,7 @@ function fontScaleChanged(origFontScale: number) { Application.notify({ eventName: Application.fontScaleChangedEvent, object: Application, + newValue: currentFontScale, }); } } diff --git a/packages/core/accessibility/font-scale.ios.ts b/packages/core/accessibility/font-scale.ios.ts index 2b9c6f56e..5de596810 100644 --- a/packages/core/accessibility/font-scale.ios.ts +++ b/packages/core/accessibility/font-scale.ios.ts @@ -11,6 +11,7 @@ function fontScaleChanged(origFontScale: number) { Application.notify({ eventName: Application.fontScaleChangedEvent, object: Application, + newValue: currentFontScale, }); } } diff --git a/packages/core/application/index.d.ts b/packages/core/application/index.d.ts index 3b3000dd4..f95a9c477 100644 --- a/packages/core/application/index.d.ts +++ b/packages/core/application/index.d.ts @@ -135,6 +135,16 @@ export interface SystemAppearanceChangedEventData extends ApplicationEventData { newValue: 'light' | 'dark'; } +/** + * Event data containing information for font scale changed event. + */ +export interface FontScaleChangedEventData extends ApplicationEventData { + /** + * New font scale value. + */ + newValue: number; +} + /** * Event data containing information about unhandled application errors. */ @@ -328,6 +338,8 @@ export function on(event: 'orientationChanged', callback: (args: OrientationChan */ export function on(event: 'systemAppearanceChanged', callback: (args: SystemAppearanceChangedEventData) => void, thisArg?: any); +export function on(event: 'fontScaleChanged', callback: (args: FontScaleChangedEventData) => void, thisArg?: any); + /** * Gets the orientation of the application. * Available values: "portrait", "landscape", "unknown". diff --git a/packages/core/index.d.ts b/packages/core/index.d.ts index 2c202d540..53789a113 100644 --- a/packages/core/index.d.ts +++ b/packages/core/index.d.ts @@ -20,6 +20,7 @@ export declare const Application: { lowMemoryEvent: string; orientationChangedEvent: string; systemAppearanceChangedEvent: string; + fontScaleChangedEvent: string; systemAppearanceChanged: typeof systemAppearanceChanged; getMainEntry: typeof getMainEntry; getRootView: typeof getRootView; diff --git a/packages/core/index.ts b/packages/core/index.ts index 709ba7fc6..d40e172b2 100644 --- a/packages/core/index.ts +++ b/packages/core/index.ts @@ -5,7 +5,7 @@ import './globals'; export { iOSApplication, AndroidApplication } from './application'; export type { ApplicationEventData, LaunchEventData, OrientationChangedEventData, UnhandledErrorEventData, DiscardedErrorEventData, CssChangedEventData, LoadAppCSSEventData, AndroidActivityEventData, AndroidActivityBundleEventData, AndroidActivityRequestPermissionsEventData, AndroidActivityResultEventData, AndroidActivityNewIntentEventData, AndroidActivityBackPressedEventData, SystemAppearanceChangedEventData } from './application'; -import { launchEvent, displayedEvent, uncaughtErrorEvent, discardedErrorEvent, suspendEvent, resumeEvent, exitEvent, lowMemoryEvent, orientationChangedEvent, systemAppearanceChanged, systemAppearanceChangedEvent, getMainEntry, getRootView, _resetRootView, getResources, setResources, setCssFileName, getCssFileName, loadAppCss, addCss, on, off, notify, hasListeners, run, orientation, getNativeApplication, hasLaunched, android as appAndroid, ios as iosApp, systemAppearance } from './application'; +import { fontScaleChangedEvent, launchEvent, displayedEvent, uncaughtErrorEvent, discardedErrorEvent, suspendEvent, resumeEvent, exitEvent, lowMemoryEvent, orientationChangedEvent, systemAppearanceChanged, systemAppearanceChangedEvent, getMainEntry, getRootView, _resetRootView, getResources, setResources, setCssFileName, getCssFileName, loadAppCss, addCss, on, off, notify, hasListeners, run, orientation, getNativeApplication, hasLaunched, android as appAndroid, ios as iosApp, systemAppearance } from './application'; export const Application = { launchEvent, displayedEvent, @@ -18,6 +18,7 @@ export const Application = { orientationChangedEvent, systemAppearanceChangedEvent, systemAppearanceChanged, + fontScaleChangedEvent, getMainEntry, getRootView, From 6cf4c5981b866c8a164eea0d53fd4c93875e8ba0 Mon Sep 17 00:00:00 2001 From: Osei Fortune Date: Thu, 13 May 2021 11:43:59 -0400 Subject: [PATCH 14/24] feat(Utils): add dismissSoftInput helper (#9392) closes #4594 Co-authored-by: Nathan Walker --- packages/core/index.d.ts | 3 ++- packages/core/index.ts | 3 ++- packages/core/utils/index.android.ts | 4 ++++ packages/core/utils/index.d.ts | 5 +++++ packages/core/utils/index.ios.ts | 7 +++++++ 5 files changed, 20 insertions(+), 2 deletions(-) diff --git a/packages/core/index.d.ts b/packages/core/index.d.ts index 53789a113..693f6a9d1 100644 --- a/packages/core/index.d.ts +++ b/packages/core/index.d.ts @@ -101,7 +101,7 @@ export type { InstrumentationMode, TimerInfo } from './profiling'; export { encoding } from './text'; export * from './trace'; export * from './ui'; -import { GC, isFontIconURI, isDataURI, isFileOrResourcePath, executeOnMainThread, mainThreadify, isMainThread, dispatchToMainThread, releaseNativeObject, getModuleName, openFile, openUrl, isRealDevice, layout, ad as androidUtils, iOSNativeHelper as iosUtils, Source, escapeRegexSymbols, convertString } from './utils'; +import { GC, isFontIconURI, isDataURI, isFileOrResourcePath, executeOnMainThread, mainThreadify, isMainThread, dispatchToMainThread, releaseNativeObject, getModuleName, openFile, openUrl, isRealDevice, layout, ad as androidUtils, iOSNativeHelper as iosUtils, Source, escapeRegexSymbols, convertString, dismissSoftInput } from './utils'; import { ClassInfo, getClass, getBaseClasses, getClassInfo, isBoolean, isDefined, isFunction, isNullOrUndefined, isNumber, isObject, isString, isUndefined, toUIString, verifyCallback } from './utils/types'; export declare const Utils: { GC: typeof GC; @@ -144,5 +144,6 @@ export declare const Utils: { isUndefined: typeof isUndefined; toUIString: typeof toUIString; verifyCallback: typeof verifyCallback; + dismissSoftInput: typeof dismissSoftInput; }; export { XmlParser, ParserEventType, ParserEvent } from './xml'; diff --git a/packages/core/index.ts b/packages/core/index.ts index d40e172b2..735f7c266 100644 --- a/packages/core/index.ts +++ b/packages/core/index.ts @@ -122,7 +122,7 @@ export * from './trace'; export * from './ui'; -import { GC, isFontIconURI, isDataURI, isFileOrResourcePath, executeOnMainThread, mainThreadify, isMainThread, dispatchToMainThread, queueMacrotask, releaseNativeObject, getModuleName, openFile, openUrl, isRealDevice, layout, ad as androidUtils, iOSNativeHelper as iosUtils, Source, RESOURCE_PREFIX, FILE_PREFIX, escapeRegexSymbols, convertString } from './utils'; +import { GC, isFontIconURI, isDataURI, isFileOrResourcePath, executeOnMainThread, mainThreadify, isMainThread, dispatchToMainThread, queueMacrotask, releaseNativeObject, getModuleName, openFile, openUrl, isRealDevice, layout, ad as androidUtils, iOSNativeHelper as iosUtils, Source, RESOURCE_PREFIX, FILE_PREFIX, escapeRegexSymbols, convertString, dismissSoftInput } from './utils'; import { ClassInfo, getClass, getBaseClasses, getClassInfo, isBoolean, isDefined, isFunction, isNullOrUndefined, isNumber, isObject, isString, isUndefined, toUIString, verifyCallback } from './utils/types'; export const Utils = { @@ -170,6 +170,7 @@ export const Utils = { isUndefined, toUIString, verifyCallback, + dismissSoftInput, }; export { XmlParser, ParserEventType, ParserEvent } from './xml'; diff --git a/packages/core/utils/index.android.ts b/packages/core/utils/index.android.ts index 2f0a3f5bc..98f1fdb4f 100644 --- a/packages/core/utils/index.android.ts +++ b/packages/core/utils/index.android.ts @@ -167,3 +167,7 @@ Please ensure you have your manifest correctly configured with the FileProvider. export function isRealDevice(): boolean { return ad.isRealDevice(); } + +export function dismissSoftInput(nativeView?: any): void { + ad.dismissSoftInput(nativeView); +} diff --git a/packages/core/utils/index.d.ts b/packages/core/utils/index.d.ts index 6e947b3c3..ec047b899 100644 --- a/packages/core/utils/index.d.ts +++ b/packages/core/utils/index.d.ts @@ -286,3 +286,8 @@ export function eliminateDuplicates(arr: Array): Array; * Checks whether the application is running on real device and not on simulator/emulator. */ export function isRealDevice(): boolean; + +/** + * Hides the soft input method, usually a soft keyboard. + */ +export function dismissSoftInput(nativeView?: any): void; diff --git a/packages/core/utils/index.ios.ts b/packages/core/utils/index.ios.ts index fba5699e9..eb95362f1 100644 --- a/packages/core/utils/index.ios.ts +++ b/packages/core/utils/index.ios.ts @@ -48,3 +48,10 @@ export function isRealDevice(): boolean { } export const ad = 0; + +export function dismissSoftInput(nativeView?: UIView): void { + if (nativeView instanceof UIView && !nativeView.isFirstResponder) { + return; + } + UIApplication.sharedApplication.sendActionToFromForEvent('resignFirstResponder', null, null, null); +} From 4ef49f28aaa293e83e2604e9d268713620551c3b Mon Sep 17 00:00:00 2001 From: Nathan Walker Date: Thu, 20 May 2021 15:21:24 -0700 Subject: [PATCH 15/24] chore(release): @nativescript/core@8.0.6 --- CHANGELOG.md | 20 ++++++++++++++++++++ package.json | 2 +- packages/core/package.json | 2 +- 3 files changed, 22 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 91dc00205..64117b1e6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,23 @@ +## [8.0.6](https://github.com/NativeScript/NativeScript/compare/8.0.5-core...8.0.6) (2021-05-20) + + +### Bug Fixes + +* **a11y:** add missing application event for fontScaleChanged ([#9396](https://github.com/NativeScript/NativeScript/issues/9396)) ([dac36c6](https://github.com/NativeScript/NativeScript/commit/dac36c68015512553689f6803d147da92f89cd93)) +* **a11y:** font size ([#9395](https://github.com/NativeScript/NativeScript/issues/9395)) ([7a92c16](https://github.com/NativeScript/NativeScript/commit/7a92c1646f92f8afb9f8a87306cc90e8d2043e91)) +* **Device:** don't cache device language & region ([#9394](https://github.com/NativeScript/NativeScript/issues/9394)) ([95596e8](https://github.com/NativeScript/NativeScript/commit/95596e82302bb945e6bf2126f19d9245e358cb79)), closes [#6082](https://github.com/NativeScript/NativeScript/issues/6082) +* **ios:** image with alpha resize ([#9386](https://github.com/NativeScript/NativeScript/issues/9386)) ([f380782](https://github.com/NativeScript/NativeScript/commit/f380782766b7034e4f776ad78e941fd9ac405c0b)), closes [#9385](https://github.com/NativeScript/NativeScript/issues/9385) +* **RootLayout:** prevent android touch event to pass through views underneath ([#9389](https://github.com/NativeScript/NativeScript/issues/9389)) ([0b2c190](https://github.com/NativeScript/NativeScript/commit/0b2c190662ceb63524049ac7792643414510858d)) + + +### Features + +* **text-view:** add returnPress ([#9390](https://github.com/NativeScript/NativeScript/issues/9390)) ([64adf5e](https://github.com/NativeScript/NativeScript/commit/64adf5ecfce5cae1582cbbf7d704e2ef9b75dd01)), closes [#4882](https://github.com/NativeScript/NativeScript/issues/4882) +* **Utils:** add dismissSoftInput helper ([#9392](https://github.com/NativeScript/NativeScript/issues/9392)) ([6cf4c59](https://github.com/NativeScript/NativeScript/commit/6cf4c5981b866c8a164eea0d53fd4c93875e8ba0)), closes [#4594](https://github.com/NativeScript/NativeScript/issues/4594) +* **web-view:** disableZoom property ([#9391](https://github.com/NativeScript/NativeScript/issues/9391)) ([7e878f8](https://github.com/NativeScript/NativeScript/commit/7e878f83a39478a7a33d89f08579df97db70fe00)) + + + ## [8.0.5](https://github.com/NativeScript/NativeScript/compare/8.0.4-core...8.0.5) (2021-05-10) diff --git a/package.json b/package.json index 6a0896f2e..f66f3ffe0 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "nativescript", - "version": "8.0.5", + "version": "8.0.6", "license": "MIT", "scripts": { "clean": "git clean -f -X -d --exclude=!.idea/ --exclude=!.vscode/*", diff --git a/packages/core/package.json b/packages/core/package.json index f119b571c..33c1b65e1 100644 --- a/packages/core/package.json +++ b/packages/core/package.json @@ -3,7 +3,7 @@ "main": "index", "types": "index.d.ts", "description": "A JavaScript library providing an easy to use api for interacting with iOS and Android platform APIs.", - "version": "8.0.5", + "version": "8.0.6", "homepage": "https://nativescript.org", "repository": { "type": "git", From 263c920cb8a4b22e257033006ce585ec32ca2605 Mon Sep 17 00:00:00 2001 From: Janos Hrubos <33330538+janoshrubos@users.noreply.github.com> Date: Wed, 26 May 2021 06:22:35 +0200 Subject: [PATCH 16/24] fix(box-shadow): support for 'none' (#9418) --- packages/core/ui/styling/css-shadow.ts | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/packages/core/ui/styling/css-shadow.ts b/packages/core/ui/styling/css-shadow.ts index 69886ef07..3dc8fc6d4 100644 --- a/packages/core/ui/styling/css-shadow.ts +++ b/packages/core/ui/styling/css-shadow.ts @@ -40,6 +40,10 @@ export function parseCSSShadow(value: string): CSSShadow { const first = parts[0]; const last = parts[parts.length - 1]; + if (first === 'none') { + return null; + } + let colorRaw = 'black'; if (!isLength(first) && first !== 'inset') { colorRaw = first; From 3c9eb77ced18774f3e0d1b59f72a3ef986585421 Mon Sep 17 00:00:00 2001 From: Nathan Walker Date: Thu, 27 May 2021 16:42:00 -0700 Subject: [PATCH 17/24] chore: code of conduct --- CODE_OF_CONDUCT.md | 114 +++++++++++++++++++++++---------------------- 1 file changed, 58 insertions(+), 56 deletions(-) diff --git a/CODE_OF_CONDUCT.md b/CODE_OF_CONDUCT.md index 09827eb16..485ba2736 100644 --- a/CODE_OF_CONDUCT.md +++ b/CODE_OF_CONDUCT.md @@ -1,76 +1,78 @@ -# Contributor Covenant Code of Conduct +## Contributor Covenant Code of Conduct -## Our Pledge +### Our Pledge -In the interest of fostering an open and welcoming environment, we as -contributors and maintainers pledge to making participation in our project and -our community a harassment-free experience for everyone, regardless of age, body -size, disability, ethnicity, sex characteristics, gender identity and expression, -level of experience, education, socio-economic status, nationality, personal -appearance, race, religion, or sexual identity and orientation. +We as members, contributors, and leaders pledge to make participation in our community a harassment-free experience for everyone, regardless of age, body size, visible or invisible disability, ethnicity, sex characteristics, gender identity and expression, level of experience, education, socio-economic status, nationality, personal appearance, race, religion, or sexual identity and orientation. -## Our Standards +We pledge to act and interact in ways that contribute to an open, welcoming, diverse, inclusive, and healthy community. -Examples of behavior that contributes to creating a positive environment -include: +### Our Standards -* Using welcoming and inclusive language -* Being respectful of differing viewpoints and experiences -* Gracefully accepting constructive criticism -* Focusing on what is best for the community -* Showing empathy towards other community members +Examples of behavior that contributes to a positive environment for our community include: -Examples of unacceptable behavior by participants include: +* Demonstrating empathy and kindness toward other people +* Being respectful of differing opinions, viewpoints, and experiences +* Giving and gracefully accepting constructive feedback +* Accepting responsibility and apologizing to those affected by our mistakes, and learning from the experience +* Focusing on what is best not just for us as individuals, but for the overall community -* The use of sexualized language or imagery and unwelcome sexual attention or - advances -* Trolling, insulting/derogatory comments, and personal or political attacks +Examples of unacceptable behavior include: + +* The use of sexualized language or imagery, and sexual attention or advances of any kind +* Trolling, insulting or derogatory comments, and personal or political attacks * Public or private harassment -* Publishing others' private information, such as a physical or electronic - address, without explicit permission -* Other conduct which could reasonably be considered inappropriate in a - professional setting +* Publishing others' private information, such as a physical or email address, without their explicit permission +* Other conduct which could reasonably be considered inappropriate in a professional setting -## Our Responsibilities +### Enforcement Responsibilities -Project maintainers are responsible for clarifying the standards of acceptable -behavior and are expected to take appropriate and fair corrective action in -response to any instances of unacceptable behavior. +Community leaders are responsible for clarifying and enforcing our standards of acceptable behavior and will take appropriate and fair corrective action in response to any behavior that they deem inappropriate, threatening, offensive, or harmful. -Project maintainers have the right and responsibility to remove, edit, or -reject comments, commits, code, wiki edits, issues, and other contributions -that are not aligned to this Code of Conduct, or to ban temporarily or -permanently any contributor for other behaviors that they deem inappropriate, -threatening, offensive, or harmful. +Community leaders have the right and responsibility to remove, edit, or reject comments, commits, code, wiki edits, issues, and other contributions that are not aligned to this Code of Conduct, and will communicate reasons for moderation decisions when appropriate. -## Scope +### Scope -This Code of Conduct applies both within project spaces and in public spaces -when an individual is representing the project or its community. Examples of -representing a project or community include using an official project e-mail -address, posting via an official social media account, or acting as an appointed -representative at an online or offline event. Representation of a project may be -further defined and clarified by project maintainers. +This Code of Conduct applies within all community spaces, and also applies when an individual is officially representing the community in public spaces. Examples of representing our community include using an official e-mail address, posting via an official social media account, or acting as an appointed representative at an online or offline event. -## Enforcement +### Enforcement -Instances of abusive, harassing, or otherwise unacceptable behavior may be -reported by contacting the project team at . All -complaints will be reviewed and investigated and will result in a response that -is deemed necessary and appropriate to the circumstances. The project team is -obligated to maintain confidentiality with regard to the reporter of an incident. -Further details of specific enforcement policies may be posted separately. +Instances of abusive, harassing, or otherwise unacceptable behavior may be reported to the community leaders responsible for enforcement at the email addresses listed above in the [Reporting](#reporting) and [Escalation](#escalation) sections. All complaints will be reviewed and investigated promptly and fairly. -Project maintainers who do not follow or enforce the Code of Conduct in good -faith may face temporary or permanent repercussions as determined by other -members of the project's leadership. +All community leaders are obligated to respect the privacy and security of the reporter of any incident. -## Attribution +### Enforcement Guidelines -This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 1.4, -available at https://www.contributor-covenant.org/version/1/4/code-of-conduct.html +Community leaders will follow these Community Impact Guidelines in determining the consequences for any action they deem in violation of this Code of Conduct: -[homepage]: https://www.contributor-covenant.org +#### 1. Correction -For answers to common questions about this code of conduct, see -https://www.contributor-covenant.org/faq +**Community Impact**: Use of inappropriate language or other behavior deemed unprofessional or unwelcome in the community. + +**Consequence**: A private, written warning from community leaders, providing clarity around the nature of the violation and an explanation of why the behavior was inappropriate. A public apology may be requested. + +#### 2. Warning + +**Community Impact**: A violation through a single incident or series of actions. + +**Consequence**: A warning with consequences for continued behavior. No interaction with the people involved, including unsolicited interaction with those enforcing the Code of Conduct, for a specified period of time. This includes avoiding interactions in community spaces as well as external channels like social media. Violating these terms may lead to a temporary or permanent ban. + +#### 3. Temporary Ban + +**Community Impact**: A serious violation of community standards, including sustained inappropriate behavior. + +**Consequence**: A temporary ban from any sort of interaction or public communication with the community for a specified period of time. No public or private interaction with the people involved, including unsolicited interaction with those enforcing the Code of Conduct, is allowed during this period. Violating these terms may lead to a permanent ban. + +#### 4. Permanent Ban + +**Community Impact**: Demonstrating a pattern of violation of community standards, including sustained inappropriate behavior, harassment of an individual, or aggression toward or disparagement of classes of individuals. + +**Consequence**: A permanent ban from any sort of public interaction within the project community. + +### Attribution + +This Code of Conduct is adapted from the [Contributor Covenant](https://www.contributor-covenant.org), version 2.0, available at [contributor-covenant.org/version/2/0/code_of_conduct](https://www.contributor-covenant.org/version/2/0/code_of_conduct). + +Community Impact Guidelines were inspired by [Mozilla's code of conduct enforcement ladder](https://github.com/mozilla/diversity). + +For answers to common questions about this code of conduct, see the FAQ at +[contributor-covenant.org/faq](https://www.contributor-covenant.org/faq). Translations are available at [contributor-covenant.org/translations](https://www.contributor-covenant.org/translations). From c0a07707f3890333c1c65bb51006f5b3d9e805b3 Mon Sep 17 00:00:00 2001 From: Nathan Walker Date: Thu, 27 May 2021 18:31:17 -0700 Subject: [PATCH 18/24] chore: license --- LICENSE | 214 +++++--------------------------------------------------- 1 file changed, 16 insertions(+), 198 deletions(-) diff --git a/LICENSE b/LICENSE index 451412229..4c831d8df 100755 --- a/LICENSE +++ b/LICENSE @@ -1,201 +1,19 @@ - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ +Copyright OpenJS Foundation and other contributors, https://openjsf.org - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: - 1. Definitions. +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "{}" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright (c) 2020, nStudio, LLC - - 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. +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE. From d589ac600063416f3725c0abf8dfc88f556166db Mon Sep 17 00:00:00 2001 From: Nathan Walker Date: Fri, 28 May 2021 14:06:12 -0700 Subject: [PATCH 19/24] fix(core): typings for Utils.queueMacrotask and static methods on Observable (#9425) --- packages/core/data/observable/index.d.ts | 12 +++++++++++- packages/core/index.d.ts | 3 ++- 2 files changed, 13 insertions(+), 2 deletions(-) diff --git a/packages/core/data/observable/index.d.ts b/packages/core/data/observable/index.d.ts index a968f51fd..086aedaf8 100644 --- a/packages/core/data/observable/index.d.ts +++ b/packages/core/data/observable/index.d.ts @@ -78,7 +78,7 @@ export class Observable { /** * String value used when hooking to propertyChange event. */ - public static propertyChangeEvent: string; + static propertyChangeEvent: string; /** * A basic method signature to hook an event listener (shortcut alias to the addEventListener method). @@ -88,6 +88,8 @@ export class Observable { */ on(eventNames: string, callback: (data: EventData) => void, thisArg?: any); + static on(eventName: string, callback: any, thisArg?: any): void; + /** * Raised when a propertyChange occurs. */ @@ -101,11 +103,15 @@ export class Observable { */ once(event: string, callback: (data: EventData) => void, thisArg?: any); + static once(eventName: string, callback: any, thisArg?: any): void; + /** * Shortcut alias to the removeEventListener method. */ off(eventNames: string, callback?: any, thisArg?: any); + static off(eventName: string, callback?: any, thisArg?: any): void; + /** * Adds a listener for the specified event name. * @param eventNames Comma delimited names of the events to attach the listener to. @@ -114,6 +120,8 @@ export class Observable { */ addEventListener(eventNames: string, callback: (data: EventData) => void, thisArg?: any); + static addEventListener(eventName: string, callback: any, thisArg?: any): void; + /** * Removes listener(s) for the specified event name. * @param eventNames Comma delimited names of the events the specified listener is associated with. @@ -122,6 +130,8 @@ export class Observable { */ removeEventListener(eventNames: string, callback?: any, thisArg?: any); + static removeEventListener(eventName: string, callback?: any, thisArg?: any): void; + /** * Updates the specified property with the provided value. */ diff --git a/packages/core/index.d.ts b/packages/core/index.d.ts index 693f6a9d1..06ee8b097 100644 --- a/packages/core/index.d.ts +++ b/packages/core/index.d.ts @@ -101,12 +101,13 @@ export type { InstrumentationMode, TimerInfo } from './profiling'; export { encoding } from './text'; export * from './trace'; export * from './ui'; -import { GC, isFontIconURI, isDataURI, isFileOrResourcePath, executeOnMainThread, mainThreadify, isMainThread, dispatchToMainThread, releaseNativeObject, getModuleName, openFile, openUrl, isRealDevice, layout, ad as androidUtils, iOSNativeHelper as iosUtils, Source, escapeRegexSymbols, convertString, dismissSoftInput } from './utils'; +import { GC, isFontIconURI, isDataURI, isFileOrResourcePath, executeOnMainThread, mainThreadify, isMainThread, dispatchToMainThread, releaseNativeObject, getModuleName, openFile, openUrl, isRealDevice, layout, ad as androidUtils, iOSNativeHelper as iosUtils, Source, escapeRegexSymbols, convertString, dismissSoftInput, queueMacrotask } from './utils'; import { ClassInfo, getClass, getBaseClasses, getClassInfo, isBoolean, isDefined, isFunction, isNullOrUndefined, isNumber, isObject, isString, isUndefined, toUIString, verifyCallback } from './utils/types'; export declare const Utils: { GC: typeof GC; RESOURCE_PREFIX: string; FILE_PREFIX: string; + queueMacrotask: typeof queueMacrotask; isFontIconURI: typeof isFontIconURI; isDataURI: typeof isDataURI; isFileOrResourcePath: typeof isFileOrResourcePath; From 04381fa3e74e9c277970fb282223abedd937b4c1 Mon Sep 17 00:00:00 2001 From: Jason Cassidy <47318351+jcassidyav@users.noreply.github.com> Date: Sun, 30 May 2021 19:56:28 +0100 Subject: [PATCH 20/24] fix(animations): stop keyframe animations after View unloaded (#9421) --- packages/core/ui/styling/style-scope.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/packages/core/ui/styling/style-scope.ts b/packages/core/ui/styling/style-scope.ts index 55b848362..43dc92508 100644 --- a/packages/core/ui/styling/style-scope.ts +++ b/packages/core/ui/styling/style-scope.ts @@ -450,6 +450,7 @@ export class CssState { public onUnloaded(): void { this.unsubscribeFromDynamicUpdates(); + this.stopKeyframeAnimations(); } @profile From d3bc4d5b82879ccb83483f99585127d981b43b38 Mon Sep 17 00:00:00 2001 From: Nathan Walker Date: Sun, 30 May 2021 12:02:38 -0700 Subject: [PATCH 21/24] fix(core): guard unstable page/frame init contexts under async conditions (#9428) --- packages/core/ui/action-bar/index.ios.ts | 10 ++++++---- packages/core/ui/frame/index.ios.ts | 6 ++++-- packages/core/ui/page/index.ios.ts | 4 +++- 3 files changed, 13 insertions(+), 7 deletions(-) diff --git a/packages/core/ui/action-bar/index.ios.ts b/packages/core/ui/action-bar/index.ios.ts index 1deafaffe..6dc494478 100644 --- a/packages/core/ui/action-bar/index.ios.ts +++ b/packages/core/ui/action-bar/index.ios.ts @@ -353,6 +353,9 @@ export class ActionBar extends ActionBarBase { } private setColor(navBar: UINavigationBar, color?: Color) { + if (!navBar) { + return; + } if (color) { navBar.titleTextAttributes = { [NSForegroundColorAttributeName]: color.ios, @@ -443,13 +446,12 @@ export class ActionBar extends ActionBarBase { } private get navBar(): UINavigationBar { - const page = this.page; // Page should be attached to frame to update the action bar. - if (!page || !page.frame) { + if (this.page?.frame?.ios?.controller) { + return (this.page.frame.ios.controller).navigationBar; + } else { return undefined; } - - return (page.frame.ios.controller).navigationBar; } [colorProperty.getDefault](): UIColor { diff --git a/packages/core/ui/frame/index.ios.ts b/packages/core/ui/frame/index.ios.ts index 856753b7a..bc8e93171 100644 --- a/packages/core/ui/frame/index.ios.ts +++ b/packages/core/ui/frame/index.ios.ts @@ -224,7 +224,7 @@ export class Frame extends FrameBase { this._ios._disableNavBarAnimation = disableNavBarAnimationCache; } - if (this._ios.controller.navigationBar) { + if (this._ios.controller?.navigationBar) { this._ios.controller.navigationBar.userInteractionEnabled = this.navigationQueueIsEmpty(); } @@ -666,7 +666,9 @@ class iOSFrame implements iOSFrameDefinition { } public set showNavigationBar(value: boolean) { this._showNavigationBar = value; - this._controller.setNavigationBarHiddenAnimated(!value, !this._disableNavBarAnimation); + if (this._controller) { + this._controller.setNavigationBarHiddenAnimated(!value, !this._disableNavBarAnimation); + } } public get navBarVisibility(): 'auto' | 'never' | 'always' { diff --git a/packages/core/ui/page/index.ios.ts b/packages/core/ui/page/index.ios.ts index 68f0f9bcc..42e54f8cf 100644 --- a/packages/core/ui/page/index.ios.ts +++ b/packages/core/ui/page/index.ios.ts @@ -177,7 +177,9 @@ class UIViewControllerImpl extends UIViewController { } // If page was shown with custom animation - we need to set the navigationController.delegate to the animatedDelegate. - frame.ios.controller.delegate = this[DELEGATE]; + if (frame.ios?.controller) { + frame.ios.controller.delegate = this[DELEGATE]; + } frame._processNavigationQueue(owner); From 3806b85fcef01ad34327dda9cc2c88619b522c74 Mon Sep 17 00:00:00 2001 From: Nathan Walker Date: Tue, 1 Jun 2021 16:35:43 -0700 Subject: [PATCH 22/24] feat(WebView): allow JS bound window frame navigation to be intercepted through loadStarted (#9430) --- packages/core/ui/web-view/index.ios.ts | 25 +++++++++++++++++++++++-- 1 file changed, 23 insertions(+), 2 deletions(-) diff --git a/packages/core/ui/web-view/index.ios.ts b/packages/core/ui/web-view/index.ios.ts index efce12e2c..e27c8a5bf 100644 --- a/packages/core/ui/web-view/index.ios.ts +++ b/packages/core/ui/web-view/index.ios.ts @@ -96,6 +96,24 @@ class WKNavigationDelegateImpl extends NSObject implements WKNavigationDelegate } } +@NativeClass +class WKUIDelegateImpl extends NSObject implements WKUIDelegate { + public static ObjCProtocols = [WKUIDelegate]; + public static initWithOwner(owner: WeakRef): WKUIDelegateImpl { + const handler = WKUIDelegateImpl.new(); + handler._owner = owner; + return handler; + } + private _owner: WeakRef; + + webViewCreateWebViewWithConfigurationForNavigationActionWindowFeatures(webView: WKWebView, configuration: WKWebViewConfiguration, navigationAction: WKNavigationAction, windowFeatures: WKWindowFeatures): WKWebView { + if (navigationAction && (!navigationAction.targetFrame || (navigationAction.targetFrame && !navigationAction.targetFrame.mainFrame))) { + webView.loadRequest(navigationAction.request); + } + return null; + } +} + @NativeClass @ObjCClass(UIScrollViewDelegate) class UIScrollViewDelegateImpl extends NSObject implements UIScrollViewDelegate { @@ -138,8 +156,9 @@ class UIScrollViewDelegateImpl extends NSObject implements UIScrollViewDelegate export class WebView extends WebViewBase { nativeViewProtected: WKWebView; - private _delegate: any; - private _scrollDelegate: any; + private _delegate: WKNavigationDelegateImpl; + private _scrollDelegate: UIScrollViewDelegateImpl; + private _uiDelegate: WKUIDelegateImpl; _maximumZoomScale; _minimumZoomScale; @@ -164,8 +183,10 @@ export class WebView extends WebViewBase { super.initNativeView(); this._delegate = WKNavigationDelegateImpl.initWithOwner(new WeakRef(this)); this._scrollDelegate = UIScrollViewDelegateImpl.initWithOwner(new WeakRef(this)); + this._uiDelegate = WKUIDelegateImpl.initWithOwner(new WeakRef(this)); this.ios.navigationDelegate = this._delegate; this.ios.scrollView.delegate = this._scrollDelegate; + this.ios.UIDelegate = this._uiDelegate; } @profile From 58819c6e652c860e9b473170d8b96ac3610d9d58 Mon Sep 17 00:00:00 2001 From: Nathan Walker Date: Tue, 1 Jun 2021 20:10:46 -0700 Subject: [PATCH 23/24] chore(release): @nativescript/core@8.0.7 --- CHANGELOG.md | 17 +++++++++++++++++ package.json | 2 +- packages/core/package.json | 2 +- 3 files changed, 19 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 64117b1e6..5493b7192 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,20 @@ +## [8.0.7](https://github.com/NativeScript/NativeScript/compare/8.0.6-core...8.0.7) (2021-06-02) + + +### Bug Fixes + +* **animations:** stop keyframe animations after View unloaded ([#9421](https://github.com/NativeScript/NativeScript/issues/9421)) ([04381fa](https://github.com/NativeScript/NativeScript/commit/04381fa3e74e9c277970fb282223abedd937b4c1)) +* **box-shadow:** support for 'none' ([#9418](https://github.com/NativeScript/NativeScript/issues/9418)) ([263c920](https://github.com/NativeScript/NativeScript/commit/263c920cb8a4b22e257033006ce585ec32ca2605)) +* **core:** guard unstable page/frame init contexts under async conditions ([#9428](https://github.com/NativeScript/NativeScript/issues/9428)) ([d3bc4d5](https://github.com/NativeScript/NativeScript/commit/d3bc4d5b82879ccb83483f99585127d981b43b38)) +* **core:** typings for Utils.queueMacrotask and static methods on Observable ([#9425](https://github.com/NativeScript/NativeScript/issues/9425)) ([d589ac6](https://github.com/NativeScript/NativeScript/commit/d589ac600063416f3725c0abf8dfc88f556166db)) + + +### Features + +* **WebView:** allow JS bound window frame navigation to be intercepted through loadStarted ([#9430](https://github.com/NativeScript/NativeScript/issues/9430)) ([3806b85](https://github.com/NativeScript/NativeScript/commit/3806b85fcef01ad34327dda9cc2c88619b522c74)) + + + ## [8.0.6](https://github.com/NativeScript/NativeScript/compare/8.0.5-core...8.0.6) (2021-05-20) diff --git a/package.json b/package.json index f66f3ffe0..5174782b5 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "nativescript", - "version": "8.0.6", + "version": "8.0.7", "license": "MIT", "scripts": { "clean": "git clean -f -X -d --exclude=!.idea/ --exclude=!.vscode/*", diff --git a/packages/core/package.json b/packages/core/package.json index 33c1b65e1..762af31fd 100644 --- a/packages/core/package.json +++ b/packages/core/package.json @@ -3,7 +3,7 @@ "main": "index", "types": "index.d.ts", "description": "A JavaScript library providing an easy to use api for interacting with iOS and Android platform APIs.", - "version": "8.0.6", + "version": "8.0.7", "homepage": "https://nativescript.org", "repository": { "type": "git", From 9f582ba168dd6f4366e2591a9fed10e1c2443ca4 Mon Sep 17 00:00:00 2001 From: Martin Guillon Date: Thu, 3 Jun 2021 03:47:19 +0200 Subject: [PATCH 24/24] fix(android): accessibilityIdentifier (#9432) needs to be set on `nativeTextViewProtected` for text-base components fixes https://github.com/nativescript-community/ui-material-components/issues/304 --- packages/core/ui/text-base/index.android.ts | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/packages/core/ui/text-base/index.android.ts b/packages/core/ui/text-base/index.android.ts index 83e056498..64fa7e8d4 100644 --- a/packages/core/ui/text-base/index.android.ts +++ b/packages/core/ui/text-base/index.android.ts @@ -13,6 +13,8 @@ import { Span } from './span'; import { CoreTypes } from '../../core-types'; import { layout } from '../../utils'; import { isString, isNullOrUndefined } from '../../utils/types'; +import { accessibilityIdentifierProperty } from '../../accessibility/accessibility-properties'; +import * as Utils from '../../utils'; export * from './text-base-common'; @@ -435,6 +437,16 @@ export class TextBase extends TextBaseCommon { [paddingLeftProperty.setNative](value: CoreTypes.LengthType) { org.nativescript.widgets.ViewHelper.setPaddingLeft(this.nativeTextViewProtected, Length.toDevicePixels(value, 0) + Length.toDevicePixels(this.style.borderLeftWidth, 0)); } + + [accessibilityIdentifierProperty.setNative](value: string): void { + // we override the default setter to apply it on nativeTextViewProtected + const id = Utils.ad.resources.getId(':id/nativescript_accessibility_id'); + + if (id) { + this.nativeTextViewProtected.setTag(id, value); + this.nativeTextViewProtected.setTag(value); + } + } _setNativeText(reset = false): void { if (reset) {