Giter Site home page Giter Site logo

Comments (6)

STUkh avatar STUkh commented on May 21, 2024

You should require or import your template higher in top-level declarations, because when webpack build templateCache it doesn't know about this template, so you should pre-cache it and then use, like this:

var sourceSelectionTpl = require('./source-selection/source.selection.html');
vm.updateSourceAndVisibility = function(skus) {
  var modal = $uibModal.open({
    templateUrl: sourceSelectionTpl ,
    controller: require('./source-selection/source.selection.controller.js'),
  });
};

from generator-angular-webpack-es6.

hussaintamboli avatar hussaintamboli commented on May 21, 2024

Tried what you suggested. But It's not working.

from generator-angular-webpack-es6.

hussaintamboli avatar hussaintamboli commented on May 21, 2024

I solved it by creating selection.module.js in selection/ and importing selection.html there.

'use strict';

import sourceSelectionCnst from './selection.constant';
import sourceSelectionTpl from './selection.html';

const sourceSelectionModule = angular.module('src-selection', [
]);

sourceSelectionModule
    .constant('sourceSelectionCnst', sourceSelectionCnst);

export default sourceSelectionModule;

I had to also import it in my controller

import sourceSelectionTpl from './selection/selection.html';

Then I was able to use templateUrl

templateUrl: sourceSelectionTpl,

This solves the issue but I am not sure whether importing the template twice will load the template twice. Please suggest another better way if any.

from generator-angular-webpack-es6.

STUkh avatar STUkh commented on May 21, 2024

Better way i described in previous message. Just import template not in modal config object or function.
In your second case it will not be loaded twice, because it cached by name in $templateCache service

from generator-angular-webpack-es6.

hussaintamboli avatar hussaintamboli commented on May 21, 2024

Okay. Got it. Thanks.

from generator-angular-webpack-es6.

Alex-DE-74 avatar Alex-DE-74 commented on May 21, 2024

Have exactly the same problem. Tried all internet tipps down and up since one week - no solution.
Tried you solution and it is not working on angular-cli on windows with webpack, error say that 'require' is not defined.
How you get this working, please?

from generator-angular-webpack-es6.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.