Thanks to visit codestin.com
Credit goes to github.com

Skip to content

svelte changes from halfnelson #9497

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions apps/ui/src/issues/issue-7469-page.ts
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ let loaded = false;
let isIn1 = false;

function updateVcToggleText() {
vcToggle.text = `Container is${reusableItem.reusable ? ' ' : ' NOT '}Reusable`
vcToggle.text = `Container is${reusableItem.reusable ? ' ' : ' NOT '}Reusable`;
}

export function pageLoaded(args) {
Expand Down Expand Up @@ -82,7 +82,7 @@ export function makeReusable(args: EventData) {
}
(args.object as any).___reusableRan = true;
(args.object as any).reusable = true;
if(args.object === reusableItem) {
if (args.object === reusableItem) {
updateVcToggleText();
}
}
Expand Down
2 changes: 1 addition & 1 deletion packages/core/ui/text-base/index.android.ts
Original file line number Diff line number Diff line change
Expand Up @@ -437,7 +437,7 @@ 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');
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ exports[`svelte configuration for android 1`] = `
node: false
},
devtool: 'inline-source-map',
target: 'node',
target: 'electron-main',
watchOptions: {
ignored: [
'__jest__/platforms/**',
Expand All @@ -33,7 +33,8 @@ exports[`svelte configuration for android 1`] = `
symlinks: true,
alias: {
'~': '__jest__/src',
'@': '__jest__/src'
'@': '__jest__/src',
'tns-core-modules': '@nativescript/core'
},
extensions: [
'.android.svelte',
Expand Down Expand Up @@ -114,7 +115,7 @@ exports[`svelte configuration for android 1`] = `
},
/* config.module.rule('workers') */
{
test: /\\\\.(js|ts)$/,
test: /\\\\.(js|ts|svelte)$/,
use: [
/* config.module.rule('workers').use('nativescript-worker-loader') */
{
Expand Down Expand Up @@ -193,18 +194,19 @@ exports[`svelte configuration for android 1`] = `
/node_modules/
],
use: [
/* config.module.rule('svelte').use('svelte-loader-hot') */
/* config.module.rule('svelte').use('svelte-loader') */
{
loader: 'svelte-loader-hot',
loader: 'svelte-loader',
options: {
dev: true,
compilerOptions: {
dev: true
},
preprocess: undefined,
hotReload: true,
hotOptions: {
injectCss: false,
'native': true
},
onwarn: function () { /* omitted long function */ }
}
}
}
]
Expand Down Expand Up @@ -338,7 +340,7 @@ exports[`svelte configuration for ios 1`] = `
node: false
},
devtool: 'inline-source-map',
target: 'node',
target: 'electron-main',
watchOptions: {
ignored: [
'__jest__/platforms/**',
Expand All @@ -360,7 +362,8 @@ exports[`svelte configuration for ios 1`] = `
symlinks: true,
alias: {
'~': '__jest__/src',
'@': '__jest__/src'
'@': '__jest__/src',
'tns-core-modules': '@nativescript/core'
},
extensions: [
'.ios.svelte',
Expand Down Expand Up @@ -441,7 +444,7 @@ exports[`svelte configuration for ios 1`] = `
},
/* config.module.rule('workers') */
{
test: /\\\\.(js|ts)$/,
test: /\\\\.(js|ts|svelte)$/,
use: [
/* config.module.rule('workers').use('nativescript-worker-loader') */
{
Expand Down Expand Up @@ -520,18 +523,19 @@ exports[`svelte configuration for ios 1`] = `
/node_modules/
],
use: [
/* config.module.rule('svelte').use('svelte-loader-hot') */
/* config.module.rule('svelte').use('svelte-loader') */
{
loader: 'svelte-loader-hot',
loader: 'svelte-loader',
options: {
dev: true,
compilerOptions: {
dev: true
},
preprocess: undefined,
hotReload: true,
hotOptions: {
injectCss: false,
'native': true
},
onwarn: function () { /* omitted long function */ }
}
}
}
]
Expand Down
38 changes: 21 additions & 17 deletions packages/webpack5/src/configuration/svelte.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import Config from 'webpack-chain';

import { getProjectFilePath, getProjectRootPath } from '../helpers/project';
import { getProjectFilePath } from '../helpers/project';
import { getPlatformName } from '../helpers/platform';
import { env as _env, IWebpackEnv } from '../index';
import { error } from '../helpers/log';
Expand All @@ -13,47 +13,51 @@ export default function (config: Config, env: IWebpackEnv = _env): Config {
const mode = env.production ? 'production' : 'development';
const production = mode === 'production';

// target('node') is the default but causes svelte-loader to detect it as a "server" render, disabling HMR
// electron-main sneaks us past the target == 'node' check and gets us HMR
config.target('electron-main');

// svelte-hmr still references tns-core-modules, so we shim it here for compat.
config.resolve.alias.set('tns-core-modules', '@nativescript/core');

// resolve .svelte files
// the order is reversed because we are using prepend!
config.resolve.extensions.prepend('.svelte').prepend(`.${platform}.svelte`);

// add worker support to .svelte files (new Worker('./path'))
config.module.rule('workers').test(/\.(js|ts|svelte)$/);

// add a rule for .svelte files
config.module
.rule('svelte')
.test(/\.svelte$/)
.exclude.add(/node_modules/)
.end()
.use('svelte-loader-hot')
.loader('svelte-loader-hot')
.use('svelte-loader')
.loader('svelte-loader')
.tap((options) => {
const svelteConfig = getSvelteConfig();
return {
...options,
dev: !production,
preprocess: getSvelteConfigPreprocessor(),
compilerOptions: {
...svelteConfig?.compilerOptions,
dev: !production,
},
preprocess: svelteConfig?.preprocess,
hotReload: !production,
hotOptions: {
injectCss: false,
native: true,
},
// Suppress A11y warnings
onwarn(warning, warn) {
if (!/A11y:/.test(warning.message)) {
warn(warning);
}
},
};
});

return config;
}

function getSvelteConfigPreprocessor(): any {
const config = getSvelteConfig();

return config?.preprocess;
}

interface ISvelteConfig {
preprocess: any;
compilerOptions: any;
}

function getSvelteConfig(): ISvelteConfig | undefined {
Expand Down
4 changes: 1 addition & 3 deletions workspace.json
Original file line number Diff line number Diff line change
Expand Up @@ -271,9 +271,7 @@
"builder": "@nrwl/workspace:run-commands",
"outputs": ["dist/packages"],
"options": {
"commands": [
"npm run build"
],
"commands": ["npm run build"],
"cwd": "packages/webpack5",
"parallel": false
}
Expand Down